From 7b2a740b243649d4a04358746ec64c60e7b8f304 Mon Sep 17 00:00:00 2001 From: driesdeprest Date: Tue, 14 Feb 2023 17:02:09 +0100 Subject: [PATCH 1/8] Added support for v3 event data in Wyscout deserializer --- .../serializers/event/wyscout/deserializer.py | 256 +- kloppy/tests/files/wyscout_events.json | 51259 +--------------- kloppy/tests/test_wyscout.py | 4 +- 3 files changed, 3463 insertions(+), 48056 deletions(-) diff --git a/kloppy/infra/serializers/event/wyscout/deserializer.py b/kloppy/infra/serializers/event/wyscout/deserializer.py index 7018a533..c919a6ca 100644 --- a/kloppy/infra/serializers/event/wyscout/deserializer.py +++ b/kloppy/infra/serializers/event/wyscout/deserializer.py @@ -51,12 +51,12 @@ def _parse_team(raw_events, wyId: str, ground: Ground) -> Team: team = Team( team_id=wyId, - name=raw_events["teams"][wyId]["officialName"], + name=raw_events["teams"][wyId]["team"]["officialName"], ground=ground, ) team.players = [ Player( - player_id=str(player["playerId"]), + player_id=str(player["player"]["wyId"]), team=team, jersey_no=None, first_name=player["player"]["firstName"], @@ -77,94 +77,71 @@ def _has_tag(raw_event, tag_id) -> bool: def _generic_qualifiers(raw_event: Dict) -> List[Qualifier]: qualifiers: List[Qualifier] = [] - if _has_tag(raw_event, wyscout_tags.COUNTER_ATTACK): - qualifiers.append(CounterAttackQualifier(True)) - else: - qualifiers.append(CounterAttackQualifier(False)) + counter_attack_qualifier = CounterAttackQualifier(False) + if raw_event["possession"]: + if "counterattack" in raw_event["possession"]["types"]: + counter_attack_qualifier = CounterAttackQualifier(True) + qualifiers.append(counter_attack_qualifier) return qualifiers -def _parse_shot(raw_event: Dict, next_event: Dict) -> Dict: - result = None +def _parse_shot(raw_event: Dict) -> Dict: qualifiers = _generic_qualifiers(raw_event) - if _has_tag(raw_event, 101): + if raw_event["shot"]["isGoal"] is True: result = ShotResult.GOAL - elif _has_tag(raw_event, 2101): - result = ShotResult.BLOCKED - elif any((_has_tag(raw_event, tag) for tag in wyscout_tags.SHOT_POST)): - result = ShotResult.POST - elif any( - (_has_tag(raw_event, tag) for tag in wyscout_tags.SHOT_OFF_TARGET) - ): - result = ShotResult.OFF_TARGET - elif any((_has_tag(raw_event, tag) for tag in wyscout_tags.SHOT_ON_GOAL)): + elif raw_event["shot"]["onTarget"] is True: result = ShotResult.SAVED - - if next_event["eventId"] == wyscout_events.SAVE.EVENT: - if next_event["subEventId"] == wyscout_events.SAVE.REFLEXES: - qualifiers.append( - GoalkeeperActionQualifier(GoalkeeperAction.REFLEX) - ) - if next_event["subEventId"] == wyscout_events.SAVE.SAVE_ATTEMPT: - qualifiers.append( - GoalkeeperActionQualifier(GoalkeeperAction.SAVE_ATTEMPT) - ) + else: + result = ShotResult.OFF_TARGET return { "result": result, "result_coordinates": Point( - x=float(raw_event["positions"][1]["x"]), - y=float(raw_event["positions"][1]["y"]), - ) - if len(raw_event["positions"]) > 1 - else None, + x=float(0), + y=float(0), + ), "qualifiers": qualifiers, } +def _check_secondary_event_types( + raw_event, secondary_event_types_values: List[str] +) -> bool: + return any( + secondary_event_types in secondary_event_types_values + for secondary_event_types in raw_event["type"]["secondary"] + ) + + def _pass_qualifiers(raw_event) -> List[Qualifier]: qualifiers = _generic_qualifiers(raw_event) - if raw_event["subEventId"] == wyscout_events.PASS.CROSS: + if _check_secondary_event_types(raw_event, ["cross", "cross_blocked"]): qualifiers.append(PassQualifier(PassType.CROSS)) - elif raw_event["subEventId"] == wyscout_events.PASS.HAND: + elif _check_secondary_event_types(raw_event, ["hand_pass"]): qualifiers.append(PassQualifier(PassType.HAND_PASS)) - elif raw_event["subEventId"] == wyscout_events.PASS.HEAD: + elif _check_secondary_event_types(raw_event, ["head_pass"]): qualifiers.append(PassQualifier(PassType.HEAD_PASS)) - elif raw_event["subEventId"] == wyscout_events.PASS.HIGH: - qualifiers.append(PassQualifier(PassType.HIGH_PASS)) - elif raw_event["subEventId"] == wyscout_events.PASS.LAUNCH: - qualifiers.append(PassQualifier(PassType.LAUNCH)) - elif raw_event["subEventId"] == wyscout_events.PASS.SIMPLE: - qualifiers.append(PassQualifier(PassType.SIMPLE_PASS)) - elif raw_event["subEventId"] == wyscout_events.PASS.SMART: + elif _check_secondary_event_types(raw_event, ["smart_pass"]): qualifiers.append(PassQualifier(PassType.SMART_PASS)) - if _has_tag(raw_event, wyscout_tags.LEFT_FOOT): - qualifiers.append(BodyPartQualifier(BodyPart.LEFT_FOOT)) - elif _has_tag(raw_event, wyscout_tags.RIGHT_FOOT): - qualifiers.append(BodyPartQualifier(BodyPart.RIGHT_FOOT)) - return qualifiers def _parse_pass(raw_event: Dict, next_event: Dict) -> Dict: pass_result = None - if _has_tag(raw_event, wyscout_tags.ACCURATE): + if raw_event["pass"]["accurate"] is True: pass_result = PassResult.COMPLETE - elif _has_tag(raw_event, wyscout_tags.NOT_ACCURATE): + elif raw_event["pass"]["accurate"] is False: pass_result = PassResult.INCOMPLETE if next_event: - if next_event["eventId"] == wyscout_events.OFFSIDE.EVENT: + if next_event["type"]["primary"] == "offside": pass_result = PassResult.OFFSIDE - if next_event["eventId"] == wyscout_events.INTERRUPTION.EVENT: - if ( - next_event["subEventId"] - == wyscout_events.INTERRUPTION.BALL_OUT - ): + if next_event["type"]["primary"] == "game_interruption": + if next_event["type"]["secondary"] == "ball_out": pass_result = PassResult.OUT return { @@ -173,10 +150,10 @@ def _parse_pass(raw_event: Dict, next_event: Dict) -> Dict: "receive_timestamp": None, "receiver_player": None, "receiver_coordinates": Point( - x=float(raw_event["positions"][1]["x"]), - y=float(raw_event["positions"][1]["y"]), + x=float(raw_event["pass"]["endLocation"]["x"]), + y=float(raw_event["pass"]["endLocation"]["y"]), ) - if len(raw_event["positions"]) > 1 + if len(raw_event["pass"]["endLocation"]) > 1 else None, } @@ -220,26 +197,31 @@ def _parse_set_piece(raw_event: Dict, next_event: Dict) -> Dict: result = {} - if raw_event["subEventId"] in wyscout_events.FREE_KICK.PASS_TYPES: + # Pass set pieces + if raw_event["type"]["primary"] == "goal_kick": + qualifiers.append(SetPieceQualifier(SetPieceType.GOAL_KICK)) + result = _parse_pass(raw_event, next_event) + elif raw_event["type"]["primary"] == "throw_in": + qualifiers.append(SetPieceQualifier(SetPieceType.THROW_IN)) + qualifiers.append(PassQualifier(PassType.HAND_PASS)) + result = _parse_pass(raw_event, next_event) + elif ( + raw_event["type"]["primary"] == "free_kick" + ) and "free_kick_shot" not in raw_event["type"]["secondary"]: + qualifiers.append(SetPieceQualifier(SetPieceType.FREE_KICK)) result = _parse_pass(raw_event, next_event) - if raw_event["subEventId"] == wyscout_events.FREE_KICK.GOAL_KICK: - qualifiers.append(SetPieceQualifier(SetPieceType.GOAL_KICK)) - elif raw_event["subEventId"] == wyscout_events.FREE_KICK.THROW_IN: - qualifiers.append(SetPieceQualifier(SetPieceType.THROW_IN)) - qualifiers.append(PassQualifier(PassType.HAND_PASS)) - elif raw_event["subEventId"] in [ - wyscout_events.FREE_KICK.FREE_KICK, - wyscout_events.FREE_KICK.FREE_KICK_CROSS, - ]: - qualifiers.append(SetPieceQualifier(SetPieceType.FREE_KICK)) - elif raw_event["subEventId"] == wyscout_events.FREE_KICK.CORNER: - qualifiers.append(SetPieceQualifier(SetPieceType.CORNER_KICK)) - elif raw_event["subEventId"] in wyscout_events.FREE_KICK.SHOT_TYPES: + elif raw_event["type"]["primary"] == "corner": + qualifiers.append(SetPieceQualifier(SetPieceType.CORNER_KICK)) + result = _parse_pass(raw_event, next_event) + # Shot set pieces + elif ( + raw_event["type"]["primary"] == "free_kick" + ) and "free_kick_shot" in raw_event["type"]["secondary"]: + qualifiers.append(SetPieceQualifier(SetPieceType.FREE_KICK)) + result = _parse_shot(raw_event, next_event) + elif raw_event["type"]["primary"] == "penalty": + qualifiers.append(SetPieceQualifier(SetPieceType.PENALTY)) result = _parse_shot(raw_event, next_event) - if raw_event["subEventId"] == wyscout_events.FREE_KICK.FREE_KICK_SHOT: - qualifiers.append(SetPieceQualifier(SetPieceType.FREE_KICK)) - elif raw_event["subEventId"] == wyscout_events.FREE_KICK.PENALTY: - qualifiers.append(SetPieceQualifier(SetPieceType.PENALTY)) result["qualifiers"] = qualifiers return result @@ -248,10 +230,21 @@ def _parse_set_piece(raw_event: Dict, next_event: Dict) -> Dict: def _parse_takeon(raw_event: Dict) -> Dict: qualifiers = _generic_qualifiers(raw_event) result = None - if _has_tag(raw_event, wyscout_tags.LOST): - result = TakeOnResult.INCOMPLETE - if _has_tag(raw_event, wyscout_tags.WON): - result = TakeOnResult.COMPLETE + if "offensive_duel" in raw_event["type"]["secondary"]: + if raw_event["groundDuel"]["keptPossession"]: + result = TakeOnResult.COMPLETE + else: + result = TakeOnResult.INCOMPLETE + elif "defensive_duel" in raw_event["type"]["secondary"]: + if raw_event["groundDuel"]["recoveredPossession"]: + result = TakeOnResult.COMPLETE + else: + result = TakeOnResult.INCOMPLETE + elif "aerial_duel" in raw_event["type"]["secondary"]: + if raw_event["aerialDuel"]["firstTouch"]: + result = TakeOnResult.COMPLETE + else: + result = TakeOnResult.INCOMPLETE return {"result": result, "qualifiers": qualifiers} @@ -275,10 +268,8 @@ def deserialize(self, inputs: WyscoutInputs) -> EventDataset: with performance_logging("load data", logger=logger): raw_events = json.load(inputs.event_data) for event in raw_events["events"]: - if "eventId" not in event: - event["eventId"] = event["eventName"] - if "subEventId" not in event: - event["subEventId"] = event.get("subEventName") + if "id" not in event: + event["id"] = event["type"]["primary"] periods = [] @@ -301,8 +292,8 @@ def deserialize(self, inputs: WyscoutInputs) -> EventDataset: if (idx + 1) < len(raw_events["events"]): next_event = raw_events["events"][idx + 1] - team_id = str(raw_event["teamId"]) - player_id = str(raw_event["playerId"]) + team_id = str(raw_event["team"]["id"]) + player_id = str(raw_event["player"]["id"]) period_id = int(raw_event["matchPeriod"].replace("H", "")) if len(periods) == 0 or periods[-1].id != period_id: @@ -318,9 +309,11 @@ def deserialize(self, inputs: WyscoutInputs) -> EventDataset: "event_id": raw_event["id"], "raw_event": raw_event, "coordinates": Point( - x=float(raw_event["positions"][0]["x"]), - y=float(raw_event["positions"][0]["y"]), - ), + x=float(raw_event["location"]["x"]), + y=float(raw_event["location"]["y"]), + ) + if raw_event["location"] + else None, "team": teams[team_id], "player": players[team_id][player_id] if player_id != INVALID_PLAYER @@ -328,77 +321,56 @@ def deserialize(self, inputs: WyscoutInputs) -> EventDataset: "ball_owning_team": None, "ball_state": None, "period": periods[-1], - "timestamp": raw_event["eventSec"], + "timestamp": float( + raw_event["second"] + raw_event["minute"] * 60 + ), } - event = None - if raw_event["eventId"] == wyscout_events.SHOT.EVENT: + primary_event_type = raw_event["type"]["primary"] + secondary_event_types = raw_event["type"]["secondary"] + if primary_event_type == "shot": shot_event_args = _parse_shot(raw_event, next_event) event = self.event_factory.build_shot( **shot_event_args, **generic_event_args ) - elif raw_event["eventId"] == wyscout_events.PASS.EVENT: + elif primary_event_type == "pass": pass_event_args = _parse_pass(raw_event, next_event) event = self.event_factory.build_pass( **pass_event_args, **generic_event_args ) - elif raw_event["eventId"] == wyscout_events.FOUL.EVENT: - foul_event_args = _parse_foul(raw_event) - event = self.event_factory.build_foul_committed( - **foul_event_args, **generic_event_args - ) - if any( - (_has_tag(raw_event, tag) for tag in wyscout_tags.CARD) - ): - card_event_args = _parse_card(raw_event) - event = self.event_factory.build_card( - **card_event_args, **generic_event_args - ) - elif raw_event["eventId"] == wyscout_events.INTERRUPTION.EVENT: - ball_out_event_args = _parse_ball_out(raw_event) - event = self.event_factory.build_ball_out( - **ball_out_event_args, **generic_event_args + elif primary_event_type == "duel": + takeon_event_args = _parse_takeon(raw_event) + event = self.event_factory.build_take_on( + **takeon_event_args, **generic_event_args ) - elif raw_event["eventId"] == wyscout_events.FREE_KICK.EVENT: + elif ( + primary_event_type in ["throw_in", "goal_kick", "corner"] + ) or ( + primary_event_type == "free_kick" + and "free_kick_shot" not in secondary_event_types + ): set_piece_event_args = _parse_set_piece( raw_event, next_event ) - if ( - raw_event["subEventId"] - in wyscout_events.FREE_KICK.PASS_TYPES - ): - event = self.event_factory.build_pass( - **set_piece_event_args, **generic_event_args - ) - elif ( - raw_event["subEventId"] - in wyscout_events.FREE_KICK.SHOT_TYPES - ): - event = self.event_factory.build_shot( - **set_piece_event_args, **generic_event_args - ) - - elif ( - raw_event["eventId"] == wyscout_events.OTHERS_ON_BALL.EVENT + event = self.event_factory.build_pass( + **set_piece_event_args, **generic_event_args + ) + elif (primary_event_type == "penalty") or ( + primary_event_type == "free_kick" + and "free_kick_shot" in secondary_event_types ): - recovery_event_args = _parse_recovery(raw_event) - event = self.event_factory.build_recovery( - **recovery_event_args, **generic_event_args + set_piece_event_args = _parse_set_piece( + raw_event, next_event ) - elif raw_event["eventId"] == wyscout_events.DUEL.EVENT: - takeon_event_args = _parse_takeon(raw_event) - event = self.event_factory.build_take_on( - **takeon_event_args, **generic_event_args + event = self.event_factory.build_shot( + **set_piece_event_args, **generic_event_args ) - elif raw_event["eventId"] not in [ - wyscout_events.SAVE.EVENT, - wyscout_events.OFFSIDE.EVENT, - ]: - # The events SAVE and OFFSIDE are already merged with PASS and SHOT events - qualifiers = _generic_qualifiers(raw_event) + + else: event = self.event_factory.build_generic( result=None, - qualifiers=qualifiers, + qualifiers=_generic_qualifiers(raw_event), + event_name=raw_event["type"]["primary"], **generic_event_args ) diff --git a/kloppy/tests/files/wyscout_events.json b/kloppy/tests/files/wyscout_events.json index d9c66a44..fd2b6c99 100644 --- a/kloppy/tests/files/wyscout_events.json +++ b/kloppy/tests/files/wyscout_events.json @@ -1,47991 +1,3426 @@ { - "events": [ - { - "id": 190078343, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2.643377, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 50, - "y": 50 - }, - { - "x": 29, - "y": 41 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078344, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 4.350302, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 29, - "y": 41 - }, - { - "x": 71, - "y": 94 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079073, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 8.010654, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "29", - "y": "6" - }, - { - "x": "36", - "y": "3" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078345, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 9.699562, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 64, - "y": 97 - }, - { - "x": 58, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078346, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 13.551166, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 58, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079074, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 14.93405, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "39", - "y": "0" - }, - { - "x": "41", - "y": "13" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079076, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 16.013375, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "41", - "y": "13" - }, - { - "x": "63", - "y": "15" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079078, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 17.863381, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "63", - "y": "15" - }, - { - "x": "73", - "y": "14" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078348, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 20.293705, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 27, - "y": 86 - }, - { - "x": 23, - "y": 74 - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079081, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 20.65864, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "73", - "y": "14" - }, - { - "x": "77", - "y": "26" - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078350, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 21.970564, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 23, - "y": 74 - }, - { - "x": 30, - "y": 91 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078351, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 23.405167, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 30, - "y": 91 - }, - { - "x": 35, - "y": 100 - } - ], - "tags": [ - { - "id": 1302 - } - ] - }, - { - "id": 190078352, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 25.217661, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 35, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079085, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 36.757331, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "66", - "y": "0" - }, - { - "x": "92", - "y": "32" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078353, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 43.02098, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 8, - "y": 68 - }, - { - "x": 17, - "y": 85 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078354, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 46.902345, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 17, - "y": 85 - }, - { - "x": 23, - "y": 98 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078355, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 48.134392, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 23, - "y": 98 - }, - { - "x": 25, - "y": 82 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078356, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 50.596476, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 25, - "y": 82 - }, - { - "x": 42, - "y": 96 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078357, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 51.943575, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 42, - "y": 96 - }, - { - "x": 36, - "y": 84 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078358, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 53.677996, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 36, - "y": 84 - }, - { - "x": 28, - "y": 81 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078359, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 54.521704, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 28, - "y": 81 - }, - { - "x": 36, - "y": 88 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078360, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 54.640976, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 36, - "y": 88 - }, - { - "x": 23, - "y": 78 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078361, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 57.200527, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 23, - "y": 78 - }, - { - "x": 25, - "y": 40 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078362, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 60.326574, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 25, - "y": 40 - }, - { - "x": 37, - "y": 0 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078363, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 64.849235, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 37, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079089, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 71.25178, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "60", - "y": "100" - }, - { - "x": "60", - "y": "70" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078364, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 74.611562, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 40, - "y": 30 - }, - { - "x": 59, - "y": 39 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078366, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 76.684679, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 59, - "y": 39 - }, - { - "x": 70, - "y": 34 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078370, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 79.737543, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 70, - "y": 34 - }, - { - "x": 70, - "y": 55 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078369, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 82.682173, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 70, - "y": 55 - }, - { - "x": 77, - "y": 42 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078372, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 83.554498, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 77, - "y": 42 - }, - { - "x": 73, - "y": 59 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078373, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 84.948322, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 73, - "y": 59 - }, - { - "x": 83, - "y": 83 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078376, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 88.515846, - "eventName": 8, - "subEventName": 86, - "positions": [ - { - "x": 83, - "y": 83 - }, - { - "x": 99, - "y": 78 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078377, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 90.661998, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": 99, - "y": 78 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 2101 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079090, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 91.390748, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "1", - "y": "22" - }, - { - "x": "8", - "y": "24" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190078378, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 93.225458, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": 92, - "y": 76 - }, - { - "x": 95, - "y": 67 - } - ], - "tags": [ - { - "id": 401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079092, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 93.724553, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "5", - "y": "33" - }, - { - "x": "7", - "y": "25" - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080390, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 93.724553, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 95, - "y": 67 - }, - { - "x": 93, - "y": 75 - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079094, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 95.130063, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "7", - "y": "25" - }, - { - "x": "5", - "y": "33" - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078379, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 95.199655, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 93, - "y": 75 - }, - { - "x": 98, - "y": 76 - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078380, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 96.675963, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": 98, - "y": 76 - }, - { - "x": 86, - "y": 52 - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079097, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 97.100038, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "2", - "y": "44" - }, - { - "x": "14", - "y": "48" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190079099, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 114.868548, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": "14", - "y": "48" - }, - { - "x": "65", - "y": "88" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078381, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 116.633649, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 35, - "y": 12 - }, - { - "x": 28, - "y": 0 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079100, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 117.070215, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "65", - "y": "88" - }, - { - "x": "72", - "y": "100" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078382, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 121.08616, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 26, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078383, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 134.086246, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 28, - "y": 0 - }, - { - "x": 29, - "y": 16 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078384, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 135.006607, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 29, - "y": 16 - }, - { - "x": 14, - "y": 6 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078385, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 137.855924, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 14, - "y": 6 - }, - { - "x": 11, - "y": 52 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078386, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 140.553384, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 11, - "y": 52 - }, - { - "x": 26, - "y": 94 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078387, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 144.615012, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 26, - "y": 94 - }, - { - "x": 45, - "y": 92 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079104, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 146.408915, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "55", - "y": "8" - }, - { - "x": "54", - "y": "9" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078388, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 146.642292, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 45, - "y": 92 - }, - { - "x": 46, - "y": 91 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079108, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 148.127147, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": "54", - "y": "9" - }, - { - "x": "55", - "y": "8" - } - ], - "tags": [] - }, - { - "id": 190078390, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 156.8597, - "eventName": 3, - "subEventName": 31, - "positions": [ - { - "x": 42, - "y": 91 - }, - { - "x": 26, - "y": 69 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078391, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 160.67314, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 26, - "y": 69 - }, - { - "x": 30, - "y": 84 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078392, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 162.887299, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 30, - "y": 84 - }, - { - "x": 42, - "y": 91 - } - ], - "tags": [] - }, - { - "id": 190078393, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 166.28771, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 42, - "y": 91 - }, - { - "x": 68, - "y": 96 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078394, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 167.977601, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 68, - "y": 96 - }, - { - "x": 66, - "y": 100 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079110, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 168.088417, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "32", - "y": "4" - }, - { - "x": "34", - "y": "0" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078395, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 171.158248, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 64, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078396, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 178.851062, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 66, - "y": 100 - }, - { - "x": 74, - "y": 91 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078397, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 179.848029, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 74, - "y": 91 - }, - { - "x": 67, - "y": 98 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078398, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 181.351087, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 67, - "y": 98 - }, - { - "x": 66, - "y": 45 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079111, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 183.755505, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "34", - "y": "55" - }, - { - "x": "46", - "y": "36" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078399, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 185.916204, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 54, - "y": 64 - }, - { - "x": 64, - "y": 65 - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190078401, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 187.918263, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 64, - "y": 65 - }, - { - "x": 63, - "y": 64 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079113, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 188.217115, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "36", - "y": "35" - }, - { - "x": "37", - "y": "36" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078402, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 189.953524, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": 63, - "y": 64 - }, - { - "x": 64, - "y": 65 - } - ], - "tags": [] - }, - { - "id": 190079116, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 193.977694, - "eventName": 3, - "subEventName": 31, - "positions": [ - { - "x": "37", - "y": "36" - }, - { - "x": "73", - "y": "41" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078403, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 197.835478, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 27, - "y": 59 - }, - { - "x": 29, - "y": 36 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078404, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 199.419436, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 29, - "y": 36 - }, - { - "x": 38, - "y": 33 - } - ], - "tags": [] - }, - { - "id": 190078405, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 202.809039, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 38, - "y": 33 - }, - { - "x": 42, - "y": 39 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078406, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 203.769032, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 42, - "y": 39 - }, - { - "x": 33, - "y": 32 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078407, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 204.778029, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 33, - "y": 32 - }, - { - "x": 28, - "y": 42 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078408, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 206.241506, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 28, - "y": 42 - }, - { - "x": 38, - "y": 44 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078409, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 208.175928, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 38, - "y": 44 - }, - { - "x": 31, - "y": 43 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079118, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 208.175928, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "62", - "y": "56" - }, - { - "x": "69", - "y": "57" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079119, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 209.827878, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": "69", - "y": "57" - }, - { - "x": "62", - "y": "56" - } - ], - "tags": [] - }, - { - "id": 190078410, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 215.182468, - "eventName": 3, - "subEventName": 31, - "positions": [ - { - "x": 31, - "y": 39 - }, - { - "x": 12, - "y": 49 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078411, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 225.135908, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 12, - "y": 49 - }, - { - "x": 18, - "y": 24 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078412, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 228.81356, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 18, - "y": 24 - }, - { - "x": 15, - "y": 55 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078413, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 235.783239, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 15, - "y": 55 - }, - { - "x": 66, - "y": 24 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079123, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 239.045053, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "34", - "y": "76" - }, - { - "x": "72", - "y": "32" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078414, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 241.070179, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 28, - "y": 68 - }, - { - "x": 59, - "y": 74 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078415, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 244.212828, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 59, - "y": 74 - }, - { - "x": 63, - "y": 59 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078417, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 246.403062, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 63, - "y": 59 - }, - { - "x": 72, - "y": 71 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078418, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 247.910668, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 72, - "y": 71 - }, - { - "x": 78, - "y": 63 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079125, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 247.959765, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "22", - "y": "37" - }, - { - "x": "24", - "y": "43" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079128, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 249.532885, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "24", - "y": "43" - }, - { - "x": "23", - "y": "77" - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078420, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 250.057743, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 76, - "y": 57 - }, - { - "x": 77, - "y": 23 - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079129, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 253.881384, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "23", - "y": "77" - }, - { - "x": "87", - "y": "73" - } - ], - "tags": [ - { - "id": 901 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078421, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 261.567918, - "eventName": 8, - "subEventName": 81, - "positions": [ - { - "x": 13, - "y": 27 - }, - { - "x": 23, - "y": 27 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078422, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 264.387792, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 23, - "y": 27 - }, - { - "x": 24, - "y": 50 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078423, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 267.848625, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 24, - "y": 50 - }, - { - "x": 28, - "y": 27 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078424, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 268.489472, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 28, - "y": 27 - }, - { - "x": 35, - "y": 22 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079131, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 270.063892, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "65", - "y": "78" - }, - { - "x": "67", - "y": "75" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079135, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 272.557919, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "67", - "y": "75" - }, - { - "x": "74", - "y": "89" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078427, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 275.71652, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 26, - "y": 11 - }, - { - "x": 27, - "y": 35 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078428, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 280.471505, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 27, - "y": 35 - }, - { - "x": 36, - "y": 47 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078429, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 282.466845, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 36, - "y": 47 - }, - { - "x": 26, - "y": 63 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078430, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 284.838909, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 26, - "y": 63 - }, - { - "x": 25, - "y": 45 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078431, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 285.217591, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 25, - "y": 45 - }, - { - "x": 35, - "y": 36 - } - ], - "tags": [] - }, - { - "id": 190078432, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 289.778688, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 35, - "y": 36 - }, - { - "x": 35, - "y": 25 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078433, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 293.327732, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 35, - "y": 25 - }, - { - "x": 35, - "y": 47 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078434, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 295.985742, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 35, - "y": 47 - }, - { - "x": 33, - "y": 81 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078435, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 298.637956, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 33, - "y": 81 - }, - { - "x": 61, - "y": 65 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078436, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 300.983573, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 61, - "y": 65 - }, - { - "x": 59, - "y": 62 - } - ], - "tags": [] - }, - { - "id": 190079137, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 301.121581, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "41", - "y": "38" - }, - { - "x": "34", - "y": "16" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078437, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 301.957559, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 59, - "y": 62 - }, - { - "x": 66, - "y": 84 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079141, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 303.541386, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "34", - "y": "16" - }, - { - "x": "62", - "y": "23" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078438, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 305.846815, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 38, - "y": 77 - }, - { - "x": 38, - "y": 84 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1302 - } - ] - }, - { - "id": 190079144, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 306.295545, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "62", - "y": "16" - }, - { - "x": "92", - "y": "31" - } - ], - "tags": [ - { - "id": 302 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079151, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 310.645304, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": "92", - "y": "31" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 201 - }, - { - "id": 1203 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078440, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 312.452911, - "eventName": 9, - "subEventName": 90, - "positions": [ - { - "x": 100, - "y": 100 - }, - { - "x": 8, - "y": 69 - } - ], - "tags": [ - { - "id": 1203 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079155, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 314.341574, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": "91", - "y": "40" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [ - { - "id": 401 - }, - { - "id": 201 - }, - { - "id": 1215 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078441, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 316.62011, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 1, - "y": 58 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078442, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 348.60307, - "eventName": 3, - "subEventName": 34, - "positions": [ - { - "x": 100, - "y": 100 - }, - { - "x": 61, - "y": 82 - } - ], - "tags": [] - }, - { - "id": 190078443, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 351.556705, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 61, - "y": 82 - }, - { - "x": 58, - "y": 86 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079159, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 351.83658, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "39", - "y": "18" - }, - { - "x": "42", - "y": "14" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078444, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 352.593755, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 58, - "y": 86 - }, - { - "x": 30, - "y": 100 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080392, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 352.593755, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "42", - "y": "14" - }, - { - "x": "70", - "y": "0" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078445, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 355.318188, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 29, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078446, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 360.184471, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 30, - "y": 100 - }, - { - "x": 76, - "y": 88 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079160, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 365.550628, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "24", - "y": "12" - }, - { - "x": "28", - "y": "30" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079161, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 371.58968, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "28", - "y": "30" - }, - { - "x": "11", - "y": "50" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079162, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 374.801254, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": "11", - "y": "50" - }, - { - "x": "67", - "y": "13" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078447, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 379.22649, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 33, - "y": 87 - }, - { - "x": 45, - "y": 86 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078448, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 381.144469, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 45, - "y": 86 - }, - { - "x": 37, - "y": 96 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078449, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 382.72021, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 37, - "y": 96 - }, - { - "x": 61, - "y": 95 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078450, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 385.045051, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 61, - "y": 95 - }, - { - "x": 68, - "y": 96 - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079167, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 385.819281, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "39", - "y": "5" - }, - { - "x": "32", - "y": "4" - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079168, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 388.801809, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": "32", - "y": "4" - }, - { - "x": "39", - "y": "5" - } - ], - "tags": [] - }, - { - "id": 190078451, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 425.016183, - "eventName": 3, - "subEventName": 31, - "positions": [ - { - "x": 65, - "y": 97 - }, - { - "x": 66, - "y": 85 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078453, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 427.875697, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 66, - "y": 85 - }, - { - "x": 80, - "y": 96 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078454, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 428.326898, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 80, - "y": 96 - }, - { - "x": 69, - "y": 85 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078455, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 429.658589, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": 69, - "y": 85 - }, - { - "x": 93, - "y": 46 - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 801 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079171, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 430.598231, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": "7", - "y": "54" - }, - { - "x": "0", - "y": "61" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078456, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 437.575064, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 100, - "y": 39 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078457, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 459.190702, - "eventName": 3, - "subEventName": 30, - "positions": [ - { - "x": 100, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 801 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079173, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 461.243882, - "eventName": 4, - "subEventName": 40, - "positions": [ - { - "x": "0", - "y": "0" - }, - { - "x": "0", - "y": "100" - } - ], - "tags": [ - { - "id": 1901 - } - ] - }, - { - "id": 190079174, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 464.668324, - "eventName": 8, - "subEventName": 81, - "positions": [ - { - "x": "12", - "y": "43" - }, - { - "x": "49", - "y": "84" - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079176, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 467.952041, - "eventName": 7, - "subEventName": 70, - "positions": [ - { - "x": "49", - "y": "84" - }, - { - "x": "78", - "y": "94" - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079178, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 471.211494, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": "78", - "y": "94" - }, - { - "x": "99", - "y": "50" - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 402 - }, - { - "id": 801 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078460, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 476.91596, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 1, - "y": 50 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078461, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 489.546377, - "eventName": 3, - "subEventName": 34, - "positions": [ - { - "x": 100, - "y": 100 - }, - { - "x": 7, - "y": 71 - } - ], - "tags": [] - }, - { - "id": 190078462, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 493.227331, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 7, - "y": 71 - }, - { - "x": 46, - "y": 76 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078463, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 494.468576, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 46, - "y": 76 - }, - { - "x": 36, - "y": 84 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079181, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 494.598106, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "54", - "y": "24" - }, - { - "x": "64", - "y": "16" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079185, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 496.749526, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "64", - "y": "16" - }, - { - "x": "71", - "y": "3" - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078464, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 497.930826, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 36, - "y": 84 - }, - { - "x": 29, - "y": 97 - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079186, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 499.938795, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "71", - "y": "3" - }, - { - "x": "78", - "y": "0" - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078465, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 500.056471, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 29, - "y": 97 - }, - { - "x": 22, - "y": 100 - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078466, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 505.184605, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 21, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078467, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 517.577275, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 22, - "y": 100 - }, - { - "x": 41, - "y": 96 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078468, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 518.535682, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 41, - "y": 96 - }, - { - "x": 31, - "y": 99 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079187, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 518.535682, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "59", - "y": "4" - }, - { - "x": "69", - "y": "1" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078469, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 521.532545, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 31, - "y": 99 - }, - { - "x": 23, - "y": 96 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078470, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 523.32142, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 23, - "y": 96 - }, - { - "x": 25, - "y": 69 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078471, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 525.008004, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 25, - "y": 69 - }, - { - "x": 26, - "y": 46 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078472, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 527.947993, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 26, - "y": 46 - }, - { - "x": 24, - "y": 46 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078473, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 529.674489, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 24, - "y": 46 - }, - { - "x": 23, - "y": 29 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078474, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 531.42083, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 23, - "y": 29 - }, - { - "x": 38, - "y": 9 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078475, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 533.772947, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 38, - "y": 9 - }, - { - "x": 42, - "y": 7 - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079188, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 534.141487, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "62", - "y": "91" - }, - { - "x": "58", - "y": "93" - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079189, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 535.496244, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": "58", - "y": "93" - }, - { - "x": "62", - "y": "91" - } - ], - "tags": [] - }, - { - "id": 190078476, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 551.618688, - "eventName": 3, - "subEventName": 31, - "positions": [ - { - "x": 35, - "y": 9 - }, - { - "x": 26, - "y": 26 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078477, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 556.468608, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 26, - "y": 26 - }, - { - "x": 18, - "y": 41 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078478, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 558.232581, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 18, - "y": 41 - }, - { - "x": 28, - "y": 70 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078479, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 561.44151, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 28, - "y": 70 - }, - { - "x": 30, - "y": 33 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078480, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 565.295632, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 30, - "y": 33 - }, - { - "x": 72, - "y": 95 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079193, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 568.606127, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": "28", - "y": "5" - }, - { - "x": "38", - "y": "0" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078481, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 570.424549, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 62, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078482, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 575.816494, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 62, - "y": 100 - }, - { - "x": 41, - "y": 83 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078483, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 577.599646, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 41, - "y": 83 - }, - { - "x": 46, - "y": 35 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078484, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 580.358814, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 46, - "y": 35 - }, - { - "x": 61, - "y": 9 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078485, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 583.664615, - "eventName": 8, - "subEventName": 86, - "positions": [ - { - "x": 61, - "y": 9 - }, - { - "x": 95, - "y": 13 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078487, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 587.082394, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 95, - "y": 13 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079199, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 587.331578, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "5", - "y": "87" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078488, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 591.00159, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 100, - "y": 15 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079203, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 611.406625, - "eventName": 3, - "subEventName": 34, - "positions": [ - { - "x": "0", - "y": "0" - }, - { - "x": "57", - "y": "1" - } - ], - "tags": [] - }, - { - "id": 190079205, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 615.666852, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "57", - "y": "1" - }, - { - "x": "75", - "y": "17" - } - ], - "tags": [] - }, - { - "id": 190078489, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 616.595729, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 39, - "y": 92 - }, - { - "x": 25, - "y": 83 - } - ], - "tags": [] - }, - { - "id": 190078490, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 624.856401, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 25, - "y": 83 - }, - { - "x": 39, - "y": 67 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079207, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 625.806088, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "61", - "y": "33" - }, - { - "x": "67", - "y": "30" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190078491, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 628.998162, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 33, - "y": 70 - }, - { - "x": 37, - "y": 94 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078492, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 632.88593, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 37, - "y": 94 - }, - { - "x": 28, - "y": 80 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078494, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 635.416678, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 28, - "y": 80 - }, - { - "x": 45, - "y": 85 - } - ], - "tags": [] - }, - { - "id": 190078495, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 639.752904, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 45, - "y": 85 - }, - { - "x": 65, - "y": 88 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078496, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 641.846804, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 65, - "y": 88 - }, - { - "x": 56, - "y": 85 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078497, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 642.22671, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 56, - "y": 85 - }, - { - "x": 61, - "y": 80 - } - ], - "tags": [] - }, - { - "id": 190079209, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 643.156947, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "39", - "y": "20" - }, - { - "x": "35", - "y": "21" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078498, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 643.608308, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 61, - "y": 80 - }, - { - "x": 65, - "y": 79 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079210, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 645.00346, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": "35", - "y": "21" - }, - { - "x": "39", - "y": "20" - } - ], - "tags": [] - }, - { - "id": 190078499, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 666.965266, - "eventName": 3, - "subEventName": 31, - "positions": [ - { - "x": 61, - "y": 77 - }, - { - "x": 63, - "y": 95 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078500, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 670.374551, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 63, - "y": 95 - }, - { - "x": 44, - "y": 81 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078501, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 674.129006, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 44, - "y": 81 - }, - { - "x": 41, - "y": 32 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078502, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 677.165887, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 41, - "y": 32 - }, - { - "x": 67, - "y": 33 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078503, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 678.285845, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 67, - "y": 33 - }, - { - "x": 75, - "y": 25 - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079211, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 678.337162, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "33", - "y": "67" - }, - { - "x": "25", - "y": "75" - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079215, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 679.558941, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": "25", - "y": "75" - }, - { - "x": "77", - "y": "72" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078505, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 685.488382, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 23, - "y": 28 - }, - { - "x": 35, - "y": 66 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078504, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 689.992047, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 35, - "y": 66 - }, - { - "x": 44, - "y": 72 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078506, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 692.693248, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 44, - "y": 72 - }, - { - "x": 92, - "y": 92 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078508, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 698.74722, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 92, - "y": 92 - }, - { - "x": 85, - "y": 98 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078509, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 701.115573, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 85, - "y": 98 - }, - { - "x": 67, - "y": 95 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078510, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 704.571969, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 67, - "y": 95 - }, - { - "x": 68, - "y": 80 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078511, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 706.844505, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 68, - "y": 80 - }, - { - "x": 56, - "y": 86 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078512, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 710.105042, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 56, - "y": 86 - }, - { - "x": 49, - "y": 42 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078513, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 712.586961, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 49, - "y": 42 - }, - { - "x": 59, - "y": 22 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078514, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 714.474878, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 59, - "y": 22 - }, - { - "x": 70, - "y": 7 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078515, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 716.025731, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 70, - "y": 7 - }, - { - "x": 57, - "y": 18 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078516, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 718.384093, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 57, - "y": 18 - }, - { - "x": 37, - "y": 33 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078517, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 720.884034, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 37, - "y": 33 - }, - { - "x": 48, - "y": 57 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078518, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 722.56845, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 48, - "y": 57 - }, - { - "x": 32, - "y": 79 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078519, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 724.486781, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 32, - "y": 79 - }, - { - "x": 41, - "y": 97 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078520, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 727.299642, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 41, - "y": 97 - }, - { - "x": 40, - "y": 85 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078521, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 727.766999, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 40, - "y": 85 - }, - { - "x": 63, - "y": 97 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078523, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 730.970875, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 63, - "y": 97 - }, - { - "x": 73, - "y": 88 - } - ], - "tags": [] - }, - { - "id": 190078524, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 733.975905, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 73, - "y": 88 - }, - { - "x": 84, - "y": 78 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078525, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 735.240983, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 84, - "y": 78 - }, - { - "x": 95, - "y": 89 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078526, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 737.003973, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": 95, - "y": 89 - }, - { - "x": 90, - "y": 16 - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 801 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078529, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 740.700493, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 90, - "y": 16 - }, - { - "x": 85, - "y": 33 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078530, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 742.763156, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": 85, - "y": 33 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 2101 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079219, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 743.652821, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "14", - "y": "67" - }, - { - "x": "20", - "y": "51" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190078531, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 744.961059, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 80, - "y": 49 - }, - { - "x": 68, - "y": 51 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079220, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 744.961059, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "20", - "y": "51" - }, - { - "x": "32", - "y": "49" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078532, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 746.88672, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 68, - "y": 51 - }, - { - "x": 76, - "y": 44 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078533, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 748.728134, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 76, - "y": 44 - }, - { - "x": 84, - "y": 20 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078534, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 752.547285, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 84, - "y": 20 - }, - { - "x": 75, - "y": 31 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078535, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 753.220966, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 75, - "y": 31 - }, - { - "x": 77, - "y": 49 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078536, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 755.210381, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 77, - "y": 49 - }, - { - "x": 72, - "y": 72 - } - ], - "tags": [ - { - "id": 302 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078538, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 756.882385, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": 72, - "y": 72 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 201 - }, - { - "id": 1219 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078539, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 760.215262, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": 90, - "y": 52 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 101 - }, - { - "id": 401 - }, - { - "id": 201 - }, - { - "id": 1210 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078540, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 769.358223, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 100, - "y": 61 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079224, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 794.992709, - "eventName": 3, - "subEventName": 34, - "positions": [ - { - "x": "0", - "y": "0" - }, - { - "x": "54", - "y": "76" - } - ], - "tags": [] - }, - { - "id": 190078541, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 797.005694, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 46, - "y": 24 - }, - { - "x": 63, - "y": 25 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079226, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 798.610483, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "37", - "y": "75" - }, - { - "x": "58", - "y": "66" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078542, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 801.395193, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 42, - "y": 34 - }, - { - "x": 86, - "y": 42 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079229, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 818.546986, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "14", - "y": "58" - }, - { - "x": "66", - "y": "68" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079251, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 821.363937, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "66", - "y": "68" - }, - { - "x": "85", - "y": "86" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078543, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 824.542844, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 15, - "y": 14 - }, - { - "x": 31, - "y": 29 - } - ], - "tags": [ - { - "id": 2001 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079252, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 828.803566, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "69", - "y": "71" - }, - { - "x": "79", - "y": "65" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079253, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 831.822492, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "79", - "y": "65" - }, - { - "x": "88", - "y": "83" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079254, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 833.227448, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": "88", - "y": "83" - }, - { - "x": "92", - "y": "49" - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078544, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 834.766333, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 8, - "y": 51 - }, - { - "x": 4, - "y": 0 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078545, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 840.615816, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 4, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079255, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 842.380615, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "93", - "y": "100" - }, - { - "x": "88", - "y": "87" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078546, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 842.65992, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 12, - "y": 13 - }, - { - "x": 1, - "y": 10 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080395, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 842.65992, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "88", - "y": "87" - }, - { - "x": "99", - "y": "90" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078547, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 844.912196, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": 1, - "y": 10 - }, - { - "x": 30, - "y": 34 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078548, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 846.910235, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 30, - "y": 34 - }, - { - "x": 30, - "y": 56 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079256, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 846.910235, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "70", - "y": "66" - }, - { - "x": "70", - "y": "44" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079257, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 848.474402, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "70", - "y": "44" - }, - { - "x": "76", - "y": "64" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078549, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 849.996553, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 24, - "y": 36 - }, - { - "x": 26, - "y": 44 - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079258, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 849.996553, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "76", - "y": "64" - }, - { - "x": "74", - "y": "56" - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079259, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 851.161977, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": "74", - "y": "56" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 2101 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078550, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 853.241865, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 24, - "y": 35 - }, - { - "x": 34, - "y": 24 - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190078551, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 853.415894, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 34, - "y": 24 - }, - { - "x": 21, - "y": 8 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079260, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 853.415894, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "66", - "y": "76" - }, - { - "x": "79", - "y": "92" - } - ], - "tags": [ - { - "id": 1601 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079262, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 856.729253, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": "79", - "y": "92" - }, - { - "x": "90", - "y": "42" - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 801 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079265, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 859.286933, - "eventName": 6, - "subEventName": "", - "positions": [ - { - "x": "90", - "y": "42" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [] - }, - { - "id": 190078552, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 870.717431, - "eventName": 3, - "subEventName": 31, - "positions": [ - { - "x": 14, - "y": 53 - }, - { - "x": 64, - "y": 96 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078553, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 880.011001, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 64, - "y": 96 - }, - { - "x": 55, - "y": 85 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078554, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 881.826033, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 55, - "y": 85 - }, - { - "x": 61, - "y": 76 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078555, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 882.493029, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 61, - "y": 76 - }, - { - "x": 56, - "y": 89 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078556, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 885.667709, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 56, - "y": 89 - }, - { - "x": 94, - "y": 17 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078557, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 892.675232, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 94, - "y": 17 - }, - { - "x": 86, - "y": 26 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078558, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 894.633636, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 86, - "y": 26 - }, - { - "x": 83, - "y": 18 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078559, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 896.535368, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": 83, - "y": 18 - }, - { - "x": 96, - "y": 63 - } - ], - "tags": [ - { - "id": 301 - }, - { - "id": 402 - }, - { - "id": 801 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078560, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 899.058283, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": 96, - "y": 63 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 101 - }, - { - "id": 403 - }, - { - "id": 201 - }, - { - "id": 1206 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079272, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 899.536587, - "eventName": 9, - "subEventName": 90, - "positions": [ - { - "x": "0", - "y": "0" - }, - { - "x": "4", - "y": "37" - } - ], - "tags": [ - { - "id": 101 - }, - { - "id": 1206 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079274, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 956.751669, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "22", - "y": "27" - }, - { - "x": "8", - "y": "65" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079276, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 961.269829, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": "8", - "y": "65" - }, - { - "x": "54", - "y": "55" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078561, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 963.267645, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 46, - "y": 45 - }, - { - "x": 62, - "y": 44 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079279, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 965.730403, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "38", - "y": "56" - }, - { - "x": "60", - "y": "92" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078562, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 971.454258, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 40, - "y": 8 - }, - { - "x": 41, - "y": 30 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078563, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 974.435115, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 41, - "y": 30 - }, - { - "x": 64, - "y": 40 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078564, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 974.985224, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 64, - "y": 40 - }, - { - "x": 67, - "y": 21 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079280, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 976.392937, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "33", - "y": "79" - }, - { - "x": "31", - "y": "61" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079283, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 978.483558, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "31", - "y": "61" - }, - { - "x": "40", - "y": "21" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078565, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 980.442871, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 60, - "y": 79 - }, - { - "x": 63, - "y": 88 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079285, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 981.010708, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "40", - "y": "21" - }, - { - "x": "37", - "y": "12" - } - ], - "tags": [ - { - "id": 1601 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079289, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 982.771204, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": "37", - "y": "12" - }, - { - "x": "40", - "y": "21" - } - ], - "tags": [ - { - "id": 1702 - } - ] - }, - { - "id": 190078566, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1012.766978, - "eventName": 3, - "subEventName": 31, - "positions": [ - { - "x": 57, - "y": 79 - }, - { - "x": 64, - "y": 92 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078567, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1014.688394, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 64, - "y": 92 - }, - { - "x": 57, - "y": 82 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078568, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1015.572632, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 57, - "y": 82 - }, - { - "x": 35, - "y": 63 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078569, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1019.434729, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 35, - "y": 63 - }, - { - "x": 29, - "y": 20 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078570, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1022.392846, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 29, - "y": 20 - }, - { - "x": 14, - "y": 27 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078571, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1024.953506, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 14, - "y": 27 - }, - { - "x": 20, - "y": 29 - } - ], - "tags": [ - { - "id": 2001 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079296, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1025.75413, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "80", - "y": "71" - }, - { - "x": "73", - "y": "73" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190079298, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1026.343943, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": "73", - "y": "73" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 201 - }, - { - "id": 1202 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079010, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1028.546443, - "eventName": 9, - "subEventName": 91, - "positions": [ - { - "x": 100, - "y": 100 - }, - { - "x": 14, - "y": 27 - } - ], - "tags": [ - { - "id": 1202 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078572, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1033.251535, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 0, - "y": 36 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079301, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1058.07431, - "eventName": 3, - "subEventName": 30, - "positions": [ - { - "x": "100", - "y": "100" - }, - { - "x": "95", - "y": "56" - } - ], - "tags": [ - { - "id": 801 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078573, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1060.77819, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 5, - "y": 44 - }, - { - "x": 0, - "y": 19 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078574, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1066.519792, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 0, - "y": 19 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079303, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1073.149089, - "eventName": 3, - "subEventName": 30, - "positions": [ - { - "x": "100", - "y": "100" - }, - { - "x": "88", - "y": "88" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079305, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1078.07472, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "88", - "y": "88" - }, - { - "x": "89", - "y": "85" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079307, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1078.638272, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "89", - "y": "85" - }, - { - "x": "95", - "y": "91" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078575, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1082.251035, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 5, - "y": 9 - }, - { - "x": 11, - "y": 0 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079309, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1082.443633, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "95", - "y": "91" - }, - { - "x": "89", - "y": "100" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078576, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1086.898812, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 3, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079311, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1103.322417, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "89", - "y": "100" - }, - { - "x": "84", - "y": "89" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079312, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1103.95486, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "84", - "y": "89" - }, - { - "x": "94", - "y": "92" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079315, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1105.106885, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": "94", - "y": "92" - }, - { - "x": "94", - "y": "51" - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 801 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078577, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1107.096654, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 6, - "y": 49 - }, - { - "x": 7, - "y": 9 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078578, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1109.34793, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 7, - "y": 9 - }, - { - "x": 13, - "y": 28 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079319, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1109.657691, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "93", - "y": "91" - }, - { - "x": "87", - "y": "72" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078579, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1111.585966, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 13, - "y": 28 - }, - { - "x": 13, - "y": 32 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079322, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1111.585966, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "87", - "y": "72" - }, - { - "x": "87", - "y": "68" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079323, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1113.135771, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": "87", - "y": "68" - }, - { - "x": "87", - "y": "72" - } - ], - "tags": [] - }, - { - "id": 190078580, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1168.446133, - "eventName": 3, - "subEventName": 31, - "positions": [ - { - "x": 14, - "y": 31 - }, - { - "x": 66, - "y": 71 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078581, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1171.327095, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 66, - "y": 71 - }, - { - "x": 59, - "y": 90 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079328, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1171.758133, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "34", - "y": "29" - }, - { - "x": "41", - "y": "10" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078582, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1174.115871, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 59, - "y": 90 - }, - { - "x": 42, - "y": 94 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078583, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1177.322959, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 42, - "y": 94 - }, - { - "x": 30, - "y": 84 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078584, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1178.459605, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 30, - "y": 84 - }, - { - "x": 81, - "y": 49 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079330, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1182.460615, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": "19", - "y": "51" - }, - { - "x": "43", - "y": "0" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078585, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1187.415746, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 57, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078586, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1201.569024, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 61, - "y": 100 - }, - { - "x": 65, - "y": 84 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078587, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1202.686056, - "eventName": 8, - "subEventName": 86, - "positions": [ - { - "x": 65, - "y": 84 - }, - { - "x": 71, - "y": 97 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079333, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1203.056809, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "29", - "y": "3" - }, - { - "x": "40", - "y": "3" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078588, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1206.465759, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 60, - "y": 97 - }, - { - "x": 41, - "y": 95 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078589, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1207.282875, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 41, - "y": 95 - }, - { - "x": 71, - "y": 61 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079335, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1209.211097, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "29", - "y": "39" - }, - { - "x": "59", - "y": "11" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078590, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1211.171233, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 41, - "y": 89 - }, - { - "x": 61, - "y": 78 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079337, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1211.359865, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "59", - "y": "11" - }, - { - "x": "39", - "y": "22" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078591, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1215.458458, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 61, - "y": 78 - }, - { - "x": 71, - "y": 100 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078592, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1218.245325, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 71, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079338, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1230.628382, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "32", - "y": "0" - }, - { - "x": "42", - "y": "3" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078593, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1232.950219, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 58, - "y": 97 - }, - { - "x": 54, - "y": 100 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079340, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1232.950219, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "42", - "y": "3" - }, - { - "x": "46", - "y": "0" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078594, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1236.115624, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 57, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079342, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1250.409094, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "46", - "y": "0" - }, - { - "x": "74", - "y": "8" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078595, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1253.210083, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 26, - "y": 92 - }, - { - "x": 28, - "y": 97 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078596, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1253.506606, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 28, - "y": 97 - }, - { - "x": 37, - "y": 95 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079344, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1255.068963, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "63", - "y": "5" - }, - { - "x": "60", - "y": "11" - } - ], - "tags": [] - }, - { - "id": 190078597, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1257.646482, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 40, - "y": 89 - }, - { - "x": 40, - "y": 66 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078598, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1259.62012, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 40, - "y": 66 - }, - { - "x": 42, - "y": 67 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 503 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080396, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1259.62012, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "60", - "y": "34" - }, - { - "x": "58", - "y": "33" - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078599, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1261.175424, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 42, - "y": 67 - }, - { - "x": 43, - "y": 80 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078600, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1262.336052, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 43, - "y": 80 - }, - { - "x": 70, - "y": 49 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079350, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1265.596734, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "30", - "y": "51" - }, - { - "x": "30", - "y": "57" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078603, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1265.671363, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 70, - "y": 49 - }, - { - "x": 70, - "y": 43 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079353, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1267.761913, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": "30", - "y": "57" - }, - { - "x": "30", - "y": "51" - } - ], - "tags": [ - { - "id": 1702 - } - ] - }, - { - "id": 190078605, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1350.380318, - "eventName": 3, - "subEventName": 33, - "positions": [ - { - "x": 72, - "y": 49 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 101 - }, - { - "id": 402 - }, - { - "id": 1101 - }, - { - "id": 201 - }, - { - "id": 1204 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079356, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1353.007875, - "eventName": 9, - "subEventName": 91, - "positions": [ - { - "x": "0", - "y": "0" - }, - { - "x": "28", - "y": "51" - } - ], - "tags": [ - { - "id": 101 - }, - { - "id": 1204 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078607, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1406.491778, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 29, - "y": 92 - }, - { - "x": 38, - "y": 81 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079365, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1406.491778, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "71", - "y": "8" - }, - { - "x": "62", - "y": "19" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079366, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1408.098971, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "62", - "y": "19" - }, - { - "x": "80", - "y": "10" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078606, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1410.604104, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 20, - "y": 90 - }, - { - "x": 23, - "y": 99 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078608, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1411.361689, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 23, - "y": 99 - }, - { - "x": 46, - "y": 100 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078609, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1415.734741, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 46, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079369, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1429.326332, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "62", - "y": "0" - }, - { - "x": "70", - "y": "4" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079370, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1430.590475, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "70", - "y": "4" - }, - { - "x": "60", - "y": "3" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078610, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1432.600001, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 40, - "y": 97 - }, - { - "x": 44, - "y": 100 - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079373, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1432.600001, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "60", - "y": "3" - }, - { - "x": "56", - "y": "0" - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078611, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1436.038192, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 41, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078612, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1438.791787, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 44, - "y": 100 - }, - { - "x": 76, - "y": 85 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079374, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1445.426448, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": "24", - "y": "15" - }, - { - "x": "26", - "y": "0" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078613, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1449.437482, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 74, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078617, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1460.013697, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 74, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078614, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1461.789708, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 79, - "y": 100 - }, - { - "x": 67, - "y": 97 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078615, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1463.41936, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 67, - "y": 97 - }, - { - "x": 76, - "y": 98 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078616, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1464.392377, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 76, - "y": 98 - }, - { - "x": 79, - "y": 100 - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079377, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1464.392377, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "24", - "y": "2" - }, - { - "x": "21", - "y": "0" - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079645, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1466.073081, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 71, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079649, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1467.323152, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 79, - "y": 100 - }, - { - "x": 85, - "y": 87 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079383, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1468.341534, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "15", - "y": "13" - }, - { - "x": "12", - "y": "9" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190078618, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1469.834152, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 88, - "y": 91 - }, - { - "x": 75, - "y": 80 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078619, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1471.405863, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": 75, - "y": 80 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 401 - }, - { - "id": 2101 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079386, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1472.325724, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "16", - "y": "33" - }, - { - "x": "17", - "y": "67" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190078620, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1473.776449, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": 83, - "y": 33 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 401 - }, - { - "id": 2101 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079387, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1475.510858, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "11", - "y": "66" - }, - { - "x": "4", - "y": "78" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190078621, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1476.486968, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": 96, - "y": 22 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 403 - }, - { - "id": 2101 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079388, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1478.355647, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "5", - "y": "72" - }, - { - "x": "0", - "y": "70" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190078622, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1487.733663, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 100, - "y": 30 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078623, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1519.334818, - "eventName": 3, - "subEventName": 30, - "positions": [ - { - "x": 100, - "y": 0 - }, - { - "x": 96, - "y": 39 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079389, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1520.61246, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": "4", - "y": "61" - }, - { - "x": "29", - "y": "65" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078624, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1523.687392, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 71, - "y": 35 - }, - { - "x": 68, - "y": 57 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079393, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1523.981573, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "29", - "y": "65" - }, - { - "x": "32", - "y": "43" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078625, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1526.114406, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 68, - "y": 57 - }, - { - "x": 79, - "y": 54 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079396, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1526.114406, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "32", - "y": "43" - }, - { - "x": "21", - "y": "46" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079398, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1527.871481, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "21", - "y": "46" - }, - { - "x": "27", - "y": "36" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079399, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1529.531134, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "27", - "y": "36" - }, - { - "x": "31", - "y": "23" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078626, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1532.185314, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 69, - "y": 77 - }, - { - "x": 70, - "y": 96 - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079401, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1532.185314, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "31", - "y": "23" - }, - { - "x": "30", - "y": "4" - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078627, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1534.341085, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 70, - "y": 96 - }, - { - "x": 57, - "y": 95 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078628, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1535.705591, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 57, - "y": 95 - }, - { - "x": 73, - "y": 93 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078629, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1537.293964, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 73, - "y": 93 - }, - { - "x": 71, - "y": 94 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079403, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1537.293964, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "27", - "y": "7" - }, - { - "x": "29", - "y": "6" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079405, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1538.204873, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "29", - "y": "6" - }, - { - "x": "39", - "y": "4" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078630, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1539.752467, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 61, - "y": 96 - }, - { - "x": 61, - "y": 100 - } - ], - "tags": [ - { - "id": 601 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079407, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1539.752467, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "39", - "y": "4" - }, - { - "x": "39", - "y": "0" - } - ], - "tags": [ - { - "id": 602 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078631, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1544.16372, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 57, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079411, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1558.199267, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "39", - "y": "0" - }, - { - "x": "71", - "y": "3" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078632, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1559.714043, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 29, - "y": 97 - }, - { - "x": 25, - "y": 92 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079413, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1559.714043, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "71", - "y": "3" - }, - { - "x": "75", - "y": "8" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078633, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1561.224104, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 25, - "y": 92 - }, - { - "x": 39, - "y": 96 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078634, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1562.503024, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 39, - "y": 96 - }, - { - "x": 28, - "y": 100 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079415, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1562.503024, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "61", - "y": "4" - }, - { - "x": "72", - "y": "0" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078635, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1565.247944, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 28, - "y": 100 - }, - { - "x": 47, - "y": 95 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078636, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1565.847578, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 47, - "y": 95 - }, - { - "x": 54, - "y": 90 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079417, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1565.847578, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "53", - "y": "5" - }, - { - "x": "46", - "y": "10" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079419, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1567.038335, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "46", - "y": "10" - }, - { - "x": "63", - "y": "10" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078637, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1568.169919, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 37, - "y": 90 - }, - { - "x": 35, - "y": 81 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079420, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1568.169919, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "63", - "y": "10" - }, - { - "x": "65", - "y": "19" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078638, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1569.592483, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 35, - "y": 81 - }, - { - "x": 41, - "y": 73 - } - ], - "tags": [ - { - "id": 602 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080397, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1569.592483, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "65", - "y": "19" - }, - { - "x": "59", - "y": "27" - } - ], - "tags": [ - { - "id": 601 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079422, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1570.120865, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "59", - "y": "27" - }, - { - "x": "52", - "y": "23" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079425, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1570.649081, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "52", - "y": "23" - }, - { - "x": "59", - "y": "21" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079426, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1571.622733, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "59", - "y": "21" - }, - { - "x": "57", - "y": "28" - } - ], - "tags": [] - }, - { - "id": 190078639, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1574.72448, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 43, - "y": 72 - }, - { - "x": 60, - "y": 68 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078640, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1576.040251, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 60, - "y": 68 - }, - { - "x": 45, - "y": 52 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079429, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1576.040251, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "40", - "y": "32" - }, - { - "x": "55", - "y": "48" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078641, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1578.109348, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 45, - "y": 52 - }, - { - "x": 35, - "y": 46 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079431, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1578.109348, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "55", - "y": "48" - }, - { - "x": "65", - "y": "54" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078643, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1580.289666, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 35, - "y": 46 - }, - { - "x": 30, - "y": 41 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079434, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1580.289666, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "65", - "y": "54" - }, - { - "x": "70", - "y": "59" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078644, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1581.195019, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 30, - "y": 41 - }, - { - "x": 29, - "y": 41 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079436, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1581.195019, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "70", - "y": "59" - }, - { - "x": "71", - "y": "59" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078645, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1582.414004, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": 29, - "y": 41 - }, - { - "x": 30, - "y": 41 - } - ], - "tags": [] - }, - { - "id": 190079439, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1624.22875, - "eventName": 3, - "subEventName": 32, - "positions": [ - { - "x": "69", - "y": "68" - }, - { - "x": "87", - "y": "50" - } - ], - "tags": [ - { - "id": 801 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078647, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1627.173855, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 13, - "y": 50 - }, - { - "x": 23, - "y": 92 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078648, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1628.903641, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 23, - "y": 92 - }, - { - "x": 21, - "y": 92 - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079442, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1628.903641, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "77", - "y": "8" - }, - { - "x": "79", - "y": "8" - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078649, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1629.450902, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 21, - "y": 92 - }, - { - "x": 26, - "y": 96 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080398, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1629.450902, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "79", - "y": "8" - }, - { - "x": "74", - "y": "4" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079443, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1629.707428, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "74", - "y": "4" - }, - { - "x": "74", - "y": "14" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079444, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1631.797133, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "74", - "y": "14" - }, - { - "x": "87", - "y": "9" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078650, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1633.849632, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 13, - "y": 91 - }, - { - "x": 21, - "y": 100 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078651, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1636.664005, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 21, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079447, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1644.371201, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "70", - "y": "0" - }, - { - "x": "72", - "y": "15" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079449, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1645.200855, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "72", - "y": "15" - }, - { - "x": "76", - "y": "2" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079450, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1646.645255, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": "76", - "y": "2" - }, - { - "x": "90", - "y": "28" - } - ], - "tags": [ - { - "id": 401 - }, - { - "id": 801 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078652, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1648.994909, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 10, - "y": 72 - }, - { - "x": 21, - "y": 41 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079453, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1648.994909, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "90", - "y": "28" - }, - { - "x": "79", - "y": "59" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078653, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1651.858545, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 21, - "y": 41 - }, - { - "x": 31, - "y": 56 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079455, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1653.220256, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "69", - "y": "44" - }, - { - "x": "71", - "y": "45" - } - ], - "tags": [] - }, - { - "id": 190078654, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1654.010941, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 29, - "y": 55 - }, - { - "x": 27, - "y": 57 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079456, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1654.010941, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "71", - "y": "45" - }, - { - "x": "73", - "y": "43" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079458, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1655.929354, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "73", - "y": "43" - }, - { - "x": "77", - "y": "66" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078655, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1658.714082, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 23, - "y": 34 - }, - { - "x": 21, - "y": 33 - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079459, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1658.714082, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "77", - "y": "66" - }, - { - "x": "79", - "y": "67" - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079462, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1659.964336, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "79", - "y": "67" - }, - { - "x": "93", - "y": "83" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079464, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1660.722442, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": "93", - "y": "83" - }, - { - "x": "88", - "y": "44" - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 801 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078656, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1663.809797, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 12, - "y": 56 - }, - { - "x": 28, - "y": 66 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078657, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1666.441165, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 28, - "y": 66 - }, - { - "x": 60, - "y": 96 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078659, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1670.652927, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 60, - "y": 96 - }, - { - "x": 71, - "y": 95 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079468, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1670.652927, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "40", - "y": "4" - }, - { - "x": "29", - "y": "5" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079471, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1671.870786, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "29", - "y": "5" - }, - { - "x": "33", - "y": "21" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078660, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1673.888587, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 67, - "y": 79 - }, - { - "x": 73, - "y": 75 - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079473, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1673.888587, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "33", - "y": "21" - }, - { - "x": "27", - "y": "25" - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078661, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1675.097204, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 73, - "y": 75 - }, - { - "x": 76, - "y": 58 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079474, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1675.097204, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "27", - "y": "25" - }, - { - "x": "24", - "y": "42" - } - ], - "tags": [ - { - "id": 1601 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079476, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1676.83112, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "24", - "y": "42" - }, - { - "x": "23", - "y": "5" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079479, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1679.505294, - "eventName": 7, - "subEventName": 70, - "positions": [ - { - "x": "23", - "y": "5" - }, - { - "x": "40", - "y": "6" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079481, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1682.218074, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "40", - "y": "6" - }, - { - "x": "36", - "y": "2" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079483, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1683.057682, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "36", - "y": "2" - }, - { - "x": "79", - "y": "17" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079486, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1687.036074, - "eventName": 6, - "subEventName": "", - "positions": [ - { - "x": "79", - "y": "17" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [] - }, - { - "id": 190078663, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1720.337919, - "eventName": 3, - "subEventName": 31, - "positions": [ - { - "x": 29, - "y": 72 - }, - { - "x": 72, - "y": 73 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079488, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1722.539559, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "28", - "y": "27" - }, - { - "x": "41", - "y": "9" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078664, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1724.595363, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 59, - "y": 91 - }, - { - "x": 45, - "y": 65 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079490, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1724.595363, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "41", - "y": "9" - }, - { - "x": "55", - "y": "35" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078665, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1727.39599, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 45, - "y": 65 - }, - { - "x": 37, - "y": 79 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079495, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1729.671966, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "63", - "y": "21" - }, - { - "x": "62", - "y": "22" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078666, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1732.466046, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 38, - "y": 78 - }, - { - "x": 61, - "y": 79 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078667, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1735.106882, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 61, - "y": 79 - }, - { - "x": 83, - "y": 86 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078668, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1738.457705, - "eventName": 8, - "subEventName": 86, - "positions": [ - { - "x": 83, - "y": 86 - }, - { - "x": 91, - "y": 63 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079501, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1741.065444, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "9", - "y": "37" - }, - { - "x": "21", - "y": "33" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079503, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1743.092755, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "21", - "y": "33" - }, - { - "x": "30", - "y": "49" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079505, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1746.004414, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "30", - "y": "49" - }, - { - "x": "42", - "y": "75" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079508, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1749.115437, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "42", - "y": "75" - }, - { - "x": "72", - "y": "27" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078671, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1751.552185, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 28, - "y": 73 - }, - { - "x": 27, - "y": 35 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078672, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1757.349855, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 27, - "y": 35 - }, - { - "x": 39, - "y": 36 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078673, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1760.312493, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 39, - "y": 36 - }, - { - "x": 39, - "y": 16 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078674, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1762.69079, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 39, - "y": 16 - }, - { - "x": 26, - "y": 38 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078675, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1765.189055, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 26, - "y": 38 - }, - { - "x": 27, - "y": 60 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078676, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1768.787702, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 27, - "y": 60 - }, - { - "x": 29, - "y": 33 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078677, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1770.184409, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 29, - "y": 33 - }, - { - "x": 30, - "y": 6 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078678, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1773.494933, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 30, - "y": 6 - }, - { - "x": 48, - "y": 12 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078679, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1775.667345, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 48, - "y": 12 - }, - { - "x": 49, - "y": 12 - } - ], - "tags": [ - { - "id": 602 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079511, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1775.953704, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "52", - "y": "88" - }, - { - "x": "51", - "y": "88" - } - ], - "tags": [ - { - "id": 601 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078680, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1778.231491, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 49, - "y": 12 - }, - { - "x": 43, - "y": 27 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078681, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1780.023899, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 43, - "y": 27 - }, - { - "x": 45, - "y": 43 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078682, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1780.484241, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 45, - "y": 43 - }, - { - "x": 58, - "y": 52 - } - ], - "tags": [] - }, - { - "id": 190078683, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1783.809754, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 58, - "y": 52 - }, - { - "x": 60, - "y": 93 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078685, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1787.424886, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 60, - "y": 93 - }, - { - "x": 73, - "y": 97 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078687, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1789.178034, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 73, - "y": 97 - }, - { - "x": 64, - "y": 83 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078688, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1791.986565, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 64, - "y": 83 - }, - { - "x": 72, - "y": 84 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079515, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1791.986565, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "36", - "y": "17" - }, - { - "x": "28", - "y": "16" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078689, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1793.589355, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 72, - "y": 84 - }, - { - "x": 67, - "y": 45 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078690, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1796.077371, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 67, - "y": 45 - }, - { - "x": 80, - "y": 18 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078692, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1797.210959, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 80, - "y": 18 - }, - { - "x": 88, - "y": 35 - } - ], - "tags": [] - }, - { - "id": 190078693, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1803.172783, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 88, - "y": 35 - }, - { - "x": 79, - "y": 31 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078694, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1805.546594, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 79, - "y": 31 - }, - { - "x": 82, - "y": 46 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078695, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1806.937982, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 82, - "y": 46 - }, - { - "x": 74, - "y": 43 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078696, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1807.524996, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 74, - "y": 43 - }, - { - "x": 88, - "y": 65 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079517, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1807.598559, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": "12", - "y": "35" - }, - { - "x": "36", - "y": "100" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078697, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1814.411875, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 64, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078698, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1823.180668, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 64, - "y": 0 - }, - { - "x": 89, - "y": 2 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078699, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1827.21188, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 89, - "y": 2 - }, - { - "x": 88, - "y": 15 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079520, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1828.995189, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "12", - "y": "85" - }, - { - "x": "14", - "y": "69" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079523, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1833.244615, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "14", - "y": "69" - }, - { - "x": "7", - "y": "48" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079524, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1835.549439, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": "7", - "y": "48" - }, - { - "x": "40", - "y": "5" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078700, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1841.48983, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 60, - "y": 95 - }, - { - "x": 61, - "y": 72 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078701, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1843.166609, - "eventName": 8, - "subEventName": 86, - "positions": [ - { - "x": 61, - "y": 72 - }, - { - "x": 70, - "y": 83 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078703, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1844.782223, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 70, - "y": 83 - }, - { - "x": 74, - "y": 91 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079526, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1844.863669, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "30", - "y": "17" - }, - { - "x": "26", - "y": "9" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079531, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1846.404765, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "26", - "y": "9" - }, - { - "x": "31", - "y": "9" - } - ], - "tags": [] - }, - { - "id": 190078704, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1848.753702, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 69, - "y": 91 - }, - { - "x": 80, - "y": 97 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078705, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1850.524812, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 80, - "y": 97 - }, - { - "x": 77, - "y": 93 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078706, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1851.840964, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 77, - "y": 93 - }, - { - "x": 73, - "y": 91 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079532, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1851.840964, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "23", - "y": "7" - }, - { - "x": "27", - "y": "9" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078707, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1852.924723, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 73, - "y": 91 - }, - { - "x": 67, - "y": 97 - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079534, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1852.924723, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "27", - "y": "9" - }, - { - "x": "33", - "y": "3" - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078708, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1855.15591, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 67, - "y": 97 - }, - { - "x": 82, - "y": 91 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078709, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1859.503233, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 82, - "y": 91 - }, - { - "x": 84, - "y": 90 - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079637, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1859.503233, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "18", - "y": "9" - }, - { - "x": "16", - "y": "10" - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078710, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1860.950898, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 84, - "y": 90 - }, - { - "x": 90, - "y": 95 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079638, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1860.950898, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "16", - "y": "10" - }, - { - "x": "10", - "y": "5" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079639, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1862.272812, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "10", - "y": "5" - }, - { - "x": "19", - "y": "2" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079640, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1863.556288, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "19", - "y": "2" - }, - { - "x": "15", - "y": "2" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078711, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1864.341542, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 81, - "y": 98 - }, - { - "x": 85, - "y": 98 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079641, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1864.94735, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "15", - "y": "2" - }, - { - "x": "24", - "y": "0" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080399, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1864.94735, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 85, - "y": 98 - }, - { - "x": 76, - "y": 100 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078712, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1867.641618, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 81, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079642, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1886.09193, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "24", - "y": "0" - }, - { - "x": "36", - "y": "4" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079643, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1887.136116, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "36", - "y": "4" - }, - { - "x": "37", - "y": "6" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078713, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1889.707194, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 63, - "y": 94 - }, - { - "x": 67, - "y": 88 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078714, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1890.481702, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 67, - "y": 88 - }, - { - "x": 55, - "y": 93 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078715, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1892.77558, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 55, - "y": 93 - }, - { - "x": 73, - "y": 77 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078716, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1894.503213, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 73, - "y": 77 - }, - { - "x": 61, - "y": 84 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079644, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1895.066116, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "27", - "y": "23" - }, - { - "x": "39", - "y": "16" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078717, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1896.511962, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 61, - "y": 84 - }, - { - "x": 70, - "y": 65 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078719, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1898.83298, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 70, - "y": 65 - }, - { - "x": 77, - "y": 38 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078720, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1901.115484, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": 77, - "y": 38 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 401 - }, - { - "id": 2101 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079646, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1902.442062, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "12", - "y": "63" - }, - { - "x": "0", - "y": "95" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190078721, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1908.285618, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 100, - "y": 5 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078722, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1926.267831, - "eventName": 3, - "subEventName": 30, - "positions": [ - { - "x": 100, - "y": 0 - }, - { - "x": 89, - "y": 49 - } - ], - "tags": [ - { - "id": 302 - }, - { - "id": 801 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078723, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1928.007424, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 89, - "y": 49 - }, - { - "x": 89, - "y": 48 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079647, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1928.007424, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "11", - "y": "51" - }, - { - "x": "11", - "y": "52" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078724, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1929.000054, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 89, - "y": 48 - }, - { - "x": 90, - "y": 46 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079648, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1929.000054, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "11", - "y": "52" - }, - { - "x": "10", - "y": "54" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078725, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1930.41706, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": 90, - "y": 46 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 403 - }, - { - "id": 201 - }, - { - "id": 1203 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079821, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1930.96264, - "eventName": 9, - "subEventName": 91, - "positions": [ - { - "x": "0", - "y": "0" - }, - { - "x": "10", - "y": "54" - } - ], - "tags": [ - { - "id": 1203 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079650, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1930.975528, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "9", - "y": "66" - }, - { - "x": "61", - "y": "72" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078726, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1935.13643, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 39, - "y": 28 - }, - { - "x": 64, - "y": 29 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079651, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1935.13643, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "61", - "y": "72" - }, - { - "x": "36", - "y": "71" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078727, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1937.217579, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 64, - "y": 29 - }, - { - "x": 56, - "y": 0 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078728, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1942.523621, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 56, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079652, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1963.836455, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "36", - "y": "100" - }, - { - "x": "60", - "y": "94" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079653, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1966.260843, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "60", - "y": "94" - }, - { - "x": "42", - "y": "94" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079654, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1967.030696, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "42", - "y": "94" - }, - { - "x": "76", - "y": "92" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079655, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1969.530208, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "76", - "y": "92" - }, - { - "x": "72", - "y": "86" - } - ], - "tags": [ - { - "id": 602 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078730, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1970.115166, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 24, - "y": 8 - }, - { - "x": 28, - "y": 14 - } - ], - "tags": [ - { - "id": 601 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079656, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1971.168888, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "72", - "y": "86" - }, - { - "x": "76", - "y": "95" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078731, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1971.986685, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 24, - "y": 5 - }, - { - "x": 35, - "y": 32 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079657, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1973.77428, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "65", - "y": "68" - }, - { - "x": "85", - "y": "10" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078733, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1978.510575, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 15, - "y": 90 - }, - { - "x": 22, - "y": 100 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078734, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 1982.753453, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 22, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079658, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2000.260249, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "73", - "y": "0" - }, - { - "x": "90", - "y": "24" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079659, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2001.538173, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "90", - "y": "24" - }, - { - "x": "67", - "y": "24" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079660, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2004.085368, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "67", - "y": "24" - }, - { - "x": "79", - "y": "8" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078735, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2005.602931, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 21, - "y": 92 - }, - { - "x": 43, - "y": 78 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079661, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2005.602931, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "79", - "y": "8" - }, - { - "x": "57", - "y": "22" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079662, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2007.513311, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "57", - "y": "22" - }, - { - "x": "55", - "y": "15" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190079663, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2009.215542, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "55", - "y": "15" - }, - { - "x": "70", - "y": "4" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078736, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2013.252394, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 30, - "y": 96 - }, - { - "x": 27, - "y": 98 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079664, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2013.252394, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "70", - "y": "4" - }, - { - "x": "73", - "y": "2" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078737, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2014.128134, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 27, - "y": 98 - }, - { - "x": 23, - "y": 98 - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079665, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2014.128134, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "73", - "y": "2" - }, - { - "x": "77", - "y": "2" - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078738, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2016.43182, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 23, - "y": 98 - }, - { - "x": 7, - "y": 84 - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079666, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2016.43182, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "77", - "y": "2" - }, - { - "x": "93", - "y": "16" - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078739, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2018.946418, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 7, - "y": 84 - }, - { - "x": 41, - "y": 100 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078740, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2022.02206, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 41, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079667, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2025.998559, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "56", - "y": "0" - }, - { - "x": "86", - "y": "4" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079668, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2028.695969, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "86", - "y": "4" - }, - { - "x": "85", - "y": "0" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078742, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2031.815706, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 15, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078743, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2049.207826, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 19, - "y": 100 - }, - { - "x": 38, - "y": 96 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079669, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2050.936053, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": "62", - "y": "4" - }, - { - "x": "66", - "y": "0" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078744, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2057.649313, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 34, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078745, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2064.336418, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 28, - "y": 100 - }, - { - "x": 37, - "y": 85 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078746, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2065.795776, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 37, - "y": 85 - }, - { - "x": 34, - "y": 97 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078747, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2066.349894, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 34, - "y": 97 - }, - { - "x": 41, - "y": 100 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079670, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2066.349894, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "66", - "y": "3" - }, - { - "x": "59", - "y": "0" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078748, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2070.892687, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 34, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079671, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2081.344041, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "59", - "y": "0" - }, - { - "x": "57", - "y": "13" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079672, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2083.682212, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "57", - "y": "13" - }, - { - "x": "32", - "y": "21" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079673, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2086.844171, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "32", - "y": "21" - }, - { - "x": "31", - "y": "56" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079674, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2089.001242, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "31", - "y": "56" - }, - { - "x": "52", - "y": "76" - } - ], - "tags": [] - }, - { - "id": 190079675, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2093.257623, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "52", - "y": "76" - }, - { - "x": "51", - "y": "85" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079676, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2095.14844, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "51", - "y": "85" - }, - { - "x": "28", - "y": "59" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079677, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2099.508242, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": "28", - "y": "59" - }, - { - "x": "68", - "y": "2" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078749, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2102.72887, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 32, - "y": 98 - }, - { - "x": 28, - "y": 92 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079678, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2102.72887, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "68", - "y": "2" - }, - { - "x": "72", - "y": "8" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079679, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2105.227023, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "72", - "y": "8" - }, - { - "x": "91", - "y": "20" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079681, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2108.203772, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": "91", - "y": "20" - }, - { - "x": "86", - "y": "28" - } - ], - "tags": [ - { - "id": 401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078752, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2110.19561, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 6, - "y": 50 - }, - { - "x": 14, - "y": 72 - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190078753, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2129.116797, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": 14, - "y": 72 - }, - { - "x": 65, - "y": 89 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078754, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2130.426943, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 65, - "y": 89 - }, - { - "x": 57, - "y": 98 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079682, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2130.987752, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "35", - "y": "11" - }, - { - "x": "43", - "y": "2" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078755, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2133.452773, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 57, - "y": 98 - }, - { - "x": 51, - "y": 90 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079683, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2133.452773, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "43", - "y": "2" - }, - { - "x": "49", - "y": "10" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078756, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2134.632351, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 51, - "y": 90 - }, - { - "x": 55, - "y": 100 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079684, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2134.632351, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "49", - "y": "10" - }, - { - "x": "45", - "y": "0" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078757, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2139.168841, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 54, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079685, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2151.521551, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "45", - "y": "0" - }, - { - "x": "39", - "y": "19" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079686, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2153.268131, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "39", - "y": "19" - }, - { - "x": "33", - "y": "37" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079687, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2155.665006, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "33", - "y": "37" - }, - { - "x": "63", - "y": "81" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079688, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2158.033334, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "63", - "y": "81" - }, - { - "x": "88", - "y": "92" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079690, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2162.81369, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": "88", - "y": "92" - }, - { - "x": "87", - "y": "66" - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079691, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2165.422279, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "87", - "y": "66" - }, - { - "x": "81", - "y": "88" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079692, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2166.932577, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "81", - "y": "88" - }, - { - "x": "71", - "y": "83" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079693, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2168.90965, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": "71", - "y": "83" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [ - { - "id": 401 - }, - { - "id": 801 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078760, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2171.628689, - "eventName": 4, - "subEventName": 40, - "positions": [ - { - "x": 100, - "y": 100 - }, - { - "x": 29, - "y": 17 - } - ], - "tags": [] - }, - { - "id": 190078761, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2185.975188, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 14, - "y": 56 - }, - { - "x": 68, - "y": 33 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078762, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2190.40427, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 68, - "y": 33 - }, - { - "x": 71, - "y": 59 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079694, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2190.40427, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "32", - "y": "67" - }, - { - "x": "29", - "y": "41" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079695, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2195.461597, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "29", - "y": "41" - }, - { - "x": "10", - "y": "48" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079696, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2197.513953, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "10", - "y": "48" - }, - { - "x": "37", - "y": "25" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079697, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2199.324283, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "37", - "y": "25" - }, - { - "x": "43", - "y": "8" - } - ], - "tags": [ - { - "id": 1302 - } - ] - }, - { - "id": 190078763, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2200.52985, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 57, - "y": 92 - }, - { - "x": 67, - "y": 93 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079698, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2201.952347, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": "33", - "y": "7" - }, - { - "x": "38", - "y": "0" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078764, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2207.310583, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 62, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078765, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2209.874588, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 59, - "y": 100 - }, - { - "x": 31, - "y": 87 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078766, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2214.483887, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 31, - "y": 87 - }, - { - "x": 10, - "y": 77 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078767, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2217.963622, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": 10, - "y": 77 - }, - { - "x": 63, - "y": 88 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078768, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2220.885547, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 63, - "y": 88 - }, - { - "x": 57, - "y": 80 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079699, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2220.885547, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "37", - "y": "12" - }, - { - "x": "43", - "y": "20" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078769, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2222.287527, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 57, - "y": 80 - }, - { - "x": 62, - "y": 84 - } - ], - "tags": [] - }, - { - "id": 190078770, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2223.33173, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 62, - "y": 84 - }, - { - "x": 64, - "y": 88 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079700, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2223.33173, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "38", - "y": "16" - }, - { - "x": "36", - "y": "12" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079701, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2224.213058, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "36", - "y": "12" - }, - { - "x": "44", - "y": "3" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078771, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2227.855494, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 56, - "y": 97 - }, - { - "x": 51, - "y": 95 - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079702, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2227.855494, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "44", - "y": "3" - }, - { - "x": "49", - "y": "5" - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078772, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2230.194391, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": 51, - "y": 95 - }, - { - "x": 56, - "y": 97 - } - ], - "tags": [] - }, - { - "id": 190079703, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2250.370079, - "eventName": 3, - "subEventName": 31, - "positions": [ - { - "x": "45", - "y": "5" - }, - { - "x": "33", - "y": "59" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079704, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2252.479471, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "33", - "y": "59" - }, - { - "x": "54", - "y": "29" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079705, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2258.095128, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "54", - "y": "29" - }, - { - "x": "67", - "y": "1" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079706, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2259.883876, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "67", - "y": "1" - }, - { - "x": "72", - "y": "3" - } - ], - "tags": [] - }, - { - "id": 190078773, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2262.049544, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 28, - "y": 97 - }, - { - "x": 36, - "y": 92 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079707, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2262.873107, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "64", - "y": "8" - }, - { - "x": "64", - "y": "29" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078774, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2263.005405, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 36, - "y": 92 - }, - { - "x": 36, - "y": 71 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078775, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2264.877589, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 36, - "y": 71 - }, - { - "x": 37, - "y": 80 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078776, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2265.77664, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 37, - "y": 80 - }, - { - "x": 34, - "y": 66 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078777, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2266.887354, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 34, - "y": 66 - }, - { - "x": 47, - "y": 54 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079708, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2269.024773, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "53", - "y": "46" - }, - { - "x": "70", - "y": "58" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079709, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2270.172996, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "70", - "y": "58" - }, - { - "x": "55", - "y": "10" - } - ], - "tags": [] - }, - { - "id": 190078779, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2274.620906, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 45, - "y": 90 - }, - { - "x": 24, - "y": 87 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078778, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2274.73085, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 24, - "y": 87 - }, - { - "x": 52, - "y": 79 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078780, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2275.767826, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 52, - "y": 79 - }, - { - "x": 37, - "y": 94 - } - ], - "tags": [ - { - "id": 602 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079710, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2275.767826, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "48", - "y": "21" - }, - { - "x": "63", - "y": "6" - } - ], - "tags": [ - { - "id": 601 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078782, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2279.560869, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 37, - "y": 94 - }, - { - "x": 25, - "y": 100 - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079711, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2279.560869, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "63", - "y": "6" - }, - { - "x": "75", - "y": "0" - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078783, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2288.184441, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 33, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078784, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2291.687224, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 25, - "y": 100 - }, - { - "x": 60, - "y": 93 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079712, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2294.4062, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": "40", - "y": "7" - }, - { - "x": "54", - "y": "0" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078785, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2300.723049, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 46, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078786, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2303.368499, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 41, - "y": 100 - }, - { - "x": 44, - "y": 97 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078788, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2304.85504, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 44, - "y": 97 - }, - { - "x": 53, - "y": 93 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078787, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2305.205847, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 53, - "y": 93 - }, - { - "x": 48, - "y": 87 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078789, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2306.511621, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 48, - "y": 87 - }, - { - "x": 40, - "y": 88 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079713, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2306.511621, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "52", - "y": "13" - }, - { - "x": "60", - "y": "12" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078790, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2309.48392, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 40, - "y": 88 - }, - { - "x": 41, - "y": 85 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079714, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2309.48392, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "60", - "y": "12" - }, - { - "x": "59", - "y": "15" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078791, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2310.849186, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": 41, - "y": 85 - }, - { - "x": 40, - "y": 88 - } - ], - "tags": [] - }, - { - "id": 190079715, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2336.594029, - "eventName": 3, - "subEventName": 32, - "positions": [ - { - "x": "63", - "y": "12" - }, - { - "x": "85", - "y": "59" - } - ], - "tags": [ - { - "id": 801 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078792, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2338.86224, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 15, - "y": 41 - }, - { - "x": 14, - "y": 39 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079716, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2338.86224, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "85", - "y": "59" - }, - { - "x": "86", - "y": "61" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078793, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2339.112406, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 14, - "y": 39 - }, - { - "x": 8, - "y": 37 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080400, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2339.112406, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "86", - "y": "61" - }, - { - "x": "92", - "y": "63" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079717, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2342.073074, - "eventName": 6, - "subEventName": "", - "positions": [ - { - "x": "92", - "y": "63" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [] - }, - { - "id": 190078794, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2374.206255, - "eventName": 3, - "subEventName": 31, - "positions": [ - { - "x": 14, - "y": 34 - }, - { - "x": 65, - "y": 78 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078795, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2375.629987, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 65, - "y": 78 - }, - { - "x": 64, - "y": 75 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079719, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2375.629987, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "35", - "y": "22" - }, - { - "x": "36", - "y": "25" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078796, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2377.459214, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 64, - "y": 75 - }, - { - "x": 73, - "y": 71 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079720, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2378.374318, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": "27", - "y": "29" - }, - { - "x": "66", - "y": "51" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078797, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2381.412901, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 34, - "y": 49 - }, - { - "x": 38, - "y": 44 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079721, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2381.412901, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "66", - "y": "51" - }, - { - "x": "62", - "y": "56" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078798, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2384.587669, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 38, - "y": 44 - }, - { - "x": 60, - "y": 24 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079722, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2386.000608, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "40", - "y": "76" - }, - { - "x": "66", - "y": "78" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079723, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2387.208046, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "66", - "y": "78" - }, - { - "x": "44", - "y": "68" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079724, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2390.635645, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "44", - "y": "68" - }, - { - "x": "33", - "y": "58" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079725, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2394.443899, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "33", - "y": "58" - }, - { - "x": "48", - "y": "21" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079726, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2398.754699, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "48", - "y": "21" - }, - { - "x": "53", - "y": "4" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079727, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2402.845411, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "53", - "y": "4" - }, - { - "x": "33", - "y": "6" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078800, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2406.888015, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 67, - "y": 94 - }, - { - "x": 71, - "y": 89 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079728, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2406.888015, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "33", - "y": "6" - }, - { - "x": "29", - "y": "11" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079729, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2409.734226, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "29", - "y": "11" - }, - { - "x": "9", - "y": "42" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079730, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2413.931605, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "9", - "y": "42" - }, - { - "x": "46", - "y": "93" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078801, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2418.08721, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 54, - "y": 7 - }, - { - "x": 59, - "y": 16 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079731, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2418.08721, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "46", - "y": "93" - }, - { - "x": "41", - "y": "84" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079732, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2420.290482, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "41", - "y": "84" - }, - { - "x": "44", - "y": "65" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079733, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2422.212938, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "44", - "y": "65" - }, - { - "x": "74", - "y": "85" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078802, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2424.074362, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 26, - "y": 15 - }, - { - "x": 35, - "y": 31 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078803, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2426.582621, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 35, - "y": 31 - }, - { - "x": 36, - "y": 18 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078804, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2427.481878, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 36, - "y": 18 - }, - { - "x": 37, - "y": 4 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079734, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2431.472791, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "63", - "y": "96" - }, - { - "x": "72", - "y": "75" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078806, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2433.215121, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 28, - "y": 25 - }, - { - "x": 31, - "y": 26 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078808, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2435.058104, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 31, - "y": 26 - }, - { - "x": 30, - "y": 31 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078809, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2437.442672, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 30, - "y": 31 - }, - { - "x": 30, - "y": 38 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079735, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2437.442672, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "69", - "y": "74" - }, - { - "x": "70", - "y": "69" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080401, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2437.442672, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "70", - "y": "69" - }, - { - "x": "70", - "y": "62" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078807, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2440.536427, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 30, - "y": 38 - }, - { - "x": 30, - "y": 82 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078810, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2443.062283, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 30, - "y": 82 - }, - { - "x": 38, - "y": 100 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078811, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2447.819146, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 38, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079736, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2466.585254, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "50", - "y": "0" - }, - { - "x": "68", - "y": "70" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078812, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2469.384807, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 32, - "y": 30 - }, - { - "x": 66, - "y": 97 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078813, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2473.032826, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 66, - "y": 97 - }, - { - "x": 67, - "y": 100 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078814, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2477.184108, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 67, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079737, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2494.020975, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "32", - "y": "0" - }, - { - "x": "38", - "y": "4" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078815, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2495.467367, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 62, - "y": 96 - }, - { - "x": 53, - "y": 89 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079738, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2495.467367, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "38", - "y": "4" - }, - { - "x": "47", - "y": "11" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078816, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2497.500072, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 53, - "y": 89 - }, - { - "x": 65, - "y": 96 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078817, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2498.295728, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 65, - "y": 96 - }, - { - "x": 56, - "y": 97 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079739, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2498.295728, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "35", - "y": "4" - }, - { - "x": "44", - "y": "3" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078818, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2501.323767, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 56, - "y": 97 - }, - { - "x": 70, - "y": 100 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078819, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2507.243646, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 70, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079740, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2514.419844, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "31", - "y": "0" - }, - { - "x": "59", - "y": "4" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079741, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2515.473774, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "59", - "y": "4" - }, - { - "x": "58", - "y": "5" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078820, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2515.519122, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 41, - "y": 96 - }, - { - "x": 42, - "y": 95 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078821, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2516.837437, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 42, - "y": 95 - }, - { - "x": 64, - "y": 83 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079742, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2517.636641, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "36", - "y": "17" - }, - { - "x": "63", - "y": "13" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078822, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2519.380381, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 37, - "y": 87 - }, - { - "x": 47, - "y": 71 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079743, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2519.380381, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "63", - "y": "13" - }, - { - "x": "53", - "y": "29" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079744, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2521.901098, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "53", - "y": "29" - }, - { - "x": "62", - "y": "20" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078823, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2523.843502, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 38, - "y": 80 - }, - { - "x": 64, - "y": 82 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078824, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2524.929417, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 64, - "y": 82 - }, - { - "x": 58, - "y": 72 - } - ], - "tags": [] - }, - { - "id": 190078825, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2525.801524, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 58, - "y": 72 - }, - { - "x": 66, - "y": 63 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079745, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2525.801524, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "42", - "y": "28" - }, - { - "x": "34", - "y": "37" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078828, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2527.703751, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 66, - "y": 63 - }, - { - "x": 66, - "y": 57 - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079746, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2527.870075, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "34", - "y": "37" - }, - { - "x": "34", - "y": "43" - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078829, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2529.245542, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 66, - "y": 57 - }, - { - "x": 77, - "y": 41 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078831, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2532.852986, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 77, - "y": 41 - }, - { - "x": 88, - "y": 33 - } - ], - "tags": [ - { - "id": 302 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078832, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2534.503759, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": 88, - "y": 33 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 401 - }, - { - "id": 201 - }, - { - "id": 1210 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078833, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2542.860481, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 100, - "y": 62 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079748, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2561.302595, - "eventName": 3, - "subEventName": 34, - "positions": [ - { - "x": "0", - "y": "0" - }, - { - "x": "70", - "y": "93" - } - ], - "tags": [] - }, - { - "id": 190079749, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2567.339692, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "70", - "y": "93" - }, - { - "x": "54", - "y": "90" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079750, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2569.342982, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "54", - "y": "90" - }, - { - "x": "63", - "y": "71" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079751, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2570.170318, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "63", - "y": "71" - }, - { - "x": "65", - "y": "60" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079752, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2572.798173, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "65", - "y": "60" - }, - { - "x": "56", - "y": "50" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079753, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2574.56698, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "56", - "y": "50" - }, - { - "x": "57", - "y": "11" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079754, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2576.76328, - "eventName": 7, - "subEventName": 70, - "positions": [ - { - "x": "57", - "y": "11" - }, - { - "x": "74", - "y": "19" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079755, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2579.494347, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "74", - "y": "19" - }, - { - "x": "83", - "y": "47" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078835, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2581.008346, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 17, - "y": 53 - }, - { - "x": 36, - "y": 48 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079756, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2583.275199, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "64", - "y": "52" - }, - { - "x": "71", - "y": "75" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079757, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2586.217095, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "71", - "y": "75" - }, - { - "x": "64", - "y": "57" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079758, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2588.190771, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "64", - "y": "57" - }, - { - "x": "69", - "y": "55" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079759, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2589.018735, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "69", - "y": "55" - }, - { - "x": "68", - "y": "76" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079760, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2590.396621, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "68", - "y": "76" - }, - { - "x": "73", - "y": "66" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079761, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2591.475959, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "73", - "y": "66" - }, - { - "x": "74", - "y": "82" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079762, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2592.380946, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "74", - "y": "82" - }, - { - "x": "77", - "y": "61" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078836, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2593.758745, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 23, - "y": 39 - }, - { - "x": 23, - "y": 37 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079763, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2593.758745, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "77", - "y": "61" - }, - { - "x": "77", - "y": "63" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078837, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2594.658796, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 23, - "y": 37 - }, - { - "x": 22, - "y": 35 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079764, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2594.658796, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "77", - "y": "63" - }, - { - "x": "78", - "y": "65" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078838, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2595.686574, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 22, - "y": 35 - }, - { - "x": 13, - "y": 44 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078839, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2597.179297, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 13, - "y": 44 - }, - { - "x": 33, - "y": 31 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078840, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2598.979111, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 33, - "y": 31 - }, - { - "x": 31, - "y": 39 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079765, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2598.979111, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "67", - "y": "69" - }, - { - "x": "69", - "y": "61" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079766, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2600.726984, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "69", - "y": "61" - }, - { - "x": "55", - "y": "49" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079767, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2602.627428, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "55", - "y": "49" - }, - { - "x": "54", - "y": "21" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079768, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2606.836877, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "54", - "y": "21" - }, - { - "x": "34", - "y": "38" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079769, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2610.239211, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "34", - "y": "38" - }, - { - "x": "41", - "y": "71" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079770, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2612.263347, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "41", - "y": "71" - }, - { - "x": "52", - "y": "69" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079771, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2614.451023, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "52", - "y": "69" - }, - { - "x": "56", - "y": "76" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078841, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2617.562745, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 44, - "y": 24 - }, - { - "x": 54, - "y": 37 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078843, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2620.192107, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 54, - "y": 37 - }, - { - "x": 71, - "y": 43 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078844, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2623.012025, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 71, - "y": 43 - }, - { - "x": 71, - "y": 34 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 503 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079772, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2623.012025, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "29", - "y": "57" - }, - { - "x": "29", - "y": "66" - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079773, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2625.259952, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "29", - "y": "66" - }, - { - "x": "29", - "y": "44" - } - ], - "tags": [] - }, - { - "id": 190078846, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2631.12842, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 71, - "y": 56 - }, - { - "x": 67, - "y": 64 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078847, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2634.665927, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 67, - "y": 64 - }, - { - "x": 82, - "y": 20 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078848, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2639.637065, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 82, - "y": 20 - }, - { - "x": 70, - "y": 40 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078849, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2640.037203, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 70, - "y": 40 - }, - { - "x": 82, - "y": 36 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078850, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2641.749058, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 82, - "y": 36 - }, - { - "x": 82, - "y": 32 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078851, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2642.531764, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 82, - "y": 32 - }, - { - "x": 90, - "y": 31 - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079774, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2642.531764, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "18", - "y": "68" - }, - { - "x": "10", - "y": "69" - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 1601 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079775, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2643.419963, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "10", - "y": "69" - }, - { - "x": "24", - "y": "71" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079776, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2645.02236, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "24", - "y": "71" - }, - { - "x": "29", - "y": "66" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078852, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2646.408499, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 71, - "y": 34 - }, - { - "x": 78, - "y": 29 - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079777, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2646.408499, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "29", - "y": "66" - }, - { - "x": "22", - "y": "71" - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078854, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2647.907685, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 78, - "y": 29 - }, - { - "x": 76, - "y": 25 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079779, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2647.907685, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "22", - "y": "71" - }, - { - "x": "24", - "y": "75" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079780, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2648.161261, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "24", - "y": "75" - }, - { - "x": "27", - "y": "69" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078855, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2651.334202, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 73, - "y": 31 - }, - { - "x": 79, - "y": 31 - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079781, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2651.334202, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "27", - "y": "69" - }, - { - "x": "21", - "y": "69" - } - ], - "tags": [ - { - "id": 2001 - }, - { - "id": 504 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078857, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2655.540168, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 79, - "y": 31 - }, - { - "x": 93, - "y": 25 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078858, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2656.677308, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 93, - "y": 25 - }, - { - "x": 90, - "y": 38 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078859, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2657.066088, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 90, - "y": 38 - }, - { - "x": 94, - "y": 26 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078860, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2657.702977, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 94, - "y": 26 - }, - { - "x": 94, - "y": 23 - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079782, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2657.702977, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "6", - "y": "74" - }, - { - "x": "6", - "y": "77" - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079783, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2658.962943, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "6", - "y": "77" - }, - { - "x": "23", - "y": "70" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078861, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2662.089787, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 77, - "y": 30 - }, - { - "x": 71, - "y": 22 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078862, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2663.210876, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 71, - "y": 22 - }, - { - "x": 69, - "y": 37 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078863, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2664.839403, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 69, - "y": 37 - }, - { - "x": 89, - "y": 42 - } - ], - "tags": [ - { - "id": 901 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079784, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2666.173129, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "11", - "y": "58" - }, - { - "x": "29", - "y": "52" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079785, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2667.376468, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "29", - "y": "52" - }, - { - "x": "14", - "y": "90" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079786, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2670.309157, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "14", - "y": "90" - }, - { - "x": "33", - "y": "93" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078865, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2672.280996, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 67, - "y": 7 - }, - { - "x": 66, - "y": 11 - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079787, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2672.548402, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "33", - "y": "93" - }, - { - "x": "34", - "y": "89" - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078866, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2673.711869, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 66, - "y": 11 - }, - { - "x": 81, - "y": 24 - } - ], - "tags": [] - }, - { - "id": 190078867, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2676.845687, - "eventName": 8, - "subEventName": 86, - "positions": [ - { - "x": 81, - "y": 24 - }, - { - "x": 92, - "y": 90 - } - ], - "tags": [ - { - "id": 901 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079788, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2681.032315, - "eventName": 7, - "subEventName": 70, - "positions": [ - { - "x": "8", - "y": "10" - }, - { - "x": "45", - "y": "6" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078870, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2687.176085, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 55, - "y": 94 - }, - { - "x": 53, - "y": 96 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080403, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2687.176085, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "45", - "y": "6" - }, - { - "x": "47", - "y": "4" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079789, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2687.807252, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "47", - "y": "4" - }, - { - "x": "49", - "y": "6" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079790, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2689.546258, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "49", - "y": "6" - }, - { - "x": "41", - "y": "22" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079791, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2691.893208, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "41", - "y": "22" - }, - { - "x": "49", - "y": "59" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079792, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2695.680893, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "49", - "y": "59" - }, - { - "x": "55", - "y": "72" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079793, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2701.099188, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "55", - "y": "72" - }, - { - "x": "37", - "y": "23" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079794, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2704.109737, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "37", - "y": "23" - }, - { - "x": "57", - "y": "4" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079795, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2707.52307, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "57", - "y": "4" - }, - { - "x": "58", - "y": "21" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079796, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2709.589691, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "58", - "y": "21" - }, - { - "x": "39", - "y": "25" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079797, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2713.909338, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "39", - "y": "25" - }, - { - "x": "33", - "y": "58" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079798, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2716.115353, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "33", - "y": "58" - }, - { - "x": "55", - "y": "57" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079799, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2721.541648, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "55", - "y": "57" - }, - { - "x": "58", - "y": "39" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079800, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2723.469904, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "58", - "y": "39" - }, - { - "x": "64", - "y": "4" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079801, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2728.69653, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "64", - "y": "4" - }, - { - "x": "55", - "y": "27" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079802, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2731.116432, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "55", - "y": "27" - }, - { - "x": "72", - "y": "5" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078871, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2734.916159, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 28, - "y": 95 - }, - { - "x": 31, - "y": 89 - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079803, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2735.972408, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "72", - "y": "5" - }, - { - "x": "69", - "y": "11" - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079804, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2737.251762, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": "69", - "y": "11" - }, - { - "x": "85", - "y": "29" - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 801 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078872, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2739.761373, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 7, - "y": 49 - }, - { - "x": 15, - "y": 71 - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190078873, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2754.689704, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": 15, - "y": 71 - }, - { - "x": 67, - "y": 91 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079805, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2758.220291, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "33", - "y": "9" - }, - { - "x": "45", - "y": "4" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079806, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2760.716182, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "45", - "y": "4" - }, - { - "x": "36", - "y": "9" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078874, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2761.997745, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 64, - "y": 91 - }, - { - "x": 63, - "y": 98 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078875, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2763.476509, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 63, - "y": 98 - }, - { - "x": 59, - "y": 79 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078876, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2763.837071, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 59, - "y": 79 - }, - { - "x": 70, - "y": 87 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078877, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2764.823807, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 70, - "y": 87 - }, - { - "x": 63, - "y": 78 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079808, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2765.386556, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "37", - "y": "22" - }, - { - "x": "34", - "y": "26" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190078878, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2767.2974, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 64, - "y": 92 - }, - { - "x": 66, - "y": 74 - } - ], - "tags": [] - }, - { - "id": 190079809, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2767.888311, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "34", - "y": "26" - }, - { - "x": "37", - "y": "19" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078879, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2768.536459, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 66, - "y": 74 - }, - { - "x": 63, - "y": 81 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079810, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2769.020044, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "37", - "y": "19" - }, - { - "x": "36", - "y": "6" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078880, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2769.831278, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 64, - "y": 94 - }, - { - "x": 62, - "y": 93 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080404, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2769.831278, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "36", - "y": "6" - }, - { - "x": "38", - "y": "7" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079811, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2770.587871, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "38", - "y": "7" - }, - { - "x": "80", - "y": "13" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078882, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2773.661721, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 20, - "y": 87 - }, - { - "x": 23, - "y": 87 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079812, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2774.493251, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "80", - "y": "13" - }, - { - "x": "77", - "y": "13" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078883, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2775.203011, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": 23, - "y": 87 - }, - { - "x": 20, - "y": 87 - } - ], - "tags": [ - { - "id": 1702 - } - ] - }, - { - "id": 190079813, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2831.964569, - "eventName": 3, - "subEventName": 32, - "positions": [ - { - "x": "79", - "y": "17" - }, - { - "x": "90", - "y": "38" - } - ], - "tags": [ - { - "id": 302 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079814, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2832.907678, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": "90", - "y": "38" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [ - { - "id": 403 - }, - { - "id": 201 - }, - { - "id": 1207 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078884, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2834.975086, - "eventName": 9, - "subEventName": 90, - "positions": [ - { - "x": 100, - "y": 100 - }, - { - "x": 10, - "y": 62 - } - ], - "tags": [ - { - "id": 1207 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078885, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2852.076898, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 0, - "y": 50 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079815, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2855.094338, - "eventName": 3, - "subEventName": 30, - "positions": [ - { - "x": "100", - "y": "3" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [ - { - "id": 801 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078886, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2856.102781, - "eventName": 4, - "subEventName": 40, - "positions": [ - { - "x": 100, - "y": 100 - }, - { - "x": 0, - "y": 97 - } - ], - "tags": [] - }, - { - "id": 190078887, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2857.798035, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 6, - "y": 53 - }, - { - "x": 2, - "y": 43 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079816, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2857.798035, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "94", - "y": "47" - }, - { - "x": "98", - "y": "57" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078888, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2858.127376, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 2, - "y": 43 - }, - { - "x": 9, - "y": 43 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079817, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2858.127376, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "98", - "y": "57" - }, - { - "x": "91", - "y": "57" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079818, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2858.363088, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "91", - "y": "57" - }, - { - "x": "97", - "y": "45" - } - ], - "tags": [ - { - "id": 301 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078889, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2858.483727, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 3, - "y": 55 - }, - { - "x": 2, - "y": 52 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079819, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2858.483727, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "97", - "y": "45" - }, - { - "x": "98", - "y": "48" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079820, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2859.850126, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": "98", - "y": "48" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [ - { - "id": 101 - }, - { - "id": 402 - }, - { - "id": 201 - }, - { - "id": 1205 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078890, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "1H", - "eventSec": 2863.708369, - "eventName": 9, - "subEventName": 90, - "positions": [ - { - "x": 100, - "y": 100 - }, - { - "x": 2, - "y": 52 - } - ], - "tags": [ - { - "id": 101 - }, - { - "id": 1205 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079822, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 0, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "50", - "y": "49" - }, - { - "x": "34", - "y": "49" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079823, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 4.1848799999998, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "34", - "y": "49" - }, - { - "x": "70", - "y": "96" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078891, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 7.7868109999999, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 30, - "y": 4 - }, - { - "x": 37, - "y": 0 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078892, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 10.745766, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 37, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079824, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 14.345077, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "66", - "y": "100" - }, - { - "x": "77", - "y": "98" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079825, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 15.472188, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "77", - "y": "98" - }, - { - "x": "76", - "y": "97" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080405, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 15.472188, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 23, - "y": 2 - }, - { - "x": 24, - "y": 3 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078893, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 17.416618, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 24, - "y": 3 - }, - { - "x": 36, - "y": 2 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079826, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 17.552187, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "64", - "y": "98" - }, - { - "x": "65", - "y": "100" - } - ], - "tags": [] - }, - { - "id": 190078894, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 23.056068, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 35, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078895, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 39.913814, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 38, - "y": 0 - }, - { - "x": 59, - "y": 11 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079827, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 41.102142, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "41", - "y": "89" - }, - { - "x": "53", - "y": "97" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079828, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 42.011704, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "53", - "y": "97" - }, - { - "x": "58", - "y": "92" - } - ], - "tags": [] - }, - { - "id": 190078896, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 43.685733, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 42, - "y": 8 - }, - { - "x": 57, - "y": 25 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078897, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 45.974719, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 57, - "y": 25 - }, - { - "x": 83, - "y": 54 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078899, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 50.61476, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 83, - "y": 54 - }, - { - "x": 93, - "y": 76 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078900, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 53.754212, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 93, - "y": 76 - }, - { - "x": 76, - "y": 75 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078901, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 56.169801, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 76, - "y": 75 - }, - { - "x": 67, - "y": 65 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078902, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 57.353484, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 67, - "y": 65 - }, - { - "x": 91, - "y": 36 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078904, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 58.760643, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 91, - "y": 36 - }, - { - "x": 89, - "y": 26 - } - ], - "tags": [ - { - "id": 302 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079829, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 58.760643, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "9", - "y": "64" - }, - { - "x": "11", - "y": "74" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078905, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 61.119903, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": 89, - "y": 26 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 201 - }, - { - "id": 1204 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079830, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 62.355979, - "eventName": 9, - "subEventName": 91, - "positions": [ - { - "x": "0", - "y": "0" - }, - { - "x": "11", - "y": "74" - } - ], - "tags": [ - { - "id": 1204 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079831, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 64.974795, - "eventName": 8, - "subEventName": 81, - "positions": [ - { - "x": "13", - "y": "63" - }, - { - "x": "29", - "y": "17" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079832, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 67.401059, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "29", - "y": "17" - }, - { - "x": "46", - "y": "13" - } - ], - "tags": [] - }, - { - "id": 190079833, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 70.836777, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "46", - "y": "13" - }, - { - "x": "82", - "y": "72" - } - ], - "tags": [ - { - "id": 901 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078906, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 77.090829, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 18, - "y": 28 - }, - { - "x": 32, - "y": 16 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078907, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 80.08062, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 32, - "y": 16 - }, - { - "x": 11, - "y": 37 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078908, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 83.13436, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 11, - "y": 37 - }, - { - "x": 25, - "y": 14 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078909, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 85.475374, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 25, - "y": 14 - }, - { - "x": 36, - "y": 5 - } - ], - "tags": [] - }, - { - "id": 190078910, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 89.564959, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 36, - "y": 5 - }, - { - "x": 34, - "y": 2 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078911, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 91.145538, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 34, - "y": 2 - }, - { - "x": 62, - "y": 42 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079834, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 92.759924, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "38", - "y": "58" - }, - { - "x": "86", - "y": "67" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078912, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 100.035541, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 14, - "y": 33 - }, - { - "x": 15, - "y": 55 - } - ], - "tags": [] - }, - { - "id": 190078913, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 110.487252, - "eventName": 8, - "subEventName": 81, - "positions": [ - { - "x": 15, - "y": 55 - }, - { - "x": 30, - "y": 6 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078914, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 112.560457, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 30, - "y": 6 - }, - { - "x": 28, - "y": 5 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079836, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 114.316204, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "72", - "y": "95" - }, - { - "x": "70", - "y": "100" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190078915, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 119.298272, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 30, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078916, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 136.550153, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 31, - "y": 0 - }, - { - "x": 53, - "y": 7 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079837, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 137.350103, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "47", - "y": "93" - }, - { - "x": "65", - "y": "93" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078917, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 139.039456, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 35, - "y": 7 - }, - { - "x": 65, - "y": 0 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078918, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 140.614305, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 65, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079838, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 155.718934, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "41", - "y": "100" - }, - { - "x": "55", - "y": "97" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078919, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 157.438926, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 45, - "y": 3 - }, - { - "x": 36, - "y": 4 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079839, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 157.438926, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "55", - "y": "97" - }, - { - "x": "64", - "y": "96" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078920, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 159.541715, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 36, - "y": 4 - }, - { - "x": 40, - "y": 21 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078921, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 161.377094, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 40, - "y": 21 - }, - { - "x": 31, - "y": 37 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078922, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 162.909169, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 31, - "y": 37 - }, - { - "x": 41, - "y": 52 - } - ], - "tags": [] - }, - { - "id": 190078923, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 165.735152, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 41, - "y": 52 - }, - { - "x": 65, - "y": 43 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079840, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 165.951818, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "35", - "y": "57" - }, - { - "x": "47", - "y": "51" - } - ], - "tags": [ - { - "id": 601 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078924, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 166.998975, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 65, - "y": 43 - }, - { - "x": 53, - "y": 49 - } - ], - "tags": [ - { - "id": 602 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079841, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 167.762285, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "47", - "y": "51" - }, - { - "x": "61", - "y": "67" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078926, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 170.082583, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 39, - "y": 33 - }, - { - "x": 29, - "y": 44 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079842, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 170.082583, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "61", - "y": "67" - }, - { - "x": "71", - "y": "56" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078927, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 171.937718, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 29, - "y": 44 - }, - { - "x": 34, - "y": 31 - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079843, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 171.937718, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "71", - "y": "56" - }, - { - "x": "66", - "y": "69" - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078928, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 173.867123, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 34, - "y": 31 - }, - { - "x": 39, - "y": 8 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078929, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 176.11952, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 39, - "y": 8 - }, - { - "x": 40, - "y": 4 - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079844, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 176.11952, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "61", - "y": "92" - }, - { - "x": "60", - "y": "96" - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078930, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 177.685928, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 40, - "y": 4 - }, - { - "x": 46, - "y": 0 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079845, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 177.685928, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "60", - "y": "96" - }, - { - "x": "54", - "y": "100" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078931, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 182.006071, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 44, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079846, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 183.643479, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "54", - "y": "100" - }, - { - "x": "67", - "y": "88" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079854, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 184.83812, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "67", - "y": "88" - }, - { - "x": "73", - "y": "87" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078932, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 185.311757, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 27, - "y": 13 - }, - { - "x": 25, - "y": 13 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078933, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 186.37635, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 25, - "y": 13 - }, - { - "x": 33, - "y": 8 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079851, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 186.37635, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "73", - "y": "87" - }, - { - "x": "75", - "y": "87" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080406, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 186.37635, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "75", - "y": "87" - }, - { - "x": "67", - "y": "92" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078934, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 187.390071, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 33, - "y": 8 - }, - { - "x": 34, - "y": 18 - } - ], - "tags": [ - { - "id": 602 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079850, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 187.390071, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "67", - "y": "92" - }, - { - "x": "66", - "y": "82" - } - ], - "tags": [ - { - "id": 601 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079853, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 188.438422, - "eventName": 8, - "subEventName": 86, - "positions": [ - { - "x": "66", - "y": "82" - }, - { - "x": "78", - "y": "84" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078936, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 189.962814, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 22, - "y": 16 - }, - { - "x": 23, - "y": 16 - } - ], - "tags": [ - { - "id": 601 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080407, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 189.962814, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "78", - "y": "84" - }, - { - "x": "77", - "y": "84" - } - ], - "tags": [ - { - "id": 602 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078937, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 192.276065, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 23, - "y": 16 - }, - { - "x": 30, - "y": 0 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078938, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 199.209637, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 30, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079855, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 205.802339, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "66", - "y": "100" - }, - { - "x": "62", - "y": "73" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079847, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 207.730389, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "62", - "y": "73" - }, - { - "x": "49", - "y": "82" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079852, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 212.683369, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "49", - "y": "82" - }, - { - "x": "53", - "y": "36" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079849, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 217.881729, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "53", - "y": "36" - }, - { - "x": "63", - "y": "31" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079848, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 219.429421, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "63", - "y": "31" - }, - { - "x": "56", - "y": "47" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079858, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 220.763958, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "56", - "y": "47" - }, - { - "x": "40", - "y": "30" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079857, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 223.008294, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "40", - "y": "30" - }, - { - "x": "56", - "y": "73" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079856, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 227.56139, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "56", - "y": "73" - }, - { - "x": "73", - "y": "80" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078939, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 229.234181, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 27, - "y": 20 - }, - { - "x": 45, - "y": 32 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078940, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 231.677955, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 45, - "y": 32 - }, - { - "x": 62, - "y": 20 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078941, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 234.332161, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 62, - "y": 20 - }, - { - "x": 69, - "y": 24 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079859, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 234.332161, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "38", - "y": "80" - }, - { - "x": "31", - "y": "76" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078942, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 235.876233, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 69, - "y": 24 - }, - { - "x": 65, - "y": 26 - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079860, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 235.876233, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "31", - "y": "76" - }, - { - "x": "35", - "y": "74" - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079861, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 237.255589, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "35", - "y": "74" - }, - { - "x": "40", - "y": "69" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078946, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 237.94483, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 60, - "y": 31 - }, - { - "x": 61, - "y": 34 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079862, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 237.94483, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "40", - "y": "69" - }, - { - "x": "39", - "y": "66" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078947, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 239.834851, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": 61, - "y": 34 - }, - { - "x": 60, - "y": 31 - } - ], - "tags": [] - }, - { - "id": 190079863, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 243.139304, - "eventName": 3, - "subEventName": 31, - "positions": [ - { - "x": "38", - "y": "76" - }, - { - "x": "36", - "y": "96" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079864, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 246.018691, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "36", - "y": "96" - }, - { - "x": "73", - "y": "91" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078948, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 248.117482, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 27, - "y": 9 - }, - { - "x": 30, - "y": 2 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079865, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 248.117482, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "73", - "y": "91" - }, - { - "x": "70", - "y": "98" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078950, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 252.16676, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 30, - "y": 2 - }, - { - "x": 30, - "y": 22 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078951, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 254.305975, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 30, - "y": 22 - }, - { - "x": 25, - "y": 54 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078952, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 257.931193, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 25, - "y": 54 - }, - { - "x": 36, - "y": 68 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079866, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 259.529586, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "64", - "y": "32" - }, - { - "x": "64", - "y": "32" - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078953, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 259.553942, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 36, - "y": 68 - }, - { - "x": 36, - "y": 68 - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078954, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 260.517605, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 36, - "y": 68 - }, - { - "x": 35, - "y": 52 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078955, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 260.97529, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 35, - "y": 52 - }, - { - "x": 27, - "y": 77 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078956, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 264.473502, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 27, - "y": 77 - }, - { - "x": 23, - "y": 61 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078957, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 266.365661, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 23, - "y": 61 - }, - { - "x": 47, - "y": 93 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079867, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 270.118373, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "53", - "y": "7" - }, - { - "x": "74", - "y": "21" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078958, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 271.875285, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 26, - "y": 79 - }, - { - "x": 35, - "y": 79 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078959, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 273.939345, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 35, - "y": 79 - }, - { - "x": 44, - "y": 82 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078960, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 274.811387, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 44, - "y": 82 - }, - { - "x": 42, - "y": 77 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079868, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 274.811387, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "56", - "y": "18" - }, - { - "x": "58", - "y": "23" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078962, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 276.016215, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 42, - "y": 77 - }, - { - "x": 42, - "y": 60 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078961, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 276.986258, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 42, - "y": 60 - }, - { - "x": 59, - "y": 67 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078963, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 278.974603, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 59, - "y": 67 - }, - { - "x": 57, - "y": 100 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078964, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 283.124202, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 57, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079869, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 290.249033, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "37", - "y": "0" - }, - { - "x": "27", - "y": "16" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079870, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 294.137972, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "27", - "y": "16" - }, - { - "x": "35", - "y": "37" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079871, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 295.786589, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "35", - "y": "37" - }, - { - "x": "31", - "y": "58" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079872, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 297.652457, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "31", - "y": "58" - }, - { - "x": "12", - "y": "46" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079873, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 299.8429, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": "12", - "y": "46" - }, - { - "x": "40", - "y": "14" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078965, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 302.217156, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 60, - "y": 86 - }, - { - "x": 60, - "y": 86 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078966, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 302.538799, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 60, - "y": 86 - }, - { - "x": 60, - "y": 84 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079874, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 302.538799, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "40", - "y": "14" - }, - { - "x": "40", - "y": "14" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080408, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 302.538799, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "40", - "y": "14" - }, - { - "x": "40", - "y": "16" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078967, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 303.97617, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": 60, - "y": 84 - }, - { - "x": 60, - "y": 86 - } - ], - "tags": [] - }, - { - "id": 190079875, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 383.355906, - "eventName": 3, - "subEventName": 31, - "positions": [ - { - "x": "35", - "y": "12" - }, - { - "x": "70", - "y": "93" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078968, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 386.306982, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 30, - "y": 7 - }, - { - "x": 44, - "y": 0 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078969, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 390.913364, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 44, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079876, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 395.105203, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "63", - "y": "100" - }, - { - "x": "75", - "y": "95" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078970, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 396.577177, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 25, - "y": 5 - }, - { - "x": 16, - "y": 6 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079877, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 396.577177, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "75", - "y": "95" - }, - { - "x": "84", - "y": "94" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078972, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 400.48826, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 16, - "y": 6 - }, - { - "x": 7, - "y": 9 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079878, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 400.48826, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "84", - "y": "94" - }, - { - "x": "93", - "y": "91" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078974, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 402.952315, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 7, - "y": 9 - }, - { - "x": 7, - "y": 6 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079879, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 403.414097, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "93", - "y": "94" - }, - { - "x": "94", - "y": "100" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190078975, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 411.743325, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 6, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190078976, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 414.727877, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 7, - "y": 0 - }, - { - "x": 17, - "y": 2 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078977, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 416.024449, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 17, - "y": 2 - }, - { - "x": 6, - "y": 3 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078978, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 417.354875, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 6, - "y": 3 - }, - { - "x": 18, - "y": 0 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078979, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 422.923502, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 18, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079880, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 424.257202, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "77", - "y": "100" - }, - { - "x": "81", - "y": "94" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079881, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 425.216265, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "81", - "y": "94" - }, - { - "x": "77", - "y": "95" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079882, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 426.249853, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "77", - "y": "95" - }, - { - "x": "75", - "y": "87" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079883, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 426.472378, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "75", - "y": "87" - }, - { - "x": "80", - "y": "92" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079884, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 427.728844, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "80", - "y": "92" - }, - { - "x": "88", - "y": "97" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078980, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 429.364709, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 12, - "y": 3 - }, - { - "x": 17, - "y": 2 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079885, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 429.364709, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "88", - "y": "97" - }, - { - "x": "83", - "y": "98" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078981, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 430.770281, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 17, - "y": 2 - }, - { - "x": 13, - "y": 2 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079886, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 430.770281, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "83", - "y": "98" - }, - { - "x": "87", - "y": "98" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078982, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 431.090144, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 13, - "y": 2 - }, - { - "x": 19, - "y": 3 - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079887, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 431.090144, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "87", - "y": "98" - }, - { - "x": "81", - "y": "97" - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078983, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 432.704823, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 19, - "y": 3 - }, - { - "x": 21, - "y": 4 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080409, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 432.704823, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "81", - "y": "97" - }, - { - "x": "79", - "y": "96" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078984, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 434.118167, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 21, - "y": 4 - }, - { - "x": 21, - "y": 18 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078985, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 434.855186, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 21, - "y": 18 - }, - { - "x": 26, - "y": 34 - } - ], - "tags": [ - { - "id": 2001 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079888, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 436.122329, - "eventName": 8, - "subEventName": 86, - "positions": [ - { - "x": "74", - "y": "66" - }, - { - "x": "91", - "y": "67" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 901 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079889, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 438.752138, - "eventName": 6, - "subEventName": "", - "positions": [ - { - "x": "91", - "y": "67" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [] - }, - { - "id": 190078986, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 465.703602, - "eventName": 3, - "subEventName": 31, - "positions": [ - { - "x": 7, - "y": 29 - }, - { - "x": 68, - "y": 62 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079890, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 468.966796, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "32", - "y": "38" - }, - { - "x": "55", - "y": "21" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190078987, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 471.65469, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 45, - "y": 79 - }, - { - "x": 67, - "y": 100 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079891, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 471.65469, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "55", - "y": "21" - }, - { - "x": "33", - "y": "0" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078988, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 476.450662, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 68, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079892, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 487.917277, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "33", - "y": "0" - }, - { - "x": "63", - "y": "15" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078989, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 489.334163, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 37, - "y": 85 - }, - { - "x": 46, - "y": 81 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079893, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 490.575272, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "54", - "y": "19" - }, - { - "x": "54", - "y": "25" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190078990, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 491.614163, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 46, - "y": 74 - }, - { - "x": 46, - "y": 75 - } - ], - "tags": [] - }, - { - "id": 190078991, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 492.746226, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 46, - "y": 75 - }, - { - "x": 40, - "y": 67 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079894, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 492.746226, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "54", - "y": "25" - }, - { - "x": "60", - "y": "33" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190078992, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 495.042916, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 40, - "y": 67 - }, - { - "x": 46, - "y": 71 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079895, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 495.042916, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "60", - "y": "33" - }, - { - "x": "54", - "y": "29" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079896, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 495.799619, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "54", - "y": "29" - }, - { - "x": "48", - "y": "29" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079897, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 496.483998, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "48", - "y": "29" - }, - { - "x": "66", - "y": "8" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079898, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 501.731707, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": "66", - "y": "8" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 801 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078994, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 503.126591, - "eventName": 4, - "subEventName": 40, - "positions": [ - { - "x": 100, - "y": 100 - }, - { - "x": 34, - "y": 92 - } - ], - "tags": [] - }, - { - "id": 190078995, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 504.511993, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 13, - "y": 42 - }, - { - "x": 30, - "y": 14 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079899, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 504.511993, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "87", - "y": "58" - }, - { - "x": "70", - "y": "86" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079900, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 505.662221, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "70", - "y": "86" - }, - { - "x": "79", - "y": "84" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079902, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 508.109023, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "79", - "y": "84" - }, - { - "x": "92", - "y": "90" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079903, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 510.181219, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": "92", - "y": "90" - }, - { - "x": "90", - "y": "51" - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078997, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 512.987348, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 10, - "y": 49 - }, - { - "x": 3, - "y": 0 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190078998, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 516.614216, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 3, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079904, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 520.617872, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "96", - "y": "100" - }, - { - "x": "99", - "y": "84" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079905, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 522.314829, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "99", - "y": "84" - }, - { - "x": "93", - "y": "68" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190078999, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 523.617492, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 7, - "y": 32 - }, - { - "x": 24, - "y": 9 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079906, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 526.645416, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "76", - "y": "91" - }, - { - "x": "79", - "y": "80" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079000, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 528.399569, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 21, - "y": 20 - }, - { - "x": 14, - "y": 27 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079907, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 528.399569, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "79", - "y": "80" - }, - { - "x": "86", - "y": "73" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079001, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 530.275242, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 14, - "y": 27 - }, - { - "x": 27, - "y": 26 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079908, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 531.759366, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "73", - "y": "74" - }, - { - "x": "81", - "y": "77" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079002, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 533.289911, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 19, - "y": 23 - }, - { - "x": 19, - "y": 30 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079909, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 533.289911, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "81", - "y": "77" - }, - { - "x": "81", - "y": "70" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079003, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 534.233859, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 19, - "y": 30 - }, - { - "x": 19, - "y": 33 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079910, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 534.233859, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "81", - "y": "70" - }, - { - "x": "81", - "y": "67" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079004, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 535.076427, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 19, - "y": 33 - }, - { - "x": 31, - "y": 21 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079005, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 536.093648, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 31, - "y": 21 - }, - { - "x": 26, - "y": 20 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079911, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 536.093648, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "69", - "y": "79" - }, - { - "x": "74", - "y": "80" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079912, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 537.281022, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "74", - "y": "80" - }, - { - "x": "76", - "y": "79" - } - ], - "tags": [ - { - "id": 1302 - } - ] - }, - { - "id": 190079006, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 539.860223, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 24, - "y": 21 - }, - { - "x": 43, - "y": 8 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079913, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 541.210104, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "57", - "y": "92" - }, - { - "x": "63", - "y": "89" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079914, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 542.319802, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "63", - "y": "89" - }, - { - "x": "77", - "y": "77" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079915, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 543.935813, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "77", - "y": "77" - }, - { - "x": "91", - "y": "63" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079007, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 546.420933, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 9, - "y": 37 - }, - { - "x": 30, - "y": 31 - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190079008, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 554.827507, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 30, - "y": 31 - }, - { - "x": 31, - "y": 11 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079009, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 558.019167, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 31, - "y": 11 - }, - { - "x": 37, - "y": 32 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079011, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 560.002972, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 37, - "y": 32 - }, - { - "x": 52, - "y": 35 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079012, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 561.470846, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 52, - "y": 35 - }, - { - "x": 56, - "y": 49 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079014, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 563.219302, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 56, - "y": 49 - }, - { - "x": 85, - "y": 65 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079016, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 567.973819, - "eventName": 8, - "subEventName": 86, - "positions": [ - { - "x": 85, - "y": 65 - }, - { - "x": 90, - "y": 72 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079917, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 569.1254, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": "10", - "y": "28" - }, - { - "x": "0", - "y": "26" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079017, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 577.770454, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 100, - "y": 74 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079018, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 591.16505, - "eventName": 3, - "subEventName": 30, - "positions": [ - { - "x": 100, - "y": 100 - }, - { - "x": 90, - "y": 54 - } - ], - "tags": [ - { - "id": 801 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079019, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 591.984963, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 90, - "y": 54 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079918, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 591.984963, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "10", - "y": "46" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079020, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 601.675507, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 100, - "y": 77 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079021, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 606.453808, - "eventName": 3, - "subEventName": 30, - "positions": [ - { - "x": 100, - "y": 100 - }, - { - "x": 90, - "y": 48 - } - ], - "tags": [ - { - "id": 801 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079563, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 607.266923, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 90, - "y": 48 - }, - { - "x": 91, - "y": 50 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079919, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 607.266923, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "10", - "y": "52" - }, - { - "x": "9", - "y": "50" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079564, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 608.561632, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": 91, - "y": 50 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 403 - }, - { - "id": 2101 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079920, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 609.521794, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "7", - "y": "52" - }, - { - "x": "9", - "y": "53" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190079921, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 610.658305, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "9", - "y": "53" - }, - { - "x": "69", - "y": "69" - } - ], - "tags": [] - }, - { - "id": 190079565, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 611.713544, - "eventName": 2, - "subEventName": 24, - "positions": [ - { - "x": 87, - "y": 45 - } - ], - "tags": [ - { - "id": 1702 - } - ] - }, - { - "id": 190079566, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 638.897156, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 31, - "y": 31 - }, - { - "x": 23, - "y": 6 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079922, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 638.897156, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "69", - "y": "69" - }, - { - "x": "77", - "y": "94" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079923, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 644.897324, - "eventName": 8, - "subEventName": 86, - "positions": [ - { - "x": "77", - "y": "94" - }, - { - "x": "88", - "y": "77" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079567, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 647.326655, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 12, - "y": 23 - }, - { - "x": 38, - "y": 0 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079924, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 649.905975, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": "62", - "y": "100" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [] - }, - { - "id": 190079925, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 653.012229, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "60", - "y": "100" - }, - { - "x": "61", - "y": "42" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079926, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 658.542986, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "61", - "y": "42" - }, - { - "x": "82", - "y": "5" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079928, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 661.844674, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "82", - "y": "5" - }, - { - "x": "90", - "y": "10" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079929, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 663.493782, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": "90", - "y": "10" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [ - { - "id": 401 - }, - { - "id": 2101 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079547, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 664.354481, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 8, - "y": 75 - }, - { - "x": 17, - "y": 78 - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190079602, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 666.696854, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 17, - "y": 78 - }, - { - "x": 35, - "y": 70 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079588, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 667.445469, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 35, - "y": 70 - }, - { - "x": 27, - "y": 91 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079931, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 667.445469, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "65", - "y": "30" - }, - { - "x": "73", - "y": "9" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079932, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 669.701204, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "73", - "y": "9" - }, - { - "x": "72", - "y": "9" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079933, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 672.07809, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": "72", - "y": "9" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 801 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079542, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 673.856131, - "eventName": 4, - "subEventName": 40, - "positions": [ - { - "x": 100, - "y": 100 - }, - { - "x": 28, - "y": 91 - } - ], - "tags": [] - }, - { - "id": 190079543, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 677.035063, - "eventName": 8, - "subEventName": 81, - "positions": [ - { - "x": 7, - "y": 37 - }, - { - "x": 26, - "y": 18 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079610, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 679.312404, - "eventName": 7, - "subEventName": 70, - "positions": [ - { - "x": 26, - "y": 18 - }, - { - "x": 49, - "y": 9 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079611, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 682.374819, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 49, - "y": 9 - }, - { - "x": 58, - "y": 15 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079575, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 685.574612, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 58, - "y": 15 - }, - { - "x": 77, - "y": 79 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079603, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 688.633759, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 77, - "y": 79 - }, - { - "x": 95, - "y": 82 - } - ], - "tags": [] - }, - { - "id": 190079604, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 692.852965, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 95, - "y": 82 - }, - { - "x": 80, - "y": 84 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079631, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 695.073902, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 80, - "y": 84 - }, - { - "x": 73, - "y": 67 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079548, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 697.654633, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 73, - "y": 67 - }, - { - "x": 92, - "y": 32 - } - ], - "tags": [ - { - "id": 302 - }, - { - "id": 901 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079613, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 699.203065, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 92, - "y": 32 - }, - { - "x": 94, - "y": 37 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080410, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 699.203065, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "8", - "y": "68" - }, - { - "x": "6", - "y": "63" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079614, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 700.197788, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": 94, - "y": 37 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 403 - }, - { - "id": 201 - }, - { - "id": 1215 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079936, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 705.946962, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": "0", - "y": "54" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [] - }, - { - "id": 190079937, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 730.329869, - "eventName": 3, - "subEventName": 34, - "positions": [ - { - "x": "0", - "y": "0" - }, - { - "x": "67", - "y": "63" - } - ], - "tags": [] - }, - { - "id": 190079549, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 734.31611, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 33, - "y": 37 - }, - { - "x": 31, - "y": 28 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079938, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 734.31611, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "67", - "y": "63" - }, - { - "x": "69", - "y": "72" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079550, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 737.523554, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": 31, - "y": 28 - }, - { - "x": 58, - "y": 36 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079590, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 739.57409, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 58, - "y": 36 - }, - { - "x": 64, - "y": 27 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079939, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 739.57409, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "42", - "y": "64" - }, - { - "x": "36", - "y": "73" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079940, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 740.363013, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "36", - "y": "73" - }, - { - "x": "59", - "y": "79" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079615, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 742.758133, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 41, - "y": 21 - }, - { - "x": 66, - "y": 20 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079941, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 744.364845, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "34", - "y": "80" - }, - { - "x": "43", - "y": "72" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079616, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 745.430285, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 57, - "y": 28 - }, - { - "x": 39, - "y": 17 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080412, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 745.430285, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "43", - "y": "72" - }, - { - "x": "61", - "y": "83" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079942, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 747.496494, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "61", - "y": "83" - }, - { - "x": "67", - "y": "76" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079943, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 748.241578, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "67", - "y": "76" - }, - { - "x": "61", - "y": "49" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079584, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 752.185067, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 39, - "y": 51 - }, - { - "x": 54, - "y": 58 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079536, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 752.750236, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 54, - "y": 58 - }, - { - "x": 63, - "y": 68 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079944, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 753.088326, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "46", - "y": "42" - }, - { - "x": "37", - "y": "32" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079605, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 756.137048, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 63, - "y": 68 - }, - { - "x": 77, - "y": 82 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079633, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 758.519747, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 77, - "y": 82 - }, - { - "x": 93, - "y": 88 - } - ], - "tags": [] - }, - { - "id": 190079634, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 760.761197, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": 93, - "y": 88 - }, - { - "x": 91, - "y": 53 - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079592, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 761.829488, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 91, - "y": 53 - }, - { - "x": 86, - "y": 60 - } - ], - "tags": [] - }, - { - "id": 190079593, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 763.542233, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 86, - "y": 60 - }, - { - "x": 14, - "y": 39 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079946, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 763.542233, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "14", - "y": "40" - }, - { - "x": "86", - "y": "61" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079594, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 765.108463, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": 14, - "y": 39 - }, - { - "x": 86, - "y": 60 - } - ], - "tags": [] - }, - { - "id": 190079947, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 781.66351, - "eventName": 3, - "subEventName": 31, - "positions": [ - { - "x": "17", - "y": "35" - }, - { - "x": "63", - "y": "87" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079568, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 785.376433, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 37, - "y": 13 - }, - { - "x": 67, - "y": 8 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079948, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 785.376433, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "63", - "y": "87" - }, - { - "x": "33", - "y": "92" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079949, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 791.939566, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "33", - "y": "92" - }, - { - "x": "74", - "y": "97" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079624, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 794.606888, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 26, - "y": 3 - }, - { - "x": 37, - "y": 6 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079617, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 796.500448, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 37, - "y": 6 - }, - { - "x": 33, - "y": 7 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079951, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 796.500448, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "63", - "y": "94" - }, - { - "x": "67", - "y": "93" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079618, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 798.453736, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 33, - "y": 7 - }, - { - "x": 9, - "y": 30 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079544, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 800.480954, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": 9, - "y": 30 - }, - { - "x": 32, - "y": 58 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079606, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 804.667565, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 32, - "y": 58 - }, - { - "x": 30, - "y": 56 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079953, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 804.667565, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "68", - "y": "42" - }, - { - "x": "70", - "y": "44" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079607, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 805.709101, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 30, - "y": 56 - }, - { - "x": 29, - "y": 44 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079551, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 806.80693, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 29, - "y": 44 - }, - { - "x": 31, - "y": 82 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079635, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 810.56188, - "eventName": 7, - "subEventName": 70, - "positions": [ - { - "x": 31, - "y": 82 - }, - { - "x": 65, - "y": 79 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079636, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 812.756674, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 65, - "y": 79 - }, - { - "x": 67, - "y": 64 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079537, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 814.665466, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 67, - "y": 64 - }, - { - "x": 64, - "y": 64 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079955, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 814.665466, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "33", - "y": "36" - }, - { - "x": "36", - "y": "36" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079538, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 816.487988, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 64, - "y": 64 - }, - { - "x": 56, - "y": 65 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079552, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 817.691787, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 56, - "y": 65 - }, - { - "x": 66, - "y": 71 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079539, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 819.922583, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 66, - "y": 71 - }, - { - "x": 60, - "y": 59 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079553, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 821.96189, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 60, - "y": 59 - }, - { - "x": 70, - "y": 71 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079540, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 824.327767, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 70, - "y": 71 - }, - { - "x": 40, - "y": 68 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079585, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 825.263629, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 40, - "y": 68 - }, - { - "x": 52, - "y": 57 - } - ], - "tags": [] - }, - { - "id": 190079586, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 829.150308, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 52, - "y": 57 - }, - { - "x": 53, - "y": 12 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079625, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 832.434288, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 53, - "y": 12 - }, - { - "x": 73, - "y": 3 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079576, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 837.115013, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 73, - "y": 3 - }, - { - "x": 70, - "y": 26 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079619, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 838.668089, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 70, - "y": 26 - }, - { - "x": 70, - "y": 29 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079956, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 838.668089, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "30", - "y": "74" - }, - { - "x": "30", - "y": "71" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079620, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 840.629388, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 70, - "y": 29 - }, - { - "x": 61, - "y": 51 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079541, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 844.388729, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 61, - "y": 51 - }, - { - "x": 60, - "y": 19 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079569, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 847.940552, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 60, - "y": 19 - }, - { - "x": 65, - "y": 30 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079555, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 849.251607, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 65, - "y": 30 - }, - { - "x": 59, - "y": 16 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079570, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 850.821766, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 59, - "y": 16 - }, - { - "x": 69, - "y": 17 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079578, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 851.768518, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 69, - "y": 17 - }, - { - "x": 61, - "y": 9 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079571, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 852.134334, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 61, - "y": 9 - }, - { - "x": 60, - "y": 3 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079579, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 854.860048, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 60, - "y": 3 - }, - { - "x": 57, - "y": 15 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079957, - "playerId": 26150, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 854.860048, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "40", - "y": "97" - }, - { - "x": "43", - "y": "85" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079580, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 857.915628, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 57, - "y": 15 - }, - { - "x": 87, - "y": 60 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079608, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 860.100326, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 87, - "y": 60 - }, - { - "x": 87, - "y": 65 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079958, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 860.100326, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "13", - "y": "40" - }, - { - "x": "13", - "y": "35" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079609, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 864.745531, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 87, - "y": 65 - }, - { - "x": 87, - "y": 39 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079959, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 864.938891, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": "13", - "y": "61" - }, - { - "x": "43", - "y": "30" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079960, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 868.214096, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "43", - "y": "30" - }, - { - "x": "56", - "y": "32" - } - ], - "tags": [] - }, - { - "id": 190079587, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 870.905219, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 44, - "y": 68 - }, - { - "x": 19, - "y": 50 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079545, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 874.148981, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 19, - "y": 50 - }, - { - "x": 32, - "y": 41 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079572, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 876.014401, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 32, - "y": 41 - }, - { - "x": 45, - "y": 47 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079556, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 878.638223, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 45, - "y": 47 - }, - { - "x": 48, - "y": 9 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079626, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 880.159463, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 48, - "y": 9 - }, - { - "x": 70, - "y": 9 - } - ], - "tags": [] - }, - { - "id": 190079627, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 883.49092, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 70, - "y": 9 - }, - { - "x": 72, - "y": 3 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079581, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 884.825496, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 72, - "y": 3 - }, - { - "x": 62, - "y": 19 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079595, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 887.468174, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 62, - "y": 19 - }, - { - "x": 70, - "y": 20 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079621, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 888.460709, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 70, - "y": 20 - }, - { - "x": 85, - "y": 18 - } - ], - "tags": [] - }, - { - "id": 190079622, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 891.037984, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 85, - "y": 18 - }, - { - "x": 92, - "y": 4 - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079962, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 891.037984, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "15", - "y": "82" - }, - { - "x": "8", - "y": "96" - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079623, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 895.281042, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 92, - "y": 4 - }, - { - "x": 81, - "y": 3 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079597, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 897.434278, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": 81, - "y": 3 - }, - { - "x": 88, - "y": 33 - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079963, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 898.224072, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": "12", - "y": "67" - }, - { - "x": "22", - "y": "90" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079598, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 900.638087, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 78, - "y": 10 - }, - { - "x": 84, - "y": 25 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079964, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 900.638087, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "22", - "y": "90" - }, - { - "x": "16", - "y": "75" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079965, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 901.289913, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": "16", - "y": "75" - }, - { - "x": "39", - "y": "91" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079573, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 903.242918, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 61, - "y": 9 - }, - { - "x": 69, - "y": 24 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079966, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 905.734642, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "31", - "y": "76" - }, - { - "x": "38", - "y": "82" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079557, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 908.475913, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 62, - "y": 18 - }, - { - "x": 64, - "y": 22 - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079967, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 908.475913, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "38", - "y": "82" - }, - { - "x": "36", - "y": "78" - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079558, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 910.247273, - "eventName": 7, - "subEventName": 70, - "positions": [ - { - "x": 64, - "y": 22 - }, - { - "x": 82, - "y": 11 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079559, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 912.014969, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 82, - "y": 11 - }, - { - "x": 87, - "y": 3 - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079968, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 912.014969, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "18", - "y": "89" - }, - { - "x": "13", - "y": "97" - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079560, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 916.826788, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 87, - "y": 3 - }, - { - "x": 75, - "y": 22 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079582, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 918.516791, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 75, - "y": 22 - }, - { - "x": 79, - "y": 29 - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079969, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 918.516791, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "25", - "y": "78" - }, - { - "x": "21", - "y": "71" - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079583, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 919.674755, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": 79, - "y": 29 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 2101 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079970, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 920.763711, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "19", - "y": "66" - }, - { - "x": "39", - "y": "86" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190079629, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 924.292774, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 61, - "y": 14 - }, - { - "x": 71, - "y": 4 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079561, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 926.549544, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 71, - "y": 4 - }, - { - "x": 73, - "y": 10 - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079971, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 926.549544, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "29", - "y": "96" - }, - { - "x": "27", - "y": "90" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 504 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079562, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 931.346312, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 73, - "y": 10 - }, - { - "x": 72, - "y": 39 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079599, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 935.427961, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 72, - "y": 39 - }, - { - "x": 75, - "y": 47 - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079972, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 935.427961, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "28", - "y": "61" - }, - { - "x": "25", - "y": "53" - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079600, - "playerId": 15808, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 936.304541, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": 75, - "y": 47 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 201 - }, - { - "id": 1214 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079022, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 943.066591, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 100, - "y": 50 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079973, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 970.458448, - "eventName": 3, - "subEventName": 34, - "positions": [ - { - "x": "0", - "y": "0" - }, - { - "x": "59", - "y": "77" - } - ], - "tags": [] - }, - { - "id": 190079023, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 975.146743, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 41, - "y": 23 - }, - { - "x": 64, - "y": 0 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079974, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 975.146743, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "59", - "y": "77" - }, - { - "x": "36", - "y": "100" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079024, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 978.680631, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 58, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079975, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 981.650843, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "36", - "y": "100" - }, - { - "x": "33", - "y": "66" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079976, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 985.048955, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "33", - "y": "66" - }, - { - "x": "47", - "y": "30" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079977, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 990.628946, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "47", - "y": "30" - }, - { - "x": "68", - "y": "22" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079025, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 992.066421, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 32, - "y": 78 - }, - { - "x": 45, - "y": 91 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079978, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 993.893906, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": "55", - "y": "9" - }, - { - "x": "71", - "y": "34" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079026, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 996.112073, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 29, - "y": 66 - }, - { - "x": 51, - "y": 77 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079979, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 997.91838, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "49", - "y": "23" - }, - { - "x": "62", - "y": "4" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079027, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1000.549526, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 38, - "y": 96 - }, - { - "x": 44, - "y": 89 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079980, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1000.549526, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "62", - "y": "4" - }, - { - "x": "56", - "y": "11" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079981, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1001.466518, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "56", - "y": "11" - }, - { - "x": "74", - "y": "25" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079028, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1002.926305, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 26, - "y": 75 - }, - { - "x": 68, - "y": 75 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079982, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1008.190879, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": "32", - "y": "25" - }, - { - "x": "99", - "y": "75" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079029, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1016.853257, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 1, - "y": 25 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079030, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1022.002278, - "eventName": 3, - "subEventName": 34, - "positions": [ - { - "x": 100, - "y": 100 - }, - { - "x": 17, - "y": 47 - } - ], - "tags": [] - }, - { - "id": 190079031, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1024.358393, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 17, - "y": 47 - }, - { - "x": 6, - "y": 48 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079032, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1026.198185, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 6, - "y": 48 - }, - { - "x": 19, - "y": 49 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079033, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1026.789993, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 19, - "y": 49 - }, - { - "x": 16, - "y": 80 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079034, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1027.485304, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 16, - "y": 80 - }, - { - "x": 49, - "y": 73 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079035, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1029.244025, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 49, - "y": 73 - }, - { - "x": 53, - "y": 89 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079983, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1029.423904, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "51", - "y": "27" - }, - { - "x": "47", - "y": "11" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079984, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1035.050997, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "47", - "y": "11" - }, - { - "x": "63", - "y": "7" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079985, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1035.535737, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "63", - "y": "7" - }, - { - "x": "71", - "y": "33" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079036, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1037.454646, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 29, - "y": 67 - }, - { - "x": 36, - "y": 55 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079986, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1037.454646, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "71", - "y": "33" - }, - { - "x": "64", - "y": "45" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079037, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1039.842124, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 36, - "y": 55 - }, - { - "x": 93, - "y": 83 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079987, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1045.574165, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "7", - "y": "17" - }, - { - "x": "11", - "y": "59" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079988, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1052.210027, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "11", - "y": "59" - }, - { - "x": "45", - "y": "97" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079989, - "playerId": 283142, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1055.845566, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "45", - "y": "97" - }, - { - "x": "70", - "y": "86" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079990, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1058.562834, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "70", - "y": "86" - }, - { - "x": "86", - "y": "76" - } - ], - "tags": [] - }, - { - "id": 190079039, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1061.648882, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 14, - "y": 24 - }, - { - "x": 10, - "y": 11 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079991, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1061.648882, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "86", - "y": "76" - }, - { - "x": "90", - "y": "89" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079040, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1063.979552, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 10, - "y": 11 - }, - { - "x": 17, - "y": 0 - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079992, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1063.979552, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "90", - "y": "89" - }, - { - "x": "83", - "y": "100" - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079041, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1070.344196, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 11, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079993, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1078.955119, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "83", - "y": "100" - }, - { - "x": "72", - "y": "97" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079042, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1081.942497, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 28, - "y": 3 - }, - { - "x": 29, - "y": 2 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079994, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1081.942497, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "72", - "y": "97" - }, - { - "x": "71", - "y": "98" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079043, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1084.021417, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": 29, - "y": 2 - }, - { - "x": 28, - "y": 3 - } - ], - "tags": [] - }, - { - "id": 190079995, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1107.122456, - "eventName": 3, - "subEventName": 32, - "positions": [ - { - "x": "75", - "y": "98" - }, - { - "x": "92", - "y": "54" - } - ], - "tags": [ - { - "id": 801 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079044, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1109.45497, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 8, - "y": 46 - }, - { - "x": 6, - "y": 32 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079045, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1111.014891, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 6, - "y": 32 - }, - { - "x": 5, - "y": 33 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079996, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1111.014891, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "94", - "y": "68" - }, - { - "x": "95", - "y": "67" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079997, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1112.691208, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": "95", - "y": "67" - }, - { - "x": "94", - "y": "68" - } - ], - "tags": [] - }, - { - "id": 190080248, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1175.094379, - "eventName": 3, - "subEventName": 31, - "positions": [ - { - "x": 5, - "y": 47 - }, - { - "x": 68, - "y": 46 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079046, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1178.31082, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 68, - "y": 46 - }, - { - "x": 65, - "y": 53 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079998, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1178.31082, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "32", - "y": "54" - }, - { - "x": "35", - "y": "47" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079999, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1180.031385, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "35", - "y": "47" - }, - { - "x": "45", - "y": "54" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079047, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1182.282595, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 55, - "y": 46 - }, - { - "x": 51, - "y": 35 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080000, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1182.282595, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "45", - "y": "54" - }, - { - "x": "49", - "y": "65" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080001, - "playerId": 283142, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1183.795663, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "49", - "y": "65" - }, - { - "x": "42", - "y": "77" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079048, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1183.875024, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 51, - "y": 35 - }, - { - "x": 58, - "y": 23 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079049, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1184.876386, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 58, - "y": 23 - }, - { - "x": 51, - "y": 14 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080002, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1185.041942, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "42", - "y": "77" - }, - { - "x": "49", - "y": "86" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080003, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1186.788439, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "49", - "y": "86" - }, - { - "x": "59", - "y": "94" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079051, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1188.616689, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 41, - "y": 6 - }, - { - "x": 35, - "y": 0 - } - ], - "tags": [ - { - "id": 601 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080004, - "playerId": 283142, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1188.616689, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "59", - "y": "94" - }, - { - "x": "65", - "y": "100" - } - ], - "tags": [ - { - "id": 602 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079052, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1192.034919, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 41, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190080005, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1196.953986, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "65", - "y": "100" - }, - { - "x": "68", - "y": "92" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080006, - "playerId": 283142, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1199.002297, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "68", - "y": "92" - }, - { - "x": "68", - "y": "88" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080007, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1201.916791, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "68", - "y": "88" - }, - { - "x": "66", - "y": "88" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080008, - "playerId": 283142, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1204.842725, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "66", - "y": "88" - }, - { - "x": "67", - "y": "64" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080009, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1206.214582, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "67", - "y": "64" - }, - { - "x": "81", - "y": "62" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079053, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1207.349628, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 19, - "y": 38 - }, - { - "x": 25, - "y": 33 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 601 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080010, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1207.349628, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "81", - "y": "62" - }, - { - "x": "75", - "y": "67" - } - ], - "tags": [ - { - "id": 602 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079054, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1209.216304, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 25, - "y": 33 - }, - { - "x": 35, - "y": 16 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079055, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1210.467027, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 35, - "y": 16 - }, - { - "x": 43, - "y": 37 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079057, - "playerId": 7907, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1211.354286, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 43, - "y": 37 - }, - { - "x": 54, - "y": 58 - } - ], - "tags": [ - { - "id": 1901 - } - ] - }, - { - "id": 190079058, - "playerId": 7907, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1219.919898, - "eventName": 8, - "subEventName": 86, - "positions": [ - { - "x": 54, - "y": 58 - }, - { - "x": 88, - "y": 24 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079060, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1225.063676, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 88, - "y": 24 - }, - { - "x": 94, - "y": 28 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 503 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080012, - "playerId": 283142, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1225.063676, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "12", - "y": "76" - }, - { - "x": "6", - "y": "72" - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079061, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1226.610387, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 94, - "y": 28 - }, - { - "x": 99, - "y": 27 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080013, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1226.610387, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "6", - "y": "72" - }, - { - "x": "1", - "y": "73" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080014, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1227.181315, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": "1", - "y": "73" - }, - { - "x": "12", - "y": "100" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079062, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1232.699057, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 88, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079063, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1233.301104, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 83, - "y": 0 - }, - { - "x": 74, - "y": 14 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079064, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1235.124679, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 74, - "y": 14 - }, - { - "x": 89, - "y": 17 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079065, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1236.011053, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 89, - "y": 17 - }, - { - "x": 81, - "y": 16 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079066, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1236.245671, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 81, - "y": 16 - }, - { - "x": 91, - "y": 32 - } - ], - "tags": [] - }, - { - "id": 190079067, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1241.14846, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 91, - "y": 32 - }, - { - "x": 89, - "y": 34 - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080015, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1241.14846, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "9", - "y": "68" - }, - { - "x": "11", - "y": "66" - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079068, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1242.588501, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 89, - "y": 34 - }, - { - "x": 89, - "y": 58 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079069, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1243.635634, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": 89, - "y": 58 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 2101 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080016, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1244.596186, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "10", - "y": "37" - }, - { - "x": "27", - "y": "43" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190079070, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1248.051268, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 73, - "y": 57 - }, - { - "x": 91, - "y": 32 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190080017, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1249.832951, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": "9", - "y": "68" - }, - { - "x": "29", - "y": "74" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079071, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1255.67623, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 71, - "y": 26 - }, - { - "x": 87, - "y": 29 - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080018, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1255.67623, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "29", - "y": "74" - }, - { - "x": "13", - "y": "71" - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079072, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1257.243298, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 87, - "y": 29 - }, - { - "x": 86, - "y": 37 - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080019, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1257.243298, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "13", - "y": "71" - }, - { - "x": "14", - "y": "63" - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079080, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1258.043784, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 86, - "y": 37 - }, - { - "x": 86, - "y": 33 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080020, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1258.043784, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "14", - "y": "63" - }, - { - "x": "14", - "y": "67" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079075, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1261.118368, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 86, - "y": 33 - }, - { - "x": 90, - "y": 24 - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080021, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1261.118368, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "14", - "y": "67" - }, - { - "x": "10", - "y": "76" - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079077, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1262.430747, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": 90, - "y": 24 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 2101 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080022, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1263.298145, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "9", - "y": "63" - }, - { - "x": "14", - "y": "71" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190080023, - "playerId": 283142, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1264.447649, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "14", - "y": "71" - }, - { - "x": "36", - "y": "64" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079082, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1265.72006, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 64, - "y": 36 - }, - { - "x": 55, - "y": 12 - } - ], - "tags": [ - { - "id": 1601 - }, - { - "id": 601 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080024, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1265.72006, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "36", - "y": "64" - }, - { - "x": "45", - "y": "88" - } - ], - "tags": [ - { - "id": 602 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079083, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1269.763971, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 55, - "y": 12 - }, - { - "x": 85, - "y": 3 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079086, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1273.984315, - "eventName": 8, - "subEventName": 86, - "positions": [ - { - "x": 85, - "y": 3 - }, - { - "x": 97, - "y": 25 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079087, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1275.622128, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 97, - "y": 25 - }, - { - "x": 90, - "y": 39 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079088, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1276.319828, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": 90, - "y": 39 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 401 - }, - { - "id": 2101 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080025, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1277.137636, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "11", - "y": "58" - }, - { - "x": "17", - "y": "70" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190080026, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1278.873468, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "17", - "y": "70" - }, - { - "x": "39", - "y": "77" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080027, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1282.344242, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "39", - "y": "77" - }, - { - "x": "35", - "y": "66" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080028, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1283.511052, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "35", - "y": "66" - }, - { - "x": "70", - "y": "54" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080029, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1287.188805, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "70", - "y": "54" - }, - { - "x": "74", - "y": "13" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080031, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1292.619294, - "eventName": 7, - "subEventName": 70, - "positions": [ - { - "x": "74", - "y": "13" - }, - { - "x": "74", - "y": "33" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080032, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1295.838263, - "eventName": 8, - "subEventName": 86, - "positions": [ - { - "x": "74", - "y": "33" - }, - { - "x": "90", - "y": "40" - } - ], - "tags": [ - { - "id": 302 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079091, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1297.516915, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 10, - "y": 60 - }, - { - "x": 5, - "y": 66 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080033, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1297.516915, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "90", - "y": "40" - }, - { - "x": "95", - "y": "34" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080034, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1297.969674, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": "95", - "y": "34" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [ - { - "id": 401 - }, - { - "id": 2101 - }, - { - "id": 201 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079093, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1300.241432, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 6, - "y": 63 - }, - { - "x": 5, - "y": 91 - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190080035, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1303.125489, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": "95", - "y": "9" - }, - { - "x": "89", - "y": "51" - } - ], - "tags": [ - { - "id": 401 - }, - { - "id": 801 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079096, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1305.283402, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 11, - "y": 49 - }, - { - "x": 13, - "y": 84 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079101, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1309.472327, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 13, - "y": 84 - }, - { - "x": 19, - "y": 72 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080036, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1309.472327, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "87", - "y": "16" - }, - { - "x": "81", - "y": "28" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079102, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1311.053918, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 19, - "y": 72 - }, - { - "x": 32, - "y": 67 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190080037, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1312.459905, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "68", - "y": "33" - }, - { - "x": "70", - "y": "52" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080038, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1313.166053, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "70", - "y": "52" - }, - { - "x": "66", - "y": "45" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080039, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1313.828547, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "66", - "y": "45" - }, - { - "x": "71", - "y": "43" - } - ], - "tags": [ - { - "id": 2001 - } - ] - }, - { - "id": 190079103, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1315.0993, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 29, - "y": 57 - }, - { - "x": 40, - "y": 66 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079106, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1316.89241, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 40, - "y": 66 - }, - { - "x": 50, - "y": 77 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079109, - "playerId": 7907, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1320.518522, - "eventName": 7, - "subEventName": 70, - "positions": [ - { - "x": 50, - "y": 77 - }, - { - "x": 81, - "y": 64 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079112, - "playerId": 7907, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1322.928069, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 81, - "y": 64 - }, - { - "x": 85, - "y": 35 - } - ], - "tags": [ - { - "id": 301 - }, - { - "id": 1901 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079114, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1325.15181, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 85, - "y": 35 - }, - { - "x": 85, - "y": 41 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 501 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080041, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1325.15181, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "15", - "y": "65" - }, - { - "x": "15", - "y": "59" - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079115, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1326.262532, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": 85, - "y": 41 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 101 - }, - { - "id": 1901 - }, - { - "id": 402 - }, - { - "id": 201 - }, - { - "id": 1201 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080042, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1327.933957, - "eventName": 9, - "subEventName": 90, - "positions": [ - { - "x": "0", - "y": "0" - }, - { - "x": "15", - "y": "59" - } - ], - "tags": [ - { - "id": 101 - }, - { - "id": 1201 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080043, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1391.149565, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "32", - "y": "79" - }, - { - "x": "44", - "y": "59" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079120, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1394.616596, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 56, - "y": 41 - }, - { - "x": 55, - "y": 40 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080044, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1394.616596, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "44", - "y": "59" - }, - { - "x": "45", - "y": "60" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079121, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1397.956872, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": 55, - "y": 40 - }, - { - "x": 56, - "y": 41 - } - ], - "tags": [] - }, - { - "id": 190080045, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1401.363396, - "eventName": 3, - "subEventName": 31, - "positions": [ - { - "x": "45", - "y": "65" - }, - { - "x": "72", - "y": "10" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080046, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1404.415057, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "72", - "y": "10" - }, - { - "x": "70", - "y": "6" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080047, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1408.567338, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "70", - "y": "6" - }, - { - "x": "87", - "y": "12" - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079122, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1409.152068, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 30, - "y": 94 - }, - { - "x": 13, - "y": 88 - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080048, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1411.44402, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": "87", - "y": "12" - }, - { - "x": "89", - "y": "65" - } - ], - "tags": [ - { - "id": 302 - }, - { - "id": 401 - }, - { - "id": 801 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080049, - "playerId": 283142, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1414.745959, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": "89", - "y": "65" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 201 - }, - { - "id": 1203 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079126, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1416.045438, - "eventName": 9, - "subEventName": 90, - "positions": [ - { - "x": 100, - "y": 100 - }, - { - "x": 11, - "y": 35 - } - ], - "tags": [ - { - "id": 1203 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080050, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1416.870093, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": "92", - "y": "48" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [ - { - "id": 101 - }, - { - "id": 403 - }, - { - "id": 201 - }, - { - "id": 1203 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079127, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1419.458915, - "eventName": 9, - "subEventName": 90, - "positions": [ - { - "x": 100, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 101 - }, - { - "id": 1203 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080051, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1477.083488, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "45", - "y": "32" - }, - { - "x": "57", - "y": "10" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080052, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1479.451878, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "57", - "y": "10" - }, - { - "x": "63", - "y": "22" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080053, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1480.845029, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "63", - "y": "22" - }, - { - "x": "51", - "y": "5" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080054, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1482.202086, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "51", - "y": "5" - }, - { - "x": "54", - "y": "0" - } - ], - "tags": [ - { - "id": 1302 - } - ] - }, - { - "id": 190079130, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1485.829487, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 46, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079132, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1502.479807, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 59, - "y": 100 - }, - { - "x": 67, - "y": 91 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079134, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1503.57204, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 67, - "y": 91 - }, - { - "x": 78, - "y": 88 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190080055, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1505.963963, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "22", - "y": "12" - }, - { - "x": "6", - "y": "52" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080056, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1510.409206, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": "6", - "y": "52" - }, - { - "x": "64", - "y": "36" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079136, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1514.123399, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 36, - "y": 64 - }, - { - "x": 44, - "y": 49 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080057, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1514.123399, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "64", - "y": "36" - }, - { - "x": "56", - "y": "51" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080058, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1516.256519, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "56", - "y": "51" - }, - { - "x": "50", - "y": "74" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079138, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1519.772313, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 50, - "y": 26 - }, - { - "x": 61, - "y": 17 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080059, - "playerId": 283142, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1519.772313, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "50", - "y": "74" - }, - { - "x": "39", - "y": "83" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079139, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1521.146025, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 61, - "y": 17 - }, - { - "x": 67, - "y": 4 - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080060, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1521.146025, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "39", - "y": "83" - }, - { - "x": "33", - "y": "96" - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079140, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1526.88276, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 67, - "y": 4 - }, - { - "x": 55, - "y": 15 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079142, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1528.765389, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 55, - "y": 15 - }, - { - "x": 38, - "y": 23 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079143, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1532.299339, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 38, - "y": 23 - }, - { - "x": 43, - "y": 3 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079145, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1534.430057, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 43, - "y": 3 - }, - { - "x": 46, - "y": 15 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079146, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1536.457702, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 46, - "y": 15 - }, - { - "x": 44, - "y": 2 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079147, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1537.849399, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 44, - "y": 2 - }, - { - "x": 29, - "y": 16 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079148, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1538.875922, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 29, - "y": 16 - }, - { - "x": 38, - "y": 8 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079149, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1543.797624, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 38, - "y": 8 - }, - { - "x": 31, - "y": 4 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079150, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1547.76206, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 31, - "y": 4 - }, - { - "x": 74, - "y": 19 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079152, - "playerId": 7907, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1548.354617, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 74, - "y": 19 - }, - { - "x": 67, - "y": 15 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080061, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1548.354617, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "26", - "y": "81" - }, - { - "x": "33", - "y": "85" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080062, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1549.170739, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "33", - "y": "85" - }, - { - "x": "39", - "y": "78" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080063, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1550.593055, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "39", - "y": "78" - }, - { - "x": "62", - "y": "73" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080064, - "playerId": 14763, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1552.199186, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "62", - "y": "73" - }, - { - "x": "64", - "y": "88" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079154, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1556.5751, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 36, - "y": 12 - }, - { - "x": 17, - "y": 58 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079156, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1561.662509, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 17, - "y": 58 - }, - { - "x": 55, - "y": 85 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079157, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1565.336994, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 55, - "y": 85 - }, - { - "x": 56, - "y": 91 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080065, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1565.336994, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "45", - "y": "15" - }, - { - "x": "44", - "y": "9" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079158, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1567.26121, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 56, - "y": 91 - }, - { - "x": 41, - "y": 82 - } - ], - "tags": [ - { - "id": 2001 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080066, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1568.982482, - "eventName": 8, - "subEventName": 86, - "positions": [ - { - "x": "59", - "y": "18" - }, - { - "x": "86", - "y": "27" - } - ], - "tags": [ - { - "id": 302 - }, - { - "id": 1401 - }, - { - "id": 901 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079163, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1571.34477, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 14, - "y": 73 - }, - { - "x": 14, - "y": 73 - } - ], - "tags": [ - { - "id": 1302 - } - ] - }, - { - "id": 190079165, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1572.438936, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 14, - "y": 73 - }, - { - "x": 14, - "y": 74 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080068, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1572.438936, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "86", - "y": "27" - }, - { - "x": "86", - "y": "26" - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079166, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1574.16001, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": 14, - "y": 74 - }, - { - "x": 14, - "y": 73 - } - ], - "tags": [ - { - "id": 1702 - } - ] - }, - { - "id": 190080069, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1647.755047, - "eventName": 3, - "subEventName": 35, - "positions": [ - { - "x": "89", - "y": "50" - }, - { - "x": "86", - "y": "26" - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 1203 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079169, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1649.412687, - "eventName": 9, - "subEventName": 90, - "positions": [ - { - "x": 100, - "y": 100 - }, - { - "x": 11, - "y": 50 - } - ], - "tags": [ - { - "id": 1203 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080070, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1652.279528, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "88", - "y": "10" - }, - { - "x": "95", - "y": "7" - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079170, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1652.610104, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 12, - "y": 90 - }, - { - "x": 5, - "y": 93 - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080071, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1654.15385, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": "95", - "y": "7" - }, - { - "x": "95", - "y": "63" - } - ], - "tags": [ - { - "id": 401 - }, - { - "id": 801 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079172, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1657.57105, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 5, - "y": 37 - }, - { - "x": 14, - "y": 3 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079175, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1663.162967, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 14, - "y": 3 - }, - { - "x": 3, - "y": 4 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080072, - "playerId": 283142, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1663.162967, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "86", - "y": "97" - }, - { - "x": "97", - "y": "96" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079177, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1664.82698, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 3, - "y": 4 - }, - { - "x": 1, - "y": 21 - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080073, - "playerId": 283142, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1664.82698, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "97", - "y": "96" - }, - { - "x": "99", - "y": "79" - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080074, - "playerId": 283142, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1667.169819, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": "99", - "y": "79" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 2101 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079179, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1670.8684, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 2, - "y": 21 - }, - { - "x": 15, - "y": 4 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079180, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1672.380539, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 15, - "y": 4 - }, - { - "x": 44, - "y": 7 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190080076, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1675.662163, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "56", - "y": "93" - }, - { - "x": "40", - "y": "70" - } - ], - "tags": [] - }, - { - "id": 190080077, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1682.748249, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "40", - "y": "70" - }, - { - "x": "41", - "y": "39" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080078, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1686.115097, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "41", - "y": "39" - }, - { - "x": "90", - "y": "8" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080079, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1689.804802, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": "90", - "y": "8" - }, - { - "x": "97", - "y": "90" - } - ], - "tags": [ - { - "id": 401 - }, - { - "id": 801 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080080, - "playerId": 283142, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1696.326518, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": "97", - "y": "90" - }, - { - "x": "94", - "y": "66" - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 801 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079183, - "playerId": 18550, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1697.042318, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 6, - "y": 34 - }, - { - "x": 24, - "y": 0 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079184, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1703.580272, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 24, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190080081, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1747.767897, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "77", - "y": "100" - }, - { - "x": "63", - "y": "89" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079190, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1750.970806, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 37, - "y": 11 - }, - { - "x": 33, - "y": 34 - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080082, - "playerId": 285508, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1750.970806, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "63", - "y": "89" - }, - { - "x": "67", - "y": "66" - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080083, - "playerId": 285508, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1754.505752, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "67", - "y": "66" - }, - { - "x": "68", - "y": "37" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080084, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1758.157239, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "68", - "y": "37" - }, - { - "x": "75", - "y": "12" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080085, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1762.187557, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": "75", - "y": "12" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 801 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079191, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1763.53776, - "eventName": 4, - "subEventName": 40, - "positions": [ - { - "x": 100, - "y": 100 - }, - { - "x": 25, - "y": 88 - } - ], - "tags": [ - { - "id": 1901 - } - ] - }, - { - "id": 190079195, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1766.235777, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 18, - "y": 17 - }, - { - "x": 7, - "y": 28 - } - ], - "tags": [ - { - "id": 1901 - } - ] - }, - { - "id": 190079192, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1767.127937, - "eventName": 8, - "subEventName": 81, - "positions": [ - { - "x": 7, - "y": 28 - }, - { - "x": 34, - "y": 3 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079197, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1771.547279, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 34, - "y": 3 - }, - { - "x": 55, - "y": 2 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079198, - "playerId": 8319, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1776.955586, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 55, - "y": 2 - }, - { - "x": 63, - "y": 11 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079201, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1782.469901, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 63, - "y": 11 - }, - { - "x": 70, - "y": 43 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079202, - "playerId": 7907, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1784.314506, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 70, - "y": 43 - }, - { - "x": 76, - "y": 54 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080086, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1784.314506, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "30", - "y": "57" - }, - { - "x": "24", - "y": "46" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079204, - "playerId": 7907, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1786.808383, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 76, - "y": 54 - }, - { - "x": 82, - "y": 62 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 501 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080087, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1786.808383, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "24", - "y": "46" - }, - { - "x": "18", - "y": "38" - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 1601 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079206, - "playerId": 7907, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1788.787669, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": 82, - "y": 62 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 401 - }, - { - "id": 201 - }, - { - "id": 1215 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079208, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1792.868313, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 100, - "y": 49 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190080088, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1811.045417, - "eventName": 3, - "subEventName": 34, - "positions": [ - { - "x": "0", - "y": "0" - }, - { - "x": "65", - "y": "69" - } - ], - "tags": [] - }, - { - "id": 190080089, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1812.785475, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "65", - "y": "69" - }, - { - "x": "63", - "y": "68" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079212, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1812.877867, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 35, - "y": 31 - }, - { - "x": 37, - "y": 32 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080090, - "playerId": 285508, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1813.176304, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "63", - "y": "68" - }, - { - "x": "88", - "y": "69" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079213, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1813.707805, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 37, - "y": 32 - }, - { - "x": 12, - "y": 31 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079214, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1816.835008, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 12, - "y": 31 - }, - { - "x": 13, - "y": 51 - } - ], - "tags": [] - }, - { - "id": 190079216, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1827.448189, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": 13, - "y": 51 - }, - { - "x": 73, - "y": 66 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079217, - "playerId": 7907, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1829.349141, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 73, - "y": 66 - }, - { - "x": 88, - "y": 52 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080091, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1829.349141, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "27", - "y": "34" - }, - { - "x": "12", - "y": "48" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080092, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1839.867338, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": "12", - "y": "48" - }, - { - "x": "57", - "y": "29" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080093, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1841.91205, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "57", - "y": "29" - }, - { - "x": "64", - "y": "71" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079218, - "playerId": 8319, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1843.983605, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 36, - "y": 29 - }, - { - "x": 43, - "y": 51 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190080094, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1847.371959, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "57", - "y": "49" - }, - { - "x": "62", - "y": "90" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080095, - "playerId": 283142, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1850.76163, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "62", - "y": "90" - }, - { - "x": "51", - "y": "83" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080096, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1852.901601, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "51", - "y": "83" - }, - { - "x": "65", - "y": "62" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080097, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1854.35163, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "65", - "y": "62" - }, - { - "x": "69", - "y": "77" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080098, - "playerId": 285508, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1855.145367, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "69", - "y": "77" - }, - { - "x": "71", - "y": "57" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079221, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1857.108708, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 29, - "y": 43 - }, - { - "x": 33, - "y": 23 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190080099, - "playerId": 285508, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1857.221852, - "eventName": 8, - "subEventName": 86, - "positions": [ - { - "x": "67", - "y": "77" - }, - { - "x": "73", - "y": "72" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079222, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1859.810562, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 27, - "y": 28 - }, - { - "x": 34, - "y": 32 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079223, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1860.585357, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 34, - "y": 32 - }, - { - "x": 27, - "y": 7 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079225, - "playerId": 8319, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1863.526302, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 27, - "y": 7 - }, - { - "x": 38, - "y": 20 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079227, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1864.817739, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 38, - "y": 20 - }, - { - "x": 38, - "y": 8 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079228, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1865.745106, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 38, - "y": 8 - }, - { - "x": 33, - "y": 4 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080101, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1865.745106, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "62", - "y": "92" - }, - { - "x": "67", - "y": "96" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079230, - "playerId": 8319, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1867.691622, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 33, - "y": 4 - }, - { - "x": 28, - "y": 3 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080102, - "playerId": 283142, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1867.691622, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "67", - "y": "96" - }, - { - "x": "72", - "y": "97" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079231, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1869.679005, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 28, - "y": 3 - }, - { - "x": 30, - "y": 4 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080103, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1869.679005, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "72", - "y": "97" - }, - { - "x": "70", - "y": "96" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079232, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1871.734211, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 30, - "y": 4 - }, - { - "x": 43, - "y": 3 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079233, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1873.669225, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 43, - "y": 3 - }, - { - "x": 56, - "y": 4 - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080104, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1873.669225, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "57", - "y": "97" - }, - { - "x": "44", - "y": "96" - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079234, - "playerId": 3802, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1876.057876, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 56, - "y": 4 - }, - { - "x": 56, - "y": 6 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080106, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1876.057876, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "44", - "y": "96" - }, - { - "x": "44", - "y": "94" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080107, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1878.066305, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": "44", - "y": "94" - }, - { - "x": "44", - "y": "96" - } - ], - "tags": [] - }, - { - "id": 190079235, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1903.156531, - "eventName": 3, - "subEventName": 31, - "positions": [ - { - "x": 56, - "y": 3 - }, - { - "x": 34, - "y": 75 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079236, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1906.328765, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 34, - "y": 75 - }, - { - "x": 40, - "y": 65 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079237, - "playerId": 8319, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1906.905202, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 40, - "y": 65 - }, - { - "x": 32, - "y": 80 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079238, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1908.866502, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 32, - "y": 80 - }, - { - "x": 33, - "y": 64 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079239, - "playerId": 8319, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1909.584196, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 33, - "y": 64 - }, - { - "x": 62, - "y": 78 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079240, - "playerId": 7907, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1910.534239, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 62, - "y": 78 - }, - { - "x": 66, - "y": 76 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080415, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1910.534239, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "38", - "y": "22" - }, - { - "x": "34", - "y": "24" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080108, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1911.208, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "34", - "y": "24" - }, - { - "x": "65", - "y": "14" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080109, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1911.730833, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "65", - "y": "14" - }, - { - "x": "59", - "y": "0" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079241, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1913.10388, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 35, - "y": 86 - }, - { - "x": 41, - "y": 100 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079242, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1917.539813, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 44, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190080110, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1922.298087, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "59", - "y": "0" - }, - { - "x": "35", - "y": "25" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080111, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1925.718595, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "35", - "y": "25" - }, - { - "x": "35", - "y": "64" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080112, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1930.95113, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "35", - "y": "64" - }, - { - "x": "37", - "y": "28" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080113, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1933.276902, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "37", - "y": "28" - }, - { - "x": "44", - "y": "35" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080114, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1935.675731, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "44", - "y": "35" - }, - { - "x": "36", - "y": "37" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080115, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1941.252611, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "36", - "y": "37" - }, - { - "x": "40", - "y": "75" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080116, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1945.358498, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "40", - "y": "75" - }, - { - "x": "49", - "y": "93" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080117, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1947.35955, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "49", - "y": "93" - }, - { - "x": "36", - "y": "62" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080118, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1951.723811, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "36", - "y": "62" - }, - { - "x": "42", - "y": "36" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080119, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1954.863063, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "42", - "y": "36" - }, - { - "x": "50", - "y": "24" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080120, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1957.855391, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "50", - "y": "24" - }, - { - "x": "51", - "y": "54" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080121, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1962.122818, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "51", - "y": "54" - }, - { - "x": "56", - "y": "32" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080122, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1963.705811, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "56", - "y": "32" - }, - { - "x": "38", - "y": "78" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080123, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1973.242038, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "38", - "y": "78" - }, - { - "x": "35", - "y": "29" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080124, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1974.926251, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "35", - "y": "29" - }, - { - "x": "64", - "y": "34" - } - ], - "tags": [] - }, - { - "id": 190080125, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1979.096398, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "64", - "y": "34" - }, - { - "x": "71", - "y": "19" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079243, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1981.093981, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 29, - "y": 81 - }, - { - "x": 25, - "y": 78 - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080126, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1981.093981, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "71", - "y": "19" - }, - { - "x": "75", - "y": "22" - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080127, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1982.279433, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "75", - "y": "22" - }, - { - "x": "85", - "y": "35" - } - ], - "tags": [] - }, - { - "id": 190079245, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1983.555748, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 15, - "y": 65 - }, - { - "x": 60, - "y": 77 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190080128, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1986.56599, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "40", - "y": "23" - }, - { - "x": "56", - "y": "6" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080129, - "playerId": 8013, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1988.416332, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "56", - "y": "6" - }, - { - "x": "28", - "y": "43" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080130, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1993.648375, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "28", - "y": "43" - }, - { - "x": "65", - "y": "95" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080131, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1997.369252, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "65", - "y": "95" - }, - { - "x": "64", - "y": "69" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079247, - "playerId": 8319, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1999.63328, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 36, - "y": 31 - }, - { - "x": 37, - "y": 44 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080132, - "playerId": 283142, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 1999.63328, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "64", - "y": "69" - }, - { - "x": "63", - "y": "56" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079248, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2000.866977, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 37, - "y": 44 - }, - { - "x": 37, - "y": 44 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080133, - "playerId": 283142, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2000.866977, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "63", - "y": "56" - }, - { - "x": "63", - "y": "56" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079249, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2002.462826, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 37, - "y": 44 - }, - { - "x": 64, - "y": 0 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079250, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2008.490125, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 64, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190080134, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2022.805514, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "33", - "y": "100" - }, - { - "x": "40", - "y": "100" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079261, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2025.260826, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 60, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079263, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2032.432724, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 62, - "y": 0 - }, - { - "x": 69, - "y": 9 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079264, - "playerId": 7907, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2040.666669, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 69, - "y": 9 - }, - { - "x": 77, - "y": 17 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079266, - "playerId": 7868, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2041.889372, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 77, - "y": 17 - }, - { - "x": 68, - "y": 21 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079267, - "playerId": 7907, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2042.508736, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 68, - "y": 21 - }, - { - "x": 74, - "y": 31 - } - ], - "tags": [] - }, - { - "id": 190079268, - "playerId": 7907, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2045.386605, - "eventName": 8, - "subEventName": 86, - "positions": [ - { - "x": 74, - "y": 31 - }, - { - "x": 89, - "y": 24 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079269, - "playerId": 7868, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2046.57308, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": 89, - "y": 24 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 1216 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079270, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2056.521736, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 100, - "y": 71 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190080135, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2077.703459, - "eventName": 3, - "subEventName": 34, - "positions": [ - { - "x": "0", - "y": "0" - }, - { - "x": "59", - "y": "95" - } - ], - "tags": [] - }, - { - "id": 190079271, - "playerId": 7868, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2081.078248, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 41, - "y": 5 - }, - { - "x": 27, - "y": 15 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080136, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2081.078248, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "59", - "y": "95" - }, - { - "x": "73", - "y": "85" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079273, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2083.390839, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 27, - "y": 15 - }, - { - "x": 50, - "y": 37 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079275, - "playerId": 7907, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2085.689716, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 50, - "y": 37 - }, - { - "x": 52, - "y": 55 - } - ], - "tags": [ - { - "id": 1302 - } - ] - }, - { - "id": 190080137, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2087.994214, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "48", - "y": "45" - }, - { - "x": "64", - "y": "34" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079277, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2089.472113, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 36, - "y": 66 - }, - { - "x": 29, - "y": 57 - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080138, - "playerId": 283142, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2089.472113, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "64", - "y": "34" - }, - { - "x": "71", - "y": "43" - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079278, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2091.464435, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 29, - "y": 57 - }, - { - "x": 41, - "y": 73 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079281, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2092.733596, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 41, - "y": 73 - }, - { - "x": 70, - "y": 63 - } - ], - "tags": [] - }, - { - "id": 190079282, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2098.907738, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 70, - "y": 63 - }, - { - "x": 53, - "y": 65 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079284, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2101.227368, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 53, - "y": 65 - }, - { - "x": 65, - "y": 91 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079286, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2103.704819, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 65, - "y": 91 - }, - { - "x": 56, - "y": 72 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079287, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2105.829755, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 56, - "y": 72 - }, - { - "x": 64, - "y": 97 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079288, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2107.21476, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 64, - "y": 97 - }, - { - "x": 62, - "y": 69 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079290, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2110.246213, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 62, - "y": 69 - }, - { - "x": 39, - "y": 71 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079291, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2113.030949, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 39, - "y": 71 - }, - { - "x": 51, - "y": 96 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079292, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2116.554076, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 51, - "y": 96 - }, - { - "x": 72, - "y": 83 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079302, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2118.044896, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 72, - "y": 83 - }, - { - "x": 72, - "y": 86 - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080140, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2118.044896, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "28", - "y": "17" - }, - { - "x": "28", - "y": "14" - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079304, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2119.902843, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 72, - "y": 86 - }, - { - "x": 67, - "y": 95 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079294, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2123.623533, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 67, - "y": 95 - }, - { - "x": 69, - "y": 79 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079295, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2125.093176, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 69, - "y": 79 - }, - { - "x": 74, - "y": 77 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190080141, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2126.152721, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "26", - "y": "23" - }, - { - "x": "36", - "y": "4" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190079297, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2126.401998, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 64, - "y": 96 - }, - { - "x": 70, - "y": 78 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079300, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2127.641409, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 70, - "y": 78 - }, - { - "x": 94, - "y": 87 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079308, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2131.3204, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 94, - "y": 87 - }, - { - "x": 99, - "y": 73 - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080417, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2131.3204, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "6", - "y": "13" - }, - { - "x": "1", - "y": "27" - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079310, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2132.967658, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": 99, - "y": 73 - }, - { - "x": 87, - "y": 36 - } - ], - "tags": [ - { - "id": 401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080142, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2134.12978, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "3", - "y": "50" - }, - { - "x": "13", - "y": "64" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190080143, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2135.929936, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": "13", - "y": "64" - }, - { - "x": "37", - "y": "51" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079313, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2138.200406, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 63, - "y": 49 - }, - { - "x": 72, - "y": 73 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080144, - "playerId": 285508, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2138.200406, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "37", - "y": "51" - }, - { - "x": "28", - "y": "27" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079314, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2142.327968, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 72, - "y": 73 - }, - { - "x": 69, - "y": 88 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080145, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2142.327968, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "28", - "y": "27" - }, - { - "x": "31", - "y": "12" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080146, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2143.340272, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "31", - "y": "12" - }, - { - "x": "44", - "y": "8" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080147, - "playerId": 283142, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2146.699195, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "44", - "y": "8" - }, - { - "x": "71", - "y": "29" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079317, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2150.813701, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 29, - "y": 71 - }, - { - "x": 9, - "y": 56 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079318, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2152.909425, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 9, - "y": 56 - }, - { - "x": 37, - "y": 69 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079320, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2157.193438, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 37, - "y": 69 - }, - { - "x": 32, - "y": 48 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079321, - "playerId": 8319, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2158.598036, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 32, - "y": 48 - }, - { - "x": 35, - "y": 23 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079324, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2160.015319, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 35, - "y": 23 - }, - { - "x": 54, - "y": 3 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079325, - "playerId": 7868, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2164.646732, - "eventName": 7, - "subEventName": 70, - "positions": [ - { - "x": 54, - "y": 3 - }, - { - "x": 72, - "y": 23 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079326, - "playerId": 7868, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2165.72005, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 72, - "y": 23 - }, - { - "x": 77, - "y": 35 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079329, - "playerId": 7907, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2168.505574, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": 77, - "y": 35 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 401 - }, - { - "id": 201 - }, - { - "id": 1203 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080148, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2170.628969, - "eventName": 9, - "subEventName": 91, - "positions": [ - { - "x": "0", - "y": "0" - }, - { - "x": "23", - "y": "65" - } - ], - "tags": [ - { - "id": 1203 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079331, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2178.21086, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 100, - "y": 79 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079332, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2196.72281, - "eventName": 3, - "subEventName": 30, - "positions": [ - { - "x": 100, - "y": 100 - }, - { - "x": 95, - "y": 50 - } - ], - "tags": [ - { - "id": 801 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080149, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2198.244608, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": "5", - "y": "50" - }, - { - "x": "7", - "y": "73" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079334, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2199.320312, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": 93, - "y": 27 - }, - { - "x": 94, - "y": 14 - } - ], - "tags": [ - { - "id": 401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080150, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2200.945994, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "8", - "y": "58" - }, - { - "x": "6", - "y": "86" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190079336, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2203.400285, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 94, - "y": 14 - }, - { - "x": 98, - "y": 8 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080151, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2203.400285, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "6", - "y": "86" - }, - { - "x": "2", - "y": "92" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079339, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2210.448533, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 98, - "y": 8 - }, - { - "x": 91, - "y": 4 - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080152, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2210.448533, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "2", - "y": "92" - }, - { - "x": "9", - "y": "96" - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079341, - "playerId": 7868, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2214.982504, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 91, - "y": 4 - }, - { - "x": 94, - "y": 5 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080153, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2214.982504, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "9", - "y": "96" - }, - { - "x": "6", - "y": "95" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080154, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2217.108889, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "6", - "y": "95" - }, - { - "x": "14", - "y": "100" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079343, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2223.566025, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 86, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079345, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2232.575748, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 85, - "y": 0 - }, - { - "x": 87, - "y": 12 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079346, - "playerId": 7868, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2233.958615, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 87, - "y": 12 - }, - { - "x": 87, - "y": 1 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079347, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2234.745677, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 87, - "y": 1 - }, - { - "x": 88, - "y": 15 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079348, - "playerId": 7868, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2235.951126, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 88, - "y": 15 - }, - { - "x": 89, - "y": 16 - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080155, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2235.951126, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "12", - "y": "85" - }, - { - "x": "11", - "y": "84" - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079349, - "playerId": 7868, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2237.638276, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 89, - "y": 16 - }, - { - "x": 82, - "y": 7 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080156, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2237.638276, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "11", - "y": "84" - }, - { - "x": "18", - "y": "93" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080157, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2238.424131, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "18", - "y": "93" - }, - { - "x": "34", - "y": "97" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079354, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2240.523887, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 66, - "y": 3 - }, - { - "x": 66, - "y": 1 - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080158, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2240.523887, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "34", - "y": "97" - }, - { - "x": "34", - "y": "99" - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079355, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2241.891595, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": 66, - "y": 1 - }, - { - "x": 66, - "y": 3 - } - ], - "tags": [] - }, - { - "id": 190080159, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2263.395964, - "eventName": 3, - "subEventName": 31, - "positions": [ - { - "x": "37", - "y": "94" - }, - { - "x": "82", - "y": "46" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079357, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2266.859877, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 18, - "y": 54 - }, - { - "x": 32, - "y": 60 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079358, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2269.752982, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 32, - "y": 60 - }, - { - "x": 35, - "y": 60 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080160, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2269.752982, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "68", - "y": "40" - }, - { - "x": "65", - "y": "40" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079359, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2270.326234, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 35, - "y": 60 - }, - { - "x": 35, - "y": 61 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080161, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2270.326234, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "65", - "y": "40" - }, - { - "x": "65", - "y": "39" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079360, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2271.498437, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 35, - "y": 61 - }, - { - "x": 27, - "y": 55 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079361, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2273.934496, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 27, - "y": 55 - }, - { - "x": 44, - "y": 50 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079363, - "playerId": 7907, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2276.061742, - "eventName": 8, - "subEventName": 86, - "positions": [ - { - "x": 44, - "y": 50 - }, - { - "x": 60, - "y": 63 - } - ], - "tags": [ - { - "id": 1901 - }, - { - "id": 901 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079364, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2277.769921, - "eventName": 6, - "subEventName": "", - "positions": [ - { - "x": 60, - "y": 63 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 1901 - } - ] - }, - { - "id": 190080164, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2304.968125, - "eventName": 3, - "subEventName": 32, - "positions": [ - { - "x": "42", - "y": "27" - }, - { - "x": "88", - "y": "65" - } - ], - "tags": [ - { - "id": 801 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079367, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2308.017532, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 12, - "y": 35 - }, - { - "x": 25, - "y": 37 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080163, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2308.017532, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "88", - "y": "65" - }, - { - "x": "75", - "y": "63" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079368, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2309.835376, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 25, - "y": 37 - }, - { - "x": 30, - "y": 25 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080165, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2309.835376, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "75", - "y": "63" - }, - { - "x": "70", - "y": "75" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080166, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2312.347508, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "70", - "y": "75" - }, - { - "x": "84", - "y": "93" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079372, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2315.377477, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 16, - "y": 7 - }, - { - "x": 4, - "y": 4 - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080167, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2315.377477, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "84", - "y": "93" - }, - { - "x": "96", - "y": "96" - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080168, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2316.941636, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": "96", - "y": "96" - }, - { - "x": "92", - "y": "58" - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 801 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079375, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2318.160961, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 8, - "y": 42 - }, - { - "x": 5, - "y": 43 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080169, - "playerId": 119630, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2318.160961, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "92", - "y": "58" - }, - { - "x": "95", - "y": "57" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080170, - "playerId": 119630, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2320.004585, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": "95", - "y": "57" - }, - { - "x": "92", - "y": "58" - } - ], - "tags": [] - }, - { - "id": 190079376, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2354.180177, - "eventName": 3, - "subEventName": 31, - "positions": [ - { - "x": 7, - "y": 42 - }, - { - "x": 64, - "y": 19 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079378, - "playerId": 7907, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2354.948777, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 64, - "y": 19 - }, - { - "x": 73, - "y": 9 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080171, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2354.948777, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "36", - "y": "81" - }, - { - "x": "27", - "y": "91" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079379, - "playerId": 7868, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2356.366507, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 73, - "y": 9 - }, - { - "x": 91, - "y": 26 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080172, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2356.366507, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "27", - "y": "91" - }, - { - "x": "9", - "y": "74" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079381, - "playerId": 7868, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2362.064687, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 91, - "y": 26 - }, - { - "x": 86, - "y": 34 - } - ], - "tags": [ - { - "id": 302 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079384, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2363.8993, - "eventName": 10, - "subEventName": 100, - "positions": [ - { - "x": 86, - "y": 34 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 201 - }, - { - "id": 1210 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079385, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2369.756535, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 100, - "y": 59 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190080173, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2388.054065, - "eventName": 3, - "subEventName": 34, - "positions": [ - { - "x": "0", - "y": "0" - }, - { - "x": "64", - "y": "23" - } - ], - "tags": [] - }, - { - "id": 190079390, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2390.302303, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 36, - "y": 77 - }, - { - "x": 30, - "y": 100 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080174, - "playerId": 119630, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2390.302303, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "64", - "y": "23" - }, - { - "x": "70", - "y": "0" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079391, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2397.328541, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 29, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079392, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2406.534516, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 30, - "y": 100 - }, - { - "x": 61, - "y": 84 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079394, - "playerId": 7907, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2407.88984, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 61, - "y": 84 - }, - { - "x": 62, - "y": 89 - } - ], - "tags": [] - }, - { - "id": 190080175, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2408.523552, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": "38", - "y": "11" - }, - { - "x": "64", - "y": "25" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079395, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2413.059589, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 36, - "y": 75 - }, - { - "x": 66, - "y": 74 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190080176, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2414.419675, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "34", - "y": "26" - }, - { - "x": "31", - "y": "48" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080177, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2417.806697, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "31", - "y": "48" - }, - { - "x": "38", - "y": "64" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080178, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2420.376892, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "38", - "y": "64" - }, - { - "x": "73", - "y": "37" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079397, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2422.862681, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 27, - "y": 63 - }, - { - "x": 29, - "y": 50 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080179, - "playerId": 119630, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2422.862681, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "73", - "y": "37" - }, - { - "x": "71", - "y": "50" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079400, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2424.978662, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 29, - "y": 50 - }, - { - "x": 60, - "y": 70 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190080180, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2427.736248, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "40", - "y": "30" - }, - { - "x": "28", - "y": "68" - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080181, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2434.269055, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": "28", - "y": "68" - }, - { - "x": "80", - "y": "27" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079402, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2437.799727, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 20, - "y": 73 - }, - { - "x": 31, - "y": 71 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079404, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2439.90876, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 31, - "y": 71 - }, - { - "x": 30, - "y": 51 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079406, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2441.220777, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 30, - "y": 51 - }, - { - "x": 20, - "y": 57 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080182, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2441.220777, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "70", - "y": "49" - }, - { - "x": "80", - "y": "43" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079408, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2443.8493, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 20, - "y": 57 - }, - { - "x": 32, - "y": 58 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080183, - "playerId": 119630, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2443.8493, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "80", - "y": "43" - }, - { - "x": "68", - "y": "42" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079409, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2445.709927, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 32, - "y": 58 - }, - { - "x": 39, - "y": 67 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079410, - "playerId": 8319, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2447.500892, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 39, - "y": 67 - }, - { - "x": 28, - "y": 72 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080184, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2447.500892, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "61", - "y": "33" - }, - { - "x": "72", - "y": "28" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079412, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2450.129276, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 28, - "y": 72 - }, - { - "x": 61, - "y": 100 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079414, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2454.950924, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 61, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190080185, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2461.643369, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "44", - "y": "0" - }, - { - "x": "52", - "y": "31" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079416, - "playerId": 8319, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2466.265617, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 48, - "y": 69 - }, - { - "x": 61, - "y": 61 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080419, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2466.265617, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "52", - "y": "31" - }, - { - "x": "39", - "y": "39" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080186, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2467.603897, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "39", - "y": "39" - }, - { - "x": "43", - "y": "26" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079418, - "playerId": 8319, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2471.022049, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 57, - "y": 74 - }, - { - "x": 59, - "y": 74 - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 1601 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080187, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2471.022049, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "43", - "y": "26" - }, - { - "x": "41", - "y": "26" - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080188, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2473.017167, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "41", - "y": "26" - }, - { - "x": "41", - "y": "6" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080189, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2475.034639, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "41", - "y": "6" - }, - { - "x": "94", - "y": "10" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079423, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2479.229177, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 6, - "y": 90 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080190, - "playerId": 285508, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2479.229177, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "94", - "y": "10" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [ - { - "id": 1601 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079424, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2488.830836, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 0, - "y": 86 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079427, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2526.19131, - "eventName": 3, - "subEventName": 34, - "positions": [ - { - "x": 100, - "y": 100 - }, - { - "x": 62, - "y": 0 - } - ], - "tags": [] - }, - { - "id": 190079428, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2528.365006, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 62, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190080191, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2533.447238, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "33", - "y": "100" - }, - { - "x": "32", - "y": "76" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080192, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2535.860114, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "32", - "y": "76" - }, - { - "x": "31", - "y": "41" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080193, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2538.845177, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "31", - "y": "41" - }, - { - "x": "36", - "y": "7" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080194, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2543.906907, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "36", - "y": "7" - }, - { - "x": "35", - "y": "46" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080195, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2550.717839, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "35", - "y": "46" - }, - { - "x": "67", - "y": "96" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080196, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2557.272866, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "67", - "y": "96" - }, - { - "x": "76", - "y": "97" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079432, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2559.043969, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 24, - "y": 3 - }, - { - "x": 27, - "y": 0 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080197, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2559.043969, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "76", - "y": "97" - }, - { - "x": "73", - "y": "100" - } - ], - "tags": [ - { - "id": 1601 - }, - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079433, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2566.178898, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 26, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079435, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2585.1634, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 27, - "y": 0 - }, - { - "x": 40, - "y": 2 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079437, - "playerId": 7868, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2585.761659, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 40, - "y": 2 - }, - { - "x": 33, - "y": 12 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080198, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2585.761659, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "60", - "y": "98" - }, - { - "x": "67", - "y": "88" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079438, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2587.373712, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 33, - "y": 12 - }, - { - "x": 44, - "y": 50 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080199, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2592.167788, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "56", - "y": "50" - }, - { - "x": "65", - "y": "16" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080200, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2596.75211, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "65", - "y": "16" - }, - { - "x": "71", - "y": "7" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079440, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2597.86457, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 29, - "y": 93 - }, - { - "x": 24, - "y": 100 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080201, - "playerId": 119630, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2597.86457, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "71", - "y": "7" - }, - { - "x": "76", - "y": "0" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079441, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2602.524594, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 35, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190080202, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2615.034421, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "76", - "y": "0" - }, - { - "x": "81", - "y": "9" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080203, - "playerId": 285508, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2616.035153, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "81", - "y": "9" - }, - { - "x": "74", - "y": "8" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080204, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2616.983217, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "74", - "y": "8" - }, - { - "x": "88", - "y": "9" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079445, - "playerId": 8319, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2618.627391, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 12, - "y": 91 - }, - { - "x": 22, - "y": 91 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080205, - "playerId": 285508, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2618.627391, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "88", - "y": "9" - }, - { - "x": "78", - "y": "9" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080206, - "playerId": 285508, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2620.04801, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "78", - "y": "9" - }, - { - "x": "76", - "y": "5" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079446, - "playerId": 120353, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2622.849129, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 24, - "y": 95 - }, - { - "x": 15, - "y": 97 - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080207, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2622.849129, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "76", - "y": "5" - }, - { - "x": "85", - "y": "3" - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079448, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2625.197805, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 15, - "y": 97 - }, - { - "x": 7, - "y": 93 - } - ], - "tags": [ - { - "id": 504 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080208, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2625.197805, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "85", - "y": "3" - }, - { - "x": "93", - "y": "7" - } - ], - "tags": [ - { - "id": 503 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079452, - "playerId": 8319, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2627.197824, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 7, - "y": 93 - }, - { - "x": 13, - "y": 100 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079454, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2630.390978, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 13, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190080209, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2667.05054, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "83", - "y": "0" - }, - { - "x": "94", - "y": "32" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079457, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2669.159605, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 6, - "y": 68 - }, - { - "x": 5, - "y": 63 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080210, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2669.159605, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "94", - "y": "32" - }, - { - "x": "95", - "y": "37" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080211, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2670.709589, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": "95", - "y": "37" - }, - { - "x": "94", - "y": "32" - } - ], - "tags": [] - }, - { - "id": 190079460, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2703.197522, - "eventName": 3, - "subEventName": 31, - "positions": [ - { - "x": 9, - "y": 64 - }, - { - "x": 64, - "y": 71 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079461, - "playerId": 8319, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2705.275514, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 64, - "y": 71 - }, - { - "x": 51, - "y": 65 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080212, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2705.275514, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "36", - "y": "29" - }, - { - "x": "49", - "y": "35" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079463, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2707.08125, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 51, - "y": 65 - }, - { - "x": 88, - "y": 62 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079465, - "playerId": 7907, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2714.570017, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 88, - "y": 62 - }, - { - "x": 69, - "y": 59 - } - ], - "tags": [ - { - "id": 502 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080213, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2714.570017, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "12", - "y": "38" - }, - { - "x": "31", - "y": "41" - } - ], - "tags": [ - { - "id": 501 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080214, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2719.520967, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "31", - "y": "41" - }, - { - "x": "58", - "y": "49" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079470, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2721.896174, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 42, - "y": 51 - }, - { - "x": 59, - "y": 38 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079472, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2723.723927, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 59, - "y": 38 - }, - { - "x": 63, - "y": 53 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079475, - "playerId": 7907, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2726.978008, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 63, - "y": 53 - }, - { - "x": 64, - "y": 52 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080215, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2726.978008, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "37", - "y": "47" - }, - { - "x": "36", - "y": "48" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079477, - "playerId": 7907, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2727.657868, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 64, - "y": 52 - }, - { - "x": 71, - "y": 64 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190080216, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2729.723384, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "29", - "y": "36" - }, - { - "x": "48", - "y": "13" - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190079478, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2732.67359, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": 52, - "y": 87 - }, - { - "x": 76, - "y": 62 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190080218, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2734.9457, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "24", - "y": "38" - }, - { - "x": "37", - "y": "49" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080217, - "playerId": 265366, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2735.9814, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": "37", - "y": "49" - }, - { - "x": "39", - "y": "35" - } - ], - "tags": [ - { - "id": 602 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079480, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2736.022805, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": 63, - "y": 51 - }, - { - "x": 61, - "y": 65 - } - ], - "tags": [ - { - "id": 601 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079482, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2738.107953, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 61, - "y": 65 - }, - { - "x": 71, - "y": 95 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079485, - "playerId": 8319, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2744.090698, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 71, - "y": 95 - }, - { - "x": 74, - "y": 85 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080219, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2746.11633, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "26", - "y": "15" - }, - { - "x": "30", - "y": "19" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079487, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2746.86333, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 74, - "y": 85 - }, - { - "x": 70, - "y": 81 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080220, - "playerId": 285508, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2747.161448, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "30", - "y": "19" - }, - { - "x": "35", - "y": "26" - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079489, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2747.795769, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 70, - "y": 81 - }, - { - "x": 65, - "y": 74 - } - ], - "tags": [ - { - "id": 702 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079491, - "playerId": 116, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2749.603555, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 65, - "y": 74 - }, - { - "x": 56, - "y": 65 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079492, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2752.866425, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 56, - "y": 65 - }, - { - "x": 33, - "y": 64 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079493, - "playerId": 14870, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2755.914102, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 33, - "y": 64 - }, - { - "x": 33, - "y": 30 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079494, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2759.405542, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 33, - "y": 30 - }, - { - "x": 42, - "y": 1 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079496, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2760.920608, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 42, - "y": 1 - }, - { - "x": 28, - "y": 4 - } - ], - "tags": [] - }, - { - "id": 190080221, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2766.837748, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "72", - "y": "96" - }, - { - "x": "68", - "y": "98" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079497, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2766.883594, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 28, - "y": 4 - }, - { - "x": 32, - "y": 2 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080222, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2768.30056, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": "68", - "y": "98" - }, - { - "x": "72", - "y": "96" - } - ], - "tags": [ - { - "id": 1702 - } - ] - }, - { - "id": 190079499, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2821.54404, - "eventName": 3, - "subEventName": 31, - "positions": [ - { - "x": 25, - "y": 5 - }, - { - "x": 85, - "y": 14 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190080223, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2825.628618, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "15", - "y": "86" - }, - { - "x": "14", - "y": "52" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080224, - "playerId": 8480, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2834.061242, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": "14", - "y": "52" - }, - { - "x": "89", - "y": "49" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079502, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2838.720505, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 11, - "y": 51 - }, - { - "x": 15, - "y": 62 - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190079504, - "playerId": 8514, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2853.573405, - "eventName": 8, - "subEventName": 84, - "positions": [ - { - "x": 15, - "y": 62 - }, - { - "x": 76, - "y": 93 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190080225, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2860.48955, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "24", - "y": "7" - }, - { - "x": "31", - "y": "38" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080226, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2864.570482, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "31", - "y": "38" - }, - { - "x": "36", - "y": "8" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080227, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2866.638013, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "36", - "y": "8" - }, - { - "x": "55", - "y": "0" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079507, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2871.209539, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 45, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079509, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2888.102535, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": 43, - "y": 100 - }, - { - "x": 69, - "y": 88 - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079510, - "playerId": 7907, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2889.301125, - "eventName": 1, - "subEventName": 11, - "positions": [ - { - "x": 69, - "y": 88 - }, - { - "x": 79, - "y": 93 - } - ], - "tags": [ - { - "id": 602 - }, - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080228, - "playerId": 8653, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2889.301125, - "eventName": 1, - "subEventName": 12, - "positions": [ - { - "x": "31", - "y": "12" - }, - { - "x": "21", - "y": "7" - } - ], - "tags": [ - { - "id": 601 - }, - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079512, - "playerId": 7907, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2892.097679, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 79, - "y": 93 - }, - { - "x": 78, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190079513, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2895.971131, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 78, - "y": 100 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190080229, - "playerId": 350976, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2899.74939, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "29", - "y": "0" - }, - { - "x": "56", - "y": "11" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079514, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2902.091821, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": 44, - "y": 89 - }, - { - "x": 66, - "y": 61 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080230, - "playerId": 8498, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2904.228622, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "34", - "y": "39" - }, - { - "x": "25", - "y": "56" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080231, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2907.793563, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "25", - "y": "56" - }, - { - "x": "57", - "y": "84" - } - ], - "tags": [] - }, - { - "id": 190080232, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2912.282969, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "57", - "y": "84" - }, - { - "x": "62", - "y": "97" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080233, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2914.38403, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "62", - "y": "97" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080234, - "playerId": 12829, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2915.034256, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "71", - "y": "91" - }, - { - "x": "64", - "y": "92" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080235, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2915.900027, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": "64", - "y": "92" - }, - { - "x": "66", - "y": "95" - } - ], - "tags": [] - }, - { - "id": 190079516, - "playerId": 7868, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2917.628279, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": 34, - "y": 5 - }, - { - "x": 41, - "y": 12 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080236, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2918.817503, - "eventName": 8, - "subEventName": 83, - "positions": [ - { - "x": "59", - "y": "88" - }, - { - "x": "85", - "y": "83" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190079518, - "playerId": 25393, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2921.026852, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 15, - "y": 17 - }, - { - "x": 15, - "y": 20 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080237, - "playerId": 119630, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2921.026852, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "85", - "y": "83" - }, - { - "x": "85", - "y": "80" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080238, - "playerId": 119630, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2922.18409, - "eventName": 8, - "subEventName": 82, - "positions": [ - { - "x": "85", - "y": "80" - }, - { - "x": "92", - "y": "69" - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079521, - "playerId": 8319, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2924.628859, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 8, - "y": 31 - }, - { - "x": 27, - "y": 0 - } - ], - "tags": [ - { - "id": 1401 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079522, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2926.734556, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 27, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190080239, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2939.440383, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "76", - "y": "100" - }, - { - "x": "81", - "y": "92" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080240, - "playerId": 285508, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2941.235501, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "81", - "y": "92" - }, - { - "x": "73", - "y": "97" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080241, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2943.016301, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "73", - "y": "97" - }, - { - "x": "69", - "y": "87" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080242, - "playerId": 8488, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2944.669009, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "69", - "y": "87" - }, - { - "x": "79", - "y": "95" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080243, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2947.113585, - "eventName": 8, - "subEventName": 80, - "positions": [ - { - "x": "79", - "y": "95" - }, - { - "x": "89", - "y": "96" - } - ], - "tags": [ - { - "id": 402 - }, - { - "id": 801 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079525, - "playerId": 7964, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2949.141555, - "eventName": 7, - "subEventName": 72, - "positions": [ - { - "x": 19, - "y": 19 - }, - { - "x": 11, - "y": 4 - } - ], - "tags": [ - { - "id": 1401 - } - ] - }, - { - "id": 190079527, - "playerId": 4908, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2951.476805, - "eventName": 7, - "subEventName": 71, - "positions": [ - { - "x": 11, - "y": 4 - }, - { - "x": 29, - "y": 0 - } - ], - "tags": [ - { - "id": 1802 - } - ] - }, - { - "id": 190079528, - "playerId": 0, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2954.090128, - "eventName": 5, - "subEventName": 50, - "positions": [ - { - "x": 29, - "y": 0 - }, - { - "x": 100, - "y": 100 - } - ], - "tags": [] - }, - { - "id": 190080244, - "playerId": 149019, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2956.940653, - "eventName": 3, - "subEventName": 36, - "positions": [ - { - "x": "75", - "y": "100" - }, - { - "x": "73", - "y": "87" - } - ], - "tags": [ - { - "id": 1801 - } - ] - }, - { - "id": 190080245, - "playerId": 285508, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2958.885587, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": "73", - "y": "87" - }, - { - "x": "72", - "y": "86" - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079529, - "playerId": 7868, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2959.112093, - "eventName": 1, - "subEventName": 13, - "positions": [ - { - "x": 27, - "y": 13 - }, - { - "x": 28, - "y": 14 - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190079530, - "playerId": 7868, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2961.352416, - "eventName": 2, - "subEventName": 20, - "positions": [ - { - "x": 28, - "y": 14 - }, - { - "x": 27, - "y": 13 - } - ], - "tags": [] - }, - { - "id": 190080246, - "playerId": 283142, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2993.428163, - "eventName": 3, - "subEventName": 32, - "positions": [ - { - "x": "73", - "y": "83" - }, - { - "x": "88", - "y": "56" - } - ], - "tags": [ - { - "id": 801 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190079533, - "playerId": 257899, - "teamId": 1612, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2994.826943, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": 12, - "y": 44 - } - ], - "tags": [ - { - "id": 703 - }, - { - "id": 1801 - } - ] - }, - { - "id": 190080420, - "playerId": 0, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2994.826943, - "eventName": 1, - "subEventName": 10, - "positions": [ - { - "x": "88", - "y": "56" - }, - { - "x": "82", - "y": "5" - } - ], - "tags": [ - { - "id": 701 - }, - { - "id": 1802 - } - ] - }, - { - "id": 190080247, - "playerId": 119630, - "teamId": 1631, - "matchId": 2499773, - "matchPeriod": "2H", - "eventSec": 2999.70982, - "eventName": 8, - "subEventName": 85, - "positions": [ - { - "x": "82", - "y": "5" - }, - { - "x": "0", - "y": "0" - } - ], - "tags": [ - { - "id": 1802 - } - ] + "coaches": { + "3166": { + "coach": { + "birthArea": { + "alpha2code": "HR", + "alpha3code": "HRV", + "id": 191, + "name": "Croatia" + }, + "birthDate": "1969-02-20", + "currentTeamId": 3166, + "firstName": "Siniša", + "gender": "male", + "gsmId": 110818, + "lastName": "Mihajlović", + "middleName": "", + "passportArea": { + "alpha2code": "RS", + "alpha3code": "SRB", + "id": 688, + "name": "Serbia" + }, + "shortName": "S. Mihajlović", + "status": "active", + "wyId": 210120 + } + }, + "3185": { + "coach": { + "birthArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "birthDate": "1976-02-14", + "currentTeamId": 0, + "firstName": "Moreno", + "gender": "male", + "gsmId": 423455, + "lastName": "Longo", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "shortName": "M. Longo", + "status": "active", + "wyId": 400257 + } + } + }, + "events": [ + { + "id": 663292348, + "location": { + "x": 52, + "y": 47 + }, + "matchId": 2852835, + "matchPeriod": "1H", + "matchTimestamp": "00:00:01.849", + "minute": 0, + "opponentTeam": { + "formation": "4-2-3-1", + "id": 3166, + "name": "Bologna" + }, + "pass": { + "accurate": false, + "angle": -51, + "endLocation": { + "x": 60, + "y": 32 + }, + "length": 13.21, + "recipient": { + "id": 20623, + "name": "R. Soriano", + "position": "AMF" } + }, + "player": { + "id": 21123, + "name": "S. Verdi", + "position": "CF" + }, + "possession": { + "duration": "0.5815605", + "endLocation": { + "x": 40, + "y": 68 + }, + "eventIndex": 0, + "eventsNumber": 1, + "id": 663292348, + "startLocation": { + "x": 52, + "y": 47 + }, + "team": { + "formation": "3-4-3", + "id": 3185, + "name": "Torino" + }, + "types": [] + }, + "relatedEventId": 663291836, + "second": 1, + "team": { + "formation": "3-4-3", + "id": 3185, + "name": "Torino" + }, + "type": { + "primary": "pass", + "secondary": [ + "lateral_pass", + "loss", + "short_or_medium_pass" + ] + }, + "videoTimestamp": "2.849673" + }, + { + "id": 663291836, + "location": { + "x": 40, + "y": 68 + }, + "matchId": 2852835, + "matchPeriod": "1H", + "matchTimestamp": "00:00:03.012", + "minute": 0, + "opponentTeam": { + "formation": "3-4-3", + "id": 3185, + "name": "Torino" + }, + "pass": { + "accurate": true, + "angle": 120, + "endLocation": { + "x": 36, + "y": 78 + }, + "length": 7.99, + "recipient": { + "id": 22377, + "name": "I. M'baye", + "position": "RB" + } + }, + "player": { + "id": 20623, + "name": "R. Soriano", + "position": "AMF" + }, + "possession": { + "attack": { + "flank": "right", + "withGoal": false, + "withShot": false, + "withShotOnGoal": false, + "xg": 0 + }, + "duration": "28.0201355", + "endLocation": { + "x": 83, + "y": 0 + }, + "eventIndex": 0, + "eventsNumber": 14, + "id": 663291836, + "startLocation": { + "x": 40, + "y": 68 + }, + "team": { + "formation": "4-2-3-1", + "id": 3166, + "name": "Bologna" + }, + "types": [ + "attack" + ] + }, + "relatedEventId": 663291837, + "second": 3, + "team": { + "formation": "4-2-3-1", + "id": 3166, + "name": "Bologna" + }, + "type": { + "primary": "interception", + "secondary": [ + "pass", + "recovery", + "counterpressing_recovery", + "short_or_medium_pass" + ] + }, + "videoTimestamp": "4.012794" + }, + { + "id": 663291837, + "location": { + "x": 36, + "y": 78 + }, + "matchId": 2852835, + "matchPeriod": "1H", + "matchTimestamp": "00:00:05.417", + "minute": 0, + "opponentTeam": { + "formation": "3-4-3", + "id": 3185, + "name": "Torino" + }, + "pass": { + "accurate": true, + "angle": -128, + "endLocation": { + "x": 23, + "y": 52 + }, + "length": 22.34, + "recipient": { + "id": 20583, + "name": "Danilo", + "position": "RCB" + } + }, + "player": { + "id": 22377, + "name": "I. M'baye", + "position": "RB" + }, + "possession": { + "attack": { + "flank": "right", + "withGoal": false, + "withShot": false, + "withShotOnGoal": false, + "xg": 0 + }, + "duration": "28.0201355", + "endLocation": { + "x": 83, + "y": 0 + }, + "eventIndex": 1, + "eventsNumber": 14, + "id": 663291836, + "startLocation": { + "x": 40, + "y": 68 + }, + "team": { + "formation": "4-2-3-1", + "id": 3166, + "name": "Bologna" + }, + "types": [ + "attack" + ] + }, + "relatedEventId": 663291838, + "second": 5, + "team": { + "formation": "4-2-3-1", + "id": 3166, + "name": "Bologna" + }, + "type": { + "primary": "pass", + "secondary": [ + "lateral_pass", + "short_or_medium_pass" + ] + }, + "videoTimestamp": "6.417876" + }, + { + "id": 663291838, + "location": { + "x": 23, + "y": 52 + }, + "matchId": 2852835, + "matchPeriod": "1H", + "matchTimestamp": "00:00:07.148", + "minute": 0, + "opponentTeam": { + "formation": "3-4-3", + "id": 3185, + "name": "Torino" + }, + "pass": { + "accurate": true, + "angle": -105, + "endLocation": { + "x": 18, + "y": 23 + }, + "length": 20.41, + "recipient": { + "id": 3473, + "name": "G. Medel", + "position": "LCB" + } + }, + "player": { + "id": 20583, + "name": "Danilo", + "position": "RCB" + }, + "possession": { + "attack": { + "flank": "right", + "withGoal": false, + "withShot": false, + "withShotOnGoal": false, + "xg": 0 + }, + "duration": "28.0201355", + "endLocation": { + "x": 83, + "y": 0 + }, + "eventIndex": 2, + "eventsNumber": 14, + "id": 663291836, + "startLocation": { + "x": 40, + "y": 68 + }, + "team": { + "formation": "4-2-3-1", + "id": 3166, + "name": "Bologna" + }, + "types": [ + "attack" + ] + }, + "relatedEventId": 663291839, + "second": 7, + "team": { + "formation": "4-2-3-1", + "id": 3166, + "name": "Bologna" + }, + "type": { + "primary": "pass", + "secondary": [ + "lateral_pass", + "short_or_medium_pass" + ] + }, + "videoTimestamp": "8.148438" + } + ], + "formations": { + "3166": { + "1H": { + "1": { + "4-2-3-1": { + "endSec": 2947, + "id": 2506765, + "matchPeriod": "1H", + "players": [ + { + "22377": { + "playerId": 22377, + "position": "rb" + } + }, + { + "39": { + "playerId": 39, + "position": "lb" + } + }, + { + "556015": { + "playerId": 556015, + "position": "ramf" + } + }, + { + "21296": { + "playerId": 21296, + "position": "cf" + } + }, + { + "20583": { + "playerId": 20583, + "position": "rcb" + } + }, + { + "439889": { + "playerId": 439889, + "position": "rdmf" + } + }, + { + "20623": { + "playerId": 20623, + "position": "amf" + } + }, + { + "99430": { + "playerId": 99430, + "position": "gk" + } + }, + { + "3473": { + "playerId": 3473, + "position": "lcb" + } + }, + { + "347525": { + "playerId": 347525, + "position": "ldmf" + } + }, + { + "491409": { + "playerId": 491409, + "position": "lamf" + } + } + ], + "scheme": "4-2-3-1", + "startSec": 1 + } + } + }, + "2H": { + "0": { + "4-2-3-1": { + "endSec": 4541, + "id": 2506820, + "matchPeriod": "2H", + "players": [ + { + "20623": { + "playerId": 20623, + "position": "amf" + } + }, + { + "99430": { + "playerId": 99430, + "position": "gk" + } + }, + { + "3473": { + "playerId": 3473, + "position": "lcb" + } + }, + { + "347525": { + "playerId": 347525, + "position": "ldmf" + } + }, + { + "22578": { + "playerId": 22578, + "position": "lamf" + } + }, + { + "22377": { + "playerId": 22377, + "position": "rb" + } + }, + { + "39": { + "playerId": 39, + "position": "lb" + } + }, + { + "556015": { + "playerId": 556015, + "position": "ramf" + } + }, + { + "86316": { + "playerId": 86316, + "position": "cf" + } + }, + { + "20583": { + "playerId": 20583, + "position": "rcb" + } + }, + { + "439889": { + "playerId": 439889, + "position": "rdmf" + } + } + ], + "scheme": "4-2-3-1", + "startSec": 0 + } + }, + "1595": { + "4-1-4-1": { + "endSec": 6440, + "id": 2506833, + "matchPeriod": "2H", + "players": [ + { + "99430": { + "playerId": 99430, + "position": "gk" + } + }, + { + "3473": { + "playerId": 3473, + "position": "lcb" + } + }, + { + "556015": { + "playerId": 556015, + "position": "rw" + } + }, + { + "22578": { + "playerId": 22578, + "position": "lw" + } + }, + { + "22377": { + "playerId": 22377, + "position": "rb" + } + }, + { + "39": { + "playerId": 39, + "position": "lb" + } + }, + { + "20623": { + "playerId": 20623, + "position": "rcmf" + } + }, + { + "86316": { + "playerId": 86316, + "position": "cf" + } + }, + { + "20583": { + "playerId": 20583, + "position": "rcb" + } + }, + { + "496214": { + "playerId": 496214, + "position": "dmf" + } + }, + { + "476177": { + "playerId": 476177, + "position": "lcmf" + } + } + ], + "scheme": "4-1-4-1", + "startSec": 1595 + } + }, + "1899": { + "4-1-4-1": { + "endSec": 7761, + "id": 2506837, + "matchPeriod": "2H", + "players": [ + { + "22377": { + "playerId": 22377, + "position": "rb" + } + }, + { + "39": { + "playerId": 39, + "position": "lb" + } + }, + { + "20623": { + "playerId": 20623, + "position": "rcmf" + } + }, + { + "86316": { + "playerId": 86316, + "position": "cf" + } + }, + { + "20583": { + "playerId": 20583, + "position": "rcb" + } + }, + { + "496214": { + "playerId": 496214, + "position": "dmf" + } + }, + { + "476177": { + "playerId": 476177, + "position": "lcmf" + } + }, + { + "99430": { + "playerId": 99430, + "position": "gk" + } + }, + { + "3473": { + "playerId": 3473, + "position": "lcb" + } + }, + { + "512740": { + "playerId": 512740, + "position": "rw" + } + }, + { + "22578": { + "playerId": 22578, + "position": "lw" + } + } + ], + "scheme": "4-1-4-1", + "startSec": 1899 + } + } + } + }, + "3185": { + "1H": { + "1": { + "3-4-3": { + "endSec": 3216, + "id": 2506814, + "matchPeriod": "1H", + "players": [ + { + "25523": { + "playerId": 25523, + "position": "cb" + } + }, + { + "237269": { + "playerId": 237269, + "position": "rcmf" + } + }, + { + "22202": { + "playerId": 22202, + "position": "rwf" + } + }, + { + "21158": { + "playerId": 21158, + "position": "gk" + } + }, + { + "475319": { + "playerId": 475319, + "position": "lcb3" + } + }, + { + "14903": { + "playerId": 14903, + "position": "lcmf" + } + }, + { + "21123": { + "playerId": 21123, + "position": "cf" + } + }, + { + "22883": { + "playerId": 22883, + "position": "rcb3" + } + }, + { + "339791": { + "playerId": 339791, + "position": "rwb" + } + }, + { + "101742": { + "playerId": 101742, + "position": "lwb" + } + }, + { + "21234": { + "playerId": 21234, + "position": "lwf" + } + } + ], + "scheme": "3-4-3", + "startSec": 1 + } + } + }, + "2H": { + "269": { + "3-4-3": { + "endSec": 4522, + "id": 2506841, + "matchPeriod": "2H", + "players": [ + { + "240378": { + "playerId": 240378, + "position": "lwb" + } + }, + { + "21234": { + "playerId": 21234, + "position": "lwf" + } + }, + { + "25523": { + "playerId": 25523, + "position": "cb" + } + }, + { + "237269": { + "playerId": 237269, + "position": "rcmf" + } + }, + { + "22202": { + "playerId": 22202, + "position": "rwf" + } + }, + { + "21158": { + "playerId": 21158, + "position": "gk" + } + }, + { + "475319": { + "playerId": 475319, + "position": "lcb3" + } + }, + { + "14903": { + "playerId": 14903, + "position": "lcmf" + } + }, + { + "21123": { + "playerId": 21123, + "position": "cf" + } + }, + { + "22883": { + "playerId": 22883, + "position": "rcb3" + } + }, + { + "339791": { + "playerId": 339791, + "position": "rwb" + } + } + ], + "scheme": "3-4-3", + "startSec": 269 + } + }, + "1307": { + "3-4-3": { + "endSec": 6114, + "id": 2506850, + "matchPeriod": "2H", + "players": [ + { + "25523": { + "playerId": 25523, + "position": "cb" + } + }, + { + "237269": { + "playerId": 237269, + "position": "rcmf" + } + }, + { + "22202": { + "playerId": 22202, + "position": "rwf" + } + }, + { + "21158": { + "playerId": 21158, + "position": "gk" + } + }, + { + "475319": { + "playerId": 475319, + "position": "lcb3" + } + }, + { + "14903": { + "playerId": 14903, + "position": "lcmf" + } + }, + { + "21123": { + "playerId": 21123, + "position": "cf" + } + }, + { + "22883": { + "playerId": 22883, + "position": "rcb3" + } + }, + { + "240378": { + "playerId": 240378, + "position": "rwb" + } + }, + { + "339791": { + "playerId": 339791, + "position": "lwb" + } + }, + { + "21234": { + "playerId": 21234, + "position": "lwf" + } + } + ], + "scheme": "3-4-3", + "startSec": 1307 + } + }, + "1861": { + "3-4-3": { + "endSec": 7596, + "id": 2506852, + "matchPeriod": "2H", + "players": [ + { + "21158": { + "playerId": 21158, + "position": "gk" + } + }, + { + "475319": { + "playerId": 475319, + "position": "lcb3" + } + }, + { + "14903": { + "playerId": 14903, + "position": "lcmf" + } + }, + { + "21123": { + "playerId": 21123, + "position": "cf" + } + }, + { + "25523": { + "playerId": 25523, + "position": "rcb3" + } + }, + { + "240378": { + "playerId": 240378, + "position": "rwb" + } + }, + { + "339791": { + "playerId": 339791, + "position": "lwb" + } + }, + { + "21234": { + "playerId": 21234, + "position": "lwf" + } + }, + { + "25558": { + "playerId": 25558, + "position": "cb" + } + }, + { + "237269": { + "playerId": 237269, + "position": "rcmf" + } + }, + { + "22202": { + "playerId": 22202, + "position": "rwf" + } + } + ], + "scheme": "3-4-3", + "startSec": 1861 + } + }, + "2789": { + "3-4-1-2": { + "endSec": 8651, + "id": 2506860, + "matchPeriod": "2H", + "players": [ + { + "14903": { + "playerId": 14903, + "position": "lcmf" + } + }, + { + "22202": { + "playerId": 22202, + "position": "ss" + } + }, + { + "475319": { + "playerId": 475319, + "position": "rcb3" + } + }, + { + "240378": { + "playerId": 240378, + "position": "rwb" + } + }, + { + "339791": { + "playerId": 339791, + "position": "lwb" + } + }, + { + "21234": { + "playerId": 21234, + "position": "cf" + } + }, + { + "25558": { + "playerId": 25558, + "position": "cb" + } + }, + { + "237269": { + "playerId": 237269, + "position": "rcmf" + } + }, + { + "21123": { + "playerId": 21123, + "position": "amf" + } + }, + { + "21158": { + "playerId": 21158, + "position": "gk" + } + }, + { + "626316": { + "playerId": 626316, + "position": "lcb3" + } + } + ], + "scheme": "3-4-1-2", + "startSec": 2789 + } + } + } + } + }, + "match": { + "competitionId": 524, + "date": "August 2, 2020 at 8:45:00 PM GMT+2", + "dateutc": "2020-08-02 18:45:00", + "duration": "Regular", + "gameweek": 38, + "gsmId": -178889, + "hasDataAvailable": true, + "label": "Bologna - Torino, 1 - 1", + "referees": [ + { + "refereeId": 396653, + "role": "referee" + }, + { + "refereeId": 394731, + "role": "firstAssistant" + }, + { + "refereeId": 458270, + "role": "secondAssistant" + }, + { + "refereeId": 377271, + "role": "fourthOfficial" + }, + { + "refereeId": 0, + "role": "firstAdditionalAssistant" + }, + { + "refereeId": 0, + "role": "secondAdditionalAssistant" + } ], - "teams": { - "1612": { - "wyId": 1612, - "gsmId": 663, - "name": "Liverpool", - "officialName": "Liverpool FC", - "city": "Liverpool", - "area": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" + "roundId": 4420465, + "seasonId": 185844, + "status": "Played", + "teamsData": { + "3166": { + "coachId": 210120, + "formation": { + "bench": [ + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 20604, + "redCards": "0", + "shirtNumber": 1, + "yellowCards": "0" }, - "type": "club", - "category": "default", - "gender": "male" - }, - "1631": { - "wyId": 1631, - "gsmId": 682, - "name": "Leicester City", - "officialName": "Leicester City FC", - "city": "Leicester", - "area": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 366296, + "redCards": "0", + "shirtNumber": 97, + "yellowCards": "0" }, - "type": "club", - "category": "default", - "gender": "male" - } - }, - "players": { - "1612": [ { - "playerId": 15808, - "player": { - "wyId": 15808, - "gsmId": 103265, - "shortName": "Roberto Firmino", - "firstName": "Roberto Firmino", - "middleName": "", - "lastName": "Barbosa de Oliveira", - "height": 181, - "weight": 76, - "birthDate": "1991-10-02", - "birthArea": { - "id": "76", - "alpha2code": "BR", - "alpha3code": "BRA", - "name": "Brazil" - }, - "passportArea": { - "id": "76", - "alpha2code": "BR", - "alpha3code": "BRA", - "name": "Brazil" - }, - "role": { - "name": "Forward", - "code2": "FW", - "code3": "FWD" - }, - "foot": "right", - "currentTeamId": 1612, - "gender": "male", - "status": "active" - } + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 373768, + "redCards": "0", + "shirtNumber": 7, + "yellowCards": "0" }, { - "playerId": 18550, - "player": { - "wyId": 18550, - "gsmId": 159872, - "shortName": "E. Can", - "firstName": "Emre", - "middleName": "", - "lastName": "Can", - "height": 184, - "weight": 82, - "birthDate": "1994-01-12", - "birthArea": { - "id": "276", - "alpha2code": "DE", - "alpha3code": "DEU", - "name": "Germany" - }, - "passportArea": { - "id": "792", - "alpha2code": "TR", - "alpha3code": "TUR", - "name": "Turkey" - }, - "role": { - "name": "Midfielder", - "code2": "MD", - "code3": "MID" - }, - "foot": "right", - "currentTeamId": 1612, - "gender": "male", - "status": "active" - } + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 20529, + "redCards": "0", + "shirtNumber": 16, + "yellowCards": "0" }, { - "playerId": 3802, - "player": { - "wyId": 3802, - "gsmId": 82507, - "shortName": "Philippe Coutinho", - "firstName": "Philippe", - "middleName": "", - "lastName": "Coutinho Correia", - "height": 171, - "weight": 68, - "birthDate": "1992-06-12", - "birthArea": { - "id": "76", - "alpha2code": "BR", - "alpha3code": "BRA", - "name": "Brazil" - }, - "passportArea": { - "id": "76", - "alpha2code": "BR", - "alpha3code": "BRA", - "name": "Brazil" - }, - "role": { - "name": "Forward", - "code2": "FW", - "code3": "FWD" - }, - "foot": "right", - "currentTeamId": 1612, - "gender": "male", - "status": "active" - } + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 536800, + "redCards": "0", + "shirtNumber": 29, + "yellowCards": "0" }, { - "playerId": 25393, - "player": { - "wyId": 25393, - "gsmId": 55819, - "shortName": "D. Lovren", - "firstName": "Dejan", - "middleName": "", - "lastName": "Lovren", - "height": 188, - "weight": 84, - "birthDate": "1989-07-05", - "birthArea": { - "id": "191", - "alpha2code": "HR", - "alpha3code": "HRV", - "name": "Croatia" - }, - "passportArea": { - "id": "191", - "alpha2code": "HR", - "alpha3code": "HRV", - "name": "Croatia" - }, - "role": { - "name": "Defender", - "code2": "DF", - "code3": "DEF" - }, - "foot": "right", - "currentTeamId": 1612, - "gender": "male", - "status": "active" - } + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 532549, + "redCards": "0", + "shirtNumber": 6, + "yellowCards": "0" }, { - "playerId": 14870, - "player": { - "wyId": 14870, - "gsmId": 101189, - "shortName": "J. Matip", - "firstName": "Joël Andre", - "middleName": "", - "lastName": "Job Matip", - "height": 195, - "weight": 90, - "birthDate": "1991-08-08", - "birthArea": { - "id": "276", - "alpha2code": "DE", - "alpha3code": "DEU", - "name": "Germany" - }, - "passportArea": { - "id": "120", - "alpha2code": "CM", - "alpha3code": "CMR", - "name": "Cameroon" - }, - "role": { - "name": "Defender", - "code2": "DF", - "code3": "DEF" - }, - "foot": "right", - "currentTeamId": 1612, - "gender": "male", - "status": "active" - } + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 496671, + "redCards": "0", + "shirtNumber": 25, + "yellowCards": "0" }, { - "playerId": 116, - "player": { - "wyId": 116, - "gsmId": 8828, - "shortName": "G. Wijnaldum", - "firstName": "Georginio", - "middleName": "", - "lastName": "Wijnaldum", - "height": 175, - "weight": 74, - "birthDate": "1990-11-11", - "birthArea": { - "id": "528", - "alpha2code": "NL", - "alpha3code": "NLD", - "name": "Netherlands" - }, - "passportArea": { - "id": "740", - "alpha2code": "SR", - "alpha3code": "SUR", - "name": "Suriname" - }, - "role": { - "name": "Midfielder", - "code2": "MD", - "code3": "MID" - }, - "foot": "right", - "currentTeamId": 1612, - "gender": "male", - "status": "active" - } + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 22578, + "redCards": "0", + "shirtNumber": 10, + "yellowCards": "0" }, { - "playerId": 257899, - "player": { - "wyId": 257899, - "gsmId": 290182, - "shortName": "J. Gomez", - "firstName": "Joe", - "middleName": "", - "lastName": "Gomez", - "height": 188, - "weight": 77, - "birthDate": "1997-05-23", - "birthArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "passportArea": { - "id": "270", - "alpha2code": "GM", - "alpha3code": "GMB", - "name": "Gambia" - }, - "role": { - "name": "Defender", - "code2": "DF", - "code3": "DEF" - }, - "foot": "right", - "currentTeamId": 1612, - "gender": "male", - "status": "active" - } + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 86316, + "redCards": "0", + "shirtNumber": 9, + "yellowCards": "74" }, { - "playerId": 7964, - "player": { - "wyId": 7964, - "gsmId": 48010, - "shortName": "J. Henderson", - "firstName": "Jordan Brian", - "middleName": "", - "lastName": "Henderson", - "height": 182, - "weight": 67, - "birthDate": "1990-06-17", - "birthArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "passportArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "role": { - "name": "Midfielder", - "code2": "MD", - "code3": "MID" - }, - "foot": "right", - "currentTeamId": 1612, - "gender": "male", - "status": "active" - } + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 476177, + "redCards": "0", + "shirtNumber": 34, + "yellowCards": "0" }, { - "playerId": 8514, - "player": { - "wyId": 8514, - "gsmId": 13465, - "shortName": "S. Mignolet", - "firstName": "Simon", - "middleName": "", - "lastName": "Mignolet", - "height": 193, - "weight": 87, - "birthDate": "1988-03-06", - "birthArea": { - "id": "56", - "alpha2code": "BE", - "alpha3code": "BEL", - "name": "Belgium" - }, - "passportArea": { - "id": "56", - "alpha2code": "BE", - "alpha3code": "BEL", - "name": "Belgium" - }, - "role": { - "name": "Goalkeeper", - "code2": "GK", - "code3": "GKP" - }, - "foot": "right", - "currentTeamId": 1612, - "gender": "male", - "status": "active" - } + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 512740, + "redCards": "0", + "shirtNumber": 17, + "yellowCards": "0" }, { - "playerId": 120353, - "player": { - "wyId": 120353, - "gsmId": 138653, - "shortName": "Mohamed Salah", - "firstName": "Mohamed ", - "middleName": "", - "lastName": "Salah Ghaly", - "height": 175, - "weight": 72, - "birthDate": "1992-06-15", - "birthArea": { - "id": "818", - "alpha2code": "EG", - "alpha3code": "EGY", - "name": "Egypt" - }, - "passportArea": { - "id": "818", - "alpha2code": "EG", - "alpha3code": "EGY", - "name": "Egypt" - }, - "role": { - "name": "Forward", - "code2": "FW", - "code3": "FWD" - }, - "foot": "left", - "currentTeamId": 1612, - "gender": "male", - "status": "active" - } + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 496214, + "redCards": "0", + "shirtNumber": 8, + "yellowCards": "0" + } + ], + "lineup": [ + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 21296, + "redCards": "0", + "shirtNumber": 24, + "yellowCards": "0" }, { - "playerId": 4908, - "player": { - "wyId": 4908, - "gsmId": 192742, - "shortName": "Alberto Moreno", - "firstName": "Alberto", - "middleName": "", - "lastName": "Moreno Pérez", - "height": 171, - "weight": 65, - "birthDate": "1992-07-05", - "birthArea": { - "id": "724", - "alpha2code": "ES", - "alpha3code": "ESP", - "name": "Spain" - }, - "passportArea": { - "id": "724", - "alpha2code": "ES", - "alpha3code": "ESP", - "name": "Spain" - }, - "role": { - "name": "Defender", - "code2": "DF", - "code3": "DEF" - }, - "foot": "left", - "currentTeamId": 1612, - "gender": "male", - "status": "active" - } + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 491409, + "redCards": "0", + "shirtNumber": 99, + "yellowCards": "0" }, { - "playerId": 74, - "player": { - "wyId": 74, - "gsmId": 2324, - "shortName": "R. Klavan", - "firstName": "Ragnar", - "middleName": "", - "lastName": "Klavan", - "height": 187, - "weight": 85, - "birthDate": "1985-10-30", - "birthArea": { - "id": "233", - "alpha2code": "EE", - "alpha3code": "EST", - "name": "Estonia" - }, - "passportArea": { - "id": "233", - "alpha2code": "EE", - "alpha3code": "EST", - "name": "Estonia" - }, - "role": { - "name": "Defender", - "code2": "DF", - "code3": "DEF" - }, - "foot": "left", - "currentTeamId": 1612, - "gender": "male", - "status": "active" - } + "assists": "0", + "goals": "1", + "ownGoals": "0", + "playerId": 347525, + "redCards": "0", + "shirtNumber": 32, + "yellowCards": "0" }, { - "playerId": 286831, - "player": { - "wyId": 286831, - "gsmId": 320283, - "shortName": "D. Solanke", - "firstName": "Dominic", - "middleName": "", - "lastName": "Solanke", - "height": 185, - "weight": 75, - "birthDate": "1997-09-14", - "birthArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "passportArea": { - "id": "566", - "alpha2code": "NG", - "alpha3code": "NGA", - "name": "Nigeria" - }, - "role": { - "name": "Forward", - "code2": "FW", - "code3": "FWD" - }, - "foot": "right", - "currentTeamId": 1612, - "gender": "male", - "status": "active" - } + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 439889, + "redCards": "0", + "shirtNumber": 30, + "yellowCards": "0" }, { - "playerId": 346101, - "player": { - "wyId": 346101, - "gsmId": 376875, - "shortName": "T. Alexander-Arnold", - "firstName": "Trent", - "middleName": "", - "lastName": "Alexander-Arnold", - "height": 175, - "weight": 69, - "birthDate": "1998-10-07", - "birthArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "passportArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "role": { - "name": "Defender", - "code2": "DF", - "code3": "DEF" - }, - "foot": "right", - "currentTeamId": 1612, - "gender": "male", - "status": "active" - } + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 556015, + "redCards": "0", + "shirtNumber": 26, + "yellowCards": "0" }, { - "playerId": 15175, - "player": { - "wyId": 15175, - "gsmId": 205201, - "shortName": "L. Karius", - "firstName": "Loris", - "middleName": "", - "lastName": "Karius", - "height": 190, - "weight": 87, - "birthDate": "1993-06-22", - "birthArea": { - "id": "276", - "alpha2code": "DE", - "alpha3code": "DEU", - "name": "Germany" - }, - "passportArea": { - "id": "276", - "alpha2code": "DE", - "alpha3code": "DEU", - "name": "Germany" - }, - "role": { - "name": "Goalkeeper", - "code2": "GK", - "code3": "GKP" - }, - "foot": "right", - "currentTeamId": 1612, - "gender": "male", - "status": "active" - } + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 3473, + "redCards": "0", + "shirtNumber": 5, + "yellowCards": "83" }, { - "playerId": 8319, - "player": { - "wyId": 8319, - "gsmId": 2899, - "shortName": "J. Milner", - "firstName": "James Philip", - "middleName": "", - "lastName": "Milner", - "height": 176, - "weight": 70, - "birthDate": "1986-01-04", - "birthArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "passportArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "role": { - "name": "Midfielder", - "code2": "MD", - "code3": "MID" - }, - "foot": "right", - "currentTeamId": 1612, - "gender": "male", - "status": "active" - } + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 20583, + "redCards": "0", + "shirtNumber": 23, + "yellowCards": "0" }, { - "playerId": 7907, - "player": { - "wyId": 7907, - "gsmId": 5206, - "shortName": "D. Sturridge", - "firstName": "Daniel Andre", - "middleName": "", - "lastName": "Sturridge", - "height": 180, - "weight": 76, - "birthDate": "1989-09-01", - "birthArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "passportArea": { - "id": "388", - "alpha2code": "JM", - "alpha3code": "JAM", - "name": "Jamaica" - }, - "role": { - "name": "Forward", - "code2": "FW", - "code3": "FWD" - }, - "foot": "left", - "currentTeamId": 1612, - "gender": "male", - "status": "active" - } + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 22377, + "redCards": "0", + "shirtNumber": 15, + "yellowCards": "0" }, { - "playerId": 7868, - "player": { - "wyId": 7868, - "gsmId": 120695, - "shortName": "A. Oxlade-Chamberlain", - "firstName": "Alex", - "middleName": "", - "lastName": "Oxlade-Chamberlain", - "height": 175, - "weight": 70, - "birthDate": "1993-08-15", - "birthArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "passportArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "role": { - "name": "Midfielder", - "code2": "MD", - "code3": "MID" - }, - "foot": "right", - "currentTeamId": 1612, - "gender": "male", - "status": "active" - } + "assists": "1", + "goals": "0", + "ownGoals": "0", + "playerId": 20623, + "redCards": "0", + "shirtNumber": 21, + "yellowCards": "78" + }, + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 99430, + "redCards": "0", + "shirtNumber": 28, + "yellowCards": "0" + }, + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 39, + "redCards": "0", + "shirtNumber": 4, + "yellowCards": "0" } - ], - "1631": [ + ], + "substitutions": [ { - "playerId": 26150, - "player": { - "wyId": 26150, - "gsmId": 156662, - "shortName": "R. Mahrez", - "firstName": "Riyad", - "middleName": "", - "lastName": "Mahrez", - "height": 179, - "weight": 62, - "birthDate": "1991-02-21", - "birthArea": { - "id": "250", - "alpha2code": "FR", - "alpha3code": "FRA", - "name": "France" - }, - "passportArea": { - "id": "12", - "alpha2code": "DZ", - "alpha3code": "DZA", - "name": "Algeria" - }, - "role": { - "name": "Midfielder", - "code2": "MD", - "code3": "MID" - }, - "foot": "left", - "currentTeamId": 1631, - "gender": "male", - "status": "active" - } + "assists": "0", + "minute": 48, + "playerIn": 22578, + "playerOut": 21296 }, { - "playerId": 14763, - "player": { - "wyId": 14763, - "gsmId": 5724, - "shortName": "S. Okazaki", - "firstName": "Shinji", - "middleName": "", - "lastName": "Okazaki", - "height": 174, - "weight": 70, - "birthDate": "1986-04-16", - "birthArea": { - "id": "392", - "alpha2code": "JP", - "alpha3code": "JPN", - "name": "Japan" - }, - "passportArea": { - "id": "392", - "alpha2code": "JP", - "alpha3code": "JPN", - "name": "Japan" - }, - "role": { - "name": "Forward", - "code2": "FW", - "code3": "FWD" - }, - "foot": "right", - "currentTeamId": 1631, - "gender": "male", - "status": "active" - } + "assists": "0", + "minute": 48, + "playerIn": 86316, + "playerOut": 491409 }, { - "playerId": 8013, - "player": { - "wyId": 8013, - "gsmId": 73931, - "shortName": "M. Albrighton", - "firstName": "Marc", - "middleName": "", - "lastName": "Albrighton", - "height": 174, - "weight": 67, - "birthDate": "1989-11-18", - "birthArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "passportArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "role": { - "name": "Midfielder", - "code2": "MD", - "code3": "MID" - }, - "foot": "right", - "currentTeamId": 1631, - "gender": "male", - "status": "active" - } + "assists": "0", + "minute": 71, + "playerIn": 476177, + "playerOut": 347525 }, { - "playerId": 8480, - "player": { - "wyId": 8480, - "gsmId": 2841, - "shortName": "K. Schmeichel", - "firstName": "Kasper", - "middleName": "", - "lastName": "Schmeichel", - "height": 185, - "weight": 76, - "birthDate": "1986-11-05", - "birthArea": { - "id": "208", - "alpha2code": "DK", - "alpha3code": "DNK", - "name": "Denmark" - }, - "passportArea": { - "id": "208", - "alpha2code": "DK", - "alpha3code": "DNK", - "name": "Denmark" - }, - "role": { - "name": "Goalkeeper", - "code2": "GK", - "code3": "GKP" - }, - "foot": "right", - "currentTeamId": 1631, - "gender": "male", - "status": "active" - } + "assists": "0", + "minute": 71, + "playerIn": 496214, + "playerOut": 439889 }, { - "playerId": 8653, - "player": { - "wyId": 8653, - "gsmId": 182047, - "shortName": "H. Maguire", - "firstName": "Harry ", - "middleName": "", - "lastName": "Maguire", - "height": 188, - "weight": 79, - "birthDate": "1993-03-05", - "birthArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "passportArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "role": { - "name": "Defender", - "code2": "DF", - "code3": "DEF" - }, - "foot": "right", - "currentTeamId": 1631, - "gender": "male", - "status": "active" - } + "assists": "0", + "minute": 76, + "playerIn": 512740, + "playerOut": 556015 + } + ] + }, + "hasFormation": 1, + "score": 1, + "scoreET": 0, + "scoreHT": 1, + "scoreP": 0, + "side": "home", + "teamId": 3166 + }, + "3185": { + "coachId": 400257, + "formation": { + "bench": [ + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 25421, + "redCards": "0", + "shirtNumber": 39, + "yellowCards": "0" }, { - "playerId": 149019, - "player": { - "wyId": 149019, - "gsmId": 20278, - "shortName": "D. Simpson", - "firstName": "Danny", - "middleName": "", - "lastName": "Simpson", - "height": 177, - "weight": 78, - "birthDate": "1987-01-04", - "birthArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "passportArea": { - "id": "388", - "alpha2code": "JM", - "alpha3code": "JAM", - "name": "Jamaica" - }, - "role": { - "name": "Defender", - "code2": "DF", - "code3": "DEF" - }, - "foot": "right", - "currentTeamId": 1631, - "gender": "male", - "status": "active" - } + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 481140, + "redCards": "0", + "shirtNumber": 45, + "yellowCards": "0" }, { - "playerId": 8498, - "player": { - "wyId": 8498, - "gsmId": 20816, - "shortName": "A. King", - "firstName": "Andy", - "middleName": "", - "lastName": "King", - "height": 183, - "weight": 75, - "birthDate": "1988-10-29", - "birthArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "passportArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XWA", - "name": "Wales" - }, - "role": { - "name": "Midfielder", - "code2": "MD", - "code3": "MID" - }, - "foot": "right", - "currentTeamId": 1631, - "gender": "male", - "status": "active" - } + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 501457, + "redCards": "0", + "shirtNumber": 27, + "yellowCards": "0" }, { - "playerId": 8488, - "player": { - "wyId": 8488, - "gsmId": 47493, - "shortName": "W. Morgan", - "firstName": "Wes", - "middleName": "", - "lastName": "Morgan", - "height": 185, - "weight": 93, - "birthDate": "1984-01-21", - "birthArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "passportArea": { - "id": "388", - "alpha2code": "JM", - "alpha3code": "JAM", - "name": "Jamaica" - }, - "role": { - "name": "Defender", - "code2": "DF", - "code3": "DEF" - }, - "foot": "right", - "currentTeamId": 1631, - "gender": "male", - "status": "active" - } + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 545358, + "redCards": "0", + "shirtNumber": 44, + "yellowCards": "0" }, { - "playerId": 265366, - "player": { - "wyId": 265366, - "gsmId": 298168, - "shortName": "O. Ndidi", - "firstName": "Onyinye Wilfred", - "middleName": "", - "lastName": "Ndidi", - "height": 187, - "weight": 80, - "birthDate": "1996-12-16", - "birthArea": { - "id": "566", - "alpha2code": "NG", - "alpha3code": "NGA", - "name": "Nigeria" - }, - "passportArea": { - "id": "566", - "alpha2code": "NG", - "alpha3code": "NGA", - "name": "Nigeria" - }, - "role": { - "name": "Midfielder", - "code2": "MD", - "code3": "MID" - }, - "foot": "right", - "currentTeamId": 1631, - "gender": "male", - "status": "active" - } + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 551857, + "redCards": "0", + "shirtNumber": 56, + "yellowCards": "0" }, { - "playerId": 350976, - "player": { - "wyId": 350976, - "gsmId": 383419, - "shortName": "B. Chilwell", - "firstName": "Ben", - "middleName": "", - "lastName": "Chilwell", - "height": 178, - "weight": 71, - "birthDate": "1996-12-21", - "birthArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "passportArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "role": { - "name": "Defender", - "code2": "DF", - "code3": "DEF" - }, - "foot": "left", - "currentTeamId": 1631, - "gender": "male", - "status": "active" - } + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 21547, + "redCards": "0", + "shirtNumber": 18, + "yellowCards": "0" }, { - "playerId": 12829, - "player": { - "wyId": 12829, - "gsmId": 159732, - "shortName": "J. Vardy", - "firstName": "Jamie", - "middleName": "", - "lastName": "Vardy", - "height": 178, - "weight": 76, - "birthDate": "1987-01-11", - "birthArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "passportArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "role": { - "name": "Forward", - "code2": "FW", - "code3": "FWD" - }, - "foot": "right", - "currentTeamId": 1631, - "gender": "male", - "status": "active" - } + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 536792, + "redCards": "0", + "shirtNumber": 19, + "yellowCards": "0" }, { - "playerId": 14853, - "player": { - "wyId": 14853, - "gsmId": 11180, - "shortName": "C. Fuchs", - "firstName": "Christian", - "middleName": "", - "lastName": "Fuchs", - "height": 186, - "weight": 80, - "birthDate": "1986-04-07", - "birthArea": { - "id": "40", - "alpha2code": "AT", - "alpha3code": "AUT", - "name": "Austria" - }, - "passportArea": { - "id": "40", - "alpha2code": "AT", - "alpha3code": "AUT", - "name": "Austria" - }, - "role": { - "name": "Defender", - "code2": "DF", - "code3": "DEF" - }, - "foot": "left", - "currentTeamId": 1631, - "gender": "male", - "status": "active" - } + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 562846, + "redCards": "0", + "shirtNumber": 80, + "yellowCards": "0" }, { - "playerId": 217078, - "player": { - "wyId": 217078, - "gsmId": 250541, - "shortName": "D. Amartey", - "firstName": "Daniel", - "middleName": "", - "lastName": "Amartey", - "height": 183, - "weight": 78, - "birthDate": "1994-12-21", - "birthArea": { - "id": "288", - "alpha2code": "GH", - "alpha3code": "GHA", - "name": "Ghana" - }, - "passportArea": { - "id": "288", - "alpha2code": "GH", - "alpha3code": "GHA", - "name": "Ghana" - }, - "role": { - "name": "Midfielder", - "code2": "MD", - "code3": "MID" - }, - "foot": "right", - "currentTeamId": 1631, - "gender": "male", - "status": "active" - } + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 354552, + "redCards": "0", + "shirtNumber": 20, + "yellowCards": "0" }, { - "playerId": 3928, - "player": { - "wyId": 3928, - "gsmId": 21190, - "shortName": "Iborra", - "firstName": "Vicente", - "middleName": "", - "lastName": "Iborra De La Fuente", - "height": 195, - "weight": 88, - "birthDate": "1988-01-16", - "birthArea": { - "id": "724", - "alpha2code": "ES", - "alpha3code": "ESP", - "name": "Spain" - }, - "passportArea": { - "id": "724", - "alpha2code": "ES", - "alpha3code": "ESP", - "name": "Spain" - }, - "role": { - "name": "Midfielder", - "code2": "MD", - "code3": "MID" - }, - "foot": "right", - "currentTeamId": 1631, - "gender": "male", - "status": "active" - } + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 240378, + "redCards": "0", + "shirtNumber": 34, + "yellowCards": "0" }, { - "playerId": 8066, - "player": { - "wyId": 8066, - "gsmId": 50408, - "shortName": "B. Hamer", - "firstName": "Ben", - "middleName": "", - "lastName": "Hamer", - "height": 193, - "weight": 78, - "birthDate": "1987-11-20", - "birthArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "passportArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "role": { - "name": "Goalkeeper", - "code2": "GK", - "code3": "GKP" - }, - "foot": "right", - "currentTeamId": 1631, - "gender": "male", - "status": "active" - } + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 25558, + "redCards": "0", + "shirtNumber": 33, + "yellowCards": "0" }, { - "playerId": 119630, - "player": { - "wyId": 119630, - "gsmId": 89404, - "shortName": "I. Slimani", - "firstName": "Islam", - "middleName": "", - "lastName": "Slimani", - "height": 188, - "weight": 79, - "birthDate": "1988-06-18", - "birthArea": { - "id": "12", - "alpha2code": "DZ", - "alpha3code": "DZA", - "name": "Algeria" - }, - "passportArea": { - "id": "12", - "alpha2code": "DZ", - "alpha3code": "DZA", - "name": "Algeria" - }, - "role": { - "name": "Forward", - "code2": "FW", - "code3": "FWD" - }, - "foot": "right", - "currentTeamId": 1631, - "gender": "male", - "status": "active" - } + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 626316, + "redCards": "0", + "shirtNumber": 77, + "yellowCards": "0" + } + ], + "lineup": [ + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 101742, + "redCards": "0", + "shirtNumber": 15, + "yellowCards": "47" }, { - "playerId": 285508, - "player": { - "wyId": 285508, - "gsmId": 319119, - "shortName": "K. Iheanacho", - "firstName": "Kelechi Promise", - "middleName": "", - "lastName": "Iheanacho", - "height": 187, - "weight": 77, - "birthDate": "1996-10-03", - "birthArea": { - "id": "566", - "alpha2code": "NG", - "alpha3code": "NGA", - "name": "Nigeria" - }, - "passportArea": { - "id": "566", - "alpha2code": "NG", - "alpha3code": "NGA", - "name": "Nigeria" - }, - "role": { - "name": "Forward", - "code2": "FW", - "code3": "FWD" - }, - "foot": "left", - "currentTeamId": 1631, - "gender": "male", - "status": "active" - } + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 22883, + "redCards": "0", + "shirtNumber": 5, + "yellowCards": "0" }, { - "playerId": 283142, - "player": { - "wyId": 283142, - "gsmId": 317144, - "shortName": "D. Gray", - "firstName": "Demarai", - "middleName": "", - "lastName": "Gray", - "height": 179, - "weight": 66, - "birthDate": "1996-06-28", - "birthArea": { - "id": "0", - "alpha2code": "", - "alpha3code": "XEN", - "name": "England" - }, - "passportArea": { - "id": "388", - "alpha2code": "JM", - "alpha3code": "JAM", - "name": "Jamaica" - }, - "role": { - "name": "Forward", - "code2": "FW", - "code3": "FWD" - }, - "foot": "right", - "currentTeamId": 1631, - "gender": "male", - "status": "active" - } + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 475319, + "redCards": "0", + "shirtNumber": 36, + "yellowCards": "0" + }, + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 237269, + "redCards": "0", + "shirtNumber": 7, + "yellowCards": "0" + }, + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 21158, + "redCards": "0", + "shirtNumber": 25, + "yellowCards": "0" + }, + { + "assists": "0", + "goals": "1", + "ownGoals": "0", + "playerId": 22202, + "redCards": "0", + "shirtNumber": 11, + "yellowCards": "0" + }, + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 21234, + "redCards": "0", + "shirtNumber": 9, + "yellowCards": "0" + }, + { + "assists": "1", + "goals": "0", + "ownGoals": "0", + "playerId": 21123, + "redCards": "0", + "shirtNumber": 24, + "yellowCards": "0" + }, + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 339791, + "redCards": "0", + "shirtNumber": 21, + "yellowCards": "60" + }, + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 14903, + "redCards": "0", + "shirtNumber": 88, + "yellowCards": "56" + }, + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 25523, + "redCards": "0", + "shirtNumber": 30, + "yellowCards": "0" } - ] + ], + "substitutions": [ + { + "assists": "0", + "minute": 50, + "playerIn": 240378, + "playerOut": 101742 + }, + { + "assists": "0", + "minute": 76, + "playerIn": 25558, + "playerOut": 22883 + }, + { + "assists": "0", + "minute": 92, + "playerIn": 626316, + "playerOut": 25523 + } + ] + }, + "hasFormation": 1, + "score": 1, + "scoreET": 0, + "scoreHT": 0, + "scoreP": 0, + "side": "away", + "teamId": 3185 + } + }, + "winner": 0, + "wyId": 2852835 + }, + "players": { + "3166": [ + { + "player": { + "birthArea": { + "alpha2code": "AR", + "alpha3code": "ARG", + "id": 32, + "name": "Argentina" + }, + "birthDate": "1982-02-05", + "currentTeamId": 3166, + "firstName": "Rodrigo Sebastián", + "foot": "right", + "gender": "male", + "gsmId": 114, + "height": 176, + "lastName": "Palacio", + "middleName": "", + "passportArea": { + "alpha2code": "ES", + "alpha3code": "ESP", + "id": 724, + "name": "Spain" + }, + "role": { + "code2": "FW", + "code3": "FWD", + "name": "Forward" + }, + "shortName": "R. Palacio", + "status": "active", + "weight": 70, + "wyId": 21296 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "GM", + "alpha3code": "GMB", + "id": 270, + "name": "Gambia" + }, + "birthDate": "1998-11-14", + "currentNationalTeamId": 18728, + "currentTeamId": 3166, + "firstName": "Musa", + "foot": "right", + "gender": "male", + "gsmId": -52062, + "height": 183, + "lastName": "Barrow", + "middleName": "", + "passportArea": { + "alpha2code": "GM", + "alpha3code": "GMB", + "id": 270, + "name": "Gambia" + }, + "role": { + "code2": "FW", + "code3": "FWD", + "name": "Forward" + }, + "shortName": "Musa Barrow", + "status": "active", + "weight": 77, + "wyId": 491409 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "SE", + "alpha3code": "SWE", + "id": 752, + "name": "Sweden" + }, + "birthDate": "1999-01-05", + "currentNationalTeamId": 7047, + "currentTeamId": 3166, + "firstName": "Mattias", + "foot": "right", + "gender": "male", + "gsmId": 377463, + "height": 185, + "lastName": "Svanberg", + "middleName": "", + "passportArea": { + "alpha2code": "SE", + "alpha3code": "SWE", + "id": 752, + "name": "Sweden" + }, + "role": { + "code2": "MD", + "code3": "MID", + "name": "Midfielder" + }, + "shortName": "M. Svanberg", + "status": "active", + "weight": 77, + "wyId": 347525 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "NL", + "alpha3code": "NLD", + "id": 528, + "name": "Netherlands" + }, + "birthDate": "1997-01-12", + "currentTeamId": 3166, + "firstName": "Jerdy", + "foot": "right", + "gender": "male", + "gsmId": 448432, + "height": 185, + "lastName": "Schouten", + "middleName": "", + "passportArea": { + "alpha2code": "NL", + "alpha3code": "NLD", + "id": 528, + "name": "Netherlands" + }, + "role": { + "code2": "MD", + "code3": "MID", + "name": "Midfielder" + }, + "shortName": "J. Schouten", + "status": "active", + "weight": 72, + "wyId": 439889 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "GM", + "alpha3code": "GMB", + "id": 270, + "name": "Gambia" + }, + "birthDate": "2001-12-26", + "currentTeamId": 9613, + "firstName": "Musa", + "foot": "left", + "gender": "male", + "gsmId": -70602, + "height": 170, + "lastName": "Juwara", + "middleName": "", + "passportArea": { + "alpha2code": "GM", + "alpha3code": "GMB", + "id": 270, + "name": "Gambia" + }, + "role": { + "code2": "FW", + "code3": "FWD", + "name": "Forward" + }, + "shortName": "M. Juwara", + "status": "active", + "weight": 60, + "wyId": 556015 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "CL", + "alpha3code": "CHL", + "id": 152, + "name": "Chile" + }, + "birthDate": "1987-08-03", + "currentNationalTeamId": 12381, + "currentTeamId": 3166, + "firstName": "Gary Alexis", + "foot": "right", + "gender": "male", + "gsmId": 21790, + "height": 171, + "lastName": "Medel Soto", + "middleName": "", + "passportArea": { + "alpha2code": "CL", + "alpha3code": "CHL", + "id": 152, + "name": "Chile" + }, + "role": { + "code2": "DF", + "code3": "DEF", + "name": "Defender" + }, + "shortName": "G. Medel", + "status": "active", + "weight": 65, + "wyId": 3473 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "BR", + "alpha3code": "BRA", + "id": 76, + "name": "Brazil" + }, + "birthDate": "1984-05-10", + "currentTeamId": 3166, + "firstName": "Danilo", + "foot": "right", + "gender": "male", + "gsmId": 9001, + "height": 185, + "lastName": "Larangeira", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "role": { + "code2": "DF", + "code3": "DEF", + "name": "Defender" + }, + "shortName": "Danilo", + "status": "active", + "weight": 80, + "wyId": 20583 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "SN", + "alpha3code": "SEN", + "id": 686, + "name": "Senegal" + }, + "birthDate": "1994-11-19", + "currentTeamId": 3166, + "firstName": "Ibrahima", + "foot": "right", + "gender": "male", + "gsmId": 221800, + "height": 188, + "lastName": "M'baye", + "middleName": "", + "passportArea": { + "alpha2code": "SN", + "alpha3code": "SEN", + "id": 686, + "name": "Senegal" + }, + "role": { + "code2": "DF", + "code3": "DEF", + "name": "Defender" + }, + "shortName": "I. M'baye", + "status": "active", + "weight": 70, + "wyId": 22377 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "DE", + "alpha3code": "DEU", + "id": 276, + "name": "Germany" + }, + "birthDate": "1991-02-08", + "currentTeamId": 3166, + "firstName": "Roberto", + "foot": "right", + "gender": "male", + "gsmId": 72309, + "height": 182, + "lastName": "Soriano", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "role": { + "code2": "MD", + "code3": "MID", + "name": "Midfielder" + }, + "shortName": "R. Soriano", + "status": "active", + "weight": 76, + "wyId": 20623 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "PL", + "alpha3code": "POL", + "id": 616, + "name": "Poland" + }, + "birthDate": "1991-05-05", + "currentNationalTeamId": 13869, + "currentTeamId": 3166, + "firstName": "Łukasz", + "foot": "right", + "gender": "male", + "gsmId": 67190, + "height": 187, + "lastName": "Skorupski", + "middleName": "", + "passportArea": { + "alpha2code": "PL", + "alpha3code": "POL", + "id": 616, + "name": "Poland" + }, + "role": { + "code2": "GK", + "code3": "GKP", + "name": "Goalkeeper" + }, + "shortName": "Ł. Skorupski", + "status": "active", + "weight": 84, + "wyId": 99430 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "NL", + "alpha3code": "NLD", + "id": 528, + "name": "Netherlands" + }, + "birthDate": "1993-05-07", + "currentTeamId": 3166, + "firstName": "Stefano", + "foot": "left", + "gender": "male", + "gsmId": 191101, + "height": 185, + "lastName": "Denswil", + "middleName": "", + "passportArea": { + "alpha2code": "SR", + "alpha3code": "SUR", + "id": 740, + "name": "Suriname" + }, + "role": { + "code2": "DF", + "code3": "DEF", + "name": "Defender" + }, + "shortName": "S. Denswil", + "status": "active", + "weight": 81, + "wyId": 39 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "BR", + "alpha3code": "BRA", + "id": 76, + "name": "Brazil" + }, + "birthDate": "1983-11-12", + "currentTeamId": 3166, + "firstName": "Angelo Esmael", + "foot": "right", + "gender": "male", + "gsmId": 58380, + "height": 186, + "lastName": "da Costa Júnior", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "role": { + "code2": "GK", + "code3": "GKP", + "name": "Goalkeeper" + }, + "shortName": "Angelo da Costa", + "status": "active", + "weight": 81, + "wyId": 20604 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "SN", + "alpha3code": "SEN", + "id": 686, + "name": "Senegal" + }, + "birthDate": "1997-01-05", + "currentTeamId": 3188, + "firstName": "Mouhamadou Fallou", + "foot": "right", + "gender": "male", + "gsmId": 398101, + "height": 190, + "lastName": "Mbacke Sarr", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "role": { + "code2": "GK", + "code3": "GKP", + "name": "Goalkeeper" + }, + "shortName": "M. Sarr", + "status": "active", + "weight": 78, + "wyId": 366296 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "birthDate": "1997-01-24", + "currentNationalTeamId": 3757, + "currentTeamId": 3166, + "firstName": "Riccardo", + "foot": "left", + "gender": "male", + "gsmId": 401959, + "height": 183, + "lastName": "Orsolini", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "role": { + "code2": "FW", + "code3": "FWD", + "name": "Forward" + }, + "shortName": "R. Orsolini", + "status": "active", + "weight": 73, + "wyId": 373768 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "birthDate": "1989-09-29", + "currentTeamId": 3166, + "firstName": "Andrea", + "foot": "right", + "gender": "male", + "gsmId": 17787, + "height": 182, + "lastName": "Poli", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "role": { + "code2": "MD", + "code3": "MID", + "name": "Midfielder" + }, + "shortName": "A. Poli", + "status": "active", + "weight": 77, + "wyId": 20529 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "birthDate": "2001-11-16", + "currentNationalTeamId": 3761, + "currentTeamId": 3188, + "firstName": "Gianmarco", + "foot": "right", + "gender": "male", + "gsmId": 509590, + "height": 167, + "lastName": "Cangiano", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "role": { + "code2": "FW", + "code3": "FWD", + "name": "Forward" + }, + "shortName": "G. Cangiano", + "status": "active", + "weight": 62, + "wyId": 536800 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "birthDate": "2001-08-06", + "currentTeamId": 3404, + "firstName": "Federico", + "foot": "left", + "gender": "male", + "gsmId": -61787, + "height": 185, + "lastName": "Bonini", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "role": { + "code2": "DF", + "code3": "DEF", + "name": "Defender" + }, + "shortName": "F. Bonini", + "status": "active", + "weight": 76, + "wyId": 532549 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "birthDate": "2000-01-11", + "currentNationalTeamId": 3764, + "currentTeamId": 3188, + "firstName": "Gabriele", + "foot": "right", + "gender": "male", + "gsmId": 477617, + "height": 185, + "lastName": "Corbo", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "role": { + "code2": "DF", + "code3": "DEF", + "name": "Defender" + }, + "shortName": "G. Corbo", + "status": "active", + "weight": 76, + "wyId": 496671 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "DE", + "alpha3code": "DEU", + "id": 276, + "name": "Germany" + }, + "birthDate": "1991-09-10", + "currentTeamId": 3166, + "firstName": "Nicola", + "foot": "right", + "gender": "male", + "gsmId": 114988, + "height": 175, + "lastName": "Sansone", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "role": { + "code2": "FW", + "code3": "FWD", + "name": "Forward" + }, + "shortName": "N. Sansone", + "status": "active", + "weight": 68, + "wyId": 22578 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "PY", + "alpha3code": "PRY", + "id": 600, + "name": "Paraguay" + }, + "birthDate": "1991-06-04", + "currentNationalTeamId": 15516, + "currentTeamId": 3166, + "firstName": "Federico Javier", + "foot": "right", + "gender": "male", + "gsmId": 31548, + "height": 187, + "lastName": "Santander Mereles", + "middleName": "", + "passportArea": { + "alpha2code": "PY", + "alpha3code": "PRY", + "id": 600, + "name": "Paraguay" + }, + "role": { + "code2": "FW", + "code3": "FWD", + "name": "Forward" + }, + "shortName": "F. Santander", + "status": "active", + "weight": 79, + "wyId": 86316 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "IS", + "alpha3code": "ISL", + "id": 352, + "name": "Iceland" + }, + "birthDate": "2002-01-10", + "currentNationalTeamId": 7839, + "currentTeamId": 3166, + "firstName": "Andri Fannar", + "foot": "right", + "gender": "male", + "gsmId": 463550, + "height": 178, + "lastName": "Baldursson", + "middleName": "", + "passportArea": { + "alpha2code": "IS", + "alpha3code": "ISL", + "id": 352, + "name": "Iceland" + }, + "role": { + "code2": "MD", + "code3": "MID", + "name": "Midfielder" + }, + "shortName": "A. Baldursson", + "status": "active", + "weight": 65, + "wyId": 476177 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "DK", + "alpha3code": "DNK", + "id": 208, + "name": "Denmark" + }, + "birthDate": "1999-12-29", + "currentNationalTeamId": 7719, + "currentTeamId": 3166, + "firstName": "Andreas", + "foot": "left", + "gender": "male", + "gsmId": 490969, + "height": 188, + "lastName": "Skov Olsen", + "middleName": "", + "passportArea": { + "alpha2code": "DK", + "alpha3code": "DNK", + "id": 208, + "name": "Denmark" + }, + "role": { + "code2": "FW", + "code3": "FWD", + "name": "Forward" + }, + "shortName": "A. Skov Olsen", + "status": "active", + "weight": 75, + "wyId": 512740 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "AR", + "alpha3code": "ARG", + "id": 32, + "name": "Argentina" + }, + "birthDate": "1998-06-28", + "currentTeamId": 3166, + "firstName": "Nicolás Martín", + "foot": "right", + "gender": "male", + "gsmId": 477166, + "height": 179, + "lastName": "Domínguez", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "role": { + "code2": "MD", + "code3": "MID", + "name": "Midfielder" + }, + "shortName": "N. Domínguez", + "status": "active", + "weight": 73, + "wyId": 496214 + } + } + ], + "3185": [ + { + "player": { + "birthArea": { + "alpha2code": "AR", + "alpha3code": "ARG", + "id": 32, + "name": "Argentina" + }, + "birthDate": "1986-09-20", + "currentTeamId": 3185, + "firstName": "Cristian Daniel", + "foot": "right", + "gender": "male", + "gsmId": 14270, + "height": 181, + "lastName": "Ansaldi", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "role": { + "code2": "DF", + "code3": "DEF", + "name": "Defender" + }, + "shortName": "C. Ansaldi", + "status": "active", + "weight": 76, + "wyId": 101742 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "birthDate": "1992-03-02", + "currentTeamId": 3185, + "firstName": "Armando", + "foot": "right", + "gender": "male", + "gsmId": 199874, + "height": 183, + "lastName": "Izzo", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "role": { + "code2": "DF", + "code3": "DEF", + "name": "Defender" + }, + "shortName": "A. Izzo", + "status": "active", + "weight": 78, + "wyId": 22883 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "BR", + "alpha3code": "BRA", + "id": 76, + "name": "Brazil" + }, + "birthDate": "1997-03-18", + "currentTeamId": 3185, + "firstName": "Gleysson Bremer", + "foot": "right", + "gender": "male", + "gsmId": 462884, + "height": 188, + "lastName": "Silva Nascimento", + "middleName": "", + "passportArea": { + "alpha2code": "BR", + "alpha3code": "BRA", + "id": 76, + "name": "Brazil" + }, + "role": { + "code2": "DF", + "code3": "DEF", + "name": "Defender" + }, + "shortName": "Bremer", + "status": "active", + "weight": 80, + "wyId": 475319 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "RS", + "alpha3code": "SRB", + "id": 688, + "name": "Serbia" + }, + "birthDate": "1996-08-13", + "currentNationalTeamId": 17322, + "currentTeamId": 3185, + "firstName": "Saša", + "foot": "right", + "gender": "male", + "gsmId": 268856, + "height": 183, + "lastName": "Lukić", + "middleName": "", + "passportArea": { + "alpha2code": "RS", + "alpha3code": "SRB", + "id": 688, + "name": "Serbia" + }, + "role": { + "code2": "MD", + "code3": "MID", + "name": "Midfielder" + }, + "shortName": "S. Lukić", + "status": "active", + "weight": 77, + "wyId": 237269 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "birthDate": "1983-06-26", + "currentTeamId": 3185, + "firstName": "Antonio", + "foot": "right", + "gender": "male", + "gsmId": 18505, + "height": 195, + "lastName": "Rosati", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "role": { + "code2": "GK", + "code3": "GKP", + "name": "Goalkeeper" + }, + "shortName": "A. Rosati", + "status": "active", + "weight": 88, + "wyId": 21158 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "birthDate": "1991-06-25", + "currentTeamId": 3185, + "firstName": "Simone", + "foot": "left", + "gender": "male", + "gsmId": 77386, + "height": 186, + "lastName": "Zaza", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "role": { + "code2": "FW", + "code3": "FWD", + "name": "Forward" + }, + "shortName": "S. Zaza", + "status": "active", + "weight": 84, + "wyId": 22202 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "birthDate": "1993-12-20", + "currentNationalTeamId": 3757, + "currentTeamId": 3185, + "firstName": "Andrea", + "foot": "right", + "gender": "male", + "gsmId": 228719, + "height": 181, + "lastName": "Belotti", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "role": { + "code2": "FW", + "code3": "FWD", + "name": "Forward" + }, + "shortName": "A. Belotti", + "status": "active", + "weight": 72, + "wyId": 21234 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "birthDate": "1992-07-12", + "currentTeamId": 3185, + "firstName": "Simone", + "foot": "both", + "gender": "male", + "gsmId": 111753, + "height": 174, + "lastName": "Verdi", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "role": { + "code2": "FW", + "code3": "FWD", + "name": "Forward" + }, + "shortName": "S. Verdi", + "status": "active", + "weight": 70, + "wyId": 21123 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "ES", + "alpha3code": "ESP", + "id": 724, + "name": "Spain" + }, + "birthDate": "1995-07-04", + "currentTeamId": 678, + "firstName": "Alejandro", + "foot": "right", + "gender": "male", + "gsmId": 362653, + "height": 175, + "lastName": "Berenguer Remiro", + "middleName": "", + "passportArea": { + "alpha2code": "ES", + "alpha3code": "ESP", + "id": 724, + "name": "Spain" + }, + "role": { + "code2": "MD", + "code3": "MID", + "name": "Midfielder" + }, + "shortName": "Álex Berenguer", + "status": "active", + "weight": 73, + "wyId": 339791 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "VE", + "alpha3code": "VEN", + "id": 862, + "name": "Venezuela" + }, + "birthDate": "1988-01-13", + "currentNationalTeamId": 15757, + "currentTeamId": 3185, + "firstName": "Tomás Eduardo", + "foot": "right", + "gender": "male", + "gsmId": 52645, + "height": 177, + "lastName": "Rincón Hernández", + "middleName": "", + "passportArea": { + "alpha2code": "VE", + "alpha3code": "VEN", + "id": 862, + "name": "Venezuela" + }, + "role": { + "code2": "MD", + "code3": "MID", + "name": "Midfielder" + }, + "shortName": "T. Rincón", + "status": "active", + "weight": 76, + "wyId": 14903 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "FR", + "alpha3code": "FRA", + "id": 250, + "name": "France" + }, + "birthDate": "1992-11-30", + "currentTeamId": 3197, + "firstName": "Lévy Koffi", + "foot": "right", + "gender": "male", + "gsmId": 196792, + "height": 184, + "lastName": "Djidji", + "middleName": "", + "passportArea": { + "alpha2code": "CI", + "alpha3code": "CIV", + "id": 384, + "name": "Côte d'Ivoire" + }, + "role": { + "code2": "DF", + "code3": "DEF", + "name": "Defender" + }, + "shortName": "K. Djidji", + "status": "active", + "weight": 71, + "wyId": 25523 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "birthDate": "1987-01-12", + "currentNationalTeamId": 3757, + "currentTeamId": 3185, + "firstName": "Salvatore", + "foot": "right", + "gender": "male", + "gsmId": 58378, + "height": 192, + "lastName": "Sirigu", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "role": { + "code2": "GK", + "code3": "GKP", + "name": "Goalkeeper" + }, + "shortName": "S. Sirigu", + "status": "active", + "weight": 80, + "wyId": 25421 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "RO", + "alpha3code": "ROU", + "id": 642, + "name": "Romania" + }, + "birthDate": "2000-03-15", + "currentTeamId": 3272, + "firstName": "Mihael", + "foot": "left", + "gender": "male", + "gsmId": 467488, + "height": 0, + "lastName": "Onișa", + "middleName": "", + "passportArea": { + "alpha2code": "RO", + "alpha3code": "ROU", + "id": 642, + "name": "Romania" + }, + "role": { + "code2": "MD", + "code3": "MID", + "name": "Midfielder" + }, + "shortName": "M. Onișa", + "status": "active", + "weight": 0, + "wyId": 481140 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "birthDate": "2001-01-09", + "currentTeamId": 3188, + "firstName": "Emin", + "foot": "right", + "gender": "male", + "gsmId": -54464, + "height": 184, + "lastName": "Ghazoini", + "middleName": "", + "passportArea": { + "alpha2code": "MA", + "alpha3code": "MAR", + "id": 504, + "name": "Morocco" + }, + "role": { + "code2": "DF", + "code3": "DEF", + "name": "Defender" + }, + "shortName": "E. Ghazoini", + "status": "active", + "weight": 78, + "wyId": 501457 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "birthDate": "2001-04-04", + "currentTeamId": 31268, + "firstName": "Mattia", + "foot": "left", + "gender": "male", + "gsmId": 517955, + "height": 0, + "lastName": "Sandri", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "role": { + "code2": "MD", + "code3": "MID", + "name": "Midfielder" + }, + "shortName": "M. Sandri", + "status": "active", + "weight": 0, + "wyId": 545358 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "birthDate": "2001-05-02", + "currentTeamId": 3227, + "firstName": "Patrick", + "foot": "left", + "gender": "male", + "gsmId": -66482, + "height": 0, + "lastName": "Enrici", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "role": { + "code2": "DF", + "code3": "DEF", + "name": "Defender" + }, + "shortName": "P. Enrici", + "status": "active", + "weight": 0, + "wyId": 551857 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "KS", + "alpha3code": "XKS", + "id": 1328, + "name": "Kosovo" + }, + "birthDate": "1988-07-05", + "currentNationalTeamId": 22124, + "currentTeamId": 3185, + "firstName": "Samir", + "foot": "right", + "gender": "male", + "gsmId": 17781, + "height": 188, + "lastName": "Ujkani", + "middleName": "", + "passportArea": { + "alpha2code": "KS", + "alpha3code": "XKS", + "id": 1328, + "name": "Kosovo" + }, + "role": { + "code2": "GK", + "code3": "GKP", + "name": "Goalkeeper" + }, + "shortName": "S. Ujkani", + "status": "active", + "weight": 87, + "wyId": 21547 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "MG", + "alpha3code": "MDG", + "id": 450, + "name": "Madagascar" + }, + "birthDate": "2001-02-12", + "currentNationalTeamId": 3761, + "currentTeamId": 3713, + "firstName": "Jean Freddi Pascal", + "foot": "left", + "gender": "male", + "gsmId": 509568, + "height": 172, + "lastName": "Greco", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "role": { + "code2": "MD", + "code3": "MID", + "name": "Midfielder" + }, + "shortName": "J. Greco", + "status": "active", + "weight": 67, + "wyId": 536792 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "FR", + "alpha3code": "FRA", + "id": 250, + "name": "France" + }, + "birthDate": "2000-07-19", + "currentTeamId": 3185, + "firstName": "Michel Ndary", + "foot": "right", + "gender": "male", + "gsmId": -77420, + "height": 187, + "lastName": "Adopo", + "middleName": "", + "passportArea": { + "alpha2code": "CI", + "alpha3code": "CIV", + "id": 384, + "name": "Côte d'Ivoire" + }, + "role": { + "code2": "MD", + "code3": "MID", + "name": "Midfielder" + }, + "shortName": "M. Adopo", + "status": "active", + "weight": 78, + "wyId": 562846 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "birthDate": "1997-01-09", + "currentTeamId": 3185, + "firstName": "Simone", + "foot": "right", + "gender": "male", + "gsmId": 389037, + "height": 174, + "lastName": "Edera", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "role": { + "code2": "FW", + "code3": "FWD", + "name": "Forward" + }, + "shortName": "S. Edera", + "status": "active", + "weight": 70, + "wyId": 354552 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "EN", + "alpha3code": "XEN", + "id": 826, + "name": "England" + }, + "birthDate": "1996-10-08", + "currentNationalTeamId": 16823, + "currentTeamId": 1616, + "firstName": "Temitayo Olufisayo", + "foot": "right", + "gender": "male", + "gsmId": 274798, + "height": 184, + "lastName": "Olaoluwa Aina", + "middleName": "", + "passportArea": { + "alpha2code": "NG", + "alpha3code": "NGA", + "id": 566, + "name": "Nigeria" + }, + "role": { + "code2": "DF", + "code3": "DEF", + "name": "Defender" + }, + "shortName": "O. Aina", + "status": "active", + "weight": 82, + "wyId": 240378 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "CM", + "alpha3code": "CMR", + "id": 120, + "name": "Cameroon" + }, + "birthDate": "1990-03-27", + "currentTeamId": 3185, + "firstName": "Nicolas", + "foot": "right", + "gender": "male", + "gsmId": 39105, + "height": 184, + "lastName": "N'Koulou", + "middleName": "", + "passportArea": { + "alpha2code": "CM", + "alpha3code": "CMR", + "id": 120, + "name": "Cameroon" + }, + "role": { + "code2": "DF", + "code3": "DEF", + "name": "Defender" + }, + "shortName": "N. N'Koulou", + "status": "active", + "weight": 77, + "wyId": 25558 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "birthDate": "2002-01-22", + "currentTeamId": 3713, + "firstName": "Christian ", + "foot": "left", + "gender": "male", + "gsmId": -140817, + "height": 183, + "lastName": "Celesia", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "role": { + "code2": "DF", + "code3": "DEF", + "name": "Defender" + }, + "shortName": "C. Celesia", + "status": "active", + "weight": 75, + "wyId": 626316 + } + } + ] + }, + "referees": [ + { + "refereeId": 396653, + "role": "referee" + }, + { + "refereeId": 394731, + "role": "firstAssistant" + }, + { + "refereeId": 458270, + "role": "secondAssistant" + }, + { + "refereeId": 377271, + "role": "fourthOfficial" + }, + { + "refereeId": 0, + "role": "firstAdditionalAssistant" + }, + { + "refereeId": 0, + "role": "secondAdditionalAssistant" + } + ], + "substitutions": { + "3166": { + "2H": { + "0": { + "in": [ + { + "playerId": 22578 + }, + { + "playerId": 86316 + } + ], + "out": [ + { + "playerId": 21296 + }, + { + "playerId": 491409 + } + ] + }, + "1595": { + "in": [ + { + "playerId": 496214 + }, + { + "playerId": 476177 + } + ], + "out": [ + { + "playerId": 347525 + }, + { + "playerId": 439889 + } + ] + }, + "1899": { + "in": [ + { + "playerId": 512740 + } + ], + "out": [ + { + "playerId": 556015 + } + ] + } + } + }, + "3185": { + "2H": { + "269": { + "in": [ + { + "playerId": 240378 + } + ], + "out": [ + { + "playerId": 101742 + } + ] + }, + "1861": { + "in": [ + { + "playerId": 25558 + } + ], + "out": [ + { + "playerId": 22883 + } + ] + }, + "2789": { + "in": [ + { + "playerId": 626316 + } + ], + "out": [ + { + "playerId": 25523 + } + ] + } + } + } + }, + "teams": { + "3166": { + "team": { + "area": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "category": "default", + "children": [ + { + "name": "Bologna FC 1909 U13", + "wyId": 66245 + }, + { + "name": "Bologna U14", + "wyId": 65383 + }, + { + "name": "Bologna U16 A&B", + "wyId": 60870 + }, + { + "name": "Bologna U15", + "wyId": 23946 + }, + { + "name": "Bologna U17 A&B", + "wyId": 23838 + }, + { + "name": "Bologna U19", + "wyId": 3716 + }, + { + "name": "Bologna U18", + "wyId": 30269 + }, + { + "name": "Bologna U20", + "wyId": 34251 + } + ], + "city": "Bologna", + "gender": "male", + "gsmId": 1249, + "name": "Bologna", + "officialName": "Bologna FC 1909", + "type": "club", + "wyId": 3166 + } + }, + "3185": { + "team": { + "area": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "category": "default", + "children": [ + { + "name": "Torino U14", + "wyId": 65179 + }, + { + "name": "Torino U18", + "wyId": 62760 + }, + { + "name": "Torino U16 A&B", + "wyId": 34380 + }, + { + "name": "Torino U15 A&B", + "wyId": 21673 + }, + { + "name": "Torino U17 A&B", + "wyId": 20594 + }, + { + "name": "Torino U19", + "wyId": 3713 + }, + { + "name": "Torino U19 Berretti", + "wyId": 24050 + } + ], + "city": "Torino", + "gender": "male", + "gsmId": 1268, + "name": "Torino", + "officialName": "Torino FC", + "type": "club", + "wyId": 3185 + } } + }, + "meta": [] } \ No newline at end of file diff --git a/kloppy/tests/test_wyscout.py b/kloppy/tests/test_wyscout.py index 39fef169..dbefed03 100644 --- a/kloppy/tests/test_wyscout.py +++ b/kloppy/tests/test_wyscout.py @@ -16,8 +16,8 @@ def event_data(self): def test_correct_deserialization(self, event_data: str): dataset = wyscout.load(event_data=event_data, coordinates="wyscout") - assert dataset.records[10].coordinates == Point(23.0, 74.0) + assert dataset.records[2].coordinates == Point(36.0, 78.0) def test_correct_normalized_deserialization(self, event_data: str): dataset = wyscout.load(event_data=event_data) - assert dataset.records[10].coordinates == Point(0.23, 0.74) + assert dataset.records[2].coordinates == Point(0.36, 0.78) From 5b2e3ec6894a77fbf3215fa261ec86c6d829a3d6 Mon Sep 17 00:00:00 2001 From: driesdeprest Date: Tue, 21 Feb 2023 16:33:29 +0100 Subject: [PATCH 2/8] Added support for v2 event data back-in and added auto recognize in wyscout load method --- kloppy/_providers/wyscout.py | 51 +- .../serializers/event/wyscout/__init__.py | 3 +- .../event/wyscout/deserializer_v2.py | 420 + .../{deserializer.py => deserializer_v3.py} | 8 +- kloppy/tests/files/wyscout_events_v2.json | 47991 ++++++++++++++++ ...out_events.json => wyscout_events_v3.json} | 6850 +-- kloppy/tests/test_wyscout.py | 35 +- 7 files changed, 51913 insertions(+), 3445 deletions(-) create mode 100644 kloppy/infra/serializers/event/wyscout/deserializer_v2.py rename kloppy/infra/serializers/event/wyscout/{deserializer.py => deserializer_v3.py} (98%) create mode 100644 kloppy/tests/files/wyscout_events_v2.json rename kloppy/tests/files/{wyscout_events.json => wyscout_events_v3.json} (96%) diff --git a/kloppy/_providers/wyscout.py b/kloppy/_providers/wyscout.py index 11a904b0..7e6cc3b0 100644 --- a/kloppy/_providers/wyscout.py +++ b/kloppy/_providers/wyscout.py @@ -1,8 +1,10 @@ +import json from typing import Union from kloppy.config import get_config from kloppy.infra.serializers.event.wyscout import ( - WyscoutDeserializer, + WyscoutDeserializerV3, + WyscoutDeserializerV2, WyscoutInputs, ) from kloppy.domain import EventDataset, Optional, List, EventFactory @@ -14,6 +16,7 @@ def load( event_types: Optional[List[str]] = None, coordinates: Optional[str] = None, event_factory: Optional[EventFactory] = None, + data_model_version: Optional[str] = None, ) -> EventDataset: """ Load Wyscout event data into a [`EventDataset`][kloppy.domain.models.event.EventDataset] @@ -23,16 +26,30 @@ def load( event_types: coordinates: event_factory: + data_model_version: """ - deserializer = WyscoutDeserializer( - event_types=event_types, - coordinate_system=coordinates, - event_factory=event_factory or get_config("event_factory"), - ) - with open_as_file(event_data) as event_data_fp: - return deserializer.deserialize( - inputs=WyscoutInputs(event_data=event_data_fp), + if not data_model_version: + data_model_version = identify_data_model_version(event_data) + if data_model_version == "V3": + deserializer = WyscoutDeserializerV3( + event_types=event_types, + coordinate_system=coordinates, + event_factory=event_factory or get_config("event_factory"), + ) + with open_as_file(event_data) as event_data_fp: + return deserializer.deserialize( + inputs=WyscoutInputs(event_data=event_data_fp), + ) + elif data_model_version == "V2": + deserializer = WyscoutDeserializerV2( + event_types=event_types, + coordinate_system=coordinates, + event_factory=event_factory or get_config("event_factory"), ) + with open_as_file(event_data) as event_data_fp: + return deserializer.deserialize( + inputs=WyscoutInputs(event_data=event_data_fp), + ) def load_open_data( @@ -47,3 +64,19 @@ def load_open_data( coordinates=coordinates, event_factory=event_factory, ) + + +def identify_data_model_version(event_data): + with open(event_data) as json_file: + events = json.load(json_file) + events = events["events"] + if "eventName" in events[0]: + data_model_version = "V2" + return data_model_version + elif ("type" in events[0]) and ("primary" in events[0]["type"]): + data_model_version = "V3" + return data_model_version + else: + raise ValueError( + "Wyscout data model could not be recognized, please specify" + ) diff --git a/kloppy/infra/serializers/event/wyscout/__init__.py b/kloppy/infra/serializers/event/wyscout/__init__.py index fd8bde23..24041d28 100644 --- a/kloppy/infra/serializers/event/wyscout/__init__.py +++ b/kloppy/infra/serializers/event/wyscout/__init__.py @@ -1 +1,2 @@ -from .deserializer import WyscoutDeserializer, WyscoutInputs +from .deserializer_v3 import WyscoutDeserializerV3, WyscoutInputs +from .deserializer_v2 import WyscoutDeserializerV2 diff --git a/kloppy/infra/serializers/event/wyscout/deserializer_v2.py b/kloppy/infra/serializers/event/wyscout/deserializer_v2.py new file mode 100644 index 00000000..3fae4729 --- /dev/null +++ b/kloppy/infra/serializers/event/wyscout/deserializer_v2.py @@ -0,0 +1,420 @@ +import json +import logging +from typing import Dict, List, Tuple, NamedTuple, IO + +from kloppy.domain import ( + BallOutEvent, + BodyPart, + BodyPartQualifier, + CardEvent, + CardType, + CounterAttackQualifier, + Dimension, + EventDataset, + FoulCommittedEvent, + GenericEvent, + GoalkeeperAction, + GoalkeeperActionQualifier, + Ground, + Metadata, + Orientation, + PassEvent, + PassQualifier, + PassResult, + PassType, + Period, + PitchDimensions, + Player, + Point, + Provider, + Qualifier, + RecoveryEvent, + SetPieceQualifier, + SetPieceType, + ShotEvent, + ShotResult, + TakeOnEvent, + TakeOnResult, + Team, +) +from kloppy.utils import performance_logging + +from . import wyscout_events, wyscout_tags +from ..deserializer import EventDataDeserializer + +logger = logging.getLogger(__name__) + + +INVALID_PLAYER = "0" + + +def _parse_team(raw_events, wyId: str, ground: Ground) -> Team: + team = Team( + team_id=wyId, + name=raw_events["teams"][wyId]["officialName"], + ground=ground, + ) + team.players = [ + Player( + player_id=str(player["playerId"]), + team=team, + jersey_no=None, + first_name=player["player"]["firstName"], + last_name=player["player"]["lastName"], + ) + for player in raw_events["players"][wyId] + ] + return team + + +def _has_tag(raw_event, tag_id) -> bool: + for tag in raw_event["tags"]: + if tag["id"] == tag_id: + return True + return False + + +def _generic_qualifiers(raw_event: Dict) -> List[Qualifier]: + qualifiers: List[Qualifier] = [] + + if _has_tag(raw_event, wyscout_tags.COUNTER_ATTACK): + qualifiers.append(CounterAttackQualifier(True)) + else: + qualifiers.append(CounterAttackQualifier(False)) + + return qualifiers + + +def _parse_shot(raw_event: Dict, next_event: Dict) -> Dict: + result = None + qualifiers = _generic_qualifiers(raw_event) + if _has_tag(raw_event, 101): + result = ShotResult.GOAL + elif _has_tag(raw_event, 2101): + result = ShotResult.BLOCKED + elif any((_has_tag(raw_event, tag) for tag in wyscout_tags.SHOT_POST)): + result = ShotResult.POST + elif any( + (_has_tag(raw_event, tag) for tag in wyscout_tags.SHOT_OFF_TARGET) + ): + result = ShotResult.OFF_TARGET + elif any((_has_tag(raw_event, tag) for tag in wyscout_tags.SHOT_ON_GOAL)): + result = ShotResult.SAVED + + if next_event["eventId"] == wyscout_events.SAVE.EVENT: + if next_event["subEventId"] == wyscout_events.SAVE.REFLEXES: + qualifiers.append( + GoalkeeperActionQualifier(GoalkeeperAction.REFLEX) + ) + if next_event["subEventId"] == wyscout_events.SAVE.SAVE_ATTEMPT: + qualifiers.append( + GoalkeeperActionQualifier(GoalkeeperAction.SAVE_ATTEMPT) + ) + + return { + "result": result, + "result_coordinates": Point( + x=float(raw_event["positions"][1]["x"]), + y=float(raw_event["positions"][1]["y"]), + ) + if len(raw_event["positions"]) > 1 + else None, + "qualifiers": qualifiers, + } + + +def _pass_qualifiers(raw_event) -> List[Qualifier]: + qualifiers = _generic_qualifiers(raw_event) + + if raw_event["subEventId"] == wyscout_events.PASS.CROSS: + qualifiers.append(PassQualifier(PassType.CROSS)) + elif raw_event["subEventId"] == wyscout_events.PASS.HAND: + qualifiers.append(PassQualifier(PassType.HAND_PASS)) + elif raw_event["subEventId"] == wyscout_events.PASS.HEAD: + qualifiers.append(PassQualifier(PassType.HEAD_PASS)) + elif raw_event["subEventId"] == wyscout_events.PASS.HIGH: + qualifiers.append(PassQualifier(PassType.HIGH_PASS)) + elif raw_event["subEventId"] == wyscout_events.PASS.LAUNCH: + qualifiers.append(PassQualifier(PassType.LAUNCH)) + elif raw_event["subEventId"] == wyscout_events.PASS.SIMPLE: + qualifiers.append(PassQualifier(PassType.SIMPLE_PASS)) + elif raw_event["subEventId"] == wyscout_events.PASS.SMART: + qualifiers.append(PassQualifier(PassType.SMART_PASS)) + + if _has_tag(raw_event, wyscout_tags.LEFT_FOOT): + qualifiers.append(BodyPartQualifier(BodyPart.LEFT_FOOT)) + elif _has_tag(raw_event, wyscout_tags.RIGHT_FOOT): + qualifiers.append(BodyPartQualifier(BodyPart.RIGHT_FOOT)) + + return qualifiers + + +def _parse_pass(raw_event: Dict, next_event: Dict) -> Dict: + pass_result = None + + if _has_tag(raw_event, wyscout_tags.ACCURATE): + pass_result = PassResult.COMPLETE + elif _has_tag(raw_event, wyscout_tags.NOT_ACCURATE): + pass_result = PassResult.INCOMPLETE + + if next_event: + if next_event["eventId"] == wyscout_events.OFFSIDE.EVENT: + pass_result = PassResult.OFFSIDE + if next_event["eventId"] == wyscout_events.INTERRUPTION.EVENT: + if ( + next_event["subEventId"] + == wyscout_events.INTERRUPTION.BALL_OUT + ): + pass_result = PassResult.OUT + + return { + "result": pass_result, + "qualifiers": _pass_qualifiers(raw_event), + "receive_timestamp": None, + "receiver_player": None, + "receiver_coordinates": Point( + x=float(raw_event["positions"][1]["x"]), + y=float(raw_event["positions"][1]["y"]), + ) + if len(raw_event["positions"]) > 1 + else None, + } + + +def _parse_foul(raw_event: Dict) -> Dict: + qualifiers = _generic_qualifiers(raw_event) + return { + "result": None, + "qualifiers": qualifiers, + } + + +def _parse_card(raw_event: Dict) -> Dict: + qualifiers = _generic_qualifiers(raw_event) + card_type = None + if _has_tag(raw_event, wyscout_tags.RED_CARD): + card_type = CardType.RED + elif _has_tag(raw_event, wyscout_tags.YELLOW_CARD): + card_type = CardType.FIRST_YELLOW + elif _has_tag(raw_event, wyscout_tags.SECOND_YELLOW_CARD): + card_type = CardType.SECOND_YELLOW + + return {"result": None, "qualifiers": qualifiers, "card_type": card_type} + + +def _parse_recovery(raw_event: Dict) -> Dict: + qualifiers = _generic_qualifiers(raw_event) + return { + "result": None, + "qualifiers": qualifiers, + } + + +def _parse_ball_out(raw_event: Dict) -> Dict: + qualifiers = _generic_qualifiers(raw_event) + return {"result": None, "qualifiers": qualifiers} + + +def _parse_set_piece(raw_event: Dict, next_event: Dict) -> Dict: + qualifiers = _generic_qualifiers(raw_event) + + result = {} + + if raw_event["subEventId"] in wyscout_events.FREE_KICK.PASS_TYPES: + result = _parse_pass(raw_event, next_event) + if raw_event["subEventId"] == wyscout_events.FREE_KICK.GOAL_KICK: + qualifiers.append(SetPieceQualifier(SetPieceType.GOAL_KICK)) + elif raw_event["subEventId"] == wyscout_events.FREE_KICK.THROW_IN: + qualifiers.append(SetPieceQualifier(SetPieceType.THROW_IN)) + qualifiers.append(PassQualifier(PassType.HAND_PASS)) + elif raw_event["subEventId"] in [ + wyscout_events.FREE_KICK.FREE_KICK, + wyscout_events.FREE_KICK.FREE_KICK_CROSS, + ]: + qualifiers.append(SetPieceQualifier(SetPieceType.FREE_KICK)) + elif raw_event["subEventId"] == wyscout_events.FREE_KICK.CORNER: + qualifiers.append(SetPieceQualifier(SetPieceType.CORNER_KICK)) + elif raw_event["subEventId"] in wyscout_events.FREE_KICK.SHOT_TYPES: + result = _parse_shot(raw_event, next_event) + if raw_event["subEventId"] == wyscout_events.FREE_KICK.FREE_KICK_SHOT: + qualifiers.append(SetPieceQualifier(SetPieceType.FREE_KICK)) + elif raw_event["subEventId"] == wyscout_events.FREE_KICK.PENALTY: + qualifiers.append(SetPieceQualifier(SetPieceType.PENALTY)) + + result["qualifiers"] = qualifiers + return result + + +def _parse_takeon(raw_event: Dict) -> Dict: + qualifiers = _generic_qualifiers(raw_event) + result = None + if _has_tag(raw_event, wyscout_tags.LOST): + result = TakeOnResult.INCOMPLETE + if _has_tag(raw_event, wyscout_tags.WON): + result = TakeOnResult.COMPLETE + + return {"result": result, "qualifiers": qualifiers} + + +def _players_to_dict(players: List[Player]): + return {player.player_id: player for player in players} + + +class WyscoutInputs(NamedTuple): + event_data: IO[bytes] + + +class WyscoutDeserializerV2(EventDataDeserializer[WyscoutInputs]): + @property + def provider(self) -> Provider: + return Provider.WYSCOUT + + def deserialize(self, inputs: WyscoutInputs) -> EventDataset: + transformer = self.get_transformer(length=100, width=100) + + with performance_logging("load data", logger=logger): + raw_events = json.load(inputs.event_data) + for event in raw_events["events"]: + if "eventId" not in event: + event["eventId"] = event["eventName"] + if "subEventId" not in event: + event["subEventId"] = event.get("subEventName") + + periods = [] + + with performance_logging("parse data", logger=logger): + home_team_id, away_team_id = raw_events["teams"].keys() + home_team = _parse_team(raw_events, home_team_id, Ground.HOME) + away_team = _parse_team(raw_events, away_team_id, Ground.AWAY) + teams = {home_team_id: home_team, away_team_id: away_team} + players = dict( + [ + (wyId, _players_to_dict(team.players)) + for wyId, team in teams.items() + ] + ) + + events = [] + + for idx, raw_event in enumerate(raw_events["events"]): + next_event = None + if (idx + 1) < len(raw_events["events"]): + next_event = raw_events["events"][idx + 1] + + team_id = str(raw_event["teamId"]) + player_id = str(raw_event["playerId"]) + period_id = int(raw_event["matchPeriod"].replace("H", "")) + + if len(periods) == 0 or periods[-1].id != period_id: + periods.append( + Period( + id=period_id, + start_timestamp=0, + end_timestamp=0, + ) + ) + + generic_event_args = { + "event_id": raw_event["id"], + "raw_event": raw_event, + "coordinates": Point( + x=float(raw_event["positions"][0]["x"]), + y=float(raw_event["positions"][0]["y"]), + ), + "team": teams[team_id], + "player": players[team_id][player_id] + if player_id != INVALID_PLAYER + else None, + "ball_owning_team": None, + "ball_state": None, + "period": periods[-1], + "timestamp": raw_event["eventSec"], + } + + event = None + if raw_event["eventId"] == wyscout_events.SHOT.EVENT: + shot_event_args = _parse_shot(raw_event, next_event) + event = self.event_factory.build_shot( + **shot_event_args, **generic_event_args + ) + elif raw_event["eventId"] == wyscout_events.PASS.EVENT: + pass_event_args = _parse_pass(raw_event, next_event) + event = self.event_factory.build_pass( + **pass_event_args, **generic_event_args + ) + elif raw_event["eventId"] == wyscout_events.FOUL.EVENT: + foul_event_args = _parse_foul(raw_event) + event = self.event_factory.build_foul_committed( + **foul_event_args, **generic_event_args + ) + if any( + (_has_tag(raw_event, tag) for tag in wyscout_tags.CARD) + ): + card_event_args = _parse_card(raw_event) + event = self.event_factory.build_card( + **card_event_args, **generic_event_args + ) + elif raw_event["eventId"] == wyscout_events.INTERRUPTION.EVENT: + ball_out_event_args = _parse_ball_out(raw_event) + event = self.event_factory.build_ball_out( + **ball_out_event_args, **generic_event_args + ) + elif raw_event["eventId"] == wyscout_events.FREE_KICK.EVENT: + set_piece_event_args = _parse_set_piece( + raw_event, next_event + ) + if ( + raw_event["subEventId"] + in wyscout_events.FREE_KICK.PASS_TYPES + ): + event = self.event_factory.build_pass( + **set_piece_event_args, **generic_event_args + ) + elif ( + raw_event["subEventId"] + in wyscout_events.FREE_KICK.SHOT_TYPES + ): + event = self.event_factory.build_shot( + **set_piece_event_args, **generic_event_args + ) + + elif ( + raw_event["eventId"] == wyscout_events.OTHERS_ON_BALL.EVENT + ): + recovery_event_args = _parse_recovery(raw_event) + event = self.event_factory.build_recovery( + **recovery_event_args, **generic_event_args + ) + elif raw_event["eventId"] == wyscout_events.DUEL.EVENT: + takeon_event_args = _parse_takeon(raw_event) + event = self.event_factory.build_take_on( + **takeon_event_args, **generic_event_args + ) + elif raw_event["eventId"] not in [ + wyscout_events.SAVE.EVENT, + wyscout_events.OFFSIDE.EVENT, + ]: + # The events SAVE and OFFSIDE are already merged with PASS and SHOT events + qualifiers = _generic_qualifiers(raw_event) + event = self.event_factory.build_generic( + result=None, + qualifiers=qualifiers, + **generic_event_args + ) + + if event and self.should_include_event(event): + events.append(transformer.transform_event(event)) + + metadata = Metadata( + teams=[home_team, away_team], + periods=periods, + pitch_dimensions=transformer.get_to_coordinate_system().pitch_dimensions, + score=None, + frame_rate=None, + orientation=Orientation.BALL_OWNING_TEAM, + flags=None, + provider=Provider.WYSCOUT, + coordinate_system=transformer.get_to_coordinate_system(), + ) + + return EventDataset(metadata=metadata, records=events) diff --git a/kloppy/infra/serializers/event/wyscout/deserializer.py b/kloppy/infra/serializers/event/wyscout/deserializer_v3.py similarity index 98% rename from kloppy/infra/serializers/event/wyscout/deserializer.py rename to kloppy/infra/serializers/event/wyscout/deserializer_v3.py index c919a6ca..8a4a8646 100644 --- a/kloppy/infra/serializers/event/wyscout/deserializer.py +++ b/kloppy/infra/serializers/event/wyscout/deserializer_v3.py @@ -218,10 +218,10 @@ def _parse_set_piece(raw_event: Dict, next_event: Dict) -> Dict: raw_event["type"]["primary"] == "free_kick" ) and "free_kick_shot" in raw_event["type"]["secondary"]: qualifiers.append(SetPieceQualifier(SetPieceType.FREE_KICK)) - result = _parse_shot(raw_event, next_event) + result = _parse_shot(raw_event) elif raw_event["type"]["primary"] == "penalty": qualifiers.append(SetPieceQualifier(SetPieceType.PENALTY)) - result = _parse_shot(raw_event, next_event) + result = _parse_shot(raw_event) result["qualifiers"] = qualifiers return result @@ -257,7 +257,7 @@ class WyscoutInputs(NamedTuple): event_data: IO[bytes] -class WyscoutDeserializer(EventDataDeserializer[WyscoutInputs]): +class WyscoutDeserializerV3(EventDataDeserializer[WyscoutInputs]): @property def provider(self) -> Provider: return Provider.WYSCOUT @@ -329,7 +329,7 @@ def deserialize(self, inputs: WyscoutInputs) -> EventDataset: primary_event_type = raw_event["type"]["primary"] secondary_event_types = raw_event["type"]["secondary"] if primary_event_type == "shot": - shot_event_args = _parse_shot(raw_event, next_event) + shot_event_args = _parse_shot(raw_event) event = self.event_factory.build_shot( **shot_event_args, **generic_event_args ) diff --git a/kloppy/tests/files/wyscout_events_v2.json b/kloppy/tests/files/wyscout_events_v2.json new file mode 100644 index 00000000..eb13a5ac --- /dev/null +++ b/kloppy/tests/files/wyscout_events_v2.json @@ -0,0 +1,47991 @@ +{ + "events": [ + { + "id": 190078343, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2.643377, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 50, + "y": 50 + }, + { + "x": 29, + "y": 41 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078344, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 4.350302, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 29, + "y": 41 + }, + { + "x": 71, + "y": 94 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079073, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 8.010654, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "29", + "y": "6" + }, + { + "x": "36", + "y": "3" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078345, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 9.699562, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 64, + "y": 97 + }, + { + "x": 58, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078346, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 13.551166, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 58, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079074, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 14.93405, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "39", + "y": "0" + }, + { + "x": "41", + "y": "13" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079076, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 16.013375, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "41", + "y": "13" + }, + { + "x": "63", + "y": "15" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079078, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 17.863381, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "63", + "y": "15" + }, + { + "x": "73", + "y": "14" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078348, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 20.293705, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 27, + "y": 86 + }, + { + "x": 23, + "y": 74 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079081, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 20.65864, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "73", + "y": "14" + }, + { + "x": "77", + "y": "26" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078350, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 21.970564, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 23, + "y": 74 + }, + { + "x": 30, + "y": 91 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078351, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 23.405167, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 30, + "y": 91 + }, + { + "x": 35, + "y": 100 + } + ], + "tags": [ + { + "id": 1302 + } + ] + }, + { + "id": 190078352, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 25.217661, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 35, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079085, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 36.757331, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "66", + "y": "0" + }, + { + "x": "92", + "y": "32" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078353, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 43.02098, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 8, + "y": 68 + }, + { + "x": 17, + "y": 85 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078354, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 46.902345, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 17, + "y": 85 + }, + { + "x": 23, + "y": 98 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078355, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 48.134392, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 23, + "y": 98 + }, + { + "x": 25, + "y": 82 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078356, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 50.596476, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 25, + "y": 82 + }, + { + "x": 42, + "y": 96 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078357, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 51.943575, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 42, + "y": 96 + }, + { + "x": 36, + "y": 84 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078358, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 53.677996, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 36, + "y": 84 + }, + { + "x": 28, + "y": 81 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078359, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 54.521704, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 28, + "y": 81 + }, + { + "x": 36, + "y": 88 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078360, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 54.640976, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 36, + "y": 88 + }, + { + "x": 23, + "y": 78 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078361, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 57.200527, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 23, + "y": 78 + }, + { + "x": 25, + "y": 40 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078362, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 60.326574, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 25, + "y": 40 + }, + { + "x": 37, + "y": 0 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078363, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 64.849235, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 37, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079089, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 71.25178, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "60", + "y": "100" + }, + { + "x": "60", + "y": "70" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078364, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 74.611562, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 40, + "y": 30 + }, + { + "x": 59, + "y": 39 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078366, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 76.684679, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 59, + "y": 39 + }, + { + "x": 70, + "y": 34 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078370, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 79.737543, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 70, + "y": 34 + }, + { + "x": 70, + "y": 55 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078369, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 82.682173, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 70, + "y": 55 + }, + { + "x": 77, + "y": 42 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078372, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 83.554498, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 77, + "y": 42 + }, + { + "x": 73, + "y": 59 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078373, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 84.948322, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 73, + "y": 59 + }, + { + "x": 83, + "y": 83 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078376, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 88.515846, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": 83, + "y": 83 + }, + { + "x": 99, + "y": 78 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078377, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 90.661998, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": 99, + "y": 78 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 2101 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079090, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 91.390748, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "1", + "y": "22" + }, + { + "x": "8", + "y": "24" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078378, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 93.225458, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": 92, + "y": 76 + }, + { + "x": 95, + "y": 67 + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079092, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 93.724553, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "5", + "y": "33" + }, + { + "x": "7", + "y": "25" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080390, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 93.724553, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 95, + "y": 67 + }, + { + "x": 93, + "y": 75 + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079094, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 95.130063, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "7", + "y": "25" + }, + { + "x": "5", + "y": "33" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078379, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 95.199655, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 93, + "y": 75 + }, + { + "x": 98, + "y": 76 + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078380, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 96.675963, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": 98, + "y": 76 + }, + { + "x": 86, + "y": 52 + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079097, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 97.100038, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "2", + "y": "44" + }, + { + "x": "14", + "y": "48" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190079099, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 114.868548, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "14", + "y": "48" + }, + { + "x": "65", + "y": "88" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078381, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 116.633649, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 35, + "y": 12 + }, + { + "x": 28, + "y": 0 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079100, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 117.070215, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "65", + "y": "88" + }, + { + "x": "72", + "y": "100" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078382, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 121.08616, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 26, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078383, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 134.086246, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 28, + "y": 0 + }, + { + "x": 29, + "y": 16 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078384, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 135.006607, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 29, + "y": 16 + }, + { + "x": 14, + "y": 6 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078385, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 137.855924, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 14, + "y": 6 + }, + { + "x": 11, + "y": 52 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078386, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 140.553384, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 11, + "y": 52 + }, + { + "x": 26, + "y": 94 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078387, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 144.615012, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 26, + "y": 94 + }, + { + "x": 45, + "y": 92 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079104, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 146.408915, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "55", + "y": "8" + }, + { + "x": "54", + "y": "9" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078388, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 146.642292, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 45, + "y": 92 + }, + { + "x": 46, + "y": 91 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079108, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 148.127147, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": "54", + "y": "9" + }, + { + "x": "55", + "y": "8" + } + ], + "tags": [] + }, + { + "id": 190078390, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 156.8597, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 42, + "y": 91 + }, + { + "x": 26, + "y": 69 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078391, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 160.67314, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 26, + "y": 69 + }, + { + "x": 30, + "y": 84 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078392, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 162.887299, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 30, + "y": 84 + }, + { + "x": 42, + "y": 91 + } + ], + "tags": [] + }, + { + "id": 190078393, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 166.28771, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 42, + "y": 91 + }, + { + "x": 68, + "y": 96 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078394, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 167.977601, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 68, + "y": 96 + }, + { + "x": 66, + "y": 100 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079110, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 168.088417, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "32", + "y": "4" + }, + { + "x": "34", + "y": "0" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078395, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 171.158248, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 64, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078396, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 178.851062, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 66, + "y": 100 + }, + { + "x": 74, + "y": 91 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078397, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 179.848029, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 74, + "y": 91 + }, + { + "x": 67, + "y": 98 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078398, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 181.351087, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 67, + "y": 98 + }, + { + "x": 66, + "y": 45 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079111, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 183.755505, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "34", + "y": "55" + }, + { + "x": "46", + "y": "36" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078399, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 185.916204, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 54, + "y": 64 + }, + { + "x": 64, + "y": 65 + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078401, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 187.918263, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 64, + "y": 65 + }, + { + "x": 63, + "y": 64 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079113, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 188.217115, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "36", + "y": "35" + }, + { + "x": "37", + "y": "36" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078402, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 189.953524, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": 63, + "y": 64 + }, + { + "x": 64, + "y": 65 + } + ], + "tags": [] + }, + { + "id": 190079116, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 193.977694, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": "37", + "y": "36" + }, + { + "x": "73", + "y": "41" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078403, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 197.835478, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 27, + "y": 59 + }, + { + "x": 29, + "y": 36 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078404, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 199.419436, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 29, + "y": 36 + }, + { + "x": 38, + "y": 33 + } + ], + "tags": [] + }, + { + "id": 190078405, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 202.809039, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 38, + "y": 33 + }, + { + "x": 42, + "y": 39 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078406, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 203.769032, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 42, + "y": 39 + }, + { + "x": 33, + "y": 32 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078407, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 204.778029, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 33, + "y": 32 + }, + { + "x": 28, + "y": 42 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078408, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 206.241506, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 28, + "y": 42 + }, + { + "x": 38, + "y": 44 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078409, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 208.175928, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 38, + "y": 44 + }, + { + "x": 31, + "y": 43 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079118, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 208.175928, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "62", + "y": "56" + }, + { + "x": "69", + "y": "57" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079119, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 209.827878, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": "69", + "y": "57" + }, + { + "x": "62", + "y": "56" + } + ], + "tags": [] + }, + { + "id": 190078410, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 215.182468, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 31, + "y": 39 + }, + { + "x": 12, + "y": 49 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078411, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 225.135908, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 12, + "y": 49 + }, + { + "x": 18, + "y": 24 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078412, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 228.81356, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 18, + "y": 24 + }, + { + "x": 15, + "y": 55 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078413, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 235.783239, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 15, + "y": 55 + }, + { + "x": 66, + "y": 24 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079123, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 239.045053, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "34", + "y": "76" + }, + { + "x": "72", + "y": "32" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078414, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 241.070179, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 28, + "y": 68 + }, + { + "x": 59, + "y": 74 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078415, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 244.212828, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 59, + "y": 74 + }, + { + "x": 63, + "y": 59 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078417, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 246.403062, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 63, + "y": 59 + }, + { + "x": 72, + "y": 71 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078418, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 247.910668, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 72, + "y": 71 + }, + { + "x": 78, + "y": 63 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079125, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 247.959765, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "22", + "y": "37" + }, + { + "x": "24", + "y": "43" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079128, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 249.532885, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "24", + "y": "43" + }, + { + "x": "23", + "y": "77" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078420, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 250.057743, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 76, + "y": 57 + }, + { + "x": 77, + "y": 23 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079129, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 253.881384, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "23", + "y": "77" + }, + { + "x": "87", + "y": "73" + } + ], + "tags": [ + { + "id": 901 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078421, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 261.567918, + "eventName": 8, + "subEventName": 81, + "positions": [ + { + "x": 13, + "y": 27 + }, + { + "x": 23, + "y": 27 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078422, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 264.387792, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 23, + "y": 27 + }, + { + "x": 24, + "y": 50 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078423, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 267.848625, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 24, + "y": 50 + }, + { + "x": 28, + "y": 27 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078424, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 268.489472, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 28, + "y": 27 + }, + { + "x": 35, + "y": 22 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079131, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 270.063892, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "65", + "y": "78" + }, + { + "x": "67", + "y": "75" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079135, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 272.557919, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "67", + "y": "75" + }, + { + "x": "74", + "y": "89" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078427, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 275.71652, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 26, + "y": 11 + }, + { + "x": 27, + "y": 35 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078428, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 280.471505, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 27, + "y": 35 + }, + { + "x": 36, + "y": 47 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078429, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 282.466845, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 36, + "y": 47 + }, + { + "x": 26, + "y": 63 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078430, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 284.838909, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 26, + "y": 63 + }, + { + "x": 25, + "y": 45 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078431, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 285.217591, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 25, + "y": 45 + }, + { + "x": 35, + "y": 36 + } + ], + "tags": [] + }, + { + "id": 190078432, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 289.778688, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 35, + "y": 36 + }, + { + "x": 35, + "y": 25 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078433, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 293.327732, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 35, + "y": 25 + }, + { + "x": 35, + "y": 47 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078434, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 295.985742, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 35, + "y": 47 + }, + { + "x": 33, + "y": 81 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078435, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 298.637956, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 33, + "y": 81 + }, + { + "x": 61, + "y": 65 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078436, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 300.983573, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 61, + "y": 65 + }, + { + "x": 59, + "y": 62 + } + ], + "tags": [] + }, + { + "id": 190079137, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 301.121581, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "41", + "y": "38" + }, + { + "x": "34", + "y": "16" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078437, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 301.957559, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 59, + "y": 62 + }, + { + "x": 66, + "y": 84 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079141, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 303.541386, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "34", + "y": "16" + }, + { + "x": "62", + "y": "23" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078438, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 305.846815, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 38, + "y": 77 + }, + { + "x": 38, + "y": 84 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1302 + } + ] + }, + { + "id": 190079144, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 306.295545, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "62", + "y": "16" + }, + { + "x": "92", + "y": "31" + } + ], + "tags": [ + { + "id": 302 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079151, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 310.645304, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": "92", + "y": "31" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 201 + }, + { + "id": 1203 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078440, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 312.452911, + "eventName": 9, + "subEventName": 90, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 8, + "y": 69 + } + ], + "tags": [ + { + "id": 1203 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079155, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 314.341574, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": "91", + "y": "40" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 201 + }, + { + "id": 1215 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078441, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 316.62011, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 1, + "y": 58 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078442, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 348.60307, + "eventName": 3, + "subEventName": 34, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 61, + "y": 82 + } + ], + "tags": [] + }, + { + "id": 190078443, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 351.556705, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 61, + "y": 82 + }, + { + "x": 58, + "y": 86 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079159, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 351.83658, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "39", + "y": "18" + }, + { + "x": "42", + "y": "14" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078444, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 352.593755, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 58, + "y": 86 + }, + { + "x": 30, + "y": 100 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080392, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 352.593755, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "42", + "y": "14" + }, + { + "x": "70", + "y": "0" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078445, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 355.318188, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 29, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078446, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 360.184471, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 30, + "y": 100 + }, + { + "x": 76, + "y": 88 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079160, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 365.550628, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "24", + "y": "12" + }, + { + "x": "28", + "y": "30" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079161, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 371.58968, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "28", + "y": "30" + }, + { + "x": "11", + "y": "50" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079162, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 374.801254, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "11", + "y": "50" + }, + { + "x": "67", + "y": "13" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078447, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 379.22649, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 33, + "y": 87 + }, + { + "x": 45, + "y": 86 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078448, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 381.144469, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 45, + "y": 86 + }, + { + "x": 37, + "y": 96 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078449, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 382.72021, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 37, + "y": 96 + }, + { + "x": 61, + "y": 95 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078450, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 385.045051, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 61, + "y": 95 + }, + { + "x": 68, + "y": 96 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079167, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 385.819281, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "39", + "y": "5" + }, + { + "x": "32", + "y": "4" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079168, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 388.801809, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": "32", + "y": "4" + }, + { + "x": "39", + "y": "5" + } + ], + "tags": [] + }, + { + "id": 190078451, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 425.016183, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 65, + "y": 97 + }, + { + "x": 66, + "y": 85 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078453, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 427.875697, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 66, + "y": 85 + }, + { + "x": 80, + "y": 96 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078454, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 428.326898, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 80, + "y": 96 + }, + { + "x": 69, + "y": 85 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078455, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 429.658589, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": 69, + "y": 85 + }, + { + "x": 93, + "y": 46 + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079171, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 430.598231, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": "7", + "y": "54" + }, + { + "x": "0", + "y": "61" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078456, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 437.575064, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 100, + "y": 39 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078457, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 459.190702, + "eventName": 3, + "subEventName": 30, + "positions": [ + { + "x": 100, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079173, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 461.243882, + "eventName": 4, + "subEventName": 40, + "positions": [ + { + "x": "0", + "y": "0" + }, + { + "x": "0", + "y": "100" + } + ], + "tags": [ + { + "id": 1901 + } + ] + }, + { + "id": 190079174, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 464.668324, + "eventName": 8, + "subEventName": 81, + "positions": [ + { + "x": "12", + "y": "43" + }, + { + "x": "49", + "y": "84" + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079176, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 467.952041, + "eventName": 7, + "subEventName": 70, + "positions": [ + { + "x": "49", + "y": "84" + }, + { + "x": "78", + "y": "94" + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079178, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 471.211494, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "78", + "y": "94" + }, + { + "x": "99", + "y": "50" + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 402 + }, + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078460, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 476.91596, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 1, + "y": 50 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078461, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 489.546377, + "eventName": 3, + "subEventName": 34, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 7, + "y": 71 + } + ], + "tags": [] + }, + { + "id": 190078462, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 493.227331, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 7, + "y": 71 + }, + { + "x": 46, + "y": 76 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078463, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 494.468576, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 46, + "y": 76 + }, + { + "x": 36, + "y": 84 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079181, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 494.598106, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "54", + "y": "24" + }, + { + "x": "64", + "y": "16" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079185, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 496.749526, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "64", + "y": "16" + }, + { + "x": "71", + "y": "3" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078464, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 497.930826, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 36, + "y": 84 + }, + { + "x": 29, + "y": 97 + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079186, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 499.938795, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "71", + "y": "3" + }, + { + "x": "78", + "y": "0" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078465, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 500.056471, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 29, + "y": 97 + }, + { + "x": 22, + "y": 100 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078466, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 505.184605, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 21, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078467, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 517.577275, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 22, + "y": 100 + }, + { + "x": 41, + "y": 96 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078468, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 518.535682, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 41, + "y": 96 + }, + { + "x": 31, + "y": 99 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079187, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 518.535682, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "59", + "y": "4" + }, + { + "x": "69", + "y": "1" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078469, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 521.532545, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 31, + "y": 99 + }, + { + "x": 23, + "y": 96 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078470, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 523.32142, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 23, + "y": 96 + }, + { + "x": 25, + "y": 69 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078471, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 525.008004, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 25, + "y": 69 + }, + { + "x": 26, + "y": 46 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078472, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 527.947993, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 26, + "y": 46 + }, + { + "x": 24, + "y": 46 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078473, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 529.674489, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 24, + "y": 46 + }, + { + "x": 23, + "y": 29 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078474, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 531.42083, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 23, + "y": 29 + }, + { + "x": 38, + "y": 9 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078475, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 533.772947, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 38, + "y": 9 + }, + { + "x": 42, + "y": 7 + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079188, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 534.141487, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "62", + "y": "91" + }, + { + "x": "58", + "y": "93" + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079189, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 535.496244, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": "58", + "y": "93" + }, + { + "x": "62", + "y": "91" + } + ], + "tags": [] + }, + { + "id": 190078476, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 551.618688, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 35, + "y": 9 + }, + { + "x": 26, + "y": 26 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078477, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 556.468608, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 26, + "y": 26 + }, + { + "x": 18, + "y": 41 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078478, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 558.232581, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 18, + "y": 41 + }, + { + "x": 28, + "y": 70 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078479, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 561.44151, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 28, + "y": 70 + }, + { + "x": 30, + "y": 33 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078480, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 565.295632, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 30, + "y": 33 + }, + { + "x": 72, + "y": 95 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079193, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 568.606127, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": "28", + "y": "5" + }, + { + "x": "38", + "y": "0" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078481, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 570.424549, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 62, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078482, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 575.816494, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 62, + "y": 100 + }, + { + "x": 41, + "y": 83 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078483, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 577.599646, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 41, + "y": 83 + }, + { + "x": 46, + "y": 35 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078484, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 580.358814, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 46, + "y": 35 + }, + { + "x": 61, + "y": 9 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078485, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 583.664615, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": 61, + "y": 9 + }, + { + "x": 95, + "y": 13 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078487, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 587.082394, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 95, + "y": 13 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079199, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 587.331578, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "5", + "y": "87" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078488, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 591.00159, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 100, + "y": 15 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079203, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 611.406625, + "eventName": 3, + "subEventName": 34, + "positions": [ + { + "x": "0", + "y": "0" + }, + { + "x": "57", + "y": "1" + } + ], + "tags": [] + }, + { + "id": 190079205, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 615.666852, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "57", + "y": "1" + }, + { + "x": "75", + "y": "17" + } + ], + "tags": [] + }, + { + "id": 190078489, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 616.595729, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 39, + "y": 92 + }, + { + "x": 25, + "y": 83 + } + ], + "tags": [] + }, + { + "id": 190078490, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 624.856401, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 25, + "y": 83 + }, + { + "x": 39, + "y": 67 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079207, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 625.806088, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "61", + "y": "33" + }, + { + "x": "67", + "y": "30" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078491, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 628.998162, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 33, + "y": 70 + }, + { + "x": 37, + "y": 94 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078492, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 632.88593, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 37, + "y": 94 + }, + { + "x": 28, + "y": 80 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078494, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 635.416678, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 28, + "y": 80 + }, + { + "x": 45, + "y": 85 + } + ], + "tags": [] + }, + { + "id": 190078495, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 639.752904, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 45, + "y": 85 + }, + { + "x": 65, + "y": 88 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078496, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 641.846804, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 65, + "y": 88 + }, + { + "x": 56, + "y": 85 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078497, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 642.22671, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 56, + "y": 85 + }, + { + "x": 61, + "y": 80 + } + ], + "tags": [] + }, + { + "id": 190079209, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 643.156947, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "39", + "y": "20" + }, + { + "x": "35", + "y": "21" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078498, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 643.608308, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 61, + "y": 80 + }, + { + "x": 65, + "y": 79 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079210, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 645.00346, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": "35", + "y": "21" + }, + { + "x": "39", + "y": "20" + } + ], + "tags": [] + }, + { + "id": 190078499, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 666.965266, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 61, + "y": 77 + }, + { + "x": 63, + "y": 95 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078500, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 670.374551, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 63, + "y": 95 + }, + { + "x": 44, + "y": 81 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078501, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 674.129006, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 44, + "y": 81 + }, + { + "x": 41, + "y": 32 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078502, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 677.165887, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 41, + "y": 32 + }, + { + "x": 67, + "y": 33 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078503, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 678.285845, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 67, + "y": 33 + }, + { + "x": 75, + "y": 25 + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079211, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 678.337162, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "33", + "y": "67" + }, + { + "x": "25", + "y": "75" + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079215, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 679.558941, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": "25", + "y": "75" + }, + { + "x": "77", + "y": "72" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078505, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 685.488382, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 23, + "y": 28 + }, + { + "x": 35, + "y": 66 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078504, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 689.992047, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 35, + "y": 66 + }, + { + "x": 44, + "y": 72 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078506, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 692.693248, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 44, + "y": 72 + }, + { + "x": 92, + "y": 92 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078508, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 698.74722, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 92, + "y": 92 + }, + { + "x": 85, + "y": 98 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078509, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 701.115573, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 85, + "y": 98 + }, + { + "x": 67, + "y": 95 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078510, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 704.571969, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 67, + "y": 95 + }, + { + "x": 68, + "y": 80 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078511, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 706.844505, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 68, + "y": 80 + }, + { + "x": 56, + "y": 86 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078512, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 710.105042, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 56, + "y": 86 + }, + { + "x": 49, + "y": 42 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078513, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 712.586961, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 49, + "y": 42 + }, + { + "x": 59, + "y": 22 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078514, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 714.474878, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 59, + "y": 22 + }, + { + "x": 70, + "y": 7 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078515, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 716.025731, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 70, + "y": 7 + }, + { + "x": 57, + "y": 18 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078516, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 718.384093, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 57, + "y": 18 + }, + { + "x": 37, + "y": 33 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078517, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 720.884034, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 37, + "y": 33 + }, + { + "x": 48, + "y": 57 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078518, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 722.56845, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 48, + "y": 57 + }, + { + "x": 32, + "y": 79 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078519, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 724.486781, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 32, + "y": 79 + }, + { + "x": 41, + "y": 97 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078520, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 727.299642, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 41, + "y": 97 + }, + { + "x": 40, + "y": 85 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078521, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 727.766999, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 40, + "y": 85 + }, + { + "x": 63, + "y": 97 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078523, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 730.970875, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 63, + "y": 97 + }, + { + "x": 73, + "y": 88 + } + ], + "tags": [] + }, + { + "id": 190078524, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 733.975905, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 73, + "y": 88 + }, + { + "x": 84, + "y": 78 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078525, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 735.240983, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 84, + "y": 78 + }, + { + "x": 95, + "y": 89 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078526, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 737.003973, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": 95, + "y": 89 + }, + { + "x": 90, + "y": 16 + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 801 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078529, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 740.700493, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 90, + "y": 16 + }, + { + "x": 85, + "y": 33 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078530, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 742.763156, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 85, + "y": 33 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 2101 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079219, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 743.652821, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "14", + "y": "67" + }, + { + "x": "20", + "y": "51" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078531, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 744.961059, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 80, + "y": 49 + }, + { + "x": 68, + "y": 51 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079220, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 744.961059, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "20", + "y": "51" + }, + { + "x": "32", + "y": "49" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078532, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 746.88672, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 68, + "y": 51 + }, + { + "x": 76, + "y": 44 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078533, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 748.728134, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 76, + "y": 44 + }, + { + "x": 84, + "y": 20 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078534, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 752.547285, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 84, + "y": 20 + }, + { + "x": 75, + "y": 31 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078535, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 753.220966, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 75, + "y": 31 + }, + { + "x": 77, + "y": 49 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078536, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 755.210381, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 77, + "y": 49 + }, + { + "x": 72, + "y": 72 + } + ], + "tags": [ + { + "id": 302 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078538, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 756.882385, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 72, + "y": 72 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 201 + }, + { + "id": 1219 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078539, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 760.215262, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 90, + "y": 52 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 101 + }, + { + "id": 401 + }, + { + "id": 201 + }, + { + "id": 1210 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078540, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 769.358223, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 100, + "y": 61 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079224, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 794.992709, + "eventName": 3, + "subEventName": 34, + "positions": [ + { + "x": "0", + "y": "0" + }, + { + "x": "54", + "y": "76" + } + ], + "tags": [] + }, + { + "id": 190078541, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 797.005694, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 46, + "y": 24 + }, + { + "x": 63, + "y": 25 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079226, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 798.610483, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "37", + "y": "75" + }, + { + "x": "58", + "y": "66" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078542, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 801.395193, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 42, + "y": 34 + }, + { + "x": 86, + "y": 42 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079229, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 818.546986, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "14", + "y": "58" + }, + { + "x": "66", + "y": "68" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079251, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 821.363937, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "66", + "y": "68" + }, + { + "x": "85", + "y": "86" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078543, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 824.542844, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 15, + "y": 14 + }, + { + "x": 31, + "y": 29 + } + ], + "tags": [ + { + "id": 2001 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079252, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 828.803566, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "69", + "y": "71" + }, + { + "x": "79", + "y": "65" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079253, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 831.822492, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "79", + "y": "65" + }, + { + "x": "88", + "y": "83" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079254, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 833.227448, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "88", + "y": "83" + }, + { + "x": "92", + "y": "49" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078544, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 834.766333, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 8, + "y": 51 + }, + { + "x": 4, + "y": 0 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078545, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 840.615816, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 4, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079255, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 842.380615, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "93", + "y": "100" + }, + { + "x": "88", + "y": "87" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078546, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 842.65992, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 12, + "y": 13 + }, + { + "x": 1, + "y": 10 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080395, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 842.65992, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "88", + "y": "87" + }, + { + "x": "99", + "y": "90" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078547, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 844.912196, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": 1, + "y": 10 + }, + { + "x": 30, + "y": 34 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078548, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 846.910235, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 30, + "y": 34 + }, + { + "x": 30, + "y": 56 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079256, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 846.910235, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "70", + "y": "66" + }, + { + "x": "70", + "y": "44" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079257, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 848.474402, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "70", + "y": "44" + }, + { + "x": "76", + "y": "64" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078549, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 849.996553, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 24, + "y": 36 + }, + { + "x": 26, + "y": 44 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079258, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 849.996553, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "76", + "y": "64" + }, + { + "x": "74", + "y": "56" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079259, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 851.161977, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": "74", + "y": "56" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 2101 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078550, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 853.241865, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 24, + "y": 35 + }, + { + "x": 34, + "y": 24 + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078551, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 853.415894, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 34, + "y": 24 + }, + { + "x": 21, + "y": 8 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079260, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 853.415894, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "66", + "y": "76" + }, + { + "x": "79", + "y": "92" + } + ], + "tags": [ + { + "id": 1601 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079262, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 856.729253, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "79", + "y": "92" + }, + { + "x": "90", + "y": "42" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079265, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 859.286933, + "eventName": 6, + "subEventName": "", + "positions": [ + { + "x": "90", + "y": "42" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [] + }, + { + "id": 190078552, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 870.717431, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 14, + "y": 53 + }, + { + "x": 64, + "y": 96 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078553, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 880.011001, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 64, + "y": 96 + }, + { + "x": 55, + "y": 85 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078554, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 881.826033, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 55, + "y": 85 + }, + { + "x": 61, + "y": 76 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078555, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 882.493029, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 61, + "y": 76 + }, + { + "x": 56, + "y": 89 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078556, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 885.667709, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 56, + "y": 89 + }, + { + "x": 94, + "y": 17 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078557, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 892.675232, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 94, + "y": 17 + }, + { + "x": 86, + "y": 26 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078558, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 894.633636, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 86, + "y": 26 + }, + { + "x": 83, + "y": 18 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078559, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 896.535368, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": 83, + "y": 18 + }, + { + "x": 96, + "y": 63 + } + ], + "tags": [ + { + "id": 301 + }, + { + "id": 402 + }, + { + "id": 801 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078560, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 899.058283, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 96, + "y": 63 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 101 + }, + { + "id": 403 + }, + { + "id": 201 + }, + { + "id": 1206 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079272, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 899.536587, + "eventName": 9, + "subEventName": 90, + "positions": [ + { + "x": "0", + "y": "0" + }, + { + "x": "4", + "y": "37" + } + ], + "tags": [ + { + "id": 101 + }, + { + "id": 1206 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079274, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 956.751669, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "22", + "y": "27" + }, + { + "x": "8", + "y": "65" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079276, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 961.269829, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "8", + "y": "65" + }, + { + "x": "54", + "y": "55" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078561, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 963.267645, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 46, + "y": 45 + }, + { + "x": 62, + "y": 44 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079279, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 965.730403, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "38", + "y": "56" + }, + { + "x": "60", + "y": "92" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078562, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 971.454258, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 40, + "y": 8 + }, + { + "x": 41, + "y": 30 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078563, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 974.435115, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 41, + "y": 30 + }, + { + "x": 64, + "y": 40 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078564, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 974.985224, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 64, + "y": 40 + }, + { + "x": 67, + "y": 21 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079280, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 976.392937, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "33", + "y": "79" + }, + { + "x": "31", + "y": "61" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079283, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 978.483558, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "31", + "y": "61" + }, + { + "x": "40", + "y": "21" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078565, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 980.442871, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 60, + "y": 79 + }, + { + "x": 63, + "y": 88 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079285, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 981.010708, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "40", + "y": "21" + }, + { + "x": "37", + "y": "12" + } + ], + "tags": [ + { + "id": 1601 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079289, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 982.771204, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": "37", + "y": "12" + }, + { + "x": "40", + "y": "21" + } + ], + "tags": [ + { + "id": 1702 + } + ] + }, + { + "id": 190078566, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1012.766978, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 57, + "y": 79 + }, + { + "x": 64, + "y": 92 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078567, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1014.688394, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 64, + "y": 92 + }, + { + "x": 57, + "y": 82 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078568, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1015.572632, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 57, + "y": 82 + }, + { + "x": 35, + "y": 63 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078569, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1019.434729, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 35, + "y": 63 + }, + { + "x": 29, + "y": 20 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078570, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1022.392846, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 29, + "y": 20 + }, + { + "x": 14, + "y": 27 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078571, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1024.953506, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 14, + "y": 27 + }, + { + "x": 20, + "y": 29 + } + ], + "tags": [ + { + "id": 2001 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079296, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1025.75413, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "80", + "y": "71" + }, + { + "x": "73", + "y": "73" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190079298, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1026.343943, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": "73", + "y": "73" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 201 + }, + { + "id": 1202 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079010, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1028.546443, + "eventName": 9, + "subEventName": 91, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 14, + "y": 27 + } + ], + "tags": [ + { + "id": 1202 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078572, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1033.251535, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 0, + "y": 36 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079301, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1058.07431, + "eventName": 3, + "subEventName": 30, + "positions": [ + { + "x": "100", + "y": "100" + }, + { + "x": "95", + "y": "56" + } + ], + "tags": [ + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078573, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1060.77819, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 5, + "y": 44 + }, + { + "x": 0, + "y": 19 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078574, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1066.519792, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 0, + "y": 19 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079303, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1073.149089, + "eventName": 3, + "subEventName": 30, + "positions": [ + { + "x": "100", + "y": "100" + }, + { + "x": "88", + "y": "88" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079305, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1078.07472, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "88", + "y": "88" + }, + { + "x": "89", + "y": "85" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079307, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1078.638272, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "89", + "y": "85" + }, + { + "x": "95", + "y": "91" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078575, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1082.251035, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 5, + "y": 9 + }, + { + "x": 11, + "y": 0 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079309, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1082.443633, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "95", + "y": "91" + }, + { + "x": "89", + "y": "100" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078576, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1086.898812, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 3, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079311, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1103.322417, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "89", + "y": "100" + }, + { + "x": "84", + "y": "89" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079312, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1103.95486, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "84", + "y": "89" + }, + { + "x": "94", + "y": "92" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079315, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1105.106885, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "94", + "y": "92" + }, + { + "x": "94", + "y": "51" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078577, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1107.096654, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 6, + "y": 49 + }, + { + "x": 7, + "y": 9 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078578, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1109.34793, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 7, + "y": 9 + }, + { + "x": 13, + "y": 28 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079319, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1109.657691, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "93", + "y": "91" + }, + { + "x": "87", + "y": "72" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078579, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1111.585966, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 13, + "y": 28 + }, + { + "x": 13, + "y": 32 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079322, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1111.585966, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "87", + "y": "72" + }, + { + "x": "87", + "y": "68" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079323, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1113.135771, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": "87", + "y": "68" + }, + { + "x": "87", + "y": "72" + } + ], + "tags": [] + }, + { + "id": 190078580, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1168.446133, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 14, + "y": 31 + }, + { + "x": 66, + "y": 71 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078581, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1171.327095, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 66, + "y": 71 + }, + { + "x": 59, + "y": 90 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079328, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1171.758133, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "34", + "y": "29" + }, + { + "x": "41", + "y": "10" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078582, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1174.115871, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 59, + "y": 90 + }, + { + "x": 42, + "y": 94 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078583, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1177.322959, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 42, + "y": 94 + }, + { + "x": 30, + "y": 84 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078584, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1178.459605, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 30, + "y": 84 + }, + { + "x": 81, + "y": 49 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079330, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1182.460615, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": "19", + "y": "51" + }, + { + "x": "43", + "y": "0" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078585, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1187.415746, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 57, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078586, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1201.569024, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 61, + "y": 100 + }, + { + "x": 65, + "y": 84 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078587, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1202.686056, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": 65, + "y": 84 + }, + { + "x": 71, + "y": 97 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079333, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1203.056809, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "29", + "y": "3" + }, + { + "x": "40", + "y": "3" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078588, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1206.465759, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 60, + "y": 97 + }, + { + "x": 41, + "y": 95 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078589, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1207.282875, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 41, + "y": 95 + }, + { + "x": 71, + "y": 61 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079335, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1209.211097, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "29", + "y": "39" + }, + { + "x": "59", + "y": "11" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078590, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1211.171233, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 41, + "y": 89 + }, + { + "x": 61, + "y": 78 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079337, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1211.359865, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "59", + "y": "11" + }, + { + "x": "39", + "y": "22" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078591, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1215.458458, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 61, + "y": 78 + }, + { + "x": 71, + "y": 100 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078592, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1218.245325, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 71, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079338, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1230.628382, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "32", + "y": "0" + }, + { + "x": "42", + "y": "3" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078593, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1232.950219, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 58, + "y": 97 + }, + { + "x": 54, + "y": 100 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079340, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1232.950219, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "42", + "y": "3" + }, + { + "x": "46", + "y": "0" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078594, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1236.115624, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 57, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079342, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1250.409094, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "46", + "y": "0" + }, + { + "x": "74", + "y": "8" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078595, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1253.210083, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 26, + "y": 92 + }, + { + "x": 28, + "y": 97 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078596, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1253.506606, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 28, + "y": 97 + }, + { + "x": 37, + "y": 95 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079344, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1255.068963, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "63", + "y": "5" + }, + { + "x": "60", + "y": "11" + } + ], + "tags": [] + }, + { + "id": 190078597, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1257.646482, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 40, + "y": 89 + }, + { + "x": 40, + "y": 66 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078598, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1259.62012, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 40, + "y": 66 + }, + { + "x": 42, + "y": 67 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 503 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080396, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1259.62012, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "60", + "y": "34" + }, + { + "x": "58", + "y": "33" + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078599, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1261.175424, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 42, + "y": 67 + }, + { + "x": 43, + "y": 80 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078600, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1262.336052, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 43, + "y": 80 + }, + { + "x": 70, + "y": 49 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079350, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1265.596734, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "30", + "y": "51" + }, + { + "x": "30", + "y": "57" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078603, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1265.671363, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 70, + "y": 49 + }, + { + "x": 70, + "y": 43 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079353, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1267.761913, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": "30", + "y": "57" + }, + { + "x": "30", + "y": "51" + } + ], + "tags": [ + { + "id": 1702 + } + ] + }, + { + "id": 190078605, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1350.380318, + "eventName": 3, + "subEventName": 33, + "positions": [ + { + "x": 72, + "y": 49 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 101 + }, + { + "id": 402 + }, + { + "id": 1101 + }, + { + "id": 201 + }, + { + "id": 1204 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079356, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1353.007875, + "eventName": 9, + "subEventName": 91, + "positions": [ + { + "x": "0", + "y": "0" + }, + { + "x": "28", + "y": "51" + } + ], + "tags": [ + { + "id": 101 + }, + { + "id": 1204 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078607, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1406.491778, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 29, + "y": 92 + }, + { + "x": 38, + "y": 81 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079365, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1406.491778, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "71", + "y": "8" + }, + { + "x": "62", + "y": "19" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079366, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1408.098971, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "62", + "y": "19" + }, + { + "x": "80", + "y": "10" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078606, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1410.604104, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 20, + "y": 90 + }, + { + "x": 23, + "y": 99 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078608, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1411.361689, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 23, + "y": 99 + }, + { + "x": 46, + "y": 100 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078609, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1415.734741, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 46, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079369, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1429.326332, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "62", + "y": "0" + }, + { + "x": "70", + "y": "4" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079370, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1430.590475, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "70", + "y": "4" + }, + { + "x": "60", + "y": "3" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078610, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1432.600001, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 40, + "y": 97 + }, + { + "x": 44, + "y": 100 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079373, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1432.600001, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "60", + "y": "3" + }, + { + "x": "56", + "y": "0" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078611, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1436.038192, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 41, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078612, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1438.791787, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 44, + "y": 100 + }, + { + "x": 76, + "y": 85 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079374, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1445.426448, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": "24", + "y": "15" + }, + { + "x": "26", + "y": "0" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078613, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1449.437482, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 74, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078617, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1460.013697, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 74, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078614, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1461.789708, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 79, + "y": 100 + }, + { + "x": 67, + "y": 97 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078615, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1463.41936, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 67, + "y": 97 + }, + { + "x": 76, + "y": 98 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078616, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1464.392377, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 76, + "y": 98 + }, + { + "x": 79, + "y": 100 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079377, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1464.392377, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "24", + "y": "2" + }, + { + "x": "21", + "y": "0" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079645, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1466.073081, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 71, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079649, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1467.323152, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 79, + "y": 100 + }, + { + "x": 85, + "y": 87 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079383, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1468.341534, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "15", + "y": "13" + }, + { + "x": "12", + "y": "9" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078618, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1469.834152, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 88, + "y": 91 + }, + { + "x": 75, + "y": 80 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078619, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1471.405863, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 75, + "y": 80 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 2101 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079386, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1472.325724, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "16", + "y": "33" + }, + { + "x": "17", + "y": "67" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078620, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1473.776449, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 83, + "y": 33 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 2101 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079387, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1475.510858, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "11", + "y": "66" + }, + { + "x": "4", + "y": "78" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078621, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1476.486968, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": 96, + "y": 22 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 403 + }, + { + "id": 2101 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079388, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1478.355647, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "5", + "y": "72" + }, + { + "x": "0", + "y": "70" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078622, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1487.733663, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 100, + "y": 30 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078623, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1519.334818, + "eventName": 3, + "subEventName": 30, + "positions": [ + { + "x": 100, + "y": 0 + }, + { + "x": 96, + "y": 39 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079389, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1520.61246, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": "4", + "y": "61" + }, + { + "x": "29", + "y": "65" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078624, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1523.687392, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 71, + "y": 35 + }, + { + "x": 68, + "y": 57 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079393, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1523.981573, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "29", + "y": "65" + }, + { + "x": "32", + "y": "43" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078625, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1526.114406, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 68, + "y": 57 + }, + { + "x": 79, + "y": 54 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079396, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1526.114406, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "32", + "y": "43" + }, + { + "x": "21", + "y": "46" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079398, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1527.871481, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "21", + "y": "46" + }, + { + "x": "27", + "y": "36" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079399, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1529.531134, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "27", + "y": "36" + }, + { + "x": "31", + "y": "23" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078626, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1532.185314, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 69, + "y": 77 + }, + { + "x": 70, + "y": 96 + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079401, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1532.185314, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "31", + "y": "23" + }, + { + "x": "30", + "y": "4" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078627, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1534.341085, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 70, + "y": 96 + }, + { + "x": 57, + "y": 95 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078628, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1535.705591, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 57, + "y": 95 + }, + { + "x": 73, + "y": 93 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078629, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1537.293964, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 73, + "y": 93 + }, + { + "x": 71, + "y": 94 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079403, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1537.293964, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "27", + "y": "7" + }, + { + "x": "29", + "y": "6" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079405, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1538.204873, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "29", + "y": "6" + }, + { + "x": "39", + "y": "4" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078630, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1539.752467, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 61, + "y": 96 + }, + { + "x": 61, + "y": 100 + } + ], + "tags": [ + { + "id": 601 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079407, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1539.752467, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "39", + "y": "4" + }, + { + "x": "39", + "y": "0" + } + ], + "tags": [ + { + "id": 602 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078631, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1544.16372, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 57, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079411, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1558.199267, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "39", + "y": "0" + }, + { + "x": "71", + "y": "3" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078632, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1559.714043, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 29, + "y": 97 + }, + { + "x": 25, + "y": 92 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079413, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1559.714043, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "71", + "y": "3" + }, + { + "x": "75", + "y": "8" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078633, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1561.224104, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 25, + "y": 92 + }, + { + "x": 39, + "y": 96 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078634, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1562.503024, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 39, + "y": 96 + }, + { + "x": 28, + "y": 100 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079415, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1562.503024, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "61", + "y": "4" + }, + { + "x": "72", + "y": "0" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078635, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1565.247944, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 28, + "y": 100 + }, + { + "x": 47, + "y": 95 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078636, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1565.847578, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 47, + "y": 95 + }, + { + "x": 54, + "y": 90 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079417, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1565.847578, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "53", + "y": "5" + }, + { + "x": "46", + "y": "10" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079419, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1567.038335, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "46", + "y": "10" + }, + { + "x": "63", + "y": "10" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078637, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1568.169919, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 37, + "y": 90 + }, + { + "x": 35, + "y": 81 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079420, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1568.169919, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "63", + "y": "10" + }, + { + "x": "65", + "y": "19" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078638, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1569.592483, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 35, + "y": 81 + }, + { + "x": 41, + "y": 73 + } + ], + "tags": [ + { + "id": 602 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080397, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1569.592483, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "65", + "y": "19" + }, + { + "x": "59", + "y": "27" + } + ], + "tags": [ + { + "id": 601 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079422, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1570.120865, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "59", + "y": "27" + }, + { + "x": "52", + "y": "23" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079425, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1570.649081, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "52", + "y": "23" + }, + { + "x": "59", + "y": "21" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079426, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1571.622733, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "59", + "y": "21" + }, + { + "x": "57", + "y": "28" + } + ], + "tags": [] + }, + { + "id": 190078639, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1574.72448, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 43, + "y": 72 + }, + { + "x": 60, + "y": 68 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078640, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1576.040251, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 60, + "y": 68 + }, + { + "x": 45, + "y": 52 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079429, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1576.040251, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "40", + "y": "32" + }, + { + "x": "55", + "y": "48" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078641, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1578.109348, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 45, + "y": 52 + }, + { + "x": 35, + "y": 46 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079431, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1578.109348, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "55", + "y": "48" + }, + { + "x": "65", + "y": "54" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078643, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1580.289666, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 35, + "y": 46 + }, + { + "x": 30, + "y": 41 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079434, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1580.289666, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "65", + "y": "54" + }, + { + "x": "70", + "y": "59" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078644, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1581.195019, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 30, + "y": 41 + }, + { + "x": 29, + "y": 41 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079436, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1581.195019, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "70", + "y": "59" + }, + { + "x": "71", + "y": "59" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078645, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1582.414004, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": 29, + "y": 41 + }, + { + "x": 30, + "y": 41 + } + ], + "tags": [] + }, + { + "id": 190079439, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1624.22875, + "eventName": 3, + "subEventName": 32, + "positions": [ + { + "x": "69", + "y": "68" + }, + { + "x": "87", + "y": "50" + } + ], + "tags": [ + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078647, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1627.173855, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 13, + "y": 50 + }, + { + "x": 23, + "y": 92 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078648, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1628.903641, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 23, + "y": 92 + }, + { + "x": 21, + "y": 92 + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079442, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1628.903641, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "77", + "y": "8" + }, + { + "x": "79", + "y": "8" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078649, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1629.450902, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 21, + "y": 92 + }, + { + "x": 26, + "y": 96 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080398, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1629.450902, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "79", + "y": "8" + }, + { + "x": "74", + "y": "4" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079443, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1629.707428, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "74", + "y": "4" + }, + { + "x": "74", + "y": "14" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079444, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1631.797133, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "74", + "y": "14" + }, + { + "x": "87", + "y": "9" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078650, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1633.849632, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 13, + "y": 91 + }, + { + "x": 21, + "y": 100 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078651, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1636.664005, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 21, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079447, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1644.371201, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "70", + "y": "0" + }, + { + "x": "72", + "y": "15" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079449, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1645.200855, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "72", + "y": "15" + }, + { + "x": "76", + "y": "2" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079450, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1646.645255, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "76", + "y": "2" + }, + { + "x": "90", + "y": "28" + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 801 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078652, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1648.994909, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 10, + "y": 72 + }, + { + "x": 21, + "y": 41 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079453, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1648.994909, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "90", + "y": "28" + }, + { + "x": "79", + "y": "59" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078653, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1651.858545, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 21, + "y": 41 + }, + { + "x": 31, + "y": 56 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079455, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1653.220256, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "69", + "y": "44" + }, + { + "x": "71", + "y": "45" + } + ], + "tags": [] + }, + { + "id": 190078654, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1654.010941, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 29, + "y": 55 + }, + { + "x": 27, + "y": 57 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079456, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1654.010941, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "71", + "y": "45" + }, + { + "x": "73", + "y": "43" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079458, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1655.929354, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "73", + "y": "43" + }, + { + "x": "77", + "y": "66" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078655, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1658.714082, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 23, + "y": 34 + }, + { + "x": 21, + "y": 33 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079459, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1658.714082, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "77", + "y": "66" + }, + { + "x": "79", + "y": "67" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079462, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1659.964336, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "79", + "y": "67" + }, + { + "x": "93", + "y": "83" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079464, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1660.722442, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "93", + "y": "83" + }, + { + "x": "88", + "y": "44" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078656, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1663.809797, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 12, + "y": 56 + }, + { + "x": 28, + "y": 66 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078657, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1666.441165, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 28, + "y": 66 + }, + { + "x": 60, + "y": 96 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078659, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1670.652927, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 60, + "y": 96 + }, + { + "x": 71, + "y": 95 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079468, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1670.652927, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "40", + "y": "4" + }, + { + "x": "29", + "y": "5" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079471, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1671.870786, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "29", + "y": "5" + }, + { + "x": "33", + "y": "21" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078660, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1673.888587, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 67, + "y": 79 + }, + { + "x": 73, + "y": 75 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079473, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1673.888587, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "33", + "y": "21" + }, + { + "x": "27", + "y": "25" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078661, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1675.097204, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 73, + "y": 75 + }, + { + "x": 76, + "y": 58 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079474, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1675.097204, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "27", + "y": "25" + }, + { + "x": "24", + "y": "42" + } + ], + "tags": [ + { + "id": 1601 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079476, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1676.83112, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "24", + "y": "42" + }, + { + "x": "23", + "y": "5" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079479, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1679.505294, + "eventName": 7, + "subEventName": 70, + "positions": [ + { + "x": "23", + "y": "5" + }, + { + "x": "40", + "y": "6" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079481, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1682.218074, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "40", + "y": "6" + }, + { + "x": "36", + "y": "2" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079483, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1683.057682, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "36", + "y": "2" + }, + { + "x": "79", + "y": "17" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079486, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1687.036074, + "eventName": 6, + "subEventName": "", + "positions": [ + { + "x": "79", + "y": "17" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [] + }, + { + "id": 190078663, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1720.337919, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 29, + "y": 72 + }, + { + "x": 72, + "y": 73 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079488, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1722.539559, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "28", + "y": "27" + }, + { + "x": "41", + "y": "9" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078664, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1724.595363, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 59, + "y": 91 + }, + { + "x": 45, + "y": 65 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079490, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1724.595363, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "41", + "y": "9" + }, + { + "x": "55", + "y": "35" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078665, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1727.39599, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 45, + "y": 65 + }, + { + "x": 37, + "y": 79 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079495, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1729.671966, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "63", + "y": "21" + }, + { + "x": "62", + "y": "22" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078666, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1732.466046, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 38, + "y": 78 + }, + { + "x": 61, + "y": 79 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078667, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1735.106882, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 61, + "y": 79 + }, + { + "x": 83, + "y": 86 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078668, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1738.457705, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": 83, + "y": 86 + }, + { + "x": 91, + "y": 63 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079501, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1741.065444, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "9", + "y": "37" + }, + { + "x": "21", + "y": "33" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079503, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1743.092755, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "21", + "y": "33" + }, + { + "x": "30", + "y": "49" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079505, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1746.004414, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "30", + "y": "49" + }, + { + "x": "42", + "y": "75" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079508, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1749.115437, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "42", + "y": "75" + }, + { + "x": "72", + "y": "27" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078671, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1751.552185, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 28, + "y": 73 + }, + { + "x": 27, + "y": 35 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078672, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1757.349855, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 27, + "y": 35 + }, + { + "x": 39, + "y": 36 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078673, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1760.312493, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 39, + "y": 36 + }, + { + "x": 39, + "y": 16 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078674, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1762.69079, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 39, + "y": 16 + }, + { + "x": 26, + "y": 38 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078675, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1765.189055, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 26, + "y": 38 + }, + { + "x": 27, + "y": 60 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078676, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1768.787702, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 27, + "y": 60 + }, + { + "x": 29, + "y": 33 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078677, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1770.184409, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 29, + "y": 33 + }, + { + "x": 30, + "y": 6 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078678, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1773.494933, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 30, + "y": 6 + }, + { + "x": 48, + "y": 12 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078679, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1775.667345, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 48, + "y": 12 + }, + { + "x": 49, + "y": 12 + } + ], + "tags": [ + { + "id": 602 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079511, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1775.953704, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "52", + "y": "88" + }, + { + "x": "51", + "y": "88" + } + ], + "tags": [ + { + "id": 601 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078680, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1778.231491, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 49, + "y": 12 + }, + { + "x": 43, + "y": 27 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078681, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1780.023899, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 43, + "y": 27 + }, + { + "x": 45, + "y": 43 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078682, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1780.484241, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 45, + "y": 43 + }, + { + "x": 58, + "y": 52 + } + ], + "tags": [] + }, + { + "id": 190078683, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1783.809754, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 58, + "y": 52 + }, + { + "x": 60, + "y": 93 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078685, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1787.424886, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 60, + "y": 93 + }, + { + "x": 73, + "y": 97 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078687, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1789.178034, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 73, + "y": 97 + }, + { + "x": 64, + "y": 83 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078688, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1791.986565, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 64, + "y": 83 + }, + { + "x": 72, + "y": 84 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079515, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1791.986565, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "36", + "y": "17" + }, + { + "x": "28", + "y": "16" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078689, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1793.589355, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 72, + "y": 84 + }, + { + "x": 67, + "y": 45 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078690, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1796.077371, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 67, + "y": 45 + }, + { + "x": 80, + "y": 18 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078692, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1797.210959, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 80, + "y": 18 + }, + { + "x": 88, + "y": 35 + } + ], + "tags": [] + }, + { + "id": 190078693, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1803.172783, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 88, + "y": 35 + }, + { + "x": 79, + "y": 31 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078694, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1805.546594, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 79, + "y": 31 + }, + { + "x": 82, + "y": 46 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078695, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1806.937982, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 82, + "y": 46 + }, + { + "x": 74, + "y": 43 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078696, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1807.524996, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 74, + "y": 43 + }, + { + "x": 88, + "y": 65 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079517, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1807.598559, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": "12", + "y": "35" + }, + { + "x": "36", + "y": "100" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078697, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1814.411875, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 64, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078698, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1823.180668, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 64, + "y": 0 + }, + { + "x": 89, + "y": 2 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078699, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1827.21188, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 89, + "y": 2 + }, + { + "x": 88, + "y": 15 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079520, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1828.995189, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "12", + "y": "85" + }, + { + "x": "14", + "y": "69" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079523, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1833.244615, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "14", + "y": "69" + }, + { + "x": "7", + "y": "48" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079524, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1835.549439, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": "7", + "y": "48" + }, + { + "x": "40", + "y": "5" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078700, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1841.48983, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 60, + "y": 95 + }, + { + "x": 61, + "y": 72 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078701, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1843.166609, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": 61, + "y": 72 + }, + { + "x": 70, + "y": 83 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078703, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1844.782223, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 70, + "y": 83 + }, + { + "x": 74, + "y": 91 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079526, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1844.863669, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "30", + "y": "17" + }, + { + "x": "26", + "y": "9" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079531, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1846.404765, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "26", + "y": "9" + }, + { + "x": "31", + "y": "9" + } + ], + "tags": [] + }, + { + "id": 190078704, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1848.753702, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 69, + "y": 91 + }, + { + "x": 80, + "y": 97 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078705, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1850.524812, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 80, + "y": 97 + }, + { + "x": 77, + "y": 93 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078706, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1851.840964, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 77, + "y": 93 + }, + { + "x": 73, + "y": 91 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079532, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1851.840964, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "23", + "y": "7" + }, + { + "x": "27", + "y": "9" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078707, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1852.924723, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 73, + "y": 91 + }, + { + "x": 67, + "y": 97 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079534, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1852.924723, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "27", + "y": "9" + }, + { + "x": "33", + "y": "3" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078708, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1855.15591, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 67, + "y": 97 + }, + { + "x": 82, + "y": 91 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078709, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1859.503233, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 82, + "y": 91 + }, + { + "x": 84, + "y": 90 + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079637, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1859.503233, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "18", + "y": "9" + }, + { + "x": "16", + "y": "10" + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078710, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1860.950898, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 84, + "y": 90 + }, + { + "x": 90, + "y": 95 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079638, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1860.950898, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "16", + "y": "10" + }, + { + "x": "10", + "y": "5" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079639, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1862.272812, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "10", + "y": "5" + }, + { + "x": "19", + "y": "2" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079640, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1863.556288, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "19", + "y": "2" + }, + { + "x": "15", + "y": "2" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078711, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1864.341542, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 81, + "y": 98 + }, + { + "x": 85, + "y": 98 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079641, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1864.94735, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "15", + "y": "2" + }, + { + "x": "24", + "y": "0" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080399, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1864.94735, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 85, + "y": 98 + }, + { + "x": 76, + "y": 100 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078712, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1867.641618, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 81, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079642, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1886.09193, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "24", + "y": "0" + }, + { + "x": "36", + "y": "4" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079643, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1887.136116, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "36", + "y": "4" + }, + { + "x": "37", + "y": "6" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078713, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1889.707194, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 63, + "y": 94 + }, + { + "x": 67, + "y": 88 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078714, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1890.481702, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 67, + "y": 88 + }, + { + "x": 55, + "y": 93 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078715, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1892.77558, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 55, + "y": 93 + }, + { + "x": 73, + "y": 77 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078716, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1894.503213, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 73, + "y": 77 + }, + { + "x": 61, + "y": 84 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079644, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1895.066116, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "27", + "y": "23" + }, + { + "x": "39", + "y": "16" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078717, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1896.511962, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 61, + "y": 84 + }, + { + "x": 70, + "y": 65 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078719, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1898.83298, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 70, + "y": 65 + }, + { + "x": 77, + "y": 38 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078720, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1901.115484, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 77, + "y": 38 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 2101 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079646, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1902.442062, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "12", + "y": "63" + }, + { + "x": "0", + "y": "95" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078721, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1908.285618, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 100, + "y": 5 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078722, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1926.267831, + "eventName": 3, + "subEventName": 30, + "positions": [ + { + "x": 100, + "y": 0 + }, + { + "x": 89, + "y": 49 + } + ], + "tags": [ + { + "id": 302 + }, + { + "id": 801 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078723, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1928.007424, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 89, + "y": 49 + }, + { + "x": 89, + "y": 48 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079647, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1928.007424, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "11", + "y": "51" + }, + { + "x": "11", + "y": "52" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078724, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1929.000054, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 89, + "y": 48 + }, + { + "x": 90, + "y": 46 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079648, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1929.000054, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "11", + "y": "52" + }, + { + "x": "10", + "y": "54" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078725, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1930.41706, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 90, + "y": 46 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 403 + }, + { + "id": 201 + }, + { + "id": 1203 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079821, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1930.96264, + "eventName": 9, + "subEventName": 91, + "positions": [ + { + "x": "0", + "y": "0" + }, + { + "x": "10", + "y": "54" + } + ], + "tags": [ + { + "id": 1203 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079650, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1930.975528, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "9", + "y": "66" + }, + { + "x": "61", + "y": "72" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078726, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1935.13643, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 39, + "y": 28 + }, + { + "x": 64, + "y": 29 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079651, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1935.13643, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "61", + "y": "72" + }, + { + "x": "36", + "y": "71" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078727, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1937.217579, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 64, + "y": 29 + }, + { + "x": 56, + "y": 0 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078728, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1942.523621, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 56, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079652, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1963.836455, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "36", + "y": "100" + }, + { + "x": "60", + "y": "94" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079653, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1966.260843, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "60", + "y": "94" + }, + { + "x": "42", + "y": "94" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079654, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1967.030696, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "42", + "y": "94" + }, + { + "x": "76", + "y": "92" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079655, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1969.530208, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "76", + "y": "92" + }, + { + "x": "72", + "y": "86" + } + ], + "tags": [ + { + "id": 602 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078730, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1970.115166, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 24, + "y": 8 + }, + { + "x": 28, + "y": 14 + } + ], + "tags": [ + { + "id": 601 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079656, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1971.168888, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "72", + "y": "86" + }, + { + "x": "76", + "y": "95" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078731, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1971.986685, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 24, + "y": 5 + }, + { + "x": 35, + "y": 32 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079657, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1973.77428, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "65", + "y": "68" + }, + { + "x": "85", + "y": "10" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078733, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1978.510575, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 15, + "y": 90 + }, + { + "x": 22, + "y": 100 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078734, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 1982.753453, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 22, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079658, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2000.260249, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "73", + "y": "0" + }, + { + "x": "90", + "y": "24" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079659, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2001.538173, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "90", + "y": "24" + }, + { + "x": "67", + "y": "24" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079660, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2004.085368, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "67", + "y": "24" + }, + { + "x": "79", + "y": "8" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078735, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2005.602931, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 21, + "y": 92 + }, + { + "x": 43, + "y": 78 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079661, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2005.602931, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "79", + "y": "8" + }, + { + "x": "57", + "y": "22" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079662, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2007.513311, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "57", + "y": "22" + }, + { + "x": "55", + "y": "15" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190079663, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2009.215542, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "55", + "y": "15" + }, + { + "x": "70", + "y": "4" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078736, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2013.252394, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 30, + "y": 96 + }, + { + "x": 27, + "y": 98 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079664, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2013.252394, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "70", + "y": "4" + }, + { + "x": "73", + "y": "2" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078737, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2014.128134, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 27, + "y": 98 + }, + { + "x": 23, + "y": 98 + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079665, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2014.128134, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "73", + "y": "2" + }, + { + "x": "77", + "y": "2" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078738, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2016.43182, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 23, + "y": 98 + }, + { + "x": 7, + "y": 84 + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079666, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2016.43182, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "77", + "y": "2" + }, + { + "x": "93", + "y": "16" + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078739, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2018.946418, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 7, + "y": 84 + }, + { + "x": 41, + "y": 100 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078740, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2022.02206, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 41, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079667, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2025.998559, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "56", + "y": "0" + }, + { + "x": "86", + "y": "4" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079668, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2028.695969, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "86", + "y": "4" + }, + { + "x": "85", + "y": "0" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078742, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2031.815706, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 15, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078743, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2049.207826, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 19, + "y": 100 + }, + { + "x": 38, + "y": 96 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079669, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2050.936053, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": "62", + "y": "4" + }, + { + "x": "66", + "y": "0" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078744, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2057.649313, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 34, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078745, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2064.336418, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 28, + "y": 100 + }, + { + "x": 37, + "y": 85 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078746, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2065.795776, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 37, + "y": 85 + }, + { + "x": 34, + "y": 97 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078747, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2066.349894, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 34, + "y": 97 + }, + { + "x": 41, + "y": 100 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079670, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2066.349894, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "66", + "y": "3" + }, + { + "x": "59", + "y": "0" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078748, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2070.892687, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 34, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079671, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2081.344041, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "59", + "y": "0" + }, + { + "x": "57", + "y": "13" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079672, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2083.682212, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "57", + "y": "13" + }, + { + "x": "32", + "y": "21" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079673, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2086.844171, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "32", + "y": "21" + }, + { + "x": "31", + "y": "56" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079674, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2089.001242, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "31", + "y": "56" + }, + { + "x": "52", + "y": "76" + } + ], + "tags": [] + }, + { + "id": 190079675, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2093.257623, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "52", + "y": "76" + }, + { + "x": "51", + "y": "85" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079676, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2095.14844, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "51", + "y": "85" + }, + { + "x": "28", + "y": "59" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079677, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2099.508242, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "28", + "y": "59" + }, + { + "x": "68", + "y": "2" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078749, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2102.72887, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 32, + "y": 98 + }, + { + "x": 28, + "y": 92 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079678, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2102.72887, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "68", + "y": "2" + }, + { + "x": "72", + "y": "8" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079679, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2105.227023, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "72", + "y": "8" + }, + { + "x": "91", + "y": "20" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079681, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2108.203772, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "91", + "y": "20" + }, + { + "x": "86", + "y": "28" + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078752, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2110.19561, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 6, + "y": 50 + }, + { + "x": 14, + "y": 72 + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078753, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2129.116797, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": 14, + "y": 72 + }, + { + "x": 65, + "y": 89 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078754, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2130.426943, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 65, + "y": 89 + }, + { + "x": 57, + "y": 98 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079682, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2130.987752, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "35", + "y": "11" + }, + { + "x": "43", + "y": "2" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078755, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2133.452773, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 57, + "y": 98 + }, + { + "x": 51, + "y": 90 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079683, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2133.452773, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "43", + "y": "2" + }, + { + "x": "49", + "y": "10" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078756, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2134.632351, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 51, + "y": 90 + }, + { + "x": 55, + "y": 100 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079684, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2134.632351, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "49", + "y": "10" + }, + { + "x": "45", + "y": "0" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078757, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2139.168841, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 54, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079685, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2151.521551, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "45", + "y": "0" + }, + { + "x": "39", + "y": "19" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079686, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2153.268131, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "39", + "y": "19" + }, + { + "x": "33", + "y": "37" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079687, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2155.665006, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "33", + "y": "37" + }, + { + "x": "63", + "y": "81" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079688, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2158.033334, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "63", + "y": "81" + }, + { + "x": "88", + "y": "92" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079690, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2162.81369, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "88", + "y": "92" + }, + { + "x": "87", + "y": "66" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079691, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2165.422279, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "87", + "y": "66" + }, + { + "x": "81", + "y": "88" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079692, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2166.932577, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "81", + "y": "88" + }, + { + "x": "71", + "y": "83" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079693, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2168.90965, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "71", + "y": "83" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078760, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2171.628689, + "eventName": 4, + "subEventName": 40, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 29, + "y": 17 + } + ], + "tags": [] + }, + { + "id": 190078761, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2185.975188, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 14, + "y": 56 + }, + { + "x": 68, + "y": 33 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078762, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2190.40427, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 68, + "y": 33 + }, + { + "x": 71, + "y": 59 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079694, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2190.40427, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "32", + "y": "67" + }, + { + "x": "29", + "y": "41" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079695, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2195.461597, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "29", + "y": "41" + }, + { + "x": "10", + "y": "48" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079696, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2197.513953, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "10", + "y": "48" + }, + { + "x": "37", + "y": "25" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079697, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2199.324283, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "37", + "y": "25" + }, + { + "x": "43", + "y": "8" + } + ], + "tags": [ + { + "id": 1302 + } + ] + }, + { + "id": 190078763, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2200.52985, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 57, + "y": 92 + }, + { + "x": 67, + "y": 93 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079698, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2201.952347, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "33", + "y": "7" + }, + { + "x": "38", + "y": "0" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078764, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2207.310583, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 62, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078765, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2209.874588, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 59, + "y": 100 + }, + { + "x": 31, + "y": 87 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078766, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2214.483887, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 31, + "y": 87 + }, + { + "x": 10, + "y": 77 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078767, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2217.963622, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": 10, + "y": 77 + }, + { + "x": 63, + "y": 88 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078768, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2220.885547, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 63, + "y": 88 + }, + { + "x": 57, + "y": 80 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079699, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2220.885547, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "37", + "y": "12" + }, + { + "x": "43", + "y": "20" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078769, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2222.287527, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 57, + "y": 80 + }, + { + "x": 62, + "y": 84 + } + ], + "tags": [] + }, + { + "id": 190078770, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2223.33173, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 62, + "y": 84 + }, + { + "x": 64, + "y": 88 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079700, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2223.33173, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "38", + "y": "16" + }, + { + "x": "36", + "y": "12" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079701, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2224.213058, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "36", + "y": "12" + }, + { + "x": "44", + "y": "3" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078771, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2227.855494, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 56, + "y": 97 + }, + { + "x": 51, + "y": 95 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079702, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2227.855494, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "44", + "y": "3" + }, + { + "x": "49", + "y": "5" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078772, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2230.194391, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": 51, + "y": 95 + }, + { + "x": 56, + "y": 97 + } + ], + "tags": [] + }, + { + "id": 190079703, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2250.370079, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": "45", + "y": "5" + }, + { + "x": "33", + "y": "59" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079704, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2252.479471, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "33", + "y": "59" + }, + { + "x": "54", + "y": "29" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079705, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2258.095128, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "54", + "y": "29" + }, + { + "x": "67", + "y": "1" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079706, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2259.883876, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "67", + "y": "1" + }, + { + "x": "72", + "y": "3" + } + ], + "tags": [] + }, + { + "id": 190078773, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2262.049544, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 28, + "y": 97 + }, + { + "x": 36, + "y": 92 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079707, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2262.873107, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "64", + "y": "8" + }, + { + "x": "64", + "y": "29" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078774, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2263.005405, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 36, + "y": 92 + }, + { + "x": 36, + "y": 71 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078775, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2264.877589, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 36, + "y": 71 + }, + { + "x": 37, + "y": 80 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078776, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2265.77664, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 37, + "y": 80 + }, + { + "x": 34, + "y": 66 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078777, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2266.887354, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 34, + "y": 66 + }, + { + "x": 47, + "y": 54 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079708, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2269.024773, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "53", + "y": "46" + }, + { + "x": "70", + "y": "58" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079709, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2270.172996, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "70", + "y": "58" + }, + { + "x": "55", + "y": "10" + } + ], + "tags": [] + }, + { + "id": 190078779, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2274.620906, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 45, + "y": 90 + }, + { + "x": 24, + "y": 87 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078778, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2274.73085, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 24, + "y": 87 + }, + { + "x": 52, + "y": 79 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078780, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2275.767826, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 52, + "y": 79 + }, + { + "x": 37, + "y": 94 + } + ], + "tags": [ + { + "id": 602 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079710, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2275.767826, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "48", + "y": "21" + }, + { + "x": "63", + "y": "6" + } + ], + "tags": [ + { + "id": 601 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078782, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2279.560869, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 37, + "y": 94 + }, + { + "x": 25, + "y": 100 + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079711, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2279.560869, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "63", + "y": "6" + }, + { + "x": "75", + "y": "0" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078783, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2288.184441, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 33, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078784, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2291.687224, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 25, + "y": 100 + }, + { + "x": 60, + "y": 93 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079712, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2294.4062, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": "40", + "y": "7" + }, + { + "x": "54", + "y": "0" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078785, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2300.723049, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 46, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078786, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2303.368499, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 41, + "y": 100 + }, + { + "x": 44, + "y": 97 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078788, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2304.85504, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 44, + "y": 97 + }, + { + "x": 53, + "y": 93 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078787, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2305.205847, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 53, + "y": 93 + }, + { + "x": 48, + "y": 87 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078789, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2306.511621, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 48, + "y": 87 + }, + { + "x": 40, + "y": 88 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079713, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2306.511621, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "52", + "y": "13" + }, + { + "x": "60", + "y": "12" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078790, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2309.48392, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 40, + "y": 88 + }, + { + "x": 41, + "y": 85 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079714, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2309.48392, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "60", + "y": "12" + }, + { + "x": "59", + "y": "15" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078791, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2310.849186, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": 41, + "y": 85 + }, + { + "x": 40, + "y": 88 + } + ], + "tags": [] + }, + { + "id": 190079715, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2336.594029, + "eventName": 3, + "subEventName": 32, + "positions": [ + { + "x": "63", + "y": "12" + }, + { + "x": "85", + "y": "59" + } + ], + "tags": [ + { + "id": 801 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078792, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2338.86224, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 15, + "y": 41 + }, + { + "x": 14, + "y": 39 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079716, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2338.86224, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "85", + "y": "59" + }, + { + "x": "86", + "y": "61" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078793, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2339.112406, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 14, + "y": 39 + }, + { + "x": 8, + "y": 37 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080400, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2339.112406, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "86", + "y": "61" + }, + { + "x": "92", + "y": "63" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079717, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2342.073074, + "eventName": 6, + "subEventName": "", + "positions": [ + { + "x": "92", + "y": "63" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [] + }, + { + "id": 190078794, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2374.206255, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 14, + "y": 34 + }, + { + "x": 65, + "y": 78 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078795, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2375.629987, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 65, + "y": 78 + }, + { + "x": 64, + "y": 75 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079719, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2375.629987, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "35", + "y": "22" + }, + { + "x": "36", + "y": "25" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078796, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2377.459214, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 64, + "y": 75 + }, + { + "x": 73, + "y": 71 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079720, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2378.374318, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "27", + "y": "29" + }, + { + "x": "66", + "y": "51" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078797, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2381.412901, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 34, + "y": 49 + }, + { + "x": 38, + "y": 44 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079721, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2381.412901, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "66", + "y": "51" + }, + { + "x": "62", + "y": "56" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078798, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2384.587669, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 38, + "y": 44 + }, + { + "x": 60, + "y": 24 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079722, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2386.000608, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "40", + "y": "76" + }, + { + "x": "66", + "y": "78" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079723, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2387.208046, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "66", + "y": "78" + }, + { + "x": "44", + "y": "68" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079724, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2390.635645, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "44", + "y": "68" + }, + { + "x": "33", + "y": "58" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079725, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2394.443899, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "33", + "y": "58" + }, + { + "x": "48", + "y": "21" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079726, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2398.754699, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "48", + "y": "21" + }, + { + "x": "53", + "y": "4" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079727, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2402.845411, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "53", + "y": "4" + }, + { + "x": "33", + "y": "6" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078800, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2406.888015, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 67, + "y": 94 + }, + { + "x": 71, + "y": 89 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079728, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2406.888015, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "33", + "y": "6" + }, + { + "x": "29", + "y": "11" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079729, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2409.734226, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "29", + "y": "11" + }, + { + "x": "9", + "y": "42" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079730, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2413.931605, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "9", + "y": "42" + }, + { + "x": "46", + "y": "93" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078801, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2418.08721, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 54, + "y": 7 + }, + { + "x": 59, + "y": 16 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079731, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2418.08721, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "46", + "y": "93" + }, + { + "x": "41", + "y": "84" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079732, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2420.290482, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "41", + "y": "84" + }, + { + "x": "44", + "y": "65" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079733, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2422.212938, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "44", + "y": "65" + }, + { + "x": "74", + "y": "85" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078802, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2424.074362, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 26, + "y": 15 + }, + { + "x": 35, + "y": 31 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078803, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2426.582621, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 35, + "y": 31 + }, + { + "x": 36, + "y": 18 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078804, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2427.481878, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 36, + "y": 18 + }, + { + "x": 37, + "y": 4 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079734, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2431.472791, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "63", + "y": "96" + }, + { + "x": "72", + "y": "75" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078806, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2433.215121, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 28, + "y": 25 + }, + { + "x": 31, + "y": 26 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078808, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2435.058104, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 31, + "y": 26 + }, + { + "x": 30, + "y": 31 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078809, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2437.442672, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 30, + "y": 31 + }, + { + "x": 30, + "y": 38 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079735, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2437.442672, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "69", + "y": "74" + }, + { + "x": "70", + "y": "69" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080401, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2437.442672, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "70", + "y": "69" + }, + { + "x": "70", + "y": "62" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078807, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2440.536427, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 30, + "y": 38 + }, + { + "x": 30, + "y": 82 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078810, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2443.062283, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 30, + "y": 82 + }, + { + "x": 38, + "y": 100 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078811, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2447.819146, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 38, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079736, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2466.585254, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "50", + "y": "0" + }, + { + "x": "68", + "y": "70" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078812, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2469.384807, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 32, + "y": 30 + }, + { + "x": 66, + "y": 97 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078813, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2473.032826, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 66, + "y": 97 + }, + { + "x": 67, + "y": 100 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078814, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2477.184108, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 67, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079737, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2494.020975, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "32", + "y": "0" + }, + { + "x": "38", + "y": "4" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078815, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2495.467367, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 62, + "y": 96 + }, + { + "x": 53, + "y": 89 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079738, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2495.467367, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "38", + "y": "4" + }, + { + "x": "47", + "y": "11" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078816, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2497.500072, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 53, + "y": 89 + }, + { + "x": 65, + "y": 96 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078817, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2498.295728, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 65, + "y": 96 + }, + { + "x": 56, + "y": 97 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079739, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2498.295728, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "35", + "y": "4" + }, + { + "x": "44", + "y": "3" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078818, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2501.323767, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 56, + "y": 97 + }, + { + "x": 70, + "y": 100 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078819, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2507.243646, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 70, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079740, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2514.419844, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "31", + "y": "0" + }, + { + "x": "59", + "y": "4" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079741, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2515.473774, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "59", + "y": "4" + }, + { + "x": "58", + "y": "5" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078820, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2515.519122, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 41, + "y": 96 + }, + { + "x": 42, + "y": 95 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078821, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2516.837437, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 42, + "y": 95 + }, + { + "x": 64, + "y": 83 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079742, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2517.636641, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "36", + "y": "17" + }, + { + "x": "63", + "y": "13" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078822, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2519.380381, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 37, + "y": 87 + }, + { + "x": 47, + "y": 71 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079743, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2519.380381, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "63", + "y": "13" + }, + { + "x": "53", + "y": "29" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079744, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2521.901098, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "53", + "y": "29" + }, + { + "x": "62", + "y": "20" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078823, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2523.843502, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 38, + "y": 80 + }, + { + "x": 64, + "y": 82 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078824, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2524.929417, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 64, + "y": 82 + }, + { + "x": 58, + "y": 72 + } + ], + "tags": [] + }, + { + "id": 190078825, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2525.801524, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 58, + "y": 72 + }, + { + "x": 66, + "y": 63 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079745, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2525.801524, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "42", + "y": "28" + }, + { + "x": "34", + "y": "37" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078828, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2527.703751, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 66, + "y": 63 + }, + { + "x": 66, + "y": 57 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079746, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2527.870075, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "34", + "y": "37" + }, + { + "x": "34", + "y": "43" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078829, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2529.245542, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 66, + "y": 57 + }, + { + "x": 77, + "y": 41 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078831, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2532.852986, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 77, + "y": 41 + }, + { + "x": 88, + "y": 33 + } + ], + "tags": [ + { + "id": 302 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078832, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2534.503759, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 88, + "y": 33 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 201 + }, + { + "id": 1210 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078833, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2542.860481, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 100, + "y": 62 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079748, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2561.302595, + "eventName": 3, + "subEventName": 34, + "positions": [ + { + "x": "0", + "y": "0" + }, + { + "x": "70", + "y": "93" + } + ], + "tags": [] + }, + { + "id": 190079749, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2567.339692, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "70", + "y": "93" + }, + { + "x": "54", + "y": "90" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079750, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2569.342982, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "54", + "y": "90" + }, + { + "x": "63", + "y": "71" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079751, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2570.170318, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "63", + "y": "71" + }, + { + "x": "65", + "y": "60" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079752, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2572.798173, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "65", + "y": "60" + }, + { + "x": "56", + "y": "50" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079753, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2574.56698, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "56", + "y": "50" + }, + { + "x": "57", + "y": "11" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079754, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2576.76328, + "eventName": 7, + "subEventName": 70, + "positions": [ + { + "x": "57", + "y": "11" + }, + { + "x": "74", + "y": "19" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079755, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2579.494347, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "74", + "y": "19" + }, + { + "x": "83", + "y": "47" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078835, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2581.008346, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 17, + "y": 53 + }, + { + "x": 36, + "y": 48 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079756, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2583.275199, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "64", + "y": "52" + }, + { + "x": "71", + "y": "75" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079757, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2586.217095, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "71", + "y": "75" + }, + { + "x": "64", + "y": "57" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079758, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2588.190771, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "64", + "y": "57" + }, + { + "x": "69", + "y": "55" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079759, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2589.018735, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "69", + "y": "55" + }, + { + "x": "68", + "y": "76" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079760, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2590.396621, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "68", + "y": "76" + }, + { + "x": "73", + "y": "66" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079761, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2591.475959, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "73", + "y": "66" + }, + { + "x": "74", + "y": "82" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079762, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2592.380946, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "74", + "y": "82" + }, + { + "x": "77", + "y": "61" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078836, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2593.758745, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 23, + "y": 39 + }, + { + "x": 23, + "y": 37 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079763, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2593.758745, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "77", + "y": "61" + }, + { + "x": "77", + "y": "63" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078837, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2594.658796, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 23, + "y": 37 + }, + { + "x": 22, + "y": 35 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079764, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2594.658796, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "77", + "y": "63" + }, + { + "x": "78", + "y": "65" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078838, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2595.686574, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 22, + "y": 35 + }, + { + "x": 13, + "y": 44 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078839, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2597.179297, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 13, + "y": 44 + }, + { + "x": 33, + "y": 31 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078840, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2598.979111, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 33, + "y": 31 + }, + { + "x": 31, + "y": 39 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079765, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2598.979111, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "67", + "y": "69" + }, + { + "x": "69", + "y": "61" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079766, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2600.726984, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "69", + "y": "61" + }, + { + "x": "55", + "y": "49" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079767, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2602.627428, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "55", + "y": "49" + }, + { + "x": "54", + "y": "21" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079768, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2606.836877, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "54", + "y": "21" + }, + { + "x": "34", + "y": "38" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079769, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2610.239211, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "34", + "y": "38" + }, + { + "x": "41", + "y": "71" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079770, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2612.263347, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "41", + "y": "71" + }, + { + "x": "52", + "y": "69" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079771, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2614.451023, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "52", + "y": "69" + }, + { + "x": "56", + "y": "76" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078841, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2617.562745, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 44, + "y": 24 + }, + { + "x": 54, + "y": 37 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078843, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2620.192107, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 54, + "y": 37 + }, + { + "x": 71, + "y": 43 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078844, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2623.012025, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 71, + "y": 43 + }, + { + "x": 71, + "y": 34 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079772, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2623.012025, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "29", + "y": "57" + }, + { + "x": "29", + "y": "66" + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079773, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2625.259952, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "29", + "y": "66" + }, + { + "x": "29", + "y": "44" + } + ], + "tags": [] + }, + { + "id": 190078846, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2631.12842, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 71, + "y": 56 + }, + { + "x": 67, + "y": 64 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078847, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2634.665927, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 67, + "y": 64 + }, + { + "x": 82, + "y": 20 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078848, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2639.637065, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 82, + "y": 20 + }, + { + "x": 70, + "y": 40 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078849, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2640.037203, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 70, + "y": 40 + }, + { + "x": 82, + "y": 36 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078850, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2641.749058, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 82, + "y": 36 + }, + { + "x": 82, + "y": 32 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078851, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2642.531764, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 82, + "y": 32 + }, + { + "x": 90, + "y": 31 + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079774, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2642.531764, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "18", + "y": "68" + }, + { + "x": "10", + "y": "69" + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 1601 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079775, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2643.419963, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "10", + "y": "69" + }, + { + "x": "24", + "y": "71" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079776, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2645.02236, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "24", + "y": "71" + }, + { + "x": "29", + "y": "66" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078852, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2646.408499, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 71, + "y": 34 + }, + { + "x": 78, + "y": 29 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079777, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2646.408499, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "29", + "y": "66" + }, + { + "x": "22", + "y": "71" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078854, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2647.907685, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 78, + "y": 29 + }, + { + "x": 76, + "y": 25 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079779, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2647.907685, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "22", + "y": "71" + }, + { + "x": "24", + "y": "75" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079780, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2648.161261, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "24", + "y": "75" + }, + { + "x": "27", + "y": "69" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078855, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2651.334202, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 73, + "y": 31 + }, + { + "x": 79, + "y": 31 + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079781, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2651.334202, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "27", + "y": "69" + }, + { + "x": "21", + "y": "69" + } + ], + "tags": [ + { + "id": 2001 + }, + { + "id": 504 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078857, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2655.540168, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 79, + "y": 31 + }, + { + "x": 93, + "y": 25 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078858, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2656.677308, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 93, + "y": 25 + }, + { + "x": 90, + "y": 38 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078859, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2657.066088, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 90, + "y": 38 + }, + { + "x": 94, + "y": 26 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078860, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2657.702977, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 94, + "y": 26 + }, + { + "x": 94, + "y": 23 + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079782, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2657.702977, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "6", + "y": "74" + }, + { + "x": "6", + "y": "77" + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079783, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2658.962943, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "6", + "y": "77" + }, + { + "x": "23", + "y": "70" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078861, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2662.089787, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 77, + "y": 30 + }, + { + "x": 71, + "y": 22 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078862, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2663.210876, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 71, + "y": 22 + }, + { + "x": 69, + "y": 37 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078863, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2664.839403, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 69, + "y": 37 + }, + { + "x": 89, + "y": 42 + } + ], + "tags": [ + { + "id": 901 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079784, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2666.173129, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "11", + "y": "58" + }, + { + "x": "29", + "y": "52" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079785, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2667.376468, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "29", + "y": "52" + }, + { + "x": "14", + "y": "90" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079786, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2670.309157, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "14", + "y": "90" + }, + { + "x": "33", + "y": "93" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078865, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2672.280996, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 67, + "y": 7 + }, + { + "x": 66, + "y": 11 + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079787, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2672.548402, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "33", + "y": "93" + }, + { + "x": "34", + "y": "89" + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078866, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2673.711869, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 66, + "y": 11 + }, + { + "x": 81, + "y": 24 + } + ], + "tags": [] + }, + { + "id": 190078867, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2676.845687, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": 81, + "y": 24 + }, + { + "x": 92, + "y": 90 + } + ], + "tags": [ + { + "id": 901 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079788, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2681.032315, + "eventName": 7, + "subEventName": 70, + "positions": [ + { + "x": "8", + "y": "10" + }, + { + "x": "45", + "y": "6" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078870, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2687.176085, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 55, + "y": 94 + }, + { + "x": 53, + "y": 96 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080403, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2687.176085, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "45", + "y": "6" + }, + { + "x": "47", + "y": "4" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079789, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2687.807252, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "47", + "y": "4" + }, + { + "x": "49", + "y": "6" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079790, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2689.546258, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "49", + "y": "6" + }, + { + "x": "41", + "y": "22" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079791, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2691.893208, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "41", + "y": "22" + }, + { + "x": "49", + "y": "59" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079792, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2695.680893, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "49", + "y": "59" + }, + { + "x": "55", + "y": "72" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079793, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2701.099188, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "55", + "y": "72" + }, + { + "x": "37", + "y": "23" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079794, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2704.109737, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "37", + "y": "23" + }, + { + "x": "57", + "y": "4" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079795, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2707.52307, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "57", + "y": "4" + }, + { + "x": "58", + "y": "21" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079796, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2709.589691, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "58", + "y": "21" + }, + { + "x": "39", + "y": "25" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079797, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2713.909338, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "39", + "y": "25" + }, + { + "x": "33", + "y": "58" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079798, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2716.115353, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "33", + "y": "58" + }, + { + "x": "55", + "y": "57" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079799, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2721.541648, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "55", + "y": "57" + }, + { + "x": "58", + "y": "39" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079800, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2723.469904, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "58", + "y": "39" + }, + { + "x": "64", + "y": "4" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079801, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2728.69653, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "64", + "y": "4" + }, + { + "x": "55", + "y": "27" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079802, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2731.116432, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "55", + "y": "27" + }, + { + "x": "72", + "y": "5" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078871, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2734.916159, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 28, + "y": 95 + }, + { + "x": 31, + "y": 89 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079803, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2735.972408, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "72", + "y": "5" + }, + { + "x": "69", + "y": "11" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079804, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2737.251762, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "69", + "y": "11" + }, + { + "x": "85", + "y": "29" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078872, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2739.761373, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 7, + "y": 49 + }, + { + "x": 15, + "y": 71 + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078873, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2754.689704, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": 15, + "y": 71 + }, + { + "x": 67, + "y": 91 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079805, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2758.220291, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "33", + "y": "9" + }, + { + "x": "45", + "y": "4" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079806, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2760.716182, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "45", + "y": "4" + }, + { + "x": "36", + "y": "9" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078874, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2761.997745, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 64, + "y": 91 + }, + { + "x": 63, + "y": 98 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078875, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2763.476509, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 63, + "y": 98 + }, + { + "x": 59, + "y": 79 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078876, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2763.837071, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 59, + "y": 79 + }, + { + "x": 70, + "y": 87 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078877, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2764.823807, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 70, + "y": 87 + }, + { + "x": 63, + "y": 78 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079808, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2765.386556, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "37", + "y": "22" + }, + { + "x": "34", + "y": "26" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078878, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2767.2974, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 64, + "y": 92 + }, + { + "x": 66, + "y": 74 + } + ], + "tags": [] + }, + { + "id": 190079809, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2767.888311, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "34", + "y": "26" + }, + { + "x": "37", + "y": "19" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078879, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2768.536459, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 66, + "y": 74 + }, + { + "x": 63, + "y": 81 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079810, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2769.020044, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "37", + "y": "19" + }, + { + "x": "36", + "y": "6" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078880, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2769.831278, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 64, + "y": 94 + }, + { + "x": 62, + "y": 93 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080404, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2769.831278, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "36", + "y": "6" + }, + { + "x": "38", + "y": "7" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079811, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2770.587871, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "38", + "y": "7" + }, + { + "x": "80", + "y": "13" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078882, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2773.661721, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 20, + "y": 87 + }, + { + "x": 23, + "y": 87 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079812, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2774.493251, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "80", + "y": "13" + }, + { + "x": "77", + "y": "13" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078883, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2775.203011, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": 23, + "y": 87 + }, + { + "x": 20, + "y": 87 + } + ], + "tags": [ + { + "id": 1702 + } + ] + }, + { + "id": 190079813, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2831.964569, + "eventName": 3, + "subEventName": 32, + "positions": [ + { + "x": "79", + "y": "17" + }, + { + "x": "90", + "y": "38" + } + ], + "tags": [ + { + "id": 302 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079814, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2832.907678, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": "90", + "y": "38" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 403 + }, + { + "id": 201 + }, + { + "id": 1207 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078884, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2834.975086, + "eventName": 9, + "subEventName": 90, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 10, + "y": 62 + } + ], + "tags": [ + { + "id": 1207 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078885, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2852.076898, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 0, + "y": 50 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079815, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2855.094338, + "eventName": 3, + "subEventName": 30, + "positions": [ + { + "x": "100", + "y": "3" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078886, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2856.102781, + "eventName": 4, + "subEventName": 40, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 0, + "y": 97 + } + ], + "tags": [] + }, + { + "id": 190078887, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2857.798035, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 6, + "y": 53 + }, + { + "x": 2, + "y": 43 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079816, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2857.798035, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "94", + "y": "47" + }, + { + "x": "98", + "y": "57" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078888, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2858.127376, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 2, + "y": 43 + }, + { + "x": 9, + "y": 43 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079817, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2858.127376, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "98", + "y": "57" + }, + { + "x": "91", + "y": "57" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079818, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2858.363088, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "91", + "y": "57" + }, + { + "x": "97", + "y": "45" + } + ], + "tags": [ + { + "id": 301 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078889, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2858.483727, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 3, + "y": 55 + }, + { + "x": 2, + "y": 52 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079819, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2858.483727, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "97", + "y": "45" + }, + { + "x": "98", + "y": "48" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079820, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2859.850126, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": "98", + "y": "48" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 101 + }, + { + "id": 402 + }, + { + "id": 201 + }, + { + "id": 1205 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078890, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "1H", + "eventSec": 2863.708369, + "eventName": 9, + "subEventName": 90, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 2, + "y": 52 + } + ], + "tags": [ + { + "id": 101 + }, + { + "id": 1205 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079822, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 0, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "50", + "y": "49" + }, + { + "x": "34", + "y": "49" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079823, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 4.1848799999998, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "34", + "y": "49" + }, + { + "x": "70", + "y": "96" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078891, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 7.7868109999999, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 30, + "y": 4 + }, + { + "x": 37, + "y": 0 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078892, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 10.745766, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 37, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079824, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 14.345077, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "66", + "y": "100" + }, + { + "x": "77", + "y": "98" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079825, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 15.472188, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "77", + "y": "98" + }, + { + "x": "76", + "y": "97" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080405, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 15.472188, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 23, + "y": 2 + }, + { + "x": 24, + "y": 3 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078893, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 17.416618, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 24, + "y": 3 + }, + { + "x": 36, + "y": 2 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079826, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 17.552187, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "64", + "y": "98" + }, + { + "x": "65", + "y": "100" + } + ], + "tags": [] + }, + { + "id": 190078894, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 23.056068, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 35, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078895, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 39.913814, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 38, + "y": 0 + }, + { + "x": 59, + "y": 11 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079827, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 41.102142, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "41", + "y": "89" + }, + { + "x": "53", + "y": "97" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079828, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 42.011704, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "53", + "y": "97" + }, + { + "x": "58", + "y": "92" + } + ], + "tags": [] + }, + { + "id": 190078896, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 43.685733, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 42, + "y": 8 + }, + { + "x": 57, + "y": 25 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078897, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 45.974719, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 57, + "y": 25 + }, + { + "x": 83, + "y": 54 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078899, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 50.61476, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 83, + "y": 54 + }, + { + "x": 93, + "y": 76 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078900, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 53.754212, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 93, + "y": 76 + }, + { + "x": 76, + "y": 75 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078901, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 56.169801, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 76, + "y": 75 + }, + { + "x": 67, + "y": 65 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078902, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 57.353484, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 67, + "y": 65 + }, + { + "x": 91, + "y": 36 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078904, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 58.760643, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 91, + "y": 36 + }, + { + "x": 89, + "y": 26 + } + ], + "tags": [ + { + "id": 302 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079829, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 58.760643, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "9", + "y": "64" + }, + { + "x": "11", + "y": "74" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078905, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 61.119903, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 89, + "y": 26 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 201 + }, + { + "id": 1204 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079830, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 62.355979, + "eventName": 9, + "subEventName": 91, + "positions": [ + { + "x": "0", + "y": "0" + }, + { + "x": "11", + "y": "74" + } + ], + "tags": [ + { + "id": 1204 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079831, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 64.974795, + "eventName": 8, + "subEventName": 81, + "positions": [ + { + "x": "13", + "y": "63" + }, + { + "x": "29", + "y": "17" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079832, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 67.401059, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "29", + "y": "17" + }, + { + "x": "46", + "y": "13" + } + ], + "tags": [] + }, + { + "id": 190079833, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 70.836777, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "46", + "y": "13" + }, + { + "x": "82", + "y": "72" + } + ], + "tags": [ + { + "id": 901 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078906, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 77.090829, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 18, + "y": 28 + }, + { + "x": 32, + "y": 16 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078907, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 80.08062, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 32, + "y": 16 + }, + { + "x": 11, + "y": 37 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078908, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 83.13436, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 11, + "y": 37 + }, + { + "x": 25, + "y": 14 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078909, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 85.475374, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 25, + "y": 14 + }, + { + "x": 36, + "y": 5 + } + ], + "tags": [] + }, + { + "id": 190078910, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 89.564959, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 36, + "y": 5 + }, + { + "x": 34, + "y": 2 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078911, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 91.145538, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 34, + "y": 2 + }, + { + "x": 62, + "y": 42 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079834, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 92.759924, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "38", + "y": "58" + }, + { + "x": "86", + "y": "67" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078912, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 100.035541, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 14, + "y": 33 + }, + { + "x": 15, + "y": 55 + } + ], + "tags": [] + }, + { + "id": 190078913, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 110.487252, + "eventName": 8, + "subEventName": 81, + "positions": [ + { + "x": 15, + "y": 55 + }, + { + "x": 30, + "y": 6 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078914, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 112.560457, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 30, + "y": 6 + }, + { + "x": 28, + "y": 5 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079836, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 114.316204, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "72", + "y": "95" + }, + { + "x": "70", + "y": "100" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078915, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 119.298272, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 30, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078916, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 136.550153, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 31, + "y": 0 + }, + { + "x": 53, + "y": 7 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079837, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 137.350103, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "47", + "y": "93" + }, + { + "x": "65", + "y": "93" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078917, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 139.039456, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 35, + "y": 7 + }, + { + "x": 65, + "y": 0 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078918, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 140.614305, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 65, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079838, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 155.718934, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "41", + "y": "100" + }, + { + "x": "55", + "y": "97" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078919, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 157.438926, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 45, + "y": 3 + }, + { + "x": 36, + "y": 4 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079839, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 157.438926, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "55", + "y": "97" + }, + { + "x": "64", + "y": "96" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078920, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 159.541715, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 36, + "y": 4 + }, + { + "x": 40, + "y": 21 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078921, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 161.377094, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 40, + "y": 21 + }, + { + "x": 31, + "y": 37 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078922, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 162.909169, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 31, + "y": 37 + }, + { + "x": 41, + "y": 52 + } + ], + "tags": [] + }, + { + "id": 190078923, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 165.735152, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 41, + "y": 52 + }, + { + "x": 65, + "y": 43 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079840, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 165.951818, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "35", + "y": "57" + }, + { + "x": "47", + "y": "51" + } + ], + "tags": [ + { + "id": 601 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078924, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 166.998975, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 65, + "y": 43 + }, + { + "x": 53, + "y": 49 + } + ], + "tags": [ + { + "id": 602 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079841, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 167.762285, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "47", + "y": "51" + }, + { + "x": "61", + "y": "67" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078926, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 170.082583, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 39, + "y": 33 + }, + { + "x": 29, + "y": 44 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079842, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 170.082583, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "61", + "y": "67" + }, + { + "x": "71", + "y": "56" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078927, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 171.937718, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 29, + "y": 44 + }, + { + "x": 34, + "y": 31 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079843, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 171.937718, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "71", + "y": "56" + }, + { + "x": "66", + "y": "69" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078928, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 173.867123, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 34, + "y": 31 + }, + { + "x": 39, + "y": 8 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078929, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 176.11952, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 39, + "y": 8 + }, + { + "x": 40, + "y": 4 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079844, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 176.11952, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "61", + "y": "92" + }, + { + "x": "60", + "y": "96" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078930, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 177.685928, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 40, + "y": 4 + }, + { + "x": 46, + "y": 0 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079845, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 177.685928, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "60", + "y": "96" + }, + { + "x": "54", + "y": "100" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078931, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 182.006071, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 44, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079846, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 183.643479, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "54", + "y": "100" + }, + { + "x": "67", + "y": "88" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079854, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 184.83812, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "67", + "y": "88" + }, + { + "x": "73", + "y": "87" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078932, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 185.311757, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 27, + "y": 13 + }, + { + "x": 25, + "y": 13 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078933, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 186.37635, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 25, + "y": 13 + }, + { + "x": 33, + "y": 8 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079851, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 186.37635, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "73", + "y": "87" + }, + { + "x": "75", + "y": "87" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080406, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 186.37635, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "75", + "y": "87" + }, + { + "x": "67", + "y": "92" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078934, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 187.390071, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 33, + "y": 8 + }, + { + "x": 34, + "y": 18 + } + ], + "tags": [ + { + "id": 602 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079850, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 187.390071, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "67", + "y": "92" + }, + { + "x": "66", + "y": "82" + } + ], + "tags": [ + { + "id": 601 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079853, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 188.438422, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": "66", + "y": "82" + }, + { + "x": "78", + "y": "84" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078936, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 189.962814, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 22, + "y": 16 + }, + { + "x": 23, + "y": 16 + } + ], + "tags": [ + { + "id": 601 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080407, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 189.962814, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "78", + "y": "84" + }, + { + "x": "77", + "y": "84" + } + ], + "tags": [ + { + "id": 602 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078937, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 192.276065, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 23, + "y": 16 + }, + { + "x": 30, + "y": 0 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078938, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 199.209637, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 30, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079855, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 205.802339, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "66", + "y": "100" + }, + { + "x": "62", + "y": "73" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079847, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 207.730389, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "62", + "y": "73" + }, + { + "x": "49", + "y": "82" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079852, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 212.683369, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "49", + "y": "82" + }, + { + "x": "53", + "y": "36" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079849, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 217.881729, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "53", + "y": "36" + }, + { + "x": "63", + "y": "31" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079848, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 219.429421, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "63", + "y": "31" + }, + { + "x": "56", + "y": "47" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079858, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 220.763958, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "56", + "y": "47" + }, + { + "x": "40", + "y": "30" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079857, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 223.008294, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "40", + "y": "30" + }, + { + "x": "56", + "y": "73" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079856, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 227.56139, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "56", + "y": "73" + }, + { + "x": "73", + "y": "80" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078939, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 229.234181, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 27, + "y": 20 + }, + { + "x": 45, + "y": 32 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078940, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 231.677955, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 45, + "y": 32 + }, + { + "x": 62, + "y": 20 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078941, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 234.332161, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 62, + "y": 20 + }, + { + "x": 69, + "y": 24 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079859, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 234.332161, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "38", + "y": "80" + }, + { + "x": "31", + "y": "76" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078942, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 235.876233, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 69, + "y": 24 + }, + { + "x": 65, + "y": 26 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079860, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 235.876233, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "31", + "y": "76" + }, + { + "x": "35", + "y": "74" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079861, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 237.255589, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "35", + "y": "74" + }, + { + "x": "40", + "y": "69" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078946, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 237.94483, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 60, + "y": 31 + }, + { + "x": 61, + "y": 34 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079862, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 237.94483, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "40", + "y": "69" + }, + { + "x": "39", + "y": "66" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078947, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 239.834851, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": 61, + "y": 34 + }, + { + "x": 60, + "y": 31 + } + ], + "tags": [] + }, + { + "id": 190079863, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 243.139304, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": "38", + "y": "76" + }, + { + "x": "36", + "y": "96" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079864, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 246.018691, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "36", + "y": "96" + }, + { + "x": "73", + "y": "91" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078948, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 248.117482, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 27, + "y": 9 + }, + { + "x": 30, + "y": 2 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079865, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 248.117482, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "73", + "y": "91" + }, + { + "x": "70", + "y": "98" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078950, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 252.16676, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 30, + "y": 2 + }, + { + "x": 30, + "y": 22 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078951, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 254.305975, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 30, + "y": 22 + }, + { + "x": 25, + "y": 54 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078952, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 257.931193, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 25, + "y": 54 + }, + { + "x": 36, + "y": 68 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079866, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 259.529586, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "64", + "y": "32" + }, + { + "x": "64", + "y": "32" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078953, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 259.553942, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 36, + "y": 68 + }, + { + "x": 36, + "y": 68 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078954, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 260.517605, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 36, + "y": 68 + }, + { + "x": 35, + "y": 52 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078955, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 260.97529, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 35, + "y": 52 + }, + { + "x": 27, + "y": 77 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078956, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 264.473502, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 27, + "y": 77 + }, + { + "x": 23, + "y": 61 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078957, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 266.365661, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 23, + "y": 61 + }, + { + "x": 47, + "y": 93 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079867, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 270.118373, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "53", + "y": "7" + }, + { + "x": "74", + "y": "21" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078958, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 271.875285, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 26, + "y": 79 + }, + { + "x": 35, + "y": 79 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078959, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 273.939345, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 35, + "y": 79 + }, + { + "x": 44, + "y": 82 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078960, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 274.811387, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 44, + "y": 82 + }, + { + "x": 42, + "y": 77 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079868, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 274.811387, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "56", + "y": "18" + }, + { + "x": "58", + "y": "23" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078962, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 276.016215, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 42, + "y": 77 + }, + { + "x": 42, + "y": 60 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078961, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 276.986258, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 42, + "y": 60 + }, + { + "x": 59, + "y": 67 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078963, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 278.974603, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 59, + "y": 67 + }, + { + "x": 57, + "y": 100 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078964, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 283.124202, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 57, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079869, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 290.249033, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "37", + "y": "0" + }, + { + "x": "27", + "y": "16" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079870, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 294.137972, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "27", + "y": "16" + }, + { + "x": "35", + "y": "37" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079871, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 295.786589, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "35", + "y": "37" + }, + { + "x": "31", + "y": "58" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079872, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 297.652457, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "31", + "y": "58" + }, + { + "x": "12", + "y": "46" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079873, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 299.8429, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "12", + "y": "46" + }, + { + "x": "40", + "y": "14" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078965, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 302.217156, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 60, + "y": 86 + }, + { + "x": 60, + "y": 86 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078966, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 302.538799, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 60, + "y": 86 + }, + { + "x": 60, + "y": 84 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079874, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 302.538799, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "40", + "y": "14" + }, + { + "x": "40", + "y": "14" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080408, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 302.538799, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "40", + "y": "14" + }, + { + "x": "40", + "y": "16" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078967, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 303.97617, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": 60, + "y": 84 + }, + { + "x": 60, + "y": 86 + } + ], + "tags": [] + }, + { + "id": 190079875, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 383.355906, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": "35", + "y": "12" + }, + { + "x": "70", + "y": "93" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078968, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 386.306982, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 30, + "y": 7 + }, + { + "x": 44, + "y": 0 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078969, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 390.913364, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 44, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079876, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 395.105203, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "63", + "y": "100" + }, + { + "x": "75", + "y": "95" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078970, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 396.577177, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 25, + "y": 5 + }, + { + "x": 16, + "y": 6 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079877, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 396.577177, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "75", + "y": "95" + }, + { + "x": "84", + "y": "94" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078972, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 400.48826, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 16, + "y": 6 + }, + { + "x": 7, + "y": 9 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079878, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 400.48826, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "84", + "y": "94" + }, + { + "x": "93", + "y": "91" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078974, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 402.952315, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 7, + "y": 9 + }, + { + "x": 7, + "y": 6 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079879, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 403.414097, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "93", + "y": "94" + }, + { + "x": "94", + "y": "100" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078975, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 411.743325, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 6, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190078976, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 414.727877, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 7, + "y": 0 + }, + { + "x": 17, + "y": 2 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078977, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 416.024449, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 17, + "y": 2 + }, + { + "x": 6, + "y": 3 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078978, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 417.354875, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 6, + "y": 3 + }, + { + "x": 18, + "y": 0 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078979, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 422.923502, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 18, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079880, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 424.257202, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "77", + "y": "100" + }, + { + "x": "81", + "y": "94" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079881, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 425.216265, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "81", + "y": "94" + }, + { + "x": "77", + "y": "95" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079882, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 426.249853, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "77", + "y": "95" + }, + { + "x": "75", + "y": "87" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079883, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 426.472378, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "75", + "y": "87" + }, + { + "x": "80", + "y": "92" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079884, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 427.728844, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "80", + "y": "92" + }, + { + "x": "88", + "y": "97" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078980, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 429.364709, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 12, + "y": 3 + }, + { + "x": 17, + "y": 2 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079885, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 429.364709, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "88", + "y": "97" + }, + { + "x": "83", + "y": "98" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078981, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 430.770281, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 17, + "y": 2 + }, + { + "x": 13, + "y": 2 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079886, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 430.770281, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "83", + "y": "98" + }, + { + "x": "87", + "y": "98" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078982, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 431.090144, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 13, + "y": 2 + }, + { + "x": 19, + "y": 3 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079887, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 431.090144, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "87", + "y": "98" + }, + { + "x": "81", + "y": "97" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078983, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 432.704823, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 19, + "y": 3 + }, + { + "x": 21, + "y": 4 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080409, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 432.704823, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "81", + "y": "97" + }, + { + "x": "79", + "y": "96" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078984, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 434.118167, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 21, + "y": 4 + }, + { + "x": 21, + "y": 18 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078985, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 434.855186, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 21, + "y": 18 + }, + { + "x": 26, + "y": 34 + } + ], + "tags": [ + { + "id": 2001 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079888, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 436.122329, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": "74", + "y": "66" + }, + { + "x": "91", + "y": "67" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 901 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079889, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 438.752138, + "eventName": 6, + "subEventName": "", + "positions": [ + { + "x": "91", + "y": "67" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [] + }, + { + "id": 190078986, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 465.703602, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 7, + "y": 29 + }, + { + "x": 68, + "y": 62 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079890, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 468.966796, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "32", + "y": "38" + }, + { + "x": "55", + "y": "21" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190078987, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 471.65469, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 45, + "y": 79 + }, + { + "x": 67, + "y": 100 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079891, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 471.65469, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "55", + "y": "21" + }, + { + "x": "33", + "y": "0" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078988, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 476.450662, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 68, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079892, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 487.917277, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "33", + "y": "0" + }, + { + "x": "63", + "y": "15" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078989, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 489.334163, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 37, + "y": 85 + }, + { + "x": 46, + "y": 81 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079893, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 490.575272, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "54", + "y": "19" + }, + { + "x": "54", + "y": "25" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190078990, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 491.614163, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 46, + "y": 74 + }, + { + "x": 46, + "y": 75 + } + ], + "tags": [] + }, + { + "id": 190078991, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 492.746226, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 46, + "y": 75 + }, + { + "x": 40, + "y": 67 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079894, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 492.746226, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "54", + "y": "25" + }, + { + "x": "60", + "y": "33" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190078992, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 495.042916, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 40, + "y": 67 + }, + { + "x": 46, + "y": 71 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079895, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 495.042916, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "60", + "y": "33" + }, + { + "x": "54", + "y": "29" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079896, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 495.799619, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "54", + "y": "29" + }, + { + "x": "48", + "y": "29" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079897, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 496.483998, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "48", + "y": "29" + }, + { + "x": "66", + "y": "8" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079898, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 501.731707, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "66", + "y": "8" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078994, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 503.126591, + "eventName": 4, + "subEventName": 40, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 34, + "y": 92 + } + ], + "tags": [] + }, + { + "id": 190078995, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 504.511993, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 13, + "y": 42 + }, + { + "x": 30, + "y": 14 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079899, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 504.511993, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "87", + "y": "58" + }, + { + "x": "70", + "y": "86" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079900, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 505.662221, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "70", + "y": "86" + }, + { + "x": "79", + "y": "84" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079902, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 508.109023, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "79", + "y": "84" + }, + { + "x": "92", + "y": "90" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079903, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 510.181219, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "92", + "y": "90" + }, + { + "x": "90", + "y": "51" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078997, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 512.987348, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 10, + "y": 49 + }, + { + "x": 3, + "y": 0 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190078998, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 516.614216, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 3, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079904, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 520.617872, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "96", + "y": "100" + }, + { + "x": "99", + "y": "84" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079905, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 522.314829, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "99", + "y": "84" + }, + { + "x": "93", + "y": "68" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190078999, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 523.617492, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 7, + "y": 32 + }, + { + "x": 24, + "y": 9 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079906, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 526.645416, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "76", + "y": "91" + }, + { + "x": "79", + "y": "80" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079000, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 528.399569, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 21, + "y": 20 + }, + { + "x": 14, + "y": 27 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079907, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 528.399569, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "79", + "y": "80" + }, + { + "x": "86", + "y": "73" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079001, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 530.275242, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 14, + "y": 27 + }, + { + "x": 27, + "y": 26 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079908, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 531.759366, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "73", + "y": "74" + }, + { + "x": "81", + "y": "77" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079002, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 533.289911, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 19, + "y": 23 + }, + { + "x": 19, + "y": 30 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079909, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 533.289911, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "81", + "y": "77" + }, + { + "x": "81", + "y": "70" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079003, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 534.233859, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 19, + "y": 30 + }, + { + "x": 19, + "y": 33 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079910, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 534.233859, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "81", + "y": "70" + }, + { + "x": "81", + "y": "67" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079004, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 535.076427, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 19, + "y": 33 + }, + { + "x": 31, + "y": 21 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079005, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 536.093648, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 31, + "y": 21 + }, + { + "x": 26, + "y": 20 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079911, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 536.093648, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "69", + "y": "79" + }, + { + "x": "74", + "y": "80" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079912, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 537.281022, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "74", + "y": "80" + }, + { + "x": "76", + "y": "79" + } + ], + "tags": [ + { + "id": 1302 + } + ] + }, + { + "id": 190079006, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 539.860223, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 24, + "y": 21 + }, + { + "x": 43, + "y": 8 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079913, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 541.210104, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "57", + "y": "92" + }, + { + "x": "63", + "y": "89" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079914, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 542.319802, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "63", + "y": "89" + }, + { + "x": "77", + "y": "77" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079915, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 543.935813, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "77", + "y": "77" + }, + { + "x": "91", + "y": "63" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079007, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 546.420933, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 9, + "y": 37 + }, + { + "x": 30, + "y": 31 + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190079008, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 554.827507, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 30, + "y": 31 + }, + { + "x": 31, + "y": 11 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079009, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 558.019167, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 31, + "y": 11 + }, + { + "x": 37, + "y": 32 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079011, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 560.002972, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 37, + "y": 32 + }, + { + "x": 52, + "y": 35 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079012, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 561.470846, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 52, + "y": 35 + }, + { + "x": 56, + "y": 49 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079014, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 563.219302, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 56, + "y": 49 + }, + { + "x": 85, + "y": 65 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079016, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 567.973819, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": 85, + "y": 65 + }, + { + "x": 90, + "y": 72 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079917, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 569.1254, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": "10", + "y": "28" + }, + { + "x": "0", + "y": "26" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079017, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 577.770454, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 100, + "y": 74 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079018, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 591.16505, + "eventName": 3, + "subEventName": 30, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 90, + "y": 54 + } + ], + "tags": [ + { + "id": 801 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079019, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 591.984963, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 90, + "y": 54 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079918, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 591.984963, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "10", + "y": "46" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079020, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 601.675507, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 100, + "y": 77 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079021, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 606.453808, + "eventName": 3, + "subEventName": 30, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 90, + "y": 48 + } + ], + "tags": [ + { + "id": 801 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079563, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 607.266923, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 90, + "y": 48 + }, + { + "x": 91, + "y": 50 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079919, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 607.266923, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "10", + "y": "52" + }, + { + "x": "9", + "y": "50" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079564, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 608.561632, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 91, + "y": 50 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 403 + }, + { + "id": 2101 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079920, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 609.521794, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "7", + "y": "52" + }, + { + "x": "9", + "y": "53" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190079921, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 610.658305, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "9", + "y": "53" + }, + { + "x": "69", + "y": "69" + } + ], + "tags": [] + }, + { + "id": 190079565, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 611.713544, + "eventName": 2, + "subEventName": 24, + "positions": [ + { + "x": 87, + "y": 45 + } + ], + "tags": [ + { + "id": 1702 + } + ] + }, + { + "id": 190079566, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 638.897156, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 31, + "y": 31 + }, + { + "x": 23, + "y": 6 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079922, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 638.897156, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "69", + "y": "69" + }, + { + "x": "77", + "y": "94" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079923, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 644.897324, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": "77", + "y": "94" + }, + { + "x": "88", + "y": "77" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079567, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 647.326655, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 12, + "y": 23 + }, + { + "x": 38, + "y": 0 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079924, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 649.905975, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": "62", + "y": "100" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [] + }, + { + "id": 190079925, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 653.012229, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "60", + "y": "100" + }, + { + "x": "61", + "y": "42" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079926, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 658.542986, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "61", + "y": "42" + }, + { + "x": "82", + "y": "5" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079928, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 661.844674, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "82", + "y": "5" + }, + { + "x": "90", + "y": "10" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079929, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 663.493782, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "90", + "y": "10" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 2101 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079547, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 664.354481, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 8, + "y": 75 + }, + { + "x": 17, + "y": 78 + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190079602, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 666.696854, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 17, + "y": 78 + }, + { + "x": 35, + "y": 70 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079588, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 667.445469, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 35, + "y": 70 + }, + { + "x": 27, + "y": 91 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079931, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 667.445469, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "65", + "y": "30" + }, + { + "x": "73", + "y": "9" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079932, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 669.701204, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "73", + "y": "9" + }, + { + "x": "72", + "y": "9" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079933, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 672.07809, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "72", + "y": "9" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079542, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 673.856131, + "eventName": 4, + "subEventName": 40, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 28, + "y": 91 + } + ], + "tags": [] + }, + { + "id": 190079543, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 677.035063, + "eventName": 8, + "subEventName": 81, + "positions": [ + { + "x": 7, + "y": 37 + }, + { + "x": 26, + "y": 18 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079610, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 679.312404, + "eventName": 7, + "subEventName": 70, + "positions": [ + { + "x": 26, + "y": 18 + }, + { + "x": 49, + "y": 9 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079611, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 682.374819, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 49, + "y": 9 + }, + { + "x": 58, + "y": 15 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079575, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 685.574612, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 58, + "y": 15 + }, + { + "x": 77, + "y": 79 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079603, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 688.633759, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 77, + "y": 79 + }, + { + "x": 95, + "y": 82 + } + ], + "tags": [] + }, + { + "id": 190079604, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 692.852965, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 95, + "y": 82 + }, + { + "x": 80, + "y": 84 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079631, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 695.073902, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 80, + "y": 84 + }, + { + "x": 73, + "y": 67 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079548, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 697.654633, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 73, + "y": 67 + }, + { + "x": 92, + "y": 32 + } + ], + "tags": [ + { + "id": 302 + }, + { + "id": 901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079613, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 699.203065, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 92, + "y": 32 + }, + { + "x": 94, + "y": 37 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080410, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 699.203065, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "8", + "y": "68" + }, + { + "x": "6", + "y": "63" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079614, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 700.197788, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 94, + "y": 37 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 403 + }, + { + "id": 201 + }, + { + "id": 1215 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079936, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 705.946962, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": "0", + "y": "54" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [] + }, + { + "id": 190079937, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 730.329869, + "eventName": 3, + "subEventName": 34, + "positions": [ + { + "x": "0", + "y": "0" + }, + { + "x": "67", + "y": "63" + } + ], + "tags": [] + }, + { + "id": 190079549, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 734.31611, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 33, + "y": 37 + }, + { + "x": 31, + "y": 28 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079938, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 734.31611, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "67", + "y": "63" + }, + { + "x": "69", + "y": "72" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079550, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 737.523554, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": 31, + "y": 28 + }, + { + "x": 58, + "y": 36 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079590, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 739.57409, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 58, + "y": 36 + }, + { + "x": 64, + "y": 27 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079939, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 739.57409, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "42", + "y": "64" + }, + { + "x": "36", + "y": "73" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079940, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 740.363013, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "36", + "y": "73" + }, + { + "x": "59", + "y": "79" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079615, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 742.758133, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 41, + "y": 21 + }, + { + "x": 66, + "y": 20 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079941, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 744.364845, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "34", + "y": "80" + }, + { + "x": "43", + "y": "72" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079616, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 745.430285, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 57, + "y": 28 + }, + { + "x": 39, + "y": 17 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080412, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 745.430285, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "43", + "y": "72" + }, + { + "x": "61", + "y": "83" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079942, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 747.496494, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "61", + "y": "83" + }, + { + "x": "67", + "y": "76" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079943, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 748.241578, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "67", + "y": "76" + }, + { + "x": "61", + "y": "49" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079584, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 752.185067, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 39, + "y": 51 + }, + { + "x": 54, + "y": 58 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079536, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 752.750236, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 54, + "y": 58 + }, + { + "x": 63, + "y": 68 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079944, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 753.088326, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "46", + "y": "42" + }, + { + "x": "37", + "y": "32" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079605, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 756.137048, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 63, + "y": 68 + }, + { + "x": 77, + "y": 82 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079633, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 758.519747, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 77, + "y": 82 + }, + { + "x": 93, + "y": 88 + } + ], + "tags": [] + }, + { + "id": 190079634, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 760.761197, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": 93, + "y": 88 + }, + { + "x": 91, + "y": 53 + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079592, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 761.829488, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 91, + "y": 53 + }, + { + "x": 86, + "y": 60 + } + ], + "tags": [] + }, + { + "id": 190079593, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 763.542233, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 86, + "y": 60 + }, + { + "x": 14, + "y": 39 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079946, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 763.542233, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "14", + "y": "40" + }, + { + "x": "86", + "y": "61" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079594, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 765.108463, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": 14, + "y": 39 + }, + { + "x": 86, + "y": 60 + } + ], + "tags": [] + }, + { + "id": 190079947, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 781.66351, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": "17", + "y": "35" + }, + { + "x": "63", + "y": "87" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079568, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 785.376433, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 37, + "y": 13 + }, + { + "x": 67, + "y": 8 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079948, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 785.376433, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "63", + "y": "87" + }, + { + "x": "33", + "y": "92" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079949, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 791.939566, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "33", + "y": "92" + }, + { + "x": "74", + "y": "97" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079624, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 794.606888, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 26, + "y": 3 + }, + { + "x": 37, + "y": 6 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079617, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 796.500448, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 37, + "y": 6 + }, + { + "x": 33, + "y": 7 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079951, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 796.500448, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "63", + "y": "94" + }, + { + "x": "67", + "y": "93" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079618, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 798.453736, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 33, + "y": 7 + }, + { + "x": 9, + "y": 30 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079544, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 800.480954, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": 9, + "y": 30 + }, + { + "x": 32, + "y": 58 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079606, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 804.667565, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 32, + "y": 58 + }, + { + "x": 30, + "y": 56 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079953, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 804.667565, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "68", + "y": "42" + }, + { + "x": "70", + "y": "44" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079607, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 805.709101, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 30, + "y": 56 + }, + { + "x": 29, + "y": 44 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079551, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 806.80693, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 29, + "y": 44 + }, + { + "x": 31, + "y": 82 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079635, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 810.56188, + "eventName": 7, + "subEventName": 70, + "positions": [ + { + "x": 31, + "y": 82 + }, + { + "x": 65, + "y": 79 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079636, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 812.756674, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 65, + "y": 79 + }, + { + "x": 67, + "y": 64 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079537, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 814.665466, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 67, + "y": 64 + }, + { + "x": 64, + "y": 64 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079955, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 814.665466, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "33", + "y": "36" + }, + { + "x": "36", + "y": "36" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079538, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 816.487988, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 64, + "y": 64 + }, + { + "x": 56, + "y": 65 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079552, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 817.691787, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 56, + "y": 65 + }, + { + "x": 66, + "y": 71 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079539, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 819.922583, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 66, + "y": 71 + }, + { + "x": 60, + "y": 59 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079553, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 821.96189, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 60, + "y": 59 + }, + { + "x": 70, + "y": 71 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079540, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 824.327767, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 70, + "y": 71 + }, + { + "x": 40, + "y": 68 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079585, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 825.263629, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 40, + "y": 68 + }, + { + "x": 52, + "y": 57 + } + ], + "tags": [] + }, + { + "id": 190079586, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 829.150308, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 52, + "y": 57 + }, + { + "x": 53, + "y": 12 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079625, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 832.434288, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 53, + "y": 12 + }, + { + "x": 73, + "y": 3 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079576, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 837.115013, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 73, + "y": 3 + }, + { + "x": 70, + "y": 26 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079619, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 838.668089, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 70, + "y": 26 + }, + { + "x": 70, + "y": 29 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079956, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 838.668089, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "30", + "y": "74" + }, + { + "x": "30", + "y": "71" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079620, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 840.629388, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 70, + "y": 29 + }, + { + "x": 61, + "y": 51 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079541, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 844.388729, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 61, + "y": 51 + }, + { + "x": 60, + "y": 19 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079569, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 847.940552, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 60, + "y": 19 + }, + { + "x": 65, + "y": 30 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079555, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 849.251607, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 65, + "y": 30 + }, + { + "x": 59, + "y": 16 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079570, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 850.821766, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 59, + "y": 16 + }, + { + "x": 69, + "y": 17 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079578, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 851.768518, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 69, + "y": 17 + }, + { + "x": 61, + "y": 9 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079571, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 852.134334, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 61, + "y": 9 + }, + { + "x": 60, + "y": 3 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079579, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 854.860048, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 60, + "y": 3 + }, + { + "x": 57, + "y": 15 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079957, + "playerId": 26150, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 854.860048, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "40", + "y": "97" + }, + { + "x": "43", + "y": "85" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079580, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 857.915628, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 57, + "y": 15 + }, + { + "x": 87, + "y": 60 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079608, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 860.100326, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 87, + "y": 60 + }, + { + "x": 87, + "y": 65 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079958, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 860.100326, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "13", + "y": "40" + }, + { + "x": "13", + "y": "35" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079609, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 864.745531, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 87, + "y": 65 + }, + { + "x": 87, + "y": 39 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079959, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 864.938891, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "13", + "y": "61" + }, + { + "x": "43", + "y": "30" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079960, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 868.214096, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "43", + "y": "30" + }, + { + "x": "56", + "y": "32" + } + ], + "tags": [] + }, + { + "id": 190079587, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 870.905219, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 44, + "y": 68 + }, + { + "x": 19, + "y": 50 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079545, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 874.148981, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 19, + "y": 50 + }, + { + "x": 32, + "y": 41 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079572, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 876.014401, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 32, + "y": 41 + }, + { + "x": 45, + "y": 47 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079556, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 878.638223, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 45, + "y": 47 + }, + { + "x": 48, + "y": 9 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079626, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 880.159463, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 48, + "y": 9 + }, + { + "x": 70, + "y": 9 + } + ], + "tags": [] + }, + { + "id": 190079627, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 883.49092, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 70, + "y": 9 + }, + { + "x": 72, + "y": 3 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079581, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 884.825496, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 72, + "y": 3 + }, + { + "x": 62, + "y": 19 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079595, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 887.468174, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 62, + "y": 19 + }, + { + "x": 70, + "y": 20 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079621, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 888.460709, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 70, + "y": 20 + }, + { + "x": 85, + "y": 18 + } + ], + "tags": [] + }, + { + "id": 190079622, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 891.037984, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 85, + "y": 18 + }, + { + "x": 92, + "y": 4 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079962, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 891.037984, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "15", + "y": "82" + }, + { + "x": "8", + "y": "96" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079623, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 895.281042, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 92, + "y": 4 + }, + { + "x": 81, + "y": 3 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079597, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 897.434278, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": 81, + "y": 3 + }, + { + "x": 88, + "y": 33 + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079963, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 898.224072, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "12", + "y": "67" + }, + { + "x": "22", + "y": "90" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079598, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 900.638087, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 78, + "y": 10 + }, + { + "x": 84, + "y": 25 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079964, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 900.638087, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "22", + "y": "90" + }, + { + "x": "16", + "y": "75" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079965, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 901.289913, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "16", + "y": "75" + }, + { + "x": "39", + "y": "91" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079573, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 903.242918, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 61, + "y": 9 + }, + { + "x": 69, + "y": 24 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079966, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 905.734642, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "31", + "y": "76" + }, + { + "x": "38", + "y": "82" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079557, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 908.475913, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 62, + "y": 18 + }, + { + "x": 64, + "y": 22 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079967, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 908.475913, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "38", + "y": "82" + }, + { + "x": "36", + "y": "78" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079558, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 910.247273, + "eventName": 7, + "subEventName": 70, + "positions": [ + { + "x": 64, + "y": 22 + }, + { + "x": 82, + "y": 11 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079559, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 912.014969, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 82, + "y": 11 + }, + { + "x": 87, + "y": 3 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079968, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 912.014969, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "18", + "y": "89" + }, + { + "x": "13", + "y": "97" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079560, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 916.826788, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 87, + "y": 3 + }, + { + "x": 75, + "y": 22 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079582, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 918.516791, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 75, + "y": 22 + }, + { + "x": 79, + "y": 29 + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079969, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 918.516791, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "25", + "y": "78" + }, + { + "x": "21", + "y": "71" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079583, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 919.674755, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 79, + "y": 29 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 2101 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079970, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 920.763711, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "19", + "y": "66" + }, + { + "x": "39", + "y": "86" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190079629, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 924.292774, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 61, + "y": 14 + }, + { + "x": 71, + "y": 4 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079561, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 926.549544, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 71, + "y": 4 + }, + { + "x": 73, + "y": 10 + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079971, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 926.549544, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "29", + "y": "96" + }, + { + "x": "27", + "y": "90" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 504 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079562, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 931.346312, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 73, + "y": 10 + }, + { + "x": 72, + "y": 39 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079599, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 935.427961, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 72, + "y": 39 + }, + { + "x": 75, + "y": 47 + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079972, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 935.427961, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "28", + "y": "61" + }, + { + "x": "25", + "y": "53" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079600, + "playerId": 15808, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 936.304541, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 75, + "y": 47 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 201 + }, + { + "id": 1214 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079022, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 943.066591, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 100, + "y": 50 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079973, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 970.458448, + "eventName": 3, + "subEventName": 34, + "positions": [ + { + "x": "0", + "y": "0" + }, + { + "x": "59", + "y": "77" + } + ], + "tags": [] + }, + { + "id": 190079023, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 975.146743, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 41, + "y": 23 + }, + { + "x": 64, + "y": 0 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079974, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 975.146743, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "59", + "y": "77" + }, + { + "x": "36", + "y": "100" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079024, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 978.680631, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 58, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079975, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 981.650843, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "36", + "y": "100" + }, + { + "x": "33", + "y": "66" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079976, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 985.048955, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "33", + "y": "66" + }, + { + "x": "47", + "y": "30" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079977, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 990.628946, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "47", + "y": "30" + }, + { + "x": "68", + "y": "22" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079025, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 992.066421, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 32, + "y": 78 + }, + { + "x": 45, + "y": 91 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079978, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 993.893906, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "55", + "y": "9" + }, + { + "x": "71", + "y": "34" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079026, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 996.112073, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 29, + "y": 66 + }, + { + "x": 51, + "y": 77 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079979, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 997.91838, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "49", + "y": "23" + }, + { + "x": "62", + "y": "4" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079027, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1000.549526, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 38, + "y": 96 + }, + { + "x": 44, + "y": 89 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079980, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1000.549526, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "62", + "y": "4" + }, + { + "x": "56", + "y": "11" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079981, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1001.466518, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "56", + "y": "11" + }, + { + "x": "74", + "y": "25" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079028, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1002.926305, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 26, + "y": 75 + }, + { + "x": 68, + "y": 75 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079982, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1008.190879, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "32", + "y": "25" + }, + { + "x": "99", + "y": "75" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079029, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1016.853257, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 1, + "y": 25 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079030, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1022.002278, + "eventName": 3, + "subEventName": 34, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 17, + "y": 47 + } + ], + "tags": [] + }, + { + "id": 190079031, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1024.358393, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 17, + "y": 47 + }, + { + "x": 6, + "y": 48 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079032, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1026.198185, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 6, + "y": 48 + }, + { + "x": 19, + "y": 49 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079033, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1026.789993, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 19, + "y": 49 + }, + { + "x": 16, + "y": 80 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079034, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1027.485304, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 16, + "y": 80 + }, + { + "x": 49, + "y": 73 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079035, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1029.244025, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 49, + "y": 73 + }, + { + "x": 53, + "y": 89 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079983, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1029.423904, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "51", + "y": "27" + }, + { + "x": "47", + "y": "11" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079984, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1035.050997, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "47", + "y": "11" + }, + { + "x": "63", + "y": "7" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079985, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1035.535737, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "63", + "y": "7" + }, + { + "x": "71", + "y": "33" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079036, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1037.454646, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 29, + "y": 67 + }, + { + "x": 36, + "y": 55 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079986, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1037.454646, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "71", + "y": "33" + }, + { + "x": "64", + "y": "45" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079037, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1039.842124, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 36, + "y": 55 + }, + { + "x": 93, + "y": 83 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079987, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1045.574165, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "7", + "y": "17" + }, + { + "x": "11", + "y": "59" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079988, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1052.210027, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "11", + "y": "59" + }, + { + "x": "45", + "y": "97" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079989, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1055.845566, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "45", + "y": "97" + }, + { + "x": "70", + "y": "86" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079990, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1058.562834, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "70", + "y": "86" + }, + { + "x": "86", + "y": "76" + } + ], + "tags": [] + }, + { + "id": 190079039, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1061.648882, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 14, + "y": 24 + }, + { + "x": 10, + "y": 11 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079991, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1061.648882, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "86", + "y": "76" + }, + { + "x": "90", + "y": "89" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079040, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1063.979552, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 10, + "y": 11 + }, + { + "x": 17, + "y": 0 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079992, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1063.979552, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "90", + "y": "89" + }, + { + "x": "83", + "y": "100" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079041, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1070.344196, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 11, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079993, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1078.955119, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "83", + "y": "100" + }, + { + "x": "72", + "y": "97" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079042, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1081.942497, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 28, + "y": 3 + }, + { + "x": 29, + "y": 2 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079994, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1081.942497, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "72", + "y": "97" + }, + { + "x": "71", + "y": "98" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079043, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1084.021417, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": 29, + "y": 2 + }, + { + "x": 28, + "y": 3 + } + ], + "tags": [] + }, + { + "id": 190079995, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1107.122456, + "eventName": 3, + "subEventName": 32, + "positions": [ + { + "x": "75", + "y": "98" + }, + { + "x": "92", + "y": "54" + } + ], + "tags": [ + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079044, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1109.45497, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 8, + "y": 46 + }, + { + "x": 6, + "y": 32 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079045, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1111.014891, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 6, + "y": 32 + }, + { + "x": 5, + "y": 33 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079996, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1111.014891, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "94", + "y": "68" + }, + { + "x": "95", + "y": "67" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079997, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1112.691208, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": "95", + "y": "67" + }, + { + "x": "94", + "y": "68" + } + ], + "tags": [] + }, + { + "id": 190080248, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1175.094379, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 5, + "y": 47 + }, + { + "x": 68, + "y": 46 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079046, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1178.31082, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 68, + "y": 46 + }, + { + "x": 65, + "y": 53 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079998, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1178.31082, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "32", + "y": "54" + }, + { + "x": "35", + "y": "47" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079999, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1180.031385, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "35", + "y": "47" + }, + { + "x": "45", + "y": "54" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079047, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1182.282595, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 55, + "y": 46 + }, + { + "x": 51, + "y": 35 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080000, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1182.282595, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "45", + "y": "54" + }, + { + "x": "49", + "y": "65" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080001, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1183.795663, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "49", + "y": "65" + }, + { + "x": "42", + "y": "77" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079048, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1183.875024, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 51, + "y": 35 + }, + { + "x": 58, + "y": 23 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079049, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1184.876386, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 58, + "y": 23 + }, + { + "x": 51, + "y": 14 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080002, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1185.041942, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "42", + "y": "77" + }, + { + "x": "49", + "y": "86" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080003, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1186.788439, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "49", + "y": "86" + }, + { + "x": "59", + "y": "94" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079051, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1188.616689, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 41, + "y": 6 + }, + { + "x": 35, + "y": 0 + } + ], + "tags": [ + { + "id": 601 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080004, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1188.616689, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "59", + "y": "94" + }, + { + "x": "65", + "y": "100" + } + ], + "tags": [ + { + "id": 602 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079052, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1192.034919, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 41, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190080005, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1196.953986, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "65", + "y": "100" + }, + { + "x": "68", + "y": "92" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080006, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1199.002297, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "68", + "y": "92" + }, + { + "x": "68", + "y": "88" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080007, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1201.916791, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "68", + "y": "88" + }, + { + "x": "66", + "y": "88" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080008, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1204.842725, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "66", + "y": "88" + }, + { + "x": "67", + "y": "64" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080009, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1206.214582, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "67", + "y": "64" + }, + { + "x": "81", + "y": "62" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079053, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1207.349628, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 19, + "y": 38 + }, + { + "x": 25, + "y": 33 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 601 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080010, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1207.349628, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "81", + "y": "62" + }, + { + "x": "75", + "y": "67" + } + ], + "tags": [ + { + "id": 602 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079054, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1209.216304, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 25, + "y": 33 + }, + { + "x": 35, + "y": 16 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079055, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1210.467027, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 35, + "y": 16 + }, + { + "x": 43, + "y": 37 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079057, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1211.354286, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 43, + "y": 37 + }, + { + "x": 54, + "y": 58 + } + ], + "tags": [ + { + "id": 1901 + } + ] + }, + { + "id": 190079058, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1219.919898, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": 54, + "y": 58 + }, + { + "x": 88, + "y": 24 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079060, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1225.063676, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 88, + "y": 24 + }, + { + "x": 94, + "y": 28 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 503 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080012, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1225.063676, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "12", + "y": "76" + }, + { + "x": "6", + "y": "72" + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079061, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1226.610387, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 94, + "y": 28 + }, + { + "x": 99, + "y": 27 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080013, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1226.610387, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "6", + "y": "72" + }, + { + "x": "1", + "y": "73" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080014, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1227.181315, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": "1", + "y": "73" + }, + { + "x": "12", + "y": "100" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079062, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1232.699057, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 88, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079063, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1233.301104, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 83, + "y": 0 + }, + { + "x": 74, + "y": 14 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079064, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1235.124679, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 74, + "y": 14 + }, + { + "x": 89, + "y": 17 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079065, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1236.011053, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 89, + "y": 17 + }, + { + "x": 81, + "y": 16 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079066, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1236.245671, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 81, + "y": 16 + }, + { + "x": 91, + "y": 32 + } + ], + "tags": [] + }, + { + "id": 190079067, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1241.14846, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 91, + "y": 32 + }, + { + "x": 89, + "y": 34 + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080015, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1241.14846, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "9", + "y": "68" + }, + { + "x": "11", + "y": "66" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079068, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1242.588501, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 89, + "y": 34 + }, + { + "x": 89, + "y": 58 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079069, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1243.635634, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 89, + "y": 58 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 2101 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080016, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1244.596186, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "10", + "y": "37" + }, + { + "x": "27", + "y": "43" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190079070, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1248.051268, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 73, + "y": 57 + }, + { + "x": 91, + "y": 32 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190080017, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1249.832951, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": "9", + "y": "68" + }, + { + "x": "29", + "y": "74" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079071, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1255.67623, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 71, + "y": 26 + }, + { + "x": 87, + "y": 29 + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080018, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1255.67623, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "29", + "y": "74" + }, + { + "x": "13", + "y": "71" + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079072, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1257.243298, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 87, + "y": 29 + }, + { + "x": 86, + "y": 37 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080019, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1257.243298, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "13", + "y": "71" + }, + { + "x": "14", + "y": "63" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079080, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1258.043784, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 86, + "y": 37 + }, + { + "x": 86, + "y": 33 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080020, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1258.043784, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "14", + "y": "63" + }, + { + "x": "14", + "y": "67" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079075, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1261.118368, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 86, + "y": 33 + }, + { + "x": 90, + "y": 24 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080021, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1261.118368, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "14", + "y": "67" + }, + { + "x": "10", + "y": "76" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079077, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1262.430747, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 90, + "y": 24 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 2101 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080022, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1263.298145, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "9", + "y": "63" + }, + { + "x": "14", + "y": "71" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190080023, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1264.447649, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "14", + "y": "71" + }, + { + "x": "36", + "y": "64" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079082, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1265.72006, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 64, + "y": 36 + }, + { + "x": 55, + "y": 12 + } + ], + "tags": [ + { + "id": 1601 + }, + { + "id": 601 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080024, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1265.72006, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "36", + "y": "64" + }, + { + "x": "45", + "y": "88" + } + ], + "tags": [ + { + "id": 602 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079083, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1269.763971, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 55, + "y": 12 + }, + { + "x": 85, + "y": 3 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079086, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1273.984315, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": 85, + "y": 3 + }, + { + "x": 97, + "y": 25 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079087, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1275.622128, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 97, + "y": 25 + }, + { + "x": 90, + "y": 39 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079088, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1276.319828, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 90, + "y": 39 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 2101 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080025, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1277.137636, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "11", + "y": "58" + }, + { + "x": "17", + "y": "70" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190080026, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1278.873468, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "17", + "y": "70" + }, + { + "x": "39", + "y": "77" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080027, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1282.344242, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "39", + "y": "77" + }, + { + "x": "35", + "y": "66" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080028, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1283.511052, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "35", + "y": "66" + }, + { + "x": "70", + "y": "54" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080029, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1287.188805, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "70", + "y": "54" + }, + { + "x": "74", + "y": "13" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080031, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1292.619294, + "eventName": 7, + "subEventName": 70, + "positions": [ + { + "x": "74", + "y": "13" + }, + { + "x": "74", + "y": "33" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080032, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1295.838263, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": "74", + "y": "33" + }, + { + "x": "90", + "y": "40" + } + ], + "tags": [ + { + "id": 302 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079091, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1297.516915, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 10, + "y": 60 + }, + { + "x": 5, + "y": 66 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080033, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1297.516915, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "90", + "y": "40" + }, + { + "x": "95", + "y": "34" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080034, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1297.969674, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": "95", + "y": "34" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 2101 + }, + { + "id": 201 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079093, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1300.241432, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 6, + "y": 63 + }, + { + "x": 5, + "y": 91 + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190080035, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1303.125489, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "95", + "y": "9" + }, + { + "x": "89", + "y": "51" + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079096, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1305.283402, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 11, + "y": 49 + }, + { + "x": 13, + "y": 84 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079101, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1309.472327, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 13, + "y": 84 + }, + { + "x": 19, + "y": 72 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080036, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1309.472327, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "87", + "y": "16" + }, + { + "x": "81", + "y": "28" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079102, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1311.053918, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 19, + "y": 72 + }, + { + "x": 32, + "y": 67 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190080037, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1312.459905, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "68", + "y": "33" + }, + { + "x": "70", + "y": "52" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080038, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1313.166053, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "70", + "y": "52" + }, + { + "x": "66", + "y": "45" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080039, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1313.828547, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "66", + "y": "45" + }, + { + "x": "71", + "y": "43" + } + ], + "tags": [ + { + "id": 2001 + } + ] + }, + { + "id": 190079103, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1315.0993, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 29, + "y": 57 + }, + { + "x": 40, + "y": 66 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079106, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1316.89241, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 40, + "y": 66 + }, + { + "x": 50, + "y": 77 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079109, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1320.518522, + "eventName": 7, + "subEventName": 70, + "positions": [ + { + "x": 50, + "y": 77 + }, + { + "x": 81, + "y": 64 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079112, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1322.928069, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 81, + "y": 64 + }, + { + "x": 85, + "y": 35 + } + ], + "tags": [ + { + "id": 301 + }, + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079114, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1325.15181, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 85, + "y": 35 + }, + { + "x": 85, + "y": 41 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080041, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1325.15181, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "15", + "y": "65" + }, + { + "x": "15", + "y": "59" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079115, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1326.262532, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 85, + "y": 41 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 101 + }, + { + "id": 1901 + }, + { + "id": 402 + }, + { + "id": 201 + }, + { + "id": 1201 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080042, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1327.933957, + "eventName": 9, + "subEventName": 90, + "positions": [ + { + "x": "0", + "y": "0" + }, + { + "x": "15", + "y": "59" + } + ], + "tags": [ + { + "id": 101 + }, + { + "id": 1201 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080043, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1391.149565, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "32", + "y": "79" + }, + { + "x": "44", + "y": "59" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079120, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1394.616596, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 56, + "y": 41 + }, + { + "x": 55, + "y": 40 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080044, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1394.616596, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "44", + "y": "59" + }, + { + "x": "45", + "y": "60" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079121, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1397.956872, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": 55, + "y": 40 + }, + { + "x": 56, + "y": 41 + } + ], + "tags": [] + }, + { + "id": 190080045, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1401.363396, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": "45", + "y": "65" + }, + { + "x": "72", + "y": "10" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080046, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1404.415057, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "72", + "y": "10" + }, + { + "x": "70", + "y": "6" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080047, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1408.567338, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "70", + "y": "6" + }, + { + "x": "87", + "y": "12" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079122, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1409.152068, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 30, + "y": 94 + }, + { + "x": 13, + "y": 88 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080048, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1411.44402, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "87", + "y": "12" + }, + { + "x": "89", + "y": "65" + } + ], + "tags": [ + { + "id": 302 + }, + { + "id": 401 + }, + { + "id": 801 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080049, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1414.745959, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": "89", + "y": "65" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 201 + }, + { + "id": 1203 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079126, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1416.045438, + "eventName": 9, + "subEventName": 90, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 11, + "y": 35 + } + ], + "tags": [ + { + "id": 1203 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080050, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1416.870093, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": "92", + "y": "48" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 101 + }, + { + "id": 403 + }, + { + "id": 201 + }, + { + "id": 1203 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079127, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1419.458915, + "eventName": 9, + "subEventName": 90, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 101 + }, + { + "id": 1203 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080051, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1477.083488, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "45", + "y": "32" + }, + { + "x": "57", + "y": "10" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080052, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1479.451878, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "57", + "y": "10" + }, + { + "x": "63", + "y": "22" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080053, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1480.845029, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "63", + "y": "22" + }, + { + "x": "51", + "y": "5" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080054, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1482.202086, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "51", + "y": "5" + }, + { + "x": "54", + "y": "0" + } + ], + "tags": [ + { + "id": 1302 + } + ] + }, + { + "id": 190079130, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1485.829487, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 46, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079132, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1502.479807, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 59, + "y": 100 + }, + { + "x": 67, + "y": 91 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079134, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1503.57204, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 67, + "y": 91 + }, + { + "x": 78, + "y": 88 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190080055, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1505.963963, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "22", + "y": "12" + }, + { + "x": "6", + "y": "52" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080056, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1510.409206, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "6", + "y": "52" + }, + { + "x": "64", + "y": "36" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079136, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1514.123399, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 36, + "y": 64 + }, + { + "x": 44, + "y": 49 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080057, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1514.123399, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "64", + "y": "36" + }, + { + "x": "56", + "y": "51" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080058, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1516.256519, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "56", + "y": "51" + }, + { + "x": "50", + "y": "74" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079138, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1519.772313, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 50, + "y": 26 + }, + { + "x": 61, + "y": 17 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080059, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1519.772313, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "50", + "y": "74" + }, + { + "x": "39", + "y": "83" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079139, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1521.146025, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 61, + "y": 17 + }, + { + "x": 67, + "y": 4 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080060, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1521.146025, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "39", + "y": "83" + }, + { + "x": "33", + "y": "96" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079140, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1526.88276, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 67, + "y": 4 + }, + { + "x": 55, + "y": 15 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079142, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1528.765389, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 55, + "y": 15 + }, + { + "x": 38, + "y": 23 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079143, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1532.299339, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 38, + "y": 23 + }, + { + "x": 43, + "y": 3 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079145, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1534.430057, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 43, + "y": 3 + }, + { + "x": 46, + "y": 15 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079146, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1536.457702, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 46, + "y": 15 + }, + { + "x": 44, + "y": 2 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079147, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1537.849399, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 44, + "y": 2 + }, + { + "x": 29, + "y": 16 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079148, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1538.875922, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 29, + "y": 16 + }, + { + "x": 38, + "y": 8 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079149, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1543.797624, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 38, + "y": 8 + }, + { + "x": 31, + "y": 4 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079150, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1547.76206, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 31, + "y": 4 + }, + { + "x": 74, + "y": 19 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079152, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1548.354617, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 74, + "y": 19 + }, + { + "x": 67, + "y": 15 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080061, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1548.354617, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "26", + "y": "81" + }, + { + "x": "33", + "y": "85" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080062, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1549.170739, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "33", + "y": "85" + }, + { + "x": "39", + "y": "78" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080063, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1550.593055, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "39", + "y": "78" + }, + { + "x": "62", + "y": "73" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080064, + "playerId": 14763, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1552.199186, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "62", + "y": "73" + }, + { + "x": "64", + "y": "88" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079154, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1556.5751, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 36, + "y": 12 + }, + { + "x": 17, + "y": 58 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079156, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1561.662509, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 17, + "y": 58 + }, + { + "x": 55, + "y": 85 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079157, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1565.336994, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 55, + "y": 85 + }, + { + "x": 56, + "y": 91 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080065, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1565.336994, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "45", + "y": "15" + }, + { + "x": "44", + "y": "9" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079158, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1567.26121, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 56, + "y": 91 + }, + { + "x": 41, + "y": 82 + } + ], + "tags": [ + { + "id": 2001 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080066, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1568.982482, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": "59", + "y": "18" + }, + { + "x": "86", + "y": "27" + } + ], + "tags": [ + { + "id": 302 + }, + { + "id": 1401 + }, + { + "id": 901 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079163, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1571.34477, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 14, + "y": 73 + }, + { + "x": 14, + "y": 73 + } + ], + "tags": [ + { + "id": 1302 + } + ] + }, + { + "id": 190079165, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1572.438936, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 14, + "y": 73 + }, + { + "x": 14, + "y": 74 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080068, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1572.438936, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "86", + "y": "27" + }, + { + "x": "86", + "y": "26" + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079166, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1574.16001, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": 14, + "y": 74 + }, + { + "x": 14, + "y": 73 + } + ], + "tags": [ + { + "id": 1702 + } + ] + }, + { + "id": 190080069, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1647.755047, + "eventName": 3, + "subEventName": 35, + "positions": [ + { + "x": "89", + "y": "50" + }, + { + "x": "86", + "y": "26" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 1203 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079169, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1649.412687, + "eventName": 9, + "subEventName": 90, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 11, + "y": 50 + } + ], + "tags": [ + { + "id": 1203 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080070, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1652.279528, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "88", + "y": "10" + }, + { + "x": "95", + "y": "7" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079170, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1652.610104, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 12, + "y": 90 + }, + { + "x": 5, + "y": 93 + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080071, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1654.15385, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "95", + "y": "7" + }, + { + "x": "95", + "y": "63" + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079172, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1657.57105, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 5, + "y": 37 + }, + { + "x": 14, + "y": 3 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079175, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1663.162967, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 14, + "y": 3 + }, + { + "x": 3, + "y": 4 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080072, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1663.162967, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "86", + "y": "97" + }, + { + "x": "97", + "y": "96" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079177, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1664.82698, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 3, + "y": 4 + }, + { + "x": 1, + "y": 21 + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080073, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1664.82698, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "97", + "y": "96" + }, + { + "x": "99", + "y": "79" + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080074, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1667.169819, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "99", + "y": "79" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 2101 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079179, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1670.8684, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 2, + "y": 21 + }, + { + "x": 15, + "y": 4 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079180, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1672.380539, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 15, + "y": 4 + }, + { + "x": 44, + "y": 7 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190080076, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1675.662163, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "56", + "y": "93" + }, + { + "x": "40", + "y": "70" + } + ], + "tags": [] + }, + { + "id": 190080077, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1682.748249, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "40", + "y": "70" + }, + { + "x": "41", + "y": "39" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080078, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1686.115097, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "41", + "y": "39" + }, + { + "x": "90", + "y": "8" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080079, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1689.804802, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "90", + "y": "8" + }, + { + "x": "97", + "y": "90" + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 801 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080080, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1696.326518, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "97", + "y": "90" + }, + { + "x": "94", + "y": "66" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079183, + "playerId": 18550, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1697.042318, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 6, + "y": 34 + }, + { + "x": 24, + "y": 0 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079184, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1703.580272, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 24, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190080081, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1747.767897, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "77", + "y": "100" + }, + { + "x": "63", + "y": "89" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079190, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1750.970806, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 37, + "y": 11 + }, + { + "x": 33, + "y": 34 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080082, + "playerId": 285508, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1750.970806, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "63", + "y": "89" + }, + { + "x": "67", + "y": "66" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080083, + "playerId": 285508, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1754.505752, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "67", + "y": "66" + }, + { + "x": "68", + "y": "37" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080084, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1758.157239, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "68", + "y": "37" + }, + { + "x": "75", + "y": "12" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080085, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1762.187557, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "75", + "y": "12" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079191, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1763.53776, + "eventName": 4, + "subEventName": 40, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 25, + "y": 88 + } + ], + "tags": [ + { + "id": 1901 + } + ] + }, + { + "id": 190079195, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1766.235777, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 18, + "y": 17 + }, + { + "x": 7, + "y": 28 + } + ], + "tags": [ + { + "id": 1901 + } + ] + }, + { + "id": 190079192, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1767.127937, + "eventName": 8, + "subEventName": 81, + "positions": [ + { + "x": 7, + "y": 28 + }, + { + "x": 34, + "y": 3 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079197, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1771.547279, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 34, + "y": 3 + }, + { + "x": 55, + "y": 2 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079198, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1776.955586, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 55, + "y": 2 + }, + { + "x": 63, + "y": 11 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079201, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1782.469901, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 63, + "y": 11 + }, + { + "x": 70, + "y": 43 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079202, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1784.314506, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 70, + "y": 43 + }, + { + "x": 76, + "y": 54 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080086, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1784.314506, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "30", + "y": "57" + }, + { + "x": "24", + "y": "46" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079204, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1786.808383, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 76, + "y": 54 + }, + { + "x": 82, + "y": 62 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080087, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1786.808383, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "24", + "y": "46" + }, + { + "x": "18", + "y": "38" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 1601 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079206, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1788.787669, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 82, + "y": 62 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 401 + }, + { + "id": 201 + }, + { + "id": 1215 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079208, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1792.868313, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 100, + "y": 49 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190080088, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1811.045417, + "eventName": 3, + "subEventName": 34, + "positions": [ + { + "x": "0", + "y": "0" + }, + { + "x": "65", + "y": "69" + } + ], + "tags": [] + }, + { + "id": 190080089, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1812.785475, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "65", + "y": "69" + }, + { + "x": "63", + "y": "68" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079212, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1812.877867, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 35, + "y": 31 + }, + { + "x": 37, + "y": 32 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080090, + "playerId": 285508, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1813.176304, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "63", + "y": "68" + }, + { + "x": "88", + "y": "69" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079213, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1813.707805, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 37, + "y": 32 + }, + { + "x": 12, + "y": 31 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079214, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1816.835008, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 12, + "y": 31 + }, + { + "x": 13, + "y": 51 + } + ], + "tags": [] + }, + { + "id": 190079216, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1827.448189, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": 13, + "y": 51 + }, + { + "x": 73, + "y": 66 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079217, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1829.349141, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 73, + "y": 66 + }, + { + "x": 88, + "y": 52 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080091, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1829.349141, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "27", + "y": "34" + }, + { + "x": "12", + "y": "48" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080092, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1839.867338, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "12", + "y": "48" + }, + { + "x": "57", + "y": "29" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080093, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1841.91205, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "57", + "y": "29" + }, + { + "x": "64", + "y": "71" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079218, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1843.983605, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 36, + "y": 29 + }, + { + "x": 43, + "y": 51 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190080094, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1847.371959, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "57", + "y": "49" + }, + { + "x": "62", + "y": "90" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080095, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1850.76163, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "62", + "y": "90" + }, + { + "x": "51", + "y": "83" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080096, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1852.901601, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "51", + "y": "83" + }, + { + "x": "65", + "y": "62" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080097, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1854.35163, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "65", + "y": "62" + }, + { + "x": "69", + "y": "77" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080098, + "playerId": 285508, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1855.145367, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "69", + "y": "77" + }, + { + "x": "71", + "y": "57" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079221, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1857.108708, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 29, + "y": 43 + }, + { + "x": 33, + "y": 23 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190080099, + "playerId": 285508, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1857.221852, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": "67", + "y": "77" + }, + { + "x": "73", + "y": "72" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079222, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1859.810562, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 27, + "y": 28 + }, + { + "x": 34, + "y": 32 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079223, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1860.585357, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 34, + "y": 32 + }, + { + "x": 27, + "y": 7 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079225, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1863.526302, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 27, + "y": 7 + }, + { + "x": 38, + "y": 20 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079227, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1864.817739, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 38, + "y": 20 + }, + { + "x": 38, + "y": 8 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079228, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1865.745106, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 38, + "y": 8 + }, + { + "x": 33, + "y": 4 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080101, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1865.745106, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "62", + "y": "92" + }, + { + "x": "67", + "y": "96" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079230, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1867.691622, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 33, + "y": 4 + }, + { + "x": 28, + "y": 3 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080102, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1867.691622, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "67", + "y": "96" + }, + { + "x": "72", + "y": "97" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079231, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1869.679005, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 28, + "y": 3 + }, + { + "x": 30, + "y": 4 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080103, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1869.679005, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "72", + "y": "97" + }, + { + "x": "70", + "y": "96" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079232, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1871.734211, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 30, + "y": 4 + }, + { + "x": 43, + "y": 3 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079233, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1873.669225, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 43, + "y": 3 + }, + { + "x": 56, + "y": 4 + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080104, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1873.669225, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "57", + "y": "97" + }, + { + "x": "44", + "y": "96" + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079234, + "playerId": 3802, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1876.057876, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 56, + "y": 4 + }, + { + "x": 56, + "y": 6 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080106, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1876.057876, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "44", + "y": "96" + }, + { + "x": "44", + "y": "94" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080107, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1878.066305, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": "44", + "y": "94" + }, + { + "x": "44", + "y": "96" + } + ], + "tags": [] + }, + { + "id": 190079235, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1903.156531, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 56, + "y": 3 + }, + { + "x": 34, + "y": 75 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079236, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1906.328765, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 34, + "y": 75 + }, + { + "x": 40, + "y": 65 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079237, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1906.905202, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 40, + "y": 65 + }, + { + "x": 32, + "y": 80 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079238, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1908.866502, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 32, + "y": 80 + }, + { + "x": 33, + "y": 64 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079239, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1909.584196, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 33, + "y": 64 + }, + { + "x": 62, + "y": 78 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079240, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1910.534239, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 62, + "y": 78 + }, + { + "x": 66, + "y": 76 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080415, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1910.534239, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "38", + "y": "22" + }, + { + "x": "34", + "y": "24" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080108, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1911.208, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "34", + "y": "24" + }, + { + "x": "65", + "y": "14" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080109, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1911.730833, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "65", + "y": "14" + }, + { + "x": "59", + "y": "0" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079241, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1913.10388, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 35, + "y": 86 + }, + { + "x": 41, + "y": 100 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079242, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1917.539813, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 44, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190080110, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1922.298087, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "59", + "y": "0" + }, + { + "x": "35", + "y": "25" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080111, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1925.718595, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "35", + "y": "25" + }, + { + "x": "35", + "y": "64" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080112, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1930.95113, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "35", + "y": "64" + }, + { + "x": "37", + "y": "28" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080113, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1933.276902, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "37", + "y": "28" + }, + { + "x": "44", + "y": "35" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080114, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1935.675731, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "44", + "y": "35" + }, + { + "x": "36", + "y": "37" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080115, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1941.252611, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "36", + "y": "37" + }, + { + "x": "40", + "y": "75" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080116, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1945.358498, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "40", + "y": "75" + }, + { + "x": "49", + "y": "93" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080117, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1947.35955, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "49", + "y": "93" + }, + { + "x": "36", + "y": "62" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080118, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1951.723811, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "36", + "y": "62" + }, + { + "x": "42", + "y": "36" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080119, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1954.863063, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "42", + "y": "36" + }, + { + "x": "50", + "y": "24" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080120, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1957.855391, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "50", + "y": "24" + }, + { + "x": "51", + "y": "54" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080121, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1962.122818, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "51", + "y": "54" + }, + { + "x": "56", + "y": "32" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080122, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1963.705811, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "56", + "y": "32" + }, + { + "x": "38", + "y": "78" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080123, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1973.242038, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "38", + "y": "78" + }, + { + "x": "35", + "y": "29" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080124, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1974.926251, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "35", + "y": "29" + }, + { + "x": "64", + "y": "34" + } + ], + "tags": [] + }, + { + "id": 190080125, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1979.096398, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "64", + "y": "34" + }, + { + "x": "71", + "y": "19" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079243, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1981.093981, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 29, + "y": 81 + }, + { + "x": 25, + "y": 78 + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080126, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1981.093981, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "71", + "y": "19" + }, + { + "x": "75", + "y": "22" + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080127, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1982.279433, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "75", + "y": "22" + }, + { + "x": "85", + "y": "35" + } + ], + "tags": [] + }, + { + "id": 190079245, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1983.555748, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 15, + "y": 65 + }, + { + "x": 60, + "y": 77 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190080128, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1986.56599, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "40", + "y": "23" + }, + { + "x": "56", + "y": "6" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080129, + "playerId": 8013, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1988.416332, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "56", + "y": "6" + }, + { + "x": "28", + "y": "43" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080130, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1993.648375, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "28", + "y": "43" + }, + { + "x": "65", + "y": "95" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080131, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1997.369252, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "65", + "y": "95" + }, + { + "x": "64", + "y": "69" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079247, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1999.63328, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 36, + "y": 31 + }, + { + "x": 37, + "y": 44 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080132, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 1999.63328, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "64", + "y": "69" + }, + { + "x": "63", + "y": "56" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079248, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2000.866977, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 37, + "y": 44 + }, + { + "x": 37, + "y": 44 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080133, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2000.866977, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "63", + "y": "56" + }, + { + "x": "63", + "y": "56" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079249, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2002.462826, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 37, + "y": 44 + }, + { + "x": 64, + "y": 0 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079250, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2008.490125, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 64, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190080134, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2022.805514, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "33", + "y": "100" + }, + { + "x": "40", + "y": "100" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079261, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2025.260826, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 60, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079263, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2032.432724, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 62, + "y": 0 + }, + { + "x": 69, + "y": 9 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079264, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2040.666669, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 69, + "y": 9 + }, + { + "x": 77, + "y": 17 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079266, + "playerId": 7868, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2041.889372, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 77, + "y": 17 + }, + { + "x": 68, + "y": 21 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079267, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2042.508736, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 68, + "y": 21 + }, + { + "x": 74, + "y": 31 + } + ], + "tags": [] + }, + { + "id": 190079268, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2045.386605, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": 74, + "y": 31 + }, + { + "x": 89, + "y": 24 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079269, + "playerId": 7868, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2046.57308, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 89, + "y": 24 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 1216 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079270, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2056.521736, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 100, + "y": 71 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190080135, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2077.703459, + "eventName": 3, + "subEventName": 34, + "positions": [ + { + "x": "0", + "y": "0" + }, + { + "x": "59", + "y": "95" + } + ], + "tags": [] + }, + { + "id": 190079271, + "playerId": 7868, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2081.078248, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 41, + "y": 5 + }, + { + "x": 27, + "y": 15 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080136, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2081.078248, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "59", + "y": "95" + }, + { + "x": "73", + "y": "85" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079273, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2083.390839, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 27, + "y": 15 + }, + { + "x": 50, + "y": 37 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079275, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2085.689716, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 50, + "y": 37 + }, + { + "x": 52, + "y": 55 + } + ], + "tags": [ + { + "id": 1302 + } + ] + }, + { + "id": 190080137, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2087.994214, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "48", + "y": "45" + }, + { + "x": "64", + "y": "34" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079277, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2089.472113, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 36, + "y": 66 + }, + { + "x": 29, + "y": 57 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080138, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2089.472113, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "64", + "y": "34" + }, + { + "x": "71", + "y": "43" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079278, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2091.464435, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 29, + "y": 57 + }, + { + "x": 41, + "y": 73 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079281, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2092.733596, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 41, + "y": 73 + }, + { + "x": 70, + "y": 63 + } + ], + "tags": [] + }, + { + "id": 190079282, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2098.907738, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 70, + "y": 63 + }, + { + "x": 53, + "y": 65 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079284, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2101.227368, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 53, + "y": 65 + }, + { + "x": 65, + "y": 91 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079286, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2103.704819, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 65, + "y": 91 + }, + { + "x": 56, + "y": 72 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079287, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2105.829755, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 56, + "y": 72 + }, + { + "x": 64, + "y": 97 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079288, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2107.21476, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 64, + "y": 97 + }, + { + "x": 62, + "y": 69 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079290, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2110.246213, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 62, + "y": 69 + }, + { + "x": 39, + "y": 71 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079291, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2113.030949, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 39, + "y": 71 + }, + { + "x": 51, + "y": 96 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079292, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2116.554076, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 51, + "y": 96 + }, + { + "x": 72, + "y": 83 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079302, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2118.044896, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 72, + "y": 83 + }, + { + "x": 72, + "y": 86 + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080140, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2118.044896, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "28", + "y": "17" + }, + { + "x": "28", + "y": "14" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079304, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2119.902843, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 72, + "y": 86 + }, + { + "x": 67, + "y": 95 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079294, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2123.623533, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 67, + "y": 95 + }, + { + "x": 69, + "y": 79 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079295, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2125.093176, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 69, + "y": 79 + }, + { + "x": 74, + "y": 77 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190080141, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2126.152721, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "26", + "y": "23" + }, + { + "x": "36", + "y": "4" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190079297, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2126.401998, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 64, + "y": 96 + }, + { + "x": 70, + "y": 78 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079300, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2127.641409, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 70, + "y": 78 + }, + { + "x": 94, + "y": 87 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079308, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2131.3204, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 94, + "y": 87 + }, + { + "x": 99, + "y": 73 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080417, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2131.3204, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "6", + "y": "13" + }, + { + "x": "1", + "y": "27" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079310, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2132.967658, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": 99, + "y": 73 + }, + { + "x": 87, + "y": 36 + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080142, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2134.12978, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "3", + "y": "50" + }, + { + "x": "13", + "y": "64" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190080143, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2135.929936, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "13", + "y": "64" + }, + { + "x": "37", + "y": "51" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079313, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2138.200406, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 63, + "y": 49 + }, + { + "x": 72, + "y": 73 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080144, + "playerId": 285508, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2138.200406, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "37", + "y": "51" + }, + { + "x": "28", + "y": "27" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079314, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2142.327968, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 72, + "y": 73 + }, + { + "x": 69, + "y": 88 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080145, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2142.327968, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "28", + "y": "27" + }, + { + "x": "31", + "y": "12" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080146, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2143.340272, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "31", + "y": "12" + }, + { + "x": "44", + "y": "8" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080147, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2146.699195, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "44", + "y": "8" + }, + { + "x": "71", + "y": "29" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079317, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2150.813701, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 29, + "y": 71 + }, + { + "x": 9, + "y": 56 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079318, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2152.909425, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 9, + "y": 56 + }, + { + "x": 37, + "y": 69 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079320, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2157.193438, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 37, + "y": 69 + }, + { + "x": 32, + "y": 48 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079321, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2158.598036, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 32, + "y": 48 + }, + { + "x": 35, + "y": 23 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079324, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2160.015319, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 35, + "y": 23 + }, + { + "x": 54, + "y": 3 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079325, + "playerId": 7868, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2164.646732, + "eventName": 7, + "subEventName": 70, + "positions": [ + { + "x": 54, + "y": 3 + }, + { + "x": 72, + "y": 23 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079326, + "playerId": 7868, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2165.72005, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 72, + "y": 23 + }, + { + "x": 77, + "y": 35 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079329, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2168.505574, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 77, + "y": 35 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 201 + }, + { + "id": 1203 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080148, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2170.628969, + "eventName": 9, + "subEventName": 91, + "positions": [ + { + "x": "0", + "y": "0" + }, + { + "x": "23", + "y": "65" + } + ], + "tags": [ + { + "id": 1203 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079331, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2178.21086, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 100, + "y": 79 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079332, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2196.72281, + "eventName": 3, + "subEventName": 30, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 95, + "y": 50 + } + ], + "tags": [ + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080149, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2198.244608, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": "5", + "y": "50" + }, + { + "x": "7", + "y": "73" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079334, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2199.320312, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": 93, + "y": 27 + }, + { + "x": 94, + "y": 14 + } + ], + "tags": [ + { + "id": 401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080150, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2200.945994, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "8", + "y": "58" + }, + { + "x": "6", + "y": "86" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190079336, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2203.400285, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 94, + "y": 14 + }, + { + "x": 98, + "y": 8 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080151, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2203.400285, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "6", + "y": "86" + }, + { + "x": "2", + "y": "92" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079339, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2210.448533, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 98, + "y": 8 + }, + { + "x": 91, + "y": 4 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080152, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2210.448533, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "2", + "y": "92" + }, + { + "x": "9", + "y": "96" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079341, + "playerId": 7868, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2214.982504, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 91, + "y": 4 + }, + { + "x": 94, + "y": 5 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080153, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2214.982504, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "9", + "y": "96" + }, + { + "x": "6", + "y": "95" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080154, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2217.108889, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "6", + "y": "95" + }, + { + "x": "14", + "y": "100" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079343, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2223.566025, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 86, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079345, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2232.575748, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 85, + "y": 0 + }, + { + "x": 87, + "y": 12 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079346, + "playerId": 7868, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2233.958615, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 87, + "y": 12 + }, + { + "x": 87, + "y": 1 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079347, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2234.745677, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 87, + "y": 1 + }, + { + "x": 88, + "y": 15 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079348, + "playerId": 7868, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2235.951126, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 88, + "y": 15 + }, + { + "x": 89, + "y": 16 + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080155, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2235.951126, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "12", + "y": "85" + }, + { + "x": "11", + "y": "84" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079349, + "playerId": 7868, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2237.638276, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 89, + "y": 16 + }, + { + "x": 82, + "y": 7 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080156, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2237.638276, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "11", + "y": "84" + }, + { + "x": "18", + "y": "93" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080157, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2238.424131, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "18", + "y": "93" + }, + { + "x": "34", + "y": "97" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079354, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2240.523887, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 66, + "y": 3 + }, + { + "x": 66, + "y": 1 + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080158, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2240.523887, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "34", + "y": "97" + }, + { + "x": "34", + "y": "99" + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079355, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2241.891595, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": 66, + "y": 1 + }, + { + "x": 66, + "y": 3 + } + ], + "tags": [] + }, + { + "id": 190080159, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2263.395964, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": "37", + "y": "94" + }, + { + "x": "82", + "y": "46" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079357, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2266.859877, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 18, + "y": 54 + }, + { + "x": 32, + "y": 60 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079358, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2269.752982, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 32, + "y": 60 + }, + { + "x": 35, + "y": 60 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080160, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2269.752982, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "68", + "y": "40" + }, + { + "x": "65", + "y": "40" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079359, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2270.326234, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 35, + "y": 60 + }, + { + "x": 35, + "y": 61 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080161, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2270.326234, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "65", + "y": "40" + }, + { + "x": "65", + "y": "39" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079360, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2271.498437, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 35, + "y": 61 + }, + { + "x": 27, + "y": 55 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079361, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2273.934496, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 27, + "y": 55 + }, + { + "x": 44, + "y": 50 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079363, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2276.061742, + "eventName": 8, + "subEventName": 86, + "positions": [ + { + "x": 44, + "y": 50 + }, + { + "x": 60, + "y": 63 + } + ], + "tags": [ + { + "id": 1901 + }, + { + "id": 901 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079364, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2277.769921, + "eventName": 6, + "subEventName": "", + "positions": [ + { + "x": 60, + "y": 63 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 1901 + } + ] + }, + { + "id": 190080164, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2304.968125, + "eventName": 3, + "subEventName": 32, + "positions": [ + { + "x": "42", + "y": "27" + }, + { + "x": "88", + "y": "65" + } + ], + "tags": [ + { + "id": 801 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079367, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2308.017532, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 12, + "y": 35 + }, + { + "x": 25, + "y": 37 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080163, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2308.017532, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "88", + "y": "65" + }, + { + "x": "75", + "y": "63" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079368, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2309.835376, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 25, + "y": 37 + }, + { + "x": 30, + "y": 25 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080165, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2309.835376, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "75", + "y": "63" + }, + { + "x": "70", + "y": "75" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080166, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2312.347508, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "70", + "y": "75" + }, + { + "x": "84", + "y": "93" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079372, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2315.377477, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 16, + "y": 7 + }, + { + "x": 4, + "y": 4 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080167, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2315.377477, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "84", + "y": "93" + }, + { + "x": "96", + "y": "96" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080168, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2316.941636, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "96", + "y": "96" + }, + { + "x": "92", + "y": "58" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 801 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079375, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2318.160961, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 8, + "y": 42 + }, + { + "x": 5, + "y": 43 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080169, + "playerId": 119630, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2318.160961, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "92", + "y": "58" + }, + { + "x": "95", + "y": "57" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080170, + "playerId": 119630, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2320.004585, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": "95", + "y": "57" + }, + { + "x": "92", + "y": "58" + } + ], + "tags": [] + }, + { + "id": 190079376, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2354.180177, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 7, + "y": 42 + }, + { + "x": 64, + "y": 19 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079378, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2354.948777, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 64, + "y": 19 + }, + { + "x": 73, + "y": 9 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080171, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2354.948777, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "36", + "y": "81" + }, + { + "x": "27", + "y": "91" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079379, + "playerId": 7868, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2356.366507, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 73, + "y": 9 + }, + { + "x": 91, + "y": 26 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080172, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2356.366507, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "27", + "y": "91" + }, + { + "x": "9", + "y": "74" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079381, + "playerId": 7868, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2362.064687, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 91, + "y": 26 + }, + { + "x": 86, + "y": 34 + } + ], + "tags": [ + { + "id": 302 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079384, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2363.8993, + "eventName": 10, + "subEventName": 100, + "positions": [ + { + "x": 86, + "y": 34 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 201 + }, + { + "id": 1210 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079385, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2369.756535, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 100, + "y": 59 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190080173, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2388.054065, + "eventName": 3, + "subEventName": 34, + "positions": [ + { + "x": "0", + "y": "0" + }, + { + "x": "64", + "y": "23" + } + ], + "tags": [] + }, + { + "id": 190079390, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2390.302303, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 36, + "y": 77 + }, + { + "x": 30, + "y": 100 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080174, + "playerId": 119630, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2390.302303, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "64", + "y": "23" + }, + { + "x": "70", + "y": "0" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079391, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2397.328541, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 29, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079392, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2406.534516, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 30, + "y": 100 + }, + { + "x": 61, + "y": 84 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079394, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2407.88984, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 61, + "y": 84 + }, + { + "x": 62, + "y": 89 + } + ], + "tags": [] + }, + { + "id": 190080175, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2408.523552, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "38", + "y": "11" + }, + { + "x": "64", + "y": "25" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079395, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2413.059589, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 36, + "y": 75 + }, + { + "x": 66, + "y": 74 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190080176, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2414.419675, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "34", + "y": "26" + }, + { + "x": "31", + "y": "48" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080177, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2417.806697, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "31", + "y": "48" + }, + { + "x": "38", + "y": "64" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080178, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2420.376892, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "38", + "y": "64" + }, + { + "x": "73", + "y": "37" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079397, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2422.862681, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 27, + "y": 63 + }, + { + "x": 29, + "y": 50 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080179, + "playerId": 119630, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2422.862681, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "73", + "y": "37" + }, + { + "x": "71", + "y": "50" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079400, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2424.978662, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 29, + "y": 50 + }, + { + "x": 60, + "y": 70 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190080180, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2427.736248, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "40", + "y": "30" + }, + { + "x": "28", + "y": "68" + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080181, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2434.269055, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "28", + "y": "68" + }, + { + "x": "80", + "y": "27" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079402, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2437.799727, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 20, + "y": 73 + }, + { + "x": 31, + "y": 71 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079404, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2439.90876, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 31, + "y": 71 + }, + { + "x": 30, + "y": 51 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079406, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2441.220777, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 30, + "y": 51 + }, + { + "x": 20, + "y": 57 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080182, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2441.220777, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "70", + "y": "49" + }, + { + "x": "80", + "y": "43" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079408, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2443.8493, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 20, + "y": 57 + }, + { + "x": 32, + "y": 58 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080183, + "playerId": 119630, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2443.8493, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "80", + "y": "43" + }, + { + "x": "68", + "y": "42" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079409, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2445.709927, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 32, + "y": 58 + }, + { + "x": 39, + "y": 67 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079410, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2447.500892, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 39, + "y": 67 + }, + { + "x": 28, + "y": 72 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080184, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2447.500892, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "61", + "y": "33" + }, + { + "x": "72", + "y": "28" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079412, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2450.129276, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 28, + "y": 72 + }, + { + "x": 61, + "y": 100 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079414, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2454.950924, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 61, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190080185, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2461.643369, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "44", + "y": "0" + }, + { + "x": "52", + "y": "31" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079416, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2466.265617, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 48, + "y": 69 + }, + { + "x": 61, + "y": 61 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080419, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2466.265617, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "52", + "y": "31" + }, + { + "x": "39", + "y": "39" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080186, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2467.603897, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "39", + "y": "39" + }, + { + "x": "43", + "y": "26" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079418, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2471.022049, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 57, + "y": 74 + }, + { + "x": 59, + "y": 74 + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 1601 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080187, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2471.022049, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "43", + "y": "26" + }, + { + "x": "41", + "y": "26" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080188, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2473.017167, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "41", + "y": "26" + }, + { + "x": "41", + "y": "6" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080189, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2475.034639, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "41", + "y": "6" + }, + { + "x": "94", + "y": "10" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079423, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2479.229177, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 6, + "y": 90 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080190, + "playerId": 285508, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2479.229177, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "94", + "y": "10" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 1601 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079424, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2488.830836, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 0, + "y": 86 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079427, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2526.19131, + "eventName": 3, + "subEventName": 34, + "positions": [ + { + "x": 100, + "y": 100 + }, + { + "x": 62, + "y": 0 + } + ], + "tags": [] + }, + { + "id": 190079428, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2528.365006, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 62, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190080191, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2533.447238, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "33", + "y": "100" + }, + { + "x": "32", + "y": "76" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080192, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2535.860114, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "32", + "y": "76" + }, + { + "x": "31", + "y": "41" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080193, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2538.845177, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "31", + "y": "41" + }, + { + "x": "36", + "y": "7" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080194, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2543.906907, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "36", + "y": "7" + }, + { + "x": "35", + "y": "46" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080195, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2550.717839, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "35", + "y": "46" + }, + { + "x": "67", + "y": "96" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080196, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2557.272866, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "67", + "y": "96" + }, + { + "x": "76", + "y": "97" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079432, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2559.043969, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 24, + "y": 3 + }, + { + "x": 27, + "y": 0 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080197, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2559.043969, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "76", + "y": "97" + }, + { + "x": "73", + "y": "100" + } + ], + "tags": [ + { + "id": 1601 + }, + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079433, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2566.178898, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 26, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079435, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2585.1634, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 27, + "y": 0 + }, + { + "x": 40, + "y": 2 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079437, + "playerId": 7868, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2585.761659, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 40, + "y": 2 + }, + { + "x": 33, + "y": 12 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080198, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2585.761659, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "60", + "y": "98" + }, + { + "x": "67", + "y": "88" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079438, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2587.373712, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 33, + "y": 12 + }, + { + "x": 44, + "y": 50 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080199, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2592.167788, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "56", + "y": "50" + }, + { + "x": "65", + "y": "16" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080200, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2596.75211, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "65", + "y": "16" + }, + { + "x": "71", + "y": "7" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079440, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2597.86457, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 29, + "y": 93 + }, + { + "x": 24, + "y": 100 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080201, + "playerId": 119630, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2597.86457, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "71", + "y": "7" + }, + { + "x": "76", + "y": "0" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079441, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2602.524594, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 35, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190080202, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2615.034421, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "76", + "y": "0" + }, + { + "x": "81", + "y": "9" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080203, + "playerId": 285508, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2616.035153, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "81", + "y": "9" + }, + { + "x": "74", + "y": "8" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080204, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2616.983217, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "74", + "y": "8" + }, + { + "x": "88", + "y": "9" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079445, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2618.627391, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 12, + "y": 91 + }, + { + "x": 22, + "y": 91 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080205, + "playerId": 285508, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2618.627391, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "88", + "y": "9" + }, + { + "x": "78", + "y": "9" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080206, + "playerId": 285508, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2620.04801, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "78", + "y": "9" + }, + { + "x": "76", + "y": "5" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079446, + "playerId": 120353, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2622.849129, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 24, + "y": 95 + }, + { + "x": 15, + "y": 97 + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080207, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2622.849129, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "76", + "y": "5" + }, + { + "x": "85", + "y": "3" + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079448, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2625.197805, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 15, + "y": 97 + }, + { + "x": 7, + "y": 93 + } + ], + "tags": [ + { + "id": 504 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080208, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2625.197805, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "85", + "y": "3" + }, + { + "x": "93", + "y": "7" + } + ], + "tags": [ + { + "id": 503 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079452, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2627.197824, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 7, + "y": 93 + }, + { + "x": 13, + "y": 100 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079454, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2630.390978, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 13, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190080209, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2667.05054, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "83", + "y": "0" + }, + { + "x": "94", + "y": "32" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079457, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2669.159605, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 6, + "y": 68 + }, + { + "x": 5, + "y": 63 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080210, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2669.159605, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "94", + "y": "32" + }, + { + "x": "95", + "y": "37" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080211, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2670.709589, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": "95", + "y": "37" + }, + { + "x": "94", + "y": "32" + } + ], + "tags": [] + }, + { + "id": 190079460, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2703.197522, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 9, + "y": 64 + }, + { + "x": 64, + "y": 71 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079461, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2705.275514, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 64, + "y": 71 + }, + { + "x": 51, + "y": 65 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080212, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2705.275514, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "36", + "y": "29" + }, + { + "x": "49", + "y": "35" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079463, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2707.08125, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 51, + "y": 65 + }, + { + "x": 88, + "y": 62 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079465, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2714.570017, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 88, + "y": 62 + }, + { + "x": 69, + "y": 59 + } + ], + "tags": [ + { + "id": 502 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080213, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2714.570017, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "12", + "y": "38" + }, + { + "x": "31", + "y": "41" + } + ], + "tags": [ + { + "id": 501 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080214, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2719.520967, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "31", + "y": "41" + }, + { + "x": "58", + "y": "49" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079470, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2721.896174, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 42, + "y": 51 + }, + { + "x": 59, + "y": 38 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079472, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2723.723927, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 59, + "y": 38 + }, + { + "x": 63, + "y": 53 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079475, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2726.978008, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 63, + "y": 53 + }, + { + "x": 64, + "y": 52 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080215, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2726.978008, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "37", + "y": "47" + }, + { + "x": "36", + "y": "48" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079477, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2727.657868, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 64, + "y": 52 + }, + { + "x": 71, + "y": 64 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190080216, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2729.723384, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "29", + "y": "36" + }, + { + "x": "48", + "y": "13" + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190079478, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2732.67359, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": 52, + "y": 87 + }, + { + "x": 76, + "y": 62 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190080218, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2734.9457, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "24", + "y": "38" + }, + { + "x": "37", + "y": "49" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080217, + "playerId": 265366, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2735.9814, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": "37", + "y": "49" + }, + { + "x": "39", + "y": "35" + } + ], + "tags": [ + { + "id": 602 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079480, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2736.022805, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": 63, + "y": 51 + }, + { + "x": 61, + "y": 65 + } + ], + "tags": [ + { + "id": 601 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079482, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2738.107953, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 61, + "y": 65 + }, + { + "x": 71, + "y": 95 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079485, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2744.090698, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 71, + "y": 95 + }, + { + "x": 74, + "y": 85 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080219, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2746.11633, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "26", + "y": "15" + }, + { + "x": "30", + "y": "19" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079487, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2746.86333, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 74, + "y": 85 + }, + { + "x": 70, + "y": 81 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080220, + "playerId": 285508, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2747.161448, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "30", + "y": "19" + }, + { + "x": "35", + "y": "26" + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079489, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2747.795769, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 70, + "y": 81 + }, + { + "x": 65, + "y": 74 + } + ], + "tags": [ + { + "id": 702 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079491, + "playerId": 116, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2749.603555, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 65, + "y": 74 + }, + { + "x": 56, + "y": 65 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079492, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2752.866425, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 56, + "y": 65 + }, + { + "x": 33, + "y": 64 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079493, + "playerId": 14870, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2755.914102, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 33, + "y": 64 + }, + { + "x": 33, + "y": 30 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079494, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2759.405542, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 33, + "y": 30 + }, + { + "x": 42, + "y": 1 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079496, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2760.920608, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 42, + "y": 1 + }, + { + "x": 28, + "y": 4 + } + ], + "tags": [] + }, + { + "id": 190080221, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2766.837748, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "72", + "y": "96" + }, + { + "x": "68", + "y": "98" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079497, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2766.883594, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 28, + "y": 4 + }, + { + "x": 32, + "y": 2 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080222, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2768.30056, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": "68", + "y": "98" + }, + { + "x": "72", + "y": "96" + } + ], + "tags": [ + { + "id": 1702 + } + ] + }, + { + "id": 190079499, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2821.54404, + "eventName": 3, + "subEventName": 31, + "positions": [ + { + "x": 25, + "y": 5 + }, + { + "x": 85, + "y": 14 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190080223, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2825.628618, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "15", + "y": "86" + }, + { + "x": "14", + "y": "52" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080224, + "playerId": 8480, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2834.061242, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": "14", + "y": "52" + }, + { + "x": "89", + "y": "49" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079502, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2838.720505, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 11, + "y": 51 + }, + { + "x": 15, + "y": 62 + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190079504, + "playerId": 8514, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2853.573405, + "eventName": 8, + "subEventName": 84, + "positions": [ + { + "x": 15, + "y": 62 + }, + { + "x": 76, + "y": 93 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190080225, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2860.48955, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "24", + "y": "7" + }, + { + "x": "31", + "y": "38" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080226, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2864.570482, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "31", + "y": "38" + }, + { + "x": "36", + "y": "8" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080227, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2866.638013, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "36", + "y": "8" + }, + { + "x": "55", + "y": "0" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079507, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2871.209539, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 45, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079509, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2888.102535, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": 43, + "y": 100 + }, + { + "x": 69, + "y": 88 + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079510, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2889.301125, + "eventName": 1, + "subEventName": 11, + "positions": [ + { + "x": 69, + "y": 88 + }, + { + "x": 79, + "y": 93 + } + ], + "tags": [ + { + "id": 602 + }, + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080228, + "playerId": 8653, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2889.301125, + "eventName": 1, + "subEventName": 12, + "positions": [ + { + "x": "31", + "y": "12" + }, + { + "x": "21", + "y": "7" + } + ], + "tags": [ + { + "id": 601 + }, + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079512, + "playerId": 7907, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2892.097679, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 79, + "y": 93 + }, + { + "x": 78, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190079513, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2895.971131, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 78, + "y": 100 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190080229, + "playerId": 350976, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2899.74939, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "29", + "y": "0" + }, + { + "x": "56", + "y": "11" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079514, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2902.091821, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": 44, + "y": 89 + }, + { + "x": 66, + "y": 61 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080230, + "playerId": 8498, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2904.228622, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "34", + "y": "39" + }, + { + "x": "25", + "y": "56" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080231, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2907.793563, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "25", + "y": "56" + }, + { + "x": "57", + "y": "84" + } + ], + "tags": [] + }, + { + "id": 190080232, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2912.282969, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "57", + "y": "84" + }, + { + "x": "62", + "y": "97" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080233, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2914.38403, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "62", + "y": "97" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080234, + "playerId": 12829, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2915.034256, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "71", + "y": "91" + }, + { + "x": "64", + "y": "92" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080235, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2915.900027, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": "64", + "y": "92" + }, + { + "x": "66", + "y": "95" + } + ], + "tags": [] + }, + { + "id": 190079516, + "playerId": 7868, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2917.628279, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": 34, + "y": 5 + }, + { + "x": 41, + "y": 12 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080236, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2918.817503, + "eventName": 8, + "subEventName": 83, + "positions": [ + { + "x": "59", + "y": "88" + }, + { + "x": "85", + "y": "83" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190079518, + "playerId": 25393, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2921.026852, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 15, + "y": 17 + }, + { + "x": 15, + "y": 20 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080237, + "playerId": 119630, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2921.026852, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "85", + "y": "83" + }, + { + "x": "85", + "y": "80" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080238, + "playerId": 119630, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2922.18409, + "eventName": 8, + "subEventName": 82, + "positions": [ + { + "x": "85", + "y": "80" + }, + { + "x": "92", + "y": "69" + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079521, + "playerId": 8319, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2924.628859, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 8, + "y": 31 + }, + { + "x": 27, + "y": 0 + } + ], + "tags": [ + { + "id": 1401 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079522, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2926.734556, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 27, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190080239, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2939.440383, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "76", + "y": "100" + }, + { + "x": "81", + "y": "92" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080240, + "playerId": 285508, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2941.235501, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "81", + "y": "92" + }, + { + "x": "73", + "y": "97" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080241, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2943.016301, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "73", + "y": "97" + }, + { + "x": "69", + "y": "87" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080242, + "playerId": 8488, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2944.669009, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "69", + "y": "87" + }, + { + "x": "79", + "y": "95" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080243, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2947.113585, + "eventName": 8, + "subEventName": 80, + "positions": [ + { + "x": "79", + "y": "95" + }, + { + "x": "89", + "y": "96" + } + ], + "tags": [ + { + "id": 402 + }, + { + "id": 801 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079525, + "playerId": 7964, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2949.141555, + "eventName": 7, + "subEventName": 72, + "positions": [ + { + "x": 19, + "y": 19 + }, + { + "x": 11, + "y": 4 + } + ], + "tags": [ + { + "id": 1401 + } + ] + }, + { + "id": 190079527, + "playerId": 4908, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2951.476805, + "eventName": 7, + "subEventName": 71, + "positions": [ + { + "x": 11, + "y": 4 + }, + { + "x": 29, + "y": 0 + } + ], + "tags": [ + { + "id": 1802 + } + ] + }, + { + "id": 190079528, + "playerId": 0, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2954.090128, + "eventName": 5, + "subEventName": 50, + "positions": [ + { + "x": 29, + "y": 0 + }, + { + "x": 100, + "y": 100 + } + ], + "tags": [] + }, + { + "id": 190080244, + "playerId": 149019, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2956.940653, + "eventName": 3, + "subEventName": 36, + "positions": [ + { + "x": "75", + "y": "100" + }, + { + "x": "73", + "y": "87" + } + ], + "tags": [ + { + "id": 1801 + } + ] + }, + { + "id": 190080245, + "playerId": 285508, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2958.885587, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": "73", + "y": "87" + }, + { + "x": "72", + "y": "86" + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079529, + "playerId": 7868, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2959.112093, + "eventName": 1, + "subEventName": 13, + "positions": [ + { + "x": 27, + "y": 13 + }, + { + "x": 28, + "y": 14 + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190079530, + "playerId": 7868, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2961.352416, + "eventName": 2, + "subEventName": 20, + "positions": [ + { + "x": 28, + "y": 14 + }, + { + "x": 27, + "y": 13 + } + ], + "tags": [] + }, + { + "id": 190080246, + "playerId": 283142, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2993.428163, + "eventName": 3, + "subEventName": 32, + "positions": [ + { + "x": "73", + "y": "83" + }, + { + "x": "88", + "y": "56" + } + ], + "tags": [ + { + "id": 801 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190079533, + "playerId": 257899, + "teamId": 1612, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2994.826943, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": 12, + "y": 44 + } + ], + "tags": [ + { + "id": 703 + }, + { + "id": 1801 + } + ] + }, + { + "id": 190080420, + "playerId": 0, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2994.826943, + "eventName": 1, + "subEventName": 10, + "positions": [ + { + "x": "88", + "y": "56" + }, + { + "x": "82", + "y": "5" + } + ], + "tags": [ + { + "id": 701 + }, + { + "id": 1802 + } + ] + }, + { + "id": 190080247, + "playerId": 119630, + "teamId": 1631, + "matchId": 2499773, + "matchPeriod": "2H", + "eventSec": 2999.70982, + "eventName": 8, + "subEventName": 85, + "positions": [ + { + "x": "82", + "y": "5" + }, + { + "x": "0", + "y": "0" + } + ], + "tags": [ + { + "id": 1802 + } + ] + } + ], + "teams": { + "1612": { + "wyId": 1612, + "gsmId": 663, + "name": "Liverpool", + "officialName": "Liverpool FC", + "city": "Liverpool", + "area": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "type": "club", + "category": "default", + "gender": "male" + }, + "1631": { + "wyId": 1631, + "gsmId": 682, + "name": "Leicester City", + "officialName": "Leicester City FC", + "city": "Leicester", + "area": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "type": "club", + "category": "default", + "gender": "male" + } + }, + "players": { + "1612": [ + { + "playerId": 15808, + "player": { + "wyId": 15808, + "gsmId": 103265, + "shortName": "Roberto Firmino", + "firstName": "Roberto Firmino", + "middleName": "", + "lastName": "Barbosa de Oliveira", + "height": 181, + "weight": 76, + "birthDate": "1991-10-02", + "birthArea": { + "id": "76", + "alpha2code": "BR", + "alpha3code": "BRA", + "name": "Brazil" + }, + "passportArea": { + "id": "76", + "alpha2code": "BR", + "alpha3code": "BRA", + "name": "Brazil" + }, + "role": { + "name": "Forward", + "code2": "FW", + "code3": "FWD" + }, + "foot": "right", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 18550, + "player": { + "wyId": 18550, + "gsmId": 159872, + "shortName": "E. Can", + "firstName": "Emre", + "middleName": "", + "lastName": "Can", + "height": 184, + "weight": 82, + "birthDate": "1994-01-12", + "birthArea": { + "id": "276", + "alpha2code": "DE", + "alpha3code": "DEU", + "name": "Germany" + }, + "passportArea": { + "id": "792", + "alpha2code": "TR", + "alpha3code": "TUR", + "name": "Turkey" + }, + "role": { + "name": "Midfielder", + "code2": "MD", + "code3": "MID" + }, + "foot": "right", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 3802, + "player": { + "wyId": 3802, + "gsmId": 82507, + "shortName": "Philippe Coutinho", + "firstName": "Philippe", + "middleName": "", + "lastName": "Coutinho Correia", + "height": 171, + "weight": 68, + "birthDate": "1992-06-12", + "birthArea": { + "id": "76", + "alpha2code": "BR", + "alpha3code": "BRA", + "name": "Brazil" + }, + "passportArea": { + "id": "76", + "alpha2code": "BR", + "alpha3code": "BRA", + "name": "Brazil" + }, + "role": { + "name": "Forward", + "code2": "FW", + "code3": "FWD" + }, + "foot": "right", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 25393, + "player": { + "wyId": 25393, + "gsmId": 55819, + "shortName": "D. Lovren", + "firstName": "Dejan", + "middleName": "", + "lastName": "Lovren", + "height": 188, + "weight": 84, + "birthDate": "1989-07-05", + "birthArea": { + "id": "191", + "alpha2code": "HR", + "alpha3code": "HRV", + "name": "Croatia" + }, + "passportArea": { + "id": "191", + "alpha2code": "HR", + "alpha3code": "HRV", + "name": "Croatia" + }, + "role": { + "name": "Defender", + "code2": "DF", + "code3": "DEF" + }, + "foot": "right", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 14870, + "player": { + "wyId": 14870, + "gsmId": 101189, + "shortName": "J. Matip", + "firstName": "Joël Andre", + "middleName": "", + "lastName": "Job Matip", + "height": 195, + "weight": 90, + "birthDate": "1991-08-08", + "birthArea": { + "id": "276", + "alpha2code": "DE", + "alpha3code": "DEU", + "name": "Germany" + }, + "passportArea": { + "id": "120", + "alpha2code": "CM", + "alpha3code": "CMR", + "name": "Cameroon" + }, + "role": { + "name": "Defender", + "code2": "DF", + "code3": "DEF" + }, + "foot": "right", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 116, + "player": { + "wyId": 116, + "gsmId": 8828, + "shortName": "G. Wijnaldum", + "firstName": "Georginio", + "middleName": "", + "lastName": "Wijnaldum", + "height": 175, + "weight": 74, + "birthDate": "1990-11-11", + "birthArea": { + "id": "528", + "alpha2code": "NL", + "alpha3code": "NLD", + "name": "Netherlands" + }, + "passportArea": { + "id": "740", + "alpha2code": "SR", + "alpha3code": "SUR", + "name": "Suriname" + }, + "role": { + "name": "Midfielder", + "code2": "MD", + "code3": "MID" + }, + "foot": "right", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 257899, + "player": { + "wyId": 257899, + "gsmId": 290182, + "shortName": "J. Gomez", + "firstName": "Joe", + "middleName": "", + "lastName": "Gomez", + "height": 188, + "weight": 77, + "birthDate": "1997-05-23", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "270", + "alpha2code": "GM", + "alpha3code": "GMB", + "name": "Gambia" + }, + "role": { + "name": "Defender", + "code2": "DF", + "code3": "DEF" + }, + "foot": "right", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 7964, + "player": { + "wyId": 7964, + "gsmId": 48010, + "shortName": "J. Henderson", + "firstName": "Jordan Brian", + "middleName": "", + "lastName": "Henderson", + "height": 182, + "weight": 67, + "birthDate": "1990-06-17", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "role": { + "name": "Midfielder", + "code2": "MD", + "code3": "MID" + }, + "foot": "right", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 8514, + "player": { + "wyId": 8514, + "gsmId": 13465, + "shortName": "S. Mignolet", + "firstName": "Simon", + "middleName": "", + "lastName": "Mignolet", + "height": 193, + "weight": 87, + "birthDate": "1988-03-06", + "birthArea": { + "id": "56", + "alpha2code": "BE", + "alpha3code": "BEL", + "name": "Belgium" + }, + "passportArea": { + "id": "56", + "alpha2code": "BE", + "alpha3code": "BEL", + "name": "Belgium" + }, + "role": { + "name": "Goalkeeper", + "code2": "GK", + "code3": "GKP" + }, + "foot": "right", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 120353, + "player": { + "wyId": 120353, + "gsmId": 138653, + "shortName": "Mohamed Salah", + "firstName": "Mohamed ", + "middleName": "", + "lastName": "Salah Ghaly", + "height": 175, + "weight": 72, + "birthDate": "1992-06-15", + "birthArea": { + "id": "818", + "alpha2code": "EG", + "alpha3code": "EGY", + "name": "Egypt" + }, + "passportArea": { + "id": "818", + "alpha2code": "EG", + "alpha3code": "EGY", + "name": "Egypt" + }, + "role": { + "name": "Forward", + "code2": "FW", + "code3": "FWD" + }, + "foot": "left", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 4908, + "player": { + "wyId": 4908, + "gsmId": 192742, + "shortName": "Alberto Moreno", + "firstName": "Alberto", + "middleName": "", + "lastName": "Moreno Pérez", + "height": 171, + "weight": 65, + "birthDate": "1992-07-05", + "birthArea": { + "id": "724", + "alpha2code": "ES", + "alpha3code": "ESP", + "name": "Spain" + }, + "passportArea": { + "id": "724", + "alpha2code": "ES", + "alpha3code": "ESP", + "name": "Spain" + }, + "role": { + "name": "Defender", + "code2": "DF", + "code3": "DEF" + }, + "foot": "left", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 74, + "player": { + "wyId": 74, + "gsmId": 2324, + "shortName": "R. Klavan", + "firstName": "Ragnar", + "middleName": "", + "lastName": "Klavan", + "height": 187, + "weight": 85, + "birthDate": "1985-10-30", + "birthArea": { + "id": "233", + "alpha2code": "EE", + "alpha3code": "EST", + "name": "Estonia" + }, + "passportArea": { + "id": "233", + "alpha2code": "EE", + "alpha3code": "EST", + "name": "Estonia" + }, + "role": { + "name": "Defender", + "code2": "DF", + "code3": "DEF" + }, + "foot": "left", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 286831, + "player": { + "wyId": 286831, + "gsmId": 320283, + "shortName": "D. Solanke", + "firstName": "Dominic", + "middleName": "", + "lastName": "Solanke", + "height": 185, + "weight": 75, + "birthDate": "1997-09-14", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "566", + "alpha2code": "NG", + "alpha3code": "NGA", + "name": "Nigeria" + }, + "role": { + "name": "Forward", + "code2": "FW", + "code3": "FWD" + }, + "foot": "right", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 346101, + "player": { + "wyId": 346101, + "gsmId": 376875, + "shortName": "T. Alexander-Arnold", + "firstName": "Trent", + "middleName": "", + "lastName": "Alexander-Arnold", + "height": 175, + "weight": 69, + "birthDate": "1998-10-07", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "role": { + "name": "Defender", + "code2": "DF", + "code3": "DEF" + }, + "foot": "right", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 15175, + "player": { + "wyId": 15175, + "gsmId": 205201, + "shortName": "L. Karius", + "firstName": "Loris", + "middleName": "", + "lastName": "Karius", + "height": 190, + "weight": 87, + "birthDate": "1993-06-22", + "birthArea": { + "id": "276", + "alpha2code": "DE", + "alpha3code": "DEU", + "name": "Germany" + }, + "passportArea": { + "id": "276", + "alpha2code": "DE", + "alpha3code": "DEU", + "name": "Germany" + }, + "role": { + "name": "Goalkeeper", + "code2": "GK", + "code3": "GKP" + }, + "foot": "right", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 8319, + "player": { + "wyId": 8319, + "gsmId": 2899, + "shortName": "J. Milner", + "firstName": "James Philip", + "middleName": "", + "lastName": "Milner", + "height": 176, + "weight": 70, + "birthDate": "1986-01-04", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "role": { + "name": "Midfielder", + "code2": "MD", + "code3": "MID" + }, + "foot": "right", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 7907, + "player": { + "wyId": 7907, + "gsmId": 5206, + "shortName": "D. Sturridge", + "firstName": "Daniel Andre", + "middleName": "", + "lastName": "Sturridge", + "height": 180, + "weight": 76, + "birthDate": "1989-09-01", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "388", + "alpha2code": "JM", + "alpha3code": "JAM", + "name": "Jamaica" + }, + "role": { + "name": "Forward", + "code2": "FW", + "code3": "FWD" + }, + "foot": "left", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 7868, + "player": { + "wyId": 7868, + "gsmId": 120695, + "shortName": "A. Oxlade-Chamberlain", + "firstName": "Alex", + "middleName": "", + "lastName": "Oxlade-Chamberlain", + "height": 175, + "weight": 70, + "birthDate": "1993-08-15", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "role": { + "name": "Midfielder", + "code2": "MD", + "code3": "MID" + }, + "foot": "right", + "currentTeamId": 1612, + "gender": "male", + "status": "active" + } + } + ], + "1631": [ + { + "playerId": 26150, + "player": { + "wyId": 26150, + "gsmId": 156662, + "shortName": "R. Mahrez", + "firstName": "Riyad", + "middleName": "", + "lastName": "Mahrez", + "height": 179, + "weight": 62, + "birthDate": "1991-02-21", + "birthArea": { + "id": "250", + "alpha2code": "FR", + "alpha3code": "FRA", + "name": "France" + }, + "passportArea": { + "id": "12", + "alpha2code": "DZ", + "alpha3code": "DZA", + "name": "Algeria" + }, + "role": { + "name": "Midfielder", + "code2": "MD", + "code3": "MID" + }, + "foot": "left", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 14763, + "player": { + "wyId": 14763, + "gsmId": 5724, + "shortName": "S. Okazaki", + "firstName": "Shinji", + "middleName": "", + "lastName": "Okazaki", + "height": 174, + "weight": 70, + "birthDate": "1986-04-16", + "birthArea": { + "id": "392", + "alpha2code": "JP", + "alpha3code": "JPN", + "name": "Japan" + }, + "passportArea": { + "id": "392", + "alpha2code": "JP", + "alpha3code": "JPN", + "name": "Japan" + }, + "role": { + "name": "Forward", + "code2": "FW", + "code3": "FWD" + }, + "foot": "right", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 8013, + "player": { + "wyId": 8013, + "gsmId": 73931, + "shortName": "M. Albrighton", + "firstName": "Marc", + "middleName": "", + "lastName": "Albrighton", + "height": 174, + "weight": 67, + "birthDate": "1989-11-18", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "role": { + "name": "Midfielder", + "code2": "MD", + "code3": "MID" + }, + "foot": "right", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 8480, + "player": { + "wyId": 8480, + "gsmId": 2841, + "shortName": "K. Schmeichel", + "firstName": "Kasper", + "middleName": "", + "lastName": "Schmeichel", + "height": 185, + "weight": 76, + "birthDate": "1986-11-05", + "birthArea": { + "id": "208", + "alpha2code": "DK", + "alpha3code": "DNK", + "name": "Denmark" + }, + "passportArea": { + "id": "208", + "alpha2code": "DK", + "alpha3code": "DNK", + "name": "Denmark" + }, + "role": { + "name": "Goalkeeper", + "code2": "GK", + "code3": "GKP" + }, + "foot": "right", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 8653, + "player": { + "wyId": 8653, + "gsmId": 182047, + "shortName": "H. Maguire", + "firstName": "Harry ", + "middleName": "", + "lastName": "Maguire", + "height": 188, + "weight": 79, + "birthDate": "1993-03-05", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "role": { + "name": "Defender", + "code2": "DF", + "code3": "DEF" + }, + "foot": "right", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 149019, + "player": { + "wyId": 149019, + "gsmId": 20278, + "shortName": "D. Simpson", + "firstName": "Danny", + "middleName": "", + "lastName": "Simpson", + "height": 177, + "weight": 78, + "birthDate": "1987-01-04", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "388", + "alpha2code": "JM", + "alpha3code": "JAM", + "name": "Jamaica" + }, + "role": { + "name": "Defender", + "code2": "DF", + "code3": "DEF" + }, + "foot": "right", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 8498, + "player": { + "wyId": 8498, + "gsmId": 20816, + "shortName": "A. King", + "firstName": "Andy", + "middleName": "", + "lastName": "King", + "height": 183, + "weight": 75, + "birthDate": "1988-10-29", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XWA", + "name": "Wales" + }, + "role": { + "name": "Midfielder", + "code2": "MD", + "code3": "MID" + }, + "foot": "right", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 8488, + "player": { + "wyId": 8488, + "gsmId": 47493, + "shortName": "W. Morgan", + "firstName": "Wes", + "middleName": "", + "lastName": "Morgan", + "height": 185, + "weight": 93, + "birthDate": "1984-01-21", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "388", + "alpha2code": "JM", + "alpha3code": "JAM", + "name": "Jamaica" + }, + "role": { + "name": "Defender", + "code2": "DF", + "code3": "DEF" + }, + "foot": "right", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 265366, + "player": { + "wyId": 265366, + "gsmId": 298168, + "shortName": "O. Ndidi", + "firstName": "Onyinye Wilfred", + "middleName": "", + "lastName": "Ndidi", + "height": 187, + "weight": 80, + "birthDate": "1996-12-16", + "birthArea": { + "id": "566", + "alpha2code": "NG", + "alpha3code": "NGA", + "name": "Nigeria" + }, + "passportArea": { + "id": "566", + "alpha2code": "NG", + "alpha3code": "NGA", + "name": "Nigeria" + }, + "role": { + "name": "Midfielder", + "code2": "MD", + "code3": "MID" + }, + "foot": "right", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 350976, + "player": { + "wyId": 350976, + "gsmId": 383419, + "shortName": "B. Chilwell", + "firstName": "Ben", + "middleName": "", + "lastName": "Chilwell", + "height": 178, + "weight": 71, + "birthDate": "1996-12-21", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "role": { + "name": "Defender", + "code2": "DF", + "code3": "DEF" + }, + "foot": "left", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 12829, + "player": { + "wyId": 12829, + "gsmId": 159732, + "shortName": "J. Vardy", + "firstName": "Jamie", + "middleName": "", + "lastName": "Vardy", + "height": 178, + "weight": 76, + "birthDate": "1987-01-11", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "role": { + "name": "Forward", + "code2": "FW", + "code3": "FWD" + }, + "foot": "right", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 14853, + "player": { + "wyId": 14853, + "gsmId": 11180, + "shortName": "C. Fuchs", + "firstName": "Christian", + "middleName": "", + "lastName": "Fuchs", + "height": 186, + "weight": 80, + "birthDate": "1986-04-07", + "birthArea": { + "id": "40", + "alpha2code": "AT", + "alpha3code": "AUT", + "name": "Austria" + }, + "passportArea": { + "id": "40", + "alpha2code": "AT", + "alpha3code": "AUT", + "name": "Austria" + }, + "role": { + "name": "Defender", + "code2": "DF", + "code3": "DEF" + }, + "foot": "left", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 217078, + "player": { + "wyId": 217078, + "gsmId": 250541, + "shortName": "D. Amartey", + "firstName": "Daniel", + "middleName": "", + "lastName": "Amartey", + "height": 183, + "weight": 78, + "birthDate": "1994-12-21", + "birthArea": { + "id": "288", + "alpha2code": "GH", + "alpha3code": "GHA", + "name": "Ghana" + }, + "passportArea": { + "id": "288", + "alpha2code": "GH", + "alpha3code": "GHA", + "name": "Ghana" + }, + "role": { + "name": "Midfielder", + "code2": "MD", + "code3": "MID" + }, + "foot": "right", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 3928, + "player": { + "wyId": 3928, + "gsmId": 21190, + "shortName": "Iborra", + "firstName": "Vicente", + "middleName": "", + "lastName": "Iborra De La Fuente", + "height": 195, + "weight": 88, + "birthDate": "1988-01-16", + "birthArea": { + "id": "724", + "alpha2code": "ES", + "alpha3code": "ESP", + "name": "Spain" + }, + "passportArea": { + "id": "724", + "alpha2code": "ES", + "alpha3code": "ESP", + "name": "Spain" + }, + "role": { + "name": "Midfielder", + "code2": "MD", + "code3": "MID" + }, + "foot": "right", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 8066, + "player": { + "wyId": 8066, + "gsmId": 50408, + "shortName": "B. Hamer", + "firstName": "Ben", + "middleName": "", + "lastName": "Hamer", + "height": 193, + "weight": 78, + "birthDate": "1987-11-20", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "role": { + "name": "Goalkeeper", + "code2": "GK", + "code3": "GKP" + }, + "foot": "right", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 119630, + "player": { + "wyId": 119630, + "gsmId": 89404, + "shortName": "I. Slimani", + "firstName": "Islam", + "middleName": "", + "lastName": "Slimani", + "height": 188, + "weight": 79, + "birthDate": "1988-06-18", + "birthArea": { + "id": "12", + "alpha2code": "DZ", + "alpha3code": "DZA", + "name": "Algeria" + }, + "passportArea": { + "id": "12", + "alpha2code": "DZ", + "alpha3code": "DZA", + "name": "Algeria" + }, + "role": { + "name": "Forward", + "code2": "FW", + "code3": "FWD" + }, + "foot": "right", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 285508, + "player": { + "wyId": 285508, + "gsmId": 319119, + "shortName": "K. Iheanacho", + "firstName": "Kelechi Promise", + "middleName": "", + "lastName": "Iheanacho", + "height": 187, + "weight": 77, + "birthDate": "1996-10-03", + "birthArea": { + "id": "566", + "alpha2code": "NG", + "alpha3code": "NGA", + "name": "Nigeria" + }, + "passportArea": { + "id": "566", + "alpha2code": "NG", + "alpha3code": "NGA", + "name": "Nigeria" + }, + "role": { + "name": "Forward", + "code2": "FW", + "code3": "FWD" + }, + "foot": "left", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + }, + { + "playerId": 283142, + "player": { + "wyId": 283142, + "gsmId": 317144, + "shortName": "D. Gray", + "firstName": "Demarai", + "middleName": "", + "lastName": "Gray", + "height": 179, + "weight": 66, + "birthDate": "1996-06-28", + "birthArea": { + "id": "0", + "alpha2code": "", + "alpha3code": "XEN", + "name": "England" + }, + "passportArea": { + "id": "388", + "alpha2code": "JM", + "alpha3code": "JAM", + "name": "Jamaica" + }, + "role": { + "name": "Forward", + "code2": "FW", + "code3": "FWD" + }, + "foot": "right", + "currentTeamId": 1631, + "gender": "male", + "status": "active" + } + } + ] + } +} \ No newline at end of file diff --git a/kloppy/tests/files/wyscout_events.json b/kloppy/tests/files/wyscout_events_v3.json similarity index 96% rename from kloppy/tests/files/wyscout_events.json rename to kloppy/tests/files/wyscout_events_v3.json index fd2b6c99..4b781f91 100644 --- a/kloppy/tests/files/wyscout_events.json +++ b/kloppy/tests/files/wyscout_events_v3.json @@ -1,3426 +1,3426 @@ -{ - "coaches": { - "3166": { - "coach": { - "birthArea": { - "alpha2code": "HR", - "alpha3code": "HRV", - "id": 191, - "name": "Croatia" - }, - "birthDate": "1969-02-20", - "currentTeamId": 3166, - "firstName": "Siniša", - "gender": "male", - "gsmId": 110818, - "lastName": "Mihajlović", - "middleName": "", - "passportArea": { - "alpha2code": "RS", - "alpha3code": "SRB", - "id": 688, - "name": "Serbia" - }, - "shortName": "S. Mihajlović", - "status": "active", - "wyId": 210120 - } - }, - "3185": { - "coach": { - "birthArea": { - "alpha2code": "IT", - "alpha3code": "ITA", - "id": 380, - "name": "Italy" - }, - "birthDate": "1976-02-14", - "currentTeamId": 0, - "firstName": "Moreno", - "gender": "male", - "gsmId": 423455, - "lastName": "Longo", - "middleName": "", - "passportArea": { - "alpha2code": "IT", - "alpha3code": "ITA", - "id": 380, - "name": "Italy" - }, - "shortName": "M. Longo", - "status": "active", - "wyId": 400257 - } - } - }, - "events": [ - { - "id": 663292348, - "location": { - "x": 52, - "y": 47 - }, - "matchId": 2852835, - "matchPeriod": "1H", - "matchTimestamp": "00:00:01.849", - "minute": 0, - "opponentTeam": { - "formation": "4-2-3-1", - "id": 3166, - "name": "Bologna" - }, - "pass": { - "accurate": false, - "angle": -51, - "endLocation": { - "x": 60, - "y": 32 - }, - "length": 13.21, - "recipient": { - "id": 20623, - "name": "R. Soriano", - "position": "AMF" - } - }, - "player": { - "id": 21123, - "name": "S. Verdi", - "position": "CF" - }, - "possession": { - "duration": "0.5815605", - "endLocation": { - "x": 40, - "y": 68 - }, - "eventIndex": 0, - "eventsNumber": 1, - "id": 663292348, - "startLocation": { - "x": 52, - "y": 47 - }, - "team": { - "formation": "3-4-3", - "id": 3185, - "name": "Torino" - }, - "types": [] - }, - "relatedEventId": 663291836, - "second": 1, - "team": { - "formation": "3-4-3", - "id": 3185, - "name": "Torino" - }, - "type": { - "primary": "pass", - "secondary": [ - "lateral_pass", - "loss", - "short_or_medium_pass" - ] - }, - "videoTimestamp": "2.849673" - }, - { - "id": 663291836, - "location": { - "x": 40, - "y": 68 - }, - "matchId": 2852835, - "matchPeriod": "1H", - "matchTimestamp": "00:00:03.012", - "minute": 0, - "opponentTeam": { - "formation": "3-4-3", - "id": 3185, - "name": "Torino" - }, - "pass": { - "accurate": true, - "angle": 120, - "endLocation": { - "x": 36, - "y": 78 - }, - "length": 7.99, - "recipient": { - "id": 22377, - "name": "I. M'baye", - "position": "RB" - } - }, - "player": { - "id": 20623, - "name": "R. Soriano", - "position": "AMF" - }, - "possession": { - "attack": { - "flank": "right", - "withGoal": false, - "withShot": false, - "withShotOnGoal": false, - "xg": 0 - }, - "duration": "28.0201355", - "endLocation": { - "x": 83, - "y": 0 - }, - "eventIndex": 0, - "eventsNumber": 14, - "id": 663291836, - "startLocation": { - "x": 40, - "y": 68 - }, - "team": { - "formation": "4-2-3-1", - "id": 3166, - "name": "Bologna" - }, - "types": [ - "attack" - ] - }, - "relatedEventId": 663291837, - "second": 3, - "team": { - "formation": "4-2-3-1", - "id": 3166, - "name": "Bologna" - }, - "type": { - "primary": "interception", - "secondary": [ - "pass", - "recovery", - "counterpressing_recovery", - "short_or_medium_pass" - ] - }, - "videoTimestamp": "4.012794" - }, - { - "id": 663291837, - "location": { - "x": 36, - "y": 78 - }, - "matchId": 2852835, - "matchPeriod": "1H", - "matchTimestamp": "00:00:05.417", - "minute": 0, - "opponentTeam": { - "formation": "3-4-3", - "id": 3185, - "name": "Torino" - }, - "pass": { - "accurate": true, - "angle": -128, - "endLocation": { - "x": 23, - "y": 52 - }, - "length": 22.34, - "recipient": { - "id": 20583, - "name": "Danilo", - "position": "RCB" - } - }, - "player": { - "id": 22377, - "name": "I. M'baye", - "position": "RB" - }, - "possession": { - "attack": { - "flank": "right", - "withGoal": false, - "withShot": false, - "withShotOnGoal": false, - "xg": 0 - }, - "duration": "28.0201355", - "endLocation": { - "x": 83, - "y": 0 - }, - "eventIndex": 1, - "eventsNumber": 14, - "id": 663291836, - "startLocation": { - "x": 40, - "y": 68 - }, - "team": { - "formation": "4-2-3-1", - "id": 3166, - "name": "Bologna" - }, - "types": [ - "attack" - ] - }, - "relatedEventId": 663291838, - "second": 5, - "team": { - "formation": "4-2-3-1", - "id": 3166, - "name": "Bologna" - }, - "type": { - "primary": "pass", - "secondary": [ - "lateral_pass", - "short_or_medium_pass" - ] - }, - "videoTimestamp": "6.417876" - }, - { - "id": 663291838, - "location": { - "x": 23, - "y": 52 - }, - "matchId": 2852835, - "matchPeriod": "1H", - "matchTimestamp": "00:00:07.148", - "minute": 0, - "opponentTeam": { - "formation": "3-4-3", - "id": 3185, - "name": "Torino" - }, - "pass": { - "accurate": true, - "angle": -105, - "endLocation": { - "x": 18, - "y": 23 - }, - "length": 20.41, - "recipient": { - "id": 3473, - "name": "G. Medel", - "position": "LCB" - } - }, - "player": { - "id": 20583, - "name": "Danilo", - "position": "RCB" - }, - "possession": { - "attack": { - "flank": "right", - "withGoal": false, - "withShot": false, - "withShotOnGoal": false, - "xg": 0 - }, - "duration": "28.0201355", - "endLocation": { - "x": 83, - "y": 0 - }, - "eventIndex": 2, - "eventsNumber": 14, - "id": 663291836, - "startLocation": { - "x": 40, - "y": 68 - }, - "team": { - "formation": "4-2-3-1", - "id": 3166, - "name": "Bologna" - }, - "types": [ - "attack" - ] - }, - "relatedEventId": 663291839, - "second": 7, - "team": { - "formation": "4-2-3-1", - "id": 3166, - "name": "Bologna" - }, - "type": { - "primary": "pass", - "secondary": [ - "lateral_pass", - "short_or_medium_pass" - ] - }, - "videoTimestamp": "8.148438" - } - ], - "formations": { - "3166": { - "1H": { - "1": { - "4-2-3-1": { - "endSec": 2947, - "id": 2506765, - "matchPeriod": "1H", - "players": [ - { - "22377": { - "playerId": 22377, - "position": "rb" - } - }, - { - "39": { - "playerId": 39, - "position": "lb" - } - }, - { - "556015": { - "playerId": 556015, - "position": "ramf" - } - }, - { - "21296": { - "playerId": 21296, - "position": "cf" - } - }, - { - "20583": { - "playerId": 20583, - "position": "rcb" - } - }, - { - "439889": { - "playerId": 439889, - "position": "rdmf" - } - }, - { - "20623": { - "playerId": 20623, - "position": "amf" - } - }, - { - "99430": { - "playerId": 99430, - "position": "gk" - } - }, - { - "3473": { - "playerId": 3473, - "position": "lcb" - } - }, - { - "347525": { - "playerId": 347525, - "position": "ldmf" - } - }, - { - "491409": { - "playerId": 491409, - "position": "lamf" - } - } - ], - "scheme": "4-2-3-1", - "startSec": 1 - } - } - }, - "2H": { - "0": { - "4-2-3-1": { - "endSec": 4541, - "id": 2506820, - "matchPeriod": "2H", - "players": [ - { - "20623": { - "playerId": 20623, - "position": "amf" - } - }, - { - "99430": { - "playerId": 99430, - "position": "gk" - } - }, - { - "3473": { - "playerId": 3473, - "position": "lcb" - } - }, - { - "347525": { - "playerId": 347525, - "position": "ldmf" - } - }, - { - "22578": { - "playerId": 22578, - "position": "lamf" - } - }, - { - "22377": { - "playerId": 22377, - "position": "rb" - } - }, - { - "39": { - "playerId": 39, - "position": "lb" - } - }, - { - "556015": { - "playerId": 556015, - "position": "ramf" - } - }, - { - "86316": { - "playerId": 86316, - "position": "cf" - } - }, - { - "20583": { - "playerId": 20583, - "position": "rcb" - } - }, - { - "439889": { - "playerId": 439889, - "position": "rdmf" - } - } - ], - "scheme": "4-2-3-1", - "startSec": 0 - } - }, - "1595": { - "4-1-4-1": { - "endSec": 6440, - "id": 2506833, - "matchPeriod": "2H", - "players": [ - { - "99430": { - "playerId": 99430, - "position": "gk" - } - }, - { - "3473": { - "playerId": 3473, - "position": "lcb" - } - }, - { - "556015": { - "playerId": 556015, - "position": "rw" - } - }, - { - "22578": { - "playerId": 22578, - "position": "lw" - } - }, - { - "22377": { - "playerId": 22377, - "position": "rb" - } - }, - { - "39": { - "playerId": 39, - "position": "lb" - } - }, - { - "20623": { - "playerId": 20623, - "position": "rcmf" - } - }, - { - "86316": { - "playerId": 86316, - "position": "cf" - } - }, - { - "20583": { - "playerId": 20583, - "position": "rcb" - } - }, - { - "496214": { - "playerId": 496214, - "position": "dmf" - } - }, - { - "476177": { - "playerId": 476177, - "position": "lcmf" - } - } - ], - "scheme": "4-1-4-1", - "startSec": 1595 - } - }, - "1899": { - "4-1-4-1": { - "endSec": 7761, - "id": 2506837, - "matchPeriod": "2H", - "players": [ - { - "22377": { - "playerId": 22377, - "position": "rb" - } - }, - { - "39": { - "playerId": 39, - "position": "lb" - } - }, - { - "20623": { - "playerId": 20623, - "position": "rcmf" - } - }, - { - "86316": { - "playerId": 86316, - "position": "cf" - } - }, - { - "20583": { - "playerId": 20583, - "position": "rcb" - } - }, - { - "496214": { - "playerId": 496214, - "position": "dmf" - } - }, - { - "476177": { - "playerId": 476177, - "position": "lcmf" - } - }, - { - "99430": { - "playerId": 99430, - "position": "gk" - } - }, - { - "3473": { - "playerId": 3473, - "position": "lcb" - } - }, - { - "512740": { - "playerId": 512740, - "position": "rw" - } - }, - { - "22578": { - "playerId": 22578, - "position": "lw" - } - } - ], - "scheme": "4-1-4-1", - "startSec": 1899 - } - } - } - }, - "3185": { - "1H": { - "1": { - "3-4-3": { - "endSec": 3216, - "id": 2506814, - "matchPeriod": "1H", - "players": [ - { - "25523": { - "playerId": 25523, - "position": "cb" - } - }, - { - "237269": { - "playerId": 237269, - "position": "rcmf" - } - }, - { - "22202": { - "playerId": 22202, - "position": "rwf" - } - }, - { - "21158": { - "playerId": 21158, - "position": "gk" - } - }, - { - "475319": { - "playerId": 475319, - "position": "lcb3" - } - }, - { - "14903": { - "playerId": 14903, - "position": "lcmf" - } - }, - { - "21123": { - "playerId": 21123, - "position": "cf" - } - }, - { - "22883": { - "playerId": 22883, - "position": "rcb3" - } - }, - { - "339791": { - "playerId": 339791, - "position": "rwb" - } - }, - { - "101742": { - "playerId": 101742, - "position": "lwb" - } - }, - { - "21234": { - "playerId": 21234, - "position": "lwf" - } - } - ], - "scheme": "3-4-3", - "startSec": 1 - } - } - }, - "2H": { - "269": { - "3-4-3": { - "endSec": 4522, - "id": 2506841, - "matchPeriod": "2H", - "players": [ - { - "240378": { - "playerId": 240378, - "position": "lwb" - } - }, - { - "21234": { - "playerId": 21234, - "position": "lwf" - } - }, - { - "25523": { - "playerId": 25523, - "position": "cb" - } - }, - { - "237269": { - "playerId": 237269, - "position": "rcmf" - } - }, - { - "22202": { - "playerId": 22202, - "position": "rwf" - } - }, - { - "21158": { - "playerId": 21158, - "position": "gk" - } - }, - { - "475319": { - "playerId": 475319, - "position": "lcb3" - } - }, - { - "14903": { - "playerId": 14903, - "position": "lcmf" - } - }, - { - "21123": { - "playerId": 21123, - "position": "cf" - } - }, - { - "22883": { - "playerId": 22883, - "position": "rcb3" - } - }, - { - "339791": { - "playerId": 339791, - "position": "rwb" - } - } - ], - "scheme": "3-4-3", - "startSec": 269 - } - }, - "1307": { - "3-4-3": { - "endSec": 6114, - "id": 2506850, - "matchPeriod": "2H", - "players": [ - { - "25523": { - "playerId": 25523, - "position": "cb" - } - }, - { - "237269": { - "playerId": 237269, - "position": "rcmf" - } - }, - { - "22202": { - "playerId": 22202, - "position": "rwf" - } - }, - { - "21158": { - "playerId": 21158, - "position": "gk" - } - }, - { - "475319": { - "playerId": 475319, - "position": "lcb3" - } - }, - { - "14903": { - "playerId": 14903, - "position": "lcmf" - } - }, - { - "21123": { - "playerId": 21123, - "position": "cf" - } - }, - { - "22883": { - "playerId": 22883, - "position": "rcb3" - } - }, - { - "240378": { - "playerId": 240378, - "position": "rwb" - } - }, - { - "339791": { - "playerId": 339791, - "position": "lwb" - } - }, - { - "21234": { - "playerId": 21234, - "position": "lwf" - } - } - ], - "scheme": "3-4-3", - "startSec": 1307 - } - }, - "1861": { - "3-4-3": { - "endSec": 7596, - "id": 2506852, - "matchPeriod": "2H", - "players": [ - { - "21158": { - "playerId": 21158, - "position": "gk" - } - }, - { - "475319": { - "playerId": 475319, - "position": "lcb3" - } - }, - { - "14903": { - "playerId": 14903, - "position": "lcmf" - } - }, - { - "21123": { - "playerId": 21123, - "position": "cf" - } - }, - { - "25523": { - "playerId": 25523, - "position": "rcb3" - } - }, - { - "240378": { - "playerId": 240378, - "position": "rwb" - } - }, - { - "339791": { - "playerId": 339791, - "position": "lwb" - } - }, - { - "21234": { - "playerId": 21234, - "position": "lwf" - } - }, - { - "25558": { - "playerId": 25558, - "position": "cb" - } - }, - { - "237269": { - "playerId": 237269, - "position": "rcmf" - } - }, - { - "22202": { - "playerId": 22202, - "position": "rwf" - } - } - ], - "scheme": "3-4-3", - "startSec": 1861 - } - }, - "2789": { - "3-4-1-2": { - "endSec": 8651, - "id": 2506860, - "matchPeriod": "2H", - "players": [ - { - "14903": { - "playerId": 14903, - "position": "lcmf" - } - }, - { - "22202": { - "playerId": 22202, - "position": "ss" - } - }, - { - "475319": { - "playerId": 475319, - "position": "rcb3" - } - }, - { - "240378": { - "playerId": 240378, - "position": "rwb" - } - }, - { - "339791": { - "playerId": 339791, - "position": "lwb" - } - }, - { - "21234": { - "playerId": 21234, - "position": "cf" - } - }, - { - "25558": { - "playerId": 25558, - "position": "cb" - } - }, - { - "237269": { - "playerId": 237269, - "position": "rcmf" - } - }, - { - "21123": { - "playerId": 21123, - "position": "amf" - } - }, - { - "21158": { - "playerId": 21158, - "position": "gk" - } - }, - { - "626316": { - "playerId": 626316, - "position": "lcb3" - } - } - ], - "scheme": "3-4-1-2", - "startSec": 2789 - } - } - } - } - }, - "match": { - "competitionId": 524, - "date": "August 2, 2020 at 8:45:00 PM GMT+2", - "dateutc": "2020-08-02 18:45:00", - "duration": "Regular", - "gameweek": 38, - "gsmId": -178889, - "hasDataAvailable": true, - "label": "Bologna - Torino, 1 - 1", - "referees": [ - { - "refereeId": 396653, - "role": "referee" - }, - { - "refereeId": 394731, - "role": "firstAssistant" - }, - { - "refereeId": 458270, - "role": "secondAssistant" - }, - { - "refereeId": 377271, - "role": "fourthOfficial" - }, - { - "refereeId": 0, - "role": "firstAdditionalAssistant" - }, - { - "refereeId": 0, - "role": "secondAdditionalAssistant" - } - ], - "roundId": 4420465, - "seasonId": 185844, - "status": "Played", - "teamsData": { - "3166": { - "coachId": 210120, - "formation": { - "bench": [ - { - "assists": "0", - "goals": "0", - "ownGoals": "0", - "playerId": 20604, - "redCards": "0", - "shirtNumber": 1, - "yellowCards": "0" - }, - { - "assists": "0", - "goals": "0", - "ownGoals": "0", - "playerId": 366296, - "redCards": "0", - "shirtNumber": 97, - "yellowCards": "0" - }, - { - "assists": "0", - "goals": "0", - "ownGoals": "0", - "playerId": 373768, - "redCards": "0", - "shirtNumber": 7, - "yellowCards": "0" - }, - { - "assists": "0", - "goals": "0", - "ownGoals": "0", - "playerId": 20529, - "redCards": "0", - "shirtNumber": 16, - "yellowCards": "0" - }, - { - "assists": "0", - "goals": "0", - "ownGoals": "0", - "playerId": 536800, - "redCards": "0", - "shirtNumber": 29, - "yellowCards": "0" - }, - { - "assists": "0", - "goals": "0", - "ownGoals": "0", - "playerId": 532549, - "redCards": "0", - "shirtNumber": 6, - "yellowCards": "0" - }, - { - "assists": "0", - "goals": "0", - "ownGoals": "0", - "playerId": 496671, - "redCards": "0", - "shirtNumber": 25, - "yellowCards": "0" - }, - { - "assists": "0", - "goals": "0", - "ownGoals": "0", - "playerId": 22578, - "redCards": "0", - "shirtNumber": 10, - "yellowCards": "0" - }, - { - "assists": "0", - "goals": "0", - "ownGoals": "0", - "playerId": 86316, - "redCards": "0", - "shirtNumber": 9, - "yellowCards": "74" - }, - { - "assists": "0", - "goals": "0", - "ownGoals": "0", - "playerId": 476177, - "redCards": "0", - "shirtNumber": 34, - "yellowCards": "0" - }, - { - "assists": "0", - "goals": "0", - "ownGoals": "0", - "playerId": 512740, - "redCards": "0", - "shirtNumber": 17, - "yellowCards": "0" - }, - { - "assists": "0", - "goals": "0", - "ownGoals": "0", - "playerId": 496214, - "redCards": "0", - "shirtNumber": 8, - "yellowCards": "0" - } - ], - "lineup": [ - { - "assists": "0", - "goals": "0", - "ownGoals": "0", - "playerId": 21296, - "redCards": "0", - "shirtNumber": 24, - "yellowCards": "0" - }, - { - "assists": "0", - "goals": "0", - "ownGoals": "0", - "playerId": 491409, - "redCards": "0", - "shirtNumber": 99, - "yellowCards": "0" - }, - { - "assists": "0", - "goals": "1", - "ownGoals": "0", - "playerId": 347525, - "redCards": "0", - "shirtNumber": 32, - "yellowCards": "0" - }, - { - "assists": "0", - "goals": "0", - "ownGoals": "0", - "playerId": 439889, - "redCards": "0", - "shirtNumber": 30, - "yellowCards": "0" - }, - { - "assists": "0", - "goals": "0", - "ownGoals": "0", - "playerId": 556015, - "redCards": "0", - "shirtNumber": 26, - "yellowCards": "0" - }, - { - "assists": "0", - "goals": "0", - "ownGoals": "0", - "playerId": 3473, - "redCards": "0", - "shirtNumber": 5, - "yellowCards": "83" - }, - { - "assists": "0", - "goals": "0", - "ownGoals": "0", - "playerId": 20583, - "redCards": "0", - "shirtNumber": 23, - "yellowCards": "0" - }, - { - "assists": "0", - "goals": "0", - "ownGoals": "0", - "playerId": 22377, - "redCards": "0", - "shirtNumber": 15, - "yellowCards": "0" - }, - { - "assists": "1", - "goals": "0", - "ownGoals": "0", - "playerId": 20623, - "redCards": "0", - "shirtNumber": 21, - "yellowCards": "78" - }, - { - "assists": "0", - "goals": "0", - "ownGoals": "0", - "playerId": 99430, - "redCards": "0", - "shirtNumber": 28, - "yellowCards": "0" - }, - { - "assists": "0", - "goals": "0", - "ownGoals": "0", - "playerId": 39, - "redCards": "0", - "shirtNumber": 4, - "yellowCards": "0" - } - ], - "substitutions": [ - { - "assists": "0", - "minute": 48, - "playerIn": 22578, - "playerOut": 21296 - }, - { - "assists": "0", - "minute": 48, - "playerIn": 86316, - "playerOut": 491409 - }, - { - "assists": "0", - "minute": 71, - "playerIn": 476177, - "playerOut": 347525 - }, - { - "assists": "0", - "minute": 71, - "playerIn": 496214, - "playerOut": 439889 - }, - { - "assists": "0", - "minute": 76, - "playerIn": 512740, - "playerOut": 556015 - } - ] - }, - "hasFormation": 1, - "score": 1, - "scoreET": 0, - "scoreHT": 1, - "scoreP": 0, - "side": "home", - "teamId": 3166 - }, - "3185": { - "coachId": 400257, - "formation": { - "bench": [ - { - "assists": "0", - "goals": "0", - "ownGoals": "0", - "playerId": 25421, - "redCards": "0", - "shirtNumber": 39, - "yellowCards": "0" - }, - { - "assists": "0", - "goals": "0", - "ownGoals": "0", - "playerId": 481140, - "redCards": "0", - "shirtNumber": 45, - "yellowCards": "0" - }, - { - "assists": "0", - "goals": "0", - "ownGoals": "0", - "playerId": 501457, - "redCards": "0", - "shirtNumber": 27, - "yellowCards": "0" - }, - { - "assists": "0", - "goals": "0", - "ownGoals": "0", - "playerId": 545358, - "redCards": "0", - "shirtNumber": 44, - "yellowCards": "0" - }, - { - "assists": "0", - "goals": "0", - "ownGoals": "0", - "playerId": 551857, - "redCards": "0", - "shirtNumber": 56, - "yellowCards": "0" - }, - { - "assists": "0", - "goals": "0", - "ownGoals": "0", - "playerId": 21547, - "redCards": "0", - "shirtNumber": 18, - "yellowCards": "0" - }, - { - "assists": "0", - "goals": "0", - "ownGoals": "0", - "playerId": 536792, - "redCards": "0", - "shirtNumber": 19, - "yellowCards": "0" - }, - { - "assists": "0", - "goals": "0", - "ownGoals": "0", - "playerId": 562846, - "redCards": "0", - "shirtNumber": 80, - "yellowCards": "0" - }, - { - "assists": "0", - "goals": "0", - "ownGoals": "0", - "playerId": 354552, - "redCards": "0", - "shirtNumber": 20, - "yellowCards": "0" - }, - { - "assists": "0", - "goals": "0", - "ownGoals": "0", - "playerId": 240378, - "redCards": "0", - "shirtNumber": 34, - "yellowCards": "0" - }, - { - "assists": "0", - "goals": "0", - "ownGoals": "0", - "playerId": 25558, - "redCards": "0", - "shirtNumber": 33, - "yellowCards": "0" - }, - { - "assists": "0", - "goals": "0", - "ownGoals": "0", - "playerId": 626316, - "redCards": "0", - "shirtNumber": 77, - "yellowCards": "0" - } - ], - "lineup": [ - { - "assists": "0", - "goals": "0", - "ownGoals": "0", - "playerId": 101742, - "redCards": "0", - "shirtNumber": 15, - "yellowCards": "47" - }, - { - "assists": "0", - "goals": "0", - "ownGoals": "0", - "playerId": 22883, - "redCards": "0", - "shirtNumber": 5, - "yellowCards": "0" - }, - { - "assists": "0", - "goals": "0", - "ownGoals": "0", - "playerId": 475319, - "redCards": "0", - "shirtNumber": 36, - "yellowCards": "0" - }, - { - "assists": "0", - "goals": "0", - "ownGoals": "0", - "playerId": 237269, - "redCards": "0", - "shirtNumber": 7, - "yellowCards": "0" - }, - { - "assists": "0", - "goals": "0", - "ownGoals": "0", - "playerId": 21158, - "redCards": "0", - "shirtNumber": 25, - "yellowCards": "0" - }, - { - "assists": "0", - "goals": "1", - "ownGoals": "0", - "playerId": 22202, - "redCards": "0", - "shirtNumber": 11, - "yellowCards": "0" - }, - { - "assists": "0", - "goals": "0", - "ownGoals": "0", - "playerId": 21234, - "redCards": "0", - "shirtNumber": 9, - "yellowCards": "0" - }, - { - "assists": "1", - "goals": "0", - "ownGoals": "0", - "playerId": 21123, - "redCards": "0", - "shirtNumber": 24, - "yellowCards": "0" - }, - { - "assists": "0", - "goals": "0", - "ownGoals": "0", - "playerId": 339791, - "redCards": "0", - "shirtNumber": 21, - "yellowCards": "60" - }, - { - "assists": "0", - "goals": "0", - "ownGoals": "0", - "playerId": 14903, - "redCards": "0", - "shirtNumber": 88, - "yellowCards": "56" - }, - { - "assists": "0", - "goals": "0", - "ownGoals": "0", - "playerId": 25523, - "redCards": "0", - "shirtNumber": 30, - "yellowCards": "0" - } - ], - "substitutions": [ - { - "assists": "0", - "minute": 50, - "playerIn": 240378, - "playerOut": 101742 - }, - { - "assists": "0", - "minute": 76, - "playerIn": 25558, - "playerOut": 22883 - }, - { - "assists": "0", - "minute": 92, - "playerIn": 626316, - "playerOut": 25523 - } - ] - }, - "hasFormation": 1, - "score": 1, - "scoreET": 0, - "scoreHT": 0, - "scoreP": 0, - "side": "away", - "teamId": 3185 - } - }, - "winner": 0, - "wyId": 2852835 - }, - "players": { - "3166": [ - { - "player": { - "birthArea": { - "alpha2code": "AR", - "alpha3code": "ARG", - "id": 32, - "name": "Argentina" - }, - "birthDate": "1982-02-05", - "currentTeamId": 3166, - "firstName": "Rodrigo Sebastián", - "foot": "right", - "gender": "male", - "gsmId": 114, - "height": 176, - "lastName": "Palacio", - "middleName": "", - "passportArea": { - "alpha2code": "ES", - "alpha3code": "ESP", - "id": 724, - "name": "Spain" - }, - "role": { - "code2": "FW", - "code3": "FWD", - "name": "Forward" - }, - "shortName": "R. Palacio", - "status": "active", - "weight": 70, - "wyId": 21296 - } - }, - { - "player": { - "birthArea": { - "alpha2code": "GM", - "alpha3code": "GMB", - "id": 270, - "name": "Gambia" - }, - "birthDate": "1998-11-14", - "currentNationalTeamId": 18728, - "currentTeamId": 3166, - "firstName": "Musa", - "foot": "right", - "gender": "male", - "gsmId": -52062, - "height": 183, - "lastName": "Barrow", - "middleName": "", - "passportArea": { - "alpha2code": "GM", - "alpha3code": "GMB", - "id": 270, - "name": "Gambia" - }, - "role": { - "code2": "FW", - "code3": "FWD", - "name": "Forward" - }, - "shortName": "Musa Barrow", - "status": "active", - "weight": 77, - "wyId": 491409 - } - }, - { - "player": { - "birthArea": { - "alpha2code": "SE", - "alpha3code": "SWE", - "id": 752, - "name": "Sweden" - }, - "birthDate": "1999-01-05", - "currentNationalTeamId": 7047, - "currentTeamId": 3166, - "firstName": "Mattias", - "foot": "right", - "gender": "male", - "gsmId": 377463, - "height": 185, - "lastName": "Svanberg", - "middleName": "", - "passportArea": { - "alpha2code": "SE", - "alpha3code": "SWE", - "id": 752, - "name": "Sweden" - }, - "role": { - "code2": "MD", - "code3": "MID", - "name": "Midfielder" - }, - "shortName": "M. Svanberg", - "status": "active", - "weight": 77, - "wyId": 347525 - } - }, - { - "player": { - "birthArea": { - "alpha2code": "NL", - "alpha3code": "NLD", - "id": 528, - "name": "Netherlands" - }, - "birthDate": "1997-01-12", - "currentTeamId": 3166, - "firstName": "Jerdy", - "foot": "right", - "gender": "male", - "gsmId": 448432, - "height": 185, - "lastName": "Schouten", - "middleName": "", - "passportArea": { - "alpha2code": "NL", - "alpha3code": "NLD", - "id": 528, - "name": "Netherlands" - }, - "role": { - "code2": "MD", - "code3": "MID", - "name": "Midfielder" - }, - "shortName": "J. Schouten", - "status": "active", - "weight": 72, - "wyId": 439889 - } - }, - { - "player": { - "birthArea": { - "alpha2code": "GM", - "alpha3code": "GMB", - "id": 270, - "name": "Gambia" - }, - "birthDate": "2001-12-26", - "currentTeamId": 9613, - "firstName": "Musa", - "foot": "left", - "gender": "male", - "gsmId": -70602, - "height": 170, - "lastName": "Juwara", - "middleName": "", - "passportArea": { - "alpha2code": "GM", - "alpha3code": "GMB", - "id": 270, - "name": "Gambia" - }, - "role": { - "code2": "FW", - "code3": "FWD", - "name": "Forward" - }, - "shortName": "M. Juwara", - "status": "active", - "weight": 60, - "wyId": 556015 - } - }, - { - "player": { - "birthArea": { - "alpha2code": "CL", - "alpha3code": "CHL", - "id": 152, - "name": "Chile" - }, - "birthDate": "1987-08-03", - "currentNationalTeamId": 12381, - "currentTeamId": 3166, - "firstName": "Gary Alexis", - "foot": "right", - "gender": "male", - "gsmId": 21790, - "height": 171, - "lastName": "Medel Soto", - "middleName": "", - "passportArea": { - "alpha2code": "CL", - "alpha3code": "CHL", - "id": 152, - "name": "Chile" - }, - "role": { - "code2": "DF", - "code3": "DEF", - "name": "Defender" - }, - "shortName": "G. Medel", - "status": "active", - "weight": 65, - "wyId": 3473 - } - }, - { - "player": { - "birthArea": { - "alpha2code": "BR", - "alpha3code": "BRA", - "id": 76, - "name": "Brazil" - }, - "birthDate": "1984-05-10", - "currentTeamId": 3166, - "firstName": "Danilo", - "foot": "right", - "gender": "male", - "gsmId": 9001, - "height": 185, - "lastName": "Larangeira", - "middleName": "", - "passportArea": { - "alpha2code": "IT", - "alpha3code": "ITA", - "id": 380, - "name": "Italy" - }, - "role": { - "code2": "DF", - "code3": "DEF", - "name": "Defender" - }, - "shortName": "Danilo", - "status": "active", - "weight": 80, - "wyId": 20583 - } - }, - { - "player": { - "birthArea": { - "alpha2code": "SN", - "alpha3code": "SEN", - "id": 686, - "name": "Senegal" - }, - "birthDate": "1994-11-19", - "currentTeamId": 3166, - "firstName": "Ibrahima", - "foot": "right", - "gender": "male", - "gsmId": 221800, - "height": 188, - "lastName": "M'baye", - "middleName": "", - "passportArea": { - "alpha2code": "SN", - "alpha3code": "SEN", - "id": 686, - "name": "Senegal" - }, - "role": { - "code2": "DF", - "code3": "DEF", - "name": "Defender" - }, - "shortName": "I. M'baye", - "status": "active", - "weight": 70, - "wyId": 22377 - } - }, - { - "player": { - "birthArea": { - "alpha2code": "DE", - "alpha3code": "DEU", - "id": 276, - "name": "Germany" - }, - "birthDate": "1991-02-08", - "currentTeamId": 3166, - "firstName": "Roberto", - "foot": "right", - "gender": "male", - "gsmId": 72309, - "height": 182, - "lastName": "Soriano", - "middleName": "", - "passportArea": { - "alpha2code": "IT", - "alpha3code": "ITA", - "id": 380, - "name": "Italy" - }, - "role": { - "code2": "MD", - "code3": "MID", - "name": "Midfielder" - }, - "shortName": "R. Soriano", - "status": "active", - "weight": 76, - "wyId": 20623 - } - }, - { - "player": { - "birthArea": { - "alpha2code": "PL", - "alpha3code": "POL", - "id": 616, - "name": "Poland" - }, - "birthDate": "1991-05-05", - "currentNationalTeamId": 13869, - "currentTeamId": 3166, - "firstName": "Łukasz", - "foot": "right", - "gender": "male", - "gsmId": 67190, - "height": 187, - "lastName": "Skorupski", - "middleName": "", - "passportArea": { - "alpha2code": "PL", - "alpha3code": "POL", - "id": 616, - "name": "Poland" - }, - "role": { - "code2": "GK", - "code3": "GKP", - "name": "Goalkeeper" - }, - "shortName": "Ł. Skorupski", - "status": "active", - "weight": 84, - "wyId": 99430 - } - }, - { - "player": { - "birthArea": { - "alpha2code": "NL", - "alpha3code": "NLD", - "id": 528, - "name": "Netherlands" - }, - "birthDate": "1993-05-07", - "currentTeamId": 3166, - "firstName": "Stefano", - "foot": "left", - "gender": "male", - "gsmId": 191101, - "height": 185, - "lastName": "Denswil", - "middleName": "", - "passportArea": { - "alpha2code": "SR", - "alpha3code": "SUR", - "id": 740, - "name": "Suriname" - }, - "role": { - "code2": "DF", - "code3": "DEF", - "name": "Defender" - }, - "shortName": "S. Denswil", - "status": "active", - "weight": 81, - "wyId": 39 - } - }, - { - "player": { - "birthArea": { - "alpha2code": "BR", - "alpha3code": "BRA", - "id": 76, - "name": "Brazil" - }, - "birthDate": "1983-11-12", - "currentTeamId": 3166, - "firstName": "Angelo Esmael", - "foot": "right", - "gender": "male", - "gsmId": 58380, - "height": 186, - "lastName": "da Costa Júnior", - "middleName": "", - "passportArea": { - "alpha2code": "IT", - "alpha3code": "ITA", - "id": 380, - "name": "Italy" - }, - "role": { - "code2": "GK", - "code3": "GKP", - "name": "Goalkeeper" - }, - "shortName": "Angelo da Costa", - "status": "active", - "weight": 81, - "wyId": 20604 - } - }, - { - "player": { - "birthArea": { - "alpha2code": "SN", - "alpha3code": "SEN", - "id": 686, - "name": "Senegal" - }, - "birthDate": "1997-01-05", - "currentTeamId": 3188, - "firstName": "Mouhamadou Fallou", - "foot": "right", - "gender": "male", - "gsmId": 398101, - "height": 190, - "lastName": "Mbacke Sarr", - "middleName": "", - "passportArea": { - "alpha2code": "IT", - "alpha3code": "ITA", - "id": 380, - "name": "Italy" - }, - "role": { - "code2": "GK", - "code3": "GKP", - "name": "Goalkeeper" - }, - "shortName": "M. Sarr", - "status": "active", - "weight": 78, - "wyId": 366296 - } - }, - { - "player": { - "birthArea": { - "alpha2code": "IT", - "alpha3code": "ITA", - "id": 380, - "name": "Italy" - }, - "birthDate": "1997-01-24", - "currentNationalTeamId": 3757, - "currentTeamId": 3166, - "firstName": "Riccardo", - "foot": "left", - "gender": "male", - "gsmId": 401959, - "height": 183, - "lastName": "Orsolini", - "middleName": "", - "passportArea": { - "alpha2code": "IT", - "alpha3code": "ITA", - "id": 380, - "name": "Italy" - }, - "role": { - "code2": "FW", - "code3": "FWD", - "name": "Forward" - }, - "shortName": "R. Orsolini", - "status": "active", - "weight": 73, - "wyId": 373768 - } - }, - { - "player": { - "birthArea": { - "alpha2code": "IT", - "alpha3code": "ITA", - "id": 380, - "name": "Italy" - }, - "birthDate": "1989-09-29", - "currentTeamId": 3166, - "firstName": "Andrea", - "foot": "right", - "gender": "male", - "gsmId": 17787, - "height": 182, - "lastName": "Poli", - "middleName": "", - "passportArea": { - "alpha2code": "IT", - "alpha3code": "ITA", - "id": 380, - "name": "Italy" - }, - "role": { - "code2": "MD", - "code3": "MID", - "name": "Midfielder" - }, - "shortName": "A. Poli", - "status": "active", - "weight": 77, - "wyId": 20529 - } - }, - { - "player": { - "birthArea": { - "alpha2code": "IT", - "alpha3code": "ITA", - "id": 380, - "name": "Italy" - }, - "birthDate": "2001-11-16", - "currentNationalTeamId": 3761, - "currentTeamId": 3188, - "firstName": "Gianmarco", - "foot": "right", - "gender": "male", - "gsmId": 509590, - "height": 167, - "lastName": "Cangiano", - "middleName": "", - "passportArea": { - "alpha2code": "IT", - "alpha3code": "ITA", - "id": 380, - "name": "Italy" - }, - "role": { - "code2": "FW", - "code3": "FWD", - "name": "Forward" - }, - "shortName": "G. Cangiano", - "status": "active", - "weight": 62, - "wyId": 536800 - } - }, - { - "player": { - "birthArea": { - "alpha2code": "IT", - "alpha3code": "ITA", - "id": 380, - "name": "Italy" - }, - "birthDate": "2001-08-06", - "currentTeamId": 3404, - "firstName": "Federico", - "foot": "left", - "gender": "male", - "gsmId": -61787, - "height": 185, - "lastName": "Bonini", - "middleName": "", - "passportArea": { - "alpha2code": "IT", - "alpha3code": "ITA", - "id": 380, - "name": "Italy" - }, - "role": { - "code2": "DF", - "code3": "DEF", - "name": "Defender" - }, - "shortName": "F. Bonini", - "status": "active", - "weight": 76, - "wyId": 532549 - } - }, - { - "player": { - "birthArea": { - "alpha2code": "IT", - "alpha3code": "ITA", - "id": 380, - "name": "Italy" - }, - "birthDate": "2000-01-11", - "currentNationalTeamId": 3764, - "currentTeamId": 3188, - "firstName": "Gabriele", - "foot": "right", - "gender": "male", - "gsmId": 477617, - "height": 185, - "lastName": "Corbo", - "middleName": "", - "passportArea": { - "alpha2code": "IT", - "alpha3code": "ITA", - "id": 380, - "name": "Italy" - }, - "role": { - "code2": "DF", - "code3": "DEF", - "name": "Defender" - }, - "shortName": "G. Corbo", - "status": "active", - "weight": 76, - "wyId": 496671 - } - }, - { - "player": { - "birthArea": { - "alpha2code": "DE", - "alpha3code": "DEU", - "id": 276, - "name": "Germany" - }, - "birthDate": "1991-09-10", - "currentTeamId": 3166, - "firstName": "Nicola", - "foot": "right", - "gender": "male", - "gsmId": 114988, - "height": 175, - "lastName": "Sansone", - "middleName": "", - "passportArea": { - "alpha2code": "IT", - "alpha3code": "ITA", - "id": 380, - "name": "Italy" - }, - "role": { - "code2": "FW", - "code3": "FWD", - "name": "Forward" - }, - "shortName": "N. Sansone", - "status": "active", - "weight": 68, - "wyId": 22578 - } - }, - { - "player": { - "birthArea": { - "alpha2code": "PY", - "alpha3code": "PRY", - "id": 600, - "name": "Paraguay" - }, - "birthDate": "1991-06-04", - "currentNationalTeamId": 15516, - "currentTeamId": 3166, - "firstName": "Federico Javier", - "foot": "right", - "gender": "male", - "gsmId": 31548, - "height": 187, - "lastName": "Santander Mereles", - "middleName": "", - "passportArea": { - "alpha2code": "PY", - "alpha3code": "PRY", - "id": 600, - "name": "Paraguay" - }, - "role": { - "code2": "FW", - "code3": "FWD", - "name": "Forward" - }, - "shortName": "F. Santander", - "status": "active", - "weight": 79, - "wyId": 86316 - } - }, - { - "player": { - "birthArea": { - "alpha2code": "IS", - "alpha3code": "ISL", - "id": 352, - "name": "Iceland" - }, - "birthDate": "2002-01-10", - "currentNationalTeamId": 7839, - "currentTeamId": 3166, - "firstName": "Andri Fannar", - "foot": "right", - "gender": "male", - "gsmId": 463550, - "height": 178, - "lastName": "Baldursson", - "middleName": "", - "passportArea": { - "alpha2code": "IS", - "alpha3code": "ISL", - "id": 352, - "name": "Iceland" - }, - "role": { - "code2": "MD", - "code3": "MID", - "name": "Midfielder" - }, - "shortName": "A. Baldursson", - "status": "active", - "weight": 65, - "wyId": 476177 - } - }, - { - "player": { - "birthArea": { - "alpha2code": "DK", - "alpha3code": "DNK", - "id": 208, - "name": "Denmark" - }, - "birthDate": "1999-12-29", - "currentNationalTeamId": 7719, - "currentTeamId": 3166, - "firstName": "Andreas", - "foot": "left", - "gender": "male", - "gsmId": 490969, - "height": 188, - "lastName": "Skov Olsen", - "middleName": "", - "passportArea": { - "alpha2code": "DK", - "alpha3code": "DNK", - "id": 208, - "name": "Denmark" - }, - "role": { - "code2": "FW", - "code3": "FWD", - "name": "Forward" - }, - "shortName": "A. Skov Olsen", - "status": "active", - "weight": 75, - "wyId": 512740 - } - }, - { - "player": { - "birthArea": { - "alpha2code": "AR", - "alpha3code": "ARG", - "id": 32, - "name": "Argentina" - }, - "birthDate": "1998-06-28", - "currentTeamId": 3166, - "firstName": "Nicolás Martín", - "foot": "right", - "gender": "male", - "gsmId": 477166, - "height": 179, - "lastName": "Domínguez", - "middleName": "", - "passportArea": { - "alpha2code": "IT", - "alpha3code": "ITA", - "id": 380, - "name": "Italy" - }, - "role": { - "code2": "MD", - "code3": "MID", - "name": "Midfielder" - }, - "shortName": "N. Domínguez", - "status": "active", - "weight": 73, - "wyId": 496214 - } - } - ], - "3185": [ - { - "player": { - "birthArea": { - "alpha2code": "AR", - "alpha3code": "ARG", - "id": 32, - "name": "Argentina" - }, - "birthDate": "1986-09-20", - "currentTeamId": 3185, - "firstName": "Cristian Daniel", - "foot": "right", - "gender": "male", - "gsmId": 14270, - "height": 181, - "lastName": "Ansaldi", - "middleName": "", - "passportArea": { - "alpha2code": "IT", - "alpha3code": "ITA", - "id": 380, - "name": "Italy" - }, - "role": { - "code2": "DF", - "code3": "DEF", - "name": "Defender" - }, - "shortName": "C. Ansaldi", - "status": "active", - "weight": 76, - "wyId": 101742 - } - }, - { - "player": { - "birthArea": { - "alpha2code": "IT", - "alpha3code": "ITA", - "id": 380, - "name": "Italy" - }, - "birthDate": "1992-03-02", - "currentTeamId": 3185, - "firstName": "Armando", - "foot": "right", - "gender": "male", - "gsmId": 199874, - "height": 183, - "lastName": "Izzo", - "middleName": "", - "passportArea": { - "alpha2code": "IT", - "alpha3code": "ITA", - "id": 380, - "name": "Italy" - }, - "role": { - "code2": "DF", - "code3": "DEF", - "name": "Defender" - }, - "shortName": "A. Izzo", - "status": "active", - "weight": 78, - "wyId": 22883 - } - }, - { - "player": { - "birthArea": { - "alpha2code": "BR", - "alpha3code": "BRA", - "id": 76, - "name": "Brazil" - }, - "birthDate": "1997-03-18", - "currentTeamId": 3185, - "firstName": "Gleysson Bremer", - "foot": "right", - "gender": "male", - "gsmId": 462884, - "height": 188, - "lastName": "Silva Nascimento", - "middleName": "", - "passportArea": { - "alpha2code": "BR", - "alpha3code": "BRA", - "id": 76, - "name": "Brazil" - }, - "role": { - "code2": "DF", - "code3": "DEF", - "name": "Defender" - }, - "shortName": "Bremer", - "status": "active", - "weight": 80, - "wyId": 475319 - } - }, - { - "player": { - "birthArea": { - "alpha2code": "RS", - "alpha3code": "SRB", - "id": 688, - "name": "Serbia" - }, - "birthDate": "1996-08-13", - "currentNationalTeamId": 17322, - "currentTeamId": 3185, - "firstName": "Saša", - "foot": "right", - "gender": "male", - "gsmId": 268856, - "height": 183, - "lastName": "Lukić", - "middleName": "", - "passportArea": { - "alpha2code": "RS", - "alpha3code": "SRB", - "id": 688, - "name": "Serbia" - }, - "role": { - "code2": "MD", - "code3": "MID", - "name": "Midfielder" - }, - "shortName": "S. Lukić", - "status": "active", - "weight": 77, - "wyId": 237269 - } - }, - { - "player": { - "birthArea": { - "alpha2code": "IT", - "alpha3code": "ITA", - "id": 380, - "name": "Italy" - }, - "birthDate": "1983-06-26", - "currentTeamId": 3185, - "firstName": "Antonio", - "foot": "right", - "gender": "male", - "gsmId": 18505, - "height": 195, - "lastName": "Rosati", - "middleName": "", - "passportArea": { - "alpha2code": "IT", - "alpha3code": "ITA", - "id": 380, - "name": "Italy" - }, - "role": { - "code2": "GK", - "code3": "GKP", - "name": "Goalkeeper" - }, - "shortName": "A. Rosati", - "status": "active", - "weight": 88, - "wyId": 21158 - } - }, - { - "player": { - "birthArea": { - "alpha2code": "IT", - "alpha3code": "ITA", - "id": 380, - "name": "Italy" - }, - "birthDate": "1991-06-25", - "currentTeamId": 3185, - "firstName": "Simone", - "foot": "left", - "gender": "male", - "gsmId": 77386, - "height": 186, - "lastName": "Zaza", - "middleName": "", - "passportArea": { - "alpha2code": "IT", - "alpha3code": "ITA", - "id": 380, - "name": "Italy" - }, - "role": { - "code2": "FW", - "code3": "FWD", - "name": "Forward" - }, - "shortName": "S. Zaza", - "status": "active", - "weight": 84, - "wyId": 22202 - } - }, - { - "player": { - "birthArea": { - "alpha2code": "IT", - "alpha3code": "ITA", - "id": 380, - "name": "Italy" - }, - "birthDate": "1993-12-20", - "currentNationalTeamId": 3757, - "currentTeamId": 3185, - "firstName": "Andrea", - "foot": "right", - "gender": "male", - "gsmId": 228719, - "height": 181, - "lastName": "Belotti", - "middleName": "", - "passportArea": { - "alpha2code": "IT", - "alpha3code": "ITA", - "id": 380, - "name": "Italy" - }, - "role": { - "code2": "FW", - "code3": "FWD", - "name": "Forward" - }, - "shortName": "A. Belotti", - "status": "active", - "weight": 72, - "wyId": 21234 - } - }, - { - "player": { - "birthArea": { - "alpha2code": "IT", - "alpha3code": "ITA", - "id": 380, - "name": "Italy" - }, - "birthDate": "1992-07-12", - "currentTeamId": 3185, - "firstName": "Simone", - "foot": "both", - "gender": "male", - "gsmId": 111753, - "height": 174, - "lastName": "Verdi", - "middleName": "", - "passportArea": { - "alpha2code": "IT", - "alpha3code": "ITA", - "id": 380, - "name": "Italy" - }, - "role": { - "code2": "FW", - "code3": "FWD", - "name": "Forward" - }, - "shortName": "S. Verdi", - "status": "active", - "weight": 70, - "wyId": 21123 - } - }, - { - "player": { - "birthArea": { - "alpha2code": "ES", - "alpha3code": "ESP", - "id": 724, - "name": "Spain" - }, - "birthDate": "1995-07-04", - "currentTeamId": 678, - "firstName": "Alejandro", - "foot": "right", - "gender": "male", - "gsmId": 362653, - "height": 175, - "lastName": "Berenguer Remiro", - "middleName": "", - "passportArea": { - "alpha2code": "ES", - "alpha3code": "ESP", - "id": 724, - "name": "Spain" - }, - "role": { - "code2": "MD", - "code3": "MID", - "name": "Midfielder" - }, - "shortName": "Álex Berenguer", - "status": "active", - "weight": 73, - "wyId": 339791 - } - }, - { - "player": { - "birthArea": { - "alpha2code": "VE", - "alpha3code": "VEN", - "id": 862, - "name": "Venezuela" - }, - "birthDate": "1988-01-13", - "currentNationalTeamId": 15757, - "currentTeamId": 3185, - "firstName": "Tomás Eduardo", - "foot": "right", - "gender": "male", - "gsmId": 52645, - "height": 177, - "lastName": "Rincón Hernández", - "middleName": "", - "passportArea": { - "alpha2code": "VE", - "alpha3code": "VEN", - "id": 862, - "name": "Venezuela" - }, - "role": { - "code2": "MD", - "code3": "MID", - "name": "Midfielder" - }, - "shortName": "T. Rincón", - "status": "active", - "weight": 76, - "wyId": 14903 - } - }, - { - "player": { - "birthArea": { - "alpha2code": "FR", - "alpha3code": "FRA", - "id": 250, - "name": "France" - }, - "birthDate": "1992-11-30", - "currentTeamId": 3197, - "firstName": "Lévy Koffi", - "foot": "right", - "gender": "male", - "gsmId": 196792, - "height": 184, - "lastName": "Djidji", - "middleName": "", - "passportArea": { - "alpha2code": "CI", - "alpha3code": "CIV", - "id": 384, - "name": "Côte d'Ivoire" - }, - "role": { - "code2": "DF", - "code3": "DEF", - "name": "Defender" - }, - "shortName": "K. Djidji", - "status": "active", - "weight": 71, - "wyId": 25523 - } - }, - { - "player": { - "birthArea": { - "alpha2code": "IT", - "alpha3code": "ITA", - "id": 380, - "name": "Italy" - }, - "birthDate": "1987-01-12", - "currentNationalTeamId": 3757, - "currentTeamId": 3185, - "firstName": "Salvatore", - "foot": "right", - "gender": "male", - "gsmId": 58378, - "height": 192, - "lastName": "Sirigu", - "middleName": "", - "passportArea": { - "alpha2code": "IT", - "alpha3code": "ITA", - "id": 380, - "name": "Italy" - }, - "role": { - "code2": "GK", - "code3": "GKP", - "name": "Goalkeeper" - }, - "shortName": "S. Sirigu", - "status": "active", - "weight": 80, - "wyId": 25421 - } - }, - { - "player": { - "birthArea": { - "alpha2code": "RO", - "alpha3code": "ROU", - "id": 642, - "name": "Romania" - }, - "birthDate": "2000-03-15", - "currentTeamId": 3272, - "firstName": "Mihael", - "foot": "left", - "gender": "male", - "gsmId": 467488, - "height": 0, - "lastName": "Onișa", - "middleName": "", - "passportArea": { - "alpha2code": "RO", - "alpha3code": "ROU", - "id": 642, - "name": "Romania" - }, - "role": { - "code2": "MD", - "code3": "MID", - "name": "Midfielder" - }, - "shortName": "M. Onișa", - "status": "active", - "weight": 0, - "wyId": 481140 - } - }, - { - "player": { - "birthArea": { - "alpha2code": "IT", - "alpha3code": "ITA", - "id": 380, - "name": "Italy" - }, - "birthDate": "2001-01-09", - "currentTeamId": 3188, - "firstName": "Emin", - "foot": "right", - "gender": "male", - "gsmId": -54464, - "height": 184, - "lastName": "Ghazoini", - "middleName": "", - "passportArea": { - "alpha2code": "MA", - "alpha3code": "MAR", - "id": 504, - "name": "Morocco" - }, - "role": { - "code2": "DF", - "code3": "DEF", - "name": "Defender" - }, - "shortName": "E. Ghazoini", - "status": "active", - "weight": 78, - "wyId": 501457 - } - }, - { - "player": { - "birthArea": { - "alpha2code": "IT", - "alpha3code": "ITA", - "id": 380, - "name": "Italy" - }, - "birthDate": "2001-04-04", - "currentTeamId": 31268, - "firstName": "Mattia", - "foot": "left", - "gender": "male", - "gsmId": 517955, - "height": 0, - "lastName": "Sandri", - "middleName": "", - "passportArea": { - "alpha2code": "IT", - "alpha3code": "ITA", - "id": 380, - "name": "Italy" - }, - "role": { - "code2": "MD", - "code3": "MID", - "name": "Midfielder" - }, - "shortName": "M. Sandri", - "status": "active", - "weight": 0, - "wyId": 545358 - } - }, - { - "player": { - "birthArea": { - "alpha2code": "IT", - "alpha3code": "ITA", - "id": 380, - "name": "Italy" - }, - "birthDate": "2001-05-02", - "currentTeamId": 3227, - "firstName": "Patrick", - "foot": "left", - "gender": "male", - "gsmId": -66482, - "height": 0, - "lastName": "Enrici", - "middleName": "", - "passportArea": { - "alpha2code": "IT", - "alpha3code": "ITA", - "id": 380, - "name": "Italy" - }, - "role": { - "code2": "DF", - "code3": "DEF", - "name": "Defender" - }, - "shortName": "P. Enrici", - "status": "active", - "weight": 0, - "wyId": 551857 - } - }, - { - "player": { - "birthArea": { - "alpha2code": "KS", - "alpha3code": "XKS", - "id": 1328, - "name": "Kosovo" - }, - "birthDate": "1988-07-05", - "currentNationalTeamId": 22124, - "currentTeamId": 3185, - "firstName": "Samir", - "foot": "right", - "gender": "male", - "gsmId": 17781, - "height": 188, - "lastName": "Ujkani", - "middleName": "", - "passportArea": { - "alpha2code": "KS", - "alpha3code": "XKS", - "id": 1328, - "name": "Kosovo" - }, - "role": { - "code2": "GK", - "code3": "GKP", - "name": "Goalkeeper" - }, - "shortName": "S. Ujkani", - "status": "active", - "weight": 87, - "wyId": 21547 - } - }, - { - "player": { - "birthArea": { - "alpha2code": "MG", - "alpha3code": "MDG", - "id": 450, - "name": "Madagascar" - }, - "birthDate": "2001-02-12", - "currentNationalTeamId": 3761, - "currentTeamId": 3713, - "firstName": "Jean Freddi Pascal", - "foot": "left", - "gender": "male", - "gsmId": 509568, - "height": 172, - "lastName": "Greco", - "middleName": "", - "passportArea": { - "alpha2code": "IT", - "alpha3code": "ITA", - "id": 380, - "name": "Italy" - }, - "role": { - "code2": "MD", - "code3": "MID", - "name": "Midfielder" - }, - "shortName": "J. Greco", - "status": "active", - "weight": 67, - "wyId": 536792 - } - }, - { - "player": { - "birthArea": { - "alpha2code": "FR", - "alpha3code": "FRA", - "id": 250, - "name": "France" - }, - "birthDate": "2000-07-19", - "currentTeamId": 3185, - "firstName": "Michel Ndary", - "foot": "right", - "gender": "male", - "gsmId": -77420, - "height": 187, - "lastName": "Adopo", - "middleName": "", - "passportArea": { - "alpha2code": "CI", - "alpha3code": "CIV", - "id": 384, - "name": "Côte d'Ivoire" - }, - "role": { - "code2": "MD", - "code3": "MID", - "name": "Midfielder" - }, - "shortName": "M. Adopo", - "status": "active", - "weight": 78, - "wyId": 562846 - } - }, - { - "player": { - "birthArea": { - "alpha2code": "IT", - "alpha3code": "ITA", - "id": 380, - "name": "Italy" - }, - "birthDate": "1997-01-09", - "currentTeamId": 3185, - "firstName": "Simone", - "foot": "right", - "gender": "male", - "gsmId": 389037, - "height": 174, - "lastName": "Edera", - "middleName": "", - "passportArea": { - "alpha2code": "IT", - "alpha3code": "ITA", - "id": 380, - "name": "Italy" - }, - "role": { - "code2": "FW", - "code3": "FWD", - "name": "Forward" - }, - "shortName": "S. Edera", - "status": "active", - "weight": 70, - "wyId": 354552 - } - }, - { - "player": { - "birthArea": { - "alpha2code": "EN", - "alpha3code": "XEN", - "id": 826, - "name": "England" - }, - "birthDate": "1996-10-08", - "currentNationalTeamId": 16823, - "currentTeamId": 1616, - "firstName": "Temitayo Olufisayo", - "foot": "right", - "gender": "male", - "gsmId": 274798, - "height": 184, - "lastName": "Olaoluwa Aina", - "middleName": "", - "passportArea": { - "alpha2code": "NG", - "alpha3code": "NGA", - "id": 566, - "name": "Nigeria" - }, - "role": { - "code2": "DF", - "code3": "DEF", - "name": "Defender" - }, - "shortName": "O. Aina", - "status": "active", - "weight": 82, - "wyId": 240378 - } - }, - { - "player": { - "birthArea": { - "alpha2code": "CM", - "alpha3code": "CMR", - "id": 120, - "name": "Cameroon" - }, - "birthDate": "1990-03-27", - "currentTeamId": 3185, - "firstName": "Nicolas", - "foot": "right", - "gender": "male", - "gsmId": 39105, - "height": 184, - "lastName": "N'Koulou", - "middleName": "", - "passportArea": { - "alpha2code": "CM", - "alpha3code": "CMR", - "id": 120, - "name": "Cameroon" - }, - "role": { - "code2": "DF", - "code3": "DEF", - "name": "Defender" - }, - "shortName": "N. N'Koulou", - "status": "active", - "weight": 77, - "wyId": 25558 - } - }, - { - "player": { - "birthArea": { - "alpha2code": "IT", - "alpha3code": "ITA", - "id": 380, - "name": "Italy" - }, - "birthDate": "2002-01-22", - "currentTeamId": 3713, - "firstName": "Christian ", - "foot": "left", - "gender": "male", - "gsmId": -140817, - "height": 183, - "lastName": "Celesia", - "middleName": "", - "passportArea": { - "alpha2code": "IT", - "alpha3code": "ITA", - "id": 380, - "name": "Italy" - }, - "role": { - "code2": "DF", - "code3": "DEF", - "name": "Defender" - }, - "shortName": "C. Celesia", - "status": "active", - "weight": 75, - "wyId": 626316 - } - } - ] - }, - "referees": [ - { - "refereeId": 396653, - "role": "referee" - }, - { - "refereeId": 394731, - "role": "firstAssistant" - }, - { - "refereeId": 458270, - "role": "secondAssistant" - }, - { - "refereeId": 377271, - "role": "fourthOfficial" - }, - { - "refereeId": 0, - "role": "firstAdditionalAssistant" - }, - { - "refereeId": 0, - "role": "secondAdditionalAssistant" - } - ], - "substitutions": { - "3166": { - "2H": { - "0": { - "in": [ - { - "playerId": 22578 - }, - { - "playerId": 86316 - } - ], - "out": [ - { - "playerId": 21296 - }, - { - "playerId": 491409 - } - ] - }, - "1595": { - "in": [ - { - "playerId": 496214 - }, - { - "playerId": 476177 - } - ], - "out": [ - { - "playerId": 347525 - }, - { - "playerId": 439889 - } - ] - }, - "1899": { - "in": [ - { - "playerId": 512740 - } - ], - "out": [ - { - "playerId": 556015 - } - ] - } - } - }, - "3185": { - "2H": { - "269": { - "in": [ - { - "playerId": 240378 - } - ], - "out": [ - { - "playerId": 101742 - } - ] - }, - "1861": { - "in": [ - { - "playerId": 25558 - } - ], - "out": [ - { - "playerId": 22883 - } - ] - }, - "2789": { - "in": [ - { - "playerId": 626316 - } - ], - "out": [ - { - "playerId": 25523 - } - ] - } - } - } - }, - "teams": { - "3166": { - "team": { - "area": { - "alpha2code": "IT", - "alpha3code": "ITA", - "id": 380, - "name": "Italy" - }, - "category": "default", - "children": [ - { - "name": "Bologna FC 1909 U13", - "wyId": 66245 - }, - { - "name": "Bologna U14", - "wyId": 65383 - }, - { - "name": "Bologna U16 A&B", - "wyId": 60870 - }, - { - "name": "Bologna U15", - "wyId": 23946 - }, - { - "name": "Bologna U17 A&B", - "wyId": 23838 - }, - { - "name": "Bologna U19", - "wyId": 3716 - }, - { - "name": "Bologna U18", - "wyId": 30269 - }, - { - "name": "Bologna U20", - "wyId": 34251 - } - ], - "city": "Bologna", - "gender": "male", - "gsmId": 1249, - "name": "Bologna", - "officialName": "Bologna FC 1909", - "type": "club", - "wyId": 3166 - } - }, - "3185": { - "team": { - "area": { - "alpha2code": "IT", - "alpha3code": "ITA", - "id": 380, - "name": "Italy" - }, - "category": "default", - "children": [ - { - "name": "Torino U14", - "wyId": 65179 - }, - { - "name": "Torino U18", - "wyId": 62760 - }, - { - "name": "Torino U16 A&B", - "wyId": 34380 - }, - { - "name": "Torino U15 A&B", - "wyId": 21673 - }, - { - "name": "Torino U17 A&B", - "wyId": 20594 - }, - { - "name": "Torino U19", - "wyId": 3713 - }, - { - "name": "Torino U19 Berretti", - "wyId": 24050 - } - ], - "city": "Torino", - "gender": "male", - "gsmId": 1268, - "name": "Torino", - "officialName": "Torino FC", - "type": "club", - "wyId": 3185 - } - } - }, - "meta": [] +{ + "coaches": { + "3166": { + "coach": { + "birthArea": { + "alpha2code": "HR", + "alpha3code": "HRV", + "id": 191, + "name": "Croatia" + }, + "birthDate": "1969-02-20", + "currentTeamId": 3166, + "firstName": "Siniša", + "gender": "male", + "gsmId": 110818, + "lastName": "Mihajlović", + "middleName": "", + "passportArea": { + "alpha2code": "RS", + "alpha3code": "SRB", + "id": 688, + "name": "Serbia" + }, + "shortName": "S. Mihajlović", + "status": "active", + "wyId": 210120 + } + }, + "3185": { + "coach": { + "birthArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "birthDate": "1976-02-14", + "currentTeamId": 0, + "firstName": "Moreno", + "gender": "male", + "gsmId": 423455, + "lastName": "Longo", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "shortName": "M. Longo", + "status": "active", + "wyId": 400257 + } + } + }, + "events": [ + { + "id": 663292348, + "location": { + "x": 52, + "y": 47 + }, + "matchId": 2852835, + "matchPeriod": "1H", + "matchTimestamp": "00:00:01.849", + "minute": 0, + "opponentTeam": { + "formation": "4-2-3-1", + "id": 3166, + "name": "Bologna" + }, + "pass": { + "accurate": false, + "angle": -51, + "endLocation": { + "x": 60, + "y": 32 + }, + "length": 13.21, + "recipient": { + "id": 20623, + "name": "R. Soriano", + "position": "AMF" + } + }, + "player": { + "id": 21123, + "name": "S. Verdi", + "position": "CF" + }, + "possession": { + "duration": "0.5815605", + "endLocation": { + "x": 40, + "y": 68 + }, + "eventIndex": 0, + "eventsNumber": 1, + "id": 663292348, + "startLocation": { + "x": 52, + "y": 47 + }, + "team": { + "formation": "3-4-3", + "id": 3185, + "name": "Torino" + }, + "types": [] + }, + "relatedEventId": 663291836, + "second": 1, + "team": { + "formation": "3-4-3", + "id": 3185, + "name": "Torino" + }, + "type": { + "primary": "pass", + "secondary": [ + "lateral_pass", + "loss", + "short_or_medium_pass" + ] + }, + "videoTimestamp": "2.849673" + }, + { + "id": 663291836, + "location": { + "x": 40, + "y": 68 + }, + "matchId": 2852835, + "matchPeriod": "1H", + "matchTimestamp": "00:00:03.012", + "minute": 0, + "opponentTeam": { + "formation": "3-4-3", + "id": 3185, + "name": "Torino" + }, + "pass": { + "accurate": true, + "angle": 120, + "endLocation": { + "x": 36, + "y": 78 + }, + "length": 7.99, + "recipient": { + "id": 22377, + "name": "I. M'baye", + "position": "RB" + } + }, + "player": { + "id": 20623, + "name": "R. Soriano", + "position": "AMF" + }, + "possession": { + "attack": { + "flank": "right", + "withGoal": false, + "withShot": false, + "withShotOnGoal": false, + "xg": 0 + }, + "duration": "28.0201355", + "endLocation": { + "x": 83, + "y": 0 + }, + "eventIndex": 0, + "eventsNumber": 14, + "id": 663291836, + "startLocation": { + "x": 40, + "y": 68 + }, + "team": { + "formation": "4-2-3-1", + "id": 3166, + "name": "Bologna" + }, + "types": [ + "attack" + ] + }, + "relatedEventId": 663291837, + "second": 3, + "team": { + "formation": "4-2-3-1", + "id": 3166, + "name": "Bologna" + }, + "type": { + "primary": "interception", + "secondary": [ + "pass", + "recovery", + "counterpressing_recovery", + "short_or_medium_pass" + ] + }, + "videoTimestamp": "4.012794" + }, + { + "id": 663291837, + "location": { + "x": 36, + "y": 78 + }, + "matchId": 2852835, + "matchPeriod": "1H", + "matchTimestamp": "00:00:05.417", + "minute": 0, + "opponentTeam": { + "formation": "3-4-3", + "id": 3185, + "name": "Torino" + }, + "pass": { + "accurate": true, + "angle": -128, + "endLocation": { + "x": 23, + "y": 52 + }, + "length": 22.34, + "recipient": { + "id": 20583, + "name": "Danilo", + "position": "RCB" + } + }, + "player": { + "id": 22377, + "name": "I. M'baye", + "position": "RB" + }, + "possession": { + "attack": { + "flank": "right", + "withGoal": false, + "withShot": false, + "withShotOnGoal": false, + "xg": 0 + }, + "duration": "28.0201355", + "endLocation": { + "x": 83, + "y": 0 + }, + "eventIndex": 1, + "eventsNumber": 14, + "id": 663291836, + "startLocation": { + "x": 40, + "y": 68 + }, + "team": { + "formation": "4-2-3-1", + "id": 3166, + "name": "Bologna" + }, + "types": [ + "attack" + ] + }, + "relatedEventId": 663291838, + "second": 5, + "team": { + "formation": "4-2-3-1", + "id": 3166, + "name": "Bologna" + }, + "type": { + "primary": "pass", + "secondary": [ + "lateral_pass", + "short_or_medium_pass" + ] + }, + "videoTimestamp": "6.417876" + }, + { + "id": 663291838, + "location": { + "x": 23, + "y": 52 + }, + "matchId": 2852835, + "matchPeriod": "1H", + "matchTimestamp": "00:00:07.148", + "minute": 0, + "opponentTeam": { + "formation": "3-4-3", + "id": 3185, + "name": "Torino" + }, + "pass": { + "accurate": true, + "angle": -105, + "endLocation": { + "x": 18, + "y": 23 + }, + "length": 20.41, + "recipient": { + "id": 3473, + "name": "G. Medel", + "position": "LCB" + } + }, + "player": { + "id": 20583, + "name": "Danilo", + "position": "RCB" + }, + "possession": { + "attack": { + "flank": "right", + "withGoal": false, + "withShot": false, + "withShotOnGoal": false, + "xg": 0 + }, + "duration": "28.0201355", + "endLocation": { + "x": 83, + "y": 0 + }, + "eventIndex": 2, + "eventsNumber": 14, + "id": 663291836, + "startLocation": { + "x": 40, + "y": 68 + }, + "team": { + "formation": "4-2-3-1", + "id": 3166, + "name": "Bologna" + }, + "types": [ + "attack" + ] + }, + "relatedEventId": 663291839, + "second": 7, + "team": { + "formation": "4-2-3-1", + "id": 3166, + "name": "Bologna" + }, + "type": { + "primary": "pass", + "secondary": [ + "lateral_pass", + "short_or_medium_pass" + ] + }, + "videoTimestamp": "8.148438" + } + ], + "formations": { + "3166": { + "1H": { + "1": { + "4-2-3-1": { + "endSec": 2947, + "id": 2506765, + "matchPeriod": "1H", + "players": [ + { + "22377": { + "playerId": 22377, + "position": "rb" + } + }, + { + "39": { + "playerId": 39, + "position": "lb" + } + }, + { + "556015": { + "playerId": 556015, + "position": "ramf" + } + }, + { + "21296": { + "playerId": 21296, + "position": "cf" + } + }, + { + "20583": { + "playerId": 20583, + "position": "rcb" + } + }, + { + "439889": { + "playerId": 439889, + "position": "rdmf" + } + }, + { + "20623": { + "playerId": 20623, + "position": "amf" + } + }, + { + "99430": { + "playerId": 99430, + "position": "gk" + } + }, + { + "3473": { + "playerId": 3473, + "position": "lcb" + } + }, + { + "347525": { + "playerId": 347525, + "position": "ldmf" + } + }, + { + "491409": { + "playerId": 491409, + "position": "lamf" + } + } + ], + "scheme": "4-2-3-1", + "startSec": 1 + } + } + }, + "2H": { + "0": { + "4-2-3-1": { + "endSec": 4541, + "id": 2506820, + "matchPeriod": "2H", + "players": [ + { + "20623": { + "playerId": 20623, + "position": "amf" + } + }, + { + "99430": { + "playerId": 99430, + "position": "gk" + } + }, + { + "3473": { + "playerId": 3473, + "position": "lcb" + } + }, + { + "347525": { + "playerId": 347525, + "position": "ldmf" + } + }, + { + "22578": { + "playerId": 22578, + "position": "lamf" + } + }, + { + "22377": { + "playerId": 22377, + "position": "rb" + } + }, + { + "39": { + "playerId": 39, + "position": "lb" + } + }, + { + "556015": { + "playerId": 556015, + "position": "ramf" + } + }, + { + "86316": { + "playerId": 86316, + "position": "cf" + } + }, + { + "20583": { + "playerId": 20583, + "position": "rcb" + } + }, + { + "439889": { + "playerId": 439889, + "position": "rdmf" + } + } + ], + "scheme": "4-2-3-1", + "startSec": 0 + } + }, + "1595": { + "4-1-4-1": { + "endSec": 6440, + "id": 2506833, + "matchPeriod": "2H", + "players": [ + { + "99430": { + "playerId": 99430, + "position": "gk" + } + }, + { + "3473": { + "playerId": 3473, + "position": "lcb" + } + }, + { + "556015": { + "playerId": 556015, + "position": "rw" + } + }, + { + "22578": { + "playerId": 22578, + "position": "lw" + } + }, + { + "22377": { + "playerId": 22377, + "position": "rb" + } + }, + { + "39": { + "playerId": 39, + "position": "lb" + } + }, + { + "20623": { + "playerId": 20623, + "position": "rcmf" + } + }, + { + "86316": { + "playerId": 86316, + "position": "cf" + } + }, + { + "20583": { + "playerId": 20583, + "position": "rcb" + } + }, + { + "496214": { + "playerId": 496214, + "position": "dmf" + } + }, + { + "476177": { + "playerId": 476177, + "position": "lcmf" + } + } + ], + "scheme": "4-1-4-1", + "startSec": 1595 + } + }, + "1899": { + "4-1-4-1": { + "endSec": 7761, + "id": 2506837, + "matchPeriod": "2H", + "players": [ + { + "22377": { + "playerId": 22377, + "position": "rb" + } + }, + { + "39": { + "playerId": 39, + "position": "lb" + } + }, + { + "20623": { + "playerId": 20623, + "position": "rcmf" + } + }, + { + "86316": { + "playerId": 86316, + "position": "cf" + } + }, + { + "20583": { + "playerId": 20583, + "position": "rcb" + } + }, + { + "496214": { + "playerId": 496214, + "position": "dmf" + } + }, + { + "476177": { + "playerId": 476177, + "position": "lcmf" + } + }, + { + "99430": { + "playerId": 99430, + "position": "gk" + } + }, + { + "3473": { + "playerId": 3473, + "position": "lcb" + } + }, + { + "512740": { + "playerId": 512740, + "position": "rw" + } + }, + { + "22578": { + "playerId": 22578, + "position": "lw" + } + } + ], + "scheme": "4-1-4-1", + "startSec": 1899 + } + } + } + }, + "3185": { + "1H": { + "1": { + "3-4-3": { + "endSec": 3216, + "id": 2506814, + "matchPeriod": "1H", + "players": [ + { + "25523": { + "playerId": 25523, + "position": "cb" + } + }, + { + "237269": { + "playerId": 237269, + "position": "rcmf" + } + }, + { + "22202": { + "playerId": 22202, + "position": "rwf" + } + }, + { + "21158": { + "playerId": 21158, + "position": "gk" + } + }, + { + "475319": { + "playerId": 475319, + "position": "lcb3" + } + }, + { + "14903": { + "playerId": 14903, + "position": "lcmf" + } + }, + { + "21123": { + "playerId": 21123, + "position": "cf" + } + }, + { + "22883": { + "playerId": 22883, + "position": "rcb3" + } + }, + { + "339791": { + "playerId": 339791, + "position": "rwb" + } + }, + { + "101742": { + "playerId": 101742, + "position": "lwb" + } + }, + { + "21234": { + "playerId": 21234, + "position": "lwf" + } + } + ], + "scheme": "3-4-3", + "startSec": 1 + } + } + }, + "2H": { + "269": { + "3-4-3": { + "endSec": 4522, + "id": 2506841, + "matchPeriod": "2H", + "players": [ + { + "240378": { + "playerId": 240378, + "position": "lwb" + } + }, + { + "21234": { + "playerId": 21234, + "position": "lwf" + } + }, + { + "25523": { + "playerId": 25523, + "position": "cb" + } + }, + { + "237269": { + "playerId": 237269, + "position": "rcmf" + } + }, + { + "22202": { + "playerId": 22202, + "position": "rwf" + } + }, + { + "21158": { + "playerId": 21158, + "position": "gk" + } + }, + { + "475319": { + "playerId": 475319, + "position": "lcb3" + } + }, + { + "14903": { + "playerId": 14903, + "position": "lcmf" + } + }, + { + "21123": { + "playerId": 21123, + "position": "cf" + } + }, + { + "22883": { + "playerId": 22883, + "position": "rcb3" + } + }, + { + "339791": { + "playerId": 339791, + "position": "rwb" + } + } + ], + "scheme": "3-4-3", + "startSec": 269 + } + }, + "1307": { + "3-4-3": { + "endSec": 6114, + "id": 2506850, + "matchPeriod": "2H", + "players": [ + { + "25523": { + "playerId": 25523, + "position": "cb" + } + }, + { + "237269": { + "playerId": 237269, + "position": "rcmf" + } + }, + { + "22202": { + "playerId": 22202, + "position": "rwf" + } + }, + { + "21158": { + "playerId": 21158, + "position": "gk" + } + }, + { + "475319": { + "playerId": 475319, + "position": "lcb3" + } + }, + { + "14903": { + "playerId": 14903, + "position": "lcmf" + } + }, + { + "21123": { + "playerId": 21123, + "position": "cf" + } + }, + { + "22883": { + "playerId": 22883, + "position": "rcb3" + } + }, + { + "240378": { + "playerId": 240378, + "position": "rwb" + } + }, + { + "339791": { + "playerId": 339791, + "position": "lwb" + } + }, + { + "21234": { + "playerId": 21234, + "position": "lwf" + } + } + ], + "scheme": "3-4-3", + "startSec": 1307 + } + }, + "1861": { + "3-4-3": { + "endSec": 7596, + "id": 2506852, + "matchPeriod": "2H", + "players": [ + { + "21158": { + "playerId": 21158, + "position": "gk" + } + }, + { + "475319": { + "playerId": 475319, + "position": "lcb3" + } + }, + { + "14903": { + "playerId": 14903, + "position": "lcmf" + } + }, + { + "21123": { + "playerId": 21123, + "position": "cf" + } + }, + { + "25523": { + "playerId": 25523, + "position": "rcb3" + } + }, + { + "240378": { + "playerId": 240378, + "position": "rwb" + } + }, + { + "339791": { + "playerId": 339791, + "position": "lwb" + } + }, + { + "21234": { + "playerId": 21234, + "position": "lwf" + } + }, + { + "25558": { + "playerId": 25558, + "position": "cb" + } + }, + { + "237269": { + "playerId": 237269, + "position": "rcmf" + } + }, + { + "22202": { + "playerId": 22202, + "position": "rwf" + } + } + ], + "scheme": "3-4-3", + "startSec": 1861 + } + }, + "2789": { + "3-4-1-2": { + "endSec": 8651, + "id": 2506860, + "matchPeriod": "2H", + "players": [ + { + "14903": { + "playerId": 14903, + "position": "lcmf" + } + }, + { + "22202": { + "playerId": 22202, + "position": "ss" + } + }, + { + "475319": { + "playerId": 475319, + "position": "rcb3" + } + }, + { + "240378": { + "playerId": 240378, + "position": "rwb" + } + }, + { + "339791": { + "playerId": 339791, + "position": "lwb" + } + }, + { + "21234": { + "playerId": 21234, + "position": "cf" + } + }, + { + "25558": { + "playerId": 25558, + "position": "cb" + } + }, + { + "237269": { + "playerId": 237269, + "position": "rcmf" + } + }, + { + "21123": { + "playerId": 21123, + "position": "amf" + } + }, + { + "21158": { + "playerId": 21158, + "position": "gk" + } + }, + { + "626316": { + "playerId": 626316, + "position": "lcb3" + } + } + ], + "scheme": "3-4-1-2", + "startSec": 2789 + } + } + } + } + }, + "match": { + "competitionId": 524, + "date": "August 2, 2020 at 8:45:00 PM GMT+2", + "dateutc": "2020-08-02 18:45:00", + "duration": "Regular", + "gameweek": 38, + "gsmId": -178889, + "hasDataAvailable": true, + "label": "Bologna - Torino, 1 - 1", + "referees": [ + { + "refereeId": 396653, + "role": "referee" + }, + { + "refereeId": 394731, + "role": "firstAssistant" + }, + { + "refereeId": 458270, + "role": "secondAssistant" + }, + { + "refereeId": 377271, + "role": "fourthOfficial" + }, + { + "refereeId": 0, + "role": "firstAdditionalAssistant" + }, + { + "refereeId": 0, + "role": "secondAdditionalAssistant" + } + ], + "roundId": 4420465, + "seasonId": 185844, + "status": "Played", + "teamsData": { + "3166": { + "coachId": 210120, + "formation": { + "bench": [ + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 20604, + "redCards": "0", + "shirtNumber": 1, + "yellowCards": "0" + }, + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 366296, + "redCards": "0", + "shirtNumber": 97, + "yellowCards": "0" + }, + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 373768, + "redCards": "0", + "shirtNumber": 7, + "yellowCards": "0" + }, + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 20529, + "redCards": "0", + "shirtNumber": 16, + "yellowCards": "0" + }, + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 536800, + "redCards": "0", + "shirtNumber": 29, + "yellowCards": "0" + }, + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 532549, + "redCards": "0", + "shirtNumber": 6, + "yellowCards": "0" + }, + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 496671, + "redCards": "0", + "shirtNumber": 25, + "yellowCards": "0" + }, + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 22578, + "redCards": "0", + "shirtNumber": 10, + "yellowCards": "0" + }, + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 86316, + "redCards": "0", + "shirtNumber": 9, + "yellowCards": "74" + }, + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 476177, + "redCards": "0", + "shirtNumber": 34, + "yellowCards": "0" + }, + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 512740, + "redCards": "0", + "shirtNumber": 17, + "yellowCards": "0" + }, + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 496214, + "redCards": "0", + "shirtNumber": 8, + "yellowCards": "0" + } + ], + "lineup": [ + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 21296, + "redCards": "0", + "shirtNumber": 24, + "yellowCards": "0" + }, + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 491409, + "redCards": "0", + "shirtNumber": 99, + "yellowCards": "0" + }, + { + "assists": "0", + "goals": "1", + "ownGoals": "0", + "playerId": 347525, + "redCards": "0", + "shirtNumber": 32, + "yellowCards": "0" + }, + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 439889, + "redCards": "0", + "shirtNumber": 30, + "yellowCards": "0" + }, + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 556015, + "redCards": "0", + "shirtNumber": 26, + "yellowCards": "0" + }, + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 3473, + "redCards": "0", + "shirtNumber": 5, + "yellowCards": "83" + }, + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 20583, + "redCards": "0", + "shirtNumber": 23, + "yellowCards": "0" + }, + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 22377, + "redCards": "0", + "shirtNumber": 15, + "yellowCards": "0" + }, + { + "assists": "1", + "goals": "0", + "ownGoals": "0", + "playerId": 20623, + "redCards": "0", + "shirtNumber": 21, + "yellowCards": "78" + }, + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 99430, + "redCards": "0", + "shirtNumber": 28, + "yellowCards": "0" + }, + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 39, + "redCards": "0", + "shirtNumber": 4, + "yellowCards": "0" + } + ], + "substitutions": [ + { + "assists": "0", + "minute": 48, + "playerIn": 22578, + "playerOut": 21296 + }, + { + "assists": "0", + "minute": 48, + "playerIn": 86316, + "playerOut": 491409 + }, + { + "assists": "0", + "minute": 71, + "playerIn": 476177, + "playerOut": 347525 + }, + { + "assists": "0", + "minute": 71, + "playerIn": 496214, + "playerOut": 439889 + }, + { + "assists": "0", + "minute": 76, + "playerIn": 512740, + "playerOut": 556015 + } + ] + }, + "hasFormation": 1, + "score": 1, + "scoreET": 0, + "scoreHT": 1, + "scoreP": 0, + "side": "home", + "teamId": 3166 + }, + "3185": { + "coachId": 400257, + "formation": { + "bench": [ + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 25421, + "redCards": "0", + "shirtNumber": 39, + "yellowCards": "0" + }, + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 481140, + "redCards": "0", + "shirtNumber": 45, + "yellowCards": "0" + }, + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 501457, + "redCards": "0", + "shirtNumber": 27, + "yellowCards": "0" + }, + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 545358, + "redCards": "0", + "shirtNumber": 44, + "yellowCards": "0" + }, + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 551857, + "redCards": "0", + "shirtNumber": 56, + "yellowCards": "0" + }, + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 21547, + "redCards": "0", + "shirtNumber": 18, + "yellowCards": "0" + }, + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 536792, + "redCards": "0", + "shirtNumber": 19, + "yellowCards": "0" + }, + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 562846, + "redCards": "0", + "shirtNumber": 80, + "yellowCards": "0" + }, + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 354552, + "redCards": "0", + "shirtNumber": 20, + "yellowCards": "0" + }, + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 240378, + "redCards": "0", + "shirtNumber": 34, + "yellowCards": "0" + }, + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 25558, + "redCards": "0", + "shirtNumber": 33, + "yellowCards": "0" + }, + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 626316, + "redCards": "0", + "shirtNumber": 77, + "yellowCards": "0" + } + ], + "lineup": [ + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 101742, + "redCards": "0", + "shirtNumber": 15, + "yellowCards": "47" + }, + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 22883, + "redCards": "0", + "shirtNumber": 5, + "yellowCards": "0" + }, + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 475319, + "redCards": "0", + "shirtNumber": 36, + "yellowCards": "0" + }, + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 237269, + "redCards": "0", + "shirtNumber": 7, + "yellowCards": "0" + }, + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 21158, + "redCards": "0", + "shirtNumber": 25, + "yellowCards": "0" + }, + { + "assists": "0", + "goals": "1", + "ownGoals": "0", + "playerId": 22202, + "redCards": "0", + "shirtNumber": 11, + "yellowCards": "0" + }, + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 21234, + "redCards": "0", + "shirtNumber": 9, + "yellowCards": "0" + }, + { + "assists": "1", + "goals": "0", + "ownGoals": "0", + "playerId": 21123, + "redCards": "0", + "shirtNumber": 24, + "yellowCards": "0" + }, + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 339791, + "redCards": "0", + "shirtNumber": 21, + "yellowCards": "60" + }, + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 14903, + "redCards": "0", + "shirtNumber": 88, + "yellowCards": "56" + }, + { + "assists": "0", + "goals": "0", + "ownGoals": "0", + "playerId": 25523, + "redCards": "0", + "shirtNumber": 30, + "yellowCards": "0" + } + ], + "substitutions": [ + { + "assists": "0", + "minute": 50, + "playerIn": 240378, + "playerOut": 101742 + }, + { + "assists": "0", + "minute": 76, + "playerIn": 25558, + "playerOut": 22883 + }, + { + "assists": "0", + "minute": 92, + "playerIn": 626316, + "playerOut": 25523 + } + ] + }, + "hasFormation": 1, + "score": 1, + "scoreET": 0, + "scoreHT": 0, + "scoreP": 0, + "side": "away", + "teamId": 3185 + } + }, + "winner": 0, + "wyId": 2852835 + }, + "players": { + "3166": [ + { + "player": { + "birthArea": { + "alpha2code": "AR", + "alpha3code": "ARG", + "id": 32, + "name": "Argentina" + }, + "birthDate": "1982-02-05", + "currentTeamId": 3166, + "firstName": "Rodrigo Sebastián", + "foot": "right", + "gender": "male", + "gsmId": 114, + "height": 176, + "lastName": "Palacio", + "middleName": "", + "passportArea": { + "alpha2code": "ES", + "alpha3code": "ESP", + "id": 724, + "name": "Spain" + }, + "role": { + "code2": "FW", + "code3": "FWD", + "name": "Forward" + }, + "shortName": "R. Palacio", + "status": "active", + "weight": 70, + "wyId": 21296 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "GM", + "alpha3code": "GMB", + "id": 270, + "name": "Gambia" + }, + "birthDate": "1998-11-14", + "currentNationalTeamId": 18728, + "currentTeamId": 3166, + "firstName": "Musa", + "foot": "right", + "gender": "male", + "gsmId": -52062, + "height": 183, + "lastName": "Barrow", + "middleName": "", + "passportArea": { + "alpha2code": "GM", + "alpha3code": "GMB", + "id": 270, + "name": "Gambia" + }, + "role": { + "code2": "FW", + "code3": "FWD", + "name": "Forward" + }, + "shortName": "Musa Barrow", + "status": "active", + "weight": 77, + "wyId": 491409 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "SE", + "alpha3code": "SWE", + "id": 752, + "name": "Sweden" + }, + "birthDate": "1999-01-05", + "currentNationalTeamId": 7047, + "currentTeamId": 3166, + "firstName": "Mattias", + "foot": "right", + "gender": "male", + "gsmId": 377463, + "height": 185, + "lastName": "Svanberg", + "middleName": "", + "passportArea": { + "alpha2code": "SE", + "alpha3code": "SWE", + "id": 752, + "name": "Sweden" + }, + "role": { + "code2": "MD", + "code3": "MID", + "name": "Midfielder" + }, + "shortName": "M. Svanberg", + "status": "active", + "weight": 77, + "wyId": 347525 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "NL", + "alpha3code": "NLD", + "id": 528, + "name": "Netherlands" + }, + "birthDate": "1997-01-12", + "currentTeamId": 3166, + "firstName": "Jerdy", + "foot": "right", + "gender": "male", + "gsmId": 448432, + "height": 185, + "lastName": "Schouten", + "middleName": "", + "passportArea": { + "alpha2code": "NL", + "alpha3code": "NLD", + "id": 528, + "name": "Netherlands" + }, + "role": { + "code2": "MD", + "code3": "MID", + "name": "Midfielder" + }, + "shortName": "J. Schouten", + "status": "active", + "weight": 72, + "wyId": 439889 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "GM", + "alpha3code": "GMB", + "id": 270, + "name": "Gambia" + }, + "birthDate": "2001-12-26", + "currentTeamId": 9613, + "firstName": "Musa", + "foot": "left", + "gender": "male", + "gsmId": -70602, + "height": 170, + "lastName": "Juwara", + "middleName": "", + "passportArea": { + "alpha2code": "GM", + "alpha3code": "GMB", + "id": 270, + "name": "Gambia" + }, + "role": { + "code2": "FW", + "code3": "FWD", + "name": "Forward" + }, + "shortName": "M. Juwara", + "status": "active", + "weight": 60, + "wyId": 556015 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "CL", + "alpha3code": "CHL", + "id": 152, + "name": "Chile" + }, + "birthDate": "1987-08-03", + "currentNationalTeamId": 12381, + "currentTeamId": 3166, + "firstName": "Gary Alexis", + "foot": "right", + "gender": "male", + "gsmId": 21790, + "height": 171, + "lastName": "Medel Soto", + "middleName": "", + "passportArea": { + "alpha2code": "CL", + "alpha3code": "CHL", + "id": 152, + "name": "Chile" + }, + "role": { + "code2": "DF", + "code3": "DEF", + "name": "Defender" + }, + "shortName": "G. Medel", + "status": "active", + "weight": 65, + "wyId": 3473 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "BR", + "alpha3code": "BRA", + "id": 76, + "name": "Brazil" + }, + "birthDate": "1984-05-10", + "currentTeamId": 3166, + "firstName": "Danilo", + "foot": "right", + "gender": "male", + "gsmId": 9001, + "height": 185, + "lastName": "Larangeira", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "role": { + "code2": "DF", + "code3": "DEF", + "name": "Defender" + }, + "shortName": "Danilo", + "status": "active", + "weight": 80, + "wyId": 20583 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "SN", + "alpha3code": "SEN", + "id": 686, + "name": "Senegal" + }, + "birthDate": "1994-11-19", + "currentTeamId": 3166, + "firstName": "Ibrahima", + "foot": "right", + "gender": "male", + "gsmId": 221800, + "height": 188, + "lastName": "M'baye", + "middleName": "", + "passportArea": { + "alpha2code": "SN", + "alpha3code": "SEN", + "id": 686, + "name": "Senegal" + }, + "role": { + "code2": "DF", + "code3": "DEF", + "name": "Defender" + }, + "shortName": "I. M'baye", + "status": "active", + "weight": 70, + "wyId": 22377 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "DE", + "alpha3code": "DEU", + "id": 276, + "name": "Germany" + }, + "birthDate": "1991-02-08", + "currentTeamId": 3166, + "firstName": "Roberto", + "foot": "right", + "gender": "male", + "gsmId": 72309, + "height": 182, + "lastName": "Soriano", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "role": { + "code2": "MD", + "code3": "MID", + "name": "Midfielder" + }, + "shortName": "R. Soriano", + "status": "active", + "weight": 76, + "wyId": 20623 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "PL", + "alpha3code": "POL", + "id": 616, + "name": "Poland" + }, + "birthDate": "1991-05-05", + "currentNationalTeamId": 13869, + "currentTeamId": 3166, + "firstName": "Łukasz", + "foot": "right", + "gender": "male", + "gsmId": 67190, + "height": 187, + "lastName": "Skorupski", + "middleName": "", + "passportArea": { + "alpha2code": "PL", + "alpha3code": "POL", + "id": 616, + "name": "Poland" + }, + "role": { + "code2": "GK", + "code3": "GKP", + "name": "Goalkeeper" + }, + "shortName": "Ł. Skorupski", + "status": "active", + "weight": 84, + "wyId": 99430 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "NL", + "alpha3code": "NLD", + "id": 528, + "name": "Netherlands" + }, + "birthDate": "1993-05-07", + "currentTeamId": 3166, + "firstName": "Stefano", + "foot": "left", + "gender": "male", + "gsmId": 191101, + "height": 185, + "lastName": "Denswil", + "middleName": "", + "passportArea": { + "alpha2code": "SR", + "alpha3code": "SUR", + "id": 740, + "name": "Suriname" + }, + "role": { + "code2": "DF", + "code3": "DEF", + "name": "Defender" + }, + "shortName": "S. Denswil", + "status": "active", + "weight": 81, + "wyId": 39 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "BR", + "alpha3code": "BRA", + "id": 76, + "name": "Brazil" + }, + "birthDate": "1983-11-12", + "currentTeamId": 3166, + "firstName": "Angelo Esmael", + "foot": "right", + "gender": "male", + "gsmId": 58380, + "height": 186, + "lastName": "da Costa Júnior", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "role": { + "code2": "GK", + "code3": "GKP", + "name": "Goalkeeper" + }, + "shortName": "Angelo da Costa", + "status": "active", + "weight": 81, + "wyId": 20604 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "SN", + "alpha3code": "SEN", + "id": 686, + "name": "Senegal" + }, + "birthDate": "1997-01-05", + "currentTeamId": 3188, + "firstName": "Mouhamadou Fallou", + "foot": "right", + "gender": "male", + "gsmId": 398101, + "height": 190, + "lastName": "Mbacke Sarr", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "role": { + "code2": "GK", + "code3": "GKP", + "name": "Goalkeeper" + }, + "shortName": "M. Sarr", + "status": "active", + "weight": 78, + "wyId": 366296 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "birthDate": "1997-01-24", + "currentNationalTeamId": 3757, + "currentTeamId": 3166, + "firstName": "Riccardo", + "foot": "left", + "gender": "male", + "gsmId": 401959, + "height": 183, + "lastName": "Orsolini", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "role": { + "code2": "FW", + "code3": "FWD", + "name": "Forward" + }, + "shortName": "R. Orsolini", + "status": "active", + "weight": 73, + "wyId": 373768 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "birthDate": "1989-09-29", + "currentTeamId": 3166, + "firstName": "Andrea", + "foot": "right", + "gender": "male", + "gsmId": 17787, + "height": 182, + "lastName": "Poli", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "role": { + "code2": "MD", + "code3": "MID", + "name": "Midfielder" + }, + "shortName": "A. Poli", + "status": "active", + "weight": 77, + "wyId": 20529 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "birthDate": "2001-11-16", + "currentNationalTeamId": 3761, + "currentTeamId": 3188, + "firstName": "Gianmarco", + "foot": "right", + "gender": "male", + "gsmId": 509590, + "height": 167, + "lastName": "Cangiano", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "role": { + "code2": "FW", + "code3": "FWD", + "name": "Forward" + }, + "shortName": "G. Cangiano", + "status": "active", + "weight": 62, + "wyId": 536800 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "birthDate": "2001-08-06", + "currentTeamId": 3404, + "firstName": "Federico", + "foot": "left", + "gender": "male", + "gsmId": -61787, + "height": 185, + "lastName": "Bonini", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "role": { + "code2": "DF", + "code3": "DEF", + "name": "Defender" + }, + "shortName": "F. Bonini", + "status": "active", + "weight": 76, + "wyId": 532549 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "birthDate": "2000-01-11", + "currentNationalTeamId": 3764, + "currentTeamId": 3188, + "firstName": "Gabriele", + "foot": "right", + "gender": "male", + "gsmId": 477617, + "height": 185, + "lastName": "Corbo", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "role": { + "code2": "DF", + "code3": "DEF", + "name": "Defender" + }, + "shortName": "G. Corbo", + "status": "active", + "weight": 76, + "wyId": 496671 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "DE", + "alpha3code": "DEU", + "id": 276, + "name": "Germany" + }, + "birthDate": "1991-09-10", + "currentTeamId": 3166, + "firstName": "Nicola", + "foot": "right", + "gender": "male", + "gsmId": 114988, + "height": 175, + "lastName": "Sansone", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "role": { + "code2": "FW", + "code3": "FWD", + "name": "Forward" + }, + "shortName": "N. Sansone", + "status": "active", + "weight": 68, + "wyId": 22578 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "PY", + "alpha3code": "PRY", + "id": 600, + "name": "Paraguay" + }, + "birthDate": "1991-06-04", + "currentNationalTeamId": 15516, + "currentTeamId": 3166, + "firstName": "Federico Javier", + "foot": "right", + "gender": "male", + "gsmId": 31548, + "height": 187, + "lastName": "Santander Mereles", + "middleName": "", + "passportArea": { + "alpha2code": "PY", + "alpha3code": "PRY", + "id": 600, + "name": "Paraguay" + }, + "role": { + "code2": "FW", + "code3": "FWD", + "name": "Forward" + }, + "shortName": "F. Santander", + "status": "active", + "weight": 79, + "wyId": 86316 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "IS", + "alpha3code": "ISL", + "id": 352, + "name": "Iceland" + }, + "birthDate": "2002-01-10", + "currentNationalTeamId": 7839, + "currentTeamId": 3166, + "firstName": "Andri Fannar", + "foot": "right", + "gender": "male", + "gsmId": 463550, + "height": 178, + "lastName": "Baldursson", + "middleName": "", + "passportArea": { + "alpha2code": "IS", + "alpha3code": "ISL", + "id": 352, + "name": "Iceland" + }, + "role": { + "code2": "MD", + "code3": "MID", + "name": "Midfielder" + }, + "shortName": "A. Baldursson", + "status": "active", + "weight": 65, + "wyId": 476177 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "DK", + "alpha3code": "DNK", + "id": 208, + "name": "Denmark" + }, + "birthDate": "1999-12-29", + "currentNationalTeamId": 7719, + "currentTeamId": 3166, + "firstName": "Andreas", + "foot": "left", + "gender": "male", + "gsmId": 490969, + "height": 188, + "lastName": "Skov Olsen", + "middleName": "", + "passportArea": { + "alpha2code": "DK", + "alpha3code": "DNK", + "id": 208, + "name": "Denmark" + }, + "role": { + "code2": "FW", + "code3": "FWD", + "name": "Forward" + }, + "shortName": "A. Skov Olsen", + "status": "active", + "weight": 75, + "wyId": 512740 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "AR", + "alpha3code": "ARG", + "id": 32, + "name": "Argentina" + }, + "birthDate": "1998-06-28", + "currentTeamId": 3166, + "firstName": "Nicolás Martín", + "foot": "right", + "gender": "male", + "gsmId": 477166, + "height": 179, + "lastName": "Domínguez", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "role": { + "code2": "MD", + "code3": "MID", + "name": "Midfielder" + }, + "shortName": "N. Domínguez", + "status": "active", + "weight": 73, + "wyId": 496214 + } + } + ], + "3185": [ + { + "player": { + "birthArea": { + "alpha2code": "AR", + "alpha3code": "ARG", + "id": 32, + "name": "Argentina" + }, + "birthDate": "1986-09-20", + "currentTeamId": 3185, + "firstName": "Cristian Daniel", + "foot": "right", + "gender": "male", + "gsmId": 14270, + "height": 181, + "lastName": "Ansaldi", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "role": { + "code2": "DF", + "code3": "DEF", + "name": "Defender" + }, + "shortName": "C. Ansaldi", + "status": "active", + "weight": 76, + "wyId": 101742 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "birthDate": "1992-03-02", + "currentTeamId": 3185, + "firstName": "Armando", + "foot": "right", + "gender": "male", + "gsmId": 199874, + "height": 183, + "lastName": "Izzo", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "role": { + "code2": "DF", + "code3": "DEF", + "name": "Defender" + }, + "shortName": "A. Izzo", + "status": "active", + "weight": 78, + "wyId": 22883 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "BR", + "alpha3code": "BRA", + "id": 76, + "name": "Brazil" + }, + "birthDate": "1997-03-18", + "currentTeamId": 3185, + "firstName": "Gleysson Bremer", + "foot": "right", + "gender": "male", + "gsmId": 462884, + "height": 188, + "lastName": "Silva Nascimento", + "middleName": "", + "passportArea": { + "alpha2code": "BR", + "alpha3code": "BRA", + "id": 76, + "name": "Brazil" + }, + "role": { + "code2": "DF", + "code3": "DEF", + "name": "Defender" + }, + "shortName": "Bremer", + "status": "active", + "weight": 80, + "wyId": 475319 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "RS", + "alpha3code": "SRB", + "id": 688, + "name": "Serbia" + }, + "birthDate": "1996-08-13", + "currentNationalTeamId": 17322, + "currentTeamId": 3185, + "firstName": "Saša", + "foot": "right", + "gender": "male", + "gsmId": 268856, + "height": 183, + "lastName": "Lukić", + "middleName": "", + "passportArea": { + "alpha2code": "RS", + "alpha3code": "SRB", + "id": 688, + "name": "Serbia" + }, + "role": { + "code2": "MD", + "code3": "MID", + "name": "Midfielder" + }, + "shortName": "S. Lukić", + "status": "active", + "weight": 77, + "wyId": 237269 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "birthDate": "1983-06-26", + "currentTeamId": 3185, + "firstName": "Antonio", + "foot": "right", + "gender": "male", + "gsmId": 18505, + "height": 195, + "lastName": "Rosati", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "role": { + "code2": "GK", + "code3": "GKP", + "name": "Goalkeeper" + }, + "shortName": "A. Rosati", + "status": "active", + "weight": 88, + "wyId": 21158 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "birthDate": "1991-06-25", + "currentTeamId": 3185, + "firstName": "Simone", + "foot": "left", + "gender": "male", + "gsmId": 77386, + "height": 186, + "lastName": "Zaza", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "role": { + "code2": "FW", + "code3": "FWD", + "name": "Forward" + }, + "shortName": "S. Zaza", + "status": "active", + "weight": 84, + "wyId": 22202 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "birthDate": "1993-12-20", + "currentNationalTeamId": 3757, + "currentTeamId": 3185, + "firstName": "Andrea", + "foot": "right", + "gender": "male", + "gsmId": 228719, + "height": 181, + "lastName": "Belotti", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "role": { + "code2": "FW", + "code3": "FWD", + "name": "Forward" + }, + "shortName": "A. Belotti", + "status": "active", + "weight": 72, + "wyId": 21234 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "birthDate": "1992-07-12", + "currentTeamId": 3185, + "firstName": "Simone", + "foot": "both", + "gender": "male", + "gsmId": 111753, + "height": 174, + "lastName": "Verdi", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "role": { + "code2": "FW", + "code3": "FWD", + "name": "Forward" + }, + "shortName": "S. Verdi", + "status": "active", + "weight": 70, + "wyId": 21123 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "ES", + "alpha3code": "ESP", + "id": 724, + "name": "Spain" + }, + "birthDate": "1995-07-04", + "currentTeamId": 678, + "firstName": "Alejandro", + "foot": "right", + "gender": "male", + "gsmId": 362653, + "height": 175, + "lastName": "Berenguer Remiro", + "middleName": "", + "passportArea": { + "alpha2code": "ES", + "alpha3code": "ESP", + "id": 724, + "name": "Spain" + }, + "role": { + "code2": "MD", + "code3": "MID", + "name": "Midfielder" + }, + "shortName": "Álex Berenguer", + "status": "active", + "weight": 73, + "wyId": 339791 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "VE", + "alpha3code": "VEN", + "id": 862, + "name": "Venezuela" + }, + "birthDate": "1988-01-13", + "currentNationalTeamId": 15757, + "currentTeamId": 3185, + "firstName": "Tomás Eduardo", + "foot": "right", + "gender": "male", + "gsmId": 52645, + "height": 177, + "lastName": "Rincón Hernández", + "middleName": "", + "passportArea": { + "alpha2code": "VE", + "alpha3code": "VEN", + "id": 862, + "name": "Venezuela" + }, + "role": { + "code2": "MD", + "code3": "MID", + "name": "Midfielder" + }, + "shortName": "T. Rincón", + "status": "active", + "weight": 76, + "wyId": 14903 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "FR", + "alpha3code": "FRA", + "id": 250, + "name": "France" + }, + "birthDate": "1992-11-30", + "currentTeamId": 3197, + "firstName": "Lévy Koffi", + "foot": "right", + "gender": "male", + "gsmId": 196792, + "height": 184, + "lastName": "Djidji", + "middleName": "", + "passportArea": { + "alpha2code": "CI", + "alpha3code": "CIV", + "id": 384, + "name": "Côte d'Ivoire" + }, + "role": { + "code2": "DF", + "code3": "DEF", + "name": "Defender" + }, + "shortName": "K. Djidji", + "status": "active", + "weight": 71, + "wyId": 25523 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "birthDate": "1987-01-12", + "currentNationalTeamId": 3757, + "currentTeamId": 3185, + "firstName": "Salvatore", + "foot": "right", + "gender": "male", + "gsmId": 58378, + "height": 192, + "lastName": "Sirigu", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "role": { + "code2": "GK", + "code3": "GKP", + "name": "Goalkeeper" + }, + "shortName": "S. Sirigu", + "status": "active", + "weight": 80, + "wyId": 25421 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "RO", + "alpha3code": "ROU", + "id": 642, + "name": "Romania" + }, + "birthDate": "2000-03-15", + "currentTeamId": 3272, + "firstName": "Mihael", + "foot": "left", + "gender": "male", + "gsmId": 467488, + "height": 0, + "lastName": "Onișa", + "middleName": "", + "passportArea": { + "alpha2code": "RO", + "alpha3code": "ROU", + "id": 642, + "name": "Romania" + }, + "role": { + "code2": "MD", + "code3": "MID", + "name": "Midfielder" + }, + "shortName": "M. Onișa", + "status": "active", + "weight": 0, + "wyId": 481140 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "birthDate": "2001-01-09", + "currentTeamId": 3188, + "firstName": "Emin", + "foot": "right", + "gender": "male", + "gsmId": -54464, + "height": 184, + "lastName": "Ghazoini", + "middleName": "", + "passportArea": { + "alpha2code": "MA", + "alpha3code": "MAR", + "id": 504, + "name": "Morocco" + }, + "role": { + "code2": "DF", + "code3": "DEF", + "name": "Defender" + }, + "shortName": "E. Ghazoini", + "status": "active", + "weight": 78, + "wyId": 501457 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "birthDate": "2001-04-04", + "currentTeamId": 31268, + "firstName": "Mattia", + "foot": "left", + "gender": "male", + "gsmId": 517955, + "height": 0, + "lastName": "Sandri", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "role": { + "code2": "MD", + "code3": "MID", + "name": "Midfielder" + }, + "shortName": "M. Sandri", + "status": "active", + "weight": 0, + "wyId": 545358 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "birthDate": "2001-05-02", + "currentTeamId": 3227, + "firstName": "Patrick", + "foot": "left", + "gender": "male", + "gsmId": -66482, + "height": 0, + "lastName": "Enrici", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "role": { + "code2": "DF", + "code3": "DEF", + "name": "Defender" + }, + "shortName": "P. Enrici", + "status": "active", + "weight": 0, + "wyId": 551857 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "KS", + "alpha3code": "XKS", + "id": 1328, + "name": "Kosovo" + }, + "birthDate": "1988-07-05", + "currentNationalTeamId": 22124, + "currentTeamId": 3185, + "firstName": "Samir", + "foot": "right", + "gender": "male", + "gsmId": 17781, + "height": 188, + "lastName": "Ujkani", + "middleName": "", + "passportArea": { + "alpha2code": "KS", + "alpha3code": "XKS", + "id": 1328, + "name": "Kosovo" + }, + "role": { + "code2": "GK", + "code3": "GKP", + "name": "Goalkeeper" + }, + "shortName": "S. Ujkani", + "status": "active", + "weight": 87, + "wyId": 21547 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "MG", + "alpha3code": "MDG", + "id": 450, + "name": "Madagascar" + }, + "birthDate": "2001-02-12", + "currentNationalTeamId": 3761, + "currentTeamId": 3713, + "firstName": "Jean Freddi Pascal", + "foot": "left", + "gender": "male", + "gsmId": 509568, + "height": 172, + "lastName": "Greco", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "role": { + "code2": "MD", + "code3": "MID", + "name": "Midfielder" + }, + "shortName": "J. Greco", + "status": "active", + "weight": 67, + "wyId": 536792 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "FR", + "alpha3code": "FRA", + "id": 250, + "name": "France" + }, + "birthDate": "2000-07-19", + "currentTeamId": 3185, + "firstName": "Michel Ndary", + "foot": "right", + "gender": "male", + "gsmId": -77420, + "height": 187, + "lastName": "Adopo", + "middleName": "", + "passportArea": { + "alpha2code": "CI", + "alpha3code": "CIV", + "id": 384, + "name": "Côte d'Ivoire" + }, + "role": { + "code2": "MD", + "code3": "MID", + "name": "Midfielder" + }, + "shortName": "M. Adopo", + "status": "active", + "weight": 78, + "wyId": 562846 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "birthDate": "1997-01-09", + "currentTeamId": 3185, + "firstName": "Simone", + "foot": "right", + "gender": "male", + "gsmId": 389037, + "height": 174, + "lastName": "Edera", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "role": { + "code2": "FW", + "code3": "FWD", + "name": "Forward" + }, + "shortName": "S. Edera", + "status": "active", + "weight": 70, + "wyId": 354552 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "EN", + "alpha3code": "XEN", + "id": 826, + "name": "England" + }, + "birthDate": "1996-10-08", + "currentNationalTeamId": 16823, + "currentTeamId": 1616, + "firstName": "Temitayo Olufisayo", + "foot": "right", + "gender": "male", + "gsmId": 274798, + "height": 184, + "lastName": "Olaoluwa Aina", + "middleName": "", + "passportArea": { + "alpha2code": "NG", + "alpha3code": "NGA", + "id": 566, + "name": "Nigeria" + }, + "role": { + "code2": "DF", + "code3": "DEF", + "name": "Defender" + }, + "shortName": "O. Aina", + "status": "active", + "weight": 82, + "wyId": 240378 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "CM", + "alpha3code": "CMR", + "id": 120, + "name": "Cameroon" + }, + "birthDate": "1990-03-27", + "currentTeamId": 3185, + "firstName": "Nicolas", + "foot": "right", + "gender": "male", + "gsmId": 39105, + "height": 184, + "lastName": "N'Koulou", + "middleName": "", + "passportArea": { + "alpha2code": "CM", + "alpha3code": "CMR", + "id": 120, + "name": "Cameroon" + }, + "role": { + "code2": "DF", + "code3": "DEF", + "name": "Defender" + }, + "shortName": "N. N'Koulou", + "status": "active", + "weight": 77, + "wyId": 25558 + } + }, + { + "player": { + "birthArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "birthDate": "2002-01-22", + "currentTeamId": 3713, + "firstName": "Christian ", + "foot": "left", + "gender": "male", + "gsmId": -140817, + "height": 183, + "lastName": "Celesia", + "middleName": "", + "passportArea": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "role": { + "code2": "DF", + "code3": "DEF", + "name": "Defender" + }, + "shortName": "C. Celesia", + "status": "active", + "weight": 75, + "wyId": 626316 + } + } + ] + }, + "referees": [ + { + "refereeId": 396653, + "role": "referee" + }, + { + "refereeId": 394731, + "role": "firstAssistant" + }, + { + "refereeId": 458270, + "role": "secondAssistant" + }, + { + "refereeId": 377271, + "role": "fourthOfficial" + }, + { + "refereeId": 0, + "role": "firstAdditionalAssistant" + }, + { + "refereeId": 0, + "role": "secondAdditionalAssistant" + } + ], + "substitutions": { + "3166": { + "2H": { + "0": { + "in": [ + { + "playerId": 22578 + }, + { + "playerId": 86316 + } + ], + "out": [ + { + "playerId": 21296 + }, + { + "playerId": 491409 + } + ] + }, + "1595": { + "in": [ + { + "playerId": 496214 + }, + { + "playerId": 476177 + } + ], + "out": [ + { + "playerId": 347525 + }, + { + "playerId": 439889 + } + ] + }, + "1899": { + "in": [ + { + "playerId": 512740 + } + ], + "out": [ + { + "playerId": 556015 + } + ] + } + } + }, + "3185": { + "2H": { + "269": { + "in": [ + { + "playerId": 240378 + } + ], + "out": [ + { + "playerId": 101742 + } + ] + }, + "1861": { + "in": [ + { + "playerId": 25558 + } + ], + "out": [ + { + "playerId": 22883 + } + ] + }, + "2789": { + "in": [ + { + "playerId": 626316 + } + ], + "out": [ + { + "playerId": 25523 + } + ] + } + } + } + }, + "teams": { + "3166": { + "team": { + "area": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "category": "default", + "children": [ + { + "name": "Bologna FC 1909 U13", + "wyId": 66245 + }, + { + "name": "Bologna U14", + "wyId": 65383 + }, + { + "name": "Bologna U16 A&B", + "wyId": 60870 + }, + { + "name": "Bologna U15", + "wyId": 23946 + }, + { + "name": "Bologna U17 A&B", + "wyId": 23838 + }, + { + "name": "Bologna U19", + "wyId": 3716 + }, + { + "name": "Bologna U18", + "wyId": 30269 + }, + { + "name": "Bologna U20", + "wyId": 34251 + } + ], + "city": "Bologna", + "gender": "male", + "gsmId": 1249, + "name": "Bologna", + "officialName": "Bologna FC 1909", + "type": "club", + "wyId": 3166 + } + }, + "3185": { + "team": { + "area": { + "alpha2code": "IT", + "alpha3code": "ITA", + "id": 380, + "name": "Italy" + }, + "category": "default", + "children": [ + { + "name": "Torino U14", + "wyId": 65179 + }, + { + "name": "Torino U18", + "wyId": 62760 + }, + { + "name": "Torino U16 A&B", + "wyId": 34380 + }, + { + "name": "Torino U15 A&B", + "wyId": 21673 + }, + { + "name": "Torino U17 A&B", + "wyId": 20594 + }, + { + "name": "Torino U19", + "wyId": 3713 + }, + { + "name": "Torino U19 Berretti", + "wyId": 24050 + } + ], + "city": "Torino", + "gender": "male", + "gsmId": 1268, + "name": "Torino", + "officialName": "Torino FC", + "type": "club", + "wyId": 3185 + } + } + }, + "meta": [] } \ No newline at end of file diff --git a/kloppy/tests/test_wyscout.py b/kloppy/tests/test_wyscout.py index dbefed03..d30aa6e9 100644 --- a/kloppy/tests/test_wyscout.py +++ b/kloppy/tests/test_wyscout.py @@ -10,14 +10,37 @@ class TestWyscout: """""" @pytest.fixture - def event_data(self): + def event_v3_data(self): base_dir = os.path.dirname(__file__) - return f"{base_dir}/files/wyscout_events.json" + return f"{base_dir}/files/wyscout_events_v3.json" - def test_correct_deserialization(self, event_data: str): - dataset = wyscout.load(event_data=event_data, coordinates="wyscout") + @pytest.fixture + def event_v2_data(self): + base_dir = os.path.dirname(__file__) + return f"{base_dir}/files/wyscout_events_v2.json" + + def test_correct_v3_deserialization(self, event_v3_data: str): + dataset = wyscout.load( + event_data=event_v3_data, + coordinates="wyscout", + data_model_version="V3", + ) assert dataset.records[2].coordinates == Point(36.0, 78.0) - def test_correct_normalized_deserialization(self, event_data: str): - dataset = wyscout.load(event_data=event_data) + def test_correct_normalized_v3_deserialization(self, event_v3_data: str): + dataset = wyscout.load( + event_data=event_v3_data, data_model_version="V3" + ) assert dataset.records[2].coordinates == Point(0.36, 0.78) + + def test_correct_v2_deserialization(self, event_v2_data: str): + dataset = wyscout.load( + event_data=event_v2_data, + coordinates="wyscout", + data_model_version="V2", + ) + assert dataset.records[2].coordinates == Point(29.0, 6.0) + + def test_correct_auto_recognize_deserialization(self, event_v2_data: str): + dataset = wyscout.load(event_data=event_v2_data, coordinates="wyscout") + assert dataset.records[2].coordinates == Point(29.0, 6.0) From ea919929514c96c6aa27e0a34d3d4ae7e09231aa Mon Sep 17 00:00:00 2001 From: driesdeprest Date: Wed, 22 Feb 2023 13:45:20 +0100 Subject: [PATCH 3/8] Added receiver player support --- .../event/wyscout/deserializer_v3.py | 26 ++++++++++--------- 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/kloppy/infra/serializers/event/wyscout/deserializer_v3.py b/kloppy/infra/serializers/event/wyscout/deserializer_v3.py index 8a4a8646..42de4c7c 100644 --- a/kloppy/infra/serializers/event/wyscout/deserializer_v3.py +++ b/kloppy/infra/serializers/event/wyscout/deserializer_v3.py @@ -129,11 +129,13 @@ def _pass_qualifiers(raw_event) -> List[Qualifier]: return qualifiers -def _parse_pass(raw_event: Dict, next_event: Dict) -> Dict: +def _parse_pass(raw_event: Dict, next_event: Dict, team: Team) -> Dict: pass_result = None + receiver_player = None if raw_event["pass"]["accurate"] is True: pass_result = PassResult.COMPLETE + receiver_player = team.get_player_by_id(raw_event["pass"]["recipient"]["id"]) elif raw_event["pass"]["accurate"] is False: pass_result = PassResult.INCOMPLETE @@ -148,7 +150,7 @@ def _parse_pass(raw_event: Dict, next_event: Dict) -> Dict: "result": pass_result, "qualifiers": _pass_qualifiers(raw_event), "receive_timestamp": None, - "receiver_player": None, + "receiver_player": receiver_player, "receiver_coordinates": Point( x=float(raw_event["pass"]["endLocation"]["x"]), y=float(raw_event["pass"]["endLocation"]["y"]), @@ -192,27 +194,26 @@ def _parse_ball_out(raw_event: Dict) -> Dict: return {"result": None, "qualifiers": qualifiers} -def _parse_set_piece(raw_event: Dict, next_event: Dict) -> Dict: +def _parse_set_piece(raw_event: Dict, next_event: Dict, team: Team) -> Dict: qualifiers = _generic_qualifiers(raw_event) - result = {} # Pass set pieces if raw_event["type"]["primary"] == "goal_kick": qualifiers.append(SetPieceQualifier(SetPieceType.GOAL_KICK)) - result = _parse_pass(raw_event, next_event) + result = _parse_pass(raw_event, next_event, team) elif raw_event["type"]["primary"] == "throw_in": qualifiers.append(SetPieceQualifier(SetPieceType.THROW_IN)) qualifiers.append(PassQualifier(PassType.HAND_PASS)) - result = _parse_pass(raw_event, next_event) + result = _parse_pass(raw_event, next_event, team) elif ( raw_event["type"]["primary"] == "free_kick" ) and "free_kick_shot" not in raw_event["type"]["secondary"]: qualifiers.append(SetPieceQualifier(SetPieceType.FREE_KICK)) - result = _parse_pass(raw_event, next_event) + result = _parse_pass(raw_event, next_event, team) elif raw_event["type"]["primary"] == "corner": qualifiers.append(SetPieceQualifier(SetPieceType.CORNER_KICK)) - result = _parse_pass(raw_event, next_event) + result = _parse_pass(raw_event, next_event, team) # Shot set pieces elif ( raw_event["type"]["primary"] == "free_kick" @@ -293,6 +294,7 @@ def deserialize(self, inputs: WyscoutInputs) -> EventDataset: next_event = raw_events["events"][idx + 1] team_id = str(raw_event["team"]["id"]) + team = teams[team_id] player_id = str(raw_event["player"]["id"]) period_id = int(raw_event["matchPeriod"].replace("H", "")) @@ -314,7 +316,7 @@ def deserialize(self, inputs: WyscoutInputs) -> EventDataset: ) if raw_event["location"] else None, - "team": teams[team_id], + "team": team, "player": players[team_id][player_id] if player_id != INVALID_PLAYER else None, @@ -334,7 +336,7 @@ def deserialize(self, inputs: WyscoutInputs) -> EventDataset: **shot_event_args, **generic_event_args ) elif primary_event_type == "pass": - pass_event_args = _parse_pass(raw_event, next_event) + pass_event_args = _parse_pass(raw_event, next_event, team) event = self.event_factory.build_pass( **pass_event_args, **generic_event_args ) @@ -350,7 +352,7 @@ def deserialize(self, inputs: WyscoutInputs) -> EventDataset: and "free_kick_shot" not in secondary_event_types ): set_piece_event_args = _parse_set_piece( - raw_event, next_event + raw_event, next_event, team ) event = self.event_factory.build_pass( **set_piece_event_args, **generic_event_args @@ -360,7 +362,7 @@ def deserialize(self, inputs: WyscoutInputs) -> EventDataset: and "free_kick_shot" in secondary_event_types ): set_piece_event_args = _parse_set_piece( - raw_event, next_event + raw_event, next_event, team ) event = self.event_factory.build_shot( **set_piece_event_args, **generic_event_args From d598ff3251edc5759b71f6e973b20f8b5c8bc80f Mon Sep 17 00:00:00 2001 From: driesdeprest Date: Fri, 24 Feb 2023 09:54:54 +0100 Subject: [PATCH 4/8] Add blocked shot result and body part qualifiers, ball owning team to wyscout deserializer --- .../serializers/event/wyscout/deserializer_v3.py | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/kloppy/infra/serializers/event/wyscout/deserializer_v3.py b/kloppy/infra/serializers/event/wyscout/deserializer_v3.py index 42de4c7c..aec4fbc6 100644 --- a/kloppy/infra/serializers/event/wyscout/deserializer_v3.py +++ b/kloppy/infra/serializers/event/wyscout/deserializer_v3.py @@ -92,9 +92,18 @@ def _parse_shot(raw_event: Dict) -> Dict: result = ShotResult.GOAL elif raw_event["shot"]["onTarget"] is True: result = ShotResult.SAVED + elif raw_event["shot"]["goalZone"] == "bc": + result = ShotResult.BLOCKED else: result = ShotResult.OFF_TARGET + if raw_event["shot"]["bodyPart"] == "head_or_other": + qualifiers.append(BodyPartQualifier(value=BodyPart.HEAD)) + elif raw_event["shot"]["bodyPart"] == "left_foot": + qualifiers.append(BodyPartQualifier(value=BodyPart.LEFT_FOOT)) + elif raw_event["shot"]["bodyPart"] == "left_foot": + qualifiers.append(BodyPartQualifier(value=BodyPart.RIGHT_FOOT)) + return { "result": result, "result_coordinates": Point( @@ -307,6 +316,10 @@ def deserialize(self, inputs: WyscoutInputs) -> EventDataset: ) ) + ball_owning_team = None + if raw_event["possession"]: + ball_owning_team = teams[str(raw_event["possession"]["team"]["id"])] + generic_event_args = { "event_id": raw_event["id"], "raw_event": raw_event, @@ -320,7 +333,7 @@ def deserialize(self, inputs: WyscoutInputs) -> EventDataset: "player": players[team_id][player_id] if player_id != INVALID_PLAYER else None, - "ball_owning_team": None, + "ball_owning_team": ball_owning_team, "ball_state": None, "period": periods[-1], "timestamp": float( From fb72a9772adb0f1404ad79ee1b4766fbe850b17c Mon Sep 17 00:00:00 2001 From: driesdeprest Date: Fri, 24 Feb 2023 10:27:38 +0100 Subject: [PATCH 5/8] Reduce code duplication and improve readability --- kloppy/_providers/wyscout.py | 45 +++++++++---------- .../event/wyscout/deserializer_v3.py | 16 ++++--- kloppy/tests/test_wyscout.py | 8 ++-- 3 files changed, 34 insertions(+), 35 deletions(-) diff --git a/kloppy/_providers/wyscout.py b/kloppy/_providers/wyscout.py index 7e6cc3b0..7fa3b1cf 100644 --- a/kloppy/_providers/wyscout.py +++ b/kloppy/_providers/wyscout.py @@ -16,7 +16,7 @@ def load( event_types: Optional[List[str]] = None, coordinates: Optional[str] = None, event_factory: Optional[EventFactory] = None, - data_model_version: Optional[str] = None, + data_version: Optional[str] = None, ) -> EventDataset: """ Load Wyscout event data into a [`EventDataset`][kloppy.domain.models.event.EventDataset] @@ -26,30 +26,28 @@ def load( event_types: coordinates: event_factory: - data_model_version: + data_version: """ - if not data_model_version: - data_model_version = identify_data_model_version(event_data) - if data_model_version == "V3": + if data_version not in ["V3", "V2"]: + data_version = identify_data_version(event_data) + + if data_version == "V3": deserializer = WyscoutDeserializerV3( event_types=event_types, coordinate_system=coordinates, event_factory=event_factory or get_config("event_factory"), ) - with open_as_file(event_data) as event_data_fp: - return deserializer.deserialize( - inputs=WyscoutInputs(event_data=event_data_fp), - ) - elif data_model_version == "V2": + elif data_version == "V2": deserializer = WyscoutDeserializerV2( event_types=event_types, coordinate_system=coordinates, event_factory=event_factory or get_config("event_factory"), ) - with open_as_file(event_data) as event_data_fp: - return deserializer.deserialize( - inputs=WyscoutInputs(event_data=event_data_fp), - ) + + with open_as_file(event_data) as event_data_fp: + return deserializer.deserialize( + inputs=WyscoutInputs(event_data=event_data_fp), + ) def load_open_data( @@ -66,16 +64,17 @@ def load_open_data( ) -def identify_data_model_version(event_data): +def identify_data_version(event_data: FileLike) -> str: with open(event_data) as json_file: - events = json.load(json_file) - events = events["events"] - if "eventName" in events[0]: - data_model_version = "V2" - return data_model_version - elif ("type" in events[0]) and ("primary" in events[0]["type"]): - data_model_version = "V3" - return data_model_version + events_with_meta = json.load(json_file) + events = events_with_meta["events"] + first_event = events[0] + if "eventName" in first_event: + data_version = "V2" + return data_version + elif "primary" in first_event.get("type", {}): + data_version = "V3" + return data_version else: raise ValueError( "Wyscout data model could not be recognized, please specify" diff --git a/kloppy/infra/serializers/event/wyscout/deserializer_v3.py b/kloppy/infra/serializers/event/wyscout/deserializer_v3.py index aec4fbc6..4f108f2e 100644 --- a/kloppy/infra/serializers/event/wyscout/deserializer_v3.py +++ b/kloppy/infra/serializers/event/wyscout/deserializer_v3.py @@ -39,8 +39,10 @@ ) from kloppy.utils import performance_logging -from . import wyscout_events, wyscout_tags +from . import wyscout_tags from ..deserializer import EventDataDeserializer +from .deserializer_v2 import WyscoutInputs + logger = logging.getLogger(__name__) @@ -144,7 +146,9 @@ def _parse_pass(raw_event: Dict, next_event: Dict, team: Team) -> Dict: if raw_event["pass"]["accurate"] is True: pass_result = PassResult.COMPLETE - receiver_player = team.get_player_by_id(raw_event["pass"]["recipient"]["id"]) + receiver_player = team.get_player_by_id( + raw_event["pass"]["recipient"]["id"] + ) elif raw_event["pass"]["accurate"] is False: pass_result = PassResult.INCOMPLETE @@ -263,10 +267,6 @@ def _players_to_dict(players: List[Player]): return {player.player_id: player for player in players} -class WyscoutInputs(NamedTuple): - event_data: IO[bytes] - - class WyscoutDeserializerV3(EventDataDeserializer[WyscoutInputs]): @property def provider(self) -> Provider: @@ -318,7 +318,9 @@ def deserialize(self, inputs: WyscoutInputs) -> EventDataset: ball_owning_team = None if raw_event["possession"]: - ball_owning_team = teams[str(raw_event["possession"]["team"]["id"])] + ball_owning_team = teams[ + str(raw_event["possession"]["team"]["id"]) + ] generic_event_args = { "event_id": raw_event["id"], diff --git a/kloppy/tests/test_wyscout.py b/kloppy/tests/test_wyscout.py index d30aa6e9..87e83174 100644 --- a/kloppy/tests/test_wyscout.py +++ b/kloppy/tests/test_wyscout.py @@ -23,21 +23,19 @@ def test_correct_v3_deserialization(self, event_v3_data: str): dataset = wyscout.load( event_data=event_v3_data, coordinates="wyscout", - data_model_version="V3", + data_version="V3", ) assert dataset.records[2].coordinates == Point(36.0, 78.0) def test_correct_normalized_v3_deserialization(self, event_v3_data: str): - dataset = wyscout.load( - event_data=event_v3_data, data_model_version="V3" - ) + dataset = wyscout.load(event_data=event_v3_data, data_version="V3") assert dataset.records[2].coordinates == Point(0.36, 0.78) def test_correct_v2_deserialization(self, event_v2_data: str): dataset = wyscout.load( event_data=event_v2_data, coordinates="wyscout", - data_model_version="V2", + data_version="V2", ) assert dataset.records[2].coordinates == Point(29.0, 6.0) From a63878c8f38b1e46f07f2f51273d2592d0c791df Mon Sep 17 00:00:00 2001 From: driesdeprest Date: Mon, 6 Mar 2023 15:34:30 +0100 Subject: [PATCH 6/8] Improve code quality --- kloppy/_providers/wyscout.py | 49 ++++++++++++++++++------------------ 1 file changed, 25 insertions(+), 24 deletions(-) diff --git a/kloppy/_providers/wyscout.py b/kloppy/_providers/wyscout.py index 7fa3b1cf..e00f8590 100644 --- a/kloppy/_providers/wyscout.py +++ b/kloppy/_providers/wyscout.py @@ -1,5 +1,5 @@ import json -from typing import Union +from typing import Union, Type from kloppy.config import get_config from kloppy.infra.serializers.event.wyscout import ( @@ -28,21 +28,18 @@ def load( event_factory: data_version: """ - if data_version not in ["V3", "V2"]: - data_version = identify_data_version(event_data) + if data_version == "V2": + deserializer_class = WyscoutDeserializerV2 + elif data_version == "V3": + deserializer_class = WyscoutDeserializerV3 + else: + deserializer_class = identify_deserializer(event_data) - if data_version == "V3": - deserializer = WyscoutDeserializerV3( - event_types=event_types, - coordinate_system=coordinates, - event_factory=event_factory or get_config("event_factory"), - ) - elif data_version == "V2": - deserializer = WyscoutDeserializerV2( - event_types=event_types, - coordinate_system=coordinates, - event_factory=event_factory or get_config("event_factory"), - ) + deserializer = deserializer_class( + event_types=event_types, + coordinate_system=coordinates, + event_factory=event_factory or get_config("event_factory"), + ) with open_as_file(event_data) as event_data_fp: return deserializer.deserialize( @@ -64,18 +61,22 @@ def load_open_data( ) -def identify_data_version(event_data: FileLike) -> str: - with open(event_data) as json_file: - events_with_meta = json.load(json_file) +def identify_deserializer(event_data: FileLike) -> Type[WyscoutDeserializerV3 | WyscoutDeserializerV2]: + with open_as_file(event_data) as event_data_fp: + events_with_meta = json.load(event_data_fp) + events = events_with_meta["events"] first_event = events[0] + + deserializer = None if "eventName" in first_event: - data_version = "V2" - return data_version + deserializer = WyscoutDeserializerV2 elif "primary" in first_event.get("type", {}): - data_version = "V3" - return data_version - else: + deserializer = WyscoutDeserializerV3 + + if deserializer is None: raise ValueError( - "Wyscout data model could not be recognized, please specify" + "Wyscout data version could not be recognized, please specify" ) + + return deserializer From 6d32f77423ec84f78a58518be98d0ebf6c71cb8f Mon Sep 17 00:00:00 2001 From: driesdeprest Date: Tue, 14 Mar 2023 17:10:53 +0100 Subject: [PATCH 7/8] Formatting --- kloppy/_providers/wyscout.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/kloppy/_providers/wyscout.py b/kloppy/_providers/wyscout.py index e00f8590..482437ad 100644 --- a/kloppy/_providers/wyscout.py +++ b/kloppy/_providers/wyscout.py @@ -61,7 +61,9 @@ def load_open_data( ) -def identify_deserializer(event_data: FileLike) -> Type[WyscoutDeserializerV3 | WyscoutDeserializerV2]: +def identify_deserializer( + event_data: FileLike, +) -> Type[WyscoutDeserializerV3 | WyscoutDeserializerV2]: with open_as_file(event_data) as event_data_fp: events_with_meta = json.load(event_data_fp) From 2df5b673abd3d08fb5b66d6764f67f06c5fa68e9 Mon Sep 17 00:00:00 2001 From: driesdeprest Date: Tue, 14 Mar 2023 17:55:48 +0100 Subject: [PATCH 8/8] Remove Python 3.10 syntax of typing --- kloppy/_providers/wyscout.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kloppy/_providers/wyscout.py b/kloppy/_providers/wyscout.py index 482437ad..3454aca7 100644 --- a/kloppy/_providers/wyscout.py +++ b/kloppy/_providers/wyscout.py @@ -63,7 +63,7 @@ def load_open_data( def identify_deserializer( event_data: FileLike, -) -> Type[WyscoutDeserializerV3 | WyscoutDeserializerV2]: +) -> Union[Type[WyscoutDeserializerV3], Type[WyscoutDeserializerV2]]: with open_as_file(event_data) as event_data_fp: events_with_meta = json.load(event_data_fp)