Skip to content

Instantly share code, notes, and snippets.

@phil-lopreiato
Last active August 29, 2015 14:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save phil-lopreiato/861c936f7c11c9ec1095 to your computer and use it in GitHub Desktop.
Save phil-lopreiato/861c936f7c11c9ec1095 to your computer and use it in GitHub Desktop.
FRC Twitter Data 2012 - 2014
import csv
import json
with open("2012_data.csv") as data:
reader = csv.reader(data, delimiter=',', quoting=csv.QUOTE_NONE)
reader.next()
matches = []
for line in reader:
match = {}
match["eventKey"] = "2012"+line[0]
match["type"] = line[1]+"_"+line[2]
red = {}
red["score"] = {}
red["score"]["final"] = line[3]
red["teams"] = [line[5], line[6], line[7]]
red["score"]["bridge"] = line[11]
red["score"]["foul"] = line[13]
red["score"]["hybrid"] = line[15]
red["score"]["tele"] = line[17]
blue = {}
blue["score"] = {}
blue["score"]["final"] = line[4]
blue["teams"] = [line[8], line[9], line[10]]
blue["score"]["brige"] = line[12]
blue["score"]["foul"] = line[14]
blue["score"]["hybrid"] = line[16]
blue["score"]["tele"] = line[18]
match["coop"] = line[19]
match["red"] = red
match["blue"] = blue
matches.append(match)
with open('twitter_2012.json', 'w+') as outFile:
outFile.write(json.dumps(matches))
import json
import re
matches = []
for line in open("frcfms_greptweet.txt"):
match = {}
parts = line.split("|")
#print parts
year = parts[1].split(" ")[5]
match_parts = parts[2].split(" ")
if len(match_parts) < 27:
continue
if not (year == "2013"):
continue
event = match_parts[0][4:].lower()
match["eventKey"] = year+event
#print match["eventKey"]
matchType = match_parts[2] + "_" + str(match_parts[4])
match["type"] = matchType
#print matchType
red = {}
red["teams"] = [match_parts[10], match_parts[11], match_parts[12]]
red["score"] = {}
red["score"]["final"] = match_parts[6]
#print red["teams"], red["score"]
red["score"]["auto"] = match_parts[22]
red["score"]["tele"] = match_parts[26]
red["score"]["foul"] = match_parts[18]
#print red["auto"], red["tele"], red["foul"]
blue = {}
blue["teams"] = [match_parts[14], match_parts[15], match_parts[16]]
blue["score"] = {}
blue["score"]["final"] = match_parts[8]
#print blue["teams"], blue["score"]
blue["score"]["auto"] = match_parts[24]
blue["score"]["tele"] = str(match_parts[28])[:2]
blue["score"]["foul"] = match_parts[20]
#print blue["auto"], blue["tele"], blue["foul"]
match["red"] = red
match["blue"] = blue
matches.append(match)
with open('twitter_2013.json', 'w+') as outFile:
outFile.write(json.dumps(matches))
This file has been truncated, but you can view the full file.
[{"blue": {"score": {"brige": "0", "tele": "28", "hybrid": "11", "final": "39", "foul": "0"}, "teams": ["236", "2826", "1403"]}, "coop": "2", "type": "Q_1", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "15", "foul": "0", "tele": "15"}, "teams": ["3081", "234", "20"]}}, {"blue": {"score": {"brige": "0", "tele": "27", "hybrid": "18", "final": "45", "foul": "0"}, "teams": ["2056", "4300", "272"]}, "coop": "2", "type": "Q_2", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "24", "final": "40", "foul": "6", "tele": "10"}, "teams": ["1306", "3747", "781"]}}, {"blue": {"score": {"brige": "10", "tele": "21", "hybrid": "24", "final": "55", "foul": "0"}, "teams": ["2046", "100", "2415"]}, "coop": "0", "type": "Q_3", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "72", "foul": "0", "tele": "34"}, "teams": ["4256", "1987", "359"]}}, {"blue": {"score": {"brige": "10", "tele": "8", "hybrid": "10", "final": "28", "foul": "0"}, "teams": ["1642", "3927", "2638"]}, "coop": "0", "type": "Q_4", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "22", "foul": "0", "tele": "0"}, "teams": ["3476", "1710", "3015"]}}, {"blue": {"score": {"brige": "10", "tele": "5", "hybrid": "10", "final": "25", "foul": "0"}, "teams": ["4356", "1902", "1018"]}, "coop": "2", "type": "Q_5", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "34", "foul": "9", "tele": "7"}, "teams": ["1756", "2403", "1816"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "6", "final": "9", "foul": "0"}, "teams": ["75", "1014", "3456"]}, "coop": "1", "type": "Q_6", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "5", "final": "15", "foul": "0", "tele": "0"}, "teams": ["4403", "4001", "1458"]}}, {"blue": {"score": {"brige": "20", "tele": "8", "hybrid": "6", "final": "34", "foul": "0"}, "teams": ["4143", "3335", "3999"]}, "coop": "2", "type": "Q_7", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "15", "final": "24", "foul": "0", "tele": "9"}, "teams": ["2557", "2395", "4218"]}}, {"blue": {"score": {"brige": "10", "tele": "22", "hybrid": "18", "final": "53", "foul": "3"}, "teams": ["2603", "195", "2898"]}, "coop": "2", "type": "Q_8", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "24", "final": "37", "foul": "0", "tele": "3"}, "teams": ["3410", "3997", "1114"]}}, {"blue": {"score": {"brige": "20", "tele": "21", "hybrid": "6", "final": "47", "foul": "0"}, "teams": ["246", "2590", "2022"]}, "coop": "2", "type": "Q_9", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["956", "1058", "369"]}}, {"blue": {"score": {"brige": "10", "tele": "18", "hybrid": "18", "final": "46", "foul": "0"}, "teams": ["247", "245", "4206"]}, "coop": "0", "type": "Q_10", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "34", "foul": "0", "tele": "12"}, "teams": ["2512", "1", "1261"]}}, {"blue": {"score": {"brige": "10", "tele": "12", "hybrid": "6", "final": "28", "foul": "0"}, "teams": ["1875", "3585", "973"]}, "coop": "0", "type": "Q_11", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "30", "foul": "3", "tele": "21"}, "teams": ["839", "692", "1311"]}}, {"blue": {"score": {"brige": "0", "tele": "19", "hybrid": "10", "final": "50", "foul": "21"}, "teams": ["3634", "3968", "2996"]}, "coop": "1", "type": "Q_12", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "16", "final": "58", "foul": "6", "tele": "26"}, "teams": ["1218", "128", "1504"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "12", "final": "17", "foul": "0"}, "teams": ["587", "1736", "1647"]}, "coop": "2", "type": "Q_13", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "17", "foul": "0", "tele": "17"}, "teams": ["2815", "144", "2851"]}}, {"blue": {"score": {"brige": "20", "tele": "10", "hybrid": "17", "final": "59", "foul": "12"}, "teams": ["2974", "2410", "716"]}, "coop": "2", "type": "Q_14", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "48", "foul": "0", "tele": "16"}, "teams": ["2085", "2809", "2949"]}}, {"blue": {"score": {"brige": "0", "tele": "15", "hybrid": "10", "final": "25", "foul": "0"}, "teams": ["126", "3158", "1796"]}, "coop": "2", "type": "Q_15", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "28", "foul": "0", "tele": "12"}, "teams": ["4082", "3008", "4334"]}}, {"blue": {"score": {"brige": "10", "tele": "24", "hybrid": "18", "final": "52", "foul": "0"}, "teams": ["190", "67", "2648"]}, "coop": "2", "type": "Q_16", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "20", "hybrid": "29", "final": "51", "foul": "0", "tele": "2"}, "teams": ["2614", "1868", "1592"]}}, {"blue": {"score": {"brige": "10", "tele": "10", "hybrid": "6", "final": "26", "foul": "0"}, "teams": ["3128", "3481", "1306"]}, "coop": "1", "type": "Q_17", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "20", "hybrid": "11", "final": "54", "foul": "3", "tele": "20"}, "teams": ["3947", "1676", "1902"]}}, {"blue": {"score": {"brige": "0", "tele": "39", "hybrid": "12", "final": "51", "foul": "0"}, "teams": ["359", "2590", "2898"]}, "coop": "0", "type": "Q_18", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "31", "foul": "0", "tele": "9"}, "teams": ["1018", "3081", "1816"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "12", "final": "33", "foul": "9"}, "teams": ["1642", "4256", "2403"]}, "coop": "2", "type": "Q_19", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "18", "foul": "0", "tele": "12"}, "teams": ["245", "692", "3456"]}}, {"blue": {"score": {"brige": "0", "tele": "30", "hybrid": "30", "final": "60", "foul": "0"}, "teams": ["3476", "272", "2826"]}, "coop": "0", "type": "Q_20", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "20", "hybrid": "22", "final": "52", "foul": "0", "tele": "10"}, "teams": ["2996", "2603", "100"]}}, {"blue": {"score": {"brige": "0", "tele": "27", "hybrid": "12", "final": "39", "foul": "0"}, "teams": ["144", "1014", "973"]}, "coop": "2", "type": "Q_21", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "33", "foul": "0", "tele": "17"}, "teams": ["4356", "3634", "195"]}}, {"blue": {"score": {"brige": "0", "tele": "29", "hybrid": "12", "final": "41", "foul": "0"}, "teams": ["2415", "1261", "956"]}, "coop": "2", "type": "Q_22", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "20", "final": "49", "foul": "0", "tele": "19"}, "teams": ["1504", "1403", "4218"]}}, {"blue": {"score": {"brige": "10", "tele": "27", "hybrid": "24", "final": "76", "foul": "15"}, "teams": ["2056", "246", "1218"]}, "coop": "2", "type": "Q_23", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "24", "foul": "0", "tele": "12"}, "teams": ["3335", "247", "1311"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "18", "final": "31", "foul": "0"}, "teams": ["2809", "369", "2638"]}, "coop": "0", "type": "Q_24", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "24", "final": "61", "foul": "0", "tele": "27"}, "teams": ["587", "236", "67"]}}, {"blue": {"score": {"brige": "20", "tele": "22", "hybrid": "22", "final": "67", "foul": "3"}, "teams": ["3947", "1114", "1458"]}, "coop": "0", "type": "Q_25", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "16", "foul": "0", "tele": "16"}, "teams": ["3927", "1058", "2614"]}}, {"blue": {"score": {"brige": "0", "tele": "34", "hybrid": "5", "final": "39", "foul": "0"}, "teams": ["3481", "3968", "2395"]}, "coop": "2", "type": "Q_26", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "38", "foul": "0", "tele": "10"}, "teams": ["4082", "2974", "2046"]}}, {"blue": {"score": {"brige": "10", "tele": "27", "hybrid": "0", "final": "40", "foul": "3"}, "teams": ["1592", "126", "4300"]}, "coop": "0", "type": "Q_27", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "30", "foul": "0", "tele": "18"}, "teams": ["3410", "1676", "1647"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "5", "final": "13", "foul": "3"}, "teams": ["1", "3999", "2022"]}, "coop": "0", "type": "Q_28", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "41", "foul": "0", "tele": "13"}, "teams": ["1796", "2410", "3128"]}}, {"blue": {"score": {"brige": "0", "tele": "15", "hybrid": "15", "final": "69", "foul": "39"}, "teams": ["3997", "781", "3008"]}, "coop": "2", "type": "Q_29", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "20", "hybrid": "17", "final": "43", "foul": "0", "tele": "6"}, "teams": ["1710", "1736", "2648"]}}, {"blue": {"score": {"brige": "20", "tele": "18", "hybrid": "6", "final": "44", "foul": "0"}, "teams": ["3015", "1875", "234"]}, "coop": "0", "type": "Q_30", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "45", "foul": "0", "tele": "13"}, "teams": ["2512", "1987", "2815"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "6", "final": "18", "foul": "0"}, "teams": ["75", "3585", "1868"]}, "coop": "0", "type": "Q_31", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "65", "foul": "0", "tele": "27"}, "teams": ["2949", "2851", "1756"]}}, {"blue": {"score": {"brige": "10", "tele": "29", "hybrid": "10", "final": "64", "foul": "15"}, "teams": ["839", "190", "716"]}, "coop": "2", "type": "Q_32", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "4", "final": "17", "foul": "3", "tele": "0"}, "teams": ["4334", "4403", "4206"]}}, {"blue": {"score": {"brige": "0", "tele": "22", "hybrid": "0", "final": "22", "foul": "0"}, "teams": ["2557", "4001", "3158"]}, "coop": "2", "type": "Q_33", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "10", "foul": "0", "tele": "10"}, "teams": ["2085", "3747", "128"]}}, {"blue": {"score": {"brige": "10", "tele": "21", "hybrid": "17", "final": "48", "foul": "0"}, "teams": ["20", "2056", "1458"]}, "coop": "0", "type": "Q_34", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "40", "foul": "0", "tele": "18"}, "teams": ["4143", "2974", "3634"]}}, {"blue": {"score": {"brige": "20", "tele": "24", "hybrid": "18", "final": "65", "foul": "3"}, "teams": ["1676", "1311", "956"]}, "coop": "2", "type": "Q_35", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "24", "final": "37", "foul": "0", "tele": "3"}, "teams": ["2996", "587", "3081"]}}, {"blue": {"score": {"brige": "0", "tele": "33", "hybrid": "12", "final": "45", "foul": "0"}, "teams": ["692", "2826", "1"]}, "coop": "2", "type": "Q_36", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "43", "foul": "3", "tele": "14"}, "teams": ["2046", "195", "2638"]}}, {"blue": {"score": {"brige": "10", "tele": "10", "hybrid": "0", "final": "20", "foul": "0"}, "teams": ["3947", "4300", "4356"]}, "coop": "0", "type": "Q_37", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "8", "foul": "6", "tele": "2"}, "teams": ["4218", "369", "1710"]}}, {"blue": {"score": {"brige": "0", "tele": "17", "hybrid": "11", "final": "28", "foul": "0"}, "teams": ["3968", "245", "1816"]}, "coop": "0", "type": "Q_38", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "33", "foul": "0", "tele": "21"}, "teams": ["3015", "1058", "67"]}}, {"blue": {"score": {"brige": "20", "tele": "11", "hybrid": "0", "final": "31", "foul": "0"}, "teams": ["246", "1403", "2851"]}, "coop": "2", "type": "Q_39", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "11", "final": "37", "foul": "0", "tele": "16"}, "teams": ["3481", "1987", "126"]}}, {"blue": {"score": {"brige": "0", "tele": "29", "hybrid": "12", "final": "41", "foul": "0"}, "teams": ["100", "1796", "4206"]}, "coop": "2", "type": "Q_40", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "20", "hybrid": "24", "final": "68", "foul": "0", "tele": "24"}, "teams": ["2949", "1736", "2898"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "12", "final": "21", "foul": "0"}, "teams": ["2410", "190", "3585"]}, "coop": "0", "type": "Q_42", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "9", "final": "12", "foul": "0", "tele": "3"}, "teams": ["1114", "1642", "4001"]}}, {"blue": {"score": {"brige": "20", "tele": "28", "hybrid": "12", "final": "66", "foul": "6"}, "teams": ["75", "1218", "3008"]}, "coop": "2", "type": "Q_43", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "67", "foul": "0", "tele": "29"}, "teams": ["3476", "973", "2085"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "6", "final": "15", "foul": "0"}, "teams": ["4403", "2815", "3999"]}, "coop": "2", "type": "Q_44", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "50", "foul": "0", "tele": "18"}, "teams": ["3158", "359", "3410"]}}, {"blue": {"score": {"brige": "10", "tele": "14", "hybrid": "10", "final": "34", "foul": "0"}, "teams": ["2403", "716", "3128"]}, "coop": "2", "type": "Q_45", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "44", "foul": "0", "tele": "24"}, "teams": ["2648", "1261", "272"]}}, {"blue": {"score": {"brige": "0", "tele": "19", "hybrid": "24", "final": "43", "foul": "0"}, "teams": ["4143", "128", "781"]}, "coop": "2", "type": "Q_46", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "38", "foul": "3", "tele": "3"}, "teams": ["2603", "1875", "2022"]}}, {"blue": {"score": {"brige": "10", "tele": "9", "hybrid": "18", "final": "40", "foul": "3"}, "teams": ["1756", "247", "20"]}, "coop": "2", "type": "Q_47", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "59", "foul": "0", "tele": "21"}, "teams": ["1306", "2395", "2614"]}}, {"blue": {"score": {"brige": "0", "tele": "14", "hybrid": "24", "final": "41", "foul": "3"}, "teams": ["839", "2590", "1014"]}, "coop": "2", "type": "Q_48", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "35", "foul": "0", "tele": "24"}, "teams": ["1592", "236", "1504"]}}, {"blue": {"score": {"brige": "20", "tele": "36", "hybrid": "30", "final": "86", "foul": "0"}, "teams": ["2415", "1868", "2512"]}, "coop": "2", "type": "Q_49", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "20", "hybrid": "8", "final": "37", "foul": "0", "tele": "9"}, "teams": ["3456", "4334", "3747"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "0", "final": "9", "foul": "3"}, "teams": ["4256", "144", "2809"]}, "coop": "2", "type": "Q_50", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "22", "foul": "3", "tele": "13"}, "teams": ["2557", "3927", "1902"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "6", "final": "12", "foul": "0"}, "teams": ["1642", "2851", "4206"]}, "coop": "2", "type": "Q_51", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "32", "foul": "0", "tele": "20"}, "teams": ["1458", "195", "4082"]}}, {"blue": {"score": {"brige": "0", "tele": "26", "hybrid": "6", "final": "32", "foul": "0"}, "teams": ["75", "67", "3081"]}, "coop": "2", "type": "Q_52", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "20", "hybrid": "29", "final": "83", "foul": "3", "tele": "31"}, "teams": ["3481", "1114", "692"]}}, {"blue": {"score": {"brige": "0", "tele": "13", "hybrid": "6", "final": "19", "foul": "0"}, "teams": ["246", "1676", "4001"]}, "coop": "0", "type": "Q_53", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "34", "foul": "0", "tele": "22"}, "teams": ["2815", "716", "3008"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "16", "final": "28", "foul": "0"}, "teams": ["2638", "128", "4300"]}, "coop": "0", "type": "Q_54", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "49", "foul": "3", "tele": "18"}, "teams": ["3999", "245", "3997"]}}, {"blue": {"score": {"brige": "0", "tele": "15", "hybrid": "6", "final": "24", "foul": "3"}, "teams": ["3476", "20", "1058"]}, "coop": "0", "type": "Q_55", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "23", "final": "34", "foul": "9", "tele": "2"}, "teams": ["2403", "1", "190"]}}, {"blue": {"score": {"brige": "20", "tele": "24", "hybrid": "18", "final": "62", "foul": "0"}, "teams": ["2648", "1756", "1987"]}, "coop": "2", "type": "Q_56", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "33", "final": "69", "foul": "3", "tele": "23"}, "teams": ["1504", "1647", "973"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "6", "final": "12", "foul": "0"}, "teams": ["956", "2085", "1018"]}, "coop": "0", "type": "Q_57", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "20", "hybrid": "17", "final": "50", "foul": "3", "tele": "10"}, "teams": ["3410", "247", "3968"]}}, {"blue": {"score": {"brige": "0", "tele": "27", "hybrid": "17", "final": "47", "foul": "3"}, "teams": ["2046", "3335", "2996"]}, "coop": "2", "type": "Q_58", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "45", "foul": "3", "tele": "14"}, "teams": ["2590", "1710", "3158"]}}, {"blue": {"score": {"brige": "10", "tele": "14", "hybrid": "12", "final": "36", "foul": "0"}, "teams": ["4218", "3927", "2949"]}, "coop": "2", "type": "Q_59", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "29", "final": "55", "foul": "3", "tele": "13"}, "teams": ["1816", "2603", "1014"]}}, {"blue": {"score": {"brige": "20", "tele": "13", "hybrid": "32", "final": "65", "foul": "0"}, "teams": ["4334", "2974", "2898"]}, "coop": "2", "type": "Q_60", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "37", "foul": "3", "tele": "29"}, "teams": ["781", "1592", "3947"]}}, {"blue": {"score": {"brige": "10", "tele": "4", "hybrid": "18", "final": "41", "foul": "9"}, "teams": ["2410", "839", "1306"]}, "coop": "2", "type": "Q_61", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "58", "foul": "0", "tele": "30"}, "teams": ["1868", "2826", "3634"]}}, {"blue": {"score": {"brige": "10", "tele": "27", "hybrid": "24", "final": "67", "foul": "6"}, "teams": ["359", "1796", "1311"]}, "coop": "0", "type": "Q_62", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "26", "foul": "3", "tele": "11"}, "teams": ["234", "144", "2614"]}}, {"blue": {"score": {"brige": "0", "tele": "15", "hybrid": "6", "final": "27", "foul": "6"}, "teams": ["1261", "1875", "1736"]}, "coop": "0", "type": "Q_63", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "15", "foul": "0", "tele": "3"}, "teams": ["2809", "4403", "3747"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "18", "final": "34", "foul": "0"}, "teams": ["4256", "3585", "369"]}, "coop": "2", "type": "Q_64", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "69", "foul": "9", "tele": "38"}, "teams": ["2512", "3128", "2056"]}}, {"blue": {"score": {"brige": "10", "tele": "10", "hybrid": "0", "final": "20", "foul": "0"}, "teams": ["236", "2022", "272"]}, "coop": "0", "type": "Q_65", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "67", "foul": "0", "tele": "39"}, "teams": ["126", "2415", "2557"]}}, {"blue": {"score": {"brige": "20", "tele": "3", "hybrid": "12", "final": "38", "foul": "3"}, "teams": ["4356", "4143", "3456"]}, "coop": "2", "type": "Q_66", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "20", "hybrid": "24", "final": "48", "foul": "0", "tele": "4"}, "teams": ["100", "3015", "587"]}}, {"blue": {"score": {"brige": "0", "tele": "10", "hybrid": "26", "final": "36", "foul": "0"}, "teams": ["2395", "1902", "1014"]}, "coop": "2", "type": "Q_67", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "16", "final": "39", "foul": "3", "tele": "20"}, "teams": ["1218", "1403", "2815"]}}, {"blue": {"score": {"brige": "0", "tele": "27", "hybrid": "12", "final": "39", "foul": "0"}, "teams": ["3997", "4334", "2046"]}, "coop": "2", "type": "Q_68", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "16", "final": "38", "foul": "6", "tele": "6"}, "teams": ["75", "2403", "4218"]}}, {"blue": {"score": {"brige": "10", "tele": "29", "hybrid": "24", "final": "69", "foul": "6"}, "teams": ["1018", "973", "781"]}, "coop": "2", "type": "Q_69", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "19", "foul": "0", "tele": "3"}, "teams": ["2851", "3999", "1058"]}}, {"blue": {"score": {"brige": "20", "tele": "8", "hybrid": "18", "final": "46", "foul": "0"}, "teams": ["1710", "20", "2898"]}, "coop": "2", "type": "Q_70", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "19", "foul": "0", "tele": "8"}, "teams": ["2410", "246", "4082"]}}, {"blue": {"score": {"brige": "20", "tele": "12", "hybrid": "21", "final": "59", "foul": "6"}, "teams": ["1458", "2648", "3481"]}, "coop": "2", "type": "Q_71", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "17", "final": "49", "foul": "0", "tele": "22"}, "teams": ["144", "2590", "2638"]}}, {"blue": {"score": {"brige": "0", "tele": "24", "hybrid": "23", "final": "50", "foul": "3"}, "teams": ["2056", "1642", "1647"]}, "coop": "0", "type": "Q_72", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "20", "hybrid": "34", "final": "90", "foul": "0", "tele": "36"}, "teams": ["3968", "359", "2826"]}}, {"blue": {"score": {"brige": "20", "tele": "23", "hybrid": "12", "final": "55", "foul": "0"}, "teams": ["2085", "1676", "1875"]}, "coop": "2", "type": "Q_73", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "36", "foul": "3", "tele": "21"}, "teams": ["4256", "272", "1816"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "6", "final": "10", "foul": "3"}, "teams": ["3335", "3410", "3128"]}, "coop": "0", "type": "Q_74", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "24", "final": "42", "foul": "3", "tele": "15"}, "teams": ["3015", "1311", "3008"]}}, {"blue": {"score": {"brige": "10", "tele": "21", "hybrid": "30", "final": "61", "foul": "0"}, "teams": ["195", "245", "1736"]}, "coop": "2", "type": "Q_75", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "22", "final": "37", "foul": "0", "tele": "15"}, "teams": ["956", "2557", "190"]}}, {"blue": {"score": {"brige": "10", "tele": "16", "hybrid": "12", "final": "38", "foul": "0"}, "teams": ["3158", "3476", "2022"]}, "coop": "1", "type": "Q_76", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "20", "hybrid": "24", "final": "59", "foul": "0", "tele": "15"}, "teams": ["2949", "4356", "839"]}}, {"blue": {"score": {"brige": "0", "tele": "19", "hybrid": "18", "final": "37", "foul": "0"}, "teams": ["1756", "3456", "1592"]}, "coop": "0", "type": "Q_77", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "36", "final": "61", "foul": "3", "tele": "12"}, "teams": ["1796", "3927", "2996"]}}, {"blue": {"score": {"brige": "0", "tele": "37", "hybrid": "11", "final": "48", "foul": "0"}, "teams": ["1114", "1868", "4143"]}, "coop": "0", "type": "Q_78", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "48", "foul": "3", "tele": "13"}, "teams": ["1987", "2809", "247"]}}, {"blue": {"score": {"brige": "10", "tele": "27", "hybrid": "18", "final": "55", "foul": "0"}, "teams": ["67", "1", "4403"]}, "coop": "2", "type": "Q_79", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "24", "foul": "0", "tele": "18"}, "teams": ["126", "3634", "100"]}}, {"blue": {"score": {"brige": "0", "tele": "17", "hybrid": "18", "final": "35", "foul": "0"}, "teams": ["2395", "692", "3947"]}, "coop": "0", "type": "Q_80", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "17", "final": "47", "foul": "0", "tele": "20"}, "teams": ["4001", "2603", "236"]}}, {"blue": {"score": {"brige": "0", "tele": "15", "hybrid": "6", "final": "21", "foul": "0"}, "teams": ["2614", "587", "4300"]}, "coop": "2", "type": "Q_81", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "32", "foul": "3", "tele": "3"}, "teams": ["1403", "2974", "2512"]}}, {"blue": {"score": {"brige": "10", "tele": "28", "hybrid": "24", "final": "62", "foul": "0"}, "teams": ["2415", "3081", "1306"]}, "coop": "0", "type": "Q_82", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "11", "final": "30", "foul": "0", "tele": "9"}, "teams": ["128", "3585", "716"]}}, {"blue": {"score": {"brige": "20", "tele": "25", "hybrid": "21", "final": "66", "foul": "0"}, "teams": ["234", "369", "1504"]}, "coop": "2", "type": "Q_83", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "26", "foul": "0", "tele": "16"}, "teams": ["4206", "3747", "1902"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "12", "final": "21", "foul": "0"}, "teams": ["1218", "1816", "3410"]}, "coop": "0", "type": "Q_84", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "7", "foul": "0", "tele": "7"}, "teams": ["1261", "2410", "1458"]}}, {"blue": {"score": {"brige": "10", "tele": "28", "hybrid": "11", "final": "52", "foul": "3"}, "teams": ["359", "75", "3128"]}, "coop": "2", "type": "Q_85", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "28", "final": "59", "foul": "9", "tele": "12"}, "teams": ["245", "1710", "839"]}}, {"blue": {"score": {"brige": "20", "tele": "27", "hybrid": "12", "final": "59", "foul": "0"}, "teams": ["1676", "2809", "195"]}, "coop": "2", "type": "Q_86", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "4", "final": "4", "foul": "0", "tele": "0"}, "teams": ["2022", "20", "4334"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "6", "final": "9", "foul": "0"}, "teams": ["956", "3335", "3634"]}, "coop": "2", "type": "Q_87", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "16", "final": "33", "foul": "3", "tele": "14"}, "teams": ["4256", "2851", "2648"]}}, {"blue": {"score": {"brige": "0", "tele": "30", "hybrid": "22", "final": "52", "foul": "0"}, "teams": ["1114", "1875", "1756"]}, "coop": "2", "type": "Q_88", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "22", "final": "44", "foul": "3", "tele": "19"}, "teams": ["3158", "3968", "1"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "17", "final": "29", "foul": "0"}, "teams": ["2557", "1868", "4403"]}, "coop": "2", "type": "Q_89", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "20", "hybrid": "30", "final": "98", "foul": "9", "tele": "39"}, "teams": ["2056", "1796", "1403"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "6", "final": "15", "foul": "0"}, "teams": ["587", "247", "4218"]}, "coop": "0", "type": "Q_90", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "18", "foul": "0", "tele": "12"}, "teams": ["128", "3476", "1592"]}}, {"blue": {"score": {"brige": "0", "tele": "25", "hybrid": "24", "final": "49", "foul": "0"}, "teams": ["126", "2614", "3015"]}, "coop": "2", "type": "Q_91", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "21", "foul": "0", "tele": "10"}, "teams": ["1902", "3081", "2085"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "6", "final": "21", "foul": "6"}, "teams": ["2949", "4082", "2512"]}, "coop": "2", "type": "Q_92", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "16", "final": "55", "foul": "0", "tele": "29"}, "teams": ["190", "2590", "3947"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "30", "final": "36", "foul": "0"}, "teams": ["144", "2996", "3008"]}, "coop": "0", "type": "Q_93", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "21", "foul": "0", "tele": "9"}, "teams": ["1058", "2395", "4300"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "15", "final": "34", "foul": "3"}, "teams": ["2974", "100", "1642"]}, "coop": "2", "type": "Q_94", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "24", "final": "54", "foul": "0", "tele": "30"}, "teams": ["234", "1261", "973"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "24", "final": "36", "foul": "0"}, "teams": ["236", "3927", "781"]}, "coop": "0", "type": "Q_95", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "21", "foul": "21", "tele": "0"}, "teams": ["246", "3585", "4206"]}}, {"blue": {"score": {"brige": "0", "tele": "10", "hybrid": "10", "final": "20", "foul": "0"}, "teams": ["4356", "1504", "692"]}, "coop": "0", "type": "Q_96", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "30", "foul": "0", "tele": "20"}, "teams": ["3999", "272", "1736"]}}, {"blue": {"score": {"brige": "20", "tele": "12", "hybrid": "18", "final": "50", "foul": "0"}, "teams": ["2815", "4143", "369"]}, "coop": "0", "type": "Q_97", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "43", "foul": "0", "tele": "21"}, "teams": ["1306", "2046", "3456"]}}, {"blue": {"score": {"brige": "20", "tele": "38", "hybrid": "30", "final": "88", "foul": "0"}, "teams": ["3997", "2826", "67"]}, "coop": "2", "type": "Q_98", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "53", "foul": "9", "tele": "6"}, "teams": ["4001", "1987", "1311"]}}, {"blue": {"score": {"brige": "0", "tele": "28", "hybrid": "18", "final": "55", "foul": "9"}, "teams": ["2403", "2415", "1647"]}, "coop": "2", "type": "Q_99", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "20", "hybrid": "29", "final": "57", "foul": "0", "tele": "8"}, "teams": ["3481", "2898", "1014"]}}, {"blue": {"score": {"brige": "20", "tele": "19", "hybrid": "6", "final": "45", "foul": "0"}, "teams": ["3747", "2603", "716"]}, "coop": "2", "type": "Q_100", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "47", "foul": "0", "tele": "25"}, "teams": ["1018", "1218", "2638"]}}, {"blue": {"score": {"brige": "20", "tele": "14", "hybrid": "24", "final": "58", "foul": "0"}, "teams": ["128", "2512", "2809"]}, "coop": "2", "type": "Q_101", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "32", "foul": "0", "tele": "6"}, "teams": ["3410", "2648", "839"]}}, {"blue": {"score": {"brige": "10", "tele": "8", "hybrid": "0", "final": "21", "foul": "3"}, "teams": ["2851", "100", "3081"]}, "coop": "0", "type": "Q_102", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["190", "4300", "3128"]}}, {"blue": {"score": {"brige": "0", "tele": "32", "hybrid": "12", "final": "47", "foul": "3"}, "teams": ["2410", "973", "2590"]}, "coop": "2", "type": "Q_103", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "30", "final": "78", "foul": "0", "tele": "38"}, "teams": ["3927", "245", "2056"]}}, {"blue": {"score": {"brige": "0", "tele": "13", "hybrid": "5", "final": "18", "foul": "0"}, "teams": ["359", "4334", "1403"]}, "coop": "2", "type": "Q_104", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "24", "foul": "0", "tele": "14"}, "teams": ["2085", "1058", "1756"]}}, {"blue": {"score": {"brige": "20", "tele": "16", "hybrid": "16", "final": "52", "foul": "0"}, "teams": ["75", "1504", "2815"]}, "coop": "0", "type": "Q_105", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "24", "foul": "0", "tele": "13"}, "teams": ["1642", "247", "126"]}}, {"blue": {"score": {"brige": "0", "tele": "10", "hybrid": "16", "final": "26", "foul": "0"}, "teams": ["4356", "1306", "3968"]}, "coop": "0", "type": "Q_106", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "27", "foul": "0", "tele": "9"}, "teams": ["1796", "1261", "3997"]}}, {"blue": {"score": {"brige": "20", "tele": "20", "hybrid": "18", "final": "58", "foul": "0"}, "teams": ["1710", "195", "1875"]}, "coop": "2", "type": "Q_107", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "30", "final": "60", "foul": "3", "tele": "27"}, "teams": ["67", "2395", "1647"]}}, {"blue": {"score": {"brige": "10", "tele": "19", "hybrid": "12", "final": "50", "foul": "9"}, "teams": ["4218", "2996", "4001"]}, "coop": "2", "type": "Q_108", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "41", "foul": "0", "tele": "23"}, "teams": ["20", "1736", "4256"]}}, {"blue": {"score": {"brige": "10", "tele": "9", "hybrid": "16", "final": "44", "foul": "9"}, "teams": ["956", "4206", "3158"]}, "coop": "2", "type": "Q_109", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "10", "final": "35", "foul": "0", "tele": "15"}, "teams": ["1014", "4143", "2638"]}}, {"blue": {"score": {"brige": "10", "tele": "13", "hybrid": "6", "final": "29", "foul": "0"}, "teams": ["3008", "3634", "2022"]}, "coop": "0", "type": "Q_110", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "24", "foul": "0", "tele": "14"}, "teams": ["3947", "1018", "3456"]}}, {"blue": {"score": {"brige": "0", "tele": "21", "hybrid": "12", "final": "33", "foul": "0"}, "teams": ["3747", "1311", "4082"]}, "coop": "2", "type": "Q_112", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "18", "foul": "0", "tele": "18"}, "teams": ["236", "3476", "1816"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "12", "final": "20", "foul": "0"}, "teams": ["1", "2898", "144"]}, "coop": "0", "type": "Q_113", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "24", "final": "61", "foul": "0", "tele": "27"}, "teams": ["272", "369", "1218"]}}, {"blue": {"score": {"brige": "10", "tele": "42", "hybrid": "24", "final": "82", "foul": "6"}, "teams": ["1114", "2046", "3015"]}, "coop": "2", "type": "Q_114", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "29", "final": "53", "foul": "0", "tele": "14"}, "teams": ["781", "716", "2557"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "12", "final": "20", "foul": "0"}, "teams": ["2974", "2403", "3335"]}, "coop": "2", "type": "Q_115", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "30", "final": "70", "foul": "0", "tele": "30"}, "teams": ["1676", "1868", "2603"]}}, {"blue": {"score": {"brige": "20", "tele": "16", "hybrid": "17", "final": "53", "foul": "0"}, "teams": ["2415", "587", "1458"]}, "coop": "2", "type": "Q_116", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "17", "final": "39", "foul": "3", "tele": "19"}, "teams": ["246", "3999", "234"]}}, {"blue": {"score": {"brige": "0", "tele": "15", "hybrid": "16", "final": "31", "foul": "0"}, "teams": ["2614", "3585", "1504"]}, "coop": "2", "type": "Q_117", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "23", "final": "68", "foul": "3", "tele": "32"}, "teams": ["2826", "3481", "245"]}}, {"blue": {"score": {"brige": "10", "tele": "30", "hybrid": "24", "final": "67", "foul": "3"}, "teams": ["3456", "190", "2056"]}, "coop": "2", "type": "Q_118", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "5", "final": "27", "foul": "0", "tele": "12"}, "teams": ["126", "4218", "2638"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "16", "final": "35", "foul": "3"}, "teams": ["3927", "692", "3968"]}, "coop": "0", "type": "Q_119", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "10", "foul": "0", "tele": "4"}, "teams": ["3008", "20", "100"]}}, {"blue": {"score": {"brige": "20", "tele": "19", "hybrid": "6", "final": "45", "foul": "0"}, "teams": ["839", "3947", "3747"]}, "coop": "0", "type": "Q_120", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "31", "foul": "0", "tele": "9"}, "teams": ["4256", "1647", "4143"]}}, {"blue": {"score": {"brige": "10", "tele": "8", "hybrid": "17", "final": "35", "foul": "0"}, "teams": ["2949", "2648", "4334"]}, "coop": "2", "type": "Q_121", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "25", "foul": "0", "tele": "15"}, "teams": ["1306", "1875", "1018"]}}, {"blue": {"score": {"brige": "10", "tele": "8", "hybrid": "28", "final": "46", "foul": "0"}, "teams": ["1902", "236", "247"]}, "coop": "0", "type": "Q_122", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "58", "foul": "3", "tele": "27"}, "teams": ["359", "1736", "716"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "6", "final": "25", "foul": "3"}, "teams": ["1058", "4082", "1592"]}, "coop": "2", "type": "Q_123", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "10", "foul": "0", "tele": "0"}, "teams": ["4356", "4001", "2809"]}}, {"blue": {"score": {"brige": "0", "tele": "21", "hybrid": "17", "final": "38", "foul": "0"}, "teams": ["2815", "3476", "195"]}, "coop": "0", "type": "Q_124", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "10", "final": "23", "foul": "0", "tele": "3"}, "teams": ["3081", "2410", "3335"]}}, {"blue": {"score": {"brige": "10", "tele": "21", "hybrid": "17", "final": "48", "foul": "0"}, "teams": ["3158", "2614", "2851"]}, "coop": "2", "type": "Q_125", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "20", "hybrid": "29", "final": "91", "foul": "6", "tele": "36"}, "teams": ["1218", "2415", "1676"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "18", "final": "24", "foul": "3"}, "teams": ["1868", "956", "1816"]}, "coop": "2", "type": "Q_126", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "31", "foul": "0", "tele": "20"}, "teams": ["1", "781", "3481"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "18", "final": "20", "foul": "0"}, "teams": ["1756", "3015", "1261"]}, "coop": "2", "type": "Q_127", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "57", "foul": "9", "tele": "30"}, "teams": ["4300", "2022", "2826"]}}, {"blue": {"score": {"brige": "0", "tele": "15", "hybrid": "12", "final": "30", "foul": "3"}, "teams": ["587", "2395", "4403"]}, "coop": "2", "type": "Q_128", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "21", "final": "21", "foul": "0", "tele": "0"}, "teams": ["2898", "1642", "3128"]}}, {"blue": {"score": {"brige": "10", "tele": "13", "hybrid": "28", "final": "57", "foul": "6"}, "teams": ["1710", "1311", "1403"]}, "coop": "1", "type": "Q_129", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "11", "final": "39", "foul": "0", "tele": "18"}, "teams": ["4206", "1114", "3999"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "0", "final": "16", "foul": "0"}, "teams": ["246", "2085", "2603"]}, "coop": "0", "type": "Q_130", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "43", "foul": "0", "tele": "15"}, "teams": ["144", "2046", "2512"]}}, {"blue": {"score": {"brige": "10", "tele": "9", "hybrid": "18", "final": "37", "foul": "0"}, "teams": ["2557", "3997", "2996"]}, "coop": "2", "type": "Q_131", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "11", "final": "36", "foul": "0", "tele": "15"}, "teams": ["369", "973", "1458"]}}, {"blue": {"score": {"brige": "10", "tele": "18", "hybrid": "12", "final": "40", "foul": "0"}, "teams": ["1014", "272", "1796"]}, "coop": "2", "type": "Q_132", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "24", "final": "58", "foul": "0", "tele": "24"}, "teams": ["2974", "128", "67"]}}, {"blue": {"score": {"brige": "20", "tele": "36", "hybrid": "12", "final": "68", "foul": "0"}, "teams": ["2403", "2590", "234"]}, "coop": "2", "type": "Q_133", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["3410", "3585", "3634"]}}, {"blue": {"score": {"brige": "10", "tele": "14", "hybrid": "17", "final": "53", "foul": "12"}, "teams": ["1987", "1736", "3947"]}, "coop": "0", "type": "Q_134", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "25", "foul": "0", "tele": "9"}, "teams": ["75", "1816", "3158"]}}, {"blue": {"score": {"brige": "0", "tele": "11", "hybrid": "6", "final": "17", "foul": "0"}, "teams": ["4082", "100", "2815"]}, "coop": "2", "type": "Q_135", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "24", "final": "55", "foul": "3", "tele": "28"}, "teams": ["956", "1756", "2056"]}}, {"blue": {"score": {"brige": "0", "tele": "21", "hybrid": "6", "final": "27", "foul": "0"}, "teams": ["1306", "1218", "4218"]}, "coop": "2", "type": "Q_136", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "33", "foul": "0", "tele": "21"}, "teams": ["359", "2022", "692"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "8", "final": "20", "foul": "0"}, "teams": ["3456", "1710", "1058"]}, "coop": "0", "type": "Q_137", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "36", "final": "75", "foul": "9", "tele": "30"}, "teams": ["247", "2949", "2826"]}}, {"blue": {"score": {"brige": "10", "tele": "11", "hybrid": "10", "final": "40", "foul": "9"}, "teams": ["245", "2648", "2603"]}, "coop": "2", "type": "Q_138", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "16", "final": "31", "foul": "9", "tele": "6"}, "teams": ["1902", "587", "20"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "17", "final": "25", "foul": "3"}, "teams": ["3481", "3997", "236"]}, "coop": "0", "type": "Q_139", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "20", "hybrid": "11", "final": "31", "foul": "0", "tele": "0"}, "teams": ["2085", "1642", "4143"]}}, {"blue": {"score": {"brige": "10", "tele": "9", "hybrid": "18", "final": "37", "foul": "0"}, "teams": ["1647", "3008", "3081"]}, "coop": "0", "type": "Q_140", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "24", "final": "61", "foul": "0", "tele": "27"}, "teams": ["1458", "272", "2046"]}}, {"blue": {"score": {"brige": "20", "tele": "14", "hybrid": "18", "final": "58", "foul": "6"}, "teams": ["1311", "1592", "2512"]}, "coop": "0", "type": "Q_141", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "18", "foul": "3", "tele": "5"}, "teams": ["2851", "2410", "2403"]}}, {"blue": {"score": {"brige": "0", "tele": "23", "hybrid": "24", "final": "47", "foul": "0"}, "teams": ["3335", "973", "3747"]}, "coop": "0", "type": "Q_142", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "22", "final": "44", "foul": "0", "tele": "12"}, "teams": ["1403", "67", "2898"]}}, {"blue": {"score": {"brige": "0", "tele": "21", "hybrid": "24", "final": "54", "foul": "9"}, "teams": ["234", "4001", "839"]}, "coop": "0", "type": "Q_143", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "27", "foul": "0", "tele": "9"}, "teams": ["4300", "1", "3927"]}}, {"blue": {"score": {"brige": "20", "tele": "28", "hybrid": "18", "final": "66", "foul": "0"}, "teams": ["2614", "195", "781"]}, "coop": "2", "type": "Q_144", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "20", "hybrid": "16", "final": "60", "foul": "3", "tele": "21"}, "teams": ["369", "4403", "3968"]}}, {"blue": {"score": {"brige": "0", "tele": "7", "hybrid": "6", "final": "16", "foul": "3"}, "teams": ["190", "3634", "2809"]}, "coop": "0", "type": "Q_145", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "22", "final": "34", "foul": "0", "tele": "12"}, "teams": ["2415", "2395", "1796"]}}, {"blue": {"score": {"brige": "20", "tele": "15", "hybrid": "22", "final": "60", "foul": "3"}, "teams": ["2974", "1504", "3476"]}, "coop": "0", "type": "Q_146", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "23", "foul": "0", "tele": "23"}, "teams": ["1114", "3128", "144"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "0", "final": "12", "foul": "0"}, "teams": ["2638", "4334", "3410"]}, "coop": "2", "type": "Q_147", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "11", "final": "30", "foul": "0", "tele": "9"}, "teams": ["2996", "4356", "246"]}}, {"blue": {"score": {"brige": "10", "tele": "11", "hybrid": "11", "final": "35", "foul": "3"}, "teams": ["126", "3999", "716"]}, "coop": "2", "type": "Q_148", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "24", "final": "54", "foul": "15", "tele": "15"}, "teams": ["2590", "1875", "1868"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "5", "final": "21", "foul": "0"}, "teams": ["128", "4256", "1018"]}, "coop": "0", "type": "Q_149", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "20", "hybrid": "24", "final": "50", "foul": "0", "tele": "6"}, "teams": ["3015", "4206", "75"]}}, {"blue": {"score": {"brige": "10", "tele": "25", "hybrid": "23", "final": "58", "foul": "0"}, "teams": ["1676", "1987", "2557"]}, "coop": "2", "type": "Q_150", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "16", "final": "24", "foul": "0", "tele": "8"}, "teams": ["1261", "1014", "3585"]}}, {"blue": {"score": {"brige": "20", "tele": "30", "hybrid": "12", "final": "62", "foul": "0"}, "teams": ["1676", "1592", "245"]}, "coop": "0", "type": "E_1", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "20", "hybrid": "30", "final": "79", "foul": "0", "tele": "29"}, "teams": ["4143", "67", "2826"]}}, {"blue": {"score": {"brige": "20", "tele": "30", "hybrid": "6", "final": "59", "foul": "3"}, "teams": ["234", "3481", "359"]}, "coop": "0", "type": "E_2", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "24", "final": "39", "foul": "0", "tele": "15"}, "teams": ["781", "190", "2949"]}}, {"blue": {"score": {"brige": "0", "tele": "40", "hybrid": "18", "final": "61", "foul": "3"}, "teams": ["195", "2046", "2415"]}, "coop": "0", "type": "E_3", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "40", "hybrid": "18", "final": "86", "foul": "0", "tele": "28"}, "teams": ["4334", "1114", "2056"]}}, {"blue": {"score": {"brige": "20", "tele": "21", "hybrid": "24", "final": "65", "foul": "0"}, "teams": ["1218", "2851", "2590"]}, "coop": "0", "type": "E_4", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "7", "foul": "0", "tele": "7"}, "teams": ["973", "2648", "2557"]}}, {"blue": {"score": {"brige": "0", "tele": "21", "hybrid": "12", "final": "33", "foul": "0"}, "teams": ["245", "1592", "1676"]}, "coop": "0", "type": "E_5", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "77", "foul": "6", "tele": "39"}, "teams": ["67", "2826", "4143"]}}, {"blue": {"score": {"brige": "20", "tele": "33", "hybrid": "27", "final": "86", "foul": "6"}, "teams": ["359", "234", "3481"]}, "coop": "0", "type": "E_6", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "20", "hybrid": "42", "final": "85", "foul": "0", "tele": "23"}, "teams": ["781", "190", "2949"]}}, {"blue": {"score": {"brige": "40", "tele": "18", "hybrid": "18", "final": "79", "foul": "3"}, "teams": ["195", "2415", "2046"]}, "coop": "0", "type": "E_7", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "40", "hybrid": "23", "final": "90", "foul": "0", "tele": "27"}, "teams": ["1114", "2056", "4334"]}}, {"blue": {"score": {"brige": "20", "tele": "36", "hybrid": "18", "final": "74", "foul": "0"}, "teams": ["2590", "1218", "2851"]}, "coop": "0", "type": "E_8", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "40", "hybrid": "24", "final": "75", "foul": "0", "tele": "11"}, "teams": ["2648", "973", "2557"]}}, {"blue": {"score": {"brige": "20", "tele": "36", "hybrid": "18", "final": "74", "foul": "0"}, "teams": ["2590", "1218", "2851"]}, "coop": "0", "type": "E_12", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "40", "hybrid": "0", "final": "58", "foul": "0", "tele": "18"}, "teams": ["973", "2648", "2557"]}}, {"blue": {"score": {"brige": "10", "tele": "33", "hybrid": "24", "final": "67", "foul": "0"}, "teams": ["234", "3481", "359"]}, "coop": "0", "type": "E_13", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "24", "final": "75", "foul": "0", "tele": "51"}, "teams": ["67", "4143", "2826"]}}, {"blue": {"score": {"brige": "40", "tele": "20", "hybrid": "18", "final": "78", "foul": "0"}, "teams": ["1218", "2851", "2590"]}, "coop": "0", "type": "E_14", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "20", "hybrid": "30", "final": "95", "foul": "0", "tele": "45"}, "teams": ["4334", "2056", "1114"]}}, {"blue": {"score": {"brige": "20", "tele": "30", "hybrid": "29", "final": "79", "foul": "0"}, "teams": ["359", "234", "3481"]}, "coop": "0", "type": "E_15", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "30", "final": "65", "foul": "0", "tele": "35"}, "teams": ["4143", "2826", "67"]}}, {"blue": {"score": {"brige": "10", "tele": "18", "hybrid": "17", "final": "45", "foul": "0"}, "teams": ["1218", "2590", "2851"]}, "coop": "0", "type": "E_16", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "40", "hybrid": "30", "final": "105", "foul": "3", "tele": "32"}, "teams": ["1114", "4334", "2056"]}}, {"blue": {"score": {"brige": "20", "tele": "38", "hybrid": "17", "final": "87", "foul": "12"}, "teams": ["234", "3481", "359"]}, "coop": "0", "type": "E_17", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "20", "hybrid": "30", "final": "113", "foul": "3", "tele": "60"}, "teams": ["4143", "67", "2826"]}}, {"blue": {"score": {"brige": "40", "tele": "33", "hybrid": "24", "final": "103", "foul": "6"}, "teams": ["2056", "4334", "1114"]}, "coop": "0", "type": "E_19", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "20", "hybrid": "36", "final": "106", "foul": "0", "tele": "50"}, "teams": ["4143", "67", "2826"]}}, {"blue": {"score": {"brige": "40", "tele": "42", "hybrid": "30", "final": "115", "foul": "3"}, "teams": ["2056", "4334", "1114"]}, "coop": "0", "type": "E_20", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "10", "hybrid": "36", "final": "97", "foul": "0", "tele": "51"}, "teams": ["67", "4143", "2826"]}}, {"blue": {"score": {"brige": "20", "tele": "35", "hybrid": "36", "final": "94", "foul": "3"}, "teams": ["1114", "2056", "4334"]}, "coop": "0", "type": "E_21", "eventKey": "2012Archimedes", "red": {"score": {"bridge": "0", "hybrid": "30", "final": "72", "foul": "3", "tele": "39"}, "teams": ["4143", "67", "2826"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "9", "foul": "3"}, "teams": ["3321", "1164", "996"]}, "coop": "0", "type": "Q_1", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["1798", "1212", "4102"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "6", "final": "15", "foul": "3"}, "teams": ["1492", "3281", "1165"]}, "coop": "0", "type": "Q_2", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "3", "tele": "0"}, "teams": ["3785", "3853", "2657"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "4", "final": "8", "foul": "0"}, "teams": ["3133", "1011", "2844"]}, "coop": "0", "type": "Q_3", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["2449", "1013", "3517"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "5", "final": "24", "foul": "9"}, "teams": ["4202", "4126", "498"]}, "coop": "0", "type": "Q_4", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "15", "foul": "0", "tele": "3"}, "teams": ["383", "3048", "3194"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2134", "3577", "2403"]}, "coop": "0", "type": "Q_5", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "14", "foul": "3", "tele": "0"}, "teams": ["2486", "4183", "610"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "6", "final": "8", "foul": "0"}, "teams": ["3158", "2662", "698"]}, "coop": "0", "type": "Q_6", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3019", "1633", "4146"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "6", "final": "18", "foul": "6"}, "teams": ["2840", "3170", "4111"]}, "coop": "0", "type": "Q_7", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "9", "foul": "3", "tele": "0"}, "teams": ["2375", "1828", "4018"]}}, {"blue": {"score": {"brige": "10", "tele": "7", "hybrid": "0", "final": "17", "foul": "0"}, "teams": ["2647", "60", "1290"]}, "coop": "0", "type": "Q_8", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "30", "foul": "0", "tele": "18"}, "teams": ["3944", "991", "842"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "12", "final": "24", "foul": "0"}, "teams": ["3187", "610", "3517"]}, "coop": "2", "type": "Q_9", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "12", "foul": "3", "tele": "3"}, "teams": ["1726", "3853", "3321"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "6", "final": "12", "foul": "3"}, "teams": ["3158", "1164", "383"]}, "coop": "0", "type": "Q_10", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "12", "foul": "0", "tele": "0"}, "teams": ["698", "4183", "3048"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "0", "final": "27", "foul": "21"}, "teams": ["1798", "4146", "2844"]}, "coop": "0", "type": "Q_11", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "9", "foul": "3", "tele": "6"}, "teams": ["1633", "1011", "4111"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "12", "final": "18", "foul": "3"}, "teams": ["991", "2403", "3281"]}, "coop": "0", "type": "Q_12", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "14", "final": "17", "foul": "0", "tele": "3"}, "teams": ["1165", "2662", "4202"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "0", "final": "6", "foul": "0"}, "teams": ["2657", "3019", "3577"]}, "coop": "0", "type": "Q_13", "eventKey": "2012AZ", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "33", "foul": "6", "tele": "17"}, "teams": ["2449", "842", "1212"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "4", "final": "7", "foul": "0"}, "teams": ["2647", "1828", "1726"]}, "coop": "0", "type": "Q_14", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["1013", "4126", "2486"]}}, {"blue": {"score": {"brige": "10", "tele": "4", "hybrid": "8", "final": "28", "foul": "6"}, "teams": ["4102", "3785", "498"]}, "coop": "0", "type": "Q_15", "eventKey": "2012AZ", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "21", "foul": "3", "tele": "2"}, "teams": ["3133", "2840", "3944"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "5", "final": "15", "foul": "0"}, "teams": ["1492", "60", "3194"]}, "coop": "0", "type": "Q_16", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "24", "foul": "9", "tele": "15"}, "teams": ["996", "2134", "3170"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["3187", "2375", "4202"]}, "coop": "0", "type": "Q_17", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "9", "foul": "0", "tele": "9"}, "teams": ["4018", "1290", "1164"]}}, {"blue": {"score": {"brige": "10", "tele": "4", "hybrid": "6", "final": "32", "foul": "12"}, "teams": ["498", "4183", "2647"]}, "coop": "0", "type": "Q_19", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "0", "tele": "6"}, "teams": ["1011", "3281", "2657"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "6", "final": "25", "foul": "6"}, "teams": ["3019", "2486", "1798"]}, "coop": "0", "type": "Q_20", "eventKey": "2012AZ", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "40", "foul": "0", "tele": "18"}, "teams": ["610", "60", "4102"]}}, {"blue": {"score": {"brige": "10", "tele": "12", "hybrid": "0", "final": "22", "foul": "0"}, "teams": ["842", "3517", "698"]}, "coop": "0", "type": "Q_21", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "10", "foul": "0", "tele": "10"}, "teams": ["3187", "1633", "2840"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "0", "final": "6", "foul": "0"}, "teams": ["1013", "3944", "2134"]}, "coop": "0", "type": "Q_22", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "8", "foul": "0", "tele": "3"}, "teams": ["4146", "3170", "3853"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "5", "final": "17", "foul": "3"}, "teams": ["2375", "1726", "1212"]}, "coop": "0", "type": "Q_23", "eventKey": "2012AZ", "red": {"score": {"bridge": "10", "hybrid": "5", "final": "18", "foul": "3", "tele": "0"}, "teams": ["991", "3194", "3133"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "6", "foul": "0"}, "teams": ["4126", "4018", "2403"]}, "coop": "2", "type": "Q_24", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "3", "tele": "0"}, "teams": ["2844", "996", "3785"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4111", "1492", "3577"]}, "coop": "0", "type": "Q_25", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "22", "foul": "3", "tele": "9"}, "teams": ["383", "2662", "1290"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["3853", "1633", "3281"]}, "coop": "0", "type": "Q_26", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["4102", "1828", "3321"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "18", "final": "27", "foul": "6"}, "teams": ["1164", "3944", "2486"]}, "coop": "0", "type": "Q_27", "eventKey": "2012AZ", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "29", "foul": "3", "tele": "10"}, "teams": ["3194", "1165", "2840"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "6", "final": "9", "foul": "0"}, "teams": ["1011", "3785", "1212"]}, "coop": "0", "type": "Q_28", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "25", "foul": "15", "tele": "4"}, "teams": ["4202", "1726", "1013"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "10", "final": "13", "foul": "3"}, "teams": ["4183", "1290", "3019"]}, "coop": "0", "type": "Q_29", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "6", "foul": "0", "tele": "0"}, "teams": ["4126", "4146", "3133"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["498", "2657", "4018"]}, "coop": "0", "type": "Q_30", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "18", "foul": "3", "tele": "3"}, "teams": ["4111", "3048", "610"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["3170", "3187", "698"]}, "coop": "0", "type": "Q_31", "eventKey": "2012AZ", "red": {"score": {"bridge": "10", "hybrid": "4", "final": "19", "foul": "3", "tele": "2"}, "teams": ["2403", "2844", "1492"]}}, {"blue": {"score": {"brige": "10", "tele": "18", "hybrid": "12", "final": "40", "foul": "0"}, "teams": ["2134", "3517", "383"]}, "coop": "0", "type": "Q_32", "eventKey": "2012AZ", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "22", "foul": "0", "tele": "12"}, "teams": ["2647", "842", "3158"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "6", "final": "14", "foul": "3"}, "teams": ["2375", "991", "2662"]}, "coop": "0", "type": "Q_33", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "17", "foul": "6", "tele": "5"}, "teams": ["1798", "2449", "60"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "12", "foul": "12"}, "teams": ["3577", "1633", "1013"]}, "coop": "0", "type": "Q_34", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "28", "foul": "18", "tele": "0"}, "teams": ["996", "4018", "2840"]}}, {"blue": {"score": {"brige": "10", "tele": "1", "hybrid": "0", "final": "14", "foul": "3"}, "teams": ["698", "3321", "4146"]}, "coop": "0", "type": "Q_35", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "24", "final": "44", "foul": "15", "tele": "5"}, "teams": ["3785", "1726", "2486"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["2844", "1212", "3944"]}, "coop": "0", "type": "Q_36", "eventKey": "2012AZ", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "17", "foul": "0", "tele": "7"}, "teams": ["2134", "3048", "3281"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "6", "final": "11", "foul": "0"}, "teams": ["3019", "1828", "3194"]}, "coop": "0", "type": "Q_37", "eventKey": "2012AZ", "red": {"score": {"bridge": "10", "hybrid": "5", "final": "16", "foul": "0", "tele": "1"}, "teams": ["383", "1011", "2403"]}}, {"blue": {"score": {"brige": "20", "tele": "23", "hybrid": "12", "final": "58", "foul": "3"}, "teams": ["610", "2657", "2449"]}, "coop": "2", "type": "Q_38", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "5", "foul": "0", "tele": "0"}, "teams": ["4126", "3517", "1290"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "6", "final": "11", "foul": "3"}, "teams": ["2662", "3187", "4183"]}, "coop": "0", "type": "Q_39", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["996", "2375", "498"]}}, {"blue": {"score": {"brige": "10", "tele": "30", "hybrid": "0", "final": "43", "foul": "3"}, "teams": ["4102", "842", "4202"]}, "coop": "2", "type": "Q_40", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["2647", "1492", "1798"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3133", "3170", "1164"]}, "coop": "0", "type": "Q_41", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "14", "final": "25", "foul": "9", "tele": "2"}, "teams": ["60", "1165", "3577"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "9", "foul": "3"}, "teams": ["3158", "991", "1633"]}, "coop": "0", "type": "Q_42", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "11", "foul": "9", "tele": "2"}, "teams": ["4111", "3853", "1212"]}}, {"blue": {"score": {"brige": "20", "tele": "6", "hybrid": "5", "final": "40", "foul": "9"}, "teams": ["996", "1492", "4202"]}, "coop": "0", "type": "Q_44", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "6", "foul": "0", "tele": "0"}, "teams": ["3517", "3019", "3944"]}}, {"blue": {"score": {"brige": "10", "tele": "1", "hybrid": "24", "final": "35", "foul": "0"}, "teams": ["2134", "4146", "1828"]}, "coop": "0", "type": "Q_45", "eventKey": "2012AZ", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "41", "foul": "0", "tele": "3"}, "teams": ["1164", "2449", "498"]}}, {"blue": {"score": {"brige": "10", "tele": "10", "hybrid": "12", "final": "53", "foul": "21"}, "teams": ["3158", "4102", "2486"]}, "coop": "2", "type": "Q_46", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "6", "foul": "0", "tele": "0"}, "teams": ["3170", "2844", "991"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "11", "final": "39", "foul": "18"}, "teams": ["2840", "2662", "4126"]}, "coop": "0", "type": "Q_47", "eventKey": "2012AZ", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "22", "foul": "9", "tele": "3"}, "teams": ["2403", "1290", "3321"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "6", "final": "12", "foul": "3"}, "teams": ["4183", "4111", "60"]}, "coop": "0", "type": "Q_48", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "6", "foul": "0", "tele": "0"}, "teams": ["3785", "2647", "3577"]}}, {"blue": {"score": {"brige": "10", "tele": "4", "hybrid": "6", "final": "20", "foul": "0"}, "teams": ["3194", "1726", "4018"]}, "coop": "0", "type": "Q_50", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "58", "foul": "24", "tele": "22"}, "teams": ["842", "2657", "1165"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "5", "final": "21", "foul": "0"}, "teams": ["4146", "1492", "2840"]}, "coop": "0", "type": "Q_51", "eventKey": "2012AZ", "red": {"score": {"bridge": "10", "hybrid": "17", "final": "51", "foul": "0", "tele": "24"}, "teams": ["610", "1212", "991"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "6", "final": "13", "foul": "3"}, "teams": ["1290", "4111", "2375"]}, "coop": "0", "type": "Q_52", "eventKey": "2012AZ", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "31", "foul": "0", "tele": "9"}, "teams": ["3517", "996", "2486"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "15", "foul": "9"}, "teams": ["2449", "3019", "4126"]}, "coop": "0", "type": "Q_53", "eventKey": "2012AZ", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "16", "foul": "0", "tele": "0"}, "teams": ["498", "3281", "3170"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "12", "final": "31", "foul": "3"}, "teams": ["1633", "60", "1726"]}, "coop": "0", "type": "Q_54", "eventKey": "2012AZ", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "16", "foul": "0", "tele": "6"}, "teams": ["3158", "4202", "2403"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "4", "foul": "0"}, "teams": ["2844", "3853", "4102"]}, "coop": "0", "type": "Q_55", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "19", "foul": "0", "tele": "9"}, "teams": ["3194", "3577", "4183"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "4", "foul": "0"}, "teams": ["2657", "3133", "1798"]}, "coop": "0", "type": "Q_56", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["698", "4018", "3944"]}}, {"blue": {"score": {"brige": "20", "tele": "12", "hybrid": "12", "final": "44", "foul": "0"}, "teams": ["2662", "2134", "3785"]}, "coop": "2", "type": "Q_57", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "6", "foul": "0", "tele": "0"}, "teams": ["3187", "383", "1828"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "6", "final": "15", "foul": "3"}, "teams": ["3048", "1165", "1164"]}, "coop": "0", "type": "Q_58", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["1013", "3321", "2647"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "3", "foul": "3"}, "teams": ["1011", "3158", "3577"]}, "coop": "0", "type": "Q_59", "eventKey": "2012AZ", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "42", "foul": "6", "tele": "14"}, "teams": ["842", "4126", "2375"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "6", "final": "12", "foul": "3"}, "teams": ["2403", "1726", "698"]}, "coop": "0", "type": "Q_60", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["4102", "2449", "4111"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "6", "foul": "0"}, "teams": ["3785", "4146", "3517"]}, "coop": "0", "type": "Q_61", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "4", "final": "5", "foul": "0", "tele": "1"}, "teams": ["3170", "1798", "3194"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "16", "final": "24", "foul": "0"}, "teams": ["2840", "383", "3321"]}, "coop": "2", "type": "Q_62", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["2657", "60", "2844"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["3944", "996", "2662"]}, "coop": "2", "type": "Q_63", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "9", "foul": "0", "tele": "9"}, "teams": ["1164", "3853", "1011"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "0", "final": "15", "foul": "6"}, "teams": ["3281", "4183", "1013"]}, "coop": "0", "type": "Q_64", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "4", "final": "7", "foul": "3", "tele": "0"}, "teams": ["1492", "991", "4018"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "12", "final": "12", "foul": "0"}, "teams": ["610", "4202", "2647"]}, "coop": "0", "type": "Q_65", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "11", "foul": "3", "tele": "2"}, "teams": ["1633", "1828", "3133"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "6", "final": "12", "foul": "0"}, "teams": ["1212", "2486", "1165"]}, "coop": "1", "type": "Q_66", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "23", "foul": "0", "tele": "13"}, "teams": ["498", "842", "3187"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "3", "foul": "0"}, "teams": ["3019", "3048", "3170"]}, "coop": "0", "type": "Q_67", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "13", "foul": "0", "tele": "2"}, "teams": ["2134", "1290", "2840"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "22", "final": "41", "foul": "9"}, "teams": ["60", "996", "383"]}, "coop": "0", "type": "Q_68", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "15", "foul": "9", "tele": "6"}, "teams": ["4146", "3281", "1726"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["3158", "2844", "3194"]}, "coop": "0", "type": "Q_69", "eventKey": "2012AZ", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "13", "foul": "0", "tele": "3"}, "teams": ["610", "2662", "3133"]}}, {"blue": {"score": {"brige": "0", "tele": "24", "hybrid": "12", "final": "36", "foul": "0"}, "teams": ["842", "2403", "4111"]}, "coop": "2", "type": "Q_70", "eventKey": "2012AZ", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "13", "foul": "3", "tele": "0"}, "teams": ["1164", "1013", "1212"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "4", "final": "8", "foul": "0"}, "teams": ["2657", "3048", "1492"]}, "coop": "0", "type": "Q_71", "eventKey": "2012AZ", "red": {"score": {"bridge": "10", "hybrid": "4", "final": "27", "foul": "3", "tele": "10"}, "teams": ["1633", "2486", "2375"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "6", "final": "12", "foul": "0"}, "teams": ["4102", "1011", "1290"]}, "coop": "0", "type": "Q_72", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "12", "foul": "0", "tele": "0"}, "teams": ["3321", "4018", "2134"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "5", "final": "7", "foul": "0"}, "teams": ["1165", "1798", "3517"]}, "coop": "0", "type": "Q_73", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "11", "foul": "0", "tele": "5"}, "teams": ["1828", "4126", "4183"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "6", "final": "25", "foul": "6"}, "teams": ["2647", "991", "2449"]}, "coop": "0", "type": "Q_74", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "5", "foul": "0", "tele": "5"}, "teams": ["3019", "3785", "3187"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "5", "final": "17", "foul": "0"}, "teams": ["3944", "498", "3853"]}, "coop": "2", "type": "Q_75", "eventKey": "2012AZ", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "12", "foul": "0", "tele": "2"}, "teams": ["4202", "698", "3577"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3133", "3281", "3321"]}, "coop": "0", "type": "Q_76", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "4", "foul": "3", "tele": "1"}, "teams": ["2134", "3194", "4111"]}}, {"blue": {"score": {"brige": "10", "tele": "12", "hybrid": "6", "final": "31", "foul": "3"}, "teams": ["2486", "383", "4018"]}, "coop": "0", "type": "Q_77", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "9", "foul": "0", "tele": "3"}, "teams": ["3517", "2662", "1212"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["1828", "1164", "2844"]}, "coop": "0", "type": "Q_78", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "19", "foul": "0", "tele": "9"}, "teams": ["1492", "1726", "3019"]}}, {"blue": {"score": {"brige": "20", "tele": "4", "hybrid": "6", "final": "30", "foul": "0"}, "teams": ["4202", "2657", "4146"]}, "coop": "0", "type": "Q_79", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "4", "foul": "3", "tele": "1"}, "teams": ["3187", "3577", "4102"]}}, {"blue": {"score": {"brige": "0", "tele": "27", "hybrid": "18", "final": "66", "foul": "21"}, "teams": ["1633", "842", "610"]}, "coop": "0", "type": "Q_80", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "6", "foul": "0", "tele": "0"}, "teams": ["3944", "4183", "3170"]}}, {"blue": {"score": {"brige": "10", "tele": "7", "hybrid": "5", "final": "22", "foul": "0"}, "teams": ["2840", "2449", "2375"]}, "coop": "2", "type": "Q_81", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "11", "foul": "0", "tele": "6"}, "teams": ["3853", "2647", "1165"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["1798", "3785", "2403"]}, "coop": "0", "type": "Q_82", "eventKey": "2012AZ", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "32", "foul": "0", "tele": "4"}, "teams": ["3158", "498", "1290"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "0", "final": "12", "foul": "0"}, "teams": ["991", "60", "3048"]}, "coop": "0", "type": "Q_83", "eventKey": "2012AZ", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "24", "foul": "0", "tele": "8"}, "teams": ["698", "996", "1011"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["1013", "4111", "3187"]}, "coop": "0", "type": "Q_84", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["4126", "3194", "3944"]}}, {"blue": {"score": {"brige": "10", "tele": "10", "hybrid": "0", "final": "20", "foul": "0"}, "teams": ["2449", "2486", "3133"]}, "coop": "2", "type": "Q_85", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "18", "foul": "0", "tele": "6"}, "teams": ["1492", "383", "1633"]}}, {"blue": {"score": {"brige": "10", "tele": "23", "hybrid": "18", "final": "51", "foul": "0"}, "teams": ["3321", "842", "3785"]}, "coop": "0", "type": "Q_86", "eventKey": "2012AZ", "red": {"score": {"bridge": "10", "hybrid": "24", "final": "44", "foul": "3", "tele": "7"}, "teams": ["2375", "4146", "4183"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "12", "final": "27", "foul": "3"}, "teams": ["1828", "1290", "1212"]}, "coop": "0", "type": "Q_87", "eventKey": "2012AZ", "red": {"score": {"bridge": "20", "hybrid": "5", "final": "29", "foul": "0", "tele": "4"}, "teams": ["698", "2844", "1165"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "6", "foul": "0"}, "teams": ["991", "996", "4126"]}, "coop": "0", "type": "Q_88", "eventKey": "2012AZ", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "33", "foul": "0", "tele": "13"}, "teams": ["2134", "2657", "1164"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "4", "final": "13", "foul": "3"}, "teams": ["2647", "3048", "3517"]}, "coop": "0", "type": "Q_89", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "33", "foul": "21", "tele": "6"}, "teams": ["2662", "2403", "4102"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "3", "foul": "0"}, "teams": ["4018", "1013", "3853"]}, "coop": "0", "type": "Q_90", "eventKey": "2012AZ", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "12", "foul": "0", "tele": "2"}, "teams": ["60", "3019", "498"]}}, {"blue": {"score": {"brige": "10", "tele": "5", "hybrid": "0", "final": "15", "foul": "0"}, "teams": ["3281", "3577", "2840"]}, "coop": "0", "type": "Q_91", "eventKey": "2012AZ", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "28", "foul": "0", "tele": "6"}, "teams": ["1726", "3158", "1798"]}}, {"blue": {"score": {"brige": "0", "tele": "11", "hybrid": "22", "final": "33", "foul": "0"}, "teams": ["3170", "610", "1165"]}, "coop": "2", "type": "Q_92", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "9", "foul": "0", "tele": "3"}, "teams": ["1011", "4202", "3321"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "0", "final": "12", "foul": "3"}, "teams": ["4102", "4183", "2403"]}, "coop": "0", "type": "E_1", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "36", "foul": "0", "tele": "24"}, "teams": ["842", "1212", "610"]}}, {"blue": {"score": {"brige": "20", "tele": "10", "hybrid": "11", "final": "41", "foul": "0"}, "teams": ["60", "1726", "2840"]}, "coop": "0", "type": "E_2", "eventKey": "2012AZ", "red": {"score": {"bridge": "20", "hybrid": "10", "final": "36", "foul": "0", "tele": "6"}, "teams": ["3785", "2134", "1165"]}}, {"blue": {"score": {"brige": "20", "tele": "3", "hybrid": "0", "final": "23", "foul": "0"}, "teams": ["1164", "1011", "996"]}, "coop": "0", "type": "E_3", "eventKey": "2012AZ", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "43", "foul": "3", "tele": "8"}, "teams": ["2449", "698", "383"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "12", "final": "15", "foul": "3"}, "teams": ["2662", "3194", "1492"]}, "coop": "0", "type": "E_4", "eventKey": "2012AZ", "red": {"score": {"bridge": "10", "hybrid": "36", "final": "94", "foul": "42", "tele": "6"}, "teams": ["4146", "498", "2486"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "6", "final": "15", "foul": "0"}, "teams": ["4183", "2403", "4102"]}, "coop": "0", "type": "E_5", "eventKey": "2012AZ", "red": {"score": {"bridge": "20", "hybrid": "35", "final": "77", "foul": "3", "tele": "19"}, "teams": ["610", "842", "1212"]}}, {"blue": {"score": {"brige": "20", "tele": "9", "hybrid": "6", "final": "35", "foul": "0"}, "teams": ["2840", "60", "1726"]}, "coop": "0", "type": "E_6", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "16", "final": "32", "foul": "0", "tele": "16"}, "teams": ["3785", "1165", "2134"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "12", "final": "18", "foul": "0"}, "teams": ["1164", "1011", "996"]}, "coop": "0", "type": "E_7", "eventKey": "2012AZ", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "32", "foul": "0", "tele": "6"}, "teams": ["2449", "383", "698"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "6", "final": "9", "foul": "0"}, "teams": ["3194", "2662", "1492"]}, "coop": "0", "type": "E_8", "eventKey": "2012AZ", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "47", "foul": "0", "tele": "15"}, "teams": ["4146", "498", "2486"]}}, {"blue": {"score": {"brige": "0", "tele": "13", "hybrid": "6", "final": "22", "foul": "3"}, "teams": ["2840", "60", "1726"]}, "coop": "0", "type": "E_13", "eventKey": "2012AZ", "red": {"score": {"bridge": "20", "hybrid": "24", "final": "69", "foul": "12", "tele": "13"}, "teams": ["1212", "610", "842"]}}, {"blue": {"score": {"brige": "10", "tele": "12", "hybrid": "24", "final": "46", "foul": "0"}, "teams": ["4146", "498", "2486"]}, "coop": "0", "type": "E_14", "eventKey": "2012AZ", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "43", "foul": "3", "tele": "14"}, "teams": ["2449", "698", "383"]}}, {"blue": {"score": {"brige": "0", "tele": "17", "hybrid": "12", "final": "32", "foul": "3"}, "teams": ["60", "1726", "2840"]}, "coop": "0", "type": "E_15", "eventKey": "2012AZ", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "54", "foul": "6", "tele": "30"}, "teams": ["1212", "842", "610"]}}, {"blue": {"score": {"brige": "20", "tele": "12", "hybrid": "12", "final": "44", "foul": "0"}, "teams": ["4146", "498", "2486"]}, "coop": "0", "type": "E_16", "eventKey": "2012AZ", "red": {"score": {"bridge": "20", "hybrid": "17", "final": "41", "foul": "0", "tele": "4"}, "teams": ["2449", "383", "698"]}}, {"blue": {"score": {"brige": "40", "tele": "18", "hybrid": "12", "final": "79", "foul": "9"}, "teams": ["2486", "4146", "498"]}, "coop": "0", "type": "E_19", "eventKey": "2012AZ", "red": {"score": {"bridge": "10", "hybrid": "24", "final": "45", "foul": "0", "tele": "11"}, "teams": ["1212", "842", "610"]}}, {"blue": {"score": {"brige": "20", "tele": "18", "hybrid": "12", "final": "50", "foul": "0"}, "teams": ["2486", "4146", "498"]}, "coop": "0", "type": "E_20", "eventKey": "2012AZ", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "67", "foul": "0", "tele": "45"}, "teams": ["610", "1212", "842"]}}, {"blue": {"score": {"brige": "20", "tele": "18", "hybrid": "6", "final": "44", "foul": "0"}, "teams": ["2486", "498", "4146"]}, "coop": "0", "type": "E_21", "eventKey": "2012AZ", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "61", "foul": "0", "tele": "23"}, "teams": ["842", "610", "1212"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "15", "final": "18", "foul": "0"}, "teams": ["4141", "696", "2637"]}, "coop": "0", "type": "Q_1", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "6", "foul": "0", "tele": "0"}, "teams": ["4046", "4144", "599"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3408", "3863", "4019"]}, "coop": "0", "type": "Q_2", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["1644", "3120", "3752"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "12", "final": "21", "foul": "0"}, "teams": ["3925", "987", "691"]}, "coop": "2", "type": "Q_3", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "9", "foul": "0", "tele": "3"}, "teams": ["3309", "687", "2659"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "5", "final": "5", "foul": "0"}, "teams": ["4078", "974", "1148"]}, "coop": "0", "type": "Q_4", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "8", "foul": "0", "tele": "2"}, "teams": ["597", "4029", "3851"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "15", "final": "24", "foul": "0"}, "teams": ["1138", "702", "580"]}, "coop": "0", "type": "Q_5", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["980", "2429", "1438"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["383", "3934", "2404"]}, "coop": "2", "type": "Q_6", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "0", "tele": "6"}, "teams": ["973", "995", "3027"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3993", "4170", "848"]}, "coop": "0", "type": "Q_7", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "6", "foul": "0", "tele": "0"}, "teams": ["4", "3295", "330"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["1836", "1692", "207"]}, "coop": "0", "type": "Q_8", "eventKey": "2012CA", "red": {"score": {"bridge": "10", "hybrid": "11", "final": "21", "foul": "0", "tele": "0"}, "teams": ["4101", "294", "1759"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4140", "3677", "606"]}, "coop": "0", "type": "Q_9", "eventKey": "2012CA", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "13", "foul": "0", "tele": "3"}, "teams": ["1515", "589", "3512"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "0", "final": "12", "foul": "3"}, "teams": ["3521", "1197", "2576"]}, "coop": "0", "type": "Q_10", "eventKey": "2012CA", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "13", "foul": "3", "tele": "0"}, "teams": ["3759", "3952", "4210"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "6", "foul": "0"}, "teams": ["2919", "4123", "4345"]}, "coop": "0", "type": "Q_11", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "4", "final": "31", "foul": "3", "tele": "24"}, "teams": ["1717", "4079", "4201"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3027", "974", "3925"]}, "coop": "0", "type": "Q_12", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["4046", "580", "3408"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3120", "4170", "3934"]}, "coop": "0", "type": "Q_13", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "24", "foul": "0", "tele": "6"}, "teams": ["383", "987", "4141"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "0", "final": "9", "foul": "3"}, "teams": ["3309", "4144", "4"]}, "coop": "0", "type": "Q_14", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "8", "final": "10", "foul": "0", "tele": "2"}, "teams": ["4029", "4101", "3752"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "3", "foul": "0"}, "teams": ["973", "3759", "3295"]}, "coop": "0", "type": "Q_15", "eventKey": "2012CA", "red": {"score": {"bridge": "10", "hybrid": "5", "final": "24", "foul": "0", "tele": "9"}, "teams": ["1138", "1692", "696"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "12", "foul": "9"}, "teams": ["1515", "3851", "2576"]}, "coop": "0", "type": "Q_16", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "16", "final": "17", "foul": "0", "tele": "1"}, "teams": ["207", "2659", "3512"]}}, {"blue": {"score": {"brige": "10", "tele": "18", "hybrid": "17", "final": "45", "foul": "0"}, "teams": ["294", "330", "606"]}, "coop": "2", "type": "Q_17", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "9", "foul": "0", "tele": "4"}, "teams": ["702", "3521", "2919"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "6", "final": "18", "foul": "9"}, "teams": ["599", "597", "1717"]}, "coop": "0", "type": "Q_18", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["1438", "4210", "2404"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3952", "995", "1148"]}, "coop": "0", "type": "Q_19", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["4019", "589", "4345"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "5", "final": "7", "foul": "0"}, "teams": ["3993", "1197", "1836"]}, "coop": "0", "type": "Q_20", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["4123", "2429", "4078"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "0", "final": "8", "foul": "0"}, "teams": ["691", "3677", "4079"]}, "coop": "0", "type": "Q_21", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "0", "tele": "6"}, "teams": ["980", "848", "1644"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "3", "foul": "0"}, "teams": ["4140", "2637", "1759"]}, "coop": "0", "type": "Q_22", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "4", "final": "13", "foul": "9", "tele": "0"}, "teams": ["3863", "4201", "687"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "5", "foul": "3"}, "teams": ["2659", "4", "4210"]}, "coop": "0", "type": "Q_23", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["974", "3408", "1692"]}}, {"blue": {"score": {"brige": "10", "tele": "18", "hybrid": "12", "final": "40", "foul": "0"}, "teams": ["589", "973", "1438"]}, "coop": "0", "type": "Q_24", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "3", "tele": "0"}, "teams": ["4170", "4029", "4141"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3851", "3759", "4345"]}, "coop": "0", "type": "Q_25", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "16", "foul": "3", "tele": "8"}, "teams": ["702", "3027", "4123"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3295", "2576", "597"]}, "coop": "0", "type": "Q_26", "eventKey": "2012CA", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "13", "foul": "0", "tele": "3"}, "teams": ["3120", "580", "606"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "5", "final": "8", "foul": "0"}, "teams": ["1148", "1836", "3752"]}, "coop": "0", "type": "Q_27", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "9", "foul": "0", "tele": "9"}, "teams": ["3993", "3677", "1717"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "3", "foul": "0"}, "teams": ["1148", "1836", "3752"]}, "coop": "0", "type": "Q_27", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "9", "foul": "9", "tele": "0"}, "teams": ["3993", "3677", "1717"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "8", "final": "8", "foul": "0"}, "teams": ["696", "4078", "2919"]}, "coop": "2", "type": "Q_28", "eventKey": "2012CA", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "39", "foul": "3", "tele": "14"}, "teams": ["4019", "987", "2637"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["848", "3925", "4101"]}, "coop": "0", "type": "Q_29", "eventKey": "2012CA", "red": {"score": {"bridge": "10", "hybrid": "16", "final": "29", "foul": "0", "tele": "3"}, "teams": ["1138", "3521", "383"]}}, {"blue": {"score": {"brige": "0", "tele": "13", "hybrid": "12", "final": "31", "foul": "6"}, "teams": ["1644", "330", "3309"]}, "coop": "2", "type": "Q_30", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["995", "1759", "4046"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2429", "687", "3952"]}, "coop": "0", "type": "Q_31", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["1515", "4079", "4144"]}}, {"blue": {"score": {"brige": "0", "tele": "21", "hybrid": "6", "final": "30", "foul": "3"}, "teams": ["1197", "3934", "599"]}, "coop": "2", "type": "Q_32", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["4140", "207", "691"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "0", "final": "5", "foul": "0"}, "teams": ["3863", "3512", "980"]}, "coop": "2", "type": "Q_33", "eventKey": "2012CA", "red": {"score": {"bridge": "10", "hybrid": "4", "final": "23", "foul": "3", "tele": "6"}, "teams": ["294", "2404", "4201"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "10", "final": "15", "foul": "3"}, "teams": ["4019", "1836", "3851"]}, "coop": "0", "type": "Q_34", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "8", "foul": "0", "tele": "2"}, "teams": ["4141", "4210", "606"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "15", "final": "35", "foul": "18"}, "teams": ["3408", "702", "2659"]}, "coop": "0", "type": "Q_35", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "3", "tele": "0"}, "teams": ["1759", "3521", "848"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "12", "final": "18", "foul": "0"}, "teams": ["589", "3120", "2637"]}, "coop": "2", "type": "Q_36", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "18", "foul": "0", "tele": "6"}, "teams": ["1692", "330", "4345"]}}, {"blue": {"score": {"brige": "10", "tele": "31", "hybrid": "12", "final": "53", "foul": "0"}, "teams": ["580", "1717", "696"]}, "coop": "2", "type": "Q_37", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "12", "foul": "12", "tele": "0"}, "teams": ["4170", "687", "207"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "4", "final": "9", "foul": "0"}, "teams": ["4078", "3952", "4201"]}, "coop": "0", "type": "Q_38", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["3295", "4101", "691"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "6", "final": "12", "foul": "0"}, "teams": ["3752", "973", "4046"]}, "coop": "0", "type": "Q_39", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "22", "final": "31", "foul": "0", "tele": "9"}, "teams": ["294", "987", "597"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3027", "2429", "4"]}, "coop": "0", "type": "Q_40", "eventKey": "2012CA", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "19", "foul": "0", "tele": "9"}, "teams": ["3677", "995", "599"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "4", "foul": "0"}, "teams": ["980", "4123", "4140"]}, "coop": "0", "type": "Q_41", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "4", "foul": "0", "tele": "4"}, "teams": ["383", "2576", "974"]}}, {"blue": {"score": {"brige": "20", "tele": "15", "hybrid": "0", "final": "53", "foul": "18"}, "teams": ["1197", "4079", "3512"]}, "coop": "0", "type": "Q_42", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["1148", "3309", "3934"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "10", "final": "16", "foul": "3"}, "teams": ["1644", "4029", "1138"]}, "coop": "0", "type": "Q_43", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["2919", "1515", "2404"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "6", "final": "16", "foul": "0"}, "teams": ["3993", "1438", "3925"]}, "coop": "0", "type": "Q_44", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["3863", "3759", "4144"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["687", "3521", "4141"]}, "coop": "0", "type": "Q_45", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["4078", "3752", "1692"]}}, {"blue": {"score": {"brige": "0", "tele": "17", "hybrid": "10", "final": "27", "foul": "0"}, "teams": ["330", "1836", "2659"]}, "coop": "0", "type": "Q_46", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "39", "foul": "3", "tele": "30"}, "teams": ["973", "3952", "580"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "4", "final": "13", "foul": "3"}, "teams": ["2637", "4210", "4046"]}, "coop": "0", "type": "Q_47", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "18", "foul": "3", "tele": "3"}, "teams": ["4123", "3512", "3295"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "6", "final": "18", "foul": "9"}, "teams": ["848", "3309", "4345"]}, "coop": "0", "type": "Q_48", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "3", "tele": "0"}, "teams": ["2404", "2429", "2576"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "5", "final": "42", "foul": "21"}, "teams": ["995", "207", "2919"]}, "coop": "0", "type": "Q_49", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "8", "foul": "0", "tele": "2"}, "teams": ["974", "3120", "3759"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "5", "final": "5", "foul": "0"}, "teams": ["3925", "383", "294"]}, "coop": "0", "type": "Q_50", "eventKey": "2012CA", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "11", "foul": "0", "tele": "1"}, "teams": ["1438", "3677", "4019"]}}, {"blue": {"score": {"brige": "0", "tele": "19", "hybrid": "18", "final": "43", "foul": "6"}, "teams": ["987", "4144", "702"]}, "coop": "2", "type": "Q_51", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "13", "final": "22", "foul": "0", "tele": "9"}, "teams": ["1644", "4140", "1197"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "4", "final": "5", "foul": "0"}, "teams": ["696", "597", "691"]}, "coop": "0", "type": "Q_52", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["589", "4079", "3851"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "3", "foul": "3"}, "teams": ["4170", "4101", "1515"]}, "coop": "0", "type": "Q_53", "eventKey": "2012CA", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "10", "foul": "0", "tele": "0"}, "teams": ["3027", "3863", "1148"]}}, {"blue": {"score": {"brige": "10", "tele": "1", "hybrid": "0", "final": "11", "foul": "0"}, "teams": ["4029", "3408", "3993"]}, "coop": "2", "type": "Q_54", "eventKey": "2012CA", "red": {"score": {"bridge": "10", "hybrid": "8", "final": "18", "foul": "0", "tele": "0"}, "teams": ["980", "4201", "599"]}}, {"blue": {"score": {"brige": "0", "tele": "27", "hybrid": "6", "final": "33", "foul": "0"}, "teams": ["606", "4", "1717"]}, "coop": "0", "type": "Q_55", "eventKey": "2012CA", "red": {"score": {"bridge": "10", "hybrid": "22", "final": "42", "foul": "3", "tele": "7"}, "teams": ["3934", "1138", "1759"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["687", "294", "3677"]}, "coop": "0", "type": "Q_56", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["4141", "974", "3295"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["1644", "4046", "4079"]}, "coop": "0", "type": "Q_57", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["4078", "2576", "1438"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "7", "foul": "3"}, "teams": ["3752", "702", "2404"]}, "coop": "0", "type": "Q_58", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["3925", "207", "2637"]}}, {"blue": {"score": {"brige": "0", "tele": "21", "hybrid": "16", "final": "40", "foul": "3"}, "teams": ["848", "987", "1836"]}, "coop": "2", "type": "Q_59", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "9", "foul": "0", "tele": "9"}, "teams": ["599", "3759", "3512"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "0", "final": "12", "foul": "0"}, "teams": ["589", "3863", "3521"]}, "coop": "0", "type": "Q_60", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "54", "foul": "0", "tele": "36"}, "teams": ["3851", "3309", "1717"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "6", "final": "16", "foul": "0"}, "teams": ["1515", "3934", "4019"]}, "coop": "0", "type": "Q_61", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "17", "final": "21", "foul": "0", "tele": "4"}, "teams": ["3993", "330", "4201"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "6", "final": "8", "foul": "0"}, "teams": ["1692", "980", "1759"]}, "coop": "0", "type": "Q_62", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "19", "foul": "12", "tele": "1"}, "teams": ["3027", "1197", "3952"]}}, {"blue": {"score": {"brige": "0", "tele": "21", "hybrid": "0", "final": "24", "foul": "3"}, "teams": ["2429", "1148", "973"]}, "coop": "0", "type": "Q_63", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "20", "final": "20", "foul": "0", "tele": "0"}, "teams": ["3120", "4140", "4210"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "5", "final": "15", "foul": "6"}, "teams": ["2919", "4144", "383"]}, "coop": "0", "type": "Q_64", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "8", "foul": "0", "tele": "2"}, "teams": ["4", "580", "597"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "10", "final": "20", "foul": "0"}, "teams": ["1138", "995", "4170"]}, "coop": "0", "type": "Q_65", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "22", "foul": "0", "tele": "4"}, "teams": ["4123", "3408", "691"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4101", "606", "2659"]}, "coop": "0", "type": "Q_66", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "1", "foul": "0", "tele": "1"}, "teams": ["696", "4029", "4345"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "3", "foul": "3"}, "teams": ["2637", "3952", "1438"]}, "coop": "0", "type": "Q_67", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["3934", "848", "3851"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["1692", "2404", "3295"]}, "coop": "0", "type": "Q_68", "eventKey": "2012CA", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "27", "foul": "0", "tele": "11"}, "teams": ["4019", "1148", "2576"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4", "589", "4201"]}, "coop": "2", "type": "Q_69", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "15", "foul": "0", "tele": "9"}, "teams": ["3521", "987", "973"]}}, {"blue": {"score": {"brige": "20", "tele": "11", "hybrid": "12", "final": "43", "foul": "0"}, "teams": ["330", "3677", "3863"]}, "coop": "0", "type": "Q_70", "eventKey": "2012CA", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "10", "foul": "0", "tele": "0"}, "teams": ["597", "1197", "4210"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "15", "final": "15", "foul": "0"}, "teams": ["4144", "691", "1138"]}, "coop": "0", "type": "Q_71", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["974", "4345", "3512"]}}, {"blue": {"score": {"brige": "0", "tele": "10", "hybrid": "10", "final": "23", "foul": "3"}, "teams": ["995", "702", "4101"]}, "coop": "0", "type": "Q_72", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "3", "tele": "0"}, "teams": ["687", "3993", "4046"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["980", "4170", "3752"]}, "coop": "0", "type": "Q_73", "eventKey": "2012CA", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "10", "foul": "0", "tele": "0"}, "teams": ["599", "2919", "2659"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2429", "580", "4141"]}, "coop": "0", "type": "Q_74", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "21", "foul": "3", "tele": "12"}, "teams": ["1644", "1717", "3759"]}}, {"blue": {"score": {"brige": "10", "tele": "1", "hybrid": "6", "final": "17", "foul": "0"}, "teams": ["3309", "207", "383"]}, "coop": "0", "type": "Q_75", "eventKey": "2012CA", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "12", "foul": "0", "tele": "2"}, "teams": ["4078", "606", "3408"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "8", "final": "17", "foul": "9"}, "teams": ["4079", "4140", "3027"]}, "coop": "0", "type": "Q_76", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "17", "foul": "6", "tele": "6"}, "teams": ["1836", "3925", "4029"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "12", "final": "15", "foul": "0"}, "teams": ["696", "1515", "1759"]}, "coop": "2", "type": "Q_77", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "12", "foul": "0", "tele": "7"}, "teams": ["4123", "294", "3120"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "12", "final": "15", "foul": "3"}, "teams": ["4210", "687", "848"]}, "coop": "0", "type": "Q_78", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["2919", "589", "3934"]}}, {"blue": {"score": {"brige": "10", "tele": "12", "hybrid": "6", "final": "28", "foul": "0"}, "teams": ["1197", "580", "3851"]}, "coop": "2", "type": "Q_79", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "16", "foul": "0", "tele": "6"}, "teams": ["1138", "4046", "4019"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "18", "final": "26", "foul": "0"}, "teams": ["973", "2576", "2659"]}, "coop": "0", "type": "Q_80", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["2637", "995", "3993"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4141", "4078", "4345"]}, "coop": "0", "type": "Q_81", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "9", "foul": "0", "tele": "3"}, "teams": ["3925", "4", "980"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "8", "final": "20", "foul": "0"}, "teams": ["3759", "294", "4140"]}, "coop": "0", "type": "Q_82", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "10", "foul": "0", "tele": "4"}, "teams": ["4101", "597", "3408"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "10", "final": "12", "foul": "0"}, "teams": ["4079", "1759", "974"]}, "coop": "0", "type": "Q_83", "eventKey": "2012CA", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "10", "foul": "0", "tele": "0"}, "teams": ["2404", "4170", "3521"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "12", "final": "25", "foul": "0"}, "teams": ["330", "3027", "3512"]}, "coop": "0", "type": "Q_84", "eventKey": "2012CA", "red": {"score": {"bridge": "10", "hybrid": "5", "final": "15", "foul": "0", "tele": "0"}, "teams": ["696", "3752", "1438"]}}, {"blue": {"score": {"brige": "10", "tele": "9", "hybrid": "12", "final": "34", "foul": "3"}, "teams": ["4029", "987", "3295"]}, "coop": "0", "type": "Q_85", "eventKey": "2012CA", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "18", "foul": "0", "tele": "8"}, "teams": ["2429", "3863", "207"]}}, {"blue": {"score": {"brige": "0", "tele": "7", "hybrid": "6", "final": "13", "foul": "0"}, "teams": ["599", "4123", "1148"]}, "coop": "2", "type": "Q_86", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["606", "3952", "1644"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "10", "final": "12", "foul": "0"}, "teams": ["3120", "4144", "4201"]}, "coop": "0", "type": "Q_87", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["1836", "3677", "3309"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "18", "final": "36", "foul": "9"}, "teams": ["1692", "1515", "383"]}, "coop": "2", "type": "Q_88", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "16", "final": "42", "foul": "3", "tele": "23"}, "teams": ["691", "702", "1717"]}}, {"blue": {"score": {"brige": "0", "tele": "10", "hybrid": "11", "final": "24", "foul": "3"}, "teams": ["4210", "4345", "1759"]}, "coop": "0", "type": "Q_89", "eventKey": "2012CA", "red": {"score": {"bridge": "20", "hybrid": "8", "final": "30", "foul": "0", "tele": "2"}, "teams": ["4140", "3752", "580"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "0", "final": "16", "foul": "0"}, "teams": ["207", "597", "1138"]}, "coop": "2", "type": "Q_90", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["4141", "3027", "3993"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "6", "final": "15", "foul": "0"}, "teams": ["4123", "2576", "4029"]}, "coop": "0", "type": "Q_91", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "47", "foul": "0", "tele": "29"}, "teams": ["687", "987", "330"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "12", "final": "12", "foul": "0"}, "teams": ["4019", "3512", "3120"]}, "coop": "0", "type": "Q_92", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "4", "final": "8", "foul": "0", "tele": "4"}, "teams": ["4079", "4101", "4"]}}, {"blue": {"score": {"brige": "0", "tele": "27", "hybrid": "11", "final": "50", "foul": "12"}, "teams": ["294", "4078", "1717"]}, "coop": "2", "type": "Q_93", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "7", "foul": "0", "tele": "2"}, "teams": ["848", "4144", "995"]}}, {"blue": {"score": {"brige": "0", "tele": "11", "hybrid": "6", "final": "17", "foul": "0"}, "teams": ["3863", "3309", "599"]}, "coop": "2", "type": "Q_94", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "21", "final": "34", "foul": "0", "tele": "13"}, "teams": ["973", "702", "974"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "5", "final": "30", "foul": "9"}, "teams": ["383", "3295", "1644"]}, "coop": "2", "type": "Q_95", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "18", "foul": "0", "tele": "12"}, "teams": ["1197", "2659", "589"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["3677", "2919", "3408"]}, "coop": "0", "type": "Q_97", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "9", "foul": "3", "tele": "0"}, "teams": ["696", "3952", "2404"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "8", "final": "11", "foul": "3"}, "teams": ["4170", "1692", "4201"]}, "coop": "0", "type": "Q_98", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3925", "2429", "3851"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "5", "foul": "3"}, "teams": ["3934", "4046", "3521"]}, "coop": "0", "type": "Q_99", "eventKey": "2012CA", "red": {"score": {"bridge": "20", "hybrid": "5", "final": "30", "foul": "0", "tele": "5"}, "teams": ["980", "1836", "1515"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "12", "final": "17", "foul": "0"}, "teams": ["995", "383", "691"]}, "coop": "0", "type": "E_1", "eventKey": "2012CA", "red": {"score": {"bridge": "10", "hybrid": "24", "final": "67", "foul": "3", "tele": "30"}, "teams": ["987", "3512", "1717"]}}, {"blue": {"score": {"brige": "20", "tele": "3", "hybrid": "10", "final": "33", "foul": "0"}, "teams": ["3309", "599", "1138"]}, "coop": "0", "type": "E_2", "eventKey": "2012CA", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "30", "foul": "9", "tele": "5"}, "teams": ["4201", "696", "3120"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "12", "final": "15", "foul": "3"}, "teams": ["2576", "1515", "1644"]}, "coop": "0", "type": "E_3", "eventKey": "2012CA", "red": {"score": {"bridge": "20", "hybrid": "10", "final": "48", "foul": "6", "tele": "12"}, "teams": ["1197", "702", "589"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "16", "final": "31", "foul": "12"}, "teams": ["207", "330", "580"]}, "coop": "0", "type": "E_4", "eventKey": "2012CA", "red": {"score": {"bridge": "10", "hybrid": "29", "final": "54", "foul": "9", "tele": "6"}, "teams": ["294", "1836", "973"]}}, {"blue": {"score": {"brige": "20", "tele": "5", "hybrid": "18", "final": "49", "foul": "6"}, "teams": ["691", "995", "383"]}, "coop": "0", "type": "E_5", "eventKey": "2012CA", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "72", "foul": "3", "tele": "41"}, "teams": ["1717", "987", "3512"]}}, {"blue": {"score": {"brige": "20", "tele": "3", "hybrid": "10", "final": "36", "foul": "3"}, "teams": ["599", "1138", "3309"]}, "coop": "0", "type": "E_6", "eventKey": "2012CA", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "26", "foul": "3", "tele": "1"}, "teams": ["3120", "4201", "696"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "20", "final": "20", "foul": "0"}, "teams": ["2576", "1515", "1644"]}, "coop": "0", "type": "E_7", "eventKey": "2012CA", "red": {"score": {"bridge": "10", "hybrid": "10", "final": "41", "foul": "3", "tele": "18"}, "teams": ["589", "702", "1197"]}}, {"blue": {"score": {"brige": "10", "tele": "15", "hybrid": "11", "final": "42", "foul": "6"}, "teams": ["207", "330", "580"]}, "coop": "0", "type": "E_8", "eventKey": "2012CA", "red": {"score": {"bridge": "10", "hybrid": "29", "final": "45", "foul": "0", "tele": "6"}, "teams": ["294", "973", "1836"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "5", "final": "11", "foul": "3"}, "teams": ["1138", "3309", "599"]}, "coop": "0", "type": "E_13", "eventKey": "2012CA", "red": {"score": {"bridge": "20", "hybrid": "24", "final": "82", "foul": "3", "tele": "35"}, "teams": ["1717", "3512", "987"]}}, {"blue": {"score": {"brige": "10", "tele": "25", "hybrid": "16", "final": "51", "foul": "0"}, "teams": ["294", "1836", "973"]}, "coop": "0", "type": "E_14", "eventKey": "2012CA", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "30", "foul": "0", "tele": "10"}, "teams": ["1197", "702", "589"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "11", "final": "20", "foul": "3"}, "teams": ["1138", "599", "3309"]}, "coop": "0", "type": "E_15", "eventKey": "2012CA", "red": {"score": {"bridge": "10", "hybrid": "30", "final": "76", "foul": "9", "tele": "27"}, "teams": ["3512", "987", "1717"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "23", "final": "38", "foul": "3"}, "teams": ["973", "294", "1836"]}, "coop": "0", "type": "E_16", "eventKey": "2012CA", "red": {"score": {"bridge": "20", "hybrid": "10", "final": "43", "foul": "3", "tele": "10"}, "teams": ["589", "1197", "702"]}}, {"blue": {"score": {"brige": "10", "tele": "28", "hybrid": "11", "final": "49", "foul": "0"}, "teams": ["973", "1836", "294"]}, "coop": "0", "type": "E_18", "eventKey": "2012CA", "red": {"score": {"bridge": "10", "hybrid": "10", "final": "35", "foul": "0", "tele": "15"}, "teams": ["1197", "589", "702"]}}, {"blue": {"score": {"brige": "0", "tele": "15", "hybrid": "24", "final": "39", "foul": "0"}, "teams": ["1836", "294", "973"]}, "coop": "0", "type": "E_19", "eventKey": "2012CA", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "48", "foul": "9", "tele": "21"}, "teams": ["1717", "3512", "987"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "18", "final": "30", "foul": "0"}, "teams": ["1836", "973", "294"]}, "coop": "0", "type": "E_20", "eventKey": "2012CA", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "52", "foul": "0", "tele": "30"}, "teams": ["3512", "1717", "987"]}}, {"blue": {"score": {"brige": "20", "tele": "27", "hybrid": "24", "final": "71", "foul": "0"}, "teams": ["16", "25", "180"]}, "coop": "0", "type": "E_1", "eventKey": "2012CMP", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "34", "foul": "0", "tele": "22"}, "teams": ["2194", "118", "548"]}}, {"blue": {"score": {"brige": "20", "tele": "39", "hybrid": "24", "final": "83", "foul": "0"}, "teams": ["233", "207", "987"]}, "coop": "0", "type": "E_2", "eventKey": "2012CMP", "red": {"score": {"bridge": "0", "hybrid": "36", "final": "54", "foul": "0", "tele": "18"}, "teams": ["1114", "4334", "2056"]}}, {"blue": {"score": {"brige": "20", "tele": "51", "hybrid": "30", "final": "104", "foul": "3"}, "teams": ["180", "16", "25"]}, "coop": "0", "type": "E_3", "eventKey": "2012CMP", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "56", "foul": "3", "tele": "21"}, "teams": ["548", "2194", "118"]}}, {"blue": {"score": {"brige": "20", "tele": "31", "hybrid": "29", "final": "83", "foul": "3"}, "teams": ["233", "987", "207"]}, "coop": "0", "type": "E_4", "eventKey": "2012CMP", "red": {"score": {"bridge": "20", "hybrid": "24", "final": "61", "foul": "3", "tele": "14"}, "teams": ["2056", "1114", "4334"]}}, {"blue": {"score": {"brige": "0", "tele": "27", "hybrid": "18", "final": "45", "foul": "0"}, "teams": ["207", "233", "987"]}, "coop": "0", "type": "E_7", "eventKey": "2012CMP", "red": {"score": {"bridge": "20", "hybrid": "30", "final": "89", "foul": "6", "tele": "33"}, "teams": ["25", "180", "16"]}}, {"blue": {"score": {"brige": "20", "tele": "24", "hybrid": "18", "final": "65", "foul": "3"}, "teams": ["207", "233", "987"]}, "coop": "0", "type": "E_8", "eventKey": "2012CMP", "red": {"score": {"bridge": "20", "hybrid": "29", "final": "73", "foul": "0", "tele": "24"}, "teams": ["180", "25", "16"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4072", "159", "2945"]}, "coop": "0", "type": "Q_1", "eventKey": "2012CO", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "28", "foul": "0", "tele": "18"}, "teams": ["1332", "2341", "1157"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2240", "1348", "2275"]}, "coop": "0", "type": "Q_2", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "4", "final": "7", "foul": "3", "tele": "0"}, "teams": ["3510", "2352", "1764"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "16", "final": "29", "foul": "3"}, "teams": ["1789", "399", "1410"]}, "coop": "0", "type": "Q_3", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "0", "tele": "6"}, "teams": ["932", "4388", "1619"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["662", "1303", "4386"]}, "coop": "0", "type": "Q_4", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["1245", "1158", "1691"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "5", "foul": "3"}, "teams": ["1583", "1377", "4387"]}, "coop": "0", "type": "Q_5", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3200", "3729", "3648"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "3", "foul": "3"}, "teams": ["3403", "2259", "1361"]}, "coop": "0", "type": "Q_6", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "6", "foul": "0", "tele": "1"}, "teams": ["3172", "2083", "1977"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["1584", "3703", "443"]}, "coop": "0", "type": "Q_7", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["4293", "3807", "2261"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4068", "2036", "3643"]}, "coop": "0", "type": "Q_8", "eventKey": "2012CO", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "25", "foul": "3", "tele": "6"}, "teams": ["1339", "1799", "2996"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "6", "foul": "3"}, "teams": ["4072", "4387", "3510"]}, "coop": "0", "type": "Q_9", "eventKey": "2012CO", "red": {"score": {"bridge": "20", "hybrid": "11", "final": "48", "foul": "0", "tele": "17"}, "teams": ["399", "1619", "159"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["3172", "3200", "1691"]}, "coop": "2", "type": "Q_10", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["2945", "2083", "3729"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "4", "final": "17", "foul": "3"}, "teams": ["2240", "4293", "1245"]}, "coop": "0", "type": "Q_11", "eventKey": "2012CO", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "16", "foul": "0", "tele": "0"}, "teams": ["1158", "3648", "1348"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "5", "final": "11", "foul": "6"}, "teams": ["1339", "4388", "1303"]}, "coop": "0", "type": "Q_12", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["1789", "3643", "2275"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2261", "3703", "1361"]}, "coop": "0", "type": "Q_13", "eventKey": "2012CO", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "28", "foul": "6", "tele": "6"}, "teams": ["2996", "2341", "1410"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "6", "foul": "3"}, "teams": ["2259", "1799", "1764"]}, "coop": "0", "type": "Q_14", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "8", "final": "8", "foul": "0", "tele": "0"}, "teams": ["1377", "4386", "1584"]}}, {"blue": {"score": {"brige": "0", "tele": "13", "hybrid": "4", "final": "23", "foul": "6"}, "teams": ["1332", "1977", "4068"]}, "coop": "0", "type": "Q_15", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "4", "foul": "0", "tele": "4"}, "teams": ["443", "2352", "2036"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3403", "3807", "1583"]}, "coop": "2", "type": "Q_16", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "14", "foul": "3", "tele": "6"}, "teams": ["1157", "662", "932"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "12", "final": "12", "foul": "0"}, "teams": ["1789", "3172", "2240"]}, "coop": "0", "type": "Q_17", "eventKey": "2012CO", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "49", "foul": "12", "tele": "21"}, "teams": ["2261", "2996", "4072"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "20", "final": "33", "foul": "9"}, "teams": ["1410", "3200", "2259"]}, "coop": "0", "type": "Q_18", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "26", "foul": "9", "tele": "11"}, "teams": ["399", "1303", "1799"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["2352", "3703", "3729"]}, "coop": "0", "type": "Q_19", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "11", "foul": "0", "tele": "0"}, "teams": ["1584", "1619", "1245"]}}, {"blue": {"score": {"brige": "10", "tele": "1", "hybrid": "10", "final": "21", "foul": "0"}, "teams": ["2341", "4293", "662"]}, "coop": "2", "type": "Q_20", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "9", "foul": "0", "tele": "3"}, "teams": ["4387", "2945", "1764"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "5", "final": "11", "foul": "3"}, "teams": ["1361", "1583", "4388"]}, "coop": "2", "type": "Q_21", "eventKey": "2012CO", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "36", "foul": "6", "tele": "8"}, "teams": ["159", "1158", "2036"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "4", "foul": "0"}, "teams": ["2083", "1332", "3510"]}, "coop": "0", "type": "Q_22", "eventKey": "2012CO", "red": {"score": {"bridge": "10", "hybrid": "5", "final": "25", "foul": "6", "tele": "4"}, "teams": ["1339", "3643", "1157"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "9", "foul": "9"}, "teams": ["1377", "3648", "3807"]}, "coop": "0", "type": "Q_23", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "9", "foul": "9", "tele": "0"}, "teams": ["4386", "1977", "2275"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "15", "foul": "12"}, "teams": ["443", "4068", "932"]}, "coop": "0", "type": "Q_24", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "5", "foul": "3", "tele": "2"}, "teams": ["3403", "1348", "1691"]}}, {"blue": {"score": {"brige": "10", "tele": "4", "hybrid": "10", "final": "24", "foul": "0"}, "teams": ["1303", "2240", "2352"]}, "coop": "0", "type": "Q_25", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "22", "foul": "0", "tele": "10"}, "teams": ["1158", "1799", "3729"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "0", "final": "12", "foul": "0"}, "teams": ["2945", "1245", "4388"]}, "coop": "0", "type": "Q_26", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "9", "foul": "9", "tele": "0"}, "teams": ["2259", "4387", "2083"]}}, {"blue": {"score": {"brige": "10", "tele": "18", "hybrid": "12", "final": "52", "foul": "12"}, "teams": ["1764", "1619", "2996"]}, "coop": "1", "type": "Q_27", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "23", "foul": "0", "tele": "17"}, "teams": ["1977", "399", "1339"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "6", "final": "10", "foul": "3"}, "teams": ["1691", "1584", "2341"]}, "coop": "0", "type": "Q_28", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["3510", "1789", "1583"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "6", "foul": "0"}, "teams": ["4072", "1332", "2275"]}, "coop": "0", "type": "Q_29", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["4068", "3403", "4293"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "9", "final": "21", "foul": "0"}, "teams": ["662", "1361", "3200"]}, "coop": "0", "type": "Q_30", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "13", "foul": "12", "tele": "1"}, "teams": ["443", "2261", "4386"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "4", "foul": "0"}, "teams": ["2036", "3648", "1157"]}, "coop": "0", "type": "Q_31", "eventKey": "2012CO", "red": {"score": {"bridge": "10", "hybrid": "5", "final": "16", "foul": "0", "tele": "1"}, "teams": ["3703", "1410", "1348"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "7", "foul": "3"}, "teams": ["932", "3807", "3643"]}, "coop": "0", "type": "Q_32", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "7", "foul": "0", "tele": "7"}, "teams": ["3172", "159", "1377"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "0", "final": "1", "foul": "0"}, "teams": ["1583", "4068", "1339"]}, "coop": "0", "type": "Q_33", "eventKey": "2012CO", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "16", "foul": "0", "tele": "6"}, "teams": ["2341", "2240", "2945"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "3", "foul": "3"}, "teams": ["2083", "3200", "4386"]}, "coop": "0", "type": "Q_34", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "23", "foul": "6", "tele": "6"}, "teams": ["1361", "1584", "1332"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "6", "final": "15", "foul": "0"}, "teams": ["399", "3703", "3648"]}, "coop": "0", "type": "Q_35", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "14", "foul": "0", "tele": "4"}, "teams": ["1691", "4388", "662"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["1245", "2275", "2261"]}, "coop": "0", "type": "Q_36", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["1619", "1799", "1157"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "6", "final": "16", "foul": "0"}, "teams": ["1303", "2996", "2036"]}, "coop": "0", "type": "Q_37", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "3", "tele": "3"}, "teams": ["932", "4387", "4293"]}}, {"blue": {"score": {"brige": "0", "tele": "7", "hybrid": "6", "final": "13", "foul": "0"}, "teams": ["3403", "3172", "3510"]}, "coop": "0", "type": "Q_38", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "16", "foul": "0", "tele": "6"}, "teams": ["2352", "1410", "1377"]}}, {"blue": {"score": {"brige": "10", "tele": "16", "hybrid": "18", "final": "44", "foul": "0"}, "teams": ["1158", "3643", "1764"]}, "coop": "0", "type": "Q_39", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "0", "tele": "6"}, "teams": ["443", "4072", "3807"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "7", "foul": "3"}, "teams": ["159", "1348", "3729"]}, "coop": "2", "type": "Q_40", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "8", "foul": "0", "tele": "2"}, "teams": ["2259", "1977", "1789"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "0", "final": "19", "foul": "3"}, "teams": ["2341", "1799", "4386"]}, "coop": "0", "type": "Q_41", "eventKey": "2012CO", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "57", "foul": "6", "tele": "19"}, "teams": ["2996", "1583", "399"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "4", "foul": "0"}, "teams": ["932", "1377", "1339"]}, "coop": "0", "type": "Q_42", "eventKey": "2012CO", "red": {"score": {"bridge": "10", "hybrid": "10", "final": "26", "foul": "0", "tele": "6"}, "teams": ["2352", "4068", "662"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "6", "final": "22", "foul": "0"}, "teams": ["1764", "2036", "4072"]}, "coop": "0", "type": "Q_43", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "9", "foul": "3", "tele": "0"}, "teams": ["2083", "1691", "2261"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2945", "1619", "1348"]}, "coop": "0", "type": "Q_44", "eventKey": "2012CO", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "26", "foul": "0", "tele": "6"}, "teams": ["1303", "3643", "1977"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "10", "final": "10", "foul": "0"}, "teams": ["1245", "443", "159"]}, "coop": "2", "type": "Q_45", "eventKey": "2012CO", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "14", "foul": "3", "tele": "1"}, "teams": ["3729", "1584", "3403"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "5", "final": "9", "foul": "3"}, "teams": ["4293", "3510", "4388"]}, "coop": "0", "type": "Q_46", "eventKey": "2012CO", "red": {"score": {"bridge": "10", "hybrid": "10", "final": "25", "foul": "3", "tele": "2"}, "teams": ["3172", "1361", "3807"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "3", "foul": "0"}, "teams": ["1789", "3703", "1157"]}, "coop": "0", "type": "Q_47", "eventKey": "2012CO", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "13", "foul": "0", "tele": "3"}, "teams": ["3200", "4387", "2240"]}}, {"blue": {"score": {"brige": "0", "tele": "20", "hybrid": "12", "final": "38", "foul": "6"}, "teams": ["2259", "1332", "1158"]}, "coop": "2", "type": "Q_48", "eventKey": "2012CO", "red": {"score": {"bridge": "10", "hybrid": "10", "final": "29", "foul": "9", "tele": "0"}, "teams": ["3648", "1410", "2275"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "5", "final": "5", "foul": "0"}, "teams": ["2083", "1303", "443"]}, "coop": "0", "type": "Q_49", "eventKey": "2012CO", "red": {"score": {"bridge": "10", "hybrid": "11", "final": "38", "foul": "9", "tele": "8"}, "teams": ["1583", "159", "2341"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "6", "final": "18", "foul": "0"}, "teams": ["4072", "1377", "662"]}, "coop": "2", "type": "Q_50", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "23", "final": "36", "foul": "0", "tele": "13"}, "teams": ["1245", "2996", "1361"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "12", "final": "31", "foul": "6"}, "teams": ["4386", "932", "1764"]}, "coop": "0", "type": "Q_51", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3200", "3703", "3510"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "10", "final": "12", "foul": "0"}, "teams": ["1410", "1977", "3403"]}, "coop": "0", "type": "Q_52", "eventKey": "2012CO", "red": {"score": {"bridge": "20", "hybrid": "10", "final": "34", "foul": "0", "tele": "4"}, "teams": ["4388", "2240", "1158"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["1799", "4293", "1348"]}, "coop": "0", "type": "Q_53", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "8", "foul": "0", "tele": "8"}, "teams": ["1691", "1619", "1332"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "0", "final": "19", "foul": "6"}, "teams": ["3729", "1157", "3807"]}, "coop": "2", "type": "Q_54", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "0", "tele": "6"}, "teams": ["1339", "2259", "2036"]}}, {"blue": {"score": {"brige": "20", "tele": "6", "hybrid": "0", "final": "32", "foul": "6"}, "teams": ["3643", "2945", "2352"]}, "coop": "0", "type": "Q_55", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "1", "foul": "0", "tele": "1"}, "teams": ["2261", "1789", "3648"]}}, {"blue": {"score": {"brige": "20", "tele": "21", "hybrid": "6", "final": "53", "foul": "6"}, "teams": ["399", "4387", "3172"]}, "coop": "0", "type": "Q_56", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "9", "foul": "9", "tele": "0"}, "teams": ["4068", "2275", "1584"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "15", "final": "28", "foul": "0"}, "teams": ["3200", "4388", "1977"]}, "coop": "0", "type": "Q_57", "eventKey": "2012CO", "red": {"score": {"bridge": "10", "hybrid": "5", "final": "18", "foul": "0", "tele": "3"}, "teams": ["1245", "2341", "4072"]}}, {"blue": {"score": {"brige": "10", "tele": "4", "hybrid": "10", "final": "27", "foul": "3"}, "teams": ["159", "4386", "1410"]}, "coop": "0", "type": "Q_58", "eventKey": "2012CO", "red": {"score": {"bridge": "10", "hybrid": "10", "final": "23", "foul": "0", "tele": "3"}, "teams": ["1339", "4293", "1764"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "0", "final": "5", "foul": "0"}, "teams": ["2083", "1789", "1799"]}, "coop": "0", "type": "Q_59", "eventKey": "2012CO", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "34", "foul": "0", "tele": "12"}, "teams": ["3703", "662", "1158"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4068", "3648", "1303"]}, "coop": "0", "type": "Q_60", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["1584", "3510", "3807"]}}, {"blue": {"score": {"brige": "0", "tele": "20", "hybrid": "0", "final": "20", "foul": "0"}, "teams": ["399", "3729", "1691"]}, "coop": "2", "type": "Q_61", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "3", "tele": "0"}, "teams": ["2240", "3643", "1361"]}}, {"blue": {"score": {"brige": "0", "tele": "7", "hybrid": "6", "final": "13", "foul": "0"}, "teams": ["2996", "3172", "2352"]}, "coop": "2", "type": "Q_62", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "11", "foul": "0", "tele": "6"}, "teams": ["1348", "1157", "1583"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["2036", "2275", "932"]}, "coop": "0", "type": "Q_63", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "20", "foul": "18", "tele": "2"}, "teams": ["2259", "2945", "443"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2261", "1619", "4387"]}, "coop": "0", "type": "Q_64", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "22", "foul": "3", "tele": "9"}, "teams": ["1332", "1377", "3403"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "22", "foul": "12"}, "teams": ["1245", "1789", "3200"]}, "coop": "0", "type": "Q_65", "eventKey": "2012CO", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "10", "foul": "0", "tele": "0"}, "teams": ["3510", "4068", "1410"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "5", "final": "12", "foul": "3"}, "teams": ["2352", "1977", "1157"]}, "coop": "2", "type": "Q_66", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "21", "foul": "0", "tele": "15"}, "teams": ["399", "4293", "4386"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "4", "foul": "0"}, "teams": ["1584", "159", "3643"]}, "coop": "0", "type": "Q_67", "eventKey": "2012CO", "red": {"score": {"bridge": "10", "hybrid": "5", "final": "19", "foul": "0", "tele": "4"}, "teams": ["2240", "2036", "662"]}}, {"blue": {"score": {"brige": "0", "tele": "7", "hybrid": "0", "final": "7", "foul": "0"}, "teams": ["3403", "1619", "3648"]}, "coop": "0", "type": "Q_68", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "4", "final": "10", "foul": "0", "tele": "6"}, "teams": ["443", "2341", "3172"]}}, {"blue": {"score": {"brige": "20", "tele": "3", "hybrid": "22", "final": "45", "foul": "0"}, "teams": ["4388", "2996", "3729"]}, "coop": "2", "type": "Q_69", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "24", "foul": "3", "tele": "9"}, "teams": ["1764", "1332", "1303"]}}, {"blue": {"score": {"brige": "10", "tele": "8", "hybrid": "12", "final": "33", "foul": "3"}, "teams": ["2261", "1158", "1339"]}, "coop": "0", "type": "Q_70", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "9", "foul": "9", "tele": "0"}, "teams": ["932", "1691", "2259"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "9", "foul": "9"}, "teams": ["1377", "2945", "2275"]}, "coop": "0", "type": "Q_71", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "4", "final": "4", "foul": "0", "tele": "0"}, "teams": ["4072", "1583", "3703"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["3807", "4387", "1799"]}, "coop": "0", "type": "Q_72", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "7", "foul": "0", "tele": "2"}, "teams": ["2083", "1361", "1348"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "5", "final": "8", "foul": "3"}, "teams": ["2240", "443", "1619"]}, "coop": "0", "type": "Q_73", "eventKey": "2012CO", "red": {"score": {"bridge": "10", "hybrid": "10", "final": "22", "foul": "0", "tele": "2"}, "teams": ["2036", "4386", "4388"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "0", "final": "17", "foul": "9"}, "teams": ["2261", "1157", "4068"]}, "coop": "2", "type": "Q_74", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "4", "final": "4", "foul": "0", "tele": "0"}, "teams": ["3729", "3510", "1303"]}}, {"blue": {"score": {"brige": "10", "tele": "10", "hybrid": "10", "final": "30", "foul": "0"}, "teams": ["1158", "3403", "2275"]}, "coop": "0", "type": "Q_75", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "24", "foul": "3", "tele": "9"}, "teams": ["1584", "3200", "2996"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "10", "final": "20", "foul": "0"}, "teams": ["2945", "1410", "1691"]}, "coop": "0", "type": "Q_76", "eventKey": "2012CO", "red": {"score": {"bridge": "10", "hybrid": "4", "final": "16", "foul": "0", "tele": "2"}, "teams": ["2352", "3807", "2083"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "5", "foul": "3"}, "teams": ["3643", "1799", "3703"]}, "coop": "2", "type": "Q_77", "eventKey": "2012CO", "red": {"score": {"bridge": "20", "hybrid": "11", "final": "48", "foul": "9", "tele": "8"}, "teams": ["1977", "4387", "159"]}}, {"blue": {"score": {"brige": "10", "tele": "9", "hybrid": "5", "final": "24", "foul": "0"}, "teams": ["2341", "1789", "1348"]}, "coop": "0", "type": "Q_78", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "14", "foul": "0", "tele": "8"}, "teams": ["1377", "2259", "4293"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "5", "final": "17", "foul": "0"}, "teams": ["1339", "4072", "1361"]}, "coop": "0", "type": "Q_79", "eventKey": "2012CO", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "18", "foul": "0", "tele": "2"}, "teams": ["932", "3648", "1583"]}}, {"blue": {"score": {"brige": "10", "tele": "20", "hybrid": "6", "final": "36", "foul": "0"}, "teams": ["399", "662", "1764"]}, "coop": "0", "type": "Q_80", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "23", "foul": "3", "tele": "8"}, "teams": ["3172", "1332", "1245"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "17", "final": "17", "foul": "0"}, "teams": ["2996", "1691", "3807"]}, "coop": "2", "type": "Q_81", "eventKey": "2012CO", "red": {"score": {"bridge": "10", "hybrid": "10", "final": "27", "foul": "0", "tele": "7"}, "teams": ["2352", "3200", "159"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "3", "foul": "0"}, "teams": ["443", "4293", "1157"]}, "coop": "0", "type": "Q_82", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "14", "foul": "0", "tele": "4"}, "teams": ["1377", "4388", "1799"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "5", "final": "15", "foul": "0"}, "teams": ["2341", "2275", "2083"]}, "coop": "0", "type": "Q_83", "eventKey": "2012CO", "red": {"score": {"bridge": "10", "hybrid": "11", "final": "22", "foul": "0", "tele": "1"}, "teams": ["2240", "932", "3729"]}}, {"blue": {"score": {"brige": "0", "tele": "11", "hybrid": "12", "final": "29", "foul": "6"}, "teams": ["1158", "3510", "399"]}, "coop": "2", "type": "Q_84", "eventKey": "2012CO", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "19", "foul": "0", "tele": "9"}, "teams": ["3403", "2945", "2036"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "4", "final": "14", "foul": "0"}, "teams": ["1977", "1348", "1584"]}, "coop": "2", "type": "Q_85", "eventKey": "2012CO", "red": {"score": {"bridge": "10", "hybrid": "9", "final": "19", "foul": "0", "tele": "0"}, "teams": ["1410", "662", "2261"]}}, {"blue": {"score": {"brige": "10", "tele": "15", "hybrid": "6", "final": "31", "foul": "0"}, "teams": ["3643", "1332", "1583"]}, "coop": "0", "type": "Q_86", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["2259", "3703", "1245"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "4", "final": "4", "foul": "0"}, "teams": ["1361", "1764", "3648"]}, "coop": "0", "type": "Q_87", "eventKey": "2012CO", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "11", "foul": "0", "tele": "1"}, "teams": ["1789", "4068", "1619"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["4387", "1339", "4386"]}, "coop": "0", "type": "Q_88", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "6", "foul": "0", "tele": "0"}, "teams": ["1303", "3172", "4072"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "10", "final": "13", "foul": "0"}, "teams": ["4388", "2945", "2036"]}, "coop": "0", "type": "E_1", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "21", "foul": "0", "tele": "9"}, "teams": ["399", "2996", "3807"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "10", "final": "20", "foul": "6"}, "teams": ["1977", "1361", "1332"]}, "coop": "0", "type": "E_2", "eventKey": "2012CO", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "56", "foul": "6", "tele": "12"}, "teams": ["662", "3172", "1764"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "5", "final": "14", "foul": "0"}, "teams": ["4386", "2341", "2352"]}, "coop": "0", "type": "E_3", "eventKey": "2012CO", "red": {"score": {"bridge": "40", "hybrid": "8", "final": "52", "foul": "0", "tele": "4"}, "teams": ["2240", "1157", "3729"]}}, {"blue": {"score": {"brige": "20", "tele": "3", "hybrid": "0", "final": "23", "foul": "0"}, "teams": ["1619", "3200", "1410"]}, "coop": "0", "type": "E_4", "eventKey": "2012CO", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "30", "foul": "6", "tele": "8"}, "teams": ["159", "1245", "1158"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "10", "final": "13", "foul": "0"}, "teams": ["4388", "2945", "2036"]}, "coop": "0", "type": "E_5", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "45", "foul": "6", "tele": "21"}, "teams": ["3807", "399", "2996"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "21", "final": "32", "foul": "3"}, "teams": ["1361", "1977", "1332"]}, "coop": "0", "type": "E_6", "eventKey": "2012CO", "red": {"score": {"bridge": "10", "hybrid": "17", "final": "37", "foul": "0", "tele": "10"}, "teams": ["1764", "662", "3172"]}}, {"blue": {"score": {"brige": "0", "tele": "14", "hybrid": "0", "final": "17", "foul": "3"}, "teams": ["4386", "2341", "2352"]}, "coop": "0", "type": "E_7", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "21", "foul": "6", "tele": "5"}, "teams": ["2240", "3729", "1157"]}}, {"blue": {"score": {"brige": "0", "tele": "7", "hybrid": "5", "final": "12", "foul": "0"}, "teams": ["1619", "1410", "3200"]}, "coop": "0", "type": "E_8", "eventKey": "2012CO", "red": {"score": {"bridge": "10", "hybrid": "16", "final": "33", "foul": "3", "tele": "4"}, "teams": ["1245", "1158", "159"]}}, {"blue": {"score": {"brige": "10", "tele": "8", "hybrid": "6", "final": "24", "foul": "0"}, "teams": ["3172", "662", "1764"]}, "coop": "0", "type": "E_13", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "33", "foul": "0", "tele": "15"}, "teams": ["2996", "3807", "399"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "12", "final": "28", "foul": "0"}, "teams": ["1245", "1158", "159"]}, "coop": "0", "type": "E_14", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "5", "foul": "0", "tele": "0"}, "teams": ["2240", "3729", "1157"]}}, {"blue": {"score": {"brige": "0", "tele": "7", "hybrid": "5", "final": "21", "foul": "9"}, "teams": ["662", "3172", "1764"]}, "coop": "0", "type": "E_15", "eventKey": "2012CO", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "37", "foul": "0", "tele": "15"}, "teams": ["3807", "399", "2996"]}}, {"blue": {"score": {"brige": "10", "tele": "8", "hybrid": "16", "final": "34", "foul": "0"}, "teams": ["159", "1158", "1245"]}, "coop": "0", "type": "E_16", "eventKey": "2012CO", "red": {"score": {"bridge": "40", "hybrid": "10", "final": "50", "foul": "0", "tele": "0"}, "teams": ["3729", "2240", "1157"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "16", "final": "32", "foul": "0"}, "teams": ["1158", "1245", "159"]}, "coop": "0", "type": "E_18", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "13", "foul": "3", "tele": "10"}, "teams": ["1157", "2240", "3729"]}}, {"blue": {"score": {"brige": "20", "tele": "6", "hybrid": "17", "final": "43", "foul": "0"}, "teams": ["1245", "159", "1158"]}, "coop": "0", "type": "E_19", "eventKey": "2012CO", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "44", "foul": "3", "tele": "3"}, "teams": ["3807", "399", "2996"]}}, {"blue": {"score": {"brige": "20", "tele": "13", "hybrid": "27", "final": "72", "foul": "12"}, "teams": ["1158", "1245", "159"]}, "coop": "0", "type": "E_20", "eventKey": "2012CO", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "52", "foul": "3", "tele": "27"}, "teams": ["3807", "399", "2996"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "12", "final": "14", "foul": "0"}, "teams": ["1245", "1158", "159"]}, "coop": "0", "type": "E_21", "eventKey": "2012CO", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "35", "foul": "3", "tele": "21"}, "teams": ["3807", "399", "2996"]}}, {"blue": {"score": {"brige": "10", "tele": "9", "hybrid": "12", "final": "31", "foul": "0"}, "teams": ["999", "3464", "126"]}, "coop": "0", "type": "Q_1", "eventKey": "2012CT", "red": {"score": {"bridge": "10", "hybrid": "15", "final": "37", "foul": "0", "tele": "12"}, "teams": ["1073", "549", "1991"]}}, {"blue": {"score": {"brige": "10", "tele": "4", "hybrid": "6", "final": "20", "foul": "0"}, "teams": ["1665", "175", "173"]}, "coop": "2", "type": "Q_2", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "21", "foul": "3", "tele": "12"}, "teams": ["1027", "3467", "571"]}}, {"blue": {"score": {"brige": "20", "tele": "15", "hybrid": "0", "final": "35", "foul": "0"}, "teams": ["2791", "3555", "1699"]}, "coop": "0", "type": "Q_3", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "13", "foul": "9", "tele": "4"}, "teams": ["1922", "3146", "3017"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "4", "foul": "0"}, "teams": ["4055", "1784", "4122"]}, "coop": "2", "type": "Q_4", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "20", "foul": "3", "tele": "5"}, "teams": ["237", "1740", "181"]}}, {"blue": {"score": {"brige": "0", "tele": "15", "hybrid": "6", "final": "24", "foul": "3"}, "teams": ["3634", "195", "2836"]}, "coop": "0", "type": "Q_5", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "6", "tele": "0"}, "teams": ["1880", "3719", "3654"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["3461", "869", "2785"]}, "coop": "2", "type": "Q_6", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "18", "foul": "3", "tele": "3"}, "teams": ["229", "176", "3718"]}}, {"blue": {"score": {"brige": "0", "tele": "16", "hybrid": "16", "final": "32", "foul": "0"}, "teams": ["694", "2168", "236"]}, "coop": "0", "type": "Q_7", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "12", "foul": "0", "tele": "6"}, "teams": ["3525", "4134", "663"]}}, {"blue": {"score": {"brige": "20", "tele": "18", "hybrid": "36", "final": "80", "foul": "6"}, "teams": ["177", "118", "3182"]}, "coop": "2", "type": "Q_8", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "13", "foul": "0", "tele": "2"}, "teams": ["1559", "2067", "155"]}}, {"blue": {"score": {"brige": "20", "tele": "17", "hybrid": "12", "final": "52", "foul": "3"}, "teams": ["558", "95", "839"]}, "coop": "0", "type": "Q_9", "eventKey": "2012CT", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "38", "foul": "0", "tele": "16"}, "teams": ["1099", "1493", "228"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "12", "final": "23", "foul": "3"}, "teams": ["1071", "743", "1124"]}, "coop": "0", "type": "Q_10", "eventKey": "2012CT", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "19", "foul": "0", "tele": "3"}, "teams": ["178", "20", "230"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "12", "final": "16", "foul": "0"}, "teams": ["3104", "2170", "1740"]}, "coop": "0", "type": "Q_11", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "21", "final": "28", "foul": "3", "tele": "4"}, "teams": ["1511", "250", "3017"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "5", "final": "21", "foul": "0"}, "teams": ["2836", "1991", "1922"]}, "coop": "2", "type": "Q_12", "eventKey": "2012CT", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "27", "foul": "0", "tele": "7"}, "teams": ["1027", "3146", "694"]}}, {"blue": {"score": {"brige": "0", "tele": "17", "hybrid": "4", "final": "27", "foul": "6"}, "teams": ["1073", "2791", "3467"]}, "coop": "2", "type": "Q_13", "eventKey": "2012CT", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "10", "foul": "0", "tele": "0"}, "teams": ["4055", "3718", "2785"]}}, {"blue": {"score": {"brige": "20", "tele": "20", "hybrid": "18", "final": "61", "foul": "3"}, "teams": ["173", "839", "177"]}, "coop": "2", "type": "Q_14", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "12", "foul": "0", "tele": "12"}, "teams": ["1699", "1784", "3654"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "5", "final": "18", "foul": "0"}, "teams": ["155", "3525", "1665"]}, "coop": "0", "type": "Q_15", "eventKey": "2012CT", "red": {"score": {"bridge": "20", "hybrid": "5", "final": "40", "foul": "3", "tele": "12"}, "teams": ["1099", "1124", "869"]}}, {"blue": {"score": {"brige": "0", "tele": "7", "hybrid": "6", "final": "13", "foul": "0"}, "teams": ["126", "4122", "3104"]}, "coop": "2", "type": "Q_16", "eventKey": "2012CT", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "40", "foul": "0", "tele": "8"}, "teams": ["118", "175", "178"]}}, {"blue": {"score": {"brige": "0", "tele": "18", "hybrid": "12", "final": "30", "foul": "0"}, "teams": ["1493", "3182", "230"]}, "coop": "0", "type": "Q_17", "eventKey": "2012CT", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "32", "foul": "0", "tele": "12"}, "teams": ["20", "1511", "3461"]}}, {"blue": {"score": {"brige": "10", "tele": "12", "hybrid": "6", "final": "31", "foul": "3"}, "teams": ["2067", "571", "663"]}, "coop": "2", "type": "Q_18", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "19", "foul": "0", "tele": "1"}, "teams": ["181", "3464", "3555"]}}, {"blue": {"score": {"brige": "10", "tele": "16", "hybrid": "5", "final": "31", "foul": "0"}, "teams": ["195", "176", "549"]}, "coop": "2", "type": "Q_19", "eventKey": "2012CT", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "37", "foul": "0", "tele": "9"}, "teams": ["236", "95", "2170"]}}, {"blue": {"score": {"brige": "10", "tele": "15", "hybrid": "10", "final": "35", "foul": "0"}, "teams": ["999", "1071", "229"]}, "coop": "0", "type": "Q_20", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "17", "foul": "0", "tele": "17"}, "teams": ["1880", "228", "3634"]}}, {"blue": {"score": {"brige": "20", "tele": "7", "hybrid": "16", "final": "43", "foul": "0"}, "teams": ["237", "3719", "743"]}, "coop": "0", "type": "Q_21", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "24", "foul": "0", "tele": "12"}, "teams": ["1559", "4134", "558"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "6", "final": "30", "foul": "18"}, "teams": ["250", "1665", "2836"]}, "coop": "0", "type": "Q_22", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "21", "final": "45", "foul": "0", "tele": "24"}, "teams": ["2168", "1073", "1493"]}}, {"blue": {"score": {"brige": "10", "tele": "18", "hybrid": "15", "final": "43", "foul": "0"}, "teams": ["3182", "126", "1922"]}, "coop": "2", "type": "Q_23", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "6", "foul": "0", "tele": "0"}, "teams": ["3104", "3525", "4055"]}}, {"blue": {"score": {"brige": "0", "tele": "30", "hybrid": "4", "final": "37", "foul": "3"}, "teams": ["3464", "195", "1511"]}, "coop": "2", "type": "Q_24", "eventKey": "2012CT", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "47", "foul": "0", "tele": "15"}, "teams": ["177", "175", "3146"]}}, {"blue": {"score": {"brige": "20", "tele": "8", "hybrid": "16", "final": "65", "foul": "21"}, "teams": ["694", "1699", "176"]}, "coop": "2", "type": "Q_25", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "14", "foul": "0", "tele": "2"}, "teams": ["999", "3718", "181"]}}, {"blue": {"score": {"brige": "0", "tele": "14", "hybrid": "5", "final": "22", "foul": "3"}, "teams": ["571", "20", "229"]}, "coop": "0", "type": "Q_26", "eventKey": "2012CT", "red": {"score": {"bridge": "20", "hybrid": "13", "final": "57", "foul": "3", "tele": "21"}, "teams": ["2791", "839", "3719"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "5", "final": "8", "foul": "0"}, "teams": ["173", "155", "2170"]}, "coop": "2", "type": "Q_27", "eventKey": "2012CT", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "31", "foul": "3", "tele": "6"}, "teams": ["663", "228", "236"]}}, {"blue": {"score": {"brige": "0", "tele": "14", "hybrid": "0", "final": "14", "foul": "0"}, "teams": ["1740", "1124", "2785"]}, "coop": "0", "type": "Q_28", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "19", "foul": "0", "tele": "13"}, "teams": ["3634", "118", "4134"]}}, {"blue": {"score": {"brige": "10", "tele": "12", "hybrid": "16", "final": "38", "foul": "0"}, "teams": ["2168", "237", "549"]}, "coop": "2", "type": "Q_29", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["1027", "743", "178"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "17", "final": "19", "foul": "0"}, "teams": ["1099", "1559", "3654"]}, "coop": "0", "type": "Q_30", "eventKey": "2012CT", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "34", "foul": "0", "tele": "6"}, "teams": ["1880", "3467", "3017"]}}, {"blue": {"score": {"brige": "10", "tele": "14", "hybrid": "17", "final": "41", "foul": "0"}, "teams": ["1991", "2067", "95"]}, "coop": "2", "type": "Q_31", "eventKey": "2012CT", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "46", "foul": "9", "tele": "9"}, "teams": ["230", "558", "1784"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "6", "final": "9", "foul": "0"}, "teams": ["3555", "3461", "250"]}, "coop": "2", "type": "Q_32", "eventKey": "2012CT", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "24", "foul": "3", "tele": "5"}, "teams": ["869", "1071", "4122"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "0", "final": "16", "foul": "0"}, "teams": ["571", "1740", "228"]}, "coop": "0", "type": "Q_33", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "24", "foul": "6", "tele": "6"}, "teams": ["2836", "1699", "1124"]}}, {"blue": {"score": {"brige": "0", "tele": "19", "hybrid": "17", "final": "39", "foul": "3"}, "teams": ["195", "1922", "999"]}, "coop": "2", "type": "Q_34", "eventKey": "2012CT", "red": {"score": {"bridge": "20", "hybrid": "22", "final": "77", "foul": "3", "tele": "32"}, "teams": ["2168", "118", "1665"]}}, {"blue": {"score": {"brige": "0", "tele": "7", "hybrid": "12", "final": "22", "foul": "3"}, "teams": ["3104", "236", "3146"]}, "coop": "0", "type": "Q_35", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "6", "foul": "0", "tele": "0"}, "teams": ["3654", "743", "3467"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "23", "final": "45", "foul": "9"}, "teams": ["2170", "181", "3525"]}, "coop": "0", "type": "Q_36", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "24", "foul": "3", "tele": "9"}, "teams": ["177", "229", "95"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "24", "final": "27", "foul": "0"}, "teams": ["176", "3017", "230"]}, "coop": "2", "type": "Q_37", "eventKey": "2012CT", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "31", "foul": "0", "tele": "9"}, "teams": ["126", "237", "173"]}}, {"blue": {"score": {"brige": "0", "tele": "7", "hybrid": "5", "final": "21", "foul": "9"}, "teams": ["1511", "3719", "1027"]}, "coop": "0", "type": "Q_38", "eventKey": "2012CT", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "27", "foul": "3", "tele": "8"}, "teams": ["155", "1071", "1073"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["1784", "1880", "4134"]}, "coop": "0", "type": "Q_39", "eventKey": "2012CT", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "28", "foul": "6", "tele": "6"}, "teams": ["250", "3718", "3182"]}}, {"blue": {"score": {"brige": "20", "tele": "7", "hybrid": "6", "final": "36", "foul": "3"}, "teams": ["869", "839", "4055"]}, "coop": "2", "type": "Q_40", "eventKey": "2012CT", "red": {"score": {"bridge": "20", "hybrid": "5", "final": "28", "foul": "0", "tele": "3"}, "teams": ["549", "663", "175"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "12", "final": "25", "foul": "0"}, "teams": ["3634", "694", "558"]}, "coop": "2", "type": "Q_41", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "6", "foul": "0", "tele": "0"}, "teams": ["2791", "3461", "178"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "15", "final": "27", "foul": "0"}, "teams": ["20", "1991", "1099"]}, "coop": "0", "type": "Q_42", "eventKey": "2012CT", "red": {"score": {"bridge": "10", "hybrid": "4", "final": "24", "foul": "0", "tele": "10"}, "teams": ["2785", "2067", "3555"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "23", "final": "36", "foul": "0"}, "teams": ["1493", "3464", "3525"]}, "coop": "0", "type": "Q_43", "eventKey": "2012CT", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "25", "foul": "0", "tele": "3"}, "teams": ["4122", "1559", "173"]}}, {"blue": {"score": {"brige": "10", "tele": "14", "hybrid": "12", "final": "45", "foul": "9"}, "teams": ["1124", "237", "3182"]}, "coop": "0", "type": "Q_44", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "8", "foul": "0", "tele": "2"}, "teams": ["999", "3654", "2170"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "24", "final": "40", "foul": "0"}, "teams": ["230", "177", "250"]}, "coop": "2", "type": "Q_45", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "18", "foul": "0", "tele": "12"}, "teams": ["229", "4055", "2836"]}}, {"blue": {"score": {"brige": "0", "tele": "15", "hybrid": "12", "final": "45", "foul": "18"}, "teams": ["3718", "1511", "2168"]}, "coop": "2", "type": "Q_46", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "43", "foul": "6", "tele": "27"}, "teams": ["571", "95", "118"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "0", "final": "6", "foul": "0"}, "teams": ["3555", "839", "3146"]}, "coop": "0", "type": "Q_47", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "24", "foul": "3", "tele": "10"}, "teams": ["1740", "155", "126"]}}, {"blue": {"score": {"brige": "20", "tele": "3", "hybrid": "5", "final": "31", "foul": "3"}, "teams": ["1922", "1073", "1099"]}, "coop": "2", "type": "Q_48", "eventKey": "2012CT", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "31", "foul": "0", "tele": "9"}, "teams": ["195", "869", "4134"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "0", "final": "8", "foul": "0"}, "teams": ["2791", "1784", "743"]}, "coop": "0", "type": "Q_49", "eventKey": "2012CT", "red": {"score": {"bridge": "10", "hybrid": "24", "final": "52", "foul": "0", "tele": "18"}, "teams": ["1493", "1071", "175"]}}, {"blue": {"score": {"brige": "0", "tele": "13", "hybrid": "12", "final": "25", "foul": "0"}, "teams": ["228", "1559", "3461"]}, "coop": "2", "type": "Q_50", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "16", "final": "16", "foul": "0", "tele": "0"}, "teams": ["178", "1665", "1991"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "0", "final": "5", "foul": "0"}, "teams": ["20", "3634", "3464"]}, "coop": "2", "type": "Q_51", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "12", "foul": "0", "tele": "6"}, "teams": ["3467", "3104", "176"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "0", "final": "12", "foul": "0"}, "teams": ["181", "236", "2785"]}, "coop": "2", "type": "Q_52", "eventKey": "2012CT", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "40", "foul": "3", "tele": "9"}, "teams": ["558", "1027", "3017"]}}, {"blue": {"score": {"brige": "10", "tele": "10", "hybrid": "0", "final": "29", "foul": "9"}, "teams": ["1880", "663", "1699"]}, "coop": "0", "type": "Q_53", "eventKey": "2012CT", "red": {"score": {"bridge": "10", "hybrid": "16", "final": "37", "foul": "0", "tele": "11"}, "teams": ["2067", "549", "4122"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "6", "final": "12", "foul": "0"}, "teams": ["3719", "1493", "95"]}, "coop": "2", "type": "Q_54", "eventKey": "2012CT", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "15", "foul": "0", "tele": "5"}, "teams": ["694", "1124", "3555"]}}, {"blue": {"score": {"brige": "20", "tele": "0", "hybrid": "12", "final": "41", "foul": "9"}, "teams": ["3146", "4055", "230"]}, "coop": "0", "type": "Q_55", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "10", "foul": "0", "tele": "5"}, "teams": ["999", "1559", "571"]}}, {"blue": {"score": {"brige": "0", "tele": "33", "hybrid": "12", "final": "51", "foul": "6"}, "teams": ["126", "118", "228"]}, "coop": "2", "type": "Q_56", "eventKey": "2012CT", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "34", "foul": "0", "tele": "8"}, "teams": ["250", "2791", "3464"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "6", "final": "19", "foul": "0"}, "teams": ["1665", "839", "4134"]}, "coop": "0", "type": "Q_57", "eventKey": "2012CT", "red": {"score": {"bridge": "10", "hybrid": "16", "final": "26", "foul": "0", "tele": "0"}, "teams": ["3104", "1991", "173"]}}, {"blue": {"score": {"brige": "20", "tele": "17", "hybrid": "12", "final": "49", "foul": "0"}, "teams": ["4122", "1073", "177"]}, "coop": "2", "type": "Q_58", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["3634", "743", "1099"]}}, {"blue": {"score": {"brige": "10", "tele": "21", "hybrid": "12", "final": "43", "foul": "0"}, "teams": ["1511", "1699", "1071"]}, "coop": "2", "type": "Q_59", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "26", "foul": "0", "tele": "14"}, "teams": ["694", "2785", "237"]}}, {"blue": {"score": {"brige": "10", "tele": "16", "hybrid": "16", "final": "42", "foul": "0"}, "teams": ["3718", "2067", "3461"]}, "coop": "0", "type": "Q_60", "eventKey": "2012CT", "red": {"score": {"bridge": "10", "hybrid": "19", "final": "41", "foul": "0", "tele": "12"}, "teams": ["3017", "549", "3719"]}}, {"blue": {"score": {"brige": "10", "tele": "18", "hybrid": "6", "final": "40", "foul": "6"}, "teams": ["178", "3467", "1922"]}, "coop": "0", "type": "Q_61", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "4", "foul": "0", "tele": "4"}, "teams": ["2170", "663", "1784"]}}, {"blue": {"score": {"brige": "0", "tele": "18", "hybrid": "11", "final": "29", "foul": "0"}, "teams": ["229", "1880", "2168"]}, "coop": "2", "type": "Q_62", "eventKey": "2012CT", "red": {"score": {"bridge": "20", "hybrid": "28", "final": "63", "foul": "9", "tele": "6"}, "teams": ["558", "155", "176"]}}, {"blue": {"score": {"brige": "20", "tele": "7", "hybrid": "24", "final": "51", "foul": "0"}, "teams": ["869", "175", "181"]}, "coop": "0", "type": "Q_63", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "23", "foul": "12", "tele": "11"}, "teams": ["2836", "3182", "236"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "0", "final": "5", "foul": "0"}, "teams": ["1027", "1740", "20"]}, "coop": "2", "type": "Q_64", "eventKey": "2012CT", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "35", "foul": "0", "tele": "13"}, "teams": ["3654", "195", "3525"]}}, {"blue": {"score": {"brige": "20", "tele": "6", "hybrid": "23", "final": "49", "foul": "0"}, "teams": ["173", "1099", "3146"]}, "coop": "2", "type": "Q_65", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "16", "final": "37", "foul": "0", "tele": "21"}, "teams": ["3461", "237", "118"]}}, {"blue": {"score": {"brige": "0", "tele": "10", "hybrid": "12", "final": "22", "foul": "0"}, "teams": ["999", "3634", "2067"]}, "coop": "0", "type": "Q_66", "eventKey": "2012CT", "red": {"score": {"bridge": "10", "hybrid": "17", "final": "39", "foul": "6", "tele": "6"}, "teams": ["1922", "839", "1493"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "6", "final": "14", "foul": "0"}, "teams": ["178", "2170", "1699"]}, "coop": "2", "type": "Q_67", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "13", "final": "22", "foul": "3", "tele": "6"}, "teams": ["4055", "3719", "155"]}}, {"blue": {"score": {"brige": "20", "tele": "5", "hybrid": "5", "final": "30", "foul": "0"}, "teams": ["2836", "549", "95"]}, "coop": "0", "type": "Q_68", "eventKey": "2012CT", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "32", "foul": "0", "tele": "12"}, "teams": ["2785", "1665", "2791"]}}, {"blue": {"score": {"brige": "20", "tele": "0", "hybrid": "0", "final": "20", "foul": "0"}, "teams": ["3555", "1027", "869"]}, "coop": "0", "type": "Q_69", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "4", "final": "7", "foul": "0", "tele": "3"}, "teams": ["230", "1880", "3104"]}}, {"blue": {"score": {"brige": "10", "tele": "19", "hybrid": "18", "final": "47", "foul": "0"}, "teams": ["3718", "195", "558"]}, "coop": "2", "type": "Q_70", "eventKey": "2012CT", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "40", "foul": "0", "tele": "14"}, "teams": ["1071", "663", "126"]}}, {"blue": {"score": {"brige": "0", "tele": "11", "hybrid": "11", "final": "22", "foul": "0"}, "teams": ["1073", "236", "1559"]}, "coop": "0", "type": "Q_71", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "25", "foul": "0", "tele": "20"}, "teams": ["229", "1740", "694"]}}, {"blue": {"score": {"brige": "20", "tele": "12", "hybrid": "22", "final": "54", "foul": "0"}, "teams": ["4122", "181", "3467"]}, "coop": "2", "type": "Q_72", "eventKey": "2012CT", "red": {"score": {"bridge": "10", "hybrid": "11", "final": "24", "foul": "0", "tele": "3"}, "teams": ["1991", "1124", "1511"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "10", "final": "11", "foul": "0"}, "teams": ["571", "3525", "3182"]}, "coop": "0", "type": "Q_73", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["743", "250", "176"]}}, {"blue": {"score": {"brige": "10", "tele": "10", "hybrid": "16", "final": "36", "foul": "0"}, "teams": ["177", "1784", "2168"]}, "coop": "2", "type": "Q_74", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "23", "foul": "9", "tele": "3"}, "teams": ["3017", "228", "20"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "0", "final": "5", "foul": "0"}, "teams": ["3654", "4134", "3461"]}, "coop": "2", "type": "Q_75", "eventKey": "2012CT", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "40", "foul": "0", "tele": "12"}, "teams": ["175", "3464", "95"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "0", "final": "1", "foul": "0"}, "teams": ["3654", "4134", "3461"]}, "coop": "0", "type": "Q_75", "eventKey": "2012CT", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "28", "foul": "0", "tele": "12"}, "teams": ["175", "3464", "95"]}}, {"blue": {"score": {"brige": "10", "tele": "4", "hybrid": "6", "final": "23", "foul": "3"}, "teams": ["3146", "178", "663"]}, "coop": "0", "type": "Q_76", "eventKey": "2012CT", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "19", "foul": "0", "tele": "9"}, "teams": ["1880", "1493", "2785"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "16", "final": "24", "foul": "0"}, "teams": ["558", "999", "3555"]}, "coop": "2", "type": "Q_77", "eventKey": "2012CT", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "38", "foul": "3", "tele": "9"}, "teams": ["2170", "2836", "1511"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "6", "final": "8", "foul": "0"}, "teams": ["3525", "176", "4122"]}, "coop": "2", "type": "Q_78", "eventKey": "2012CT", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "36", "foul": "0", "tele": "14"}, "teams": ["839", "1073", "2067"]}}, {"blue": {"score": {"brige": "10", "tele": "15", "hybrid": "18", "final": "46", "foul": "3"}, "teams": ["118", "743", "181"]}, "coop": "2", "type": "Q_79", "eventKey": "2012CT", "red": {"score": {"bridge": "10", "hybrid": "4", "final": "21", "foul": "3", "tele": "4"}, "teams": ["3719", "228", "869"]}}, {"blue": {"score": {"brige": "10", "tele": "13", "hybrid": "4", "final": "27", "foul": "0"}, "teams": ["155", "3104", "175"]}, "coop": "2", "type": "Q_80", "eventKey": "2012CT", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "34", "foul": "0", "tele": "12"}, "teams": ["3718", "237", "1991"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "12", "final": "28", "foul": "0"}, "teams": ["4055", "2791", "1124"]}, "coop": "2", "type": "Q_81", "eventKey": "2012CT", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "43", "foul": "0", "tele": "21"}, "teams": ["195", "2168", "173"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "11", "final": "19", "foul": "0"}, "teams": ["1740", "549", "3467"]}, "coop": "0", "type": "Q_82", "eventKey": "2012CT", "red": {"score": {"bridge": "20", "hybrid": "17", "final": "51", "foul": "3", "tele": "11"}, "teams": ["1071", "177", "1922"]}}, {"blue": {"score": {"brige": "0", "tele": "22", "hybrid": "12", "final": "37", "foul": "3"}, "teams": ["20", "250", "1559"]}, "coop": "2", "type": "Q_83", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "15", "foul": "0", "tele": "9"}, "teams": ["236", "1699", "3634"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "6", "final": "17", "foul": "9"}, "teams": ["3182", "694", "3017"]}, "coop": "2", "type": "Q_84", "eventKey": "2012CT", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "44", "foul": "9", "tele": "3"}, "teams": ["1665", "230", "3464"]}}, {"blue": {"score": {"brige": "20", "tele": "9", "hybrid": "0", "final": "32", "foul": "3"}, "teams": ["1784", "229", "1027"]}, "coop": "0", "type": "Q_85", "eventKey": "2012CT", "red": {"score": {"bridge": "10", "hybrid": "22", "final": "53", "foul": "9", "tele": "12"}, "teams": ["1099", "126", "4134"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "6", "final": "14", "foul": "0"}, "teams": ["3654", "869", "237"]}, "coop": "0", "type": "Q_86", "eventKey": "2012CT", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "10", "foul": "0", "tele": "0"}, "teams": ["571", "1991", "2791"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["999", "743", "1880"]}, "coop": "2", "type": "Q_87", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "17", "foul": "0", "tele": "6"}, "teams": ["1740", "95", "3461"]}}, {"blue": {"score": {"brige": "20", "tele": "19", "hybrid": "24", "final": "63", "foul": "0"}, "teams": ["20", "175", "1073"]}, "coop": "1", "type": "Q_88", "eventKey": "2012CT", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "54", "foul": "0", "tele": "32"}, "teams": ["2170", "558", "118"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "13", "final": "18", "foul": "0"}, "teams": ["250", "2785", "3719"]}, "coop": "0", "type": "Q_89", "eventKey": "2012CT", "red": {"score": {"bridge": "10", "hybrid": "10", "final": "44", "foul": "6", "tele": "18"}, "teams": ["230", "173", "1922"]}}, {"blue": {"score": {"brige": "10", "tele": "21", "hybrid": "16", "final": "47", "foul": "0"}, "teams": ["2168", "1071", "181"]}, "coop": "2", "type": "Q_90", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "21", "foul": "0", "tele": "15"}, "teams": ["1559", "126", "839"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "12", "final": "14", "foul": "0"}, "teams": ["3718", "3555", "178"]}, "coop": "0", "type": "Q_91", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "36", "foul": "0", "tele": "18"}, "teams": ["236", "3464", "177"]}}, {"blue": {"score": {"brige": "10", "tele": "20", "hybrid": "18", "final": "51", "foul": "3"}, "teams": ["195", "229", "1493"]}, "coop": "2", "type": "Q_92", "eventKey": "2012CT", "red": {"score": {"bridge": "20", "hybrid": "10", "final": "41", "foul": "0", "tele": "11"}, "teams": ["1699", "3182", "3467"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "6", "final": "14", "foul": "3"}, "teams": ["3525", "3634", "1124"]}, "coop": "0", "type": "Q_93", "eventKey": "2012CT", "red": {"score": {"bridge": "10", "hybrid": "16", "final": "30", "foul": "0", "tele": "4"}, "teams": ["3146", "549", "1784"]}}, {"blue": {"score": {"brige": "20", "tele": "26", "hybrid": "6", "final": "52", "foul": "0"}, "teams": ["4055", "228", "694"]}, "coop": "0", "type": "Q_94", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "30", "foul": "12", "tele": "6"}, "teams": ["3104", "2067", "1027"]}}, {"blue": {"score": {"brige": "10", "tele": "7", "hybrid": "6", "final": "23", "foul": "0"}, "teams": ["176", "663", "3654"]}, "coop": "2", "type": "Q_95", "eventKey": "2012CT", "red": {"score": {"bridge": "20", "hybrid": "22", "final": "51", "foul": "0", "tele": "9"}, "teams": ["1511", "1665", "1099"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "11", "final": "14", "foul": "0"}, "teams": ["155", "4134", "3017"]}, "coop": "2", "type": "Q_96", "eventKey": "2012CT", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "34", "foul": "0", "tele": "8"}, "teams": ["2836", "4122", "571"]}}, {"blue": {"score": {"brige": "10", "tele": "8", "hybrid": "24", "final": "42", "foul": "0"}, "teams": ["118", "1880", "3464"]}, "coop": "2", "type": "Q_97", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "15", "foul": "0", "tele": "9"}, "teams": ["839", "236", "237"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "11", "final": "17", "foul": "0"}, "teams": ["3182", "178", "95"]}, "coop": "2", "type": "Q_98", "eventKey": "2012CT", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "25", "foul": "0", "tele": "15"}, "teams": ["1073", "1740", "173"]}}, {"blue": {"score": {"brige": "20", "tele": "15", "hybrid": "12", "final": "50", "foul": "3"}, "teams": ["3467", "175", "2785"]}, "coop": "0", "type": "Q_99", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "30", "foul": "3", "tele": "15"}, "teams": ["3525", "228", "3555"]}}, {"blue": {"score": {"brige": "20", "tele": "12", "hybrid": "22", "final": "54", "foul": "0"}, "teams": ["1124", "1922", "2067"]}, "coop": "2", "type": "Q_100", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "36", "foul": "0", "tele": "18"}, "teams": ["229", "743", "1511"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "12", "final": "18", "foul": "0"}, "teams": ["2836", "1784", "1559"]}, "coop": "0", "type": "Q_101", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "28", "foul": "0", "tele": "16"}, "teams": ["3104", "195", "3461"]}}, {"blue": {"score": {"brige": "10", "tele": "4", "hybrid": "0", "final": "14", "foul": "0"}, "teams": ["3146", "1665", "3718"]}, "coop": "0", "type": "Q_102", "eventKey": "2012CT", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "22", "foul": "6", "tele": "0"}, "teams": ["20", "558", "4122"]}}, {"blue": {"score": {"brige": "20", "tele": "9", "hybrid": "6", "final": "35", "foul": "0"}, "teams": ["1071", "3017", "1991"]}, "coop": "2", "type": "Q_103", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "17", "final": "20", "foul": "0", "tele": "3"}, "teams": ["4055", "176", "1493"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "12", "final": "24", "foul": "0"}, "teams": ["177", "1027", "2791"]}, "coop": "2", "type": "Q_104", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "24", "final": "30", "foul": "0", "tele": "6"}, "teams": ["999", "250", "663"]}}, {"blue": {"score": {"brige": "10", "tele": "20", "hybrid": "6", "final": "36", "foul": "0"}, "teams": ["126", "3634", "2170"]}, "coop": "2", "type": "Q_105", "eventKey": "2012CT", "red": {"score": {"bridge": "20", "hybrid": "5", "final": "34", "foul": "0", "tele": "9"}, "teams": ["869", "571", "694"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "21", "final": "29", "foul": "0"}, "teams": ["230", "4134", "549"]}, "coop": "0", "type": "Q_106", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "8", "foul": "0", "tele": "2"}, "teams": ["155", "3654", "181"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "8", "final": "11", "foul": "0"}, "teams": ["3719", "1699", "3104"]}, "coop": "0", "type": "Q_107", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "23", "foul": "0", "tele": "18"}, "teams": ["2168", "1099", "3182"]}}, {"blue": {"score": {"brige": "0", "tele": "13", "hybrid": "12", "final": "25", "foul": "0"}, "teams": ["175", "126", "869"]}, "coop": "0", "type": "E_1", "eventKey": "2012CT", "red": {"score": {"bridge": "20", "hybrid": "17", "final": "49", "foul": "0", "tele": "12"}, "teams": ["118", "2791", "2168"]}}, {"blue": {"score": {"brige": "20", "tele": "18", "hybrid": "12", "final": "50", "foul": "0"}, "teams": ["558", "1071", "2067"]}, "coop": "0", "type": "E_2", "eventKey": "2012CT", "red": {"score": {"bridge": "20", "hybrid": "5", "final": "28", "foul": "0", "tele": "3"}, "teams": ["237", "1099", "173"]}}, {"blue": {"score": {"brige": "20", "tele": "3", "hybrid": "11", "final": "34", "foul": "0"}, "teams": ["230", "1559", "694"]}, "coop": "0", "type": "E_3", "eventKey": "2012CT", "red": {"score": {"bridge": "40", "hybrid": "24", "final": "67", "foul": "0", "tele": "3"}, "teams": ["177", "228", "236"]}}, {"blue": {"score": {"brige": "20", "tele": "6", "hybrid": "12", "final": "38", "foul": "0"}, "teams": ["1073", "176", "95"]}, "coop": "0", "type": "E_4", "eventKey": "2012CT", "red": {"score": {"bridge": "20", "hybrid": "24", "final": "64", "foul": "0", "tele": "20"}, "teams": ["181", "20", "195"]}}, {"blue": {"score": {"brige": "20", "tele": "18", "hybrid": "18", "final": "62", "foul": "6"}, "teams": ["126", "175", "869"]}, "coop": "0", "type": "E_5", "eventKey": "2012CT", "red": {"score": {"bridge": "40", "hybrid": "23", "final": "87", "foul": "0", "tele": "24"}, "teams": ["118", "2168", "2791"]}}, {"blue": {"score": {"brige": "20", "tele": "18", "hybrid": "18", "final": "56", "foul": "0"}, "teams": ["1071", "2067", "558"]}, "coop": "0", "type": "E_6", "eventKey": "2012CT", "red": {"score": {"bridge": "20", "hybrid": "23", "final": "43", "foul": "0", "tele": "0"}, "teams": ["1099", "237", "173"]}}, {"blue": {"score": {"brige": "40", "tele": "18", "hybrid": "17", "final": "78", "foul": "3"}, "teams": ["694", "1559", "230"]}, "coop": "0", "type": "E_7", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "30", "final": "33", "foul": "0", "tele": "3"}, "teams": ["177", "228", "236"]}}, {"blue": {"score": {"brige": "20", "tele": "26", "hybrid": "18", "final": "64", "foul": "0"}, "teams": ["95", "1073", "176"]}, "coop": "0", "type": "E_8", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "24", "final": "51", "foul": "0", "tele": "27"}, "teams": ["195", "181", "20"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "6", "final": "18", "foul": "3"}, "teams": ["1559", "230", "694"]}, "coop": "0", "type": "E_11", "eventKey": "2012CT", "red": {"score": {"bridge": "40", "hybrid": "24", "final": "73", "foul": "0", "tele": "9"}, "teams": ["177", "236", "228"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "0", "final": "9", "foul": "3"}, "teams": ["176", "1073", "95"]}, "coop": "0", "type": "E_12", "eventKey": "2012CT", "red": {"score": {"bridge": "10", "hybrid": "36", "final": "61", "foul": "0", "tele": "15"}, "teams": ["20", "195", "181"]}}, {"blue": {"score": {"brige": "20", "tele": "14", "hybrid": "18", "final": "52", "foul": "0"}, "teams": ["1071", "2067", "558"]}, "coop": "0", "type": "E_13", "eventKey": "2012CT", "red": {"score": {"bridge": "40", "hybrid": "18", "final": "85", "foul": "0", "tele": "27"}, "teams": ["2168", "118", "2791"]}}, {"blue": {"score": {"brige": "20", "tele": "20", "hybrid": "36", "final": "76", "foul": "0"}, "teams": ["20", "181", "195"]}, "coop": "0", "type": "E_14", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "24", "final": "41", "foul": "0", "tele": "17"}, "teams": ["177", "228", "236"]}}, {"blue": {"score": {"brige": "10", "tele": "9", "hybrid": "24", "final": "46", "foul": "3"}, "teams": ["2067", "558", "1071"]}, "coop": "0", "type": "E_15", "eventKey": "2012CT", "red": {"score": {"bridge": "20", "hybrid": "10", "final": "42", "foul": "0", "tele": "12"}, "teams": ["2168", "2791", "118"]}}, {"blue": {"score": {"brige": "20", "tele": "23", "hybrid": "24", "final": "67", "foul": "0"}, "teams": ["20", "195", "181"]}, "coop": "0", "type": "E_16", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "18", "foul": "0", "tele": "12"}, "teams": ["236", "228", "177"]}}, {"blue": {"score": {"brige": "20", "tele": "22", "hybrid": "30", "final": "72", "foul": "0"}, "teams": ["558", "2067", "1071"]}, "coop": "0", "type": "E_17", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "28", "foul": "3", "tele": "15"}, "teams": ["2168", "118", "2791"]}}, {"blue": {"score": {"brige": "0", "tele": "24", "hybrid": "12", "final": "36", "foul": "0"}, "teams": ["181", "195", "20"]}, "coop": "0", "type": "E_19", "eventKey": "2012CT", "red": {"score": {"bridge": "0", "hybrid": "36", "final": "42", "foul": "0", "tele": "6"}, "teams": ["2067", "1071", "558"]}}, {"blue": {"score": {"brige": "20", "tele": "13", "hybrid": "24", "final": "57", "foul": "0"}, "teams": ["195", "20", "181"]}, "coop": "0", "type": "E_20", "eventKey": "2012CT", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "45", "foul": "3", "tele": "10"}, "teams": ["1071", "558", "2067"]}}, {"blue": {"score": {"brige": "20", "tele": "21", "hybrid": "18", "final": "62", "foul": "3"}, "teams": ["195", "181", "20"]}, "coop": "0", "type": "E_21", "eventKey": "2012CT", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "39", "foul": "6", "tele": "7"}, "teams": ["1071", "558", "2067"]}}, {"blue": {"score": {"brige": "0", "tele": "14", "hybrid": "0", "final": "14", "foul": "0"}, "teams": ["4265", "702", "3941"]}, "coop": "0", "type": "Q_1", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "26", "foul": "0", "tele": "8"}, "teams": ["3929", "4253", "1986"]}}, {"blue": {"score": {"brige": "10", "tele": "14", "hybrid": "12", "final": "36", "foul": "0"}, "teams": ["3098", "1885", "2757"]}, "coop": "0", "type": "Q_2", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "14", "foul": "0", "tele": "2"}, "teams": ["836", "2881", "178"]}}, {"blue": {"score": {"brige": "10", "tele": "9", "hybrid": "11", "final": "30", "foul": "0"}, "teams": ["78", "2960", "3711"]}, "coop": "0", "type": "Q_3", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "16", "final": "45", "foul": "0", "tele": "19"}, "teams": ["51", "3115", "58"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "6", "final": "19", "foul": "0"}, "teams": ["3419", "3860", "537"]}, "coop": "0", "type": "Q_4", "eventKey": "2012Curie", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "32", "foul": "0", "tele": "0"}, "teams": ["244", "4069", "433"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "6", "final": "27", "foul": "12"}, "teams": ["1778", "3205", "3132"]}, "coop": "0", "type": "Q_5", "eventKey": "2012Curie", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "26", "foul": "0", "tele": "0"}, "teams": ["3965", "4269", "2914"]}}, {"blue": {"score": {"brige": "0", "tele": "23", "hybrid": "6", "final": "29", "foul": "0"}, "teams": ["1143", "2500", "2474"]}, "coop": "2", "type": "Q_6", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "22", "final": "47", "foul": "0", "tele": "25"}, "teams": ["624", "3528", "3970"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "0", "final": "1", "foul": "0"}, "teams": ["932", "207", "1683"]}, "coop": "0", "type": "Q_7", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "22", "foul": "0", "tele": "10"}, "teams": ["1507", "2844", "85"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "9", "foul": "9"}, "teams": ["293", "1764", "604"]}, "coop": "0", "type": "Q_8", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "22", "final": "42", "foul": "0", "tele": "10"}, "teams": ["564", "1828", "1501"]}}, {"blue": {"score": {"brige": "0", "tele": "20", "hybrid": "29", "final": "49", "foul": "0"}, "teams": ["4130", "2164", "341"]}, "coop": "2", "type": "Q_9", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "22", "foul": "0", "tele": "10"}, "teams": ["1319", "971", "27"]}}, {"blue": {"score": {"brige": "0", "tele": "21", "hybrid": "12", "final": "36", "foul": "3"}, "teams": ["116", "1678", "1511"]}, "coop": "0", "type": "Q_10", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "22", "final": "33", "foul": "6", "tele": "5"}, "teams": ["2102", "694", "1477"]}}, {"blue": {"score": {"brige": "10", "tele": "17", "hybrid": "0", "final": "27", "foul": "0"}, "teams": ["3940", "1741", "2180"]}, "coop": "0", "type": "Q_11", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "26", "foul": "0", "tele": "21"}, "teams": ["254", "2591", "3936"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "12", "final": "16", "foul": "0"}, "teams": ["1266", "1817", "830"]}, "coop": "2", "type": "Q_12", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "22", "final": "71", "foul": "0", "tele": "39"}, "teams": ["597", "987", "4203"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "5", "final": "7", "foul": "0"}, "teams": ["4226", "2130", "288"]}, "coop": "2", "type": "Q_13", "eventKey": "2012Curie", "red": {"score": {"bridge": "20", "hybrid": "24", "final": "55", "foul": "0", "tele": "11"}, "teams": ["3288", "233", "279"]}}, {"blue": {"score": {"brige": "10", "tele": "21", "hybrid": "18", "final": "49", "foul": "0"}, "teams": ["503", "525", "4161"]}, "coop": "0", "type": "Q_14", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "0", "tele": "6"}, "teams": ["2522", "706", "192"]}}, {"blue": {"score": {"brige": "0", "tele": "14", "hybrid": "6", "final": "20", "foul": "0"}, "teams": ["571", "3847", "1649"]}, "coop": "0", "type": "Q_16", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "10", "foul": "0", "tele": "0"}, "teams": ["415", "1033", "120"]}}, {"blue": {"score": {"brige": "10", "tele": "21", "hybrid": "6", "final": "37", "foul": "0"}, "teams": ["2626", "3807", "51"]}, "coop": "0", "type": "Q_17", "eventKey": "2012Curie", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "42", "foul": "0", "tele": "10"}, "teams": ["3951", "1912", "244"]}}, {"blue": {"score": {"brige": "20", "tele": "2", "hybrid": "10", "final": "32", "foul": "0"}, "teams": ["2626", "3807", "51"]}, "coop": "0", "type": "Q_17", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "25", "foul": "0", "tele": "13"}, "teams": ["3951", "1912", "244"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "16", "final": "32", "foul": "0"}, "teams": ["2626", "3807", "51"]}, "coop": "0", "type": "Q_17", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "25", "foul": "0", "tele": "3"}, "teams": ["3951", "1912", "244"]}}, {"blue": {"score": {"brige": "20", "tele": "15", "hybrid": "24", "final": "59", "foul": "0"}, "teams": ["3970", "1477", "1986"]}, "coop": "2", "type": "Q_18", "eventKey": "2012Curie", "red": {"score": {"bridge": "20", "hybrid": "24", "final": "63", "foul": "0", "tele": "19"}, "teams": ["836", "1507", "293"]}}, {"blue": {"score": {"brige": "0", "tele": "23", "hybrid": "10", "final": "33", "foul": "0"}, "teams": ["2844", "254", "2881"]}, "coop": "2", "type": "Q_19", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "12", "foul": "6", "tele": "0"}, "teams": ["3860", "116", "3132"]}}, {"blue": {"score": {"brige": "10", "tele": "8", "hybrid": "6", "final": "24", "foul": "0"}, "teams": ["1817", "433", "1741"]}, "coop": "0", "type": "Q_20", "eventKey": "2012Curie", "red": {"score": {"bridge": "20", "hybrid": "16", "final": "49", "foul": "6", "tele": "7"}, "teams": ["2960", "694", "3528"]}}, {"blue": {"score": {"brige": "20", "tele": "30", "hybrid": "6", "final": "56", "foul": "0"}, "teams": ["624", "932", "1511"]}, "coop": "2", "type": "Q_21", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "57", "foul": "0", "tele": "29"}, "teams": ["597", "341", "1885"]}}, {"blue": {"score": {"brige": "0", "tele": "21", "hybrid": "12", "final": "36", "foul": "3"}, "teams": ["1828", "2757", "233"]}, "coop": "2", "type": "Q_22", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "22", "foul": "0", "tele": "0"}, "teams": ["3941", "207", "3115"]}}, {"blue": {"score": {"brige": "10", "tele": "24", "hybrid": "9", "final": "46", "foul": "3"}, "teams": ["1764", "3098", "58"]}, "coop": "2", "type": "Q_23", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "30", "foul": "12", "tele": "12"}, "teams": ["4226", "2591", "525"]}}, {"blue": {"score": {"brige": "20", "tele": "36", "hybrid": "25", "final": "84", "foul": "3"}, "teams": ["987", "3950", "3965"]}, "coop": "2", "type": "Q_24", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "17", "final": "29", "foul": "9", "tele": "3"}, "teams": ["564", "85", "3929"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "15", "final": "20", "foul": "3"}, "teams": ["2500", "2914", "288"]}, "coop": "2", "type": "Q_25", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "33", "foul": "6", "tele": "17"}, "teams": ["1683", "1690", "2626"]}}, {"blue": {"score": {"brige": "20", "tele": "16", "hybrid": "11", "final": "47", "foul": "0"}, "teams": ["27", "4069", "4265"]}, "coop": "2", "type": "Q_26", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "35", "foul": "0", "tele": "19"}, "teams": ["1143", "503", "3940"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "10", "final": "16", "foul": "0"}, "teams": ["1501", "571", "1778"]}, "coop": "0", "type": "Q_27", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "29", "foul": "3", "tele": "4"}, "teams": ["3419", "461", "3951"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4253", "3880", "3711"]}, "coop": "2", "type": "Q_28", "eventKey": "2012Curie", "red": {"score": {"bridge": "20", "hybrid": "16", "final": "40", "foul": "0", "tele": "4"}, "teams": ["830", "4161", "415"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "18", "final": "34", "foul": "0"}, "teams": ["604", "78", "1391"]}, "coop": "2", "type": "Q_29", "eventKey": "2012Curie", "red": {"score": {"bridge": "20", "hybrid": "5", "final": "28", "foul": "0", "tele": "3"}, "teams": ["4203", "192", "279"]}}, {"blue": {"score": {"brige": "10", "tele": "24", "hybrid": "6", "final": "40", "foul": "0"}, "teams": ["3807", "3288", "971"]}, "coop": "0", "type": "Q_30", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "30", "foul": "0", "tele": "8"}, "teams": ["1649", "2102", "2180"]}}, {"blue": {"score": {"brige": "10", "tele": "21", "hybrid": "0", "final": "31", "foul": "0"}, "teams": ["3847", "706", "1319"]}, "coop": "0", "type": "Q_31", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "24", "final": "45", "foul": "3", "tele": "8"}, "teams": ["3205", "537", "2130"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "5", "final": "11", "foul": "0"}, "teams": ["1266", "1985", "1033"]}, "coop": "2", "type": "Q_32", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "20", "final": "26", "foul": "0", "tele": "6"}, "teams": ["2164", "178", "702"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "12", "final": "24", "foul": "0"}, "teams": ["2474", "120", "1912"]}, "coop": "2", "type": "Q_33", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "48", "foul": "0", "tele": "26"}, "teams": ["1678", "4130", "4269"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "12", "final": "27", "foul": "3"}, "teams": ["2522", "2757", "694"]}, "coop": "0", "type": "Q_34", "eventKey": "2012Curie", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "38", "foul": "0", "tele": "6"}, "teams": ["3936", "3950", "293"]}}, {"blue": {"score": {"brige": "10", "tele": "24", "hybrid": "24", "final": "64", "foul": "6"}, "teams": ["3860", "624", "1683"]}, "coop": "2", "type": "Q_35", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "17", "foul": "0", "tele": "6"}, "teams": ["1817", "3941", "1764"]}}, {"blue": {"score": {"brige": "20", "tele": "33", "hybrid": "30", "final": "86", "foul": "3"}, "teams": ["3711", "1507", "987"]}, "coop": "2", "type": "Q_36", "eventKey": "2012Curie", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "35", "foul": "6", "tele": "3"}, "teams": ["2500", "4265", "571"]}}, {"blue": {"score": {"brige": "20", "tele": "0", "hybrid": "5", "final": "25", "foul": "0"}, "teams": ["192", "207", "4226"]}, "coop": "2", "type": "Q_37", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "36", "final": "73", "foul": "9", "tele": "18"}, "teams": ["836", "341", "433"]}}, {"blue": {"score": {"brige": "20", "tele": "12", "hybrid": "18", "final": "50", "foul": "0"}, "teams": ["3970", "2180", "3419"]}, "coop": "0", "type": "Q_38", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "22", "final": "31", "foul": "0", "tele": "9"}, "teams": ["3098", "279", "415"]}}, {"blue": {"score": {"brige": "10", "tele": "28", "hybrid": "18", "final": "65", "foul": "9"}, "teams": ["3205", "4069", "254"]}, "coop": "0", "type": "Q_39", "eventKey": "2012Curie", "red": {"score": {"bridge": "20", "hybrid": "16", "final": "37", "foul": "0", "tele": "1"}, "teams": ["1501", "1690", "3807"]}}, {"blue": {"score": {"brige": "10", "tele": "14", "hybrid": "10", "final": "34", "foul": "0"}, "teams": ["4253", "525", "461"]}, "coop": "0", "type": "Q_40", "eventKey": "2012Curie", "red": {"score": {"bridge": "20", "hybrid": "24", "final": "72", "foul": "6", "tele": "22"}, "teams": ["1319", "3288", "1477"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "6", "final": "16", "foul": "0"}, "teams": ["3929", "4203", "3115"]}, "coop": "0", "type": "Q_41", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "41", "foul": "9", "tele": "16"}, "teams": ["706", "3880", "1143"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "12", "final": "21", "foul": "0"}, "teams": ["2591", "1678", "2960"]}, "coop": "2", "type": "Q_42", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "27", "foul": "0", "tele": "11"}, "teams": ["932", "3847", "178"]}}, {"blue": {"score": {"brige": "0", "tele": "14", "hybrid": "6", "final": "20", "foul": "0"}, "teams": ["1649", "78", "3965"]}, "coop": "0", "type": "Q_43", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "15", "final": "20", "foul": "0", "tele": "5"}, "teams": ["2164", "288", "2844"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "12", "final": "23", "foul": "3"}, "teams": ["2914", "1985", "564"]}, "coop": "0", "type": "Q_44", "eventKey": "2012Curie", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "35", "foul": "0", "tele": "3"}, "teams": ["51", "2130", "116"]}}, {"blue": {"score": {"brige": "10", "tele": "19", "hybrid": "28", "final": "57", "foul": "0"}, "teams": ["503", "702", "1885"]}, "coop": "2", "type": "Q_45", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "15", "final": "26", "foul": "0", "tele": "11"}, "teams": ["58", "1391", "3951"]}}, {"blue": {"score": {"brige": "0", "tele": "21", "hybrid": "21", "final": "42", "foul": "0"}, "teams": ["604", "3528", "2626"]}, "coop": "2", "type": "Q_46", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "6", "foul": "0", "tele": "0"}, "teams": ["120", "3132", "597"]}}, {"blue": {"score": {"brige": "10", "tele": "12", "hybrid": "12", "final": "34", "foul": "0"}, "teams": ["1741", "2102", "537"]}, "coop": "2", "type": "Q_47", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "28", "foul": "0", "tele": "6"}, "teams": ["4130", "4161", "1266"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "12", "final": "30", "foul": "9"}, "teams": ["830", "4269", "27"]}, "coop": "2", "type": "Q_48", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "17", "final": "45", "foul": "0", "tele": "18"}, "teams": ["244", "233", "2522"]}}, {"blue": {"score": {"brige": "10", "tele": "26", "hybrid": "27", "final": "66", "foul": "3"}, "teams": ["2881", "971", "1511"]}, "coop": "2", "type": "Q_49", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "49", "foul": "0", "tele": "27"}, "teams": ["2474", "1778", "3936"]}}, {"blue": {"score": {"brige": "10", "tele": "21", "hybrid": "36", "final": "67", "foul": "0"}, "teams": ["3940", "85", "1986"]}, "coop": "2", "type": "Q_50", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "17", "final": "25", "foul": "0", "tele": "8"}, "teams": ["1033", "1912", "1828"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "18", "final": "27", "foul": "0"}, "teams": ["1690", "3941", "2591"]}, "coop": "2", "type": "Q_51", "eventKey": "2012Curie", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "35", "foul": "3", "tele": "12"}, "teams": ["571", "4203", "1319"]}}, {"blue": {"score": {"brige": "20", "tele": "30", "hybrid": "29", "final": "88", "foul": "9"}, "teams": ["694", "341", "279"]}, "coop": "2", "type": "Q_52", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["4253", "3847", "3860"]}}, {"blue": {"score": {"brige": "20", "tele": "6", "hybrid": "12", "final": "38", "foul": "0"}, "teams": ["2914", "2960", "836"]}, "coop": "0", "type": "Q_53", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "30", "final": "64", "foul": "0", "tele": "24"}, "teams": ["1649", "503", "254"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "3", "foul": "3"}, "teams": ["433", "2757", "3132"]}, "coop": "0", "type": "Q_54", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "20", "foul": "0", "tele": "15"}, "teams": ["3807", "624", "2164"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "12", "final": "21", "foul": "0"}, "teams": ["51", "4226", "120"]}, "coop": "2", "type": "Q_55", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "16", "final": "16", "foul": "0", "tele": "0"}, "teams": ["178", "3880", "1741"]}}, {"blue": {"score": {"brige": "20", "tele": "12", "hybrid": "16", "final": "48", "foul": "0"}, "teams": ["1501", "192", "932"]}, "coop": "2", "type": "Q_56", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "42", "foul": "0", "tele": "20"}, "teams": ["1817", "1477", "4265"]}}, {"blue": {"score": {"brige": "0", "tele": "24", "hybrid": "27", "final": "51", "foul": "0"}, "teams": ["3205", "1143", "415"]}, "coop": "2", "type": "Q_57", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "23", "final": "35", "foul": "0", "tele": "2"}, "teams": ["1885", "1266", "461"]}}, {"blue": {"score": {"brige": "0", "tele": "30", "hybrid": "18", "final": "48", "foul": "0"}, "teams": ["3951", "1764", "2474"]}, "coop": "0", "type": "Q_58", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "23", "foul": "0", "tele": "13"}, "teams": ["3115", "4161", "85"]}}, {"blue": {"score": {"brige": "10", "tele": "5", "hybrid": "6", "final": "21", "foul": "0"}, "teams": ["2844", "244", "1391"]}, "coop": "2", "type": "Q_59", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["3970", "2102", "2130"]}}, {"blue": {"score": {"brige": "10", "tele": "9", "hybrid": "22", "final": "41", "foul": "0"}, "teams": ["27", "702", "604"]}, "coop": "2", "type": "Q_60", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "3", "tele": "0"}, "teams": ["3950", "2500", "2881"]}}, {"blue": {"score": {"brige": "0", "tele": "15", "hybrid": "12", "final": "30", "foul": "3"}, "teams": ["971", "3940", "2522"]}, "coop": "0", "type": "Q_61", "eventKey": "2012Curie", "red": {"score": {"bridge": "20", "hybrid": "24", "final": "77", "foul": "9", "tele": "24"}, "teams": ["987", "207", "3419"]}}, {"blue": {"score": {"brige": "20", "tele": "17", "hybrid": "12", "final": "49", "foul": "0"}, "teams": ["2180", "1511", "4269"]}, "coop": "0", "type": "Q_62", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "15", "final": "37", "foul": "0", "tele": "12"}, "teams": ["1033", "3528", "293"]}}, {"blue": {"score": {"brige": "10", "tele": "24", "hybrid": "12", "final": "49", "foul": "3"}, "teams": ["1507", "2626", "706"]}, "coop": "2", "type": "Q_64", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "9", "foul": "9", "tele": "0"}, "teams": ["4130", "564", "233"]}}, {"blue": {"score": {"brige": "20", "tele": "19", "hybrid": "29", "final": "68", "foul": "0"}, "teams": ["288", "1678", "3936"]}, "coop": "2", "type": "Q_65", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "30", "final": "61", "foul": "3", "tele": "28"}, "teams": ["525", "1986", "3711"]}}, {"blue": {"score": {"brige": "10", "tele": "19", "hybrid": "24", "final": "53", "foul": "0"}, "teams": ["1985", "3098", "3965"]}, "coop": "2", "type": "Q_66", "eventKey": "2012Curie", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "35", "foul": "0", "tele": "9"}, "teams": ["1912", "1683", "4069"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "10", "final": "16", "foul": "0"}, "teams": ["1778", "58", "3860"]}, "coop": "2", "type": "Q_67", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "29", "final": "57", "foul": "9", "tele": "9"}, "teams": ["1828", "830", "1741"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "18", "final": "31", "foul": "0"}, "teams": ["279", "3880", "1885"]}, "coop": "0", "type": "Q_68", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "38", "foul": "0", "tele": "20"}, "teams": ["2500", "85", "1477"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "11", "final": "18", "foul": "3"}, "teams": ["4265", "2522", "3205"]}, "coop": "0", "type": "Q_69", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "30", "foul": "0", "tele": "18"}, "teams": ["120", "2102", "2591"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "18", "final": "24", "foul": "6"}, "teams": ["4161", "244", "178"]}, "coop": "2", "type": "Q_70", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "42", "foul": "3", "tele": "11"}, "teams": ["461", "3132", "3940"]}}, {"blue": {"score": {"brige": "10", "tele": "12", "hybrid": "18", "final": "40", "foul": "0"}, "teams": ["51", "537", "4269"]}, "coop": "2", "type": "Q_71", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "10", "final": "37", "foul": "3", "tele": "14"}, "teams": ["1501", "1143", "2881"]}}, {"blue": {"score": {"brige": "20", "tele": "2", "hybrid": "5", "final": "27", "foul": "0"}, "teams": ["3951", "4203", "207"]}, "coop": "2", "type": "Q_72", "eventKey": "2012Curie", "red": {"score": {"bridge": "20", "hybrid": "11", "final": "46", "foul": "0", "tele": "15"}, "teams": ["3970", "2914", "1511"]}}, {"blue": {"score": {"brige": "10", "tele": "14", "hybrid": "10", "final": "34", "foul": "0"}, "teams": ["3950", "2130", "3528"]}, "coop": "2", "type": "Q_73", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "10", "foul": "3", "tele": "1"}, "teams": ["1764", "1649", "4253"]}}, {"blue": {"score": {"brige": "10", "tele": "1", "hybrid": "11", "final": "34", "foul": "12"}, "teams": ["564", "597", "1912"]}, "coop": "2", "type": "Q_74", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "29", "foul": "0", "tele": "11"}, "teams": ["2960", "1319", "3419"]}}, {"blue": {"score": {"brige": "20", "tele": "21", "hybrid": "18", "final": "65", "foul": "6"}, "teams": ["3936", "987", "3115"]}, "coop": "0", "type": "Q_75", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "18", "foul": "0", "tele": "8"}, "teams": ["2164", "1683", "3288"]}}, {"blue": {"score": {"brige": "10", "tele": "27", "hybrid": "26", "final": "63", "foul": "0"}, "teams": ["293", "3965", "341"]}, "coop": "2", "type": "Q_76", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "33", "foul": "3", "tele": "18"}, "teams": ["1266", "503", "3941"]}}, {"blue": {"score": {"brige": "10", "tele": "14", "hybrid": "0", "final": "24", "foul": "0"}, "teams": ["3847", "702", "1778"]}, "coop": "2", "type": "Q_77", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "51", "foul": "3", "tele": "20"}, "teams": ["3711", "192", "3807"]}}, {"blue": {"score": {"brige": "0", "tele": "21", "hybrid": "12", "final": "36", "foul": "3"}, "teams": ["4226", "1817", "2474"]}, "coop": "2", "type": "Q_78", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "5", "foul": "3", "tele": "2"}, "teams": ["2757", "1033", "2626"]}}, {"blue": {"score": {"brige": "0", "tele": "18", "hybrid": "27", "final": "45", "foul": "0"}, "teams": ["694", "254", "1391"]}, "coop": "0", "type": "Q_79", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "30", "final": "58", "foul": "9", "tele": "19"}, "teams": ["27", "706", "3098"]}}, {"blue": {"score": {"brige": "0", "tele": "17", "hybrid": "12", "final": "32", "foul": "3"}, "teams": ["3929", "1690", "525"]}, "coop": "0", "type": "Q_80", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "24", "final": "30", "foul": "0", "tele": "6"}, "teams": ["2180", "4130", "836"]}}, {"blue": {"score": {"brige": "10", "tele": "8", "hybrid": "28", "final": "46", "foul": "0"}, "teams": ["932", "415", "1828"]}, "coop": "2", "type": "Q_81", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "48", "foul": "0", "tele": "20"}, "teams": ["116", "971", "288"]}}, {"blue": {"score": {"brige": "20", "tele": "29", "hybrid": "18", "final": "70", "foul": "3"}, "teams": ["1507", "1678", "830"]}, "coop": "2", "type": "Q_82", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "12", "foul": "0", "tele": "6"}, "teams": ["78", "433", "1985"]}}, {"blue": {"score": {"brige": "10", "tele": "24", "hybrid": "45", "final": "85", "foul": "6"}, "teams": ["624", "233", "58"]}, "coop": "2", "type": "Q_83", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "23", "final": "29", "foul": "0", "tele": "6"}, "teams": ["4069", "604", "571"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "5", "final": "14", "foul": "0"}, "teams": ["2844", "279", "597"]}, "coop": "2", "type": "Q_84", "eventKey": "2012Curie", "red": {"score": {"bridge": "20", "hybrid": "24", "final": "65", "foul": "0", "tele": "21"}, "teams": ["1986", "2522", "2914"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "5", "final": "17", "foul": "0"}, "teams": ["1266", "1319", "3936"]}, "coop": "0", "type": "Q_85", "eventKey": "2012Curie", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "41", "foul": "3", "tele": "12"}, "teams": ["1764", "207", "244"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "12", "final": "21", "foul": "3"}, "teams": ["4203", "4226", "1912"]}, "coop": "0", "type": "Q_86", "eventKey": "2012Curie", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "38", "foul": "0", "tele": "12"}, "teams": ["293", "2102", "1778"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "0", "final": "13", "foul": "0"}, "teams": ["3807", "1033", "461"]}, "coop": "0", "type": "Q_87", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "24", "final": "51", "foul": "0", "tele": "27"}, "teams": ["1741", "503", "564"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "10", "final": "22", "foul": "0"}, "teams": ["3951", "3288", "120"]}, "coop": "0", "type": "Q_88", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "28", "foul": "0", "tele": "6"}, "teams": ["192", "3941", "3940"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "12", "final": "28", "foul": "0"}, "teams": ["3929", "2500", "1649"]}, "coop": "0", "type": "Q_89", "eventKey": "2012Curie", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "39", "foul": "0", "tele": "7"}, "teams": ["2757", "1391", "932"]}}, {"blue": {"score": {"brige": "20", "tele": "30", "hybrid": "29", "final": "94", "foul": "15"}, "teams": ["254", "1477", "4130"]}, "coop": "2", "type": "Q_90", "eventKey": "2012Curie", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "35", "foul": "3", "tele": "0"}, "teams": ["1828", "3711", "3965"]}}, {"blue": {"score": {"brige": "10", "tele": "16", "hybrid": "17", "final": "43", "foul": "0"}, "teams": ["178", "830", "525"]}, "coop": "2", "type": "Q_91", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "22", "final": "59", "foul": "3", "tele": "24"}, "teams": ["3205", "694", "971"]}}, {"blue": {"score": {"brige": "0", "tele": "18", "hybrid": "6", "final": "24", "foul": "0"}, "teams": ["1690", "341", "2881"]}, "coop": "0", "type": "Q_92", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "33", "foul": "3", "tele": "18"}, "teams": ["3115", "3970", "1678"]}}, {"blue": {"score": {"brige": "20", "tele": "8", "hybrid": "20", "final": "48", "foul": "0"}, "teams": ["4265", "3528", "58"]}, "coop": "2", "type": "Q_93", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "27", "foul": "0", "tele": "9"}, "teams": ["3880", "537", "1683"]}}, {"blue": {"score": {"brige": "10", "tele": "23", "hybrid": "10", "final": "46", "foul": "3"}, "teams": ["1143", "233", "1817"]}, "coop": "2", "type": "Q_94", "eventKey": "2012Curie", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "44", "foul": "0", "tele": "18"}, "teams": ["2180", "78", "3950"]}}, {"blue": {"score": {"brige": "0", "tele": "16", "hybrid": "15", "final": "34", "foul": "3"}, "teams": ["2164", "706", "2474"]}, "coop": "2", "type": "Q_95", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "11", "foul": "0", "tele": "5"}, "teams": ["2591", "4069", "4253"]}}, {"blue": {"score": {"brige": "10", "tele": "27", "hybrid": "24", "final": "61", "foul": "0"}, "teams": ["1885", "51", "987"]}, "coop": "2", "type": "Q_96", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "34", "foul": "0", "tele": "12"}, "teams": ["3847", "433", "604"]}}, {"blue": {"score": {"brige": "10", "tele": "9", "hybrid": "11", "final": "30", "foul": "0"}, "teams": ["2960", "2626", "3860"]}, "coop": "2", "type": "Q_98", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "24", "final": "70", "foul": "27", "tele": "9"}, "teams": ["571", "2130", "85"]}}, {"blue": {"score": {"brige": "10", "tele": "13", "hybrid": "22", "final": "48", "foul": "3"}, "teams": ["1985", "836", "1501"]}, "coop": "2", "type": "Q_99", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "15", "final": "42", "foul": "3", "tele": "14"}, "teams": ["415", "2844", "27"]}}, {"blue": {"score": {"brige": "10", "tele": "22", "hybrid": "34", "final": "66", "foul": "0"}, "teams": ["624", "116", "4269"]}, "coop": "2", "type": "Q_100", "eventKey": "2012Curie", "red": {"score": {"bridge": "20", "hybrid": "24", "final": "83", "foul": "3", "tele": "36"}, "teams": ["4161", "3098", "1986"]}}, {"blue": {"score": {"brige": "10", "tele": "14", "hybrid": "12", "final": "39", "foul": "3"}, "teams": ["971", "564", "1477"]}, "coop": "0", "type": "Q_102", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "40", "foul": "3", "tele": "15"}, "teams": ["1391", "1143", "4226"]}}, {"blue": {"score": {"brige": "20", "tele": "6", "hybrid": "18", "final": "44", "foul": "0"}, "teams": ["3936", "1828", "2500"]}, "coop": "2", "type": "Q_103", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["120", "3807", "1817"]}}, {"blue": {"score": {"brige": "10", "tele": "9", "hybrid": "18", "final": "37", "foul": "0"}, "teams": ["2591", "2914", "1033"]}, "coop": "0", "type": "Q_104", "eventKey": "2012Curie", "red": {"score": {"bridge": "20", "hybrid": "21", "final": "57", "foul": "6", "tele": "10"}, "teams": ["537", "694", "3711"]}}, {"blue": {"score": {"brige": "10", "tele": "9", "hybrid": "6", "final": "31", "foul": "6"}, "teams": ["207", "706", "2881"]}, "coop": "2", "type": "Q_105", "eventKey": "2012Curie", "red": {"score": {"bridge": "20", "hybrid": "11", "final": "40", "foul": "0", "tele": "9"}, "teams": ["1741", "1912", "3288"]}}, {"blue": {"score": {"brige": "0", "tele": "19", "hybrid": "23", "final": "42", "foul": "0"}, "teams": ["51", "2164", "85"]}, "coop": "2", "type": "Q_106", "eventKey": "2012Curie", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "62", "foul": "3", "tele": "27"}, "teams": ["192", "3419", "233"]}}, {"blue": {"score": {"brige": "10", "tele": "22", "hybrid": "22", "final": "54", "foul": "0"}, "teams": ["4253", "1266", "78"]}, "coop": "0", "type": "Q_107", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "24", "final": "49", "foul": "0", "tele": "15"}, "teams": ["1778", "836", "932"]}}, {"blue": {"score": {"brige": "0", "tele": "16", "hybrid": "6", "final": "22", "foul": "0"}, "teams": ["178", "597", "2130"]}, "coop": "2", "type": "Q_108", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "45", "foul": "0", "tele": "17"}, "teams": ["4269", "3115", "503"]}}, {"blue": {"score": {"brige": "20", "tele": "21", "hybrid": "18", "final": "62", "foul": "3"}, "teams": ["2522", "4069", "341"]}, "coop": "2", "type": "Q_109", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "20", "final": "31", "foul": "3", "tele": "8"}, "teams": ["415", "702", "2626"]}}, {"blue": {"score": {"brige": "20", "tele": "16", "hybrid": "15", "final": "51", "foul": "0"}, "teams": ["1501", "2102", "1319"]}, "coop": "2", "type": "Q_110", "eventKey": "2012Curie", "red": {"score": {"bridge": "20", "hybrid": "23", "final": "55", "foul": "3", "tele": "9"}, "teams": ["3940", "3528", "3965"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "11", "final": "13", "foul": "0"}, "teams": ["3205", "3860", "3951"]}, "coop": "0", "type": "Q_111", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "23", "final": "37", "foul": "0", "tele": "4"}, "teams": ["288", "604", "3929"]}}, {"blue": {"score": {"brige": "0", "tele": "11", "hybrid": "6", "final": "20", "foul": "3"}, "teams": ["1511", "2844", "4130"]}, "coop": "0", "type": "Q_112", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "51", "foul": "9", "tele": "20"}, "teams": ["3098", "3847", "3880"]}}, {"blue": {"score": {"brige": "20", "tele": "6", "hybrid": "4", "final": "30", "foul": "0"}, "teams": ["830", "571", "1683"]}, "coop": "0", "type": "Q_113", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "24", "foul": "0", "tele": "6"}, "teams": ["3132", "1885", "3970"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "4", "final": "5", "foul": "0"}, "teams": ["433", "3941", "1649"]}, "coop": "0", "type": "Q_114", "eventKey": "2012Curie", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "56", "foul": "0", "tele": "24"}, "teams": ["525", "2474", "116"]}}, {"blue": {"score": {"brige": "0", "tele": "29", "hybrid": "12", "final": "41", "foul": "0"}, "teams": ["2960", "244", "1986"]}, "coop": "2", "type": "Q_115", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "24", "foul": "0", "tele": "6"}, "teams": ["2757", "1985", "2180"]}}, {"blue": {"score": {"brige": "20", "tele": "11", "hybrid": "0", "final": "31", "foul": "0"}, "teams": ["4161", "293", "1690"]}, "coop": "2", "type": "Q_116", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "22", "final": "68", "foul": "0", "tele": "36"}, "teams": ["27", "987", "58"]}}, {"blue": {"score": {"brige": "20", "tele": "18", "hybrid": "18", "final": "56", "foul": "0"}, "teams": ["1507", "3950", "537"]}, "coop": "2", "type": "Q_117", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "30", "foul": "3", "tele": "15"}, "teams": ["279", "624", "178"]}}, {"blue": {"score": {"brige": "20", "tele": "8", "hybrid": "4", "final": "35", "foul": "3"}, "teams": ["2881", "2130", "1828"]}, "coop": "0", "type": "Q_118", "eventKey": "2012Curie", "red": {"score": {"bridge": "20", "hybrid": "10", "final": "54", "foul": "0", "tele": "24"}, "teams": ["3419", "694", "78"]}}, {"blue": {"score": {"brige": "10", "tele": "14", "hybrid": "22", "final": "49", "foul": "3"}, "teams": ["1501", "85", "3711"]}, "coop": "2", "type": "Q_119", "eventKey": "2012Curie", "red": {"score": {"bridge": "20", "hybrid": "24", "final": "50", "foul": "0", "tele": "6"}, "teams": ["4226", "1266", "706"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "6", "final": "15", "foul": "0"}, "teams": ["503", "2500", "4253"]}, "coop": "2", "type": "Q_120", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "28", "foul": "0", "tele": "6"}, "teams": ["2844", "4203", "51"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "5", "final": "11", "foul": "3"}, "teams": ["604", "1778", "3115"]}, "coop": "2", "type": "Q_121", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "48", "foul": "3", "tele": "17"}, "teams": ["2522", "1033", "1477"]}}, {"blue": {"score": {"brige": "10", "tele": "9", "hybrid": "10", "final": "32", "foul": "3"}, "teams": ["3098", "3941", "971"]}, "coop": "0", "type": "Q_122", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "24", "final": "73", "foul": "12", "tele": "27"}, "teams": ["1741", "3132", "1678"]}}, {"blue": {"score": {"brige": "10", "tele": "21", "hybrid": "18", "final": "49", "foul": "0"}, "teams": ["2757", "192", "2591"]}, "coop": "2", "type": "Q_123", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "40", "foul": "0", "tele": "28"}, "teams": ["3860", "1511", "1143"]}}, {"blue": {"score": {"brige": "10", "tele": "27", "hybrid": "12", "final": "49", "foul": "0"}, "teams": ["1986", "3807", "1391"]}, "coop": "2", "type": "Q_124", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "24", "final": "70", "foul": "0", "tele": "36"}, "teams": ["341", "2474", "987"]}}, {"blue": {"score": {"brige": "10", "tele": "12", "hybrid": "12", "final": "34", "foul": "0"}, "teams": ["4161", "564", "1885"]}, "coop": "0", "type": "Q_125", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "14", "foul": "0", "tele": "4"}, "teams": ["3936", "1649", "4265"]}}, {"blue": {"score": {"brige": "20", "tele": "18", "hybrid": "12", "final": "50", "foul": "0"}, "teams": ["624", "244", "3288"]}, "coop": "2", "type": "Q_126", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "13", "final": "32", "foul": "0", "tele": "9"}, "teams": ["3965", "3847", "1690"]}}, {"blue": {"score": {"brige": "10", "tele": "38", "hybrid": "23", "final": "80", "foul": "9"}, "teams": ["254", "415", "3929"]}, "coop": "0", "type": "Q_127", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "40", "foul": "3", "tele": "25"}, "teams": ["1319", "58", "1507"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "6", "foul": "0"}, "teams": ["1683", "293", "433"]}, "coop": "2", "type": "Q_128", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "16", "final": "41", "foul": "0", "tele": "15"}, "teams": ["233", "702", "120"]}}, {"blue": {"score": {"brige": "20", "tele": "0", "hybrid": "24", "final": "47", "foul": "3"}, "teams": ["1985", "4130", "1817"]}, "coop": "2", "type": "Q_129", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "17", "final": "19", "foul": "0", "tele": "2"}, "teams": ["207", "288", "571"]}}, {"blue": {"score": {"brige": "20", "tele": "21", "hybrid": "29", "final": "76", "foul": "6"}, "teams": ["2960", "3970", "525"]}, "coop": "0", "type": "Q_130", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "24", "final": "35", "foul": "0", "tele": "11"}, "teams": ["3940", "4269", "3880"]}}, {"blue": {"score": {"brige": "10", "tele": "23", "hybrid": "18", "final": "51", "foul": "0"}, "teams": ["27", "3205", "279"]}, "coop": "2", "type": "Q_131", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "27", "foul": "0", "tele": "9"}, "teams": ["1764", "116", "1912"]}}, {"blue": {"score": {"brige": "10", "tele": "12", "hybrid": "0", "final": "22", "foul": "0"}, "teams": ["4069", "2102", "3950"]}, "coop": "2", "type": "Q_132", "eventKey": "2012Curie", "red": {"score": {"bridge": "20", "hybrid": "29", "final": "58", "foul": "0", "tele": "9"}, "teams": ["597", "3951", "836"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "26", "final": "38", "foul": "0"}, "teams": ["461", "3528", "2164"]}, "coop": "0", "type": "Q_133", "eventKey": "2012Curie", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "44", "foul": "3", "tele": "3"}, "teams": ["830", "2914", "932"]}}, {"blue": {"score": {"brige": "20", "tele": "24", "hybrid": "23", "final": "82", "foul": "15"}, "teams": ["2180", "3115", "192"]}, "coop": "0", "type": "Q_134", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "16", "final": "28", "foul": "0", "tele": "12"}, "teams": ["2626", "1885", "4253"]}}, {"blue": {"score": {"brige": "10", "tele": "5", "hybrid": "6", "final": "27", "foul": "6"}, "teams": ["3419", "4161", "3288"]}, "coop": "2", "type": "Q_135", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "36", "final": "56", "foul": "0", "tele": "20"}, "teams": ["604", "341", "2757"]}}, {"blue": {"score": {"brige": "10", "tele": "18", "hybrid": "12", "final": "49", "foul": "9"}, "teams": ["1683", "1741", "1319"]}, "coop": "0", "type": "Q_136", "eventKey": "2012Curie", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "39", "foul": "3", "tele": "10"}, "teams": ["3711", "1511", "2522"]}}, {"blue": {"score": {"brige": "0", "tele": "27", "hybrid": "12", "final": "39", "foul": "0"}, "teams": ["503", "3132", "233"]}, "coop": "2", "type": "Q_137", "eventKey": "2012Curie", "red": {"score": {"bridge": "20", "hybrid": "22", "final": "51", "foul": "0", "tele": "9"}, "teams": ["1986", "1690", "415"]}}, {"blue": {"score": {"brige": "10", "tele": "8", "hybrid": "12", "final": "33", "foul": "3"}, "teams": ["288", "3941", "3970"]}, "coop": "2", "type": "Q_138", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "18", "foul": "0", "tele": "6"}, "teams": ["706", "1778", "51"]}}, {"blue": {"score": {"brige": "20", "tele": "6", "hybrid": "24", "final": "50", "foul": "0"}, "teams": ["2500", "3940", "1266"]}, "coop": "2", "type": "Q_139", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "22", "final": "56", "foul": "0", "tele": "34"}, "teams": ["58", "2130", "1678"]}}, {"blue": {"score": {"brige": "0", "tele": "10", "hybrid": "6", "final": "16", "foul": "0"}, "teams": ["2102", "564", "27"]}, "coop": "2", "type": "Q_140", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "22", "final": "40", "foul": "0", "tele": "18"}, "teams": ["2474", "3860", "78"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "4", "final": "17", "foul": "0"}, "teams": ["1033", "116", "207"]}, "coop": "2", "type": "Q_141", "eventKey": "2012Curie", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "38", "foul": "6", "tele": "6"}, "teams": ["2960", "4265", "3950"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "17", "final": "20", "foul": "0"}, "teams": ["1649", "293", "85"]}, "coop": "0", "type": "Q_142", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "31", "foul": "0", "tele": "9"}, "teams": ["3098", "537", "830"]}}, {"blue": {"score": {"brige": "10", "tele": "31", "hybrid": "11", "final": "52", "foul": "0"}, "teams": ["244", "1477", "120"]}, "coop": "2", "type": "Q_143", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "49", "foul": "0", "tele": "33"}, "teams": ["2881", "2914", "987"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "4", "final": "9", "foul": "0"}, "teams": ["178", "1764", "433"]}, "coop": "0", "type": "Q_144", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "24", "foul": "3", "tele": "5"}, "teams": ["2626", "1391", "3965"]}}, {"blue": {"score": {"brige": "20", "tele": "0", "hybrid": "18", "final": "41", "foul": "3"}, "teams": ["4269", "4069", "461"]}, "coop": "2", "type": "Q_145", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "17", "foul": "3", "tele": "4"}, "teams": ["3936", "2844", "3929"]}}, {"blue": {"score": {"brige": "10", "tele": "15", "hybrid": "8", "final": "33", "foul": "0"}, "teams": ["571", "1143", "3807"]}, "coop": "0", "type": "Q_146", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "46", "foul": "6", "tele": "12"}, "teams": ["525", "279", "932"]}}, {"blue": {"score": {"brige": "20", "tele": "6", "hybrid": "20", "final": "46", "foul": "0"}, "teams": ["3847", "3951", "3528"]}, "coop": "2", "type": "Q_147", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "16", "final": "43", "foul": "3", "tele": "24"}, "teams": ["1985", "254", "4226"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "36", "final": "55", "foul": "3"}, "teams": ["1912", "836", "3880"]}, "coop": "0", "type": "Q_148", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "30", "foul": "3", "tele": "9"}, "teams": ["971", "1817", "2591"]}}, {"blue": {"score": {"brige": "10", "tele": "25", "hybrid": "15", "final": "50", "foul": "0"}, "teams": ["694", "702", "4130"]}, "coop": "2", "type": "Q_149", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "25", "foul": "0", "tele": "19"}, "teams": ["4203", "1501", "624"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "17", "final": "26", "foul": "0"}, "teams": ["2164", "597", "2180"]}, "coop": "0", "type": "Q_150", "eventKey": "2012Curie", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "42", "foul": "3", "tele": "17"}, "teams": ["1507", "3205", "1828"]}}, {"blue": {"score": {"brige": "0", "tele": "19", "hybrid": "17", "final": "36", "foul": "0"}, "teams": ["27", "971", "503"]}, "coop": "0", "type": "E_1", "eventKey": "2012Curie", "red": {"score": {"bridge": "20", "hybrid": "11", "final": "60", "foul": "6", "tele": "23"}, "teams": ["341", "78", "254"]}}, {"blue": {"score": {"brige": "20", "tele": "22", "hybrid": "18", "final": "60", "foul": "0"}, "teams": ["1885", "244", "624"]}, "coop": "0", "type": "E_2", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "38", "foul": "0", "tele": "20"}, "teams": ["1507", "51", "3098"]}}, {"blue": {"score": {"brige": "0", "tele": "19", "hybrid": "22", "final": "41", "foul": "0"}, "teams": ["525", "58", "2474"]}, "coop": "0", "type": "E_3", "eventKey": "2012Curie", "red": {"score": {"bridge": "20", "hybrid": "24", "final": "92", "foul": "3", "tele": "45"}, "teams": ["233", "987", "207"]}}, {"blue": {"score": {"brige": "0", "tele": "23", "hybrid": "34", "final": "60", "foul": "3"}, "teams": ["1477", "3528", "1741"]}, "coop": "0", "type": "E_4", "eventKey": "2012Curie", "red": {"score": {"bridge": "20", "hybrid": "24", "final": "62", "foul": "6", "tele": "12"}, "teams": ["1678", "85", "1986"]}}, {"blue": {"score": {"brige": "20", "tele": "23", "hybrid": "12", "final": "55", "foul": "0"}, "teams": ["971", "503", "27"]}, "coop": "0", "type": "E_5", "eventKey": "2012Curie", "red": {"score": {"bridge": "40", "hybrid": "17", "final": "90", "foul": "0", "tele": "33"}, "teams": ["341", "254", "78"]}}, {"blue": {"score": {"brige": "20", "tele": "27", "hybrid": "12", "final": "62", "foul": "3"}, "teams": ["1885", "244", "624"]}, "coop": "0", "type": "E_6", "eventKey": "2012Curie", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "65", "foul": "3", "tele": "24"}, "teams": ["51", "1507", "3098"]}}, {"blue": {"score": {"brige": "20", "tele": "12", "hybrid": "6", "final": "38", "foul": "0"}, "teams": ["525", "2474", "58"]}, "coop": "0", "type": "E_7", "eventKey": "2012Curie", "red": {"score": {"bridge": "20", "hybrid": "24", "final": "77", "foul": "6", "tele": "27"}, "teams": ["233", "987", "207"]}}, {"blue": {"score": {"brige": "20", "tele": "30", "hybrid": "22", "final": "72", "foul": "0"}, "teams": ["3528", "1477", "1741"]}, "coop": "0", "type": "E_8", "eventKey": "2012Curie", "red": {"score": {"bridge": "20", "hybrid": "30", "final": "71", "foul": "6", "tele": "15"}, "teams": ["1678", "85", "1986"]}}, {"blue": {"score": {"brige": "20", "tele": "30", "hybrid": "24", "final": "74", "foul": "0"}, "teams": ["624", "1885", "244"]}, "coop": "0", "type": "E_10", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "31", "foul": "0", "tele": "13"}, "teams": ["1507", "51", "3098"]}}, {"blue": {"score": {"brige": "0", "tele": "15", "hybrid": "28", "final": "46", "foul": "3"}, "teams": ["3528", "1741", "1477"]}, "coop": "0", "type": "E_12", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "24", "final": "45", "foul": "0", "tele": "21"}, "teams": ["1986", "1678", "85"]}}, {"blue": {"score": {"brige": "20", "tele": "15", "hybrid": "34", "final": "69", "foul": "0"}, "teams": ["624", "1885", "244"]}, "coop": "0", "type": "E_13", "eventKey": "2012Curie", "red": {"score": {"bridge": "40", "hybrid": "29", "final": "102", "foul": "3", "tele": "30"}, "teams": ["78", "254", "341"]}}, {"blue": {"score": {"brige": "20", "tele": "24", "hybrid": "28", "final": "81", "foul": "9"}, "teams": ["1741", "3528", "1477"]}, "coop": "0", "type": "E_14", "eventKey": "2012Curie", "red": {"score": {"bridge": "20", "hybrid": "30", "final": "116", "foul": "6", "tele": "60"}, "teams": ["207", "233", "987"]}}, {"blue": {"score": {"brige": "20", "tele": "26", "hybrid": "29", "final": "78", "foul": "3"}, "teams": ["1885", "624", "244"]}, "coop": "0", "type": "E_15", "eventKey": "2012Curie", "red": {"score": {"bridge": "40", "hybrid": "34", "final": "128", "foul": "0", "tele": "54"}, "teams": ["341", "78", "254"]}}, {"blue": {"score": {"brige": "20", "tele": "36", "hybrid": "28", "final": "84", "foul": "0"}, "teams": ["1477", "1741", "3528"]}, "coop": "0", "type": "E_16", "eventKey": "2012Curie", "red": {"score": {"bridge": "20", "hybrid": "17", "final": "100", "foul": "3", "tele": "60"}, "teams": ["987", "207", "233"]}}, {"blue": {"score": {"brige": "20", "tele": "39", "hybrid": "6", "final": "68", "foul": "3"}, "teams": ["987", "233", "207"]}, "coop": "0", "type": "E_19", "eventKey": "2012Curie", "red": {"score": {"bridge": "0", "hybrid": "28", "final": "58", "foul": "3", "tele": "27"}, "teams": ["78", "254", "341"]}}, {"blue": {"score": {"brige": "20", "tele": "48", "hybrid": "24", "final": "110", "foul": "18"}, "teams": ["233", "987", "207"]}, "coop": "0", "type": "E_20", "eventKey": "2012Curie", "red": {"score": {"bridge": "40", "hybrid": "22", "final": "86", "foul": "3", "tele": "21"}, "teams": ["254", "341", "78"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "45", "foul": "45"}, "teams": ["647", "1745", "4351"]}, "coop": "0", "type": "Q_1", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["4354", "4335", "4359"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "0", "final": "1", "foul": "0"}, "teams": ["3370", "3516", "4350"]}, "coop": "0", "type": "Q_2", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["4355", "3037", "2950"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "6", "final": "14", "foul": "0"}, "teams": ["2965", "4138", "2948"]}, "coop": "0", "type": "Q_3", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "7", "foul": "0", "tele": "7"}, "teams": ["3612", "1817", "4315"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "6", "final": "12", "foul": "3"}, "teams": ["2897", "3392", "3350"]}, "coop": "0", "type": "Q_4", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["4364", "3508", "3369"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "0", "final": "18", "foul": "6"}, "teams": ["4084", "148", "3005"]}, "coop": "1", "type": "Q_5", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3961", "3867", "3697"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "4", "foul": "0"}, "teams": ["3409", "3481", "3497"]}, "coop": "2", "type": "Q_6", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "30", "foul": "0", "tele": "18"}, "teams": ["16", "3522", "3795"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "3", "foul": "0"}, "teams": ["4090", "4300", "3516"]}, "coop": "0", "type": "Q_7", "eventKey": "2012DA", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "15", "foul": "0", "tele": "5"}, "teams": ["4259", "3676", "2995"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "6", "final": "10", "foul": "0"}, "teams": ["4084", "2948", "3961"]}, "coop": "0", "type": "Q_8", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["4359", "3037", "4351"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3409", "4350", "3697"]}, "coop": "0", "type": "Q_9", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3369", "4315", "4138"]}}, {"blue": {"score": {"brige": "10", "tele": "32", "hybrid": "11", "final": "53", "foul": "0"}, "teams": ["148", "16", "2950"]}, "coop": "2", "type": "Q_10", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3508", "3676", "3795"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["647", "4355", "4364"]}, "coop": "0", "type": "Q_11", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3005", "4259", "3497"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["3867", "3370", "1817"]}, "coop": "0", "type": "Q_12", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["2965", "4090", "4354"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "0", "final": "9", "foul": "0"}, "teams": ["3612", "2897", "4300"]}, "coop": "0", "type": "Q_13", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "9", "foul": "3", "tele": "6"}, "teams": ["4335", "3350", "3481"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3522", "2995", "3409"]}, "coop": "0", "type": "Q_14", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "8", "foul": "0", "tele": "2"}, "teams": ["3392", "1745", "2948"]}}, {"blue": {"score": {"brige": "0", "tele": "15", "hybrid": "0", "final": "15", "foul": "0"}, "teams": ["148", "4259", "4351"]}, "coop": "0", "type": "Q_15", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["2965", "3697", "1817"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3481", "3795", "4315"]}, "coop": "0", "type": "Q_16", "eventKey": "2012DA", "red": {"score": {"bridge": "10", "hybrid": "5", "final": "18", "foul": "0", "tele": "3"}, "teams": ["3370", "4300", "4359"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4084", "3369", "3516"]}, "coop": "0", "type": "Q_17", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3612", "3497", "1745"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["3676", "4364", "4138"]}, "coop": "0", "type": "Q_18", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["4355", "3961", "3522"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4354", "4350", "3867"]}, "coop": "0", "type": "Q_19", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["2995", "3350", "647"]}}, {"blue": {"score": {"brige": "0", "tele": "15", "hybrid": "12", "final": "27", "foul": "0"}, "teams": ["3037", "4335", "16"]}, "coop": "0", "type": "Q_20", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "4", "foul": "0", "tele": "4"}, "teams": ["4090", "3392", "3508"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3005", "4359", "2965"]}, "coop": "0", "type": "Q_21", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "9", "foul": "9", "tele": "0"}, "teams": ["2897", "2950", "3409"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "0", "final": "1", "foul": "0"}, "teams": ["4300", "3867", "4315"]}, "coop": "0", "type": "Q_22", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3961", "1745", "1817"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4335", "4364", "3522"]}, "coop": "2", "type": "Q_23", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "20", "foul": "0", "tele": "20"}, "teams": ["148", "3497", "3516"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "6", "final": "9", "foul": "0"}, "teams": ["3005", "2948", "647"]}, "coop": "0", "type": "Q_24", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3369", "4090", "3037"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "9", "foul": "9"}, "teams": ["3697", "4355", "3676"]}, "coop": "0", "type": "Q_25", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["4354", "3612", "3795"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2950", "4084", "3350"]}, "coop": "0", "type": "Q_26", "eventKey": "2012DA", "red": {"score": {"bridge": "20", "hybrid": "8", "final": "34", "foul": "6", "tele": "0"}, "teams": ["3370", "4138", "2995"]}}, {"blue": {"score": {"brige": "0", "tele": "15", "hybrid": "6", "final": "21", "foul": "0"}, "teams": ["4350", "4351", "16"]}, "coop": "0", "type": "Q_27", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "6", "tele": "0"}, "teams": ["3508", "4259", "2897"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "0", "final": "17", "foul": "9"}, "teams": ["3481", "4090", "3612"]}, "coop": "0", "type": "Q_28", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["3392", "4364", "4315"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3522", "4359", "3697"]}, "coop": "0", "type": "Q_29", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3369", "3867", "2995"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "17", "final": "30", "foul": "0"}, "teams": ["3676", "4084", "16"]}, "coop": "2", "type": "Q_30", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["4350", "3005", "4300"]}}, {"blue": {"score": {"brige": "10", "tele": "18", "hybrid": "6", "final": "34", "foul": "0"}, "teams": ["1817", "3350", "148"]}, "coop": "0", "type": "Q_31", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3795", "2897", "3037"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3508", "1745", "3370"]}, "coop": "0", "type": "Q_32", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["4259", "2965", "4355"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "0", "final": "15", "foul": "3"}, "teams": ["647", "3481", "4138"]}, "coop": "0", "type": "Q_33", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["2948", "4351", "3516"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "11", "foul": "9"}, "teams": ["3497", "4354", "2950"]}, "coop": "0", "type": "Q_34", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["3961", "4335", "3392"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "5", "final": "7", "foul": "0"}, "teams": ["3676", "3522", "3037"]}, "coop": "0", "type": "Q_35", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "16", "foul": "12", "tele": "4"}, "teams": ["3409", "2965", "4364"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["647", "3508", "3697"]}, "coop": "0", "type": "Q_36", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "4", "final": "7", "foul": "0", "tele": "3"}, "teams": ["2897", "2948", "3370"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "4", "foul": "0"}, "teams": ["3867", "4355", "4090"]}, "coop": "0", "type": "Q_37", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "17", "foul": "9", "tele": "8"}, "teams": ["3481", "2950", "4300"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "6", "foul": "0"}, "teams": ["4259", "4354", "1817"]}, "coop": "0", "type": "Q_38", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3409", "4084", "3612"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3516", "3795", "2995"]}, "coop": "0", "type": "Q_39", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3369", "3392", "4351"]}}, {"blue": {"score": {"brige": "0", "tele": "11", "hybrid": "6", "final": "17", "foul": "0"}, "teams": ["148", "1745", "4315"]}, "coop": "2", "type": "Q_40", "eventKey": "2012DA", "red": {"score": {"bridge": "10", "hybrid": "24", "final": "56", "foul": "0", "tele": "22"}, "teams": ["3350", "16", "3005"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["3497", "4359", "3961"]}, "coop": "0", "type": "Q_41", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["4138", "4335", "4350"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3369", "2965", "3612"]}, "coop": "0", "type": "Q_42", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "5", "foul": "0", "tele": "0"}, "teams": ["3508", "4355", "4300"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "0", "final": "1", "foul": "0"}, "teams": ["2950", "4315", "3522"]}, "coop": "0", "type": "Q_43", "eventKey": "2012DA", "red": {"score": {"bridge": "20", "hybrid": "5", "final": "35", "foul": "9", "tele": "1"}, "teams": ["1817", "2897", "4351"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "9", "foul": "9"}, "teams": ["3005", "4138", "3409"]}, "coop": "2", "type": "Q_44", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "22", "foul": "3", "tele": "7"}, "teams": ["4335", "2995", "148"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "0", "final": "1", "foul": "0"}, "teams": ["3497", "3392", "3697"]}, "coop": "0", "type": "Q_45", "eventKey": "2012DA", "red": {"score": {"bridge": "10", "hybrid": "5", "final": "22", "foul": "0", "tele": "7"}, "teams": ["3676", "4090", "4350"]}}, {"blue": {"score": {"brige": "0", "tele": "11", "hybrid": "6", "final": "17", "foul": "0"}, "teams": ["3516", "4364", "16"]}, "coop": "0", "type": "Q_46", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3867", "4084", "4359"]}}, {"blue": {"score": {"brige": "0", "tele": "7", "hybrid": "12", "final": "25", "foul": "6"}, "teams": ["3481", "3037", "2948"]}, "coop": "0", "type": "Q_47", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "12", "foul": "0", "tele": "0"}, "teams": ["4354", "1745", "3350"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3961", "3795", "4138"]}, "coop": "0", "type": "Q_48", "eventKey": "2012DA", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "10", "foul": "0", "tele": "0"}, "teams": ["4259", "647", "3370"]}}, {"blue": {"score": {"brige": "20", "tele": "4", "hybrid": "0", "final": "27", "foul": "3"}, "teams": ["4355", "4335", "1817"]}, "coop": "0", "type": "Q_49", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "18", "foul": "0", "tele": "6"}, "teams": ["16", "3697", "3369"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "4", "final": "15", "foul": "9"}, "teams": ["3005", "4351", "4090"]}, "coop": "0", "type": "Q_50", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["2965", "3497", "3522"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "4", "final": "5", "foul": "0"}, "teams": ["3370", "3392", "4354"]}, "coop": "0", "type": "Q_51", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "54", "foul": "15", "tele": "27"}, "teams": ["148", "2948", "4300"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "0", "final": "6", "foul": "0"}, "teams": ["2897", "2995", "3481"]}, "coop": "0", "type": "Q_52", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["3961", "647", "3612"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4259", "3350", "3037"]}, "coop": "0", "type": "Q_53", "eventKey": "2012DA", "red": {"score": {"bridge": "20", "hybrid": "5", "final": "34", "foul": "9", "tele": "0"}, "teams": ["4359", "4315", "3676"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "14", "foul": "12"}, "teams": ["4084", "3508", "4350"]}, "coop": "0", "type": "Q_54", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3409", "3867", "3516"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "0", "final": "8", "foul": "3"}, "teams": ["1745", "4364", "3481"]}, "coop": "0", "type": "Q_55", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["2950", "3795", "3697"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "9", "final": "11", "foul": "0"}, "teams": ["4355", "4359", "3350"]}, "coop": "1", "type": "Q_56", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "17", "foul": "0", "tele": "17"}, "teams": ["148", "3522", "4090"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4315", "2965", "2897"]}, "coop": "2", "type": "Q_57", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "1", "foul": "0", "tele": "1"}, "teams": ["3676", "3516", "4354"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4300", "3369", "4335"]}, "coop": "0", "type": "Q_58", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["4138", "3037", "3867"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "6", "final": "8", "foul": "0"}, "teams": ["2995", "3508", "2948"]}, "coop": "0", "type": "Q_59", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "10", "foul": "9", "tele": "1"}, "teams": ["1817", "3497", "3795"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "4", "foul": "0"}, "teams": ["3961", "4364", "3370"]}, "coop": "0", "type": "Q_60", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "34", "foul": "6", "tele": "16"}, "teams": ["3409", "16", "3392"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "6", "final": "16", "foul": "0"}, "teams": ["4259", "3612", "4350"]}, "coop": "0", "type": "Q_61", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "1", "foul": "0", "tele": "1"}, "teams": ["2950", "3005", "1745"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "10", "final": "16", "foul": "0"}, "teams": ["647", "4335", "3676"]}, "coop": "0", "type": "Q_62", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "6", "foul": "0", "tele": "0"}, "teams": ["4351", "4084", "4315"]}}, {"blue": {"score": {"brige": "0", "tele": "16", "hybrid": "12", "final": "28", "foul": "0"}, "teams": ["2995", "3961", "16"]}, "coop": "2", "type": "Q_63", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["3350", "2965", "3516"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "6", "final": "14", "foul": "0"}, "teams": ["3369", "2948", "4354"]}, "coop": "0", "type": "Q_64", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "0", "tele": "6"}, "teams": ["4350", "4364", "2950"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "5", "final": "5", "foul": "0"}, "teams": ["4300", "4259", "3522"]}, "coop": "0", "type": "Q_65", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "30", "foul": "0", "tele": "18"}, "teams": ["148", "3037", "647"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "4", "final": "4", "foul": "0"}, "teams": ["3867", "3497", "4351"]}, "coop": "0", "type": "Q_66", "eventKey": "2012DA", "red": {"score": {"bridge": "20", "hybrid": "4", "final": "26", "foul": "0", "tele": "2"}, "teams": ["4355", "3370", "3612"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["1745", "4090", "3795"]}, "coop": "0", "type": "Q_67", "eventKey": "2012DA", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "10", "foul": "0", "tele": "0"}, "teams": ["4138", "4084", "2897"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "0", "final": "1", "foul": "0"}, "teams": ["3508", "1817", "3005"]}, "coop": "0", "type": "Q_68", "eventKey": "2012DA", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "16", "foul": "0", "tele": "6"}, "teams": ["3392", "3481", "4359"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "4", "final": "6", "foul": "0"}, "teams": ["3409", "4300", "3350"]}, "coop": "0", "type": "Q_69", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "0", "tele": "6"}, "teams": ["3697", "4364", "4351"]}}, {"blue": {"score": {"brige": "10", "tele": "8", "hybrid": "12", "final": "30", "foul": "0"}, "teams": ["4355", "2897", "148"]}, "coop": "0", "type": "Q_70", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "1", "foul": "0", "tele": "1"}, "teams": ["4315", "2995", "3497"]}}, {"blue": {"score": {"brige": "20", "tele": "1", "hybrid": "0", "final": "21", "foul": "0"}, "teams": ["3612", "2950", "3392"]}, "coop": "0", "type": "Q_71", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3522", "4084", "647"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "4", "foul": "0"}, "teams": ["2965", "4335", "3867"]}, "coop": "0", "type": "Q_72", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "7", "foul": "0", "tele": "7"}, "teams": ["3795", "2948", "4259"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "0", "final": "12", "foul": "0"}, "teams": ["1745", "3369", "4359"]}, "coop": "0", "type": "Q_73", "eventKey": "2012DA", "red": {"score": {"bridge": "20", "hybrid": "10", "final": "43", "foul": "3", "tele": "10"}, "teams": ["3370", "3481", "3676"]}}, {"blue": {"score": {"brige": "0", "tele": "10", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["1817", "3409", "4090"]}, "coop": "0", "type": "Q_74", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3516", "3005", "3961"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "3", "foul": "3"}, "teams": ["3037", "4354", "3697"]}, "coop": "2", "type": "Q_75", "eventKey": "2012DA", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "34", "foul": "0", "tele": "12"}, "teams": ["4138", "16", "3508"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "4", "final": "4", "foul": "0"}, "teams": ["2965", "3370", "4084"]}, "coop": "0", "type": "Q_76", "eventKey": "2012DA", "red": {"score": {"bridge": "10", "hybrid": "10", "final": "34", "foul": "6", "tele": "8"}, "teams": ["4350", "148", "3481"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "4", "foul": "0"}, "teams": ["4335", "3350", "647"]}, "coop": "0", "type": "E_1", "eventKey": "2012DA", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "65", "foul": "6", "tele": "33"}, "teams": ["148", "16", "4090"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "0", "final": "1", "foul": "0"}, "teams": ["4259", "2897", "4355"]}, "coop": "0", "type": "E_2", "eventKey": "2012DA", "red": {"score": {"bridge": "40", "hybrid": "0", "final": "51", "foul": "9", "tele": "2"}, "teams": ["2995", "4084", "4138"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "6", "final": "11", "foul": "3"}, "teams": ["1817", "3516", "3370"]}, "coop": "0", "type": "E_3", "eventKey": "2012DA", "red": {"score": {"bridge": "20", "hybrid": "10", "final": "33", "foul": "0", "tele": "3"}, "teams": ["3676", "2948", "2950"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["4350", "4300", "3005"]}, "coop": "0", "type": "E_4", "eventKey": "2012DA", "red": {"score": {"bridge": "10", "hybrid": "5", "final": "15", "foul": "0", "tele": "0"}, "teams": ["3481", "3037", "3612"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "0", "final": "6", "foul": "0"}, "teams": ["4335", "3409", "647"]}, "coop": "0", "type": "E_5", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "17", "final": "70", "foul": "9", "tele": "44"}, "teams": ["148", "16", "4090"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2897", "4355", "4259"]}, "coop": "0", "type": "E_6", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["2995", "4138", "4084"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "6", "final": "22", "foul": "0"}, "teams": ["3370", "1817", "3516"]}, "coop": "0", "type": "E_7", "eventKey": "2012DA", "red": {"score": {"bridge": "10", "hybrid": "14", "final": "35", "foul": "3", "tele": "8"}, "teams": ["2948", "3676", "2950"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "4", "foul": "0"}, "teams": ["3005", "4300", "4350"]}, "coop": "0", "type": "E_8", "eventKey": "2012DA", "red": {"score": {"bridge": "10", "hybrid": "10", "final": "27", "foul": "3", "tele": "4"}, "teams": ["3037", "3612", "3481"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2897", "4355", "4259"]}, "coop": "0", "type": "E_10", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "5", "foul": "3", "tele": "2"}, "teams": ["4084", "2995", "4138"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["4138", "4084", "2995"]}, "coop": "0", "type": "E_13", "eventKey": "2012DA", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "68", "foul": "6", "tele": "24"}, "teams": ["4090", "16", "148"]}}, {"blue": {"score": {"brige": "0", "tele": "7", "hybrid": "5", "final": "12", "foul": "0"}, "teams": ["3481", "3037", "3612"]}, "coop": "0", "type": "E_14", "eventKey": "2012DA", "red": {"score": {"bridge": "20", "hybrid": "11", "final": "36", "foul": "0", "tele": "5"}, "teams": ["2950", "2948", "3676"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4084", "4138", "2995"]}, "coop": "0", "type": "E_15", "eventKey": "2012DA", "red": {"score": {"bridge": "40", "hybrid": "18", "final": "75", "foul": "6", "tele": "11"}, "teams": ["148", "4090", "16"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3481", "3612", "3037"]}, "coop": "0", "type": "E_16", "eventKey": "2012DA", "red": {"score": {"bridge": "20", "hybrid": "5", "final": "29", "foul": "0", "tele": "4"}, "teams": ["3676", "2950", "2948"]}}, {"blue": {"score": {"brige": "20", "tele": "2", "hybrid": "9", "final": "31", "foul": "0"}, "teams": ["3676", "2948", "2950"]}, "coop": "0", "type": "E_19", "eventKey": "2012DA", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "43", "foul": "0", "tele": "25"}, "teams": ["16", "4090", "148"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "13", "foul": "3"}, "teams": ["2950", "3676", "2948"]}, "coop": "0", "type": "E_20", "eventKey": "2012DA", "red": {"score": {"bridge": "10", "hybrid": "22", "final": "65", "foul": "0", "tele": "33"}, "teams": ["148", "16", "4090"]}}, {"blue": {"score": {"brige": "0", "tele": "7", "hybrid": "0", "final": "7", "foul": "0"}, "teams": ["3305", "1421", "935"]}, "coop": "2", "type": "Q_1", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "9", "foul": "9", "tele": "0"}, "teams": ["3626", "4378", "3355"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["3802", "2805", "4298"]}, "coop": "0", "type": "Q_2", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "8", "foul": "3", "tele": "0"}, "teams": ["4076", "704", "3730"]}}, {"blue": {"score": {"brige": "0", "tele": "7", "hybrid": "16", "final": "26", "foul": "3"}, "teams": ["3847", "4401", "3310"]}, "coop": "0", "type": "Q_3", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["2164", "1642", "1774"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3679", "3791", "3735"]}, "coop": "0", "type": "Q_4", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "21", "foul": "0", "tele": "9"}, "teams": ["3282", "1429", "3043"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "4", "foul": "0"}, "teams": ["2468", "4206", "4192"]}, "coop": "2", "type": "Q_5", "eventKey": "2012DA2", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "27", "foul": "0", "tele": "5"}, "teams": ["4317", "2848", "1296"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2943", "4045", "3413"]}, "coop": "0", "type": "Q_6", "eventKey": "2012DA2", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "10", "foul": "0", "tele": "0"}, "teams": ["2613", "441", "2747"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["2947", "4298", "3730"]}, "coop": "2", "type": "Q_7", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "12", "foul": "9", "tele": "3"}, "teams": ["456", "2857", "1429"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "9", "foul": "3"}, "teams": ["3043", "2848", "4401"]}, "coop": "0", "type": "Q_8", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "18", "foul": "9", "tele": "4"}, "teams": ["3802", "704", "1296"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4206", "3626", "1774"]}, "coop": "0", "type": "Q_9", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["1642", "2747", "2943"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3305", "2613", "4317"]}, "coop": "0", "type": "Q_10", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "3", "tele": "0"}, "teams": ["3735", "2805", "4076"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "12", "final": "18", "foul": "0"}, "teams": ["2947", "3679", "2468"]}, "coop": "0", "type": "Q_11", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "21", "foul": "9", "tele": "6"}, "teams": ["3355", "3310", "4192"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "5", "final": "20", "foul": "9"}, "teams": ["456", "2164", "4045"]}, "coop": "2", "type": "Q_12", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "7", "foul": "0", "tele": "7"}, "teams": ["4378", "1421", "3282"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["441", "3791", "3413"]}, "coop": "0", "type": "Q_13", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "30", "foul": "9", "tele": "3"}, "teams": ["2857", "935", "3847"]}}, {"blue": {"score": {"brige": "10", "tele": "8", "hybrid": "0", "final": "18", "foul": "0"}, "teams": ["2468", "2613", "704"]}, "coop": "2", "type": "Q_14", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "6", "foul": "0", "tele": "0"}, "teams": ["2943", "4206", "3310"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "8", "final": "30", "foul": "18"}, "teams": ["456", "4378", "3735"]}, "coop": "0", "type": "Q_15", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "3", "tele": "3"}, "teams": ["4076", "3802", "3626"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "11", "final": "21", "foul": "0"}, "teams": ["1296", "2164", "3282"]}, "coop": "0", "type": "Q_16", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "16", "final": "25", "foul": "0", "tele": "9"}, "teams": ["1429", "4401", "3413"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3730", "3043", "3791"]}, "coop": "0", "type": "Q_17", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "12", "foul": "0", "tele": "2"}, "teams": ["2747", "1421", "4192"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["441", "2857", "1642"]}, "coop": "0", "type": "Q_18", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "18", "foul": "6", "tele": "6"}, "teams": ["4317", "3847", "3679"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "0", "final": "17", "foul": "9"}, "teams": ["2848", "2805", "3355"]}, "coop": "0", "type": "Q_19", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["1774", "4045", "4298"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "6", "final": "33", "foul": "21"}, "teams": ["2848", "2805", "3355"]}, "coop": "0", "type": "Q_19", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "1", "foul": "0", "tele": "1"}, "teams": ["1774", "4045", "4298"]}}, {"blue": {"score": {"brige": "0", "tele": "23", "hybrid": "11", "final": "34", "foul": "0"}, "teams": ["935", "704", "1429"]}, "coop": "0", "type": "Q_20", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["3305", "2947", "4192"]}}, {"blue": {"score": {"brige": "0", "tele": "23", "hybrid": "16", "final": "42", "foul": "3"}, "teams": ["935", "704", "1429"]}, "coop": "0", "type": "Q_20", "eventKey": "2012DA2", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "12", "foul": "0", "tele": "2"}, "teams": ["3305", "2947", "4192"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "13", "final": "16", "foul": "3"}, "teams": ["3735", "2164", "2857"]}, "coop": "0", "type": "Q_21", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "9", "foul": "3", "tele": "0"}, "teams": ["4378", "2943", "1296"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "12", "final": "15", "foul": "3"}, "teams": ["2805", "3679", "1774"]}, "coop": "0", "type": "Q_22", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3791", "3282", "3626"]}}, {"blue": {"score": {"brige": "0", "tele": "11", "hybrid": "12", "final": "26", "foul": "3"}, "teams": ["935", "2947", "2613"]}, "coop": "0", "type": "Q_23", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "6", "foul": "0", "tele": "0"}, "teams": ["3730", "441", "3802"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "3", "foul": "3"}, "teams": ["2747", "4298", "3355"]}, "coop": "0", "type": "Q_24", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3043", "4206", "3413"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "10", "final": "14", "foul": "0"}, "teams": ["1421", "1642", "4401"]}, "coop": "0", "type": "Q_25", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "11", "foul": "3", "tele": "2"}, "teams": ["456", "4076", "2848"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "12", "final": "15", "foul": "0"}, "teams": ["4045", "4317", "3310"]}, "coop": "2", "type": "Q_26", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "9", "final": "18", "foul": "3", "tele": "6"}, "teams": ["2468", "3847", "3305"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["3626", "2947", "2943"]}, "coop": "0", "type": "Q_27", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "0", "tele": "6"}, "teams": ["3355", "1296", "3043"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "0", "final": "6", "foul": "0"}, "teams": ["2613", "456", "2805"]}, "coop": "2", "type": "Q_28", "eventKey": "2012DA2", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "36", "foul": "3", "tele": "11"}, "teams": ["2848", "3679", "4192"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["2468", "4401", "4076"]}, "coop": "0", "type": "Q_29", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "21", "foul": "0", "tele": "9"}, "teams": ["3730", "935", "3735"]}}, {"blue": {"score": {"brige": "10", "tele": "16", "hybrid": "10", "final": "36", "foul": "0"}, "teams": ["1421", "704", "3413"]}, "coop": "0", "type": "Q_30", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "9", "foul": "9", "tele": "0"}, "teams": ["3791", "1642", "4045"]}}, {"blue": {"score": {"brige": "10", "tele": "10", "hybrid": "6", "final": "26", "foul": "0"}, "teams": ["441", "3310", "4298"]}, "coop": "0", "type": "Q_31", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "3", "tele": "0"}, "teams": ["2747", "4378", "4317"]}}, {"blue": {"score": {"brige": "10", "tele": "18", "hybrid": "0", "final": "28", "foul": "0"}, "teams": ["4206", "1429", "3305"]}, "coop": "0", "type": "Q_32", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["1774", "3282", "3847"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "5", "final": "5", "foul": "0"}, "teams": ["2857", "2805", "3791"]}, "coop": "2", "type": "Q_33", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "20", "foul": "15", "tele": "5"}, "teams": ["2164", "3802", "2468"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "17", "final": "33", "foul": "0"}, "teams": ["3730", "2943", "1421"]}, "coop": "2", "type": "Q_34", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "15", "foul": "0", "tele": "3"}, "teams": ["3413", "3679", "3310"]}}, {"blue": {"score": {"brige": "0", "tele": "18", "hybrid": "4", "final": "25", "foul": "3"}, "teams": ["3282", "3355", "935"]}, "coop": "2", "type": "Q_35", "eventKey": "2012DA2", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "19", "foul": "0", "tele": "3"}, "teams": ["1296", "3847", "2747"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "0", "final": "12", "foul": "0"}, "teams": ["2848", "2164", "2947"]}, "coop": "0", "type": "Q_36", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["4298", "1642", "3305"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "0", "final": "16", "foul": "0"}, "teams": ["456", "4206", "3802"]}, "coop": "2", "type": "Q_37", "eventKey": "2012DA2", "red": {"score": {"bridge": "10", "hybrid": "5", "final": "19", "foul": "0", "tele": "4"}, "teams": ["704", "4317", "3735"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4378", "2857", "3043"]}, "coop": "0", "type": "Q_38", "eventKey": "2012DA2", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "22", "foul": "0", "tele": "6"}, "teams": ["2613", "1429", "4076"]}}, {"blue": {"score": {"brige": "20", "tele": "0", "hybrid": "0", "final": "20", "foul": "0"}, "teams": ["3626", "4045", "4192"]}, "coop": "0", "type": "Q_39", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "4", "final": "4", "foul": "0", "tele": "0"}, "teams": ["4401", "1774", "441"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "10", "final": "13", "foul": "0"}, "teams": ["3802", "1421", "4317"]}, "coop": "2", "type": "Q_40", "eventKey": "2012DA2", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "10", "foul": "0", "tele": "0"}, "teams": ["3305", "3413", "3282"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4378", "3679", "4076"]}, "coop": "0", "type": "Q_41", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "15", "foul": "6", "tele": "9"}, "teams": ["704", "4206", "3355"]}}, {"blue": {"score": {"brige": "0", "tele": "10", "hybrid": "11", "final": "21", "foul": "0"}, "teams": ["3847", "2943", "2848"]}, "coop": "0", "type": "Q_42", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "16", "foul": "0", "tele": "6"}, "teams": ["2747", "456", "2947"]}}, {"blue": {"score": {"brige": "10", "tele": "5", "hybrid": "22", "final": "37", "foul": "0"}, "teams": ["1642", "935", "2468"]}, "coop": "2", "type": "Q_43", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3043", "1774", "2613"]}}, {"blue": {"score": {"brige": "10", "tele": "12", "hybrid": "6", "final": "34", "foul": "6"}, "teams": ["1296", "4192", "3730"]}, "coop": "2", "type": "Q_44", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["4045", "441", "3735"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "12", "final": "25", "foul": "0"}, "teams": ["1429", "4298", "3626"]}, "coop": "0", "type": "Q_45", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "16", "final": "26", "foul": "0", "tele": "10"}, "teams": ["2164", "3791", "3310"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2857", "3413", "2747"]}, "coop": "0", "type": "Q_46", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "16", "final": "32", "foul": "3", "tele": "13"}, "teams": ["2805", "4401", "935"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "11", "final": "13", "foul": "0"}, "teams": ["3847", "704", "1642"]}, "coop": "0", "type": "Q_47", "eventKey": "2012DA2", "red": {"score": {"bridge": "10", "hybrid": "4", "final": "21", "foul": "0", "tele": "7"}, "teams": ["3282", "2468", "3730"]}}, {"blue": {"score": {"brige": "10", "tele": "8", "hybrid": "6", "final": "33", "foul": "9"}, "teams": ["1774", "2947", "1296"]}, "coop": "0", "type": "Q_48", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["4298", "4076", "4317"]}}, {"blue": {"score": {"brige": "10", "tele": "8", "hybrid": "22", "final": "40", "foul": "0"}, "teams": ["1429", "3310", "3735"]}, "coop": "0", "type": "Q_49", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "26", "foul": "18", "tele": "8"}, "teams": ["1421", "2805", "3626"]}}, {"blue": {"score": {"brige": "20", "tele": "17", "hybrid": "6", "final": "46", "foul": "3"}, "teams": ["2613", "4378", "2848"]}, "coop": "0", "type": "Q_50", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "4", "final": "4", "foul": "0", "tele": "0"}, "teams": ["4401", "2943", "3791"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "5", "final": "7", "foul": "0"}, "teams": ["2164", "4192", "3043"]}, "coop": "2", "type": "Q_51", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "0", "tele": "6"}, "teams": ["3355", "456", "441"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["4045", "3305", "3802"]}, "coop": "0", "type": "Q_52", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["3679", "2857", "4206"]}}, {"blue": {"score": {"brige": "10", "tele": "12", "hybrid": "5", "final": "27", "foul": "0"}, "teams": ["2468", "2848", "1774"]}, "coop": "2", "type": "Q_53", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3730", "3413", "4378"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "20", "final": "33", "foul": "0"}, "teams": ["3735", "3847", "3626"]}, "coop": "0", "type": "Q_54", "eventKey": "2012DA2", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "23", "foul": "3", "tele": "0"}, "teams": ["2613", "4298", "4192"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "6", "final": "19", "foul": "3"}, "teams": ["1429", "3802", "3791"]}, "coop": "0", "type": "Q_55", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["2943", "4317", "3355"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["1642", "4206", "3282"]}, "coop": "0", "type": "Q_56", "eventKey": "2012DA2", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "28", "foul": "0", "tele": "8"}, "teams": ["2805", "2947", "441"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3043", "2747", "4076"]}, "coop": "0", "type": "Q_57", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "16", "foul": "0", "tele": "10"}, "teams": ["3305", "3679", "2164"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "17", "final": "29", "foul": "0"}, "teams": ["935", "4045", "1296"]}, "coop": "2", "type": "Q_58", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "16", "final": "22", "foul": "0", "tele": "6"}, "teams": ["456", "3310", "1421"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "4", "final": "14", "foul": "0"}, "teams": ["4401", "3355", "2613"]}, "coop": "0", "type": "Q_59", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "9", "foul": "0", "tele": "9"}, "teams": ["2857", "704", "4298"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "11", "final": "27", "foul": "3"}, "teams": ["4192", "4378", "1429"]}, "coop": "0", "type": "Q_60", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["3802", "1642", "3043"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "12", "final": "21", "foul": "9"}, "teams": ["2805", "4317", "3730"]}, "coop": "2", "type": "Q_61", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "23", "foul": "3", "tele": "14"}, "teams": ["2164", "2943", "935"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2468", "3791", "2747"]}, "coop": "0", "type": "Q_62", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["4206", "2947", "4045"]}}, {"blue": {"score": {"brige": "10", "tele": "4", "hybrid": "12", "final": "26", "foul": "0"}, "teams": ["3310", "3282", "4076"]}, "coop": "0", "type": "Q_63", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "15", "foul": "0", "tele": "9"}, "teams": ["2848", "2857", "3626"]}}, {"blue": {"score": {"brige": "0", "tele": "17", "hybrid": "18", "final": "41", "foul": "6"}, "teams": ["1296", "3679", "456"]}, "coop": "0", "type": "Q_64", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "4", "final": "5", "foul": "0", "tele": "1"}, "teams": ["3413", "3735", "1774"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "5", "final": "13", "foul": "0"}, "teams": ["441", "1421", "3847"]}, "coop": "0", "type": "Q_65", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "11", "foul": "0", "tele": "6"}, "teams": ["4401", "704", "3305"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4298", "3282", "2943"]}, "coop": "0", "type": "Q_66", "eventKey": "2012DA2", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "34", "foul": "0", "tele": "24"}, "teams": ["4076", "935", "4192"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "0", "final": "9", "foul": "3"}, "teams": ["3735", "3802", "3355"]}, "coop": "0", "type": "Q_67", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "28", "foul": "3", "tele": "19"}, "teams": ["3310", "1642", "2848"]}}, {"blue": {"score": {"brige": "0", "tele": "10", "hybrid": "5", "final": "15", "foul": "0"}, "teams": ["1774", "704", "2747"]}, "coop": "0", "type": "Q_68", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "12", "foul": "0", "tele": "2"}, "teams": ["2857", "2613", "1421"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "10", "final": "12", "foul": "0"}, "teams": ["2164", "3847", "4378"]}, "coop": "2", "type": "Q_69", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "4", "foul": "0", "tele": "4"}, "teams": ["2805", "3043", "2468"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "12", "final": "20", "foul": "0"}, "teams": ["3730", "456", "3305"]}, "coop": "0", "type": "Q_70", "eventKey": "2012DA2", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "28", "foul": "0", "tele": "12"}, "teams": ["4206", "1296", "3791"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "3", "foul": "0"}, "teams": ["2947", "3413", "4317"]}, "coop": "0", "type": "Q_71", "eventKey": "2012DA2", "red": {"score": {"bridge": "10", "hybrid": "16", "final": "29", "foul": "0", "tele": "3"}, "teams": ["4401", "3679", "3626"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "4", "foul": "0"}, "teams": ["441", "2943", "4076"]}, "coop": "2", "type": "Q_72", "eventKey": "2012DA2", "red": {"score": {"bridge": "10", "hybrid": "16", "final": "56", "foul": "15", "tele": "15"}, "teams": ["1429", "4045", "2468"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "10", "final": "19", "foul": "0"}, "teams": ["3282", "704", "441"]}, "coop": "0", "type": "E_1", "eventKey": "2012DA2", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "52", "foul": "0", "tele": "30"}, "teams": ["4206", "935", "3310"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "6", "final": "9", "foul": "0"}, "teams": ["4192", "3679", "3730"]}, "coop": "0", "type": "E_2", "eventKey": "2012DA2", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "20", "foul": "0", "tele": "10"}, "teams": ["3305", "1296", "1421"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "4", "final": "7", "foul": "0"}, "teams": ["3802", "3355", "2805"]}, "coop": "0", "type": "E_3", "eventKey": "2012DA2", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "33", "foul": "0", "tele": "23"}, "teams": ["2848", "2613", "2164"]}}, {"blue": {"score": {"brige": "20", "tele": "0", "hybrid": "12", "final": "32", "foul": "0"}, "teams": ["456", "3847", "3735"]}, "coop": "0", "type": "E_4", "eventKey": "2012DA2", "red": {"score": {"bridge": "20", "hybrid": "17", "final": "39", "foul": "0", "tele": "2"}, "teams": ["4045", "2468", "1429"]}}, {"blue": {"score": {"brige": "10", "tele": "11", "hybrid": "15", "final": "36", "foul": "0"}, "teams": ["704", "4317", "441"]}, "coop": "0", "type": "E_5", "eventKey": "2012DA2", "red": {"score": {"bridge": "10", "hybrid": "17", "final": "35", "foul": "0", "tele": "8"}, "teams": ["935", "4206", "3310"]}}, {"blue": {"score": {"brige": "10", "tele": "8", "hybrid": "6", "final": "24", "foul": "0"}, "teams": ["4192", "3730", "3679"]}, "coop": "0", "type": "E_6", "eventKey": "2012DA2", "red": {"score": {"bridge": "20", "hybrid": "16", "final": "42", "foul": "0", "tele": "6"}, "teams": ["1296", "1421", "3305"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "0", "final": "12", "foul": "0"}, "teams": ["3802", "3355", "2805"]}, "coop": "0", "type": "E_7", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "31", "foul": "0", "tele": "19"}, "teams": ["2164", "2848", "2613"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "11", "final": "13", "foul": "0"}, "teams": ["3847", "3735", "456"]}, "coop": "0", "type": "E_8", "eventKey": "2012DA2", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "32", "foul": "0", "tele": "6"}, "teams": ["4045", "1429", "2468"]}}, {"blue": {"score": {"brige": "10", "tele": "10", "hybrid": "15", "final": "35", "foul": "0"}, "teams": ["704", "4317", "441"]}, "coop": "0", "type": "E_9", "eventKey": "2012DA2", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "49", "foul": "3", "tele": "18"}, "teams": ["935", "3310", "4206"]}}, {"blue": {"score": {"brige": "20", "tele": "9", "hybrid": "17", "final": "46", "foul": "0"}, "teams": ["1421", "1296", "3305"]}, "coop": "0", "type": "E_13", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "27", "foul": "0", "tele": "15"}, "teams": ["3310", "935", "4206"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "12", "final": "21", "foul": "0"}, "teams": ["4045", "1429", "2468"]}, "coop": "0", "type": "E_14", "eventKey": "2012DA2", "red": {"score": {"bridge": "20", "hybrid": "11", "final": "49", "foul": "9", "tele": "9"}, "teams": ["2848", "2164", "2613"]}}, {"blue": {"score": {"brige": "20", "tele": "11", "hybrid": "10", "final": "41", "foul": "0"}, "teams": ["1296", "3305", "1421"]}, "coop": "0", "type": "E_15", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "42", "foul": "0", "tele": "24"}, "teams": ["935", "3310", "4206"]}}, {"blue": {"score": {"brige": "20", "tele": "3", "hybrid": "11", "final": "37", "foul": "3"}, "teams": ["2468", "1429", "4045"]}, "coop": "0", "type": "E_16", "eventKey": "2012DA2", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "22", "foul": "0", "tele": "2"}, "teams": ["2848", "2164", "2613"]}}, {"blue": {"score": {"brige": "20", "tele": "9", "hybrid": "10", "final": "42", "foul": "3"}, "teams": ["1296", "3305", "1421"]}, "coop": "0", "type": "E_17", "eventKey": "2012DA2", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "46", "foul": "0", "tele": "18"}, "teams": ["3310", "935", "4206"]}}, {"blue": {"score": {"brige": "20", "tele": "6", "hybrid": "22", "final": "57", "foul": "9"}, "teams": ["4045", "2468", "1429"]}, "coop": "0", "type": "E_18", "eventKey": "2012DA2", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "15", "foul": "0", "tele": "9"}, "teams": ["2164", "2613", "2848"]}}, {"blue": {"score": {"brige": "20", "tele": "9", "hybrid": "5", "final": "34", "foul": "0"}, "teams": ["2468", "1429", "4045"]}, "coop": "0", "type": "E_19", "eventKey": "2012DA2", "red": {"score": {"bridge": "40", "hybrid": "23", "final": "99", "foul": "21", "tele": "15"}, "teams": ["3310", "935", "4206"]}}, {"blue": {"score": {"brige": "20", "tele": "4", "hybrid": "6", "final": "30", "foul": "0"}, "teams": ["2468", "1429", "4045"]}, "coop": "0", "type": "E_20", "eventKey": "2012DA2", "red": {"score": {"bridge": "10", "hybrid": "24", "final": "67", "foul": "6", "tele": "27"}, "teams": ["935", "3310", "4206"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "6", "final": "18", "foul": "0"}, "teams": ["619", "1731", "461"]}, "coop": "1", "type": "Q_1", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "4", "foul": "0", "tele": "4"}, "teams": ["2962", "2121", "1418"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3279", "4137", "1849"]}, "coop": "0", "type": "Q_2", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "21", "final": "23", "foul": "0", "tele": "2"}, "teams": ["449", "1646", "3373"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "12", "final": "20", "foul": "3"}, "teams": ["1719", "53", "2961"]}, "coop": "2", "type": "Q_3", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "10", "foul": "0", "tele": "0"}, "teams": ["768", "2900", "1389"]}}, {"blue": {"score": {"brige": "20", "tele": "19", "hybrid": "11", "final": "50", "foul": "0"}, "teams": ["2849", "612", "836"]}, "coop": "2", "type": "Q_4", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "4", "final": "14", "foul": "0", "tele": "10"}, "teams": ["4099", "639", "1885"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "3", "foul": "3"}, "teams": ["1522", "1915", "2377"]}, "coop": "0", "type": "Q_5", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "15", "foul": "0", "tele": "15"}, "teams": ["174", "1747", "2914"]}}, {"blue": {"score": {"brige": "10", "tele": "20", "hybrid": "12", "final": "45", "foul": "3"}, "teams": ["1218", "4067", "467"]}, "coop": "2", "type": "Q_6", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "6", "foul": "0", "tele": "0"}, "teams": ["3793", "2534", "4288"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "6", "final": "19", "foul": "0"}, "teams": ["87", "3558", "141"]}, "coop": "0", "type": "Q_7", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "7", "foul": "0", "tele": "7"}, "teams": ["4266", "2537", "3455"]}}, {"blue": {"score": {"brige": "10", "tele": "13", "hybrid": "6", "final": "41", "foul": "12"}, "teams": ["614", "346", "116"]}, "coop": "0", "type": "Q_8", "eventKey": "2012DC", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "24", "foul": "0", "tele": "4"}, "teams": ["4242", "3123", "2963"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "6", "final": "14", "foul": "0"}, "teams": ["2912", "395", "1123"]}, "coop": "0", "type": "Q_9", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "22", "final": "33", "foul": "0", "tele": "11"}, "teams": ["357", "620", "2964"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "5", "final": "15", "foul": "0"}, "teams": ["611", "4083", "2579"]}, "coop": "0", "type": "Q_10", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "12", "foul": "0", "tele": "12"}, "teams": ["2421", "2911", "888"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "6", "final": "12", "foul": "0"}, "teams": ["134", "1849", "1522"]}, "coop": "0", "type": "Q_11", "eventKey": "2012DC", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "48", "foul": "21", "tele": "7"}, "teams": ["709", "623", "836"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "10", "final": "21", "foul": "3"}, "teams": ["467", "2537", "2121"]}, "coop": "0", "type": "Q_12", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "4", "foul": "0", "tele": "4"}, "teams": ["4099", "2377", "3373"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "0", "final": "13", "foul": "0"}, "teams": ["1915", "2534", "2962"]}, "coop": "0", "type": "Q_13", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "5", "foul": "0", "tele": "0"}, "teams": ["3793", "4137", "346"]}}, {"blue": {"score": {"brige": "10", "tele": "23", "hybrid": "12", "final": "48", "foul": "3"}, "teams": ["1731", "3455", "1218"]}, "coop": "0", "type": "Q_14", "eventKey": "2012DC", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "30", "foul": "0", "tele": "8"}, "teams": ["4242", "2961", "1885"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "10", "final": "12", "foul": "0"}, "teams": ["1123", "614", "1389"]}, "coop": "0", "type": "Q_15", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "21", "foul": "9", "tele": "7"}, "teams": ["4288", "2579", "2912"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "17", "final": "17", "foul": "0"}, "teams": ["2911", "395", "449"]}, "coop": "0", "type": "Q_16", "eventKey": "2012DC", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "16", "foul": "0", "tele": "0"}, "teams": ["1747", "619", "709"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "19", "foul": "9"}, "teams": ["2963", "2421", "174"]}, "coop": "0", "type": "Q_17", "eventKey": "2012DC", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "25", "foul": "0", "tele": "5"}, "teams": ["768", "87", "53"]}}, {"blue": {"score": {"brige": "10", "tele": "11", "hybrid": "0", "final": "21", "foul": "0"}, "teams": ["2900", "623", "620"]}, "coop": "2", "type": "Q_18", "eventKey": "2012DC", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "18", "foul": "3", "tele": "5"}, "teams": ["639", "3558", "4067"]}}, {"blue": {"score": {"brige": "10", "tele": "7", "hybrid": "10", "final": "27", "foul": "0"}, "teams": ["612", "3279", "1418"]}, "coop": "0", "type": "Q_19", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "5", "foul": "0", "tele": "0"}, "teams": ["611", "4266", "2849"]}}, {"blue": {"score": {"brige": "10", "tele": "27", "hybrid": "6", "final": "43", "foul": "0"}, "teams": ["1719", "357", "888"]}, "coop": "2", "type": "Q_20", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "19", "foul": "0", "tele": "13"}, "teams": ["3123", "134", "141"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "6", "final": "19", "foul": "0"}, "teams": ["461", "2964", "2914"]}, "coop": "2", "type": "Q_21", "eventKey": "2012DC", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "25", "foul": "0", "tele": "3"}, "teams": ["1646", "4083", "116"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "0", "final": "22", "foul": "9"}, "teams": ["4137", "2912", "768"]}, "coop": "2", "type": "Q_22", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "30", "foul": "0", "tele": "19"}, "teams": ["346", "1218", "395"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "0", "final": "6", "foul": "0"}, "teams": ["2421", "3455", "1747"]}, "coop": "0", "type": "Q_23", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "10", "foul": "3", "tele": "2"}, "teams": ["619", "3373", "614"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["3279", "3558", "611"]}, "coop": "0", "type": "Q_24", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "15", "foul": "9", "tele": "0"}, "teams": ["1522", "2962", "4099"]}}, {"blue": {"score": {"brige": "20", "tele": "5", "hybrid": "10", "final": "38", "foul": "3"}, "teams": ["3123", "53", "639"]}, "coop": "2", "type": "Q_25", "eventKey": "2012DC", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "24", "foul": "3", "tele": "5"}, "teams": ["1731", "2534", "709"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "12", "final": "12", "foul": "0"}, "teams": ["1646", "1123", "2963"]}, "coop": "2", "type": "Q_26", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "14", "foul": "0", "tele": "8"}, "teams": ["4266", "467", "4083"]}}, {"blue": {"score": {"brige": "0", "tele": "16", "hybrid": "12", "final": "28", "foul": "0"}, "teams": ["449", "836", "1885"]}, "coop": "1", "type": "Q_27", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "23", "final": "33", "foul": "0", "tele": "10"}, "teams": ["1389", "461", "174"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "0", "final": "15", "foul": "9"}, "teams": ["2900", "1915", "134"]}, "coop": "0", "type": "Q_28", "eventKey": "2012DC", "red": {"score": {"bridge": "10", "hybrid": "5", "final": "15", "foul": "0", "tele": "0"}, "teams": ["87", "2964", "2849"]}}, {"blue": {"score": {"brige": "10", "tele": "16", "hybrid": "0", "final": "26", "foul": "0"}, "teams": ["2537", "1849", "1418"]}, "coop": "2", "type": "Q_29", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "17", "foul": "0", "tele": "17"}, "teams": ["888", "620", "116"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "12", "final": "15", "foul": "0"}, "teams": ["2911", "1719", "4242"]}, "coop": "0", "type": "Q_30", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "22", "final": "38", "foul": "6", "tele": "10"}, "teams": ["4288", "2121", "612"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "6", "final": "16", "foul": "0"}, "teams": ["2961", "3793", "141"]}, "coop": "0", "type": "Q_31", "eventKey": "2012DC", "red": {"score": {"bridge": "20", "hybrid": "24", "final": "61", "foul": "12", "tele": "5"}, "teams": ["623", "2579", "2377"]}}, {"blue": {"score": {"brige": "10", "tele": "12", "hybrid": "23", "final": "54", "foul": "9"}, "teams": ["357", "4067", "836"]}, "coop": "0", "type": "Q_32", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "0", "tele": "6"}, "teams": ["2914", "1731", "611"]}}, {"blue": {"score": {"brige": "20", "tele": "0", "hybrid": "16", "final": "36", "foul": "0"}, "teams": ["2912", "2849", "4083"]}, "coop": "0", "type": "Q_33", "eventKey": "2012DC", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "20", "foul": "0", "tele": "0"}, "teams": ["3455", "53", "4137"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "10", "final": "15", "foul": "3"}, "teams": ["768", "3279", "3373"]}, "coop": "0", "type": "Q_34", "eventKey": "2012DC", "red": {"score": {"bridge": "10", "hybrid": "20", "final": "41", "foul": "0", "tele": "11"}, "teams": ["2964", "639", "888"]}}, {"blue": {"score": {"brige": "10", "tele": "16", "hybrid": "11", "final": "37", "foul": "0"}, "teams": ["2537", "1719", "612"]}, "coop": "2", "type": "Q_35", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "17", "foul": "3", "tele": "8"}, "teams": ["1123", "346", "1522"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "22", "final": "28", "foul": "0"}, "teams": ["4266", "614", "1885"]}, "coop": "2", "type": "Q_36", "eventKey": "2012DC", "red": {"score": {"bridge": "10", "hybrid": "20", "final": "44", "foul": "0", "tele": "14"}, "teams": ["620", "449", "134"]}}, {"blue": {"score": {"brige": "10", "tele": "18", "hybrid": "12", "final": "40", "foul": "0"}, "teams": ["174", "2377", "2962"]}, "coop": "0", "type": "Q_37", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "30", "foul": "3", "tele": "9"}, "teams": ["4288", "357", "709"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "6", "foul": "0"}, "teams": ["4242", "141", "2900"]}, "coop": "2", "type": "Q_38", "eventKey": "2012DC", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "21", "foul": "6", "tele": "5"}, "teams": ["1849", "2914", "467"]}}, {"blue": {"score": {"brige": "20", "tele": "0", "hybrid": "12", "final": "38", "foul": "6"}, "teams": ["2534", "116", "4099"]}, "coop": "0", "type": "Q_39", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "7", "foul": "0", "tele": "7"}, "teams": ["1646", "2911", "2579"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "12", "final": "25", "foul": "0"}, "teams": ["461", "395", "2421"]}, "coop": "0", "type": "Q_40", "eventKey": "2012DC", "red": {"score": {"bridge": "10", "hybrid": "9", "final": "23", "foul": "0", "tele": "4"}, "teams": ["3123", "3793", "4067"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "20", "final": "33", "foul": "9"}, "teams": ["623", "1418", "1747"]}, "coop": "0", "type": "Q_41", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "15", "foul": "3", "tele": "12"}, "teams": ["87", "1389", "2121"]}}, {"blue": {"score": {"brige": "0", "tele": "27", "hybrid": "0", "final": "30", "foul": "3"}, "teams": ["2961", "1218", "1915"]}, "coop": "2", "type": "Q_42", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["619", "3558", "2963"]}}, {"blue": {"score": {"brige": "10", "tele": "27", "hybrid": "6", "final": "43", "foul": "0"}, "teams": ["346", "2914", "3373"]}, "coop": "0", "type": "Q_43", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "16", "final": "32", "foul": "0", "tele": "16"}, "teams": ["709", "620", "4266"]}}, {"blue": {"score": {"brige": "10", "tele": "4", "hybrid": "22", "final": "39", "foul": "3"}, "teams": ["346", "2914", "3373"]}, "coop": "0", "type": "Q_43", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "11", "foul": "0", "tele": "1"}, "teams": ["709", "620", "4266"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "20", "final": "28", "foul": "0"}, "teams": ["1731", "639", "2900"]}, "coop": "2", "type": "Q_44", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "0", "tele": "6"}, "teams": ["449", "4288", "4137"]}}, {"blue": {"score": {"brige": "10", "tele": "5", "hybrid": "6", "final": "21", "foul": "0"}, "teams": ["3793", "1123", "768"]}, "coop": "0", "type": "Q_45", "eventKey": "2012DC", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "28", "foul": "0", "tele": "6"}, "teams": ["3455", "116", "836"]}}, {"blue": {"score": {"brige": "0", "tele": "19", "hybrid": "12", "final": "31", "foul": "0"}, "teams": ["888", "467", "53"]}, "coop": "0", "type": "Q_46", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "24", "foul": "0", "tele": "18"}, "teams": ["614", "612", "1522"]}}, {"blue": {"score": {"brige": "10", "tele": "16", "hybrid": "11", "final": "46", "foul": "9"}, "teams": ["1747", "3123", "2121"]}, "coop": "2", "type": "Q_47", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3558", "4083", "2961"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "4", "final": "16", "foul": "0"}, "teams": ["2963", "623", "3279"]}, "coop": "0", "type": "Q_48", "eventKey": "2012DC", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "22", "foul": "0", "tele": "0"}, "teams": ["461", "2537", "2911"]}}, {"blue": {"score": {"brige": "0", "tele": "10", "hybrid": "12", "final": "22", "foul": "0"}, "teams": ["174", "134", "611"]}, "coop": "0", "type": "Q_49", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "9", "foul": "0", "tele": "3"}, "teams": ["2534", "141", "2912"]}}, {"blue": {"score": {"brige": "0", "tele": "19", "hybrid": "22", "final": "41", "foul": "0"}, "teams": ["1646", "357", "1418"]}, "coop": "2", "type": "Q_50", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "35", "foul": "0", "tele": "23"}, "teams": ["1885", "2421", "1218"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "4", "final": "8", "foul": "0"}, "teams": ["87", "4242", "2579"]}, "coop": "0", "type": "Q_51", "eventKey": "2012DC", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "28", "foul": "0", "tele": "6"}, "teams": ["2964", "2377", "619"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "5", "final": "20", "foul": "3"}, "teams": ["1389", "1849", "2849"]}, "coop": "0", "type": "Q_52", "eventKey": "2012DC", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "13", "foul": "0", "tele": "3"}, "teams": ["395", "2962", "4067"]}}, {"blue": {"score": {"brige": "20", "tele": "9", "hybrid": "6", "final": "35", "foul": "0"}, "teams": ["4099", "614", "1731"]}, "coop": "0", "type": "Q_53", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "16", "final": "24", "foul": "3", "tele": "5"}, "teams": ["1915", "1719", "623"]}}, {"blue": {"score": {"brige": "0", "tele": "21", "hybrid": "0", "final": "21", "foul": "0"}, "teams": ["2121", "3793", "888"]}, "coop": "0", "type": "Q_54", "eventKey": "2012DC", "red": {"score": {"bridge": "10", "hybrid": "11", "final": "37", "foul": "3", "tele": "13"}, "teams": ["2912", "2900", "174"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "3", "foul": "3"}, "teams": ["3455", "4288", "2914"]}, "coop": "0", "type": "Q_55", "eventKey": "2012DC", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "28", "foul": "0", "tele": "6"}, "teams": ["3279", "134", "461"]}}, {"blue": {"score": {"brige": "10", "tele": "5", "hybrid": "24", "final": "42", "foul": "3"}, "teams": ["2964", "467", "836"]}, "coop": "2", "type": "Q_56", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "6", "foul": "0", "tele": "0"}, "teams": ["2911", "346", "2961"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "0", "final": "12", "foul": "0"}, "teams": ["2421", "3558", "2534"]}, "coop": "2", "type": "Q_57", "eventKey": "2012DC", "red": {"score": {"bridge": "10", "hybrid": "5", "final": "24", "foul": "0", "tele": "9"}, "teams": ["449", "2377", "1123"]}}, {"blue": {"score": {"brige": "10", "tele": "8", "hybrid": "0", "final": "27", "foul": "9"}, "teams": ["1885", "3123", "3373"]}, "coop": "0", "type": "Q_58", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "10", "foul": "0", "tele": "0"}, "teams": ["141", "2962", "53"]}}, {"blue": {"score": {"brige": "0", "tele": "10", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["87", "709", "4137"]}, "coop": "2", "type": "Q_59", "eventKey": "2012DC", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "10", "foul": "0", "tele": "0"}, "teams": ["612", "116", "4067"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "6", "final": "12", "foul": "0"}, "teams": ["4266", "357", "1849"]}, "coop": "0", "type": "Q_60", "eventKey": "2012DC", "red": {"score": {"bridge": "10", "hybrid": "4", "final": "20", "foul": "0", "tele": "6"}, "teams": ["619", "768", "4099"]}}, {"blue": {"score": {"brige": "20", "tele": "22", "hybrid": "0", "final": "42", "foul": "0"}, "teams": ["1218", "1389", "4083"]}, "coop": "0", "type": "Q_61", "eventKey": "2012DC", "red": {"score": {"bridge": "10", "hybrid": "17", "final": "29", "foul": "0", "tele": "2"}, "teams": ["2537", "1915", "611"]}}, {"blue": {"score": {"brige": "0", "tele": "14", "hybrid": "21", "final": "35", "foul": "0"}, "teams": ["1646", "1719", "620"]}, "coop": "2", "type": "Q_62", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "22", "final": "25", "foul": "0", "tele": "3"}, "teams": ["2963", "2849", "1747"]}}, {"blue": {"score": {"brige": "20", "tele": "1", "hybrid": "9", "final": "30", "foul": "0"}, "teams": ["395", "4242", "1522"]}, "coop": "0", "type": "Q_63", "eventKey": "2012DC", "red": {"score": {"bridge": "20", "hybrid": "14", "final": "38", "foul": "0", "tele": "4"}, "teams": ["639", "2579", "1418"]}}, {"blue": {"score": {"brige": "0", "tele": "14", "hybrid": "24", "final": "50", "foul": "12"}, "teams": ["53", "346", "2121"]}, "coop": "0", "type": "Q_64", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["1123", "4067", "3279"]}}, {"blue": {"score": {"brige": "10", "tele": "7", "hybrid": "12", "final": "29", "foul": "0"}, "teams": ["4099", "87", "467"]}, "coop": "2", "type": "Q_65", "eventKey": "2012DC", "red": {"score": {"bridge": "10", "hybrid": "10", "final": "36", "foul": "12", "tele": "4"}, "teams": ["449", "2914", "3123"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["116", "4266", "2962"]}, "coop": "2", "type": "Q_66", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "53", "foul": "3", "tele": "32"}, "teams": ["836", "2900", "1218"]}}, {"blue": {"score": {"brige": "10", "tele": "20", "hybrid": "18", "final": "48", "foul": "0"}, "teams": ["620", "2377", "768"]}, "coop": "0", "type": "Q_67", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "16", "foul": "0", "tele": "4"}, "teams": ["134", "4083", "612"]}}, {"blue": {"score": {"brige": "0", "tele": "7", "hybrid": "12", "final": "25", "foul": "6"}, "teams": ["611", "4288", "1646"]}, "coop": "0", "type": "Q_68", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "11", "foul": "0", "tele": "0"}, "teams": ["395", "3373", "623"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "12", "final": "21", "foul": "3"}, "teams": ["174", "2579", "2964"]}, "coop": "2", "type": "Q_69", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "20", "foul": "0", "tele": "9"}, "teams": ["1418", "3455", "1719"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "10", "final": "18", "foul": "0"}, "teams": ["1389", "2963", "141"]}, "coop": "0", "type": "Q_70", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "23", "foul": "0", "tele": "11"}, "teams": ["2421", "1522", "1731"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "28", "final": "43", "foul": "3"}, "teams": ["888", "2534", "1747"]}, "coop": "0", "type": "Q_71", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "9", "foul": "0", "tele": "3"}, "teams": ["709", "4242", "461"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "17", "final": "32", "foul": "3"}, "teams": ["2849", "4137", "357"]}, "coop": "2", "type": "Q_72", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["2537", "2961", "614"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "10", "final": "11", "foul": "0"}, "teams": ["3558", "2911", "1915"]}, "coop": "2", "type": "Q_73", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "17", "final": "25", "foul": "0", "tele": "8"}, "teams": ["2912", "1885", "1849"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "10", "final": "10", "foul": "0"}, "teams": ["3558", "2911", "1915"]}, "coop": "0", "type": "Q_73", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "10", "foul": "3", "tele": "2"}, "teams": ["2912", "1885", "1849"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "6", "final": "14", "foul": "0"}, "teams": ["3793", "116", "134"]}, "coop": "2", "type": "Q_74", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "4", "final": "6", "foul": "0", "tele": "2"}, "teams": ["639", "619", "611"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "0", "final": "9", "foul": "3"}, "teams": ["2900", "3123", "2964"]}, "coop": "2", "type": "Q_75", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "28", "final": "79", "foul": "24", "tele": "27"}, "teams": ["620", "1522", "1218"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "5", "final": "20", "foul": "9"}, "teams": ["4067", "3455", "2377"]}, "coop": "0", "type": "Q_76", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "24", "foul": "3", "tele": "9"}, "teams": ["888", "2962", "2963"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "18", "final": "26", "foul": "0"}, "teams": ["4266", "836", "4137"]}, "coop": "2", "type": "Q_77", "eventKey": "2012DC", "red": {"score": {"bridge": "10", "hybrid": "13", "final": "23", "foul": "0", "tele": "0"}, "teams": ["53", "2579", "1747"]}}, {"blue": {"score": {"brige": "10", "tele": "13", "hybrid": "11", "final": "34", "foul": "0"}, "teams": ["3373", "1123", "1731"]}, "coop": "2", "type": "Q_78", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "35", "foul": "3", "tele": "21"}, "teams": ["2911", "2849", "174"]}}, {"blue": {"score": {"brige": "10", "tele": "8", "hybrid": "0", "final": "18", "foul": "0"}, "teams": ["2421", "2912", "619"]}, "coop": "2", "type": "Q_79", "eventKey": "2012DC", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "32", "foul": "0", "tele": "10"}, "teams": ["3279", "467", "1719"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "22", "final": "31", "foul": "6"}, "teams": ["2537", "623", "2534"]}, "coop": "0", "type": "Q_80", "eventKey": "2012DC", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "10", "foul": "0", "tele": "0"}, "teams": ["395", "2914", "1885"]}}, {"blue": {"score": {"brige": "20", "tele": "7", "hybrid": "15", "final": "45", "foul": "3"}, "teams": ["4099", "449", "1418"]}, "coop": "0", "type": "Q_81", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "35", "foul": "0", "tele": "17"}, "teams": ["346", "141", "4083"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "20", "final": "33", "foul": "0"}, "teams": ["639", "4288", "461"]}, "coop": "2", "type": "Q_82", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "4", "foul": "0", "tele": "4"}, "teams": ["2961", "1849", "87"]}}, {"blue": {"score": {"brige": "10", "tele": "18", "hybrid": "0", "final": "28", "foul": "0"}, "teams": ["4242", "612", "3558"]}, "coop": "2", "type": "Q_83", "eventKey": "2012DC", "red": {"score": {"bridge": "10", "hybrid": "17", "final": "46", "foul": "0", "tele": "19"}, "teams": ["357", "1389", "3793"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "11", "final": "29", "foul": "6"}, "teams": ["2121", "709", "1646"]}, "coop": "0", "type": "Q_84", "eventKey": "2012DC", "red": {"score": {"bridge": "10", "hybrid": "5", "final": "15", "foul": "0", "tele": "0"}, "teams": ["614", "1915", "768"]}}, {"blue": {"score": {"brige": "10", "tele": "8", "hybrid": "12", "final": "30", "foul": "0"}, "teams": ["4266", "395", "2377"]}, "coop": "2", "type": "Q_85", "eventKey": "2012DC", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "42", "foul": "0", "tele": "16"}, "teams": ["1719", "1731", "116"]}}, {"blue": {"score": {"brige": "0", "tele": "26", "hybrid": "32", "final": "58", "foul": "0"}, "teams": ["1218", "623", "134"]}, "coop": "2", "type": "Q_86", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["1123", "4137", "2421"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "10", "final": "31", "foul": "9"}, "teams": ["1747", "611", "346"]}, "coop": "0", "type": "Q_87", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "5", "foul": "3", "tele": "2"}, "teams": ["2900", "3455", "1849"]}}, {"blue": {"score": {"brige": "0", "tele": "15", "hybrid": "6", "final": "21", "foul": "0"}, "teams": ["2963", "1885", "3793"]}, "coop": "0", "type": "Q_88", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "14", "final": "17", "foul": "0", "tele": "3"}, "teams": ["2964", "4099", "4288"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "0", "final": "15", "foul": "9"}, "teams": ["619", "4067", "2961"]}, "coop": "0", "type": "Q_89", "eventKey": "2012DC", "red": {"score": {"bridge": "10", "hybrid": "24", "final": "67", "foul": "0", "tele": "33"}, "teams": ["612", "174", "1646"]}}, {"blue": {"score": {"brige": "20", "tele": "2", "hybrid": "18", "final": "40", "foul": "0"}, "teams": ["2849", "2579", "709"]}, "coop": "2", "type": "Q_90", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "24", "final": "28", "foul": "0", "tele": "4"}, "teams": ["467", "3558", "461"]}}, {"blue": {"score": {"brige": "20", "tele": "0", "hybrid": "8", "final": "28", "foul": "0"}, "teams": ["639", "2911", "2914"]}, "coop": "0", "type": "Q_91", "eventKey": "2012DC", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "14", "foul": "0", "tele": "4"}, "teams": ["614", "1418", "53"]}}, {"blue": {"score": {"brige": "20", "tele": "13", "hybrid": "6", "final": "42", "foul": "3"}, "teams": ["4083", "1522", "87"]}, "coop": "0", "type": "Q_92", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "23", "final": "35", "foul": "0", "tele": "12"}, "teams": ["357", "2534", "3373"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "0", "final": "9", "foul": "3"}, "teams": ["449", "768", "2962"]}, "coop": "0", "type": "Q_93", "eventKey": "2012DC", "red": {"score": {"bridge": "10", "hybrid": "10", "final": "24", "foul": "0", "tele": "4"}, "teams": ["2537", "2912", "4242"]}}, {"blue": {"score": {"brige": "0", "tele": "19", "hybrid": "16", "final": "38", "foul": "3"}, "teams": ["620", "141", "836"]}, "coop": "2", "type": "Q_94", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3279", "1915", "2121"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "14", "final": "21", "foul": "3"}, "teams": ["1389", "4137", "619"]}, "coop": "0", "type": "Q_95", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "17", "final": "34", "foul": "0", "tele": "17"}, "teams": ["3123", "888", "346"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "12", "final": "17", "foul": "0"}, "teams": ["1747", "612", "1646"]}, "coop": "0", "type": "E_1", "eventKey": "2012DC", "red": {"score": {"bridge": "20", "hybrid": "30", "final": "67", "foul": "3", "tele": "14"}, "teams": ["1218", "141", "836"]}}, {"blue": {"score": {"brige": "20", "tele": "16", "hybrid": "6", "final": "42", "foul": "0"}, "teams": ["174", "1418", "116"]}, "coop": "0", "type": "E_2", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "7", "foul": "0", "tele": "1"}, "teams": ["1389", "2537", "1719"]}}, {"blue": {"score": {"brige": "20", "tele": "16", "hybrid": "11", "final": "47", "foul": "0"}, "teams": ["134", "2849", "2377"]}, "coop": "0", "type": "E_3", "eventKey": "2012DC", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "35", "foul": "0", "tele": "15"}, "teams": ["2914", "357", "467"]}}, {"blue": {"score": {"brige": "20", "tele": "15", "hybrid": "22", "final": "60", "foul": "3"}, "teams": ["639", "888", "346"]}, "coop": "0", "type": "E_4", "eventKey": "2012DC", "red": {"score": {"bridge": "20", "hybrid": "21", "final": "63", "foul": "3", "tele": "19"}, "teams": ["3123", "1731", "620"]}}, {"blue": {"score": {"brige": "0", "tele": "15", "hybrid": "23", "final": "41", "foul": "3"}, "teams": ["612", "1747", "1646"]}, "coop": "0", "type": "E_5", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "30", "final": "56", "foul": "0", "tele": "26"}, "teams": ["141", "1218", "836"]}}, {"blue": {"score": {"brige": "20", "tele": "27", "hybrid": "22", "final": "69", "foul": "0"}, "teams": ["1418", "116", "174"]}, "coop": "0", "type": "E_6", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "16", "foul": "0", "tele": "6"}, "teams": ["1719", "1389", "2537"]}}, {"blue": {"score": {"brige": "20", "tele": "11", "hybrid": "16", "final": "47", "foul": "0"}, "teams": ["2849", "2377", "134"]}, "coop": "0", "type": "E_7", "eventKey": "2012DC", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "59", "foul": "0", "tele": "21"}, "teams": ["2914", "467", "357"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "26", "final": "38", "foul": "3"}, "teams": ["346", "639", "888"]}, "coop": "0", "type": "E_8", "eventKey": "2012DC", "red": {"score": {"bridge": "20", "hybrid": "5", "final": "55", "foul": "0", "tele": "30"}, "teams": ["1731", "3123", "620"]}}, {"blue": {"score": {"brige": "20", "tele": "21", "hybrid": "6", "final": "47", "foul": "0"}, "teams": ["134", "2849", "2377"]}, "coop": "0", "type": "E_11", "eventKey": "2012DC", "red": {"score": {"bridge": "20", "hybrid": "23", "final": "66", "foul": "0", "tele": "23"}, "teams": ["467", "2914", "357"]}}, {"blue": {"score": {"brige": "20", "tele": "21", "hybrid": "21", "final": "62", "foul": "0"}, "teams": ["116", "1418", "174"]}, "coop": "0", "type": "E_13", "eventKey": "2012DC", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "55", "foul": "3", "tele": "24"}, "teams": ["836", "141", "1218"]}}, {"blue": {"score": {"brige": "0", "tele": "13", "hybrid": "16", "final": "29", "foul": "0"}, "teams": ["620", "1731", "3123"]}, "coop": "0", "type": "E_14", "eventKey": "2012DC", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "62", "foul": "0", "tele": "30"}, "teams": ["467", "357", "2914"]}}, {"blue": {"score": {"brige": "0", "tele": "11", "hybrid": "6", "final": "20", "foul": "3"}, "teams": ["620", "1731", "3123"]}, "coop": "0", "type": "E_14", "eventKey": "2012DC", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "57", "foul": "0", "tele": "19"}, "teams": ["467", "357", "2914"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["1418", "174", "116"]}, "coop": "0", "type": "E_15", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "24", "final": "36", "foul": "0", "tele": "12"}, "teams": ["1218", "836", "141"]}}, {"blue": {"score": {"brige": "0", "tele": "11", "hybrid": "17", "final": "28", "foul": "0"}, "teams": ["1731", "3123", "620"]}, "coop": "0", "type": "E_16", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "20", "foul": "3", "tele": "11"}, "teams": ["2914", "357", "467"]}}, {"blue": {"score": {"brige": "0", "tele": "23", "hybrid": "0", "final": "23", "foul": "0"}, "teams": ["174", "1418", "116"]}, "coop": "0", "type": "E_17", "eventKey": "2012DC", "red": {"score": {"bridge": "20", "hybrid": "24", "final": "74", "foul": "12", "tele": "18"}, "teams": ["1218", "836", "141"]}}, {"blue": {"score": {"brige": "0", "tele": "17", "hybrid": "16", "final": "33", "foul": "0"}, "teams": ["3123", "620", "1731"]}, "coop": "0", "type": "E_18", "eventKey": "2012DC", "red": {"score": {"bridge": "20", "hybrid": "17", "final": "63", "foul": "0", "tele": "26"}, "teams": ["467", "357", "2914"]}}, {"blue": {"score": {"brige": "20", "tele": "28", "hybrid": "6", "final": "54", "foul": "0"}, "teams": ["2914", "467", "357"]}, "coop": "0", "type": "E_19", "eventKey": "2012DC", "red": {"score": {"bridge": "0", "hybrid": "24", "final": "39", "foul": "0", "tele": "15"}, "teams": ["836", "1218", "141"]}}, {"blue": {"score": {"brige": "20", "tele": "37", "hybrid": "18", "final": "78", "foul": "3"}, "teams": ["2914", "467", "357"]}, "coop": "0", "type": "E_20", "eventKey": "2012DC", "red": {"score": {"bridge": "20", "hybrid": "11", "final": "56", "foul": "0", "tele": "25"}, "teams": ["141", "1218", "836"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "12", "final": "18", "foul": "3"}, "teams": ["4217", "2538", "1625"]}, "coop": "2", "type": "Q_1", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "12", "foul": "0", "tele": "0"}, "teams": ["2500", "2526", "2220"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2574", "3828", "3846"]}, "coop": "0", "type": "Q_2", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3130", "2977", "3122"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["2506", "2846", "1816"]}, "coop": "0", "type": "Q_3", "eventKey": "2012DMN", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "33", "foul": "9", "tele": "2"}, "teams": ["2957", "2499", "877"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["2470", "2175", "3036"]}, "coop": "0", "type": "Q_4", "eventKey": "2012DMN", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "31", "foul": "15", "tele": "0"}, "teams": ["2169", "4228", "2530"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3381", "2177", "4009"]}, "coop": "2", "type": "Q_5", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "4", "foul": "0", "tele": "4"}, "teams": ["93", "2826", "3056"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "16", "foul": "12"}, "teams": ["876", "2472", "2845"]}, "coop": "0", "type": "Q_6", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "29", "foul": "9", "tele": "2"}, "teams": ["2052", "3883", "4054"]}}, {"blue": {"score": {"brige": "0", "tele": "11", "hybrid": "4", "final": "15", "foul": "0"}, "teams": ["3840", "3740", "1714"]}, "coop": "2", "type": "Q_7", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["3788", "3312", "2264"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["3261", "3054", "3102"]}, "coop": "0", "type": "Q_8", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3755", "3367", "4181"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "5", "final": "7", "foul": "0"}, "teams": ["3754", "4238", "3061"]}, "coop": "0", "type": "Q_9", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "4", "final": "10", "foul": "0", "tele": "6"}, "teams": ["3197", "2062", "3747"]}}, {"blue": {"score": {"brige": "10", "tele": "1", "hybrid": "0", "final": "14", "foul": "3"}, "teams": ["4011", "2518", "2512"]}, "coop": "0", "type": "Q_10", "eventKey": "2012DMN", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "10", "foul": "0", "tele": "0"}, "teams": ["3276", "3839", "4230"]}}, {"blue": {"score": {"brige": "0", "tele": "7", "hybrid": "6", "final": "13", "foul": "0"}, "teams": ["2491", "3018", "2506"]}, "coop": "0", "type": "Q_11", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3267", "3294", "4217"]}}, {"blue": {"score": {"brige": "0", "tele": "7", "hybrid": "18", "final": "34", "foul": "9"}, "teams": ["2470", "2472", "1714"]}, "coop": "2", "type": "Q_12", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "12", "foul": "0", "tele": "12"}, "teams": ["877", "2826", "2500"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["2177", "3840", "4228"]}, "coop": "0", "type": "Q_13", "eventKey": "2012DMN", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "40", "foul": "18", "tele": "0"}, "teams": ["2530", "2526", "3102"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "8", "final": "17", "foul": "9"}, "teams": ["3755", "2499", "3130"]}, "coop": "0", "type": "Q_14", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "4", "final": "6", "foul": "0", "tele": "2"}, "teams": ["2220", "3312", "3056"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "6", "final": "14", "foul": "0"}, "teams": ["3261", "2175", "2957"]}, "coop": "0", "type": "Q_15", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "10", "foul": "0", "tele": "0"}, "teams": ["3061", "3036", "3839"]}}, {"blue": {"score": {"brige": "10", "tele": "8", "hybrid": "12", "final": "30", "foul": "0"}, "teams": ["3367", "876", "2538"]}, "coop": "0", "type": "Q_16", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "19", "foul": "9", "tele": "0"}, "teams": ["2062", "3267", "3846"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "4", "final": "9", "foul": "0"}, "teams": ["4009", "3747", "3294"]}, "coop": "0", "type": "Q_17", "eventKey": "2012DMN", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "12", "foul": "0", "tele": "2"}, "teams": ["2846", "2977", "2512"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "6", "final": "18", "foul": "0"}, "teams": ["3018", "2264", "4238"]}, "coop": "0", "type": "Q_18", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "30", "foul": "0", "tele": "18"}, "teams": ["2169", "3122", "2052"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "5", "final": "5", "foul": "0"}, "teams": ["2491", "3828", "3381"]}, "coop": "0", "type": "Q_19", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "12", "foul": "0", "tele": "6"}, "teams": ["3883", "4230", "3054"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["93", "3276", "3740"]}, "coop": "0", "type": "Q_20", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "19", "foul": "0", "tele": "1"}, "teams": ["4054", "1625", "1816"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2845", "4181", "3788"]}, "coop": "0", "type": "Q_21", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "9", "foul": "9", "tele": "0"}, "teams": ["3754", "3197", "4011"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "13", "foul": "3"}, "teams": ["2574", "2526", "2538"]}, "coop": "0", "type": "Q_22", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["2518", "4009", "3061"]}}, {"blue": {"score": {"brige": "20", "tele": "4", "hybrid": "17", "final": "41", "foul": "0"}, "teams": ["2846", "2472", "2220"]}, "coop": "2", "type": "Q_23", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "17", "foul": "0", "tele": "11"}, "teams": ["2177", "4238", "3261"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3312", "2977", "3036"]}, "coop": "0", "type": "Q_24", "eventKey": "2012DMN", "red": {"score": {"bridge": "10", "hybrid": "5", "final": "28", "foul": "0", "tele": "13"}, "teams": ["4230", "3381", "876"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "12", "final": "15", "foul": "0"}, "teams": ["3267", "3122", "3883"]}, "coop": "0", "type": "Q_25", "eventKey": "2012DMN", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "16", "foul": "0", "tele": "6"}, "teams": ["2957", "2500", "3755"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "0", "final": "1", "foul": "0"}, "teams": ["2175", "3276", "3846"]}, "coop": "2", "type": "Q_26", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "10", "foul": "0", "tele": "4"}, "teams": ["3197", "3056", "2264"]}}, {"blue": {"score": {"brige": "0", "tele": "15", "hybrid": "12", "final": "27", "foul": "0"}, "teams": ["1714", "2530", "1625"]}, "coop": "0", "type": "Q_27", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["2845", "3754", "3054"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "6", "foul": "0"}, "teams": ["4011", "2574", "2506"]}, "coop": "0", "type": "Q_28", "eventKey": "2012DMN", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "28", "foul": "9", "tele": "3"}, "teams": ["4054", "4228", "3747"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "6", "foul": "3"}, "teams": ["2518", "2470", "3828"]}, "coop": "0", "type": "Q_29", "eventKey": "2012DMN", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "13", "foul": "0", "tele": "3"}, "teams": ["3367", "1816", "3018"]}}, {"blue": {"score": {"brige": "0", "tele": "23", "hybrid": "12", "final": "41", "foul": "6"}, "teams": ["2491", "2826", "2169"]}, "coop": "0", "type": "Q_30", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "4", "final": "4", "foul": "0", "tele": "0"}, "teams": ["3102", "3740", "2499"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["877", "3130", "3788"]}, "coop": "0", "type": "Q_31", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "13", "foul": "9", "tele": "4"}, "teams": ["3294", "3839", "93"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "4", "final": "4", "foul": "0"}, "teams": ["2512", "4181", "4217"]}, "coop": "2", "type": "Q_32", "eventKey": "2012DMN", "red": {"score": {"bridge": "10", "hybrid": "24", "final": "37", "foul": "0", "tele": "3"}, "teams": ["3840", "2062", "2052"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "4", "foul": "0"}, "teams": ["2526", "3754", "876"]}, "coop": "0", "type": "Q_33", "eventKey": "2012DMN", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "47", "foul": "12", "tele": "3"}, "teams": ["2264", "2175", "2506"]}}, {"blue": {"score": {"brige": "10", "tele": "9", "hybrid": "18", "final": "37", "foul": "0"}, "teams": ["2530", "2957", "2977"]}, "coop": "0", "type": "Q_35", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "7", "foul": "0", "tele": "1"}, "teams": ["3367", "2472", "3740"]}}, {"blue": {"score": {"brige": "10", "tele": "5", "hybrid": "0", "final": "15", "foul": "0"}, "teams": ["3747", "4230", "3102"]}, "coop": "0", "type": "Q_36", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "30", "foul": "12", "tele": "0"}, "teams": ["3122", "2538", "3056"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "6", "final": "15", "foul": "0"}, "teams": ["4181", "2574", "2062"]}, "coop": "0", "type": "Q_37", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "13", "final": "15", "foul": "0", "tele": "2"}, "teams": ["2177", "3036", "2499"]}}, {"blue": {"score": {"brige": "10", "tele": "1", "hybrid": "0", "final": "20", "foul": "9"}, "teams": ["4054", "3197", "2846"]}, "coop": "0", "type": "Q_38", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "21", "foul": "0", "tele": "21"}, "teams": ["2169", "3130", "3054"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "3", "foul": "0"}, "teams": ["3788", "2512", "2500"]}, "coop": "0", "type": "Q_39", "eventKey": "2012DMN", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "38", "foul": "0", "tele": "16"}, "teams": ["3018", "2220", "3846"]}}, {"blue": {"score": {"brige": "10", "tele": "7", "hybrid": "0", "final": "17", "foul": "0"}, "teams": ["4217", "3840", "3061"]}, "coop": "2", "type": "Q_40", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "6", "foul": "0", "tele": "0"}, "teams": ["93", "1816", "3828"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "10", "final": "26", "foul": "0"}, "teams": ["4217", "3840", "3061"]}, "coop": "0", "type": "Q_40", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["93", "1816", "3828"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "12", "final": "21", "foul": "9"}, "teams": ["2052", "3839", "2845"]}, "coop": "0", "type": "Q_41", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["2470", "4009", "2491"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "6", "final": "21", "foul": "9"}, "teams": ["2518", "3294", "3883"]}, "coop": "0", "type": "Q_42", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "0", "tele": "6"}, "teams": ["3312", "4011", "3261"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "4", "foul": "0"}, "teams": ["3267", "877", "4054"]}, "coop": "0", "type": "Q_43", "eventKey": "2012DMN", "red": {"score": {"bridge": "10", "hybrid": "15", "final": "40", "foul": "0", "tele": "15"}, "teams": ["2826", "1625", "4181"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "12", "final": "12", "foul": "0"}, "teams": ["4230", "4238", "2062"]}, "coop": "0", "type": "Q_44", "eventKey": "2012DMN", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "43", "foul": "9", "tele": "6"}, "teams": ["2506", "3846", "2530"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "6", "final": "15", "foul": "0"}, "teams": ["3276", "4217", "3367"]}, "coop": "0", "type": "Q_45", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "9", "foul": "3", "tele": "0"}, "teams": ["3788", "2177", "3122"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "5", "final": "15", "foul": "0"}, "teams": ["2220", "2470", "4228"]}, "coop": "0", "type": "Q_46", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["4009", "2264", "3054"]}}, {"blue": {"score": {"brige": "10", "tele": "22", "hybrid": "18", "final": "50", "foul": "0"}, "teams": ["3102", "2472", "2169"]}, "coop": "0", "type": "Q_47", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "15", "foul": "0", "tele": "10"}, "teams": ["3294", "3381", "3061"]}}, {"blue": {"score": {"brige": "0", "tele": "7", "hybrid": "0", "final": "7", "foul": "0"}, "teams": ["3197", "3839", "2512"]}, "coop": "2", "type": "Q_48", "eventKey": "2012DMN", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "33", "foul": "3", "tele": "8"}, "teams": ["1816", "2826", "3755"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "12", "final": "12", "foul": "0"}, "teams": ["2052", "2500", "3740"]}, "coop": "0", "type": "Q_49", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "3", "tele": "0"}, "teams": ["2574", "2846", "3754"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "6", "final": "9", "foul": "0"}, "teams": ["3267", "3036", "3747"]}, "coop": "2", "type": "Q_50", "eventKey": "2012DMN", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "33", "foul": "0", "tele": "17"}, "teams": ["2518", "1714", "3130"]}}, {"blue": {"score": {"brige": "10", "tele": "5", "hybrid": "18", "final": "33", "foul": "0"}, "teams": ["2957", "93", "2538"]}, "coop": "2", "type": "Q_51", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "9", "foul": "6", "tele": "3"}, "teams": ["3312", "2175", "2491"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2499", "4011", "3056"]}, "coop": "0", "type": "Q_52", "eventKey": "2012DMN", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "56", "foul": "0", "tele": "18"}, "teams": ["1625", "3828", "876"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "4", "foul": "0"}, "teams": ["2845", "3261", "877"]}, "coop": "0", "type": "Q_53", "eventKey": "2012DMN", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "26", "foul": "3", "tele": "7"}, "teams": ["2977", "3018", "3840"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "11", "final": "13", "foul": "0"}, "teams": ["3883", "3788", "3381"]}, "coop": "2", "type": "Q_54", "eventKey": "2012DMN", "red": {"score": {"bridge": "20", "hybrid": "5", "final": "31", "foul": "0", "tele": "6"}, "teams": ["2526", "2264", "2846"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3267", "4009", "3197"]}, "coop": "0", "type": "Q_55", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "18", "foul": "0", "tele": "6"}, "teams": ["2530", "4217", "2472"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "6", "final": "14", "foul": "0"}, "teams": ["2220", "4181", "4238"]}, "coop": "0", "type": "Q_56", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "6", "foul": "0", "tele": "0"}, "teams": ["2491", "3740", "2518"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "3", "foul": "0"}, "teams": ["3754", "1816", "4230"]}, "coop": "0", "type": "Q_57", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["3294", "4228", "3367"]}}, {"blue": {"score": {"brige": "0", "tele": "30", "hybrid": "6", "final": "36", "foul": "0"}, "teams": ["2169", "3755", "3828"]}, "coop": "0", "type": "Q_58", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "17", "foul": "3", "tele": "3"}, "teams": ["2845", "2538", "3747"]}}, {"blue": {"score": {"brige": "0", "tele": "16", "hybrid": "0", "final": "16", "foul": "0"}, "teams": ["3056", "877", "3054"]}, "coop": "0", "type": "Q_59", "eventKey": "2012DMN", "red": {"score": {"bridge": "10", "hybrid": "5", "final": "23", "foul": "0", "tele": "8"}, "teams": ["2957", "3036", "2526"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "11", "final": "15", "foul": "0"}, "teams": ["3840", "3276", "3883"]}, "coop": "2", "type": "Q_60", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "4", "final": "5", "foul": "0", "tele": "1"}, "teams": ["2574", "2175", "2977"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "0", "final": "12", "foul": "0"}, "teams": ["3018", "3312", "2500"]}, "coop": "0", "type": "Q_61", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "12", "foul": "0", "tele": "0"}, "teams": ["3839", "2062", "4054"]}}, {"blue": {"score": {"brige": "0", "tele": "15", "hybrid": "18", "final": "33", "foul": "0"}, "teams": ["2177", "2052", "2826"]}, "coop": "0", "type": "Q_62", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "16", "foul": "0", "tele": "6"}, "teams": ["3061", "4011", "3846"]}}, {"blue": {"score": {"brige": "10", "tele": "11", "hybrid": "0", "final": "30", "foul": "9"}, "teams": ["3130", "2512", "1625"]}, "coop": "2", "type": "Q_63", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "14", "foul": "0", "tele": "4"}, "teams": ["3102", "2470", "876"]}}, {"blue": {"score": {"brige": "0", "tele": "22", "hybrid": "6", "final": "28", "foul": "0"}, "teams": ["1714", "3122", "93"]}, "coop": "2", "type": "Q_64", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "18", "foul": "0", "tele": "8"}, "teams": ["2499", "3261", "2506"]}}, {"blue": {"score": {"brige": "20", "tele": "10", "hybrid": "6", "final": "36", "foul": "0"}, "teams": ["877", "2220", "3747"]}, "coop": "2", "type": "Q_65", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "25", "foul": "0", "tele": "13"}, "teams": ["3367", "3883", "2530"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["3056", "4228", "2977"]}, "coop": "0", "type": "Q_66", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["4181", "3839", "2500"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "12", "final": "25", "foul": "0"}, "teams": ["2846", "3018", "3755"]}, "coop": "2", "type": "Q_67", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["2175", "2472", "4011"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "6", "final": "25", "foul": "3"}, "teams": ["2826", "3740", "2264"]}, "coop": "2", "type": "Q_68", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "27", "foul": "18", "tele": "9"}, "teams": ["4230", "4217", "3130"]}}, {"blue": {"score": {"brige": "0", "tele": "7", "hybrid": "6", "final": "16", "foul": "3"}, "teams": ["2506", "3197", "3294"]}, "coop": "2", "type": "Q_69", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "12", "foul": "3", "tele": "3"}, "teams": ["2177", "2538", "2470"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "6", "final": "12", "foul": "0"}, "teams": ["2062", "3828", "4009"]}, "coop": "0", "type": "Q_70", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "11", "foul": "0", "tele": "5"}, "teams": ["2957", "3102", "3276"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["93", "4238", "2526"]}, "coop": "2", "type": "Q_71", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["2845", "3267", "2512"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "12", "final": "29", "foul": "9"}, "teams": ["876", "2574", "1816"]}, "coop": "2", "type": "Q_72", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "16", "final": "34", "foul": "0", "tele": "18"}, "teams": ["1714", "3261", "2491"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "12", "final": "12", "foul": "0"}, "teams": ["3122", "2518", "3754"]}, "coop": "0", "type": "Q_73", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "1", "foul": "0", "tele": "1"}, "teams": ["3381", "3840", "4054"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "3", "foul": "0"}, "teams": ["3846", "3788", "3054"]}, "coop": "0", "type": "Q_74", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "29", "foul": "0", "tele": "24"}, "teams": ["3312", "3061", "2169"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "0", "final": "6", "foul": "0"}, "teams": ["1625", "2499", "3367"]}, "coop": "2", "type": "Q_75", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "18", "foul": "0", "tele": "6"}, "teams": ["3036", "2052", "3197"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "6", "foul": "0"}, "teams": ["3056", "3740", "2062"]}, "coop": "0", "type": "Q_76", "eventKey": "2012DMN", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "19", "foul": "9", "tele": "0"}, "teams": ["4011", "2470", "3267"]}}, {"blue": {"score": {"brige": "10", "tele": "14", "hybrid": "6", "final": "30", "foul": "0"}, "teams": ["2826", "3276", "876"]}, "coop": "0", "type": "Q_77", "eventKey": "2012DMN", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "29", "foul": "0", "tele": "7"}, "teams": ["3747", "2957", "4181"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "3", "foul": "0"}, "teams": ["2175", "3381", "3130"]}, "coop": "0", "type": "Q_78", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "18", "foul": "0", "tele": "6"}, "teams": ["1816", "2500", "2845"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "0", "final": "8", "foul": "0"}, "teams": ["3102", "2574", "3312"]}, "coop": "2", "type": "Q_79", "eventKey": "2012DMN", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "14", "foul": "0", "tele": "4"}, "teams": ["4217", "877", "4238"]}}, {"blue": {"score": {"brige": "20", "tele": "1", "hybrid": "6", "final": "27", "foul": "0"}, "teams": ["3840", "2538", "3839"]}, "coop": "0", "type": "Q_80", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "9", "foul": "0", "tele": "3"}, "teams": ["3054", "2472", "2499"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "10", "final": "20", "foul": "0"}, "teams": ["2177", "4230", "2526"]}, "coop": "0", "type": "Q_81", "eventKey": "2012DMN", "red": {"score": {"bridge": "10", "hybrid": "24", "final": "58", "foul": "0", "tele": "24"}, "teams": ["2169", "3018", "1714"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "16", "final": "20", "foul": "0"}, "teams": ["3061", "2491", "1625"]}, "coop": "0", "type": "Q_82", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "7", "foul": "0", "tele": "1"}, "teams": ["2846", "3122", "4228"]}}, {"blue": {"score": {"brige": "0", "tele": "14", "hybrid": "12", "final": "26", "foul": "0"}, "teams": ["2506", "2052", "2977"]}, "coop": "0", "type": "Q_83", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "18", "foul": "0", "tele": "12"}, "teams": ["3788", "2518", "3755"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "11", "final": "17", "foul": "6"}, "teams": ["2530", "2264", "4054"]}, "coop": "0", "type": "Q_84", "eventKey": "2012DMN", "red": {"score": {"bridge": "10", "hybrid": "11", "final": "23", "foul": "0", "tele": "2"}, "teams": ["3261", "3828", "2512"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "6", "final": "9", "foul": "0"}, "teams": ["3883", "4009", "93"]}, "coop": "0", "type": "Q_85", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "8", "foul": "0", "tele": "8"}, "teams": ["3846", "3036", "3754"]}}, {"blue": {"score": {"brige": "10", "tele": "5", "hybrid": "6", "final": "21", "foul": "0"}, "teams": ["2220", "2175", "3054"]}, "coop": "0", "type": "Q_86", "eventKey": "2012DMN", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "42", "foul": "6", "tele": "8"}, "teams": ["3294", "2062", "2826"]}}, {"blue": {"score": {"brige": "10", "tele": "9", "hybrid": "0", "final": "19", "foul": "0"}, "teams": ["1816", "3312", "4181"]}, "coop": "0", "type": "Q_87", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "15", "final": "24", "foul": "6", "tele": "3"}, "teams": ["3122", "2526", "2472"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "6", "final": "12", "foul": "0"}, "teams": ["4230", "3267", "2957"]}, "coop": "0", "type": "Q_88", "eventKey": "2012DMN", "red": {"score": {"bridge": "10", "hybrid": "10", "final": "20", "foul": "0", "tele": "0"}, "teams": ["2574", "2470", "3788"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "16", "final": "30", "foul": "6"}, "teams": ["2846", "2845", "3061"]}, "coop": "2", "type": "Q_89", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "9", "foul": "0", "tele": "3"}, "teams": ["2512", "3056", "3367"]}}, {"blue": {"score": {"brige": "10", "tele": "11", "hybrid": "14", "final": "38", "foul": "3"}, "teams": ["2499", "3747", "3846"]}, "coop": "0", "type": "Q_90", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3381", "3740", "4217"]}}, {"blue": {"score": {"brige": "0", "tele": "11", "hybrid": "11", "final": "22", "foul": "0"}, "teams": ["4011", "1714", "4054"]}, "coop": "2", "type": "Q_91", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["2220", "2977", "3102"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "4", "final": "15", "foul": "3"}, "teams": ["3754", "2264", "3755"]}, "coop": "0", "type": "Q_92", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "0", "tele": "6"}, "teams": ["877", "2177", "2491"]}}, {"blue": {"score": {"brige": "10", "tele": "10", "hybrid": "6", "final": "26", "foul": "0"}, "teams": ["4228", "3018", "2518"]}, "coop": "2", "type": "Q_93", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "11", "foul": "0", "tele": "6"}, "teams": ["93", "3197", "876"]}}, {"blue": {"score": {"brige": "0", "tele": "14", "hybrid": "22", "final": "42", "foul": "6"}, "teams": ["2530", "3261", "3130"]}, "coop": "2", "type": "Q_94", "eventKey": "2012DMN", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "52", "foul": "6", "tele": "24"}, "teams": ["2052", "2538", "3276"]}}, {"blue": {"score": {"brige": "0", "tele": "21", "hybrid": "12", "final": "33", "foul": "0"}, "teams": ["4009", "2169", "3839"]}, "coop": "0", "type": "Q_95", "eventKey": "2012DMN", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "46", "foul": "0", "tele": "14"}, "teams": ["3883", "2506", "1625"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "0", "final": "16", "foul": "0"}, "teams": ["2500", "3036", "3294"]}, "coop": "0", "type": "Q_96", "eventKey": "2012DMN", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "32", "foul": "9", "tele": "3"}, "teams": ["3840", "3828", "4238"]}}, {"blue": {"score": {"brige": "10", "tele": "7", "hybrid": "4", "final": "24", "foul": "3"}, "teams": ["3755", "3276", "1816"]}, "coop": "0", "type": "E_1", "eventKey": "2012DMN", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "63", "foul": "0", "tele": "25"}, "teams": ["2169", "1714", "3018"]}}, {"blue": {"score": {"brige": "10", "tele": "15", "hybrid": "12", "final": "37", "foul": "0"}, "teams": ["2062", "3840", "2530"]}, "coop": "0", "type": "E_2", "eventKey": "2012DMN", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "22", "foul": "0", "tele": "12"}, "teams": ["2512", "2538", "876"]}}, {"blue": {"score": {"brige": "0", "tele": "13", "hybrid": "11", "final": "24", "foul": "0"}, "teams": ["2518", "2264", "4217"]}, "coop": "0", "type": "E_3", "eventKey": "2012DMN", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "50", "foul": "0", "tele": "18"}, "teams": ["2220", "2052", "2826"]}}, {"blue": {"score": {"brige": "20", "tele": "7", "hybrid": "12", "final": "42", "foul": "3"}, "teams": ["3747", "93", "3883"]}, "coop": "0", "type": "E_4", "eventKey": "2012DMN", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "32", "foul": "3", "tele": "9"}, "teams": ["1625", "2957", "2175"]}}, {"blue": {"score": {"brige": "0", "tele": "13", "hybrid": "12", "final": "25", "foul": "0"}, "teams": ["1816", "3755", "3276"]}, "coop": "0", "type": "E_5", "eventKey": "2012DMN", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "57", "foul": "0", "tele": "29"}, "teams": ["3018", "2169", "1714"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "6", "final": "12", "foul": "0"}, "teams": ["3840", "2062", "2530"]}, "coop": "0", "type": "E_6", "eventKey": "2012DMN", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "44", "foul": "0", "tele": "12"}, "teams": ["876", "2512", "2538"]}}, {"blue": {"score": {"brige": "20", "tele": "4", "hybrid": "12", "final": "36", "foul": "0"}, "teams": ["2518", "2264", "4217"]}, "coop": "0", "type": "E_7", "eventKey": "2012DMN", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "58", "foul": "0", "tele": "26"}, "teams": ["2052", "2826", "2220"]}}, {"blue": {"score": {"brige": "20", "tele": "12", "hybrid": "0", "final": "32", "foul": "0"}, "teams": ["3883", "93", "3747"]}, "coop": "0", "type": "E_8", "eventKey": "2012DMN", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "10", "foul": "0", "tele": "0"}, "teams": ["1625", "2175", "2957"]}}, {"blue": {"score": {"brige": "10", "tele": "14", "hybrid": "18", "final": "42", "foul": "0"}, "teams": ["2530", "2062", "3840"]}, "coop": "0", "type": "E_10", "eventKey": "2012DMN", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "36", "foul": "0", "tele": "10"}, "teams": ["2512", "2538", "876"]}}, {"blue": {"score": {"brige": "20", "tele": "5", "hybrid": "0", "final": "25", "foul": "0"}, "teams": ["2062", "2530", "3840"]}, "coop": "0", "type": "E_13", "eventKey": "2012DMN", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "66", "foul": "3", "tele": "25"}, "teams": ["3018", "1714", "2169"]}}, {"blue": {"score": {"brige": "20", "tele": "11", "hybrid": "12", "final": "43", "foul": "0"}, "teams": ["3747", "3883", "93"]}, "coop": "0", "type": "E_14", "eventKey": "2012DMN", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "47", "foul": "6", "tele": "9"}, "teams": ["2220", "2052", "2826"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "18", "final": "27", "foul": "0"}, "teams": ["2530", "3840", "2062"]}, "coop": "0", "type": "E_15", "eventKey": "2012DMN", "red": {"score": {"bridge": "20", "hybrid": "23", "final": "73", "foul": "0", "tele": "30"}, "teams": ["3018", "2169", "1714"]}}, {"blue": {"score": {"brige": "20", "tele": "15", "hybrid": "12", "final": "50", "foul": "3"}, "teams": ["93", "3747", "3883"]}, "coop": "0", "type": "E_16", "eventKey": "2012DMN", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "56", "foul": "0", "tele": "18"}, "teams": ["2052", "2220", "2826"]}}, {"blue": {"score": {"brige": "0", "tele": "10", "hybrid": "6", "final": "19", "foul": "3"}, "teams": ["2052", "2826", "2220"]}, "coop": "0", "type": "E_19", "eventKey": "2012DMN", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "38", "foul": "0", "tele": "6"}, "teams": ["2169", "1714", "3018"]}}, {"blue": {"score": {"brige": "0", "tele": "20", "hybrid": "12", "final": "32", "foul": "0"}, "teams": ["2052", "2826", "2220"]}, "coop": "0", "type": "E_20", "eventKey": "2012DMN", "red": {"score": {"bridge": "10", "hybrid": "23", "final": "66", "foul": "12", "tele": "21"}, "teams": ["2169", "3018", "1714"]}}, {"blue": {"score": {"brige": "0", "tele": "17", "hybrid": "12", "final": "29", "foul": "0"}, "teams": ["469", "519", "3619"]}, "coop": "0", "type": "Q_1", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "5", "foul": "0", "tele": "0"}, "teams": ["3769", "2673", "453"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "0", "final": "1", "foul": "0"}, "teams": ["1189", "2676", "3605"]}, "coop": "0", "type": "Q_2", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "15", "foul": "6", "tele": "3"}, "teams": ["123", "2620", "2591"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["3096", "313", "3115"]}, "coop": "2", "type": "Q_3", "eventKey": "2012DT", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "41", "foul": "0", "tele": "19"}, "teams": ["1023", "51", "3706"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["815", "322", "201"]}, "coop": "0", "type": "Q_4", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["4380", "2832", "4002"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "0", "final": "6", "foul": "0"}, "teams": ["2960", "3002", "3547"]}, "coop": "0", "type": "Q_5", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "12", "foul": "0", "tele": "6"}, "teams": ["3632", "1504", "314"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "3", "foul": "0"}, "teams": ["217", "1701", "2611"]}, "coop": "2", "type": "Q_6", "eventKey": "2012DT", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "20", "foul": "0", "tele": "0"}, "teams": ["326", "280", "2224"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3538", "94", "4002"]}, "coop": "0", "type": "Q_7", "eventKey": "2012DT", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "10", "foul": "0", "tele": "0"}, "teams": ["3175", "818", "313"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3002", "322", "2676"]}, "coop": "0", "type": "Q_8", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "18", "foul": "3", "tele": "9"}, "teams": ["2673", "1023", "519"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "5", "final": "9", "foul": "0"}, "teams": ["3115", "453", "2620"]}, "coop": "0", "type": "Q_9", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "18", "foul": "0", "tele": "6"}, "teams": ["815", "123", "1701"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "12", "final": "25", "foul": "0"}, "teams": ["2960", "2224", "2611"]}, "coop": "0", "type": "Q_10", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "9", "final": "15", "foul": "0", "tele": "6"}, "teams": ["3547", "3175", "201"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "4", "final": "13", "foul": "0"}, "teams": ["3538", "469", "3706"]}, "coop": "0", "type": "Q_11", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "6", "foul": "0", "tele": "0"}, "teams": ["4380", "94", "314"]}}, {"blue": {"score": {"brige": "10", "tele": "15", "hybrid": "6", "final": "34", "foul": "3"}, "teams": ["51", "3619", "280"]}, "coop": "0", "type": "Q_12", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "3", "tele": "0"}, "teams": ["3605", "1504", "2832"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "3", "foul": "0"}, "teams": ["3769", "326", "818"]}, "coop": "2", "type": "Q_13", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "9", "foul": "9", "tele": "0"}, "teams": ["2591", "1189", "3096"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3632", "2676", "4002"]}, "coop": "2", "type": "Q_14", "eventKey": "2012DT", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "29", "foul": "9", "tele": "4"}, "teams": ["217", "3538", "314"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "5", "final": "5", "foul": "0"}, "teams": ["3115", "280", "94"]}, "coop": "0", "type": "Q_15", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["2960", "2620", "322"]}}, {"blue": {"score": {"brige": "10", "tele": "4", "hybrid": "4", "final": "21", "foul": "3"}, "teams": ["2832", "3547", "3096"]}, "coop": "2", "type": "Q_16", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "11", "foul": "6", "tele": "0"}, "teams": ["3002", "453", "1189"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "17", "final": "32", "foul": "9"}, "teams": ["818", "201", "123"]}, "coop": "0", "type": "Q_17", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "33", "foul": "0", "tele": "21"}, "teams": ["3632", "1023", "3619"]}}, {"blue": {"score": {"brige": "10", "tele": "14", "hybrid": "0", "final": "24", "foul": "0"}, "teams": ["217", "3605", "519"]}, "coop": "0", "type": "Q_18", "eventKey": "2012DT", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "28", "foul": "0", "tele": "12"}, "teams": ["1504", "1701", "469"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "18", "final": "27", "foul": "3"}, "teams": ["326", "2591", "51"]}, "coop": "2", "type": "Q_19", "eventKey": "2012DT", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "10", "foul": "0", "tele": "0"}, "teams": ["3175", "815", "3706"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "0", "final": "12", "foul": "0"}, "teams": ["2673", "313", "2224"]}, "coop": "0", "type": "Q_20", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "6", "foul": "0", "tele": "0"}, "teams": ["2611", "4380", "3769"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3096", "3605", "3002"]}, "coop": "0", "type": "Q_21", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "14", "foul": "3", "tele": "5"}, "teams": ["4002", "3115", "201"]}}, {"blue": {"score": {"brige": "0", "tele": "15", "hybrid": "16", "final": "31", "foul": "0"}, "teams": ["1504", "1023", "2591"]}, "coop": "2", "type": "Q_22", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "4", "final": "15", "foul": "0", "tele": "11"}, "teams": ["3547", "51", "3538"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["519", "1189", "3175"]}, "coop": "0", "type": "Q_23", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "3", "tele": "0"}, "teams": ["4380", "3619", "313"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "6", "final": "9", "foul": "0"}, "teams": ["94", "2224", "322"]}, "coop": "0", "type": "Q_24", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "26", "foul": "0", "tele": "15"}, "teams": ["123", "217", "326"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "9", "foul": "9"}, "teams": ["3632", "2620", "1701"]}, "coop": "2", "type": "Q_25", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "21", "final": "31", "foul": "3", "tele": "7"}, "teams": ["818", "469", "453"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2611", "2676", "3706"]}, "coop": "0", "type": "Q_26", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "9", "foul": "0", "tele": "3"}, "teams": ["2960", "3769", "2832"]}}, {"blue": {"score": {"brige": "0", "tele": "17", "hybrid": "10", "final": "27", "foul": "0"}, "teams": ["280", "314", "1023"]}, "coop": "0", "type": "Q_27", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "8", "foul": "3", "tele": "5"}, "teams": ["2673", "815", "94"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "6", "foul": "0"}, "teams": ["3632", "3002", "326"]}, "coop": "0", "type": "Q_28", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["519", "4002", "3096"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2832", "3706", "1701"]}, "coop": "2", "type": "Q_29", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "6", "tele": "0"}, "teams": ["2611", "3175", "3605"]}}, {"blue": {"score": {"brige": "0", "tele": "11", "hybrid": "5", "final": "16", "foul": "0"}, "teams": ["453", "815", "2676"]}, "coop": "0", "type": "Q_30", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "3", "tele": "3"}, "teams": ["1189", "2960", "280"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["818", "3547", "322"]}, "coop": "2", "type": "Q_31", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "20", "final": "46", "foul": "9", "tele": "17"}, "teams": ["51", "469", "123"]}}, {"blue": {"score": {"brige": "0", "tele": "14", "hybrid": "16", "final": "30", "foul": "0"}, "teams": ["1504", "201", "4380"]}, "coop": "2", "type": "Q_32", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "12", "foul": "0", "tele": "6"}, "teams": ["217", "2620", "313"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "6", "final": "10", "foul": "3"}, "teams": ["3619", "2591", "3769"]}, "coop": "2", "type": "Q_33", "eventKey": "2012DT", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "25", "foul": "3", "tele": "6"}, "teams": ["2224", "3115", "314"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "3", "foul": "0"}, "teams": ["2673", "280", "3706"]}, "coop": "0", "type": "Q_34", "eventKey": "2012DT", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "22", "foul": "0", "tele": "12"}, "teams": ["3538", "123", "3632"]}}, {"blue": {"score": {"brige": "0", "tele": "25", "hybrid": "0", "final": "25", "foul": "0"}, "teams": ["1023", "815", "3605"]}, "coop": "2", "type": "Q_35", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "19", "foul": "0", "tele": "9"}, "teams": ["2960", "217", "3096"]}}, {"blue": {"score": {"brige": "10", "tele": "12", "hybrid": "6", "final": "28", "foul": "0"}, "teams": ["313", "2832", "51"]}, "coop": "2", "type": "Q_36", "eventKey": "2012DT", "red": {"score": {"bridge": "20", "hybrid": "22", "final": "47", "foul": "0", "tele": "5"}, "teams": ["453", "314", "326"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "0", "final": "1", "foul": "0"}, "teams": ["322", "4002", "3175"]}, "coop": "0", "type": "Q_37", "eventKey": "2012DT", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "19", "foul": "3", "tele": "0"}, "teams": ["3769", "1701", "3547"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "12", "final": "17", "foul": "3"}, "teams": ["1189", "3619", "94"]}, "coop": "0", "type": "Q_38", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "8", "foul": "3", "tele": "5"}, "teams": ["2673", "201", "2620"]}}, {"blue": {"score": {"brige": "10", "tele": "22", "hybrid": "6", "final": "41", "foul": "3"}, "teams": ["4380", "2224", "469"]}, "coop": "0", "type": "Q_39", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "21", "foul": "3", "tele": "8"}, "teams": ["2676", "519", "1504"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "6", "foul": "0"}, "teams": ["3115", "818", "2611"]}, "coop": "2", "type": "Q_40", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "12", "foul": "0", "tele": "6"}, "teams": ["2591", "3538", "3002"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "18", "final": "21", "foul": "0"}, "teams": ["217", "3632", "201"]}, "coop": "0", "type": "Q_41", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "1", "foul": "0", "tele": "1"}, "teams": ["3769", "3706", "3605"]}}, {"blue": {"score": {"brige": "10", "tele": "20", "hybrid": "12", "final": "42", "foul": "0"}, "teams": ["3175", "1023", "3096"]}, "coop": "0", "type": "Q_42", "eventKey": "2012DT", "red": {"score": {"bridge": "10", "hybrid": "10", "final": "33", "foul": "0", "tele": "13"}, "teams": ["280", "322", "1504"]}}, {"blue": {"score": {"brige": "0", "tele": "10", "hybrid": "6", "final": "16", "foul": "0"}, "teams": ["2591", "2960", "815"]}, "coop": "0", "type": "Q_43", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "18", "foul": "0", "tele": "12"}, "teams": ["469", "313", "3002"]}}, {"blue": {"score": {"brige": "0", "tele": "13", "hybrid": "10", "final": "23", "foul": "0"}, "teams": ["314", "51", "4002"]}, "coop": "2", "type": "Q_44", "eventKey": "2012DT", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "25", "foul": "0", "tele": "3"}, "teams": ["123", "1189", "2224"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "5", "final": "7", "foul": "0"}, "teams": ["453", "3619", "1701"]}, "coop": "0", "type": "Q_45", "eventKey": "2012DT", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "22", "foul": "9", "tele": "3"}, "teams": ["94", "2676", "3547"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["818", "2673", "4380"]}, "coop": "0", "type": "Q_46", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "8", "foul": "3", "tele": "0"}, "teams": ["2832", "3115", "519"]}}, {"blue": {"score": {"brige": "0", "tele": "13", "hybrid": "12", "final": "25", "foul": "0"}, "teams": ["2620", "3538", "1023"]}, "coop": "2", "type": "Q_47", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "5", "foul": "0", "tele": "5"}, "teams": ["2611", "326", "1189"]}}, {"blue": {"score": {"brige": "10", "tele": "11", "hybrid": "0", "final": "21", "foul": "0"}, "teams": ["123", "313", "3769"]}, "coop": "0", "type": "Q_48", "eventKey": "2012DT", "red": {"score": {"bridge": "20", "hybrid": "5", "final": "25", "foul": "0", "tele": "0"}, "teams": ["3547", "280", "815"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "6", "final": "9", "foul": "0"}, "teams": ["217", "4002", "2673"]}, "coop": "0", "type": "Q_49", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3619", "3115", "3175"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "10", "final": "10", "foul": "0"}, "teams": ["2224", "3706", "1504"]}, "coop": "0", "type": "Q_50", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "0", "tele": "6"}, "teams": ["94", "3605", "818"]}}, {"blue": {"score": {"brige": "10", "tele": "5", "hybrid": "12", "final": "27", "foul": "0"}, "teams": ["1701", "201", "3096"]}, "coop": "0", "type": "Q_51", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "30", "foul": "0", "tele": "24"}, "teams": ["2591", "2676", "469"]}}, {"blue": {"score": {"brige": "10", "tele": "10", "hybrid": "6", "final": "29", "foul": "3"}, "teams": ["3538", "519", "2960"]}, "coop": "2", "type": "Q_52", "eventKey": "2012DT", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "30", "foul": "6", "tele": "8"}, "teams": ["2832", "314", "2620"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "4", "final": "8", "foul": "0"}, "teams": ["453", "3632", "4380"]}, "coop": "2", "type": "Q_53", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "33", "foul": "0", "tele": "15"}, "teams": ["51", "322", "2611"]}}, {"blue": {"score": {"brige": "10", "tele": "27", "hybrid": "6", "final": "58", "foul": "15"}, "teams": ["326", "469", "3605"]}, "coop": "0", "type": "Q_54", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3002", "280", "818"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "0", "final": "12", "foul": "0"}, "teams": ["3706", "3115", "123"]}, "coop": "0", "type": "Q_55", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["1701", "313", "519"]}}, {"blue": {"score": {"brige": "10", "tele": "15", "hybrid": "16", "final": "41", "foul": "0"}, "teams": ["1189", "51", "1504"]}, "coop": "0", "type": "Q_56", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "17", "foul": "0", "tele": "5"}, "teams": ["2676", "217", "3769"]}}, {"blue": {"score": {"brige": "20", "tele": "10", "hybrid": "11", "final": "47", "foul": "6"}, "teams": ["314", "2611", "3547"]}, "coop": "0", "type": "Q_57", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "9", "foul": "0", "tele": "9"}, "teams": ["3096", "2620", "815"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "0", "final": "16", "foul": "0"}, "teams": ["322", "3538", "326"]}, "coop": "0", "type": "Q_58", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "9", "foul": "0", "tele": "3"}, "teams": ["3002", "201", "3619"]}}, {"blue": {"score": {"brige": "0", "tele": "24", "hybrid": "18", "final": "48", "foul": "6"}, "teams": ["2960", "4380", "1023"]}, "coop": "0", "type": "Q_59", "eventKey": "2012DT", "red": {"score": {"bridge": "10", "hybrid": "10", "final": "34", "foul": "9", "tele": "5"}, "teams": ["2224", "453", "4002"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "10", "final": "10", "foul": "0"}, "teams": ["2832", "2673", "3175"]}, "coop": "0", "type": "Q_60", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "18", "foul": "0", "tele": "6"}, "teams": ["94", "3632", "2591"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "0", "final": "12", "foul": "0"}, "teams": ["3547", "3115", "217"]}, "coop": "2", "type": "Q_61", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "9", "foul": "0", "tele": "9"}, "teams": ["326", "2676", "3096"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "5", "final": "9", "foul": "0"}, "teams": ["1504", "3619", "818"]}, "coop": "0", "type": "Q_62", "eventKey": "2012DT", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "26", "foul": "0", "tele": "0"}, "teams": ["2611", "815", "3538"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2224", "2591", "2832"]}, "coop": "0", "type": "Q_63", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["1189", "322", "3706"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "16", "final": "17", "foul": "0"}, "teams": ["94", "3769", "2620"]}, "coop": "0", "type": "Q_64", "eventKey": "2012DT", "red": {"score": {"bridge": "10", "hybrid": "11", "final": "32", "foul": "0", "tele": "11"}, "teams": ["123", "3002", "1023"]}}, {"blue": {"score": {"brige": "0", "tele": "13", "hybrid": "12", "final": "25", "foul": "0"}, "teams": ["2673", "469", "2960"]}, "coop": "2", "type": "Q_65", "eventKey": "2012DT", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "25", "foul": "6", "tele": "3"}, "teams": ["1701", "51", "4380"]}}, {"blue": {"score": {"brige": "10", "tele": "4", "hybrid": "10", "final": "30", "foul": "6"}, "teams": ["314", "201", "519"]}, "coop": "2", "type": "Q_66", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "4", "final": "13", "foul": "3", "tele": "6"}, "teams": ["3175", "280", "453"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "0", "final": "30", "foul": "18"}, "teams": ["4002", "3605", "2620"]}, "coop": "0", "type": "Q_67", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["313", "3632", "322"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "4", "foul": "0"}, "teams": ["123", "3096", "4380"]}, "coop": "2", "type": "Q_68", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "17", "foul": "0", "tele": "11"}, "teams": ["2960", "3619", "326"]}}, {"blue": {"score": {"brige": "10", "tele": "5", "hybrid": "10", "final": "25", "foul": "0"}, "teams": ["3547", "453", "2591"]}, "coop": "2", "type": "Q_69", "eventKey": "2012DT", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "25", "foul": "3", "tele": "0"}, "teams": ["217", "818", "3706"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "12", "final": "16", "foul": "0"}, "teams": ["2673", "2676", "314"]}, "coop": "2", "type": "Q_70", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "16", "final": "38", "foul": "12", "tele": "10"}, "teams": ["313", "201", "3605"]}}, {"blue": {"score": {"brige": "0", "tele": "14", "hybrid": "6", "final": "20", "foul": "0"}, "teams": ["3632", "469", "3175"]}, "coop": "2", "type": "Q_71", "eventKey": "2012DT", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "28", "foul": "0", "tele": "12"}, "teams": ["3115", "1189", "1023"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "18", "final": "24", "foul": "0"}, "teams": ["815", "51", "3002"]}, "coop": "2", "type": "Q_72", "eventKey": "2012DT", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "10", "foul": "0", "tele": "0"}, "teams": ["1701", "3538", "2224"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "10", "final": "10", "foul": "0"}, "teams": ["3769", "4002", "1504"]}, "coop": "0", "type": "Q_73", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["2611", "2832", "94"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["280", "3605", "2591"]}, "coop": "2", "type": "Q_74", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "15", "foul": "9", "tele": "0"}, "teams": ["519", "4380", "3547"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "6", "final": "18", "foul": "6"}, "teams": ["313", "1189", "314"]}, "coop": "2", "type": "Q_75", "eventKey": "2012DT", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "44", "foul": "0", "tele": "12"}, "teams": ["322", "1023", "1701"]}}, {"blue": {"score": {"brige": "20", "tele": "4", "hybrid": "15", "final": "45", "foul": "6"}, "teams": ["2832", "3538", "453"]}, "coop": "0", "type": "Q_76", "eventKey": "2012DT", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "13", "foul": "0", "tele": "3"}, "teams": ["2224", "3096", "3769"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "6", "final": "16", "foul": "0"}, "teams": ["519", "2611", "123"]}, "coop": "0", "type": "Q_77", "eventKey": "2012DT", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "31", "foul": "9", "tele": "12"}, "teams": ["51", "201", "94"]}}, {"blue": {"score": {"brige": "10", "tele": "16", "hybrid": "11", "final": "46", "foul": "9"}, "teams": ["326", "815", "1504"]}, "coop": "2", "type": "Q_78", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3632", "2673", "3115"]}}, {"blue": {"score": {"brige": "20", "tele": "0", "hybrid": "12", "final": "32", "foul": "0"}, "teams": ["3175", "3002", "217"]}, "coop": "2", "type": "Q_79", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "15", "foul": "0", "tele": "3"}, "teams": ["818", "2960", "2676"]}}, {"blue": {"score": {"brige": "10", "tele": "12", "hybrid": "16", "final": "47", "foul": "9"}, "teams": ["469", "280", "2620"]}, "coop": "0", "type": "Q_80", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["4002", "3619", "3706"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "5", "final": "15", "foul": "0"}, "teams": ["1701", "3115", "280"]}, "coop": "0", "type": "E_1", "eventKey": "2012DT", "red": {"score": {"bridge": "20", "hybrid": "11", "final": "64", "foul": "3", "tele": "30"}, "teams": ["3175", "1023", "469"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "3", "foul": "0"}, "teams": ["815", "2620", "2591"]}, "coop": "0", "type": "E_2", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "15", "foul": "0", "tele": "9"}, "teams": ["314", "2611", "201"]}}, {"blue": {"score": {"brige": "20", "tele": "12", "hybrid": "11", "final": "43", "foul": "0"}, "teams": ["123", "3547", "2960"]}, "coop": "0", "type": "E_3", "eventKey": "2012DT", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "59", "foul": "0", "tele": "21"}, "teams": ["1189", "217", "51"]}}, {"blue": {"score": {"brige": "10", "tele": "25", "hybrid": "10", "final": "45", "foul": "0"}, "teams": ["3538", "313", "1504"]}, "coop": "0", "type": "E_4", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "15", "final": "21", "foul": "0", "tele": "6"}, "teams": ["326", "94", "453"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["280", "1701", "3115"]}, "coop": "0", "type": "E_5", "eventKey": "2012DT", "red": {"score": {"bridge": "40", "hybrid": "12", "final": "70", "foul": "0", "tele": "18"}, "teams": ["1023", "3175", "469"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "6", "final": "9", "foul": "0"}, "teams": ["815", "2591", "2620"]}, "coop": "0", "type": "E_6", "eventKey": "2012DT", "red": {"score": {"bridge": "10", "hybrid": "24", "final": "52", "foul": "3", "tele": "15"}, "teams": ["2611", "201", "314"]}}, {"blue": {"score": {"brige": "20", "tele": "3", "hybrid": "6", "final": "29", "foul": "0"}, "teams": ["2960", "3547", "123"]}, "coop": "0", "type": "E_7", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "22", "foul": "0", "tele": "10"}, "teams": ["217", "1189", "51"]}}, {"blue": {"score": {"brige": "10", "tele": "18", "hybrid": "10", "final": "47", "foul": "9"}, "teams": ["1504", "313", "3538"]}, "coop": "0", "type": "E_8", "eventKey": "2012DT", "red": {"score": {"bridge": "20", "hybrid": "10", "final": "39", "foul": "0", "tele": "9"}, "teams": ["453", "326", "94"]}}, {"blue": {"score": {"brige": "0", "tele": "14", "hybrid": "12", "final": "35", "foul": "9"}, "teams": ["2960", "3547", "123"]}, "coop": "0", "type": "E_11", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "24", "foul": "0", "tele": "12"}, "teams": ["51", "1189", "217"]}}, {"blue": {"score": {"brige": "20", "tele": "13", "hybrid": "6", "final": "39", "foul": "0"}, "teams": ["2960", "3547", "123"]}, "coop": "0", "type": "E_11", "eventKey": "2012DT", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "39", "foul": "0", "tele": "13"}, "teams": ["51", "1189", "217"]}}, {"blue": {"score": {"brige": "0", "tele": "22", "hybrid": "12", "final": "34", "foul": "0"}, "teams": ["2611", "314", "201"]}, "coop": "0", "type": "E_13", "eventKey": "2012DT", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "59", "foul": "0", "tele": "27"}, "teams": ["469", "3175", "1023"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "10", "final": "31", "foul": "9"}, "teams": ["1504", "313", "3538"]}, "coop": "0", "type": "E_14", "eventKey": "2012DT", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "40", "foul": "0", "tele": "2"}, "teams": ["51", "1189", "217"]}}, {"blue": {"score": {"brige": "0", "tele": "11", "hybrid": "6", "final": "17", "foul": "0"}, "teams": ["314", "2611", "201"]}, "coop": "0", "type": "E_15", "eventKey": "2012DT", "red": {"score": {"bridge": "40", "hybrid": "6", "final": "69", "foul": "0", "tele": "23"}, "teams": ["469", "1023", "3175"]}}, {"blue": {"score": {"brige": "10", "tele": "18", "hybrid": "10", "final": "41", "foul": "3"}, "teams": ["313", "1504", "3538"]}, "coop": "0", "type": "E_16", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "16", "final": "26", "foul": "0", "tele": "10"}, "teams": ["1189", "217", "51"]}}, {"blue": {"score": {"brige": "10", "tele": "20", "hybrid": "10", "final": "40", "foul": "0"}, "teams": ["3538", "1504", "313"]}, "coop": "0", "type": "E_18", "eventKey": "2012DT", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "23", "foul": "0", "tele": "12"}, "teams": ["1189", "51", "217"]}}, {"blue": {"score": {"brige": "0", "tele": "16", "hybrid": "10", "final": "26", "foul": "0"}, "teams": ["1504", "313", "3538"]}, "coop": "0", "type": "E_19", "eventKey": "2012DT", "red": {"score": {"bridge": "40", "hybrid": "24", "final": "94", "foul": "0", "tele": "30"}, "teams": ["1023", "3175", "469"]}}, {"blue": {"score": {"brige": "0", "tele": "20", "hybrid": "10", "final": "30", "foul": "0"}, "teams": ["313", "1504", "3538"]}, "coop": "0", "type": "E_20", "eventKey": "2012DT", "red": {"score": {"bridge": "40", "hybrid": "12", "final": "92", "foul": "0", "tele": "40"}, "teams": ["3175", "469", "1023"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "0", "final": "9", "foul": "0"}, "teams": ["2916", "21", "3242"]}, "coop": "0", "type": "Q_1", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "8", "final": "8", "foul": "0", "tele": "0"}, "teams": ["4214", "3502", "3164"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "12", "final": "27", "foul": "9"}, "teams": ["4222", "3410", "25"]}, "coop": "0", "type": "Q_2", "eventKey": "2012FL", "red": {"score": {"bridge": "10", "hybrid": "5", "final": "15", "foul": "0", "tele": "0"}, "teams": ["86", "3011", "4352"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "12", "final": "12", "foul": "0"}, "teams": ["3782", "2383", "108"]}, "coop": "0", "type": "Q_3", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["4066", "3659", "4190"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "3", "foul": "0"}, "teams": ["1612", "3132", "1557"]}, "coop": "2", "type": "Q_4", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["3376", "233", "103"]}}, {"blue": {"score": {"brige": "0", "tele": "21", "hybrid": "12", "final": "36", "foul": "3"}, "teams": ["1592", "4091", "3556"]}, "coop": "0", "type": "Q_5", "eventKey": "2012FL", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "41", "foul": "0", "tele": "9"}, "teams": ["180", "4065", "801"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "3", "foul": "3"}, "teams": ["3790", "3611", "1604"]}, "coop": "0", "type": "Q_6", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "9", "foul": "9", "tele": "0"}, "teams": ["2556", "4197", "1649"]}}, {"blue": {"score": {"brige": "0", "tele": "21", "hybrid": "16", "final": "46", "foul": "9"}, "teams": ["665", "342", "744"]}, "coop": "0", "type": "Q_7", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "1", "foul": "0", "tele": "1"}, "teams": ["4013", "4333", "4024"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "6", "foul": "6"}, "teams": ["79", "2797", "1902"]}, "coop": "0", "type": "Q_8", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["945", "3557", "3489"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["4223", "3998", "2152"]}, "coop": "0", "type": "Q_9", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "32", "foul": "6", "tele": "14"}, "teams": ["4133", "4064", "1065"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["386", "2757", "1251"]}, "coop": "0", "type": "Q_10", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "17", "foul": "9", "tele": "8"}, "teams": ["1875", "1523", "1543"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "0", "final": "8", "foul": "3"}, "teams": ["179", "1557", "4222"]}, "coop": "0", "type": "Q_11", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["4321", "3627", "1612"]}}, {"blue": {"score": {"brige": "10", "tele": "5", "hybrid": "0", "final": "18", "foul": "3"}, "teams": ["21", "3659", "2383"]}, "coop": "0", "type": "Q_12", "eventKey": "2012FL", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "19", "foul": "0", "tele": "3"}, "teams": ["4333", "2556", "25"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3011", "801", "4190"]}, "coop": "0", "type": "Q_13", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "6", "foul": "0", "tele": "0"}, "teams": ["3557", "3242", "1649"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "12", "final": "21", "foul": "0"}, "teams": ["3410", "1065", "945"]}, "coop": "0", "type": "Q_14", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "4", "foul": "0", "tele": "4"}, "teams": ["1592", "3611", "4214"]}}, {"blue": {"score": {"brige": "0", "tele": "7", "hybrid": "0", "final": "7", "foul": "0"}, "teams": ["342", "3998", "4066"]}, "coop": "0", "type": "Q_15", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "5", "foul": "3", "tele": "2"}, "teams": ["1875", "4065", "3132"]}}, {"blue": {"score": {"brige": "0", "tele": "15", "hybrid": "18", "final": "33", "foul": "0"}, "teams": ["665", "103", "3489"]}, "coop": "0", "type": "Q_16", "eventKey": "2012FL", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "13", "foul": "3", "tele": "0"}, "teams": ["386", "108", "3627"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "12", "final": "24", "foul": "9"}, "teams": ["1251", "180", "4352"]}, "coop": "2", "type": "Q_17", "eventKey": "2012FL", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "12", "foul": "0", "tele": "2"}, "teams": ["79", "2152", "3782"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4197", "1543", "4013"]}, "coop": "0", "type": "Q_18", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "15", "final": "26", "foul": "6", "tele": "5"}, "teams": ["86", "4091", "3164"]}}, {"blue": {"score": {"brige": "20", "tele": "3", "hybrid": "6", "final": "29", "foul": "0"}, "teams": ["2797", "3556", "3502"]}, "coop": "0", "type": "Q_19", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "3", "tele": "0"}, "teams": ["4321", "4064", "3790"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "5", "final": "7", "foul": "0"}, "teams": ["1902", "1523", "3376"]}, "coop": "0", "type": "Q_20", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "15", "foul": "9", "tele": "6"}, "teams": ["744", "4133", "2916"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "0", "final": "19", "foul": "3"}, "teams": ["233", "2757", "179"]}, "coop": "0", "type": "Q_21", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["4024", "1604", "4223"]}}, {"blue": {"score": {"brige": "0", "tele": "14", "hybrid": "6", "final": "20", "foul": "0"}, "teams": ["3659", "945", "103"]}, "coop": "0", "type": "Q_22", "eventKey": "2012FL", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "17", "foul": "0", "tele": "1"}, "teams": ["3242", "665", "4352"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3998", "86", "3790"]}, "coop": "1", "type": "Q_24", "eventKey": "2012FL", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "19", "foul": "9", "tele": "0"}, "teams": ["4190", "21", "1557"]}}, {"blue": {"score": {"brige": "0", "tele": "7", "hybrid": "0", "final": "7", "foul": "0"}, "teams": ["2797", "180", "744"]}, "coop": "0", "type": "Q_25", "eventKey": "2012FL", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "27", "foul": "0", "tele": "11"}, "teams": ["2383", "2556", "1065"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4066", "4197", "2757"]}, "coop": "0", "type": "Q_26", "eventKey": "2012FL", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "35", "foul": "3", "tele": "4"}, "teams": ["342", "3556", "4222"]}}, {"blue": {"score": {"brige": "0", "tele": "24", "hybrid": "12", "final": "42", "foul": "6"}, "teams": ["4321", "1649", "1592"]}, "coop": "0", "type": "Q_27", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["4223", "4333", "2916"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["1604", "3557", "1612"]}, "coop": "0", "type": "Q_28", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "9", "foul": "3", "tele": "6"}, "teams": ["3489", "4091", "2152"]}}, {"blue": {"score": {"brige": "20", "tele": "9", "hybrid": "10", "final": "39", "foul": "0"}, "teams": ["4064", "1902", "25"]}, "coop": "0", "type": "Q_29", "eventKey": "2012FL", "red": {"score": {"bridge": "10", "hybrid": "10", "final": "23", "foul": "0", "tele": "3"}, "teams": ["4024", "3611", "3164"]}}, {"blue": {"score": {"brige": "20", "tele": "2", "hybrid": "10", "final": "35", "foul": "3"}, "teams": ["3502", "1523", "3011"]}, "coop": "2", "type": "Q_30", "eventKey": "2012FL", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "25", "foul": "0", "tele": "3"}, "teams": ["233", "108", "1543"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "6", "foul": "6"}, "teams": ["4214", "3376", "4065"]}, "coop": "0", "type": "Q_31", "eventKey": "2012FL", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "31", "foul": "9", "tele": "12"}, "teams": ["79", "179", "1251"]}}, {"blue": {"score": {"brige": "10", "tele": "1", "hybrid": "5", "final": "25", "foul": "9"}, "teams": ["3132", "4333", "4190"]}, "coop": "0", "type": "Q_32", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "16", "foul": "3", "tele": "7"}, "teams": ["3410", "4133", "3556"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "5", "final": "8", "foul": "0"}, "teams": ["2383", "3790", "2916"]}, "coop": "0", "type": "Q_33", "eventKey": "2012FL", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "10", "foul": "0", "tele": "0"}, "teams": ["2757", "3557", "4013"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2383", "3790", "2916"]}, "coop": "0", "type": "Q_33", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["2757", "3557", "4013"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "5", "final": "5", "foul": "0"}, "teams": ["1875", "4064", "945"]}, "coop": "0", "type": "Q_34", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "0", "tele": "6"}, "teams": ["4091", "21", "4222"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["1649", "3164", "3782"]}, "coop": "0", "type": "Q_35", "eventKey": "2012FL", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "38", "foul": "6", "tele": "6"}, "teams": ["3998", "103", "2797"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "6", "final": "16", "foul": "9"}, "teams": ["86", "4066", "665"]}, "coop": "0", "type": "Q_36", "eventKey": "2012FL", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "20", "foul": "0", "tele": "10"}, "teams": ["179", "2152", "4321"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["4352", "108", "4223"]}, "coop": "0", "type": "Q_37", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["1251", "1604", "3132"]}}, {"blue": {"score": {"brige": "0", "tele": "23", "hybrid": "16", "final": "48", "foul": "9"}, "teams": ["1592", "1523", "1612"]}, "coop": "0", "type": "Q_38", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "15", "foul": "9", "tele": "0"}, "teams": ["4214", "342", "3011"]}}, {"blue": {"score": {"brige": "0", "tele": "15", "hybrid": "12", "final": "30", "foul": "3"}, "teams": ["801", "1065", "3659"]}, "coop": "0", "type": "Q_39", "eventKey": "2012FL", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "23", "foul": "9", "tele": "4"}, "teams": ["4024", "79", "1557"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["25", "4133", "3627"]}, "coop": "2", "type": "Q_40", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "27", "foul": "0", "tele": "15"}, "teams": ["4197", "3502", "180"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "0", "final": "6", "foul": "0"}, "teams": ["386", "4065", "233"]}, "coop": "2", "type": "Q_41", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "22", "final": "42", "foul": "0", "tele": "20"}, "teams": ["1902", "2556", "744"]}}, {"blue": {"score": {"brige": "10", "tele": "1", "hybrid": "0", "final": "11", "foul": "0"}, "teams": ["3410", "3611", "1543"]}, "coop": "0", "type": "Q_42", "eventKey": "2012FL", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "34", "foul": "0", "tele": "2"}, "teams": ["3376", "3242", "3489"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["3132", "4013", "4223"]}, "coop": "0", "type": "Q_43", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["2152", "945", "1612"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "17", "final": "29", "foul": "3"}, "teams": ["2916", "1251", "342"]}, "coop": "0", "type": "Q_44", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["3659", "4064", "1604"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "4", "foul": "0"}, "teams": ["4091", "3011", "179"]}, "coop": "0", "type": "Q_45", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "40", "foul": "3", "tele": "19"}, "teams": ["3790", "1065", "103"]}}, {"blue": {"score": {"brige": "0", "tele": "21", "hybrid": "12", "final": "42", "foul": "9"}, "teams": ["4214", "180", "1649"]}, "coop": "0", "type": "Q_46", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["1557", "108", "86"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "12", "final": "20", "foul": "0"}, "teams": ["4222", "4197", "744"]}, "coop": "0", "type": "Q_47", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "8", "foul": "0", "tele": "8"}, "teams": ["4190", "79", "665"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "12", "final": "28", "foul": "0"}, "teams": ["3557", "2383", "3164"]}, "coop": "0", "type": "Q_48", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "16", "foul": "0", "tele": "6"}, "teams": ["1523", "4065", "4352"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "0", "final": "12", "foul": "0"}, "teams": ["25", "801", "3502"]}, "coop": "0", "type": "Q_49", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "3", "tele": "0"}, "teams": ["3489", "3410", "2757"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["21", "2556", "3782"]}, "coop": "0", "type": "Q_50", "eventKey": "2012FL", "red": {"score": {"bridge": "10", "hybrid": "21", "final": "36", "foul": "3", "tele": "2"}, "teams": ["4321", "3556", "1902"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4066", "1543", "4333"]}, "coop": "0", "type": "Q_51", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "4", "foul": "3", "tele": "1"}, "teams": ["3998", "233", "3611"]}}, {"blue": {"score": {"brige": "0", "tele": "23", "hybrid": "0", "final": "23", "foul": "0"}, "teams": ["3376", "4024", "1592"]}, "coop": "0", "type": "Q_52", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "18", "foul": "6", "tele": "0"}, "teams": ["3242", "1875", "3627"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "8", "final": "21", "foul": "3"}, "teams": ["2797", "1557", "4352"]}, "coop": "0", "type": "Q_53", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["4133", "386", "4197"]}}, {"blue": {"score": {"brige": "10", "tele": "4", "hybrid": "12", "final": "26", "foul": "0"}, "teams": ["103", "3502", "2152"]}, "coop": "2", "type": "Q_54", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "16", "final": "27", "foul": "3", "tele": "8"}, "teams": ["945", "744", "4190"]}}, {"blue": {"score": {"brige": "10", "tele": "12", "hybrid": "22", "final": "44", "foul": "0"}, "teams": ["1523", "3489", "180"]}, "coop": "0", "type": "Q_55", "eventKey": "2012FL", "red": {"score": {"bridge": "10", "hybrid": "14", "final": "34", "foul": "0", "tele": "10"}, "teams": ["3132", "21", "179"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "0", "final": "12", "foul": "0"}, "teams": ["3782", "4091", "233"]}, "coop": "0", "type": "Q_56", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "9", "final": "9", "foul": "0", "tele": "0"}, "teams": ["665", "25", "2916"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["3410", "3557", "4214"]}, "coop": "0", "type": "Q_57", "eventKey": "2012FL", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "29", "foul": "9", "tele": "0"}, "teams": ["4064", "2556", "4013"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "13", "foul": "3"}, "teams": ["3011", "3790", "4065"]}, "coop": "0", "type": "Q_58", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["86", "4223", "3659"]}}, {"blue": {"score": {"brige": "10", "tele": "12", "hybrid": "18", "final": "40", "foul": "0"}, "teams": ["1592", "4133", "1875"]}, "coop": "0", "type": "Q_59", "eventKey": "2012FL", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "13", "foul": "0", "tele": "3"}, "teams": ["1543", "1604", "2383"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "12", "final": "24", "foul": "3"}, "teams": ["1649", "4066", "1065"]}, "coop": "0", "type": "Q_60", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "21", "foul": "6", "tele": "5"}, "teams": ["1902", "1251", "3627"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "12", "final": "16", "foul": "3"}, "teams": ["1612", "79", "3242"]}, "coop": "0", "type": "Q_61", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "12", "foul": "0", "tele": "6"}, "teams": ["2757", "3556", "4333"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "4", "foul": "0"}, "teams": ["4024", "386", "4321"]}, "coop": "0", "type": "Q_62", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "17", "foul": "3", "tele": "3"}, "teams": ["3998", "108", "3164"]}}, {"blue": {"score": {"brige": "20", "tele": "0", "hybrid": "12", "final": "41", "foul": "9"}, "teams": ["342", "2797", "801"]}, "coop": "0", "type": "Q_63", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "17", "foul": "3", "tele": "2"}, "teams": ["3611", "3376", "4222"]}}, {"blue": {"score": {"brige": "10", "tele": "9", "hybrid": "12", "final": "31", "foul": "0"}, "teams": ["744", "3782", "4352"]}, "coop": "0", "type": "Q_64", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["4214", "3790", "3489"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "0", "final": "12", "foul": "0"}, "teams": ["233", "1649", "21"]}, "coop": "0", "type": "Q_65", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "1", "foul": "0", "tele": "1"}, "teams": ["2152", "4197", "3410"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "3", "foul": "0"}, "teams": ["665", "3132", "4064"]}, "coop": "0", "type": "Q_66", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "3", "tele": "0"}, "teams": ["4065", "2757", "4190"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "6", "final": "19", "foul": "0"}, "teams": ["3242", "4013", "3011"]}, "coop": "2", "type": "Q_67", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "22", "final": "41", "foul": "6", "tele": "13"}, "teams": ["4066", "180", "1902"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "4", "final": "20", "foul": "3"}, "teams": ["1251", "86", "3557"]}, "coop": "2", "type": "Q_68", "eventKey": "2012FL", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "47", "foul": "0", "tele": "21"}, "teams": ["386", "4333", "1592"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "8", "final": "19", "foul": "9"}, "teams": ["945", "4321", "3164"]}, "coop": "0", "type": "Q_69", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "15", "foul": "0", "tele": "9"}, "teams": ["801", "4133", "1604"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "3", "foul": "0"}, "teams": ["1875", "3502", "3659"]}, "coop": "0", "type": "Q_70", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "14", "final": "22", "foul": "0", "tele": "8"}, "teams": ["1612", "2797", "179"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "4", "final": "4", "foul": "0"}, "teams": ["1543", "2916", "2556"]}, "coop": "0", "type": "Q_71", "eventKey": "2012FL", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "46", "foul": "9", "tele": "15"}, "teams": ["4222", "4024", "103"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "12", "final": "15", "foul": "0"}, "teams": ["3376", "3556", "25"]}, "coop": "2", "type": "Q_72", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "22", "final": "36", "foul": "3", "tele": "11"}, "teams": ["108", "1065", "1523"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "6", "final": "11", "foul": "0"}, "teams": ["79", "3998", "3627"]}, "coop": "2", "type": "Q_73", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "6", "foul": "0", "tele": "0"}, "teams": ["4223", "3611", "4091"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "18", "final": "31", "foul": "0"}, "teams": ["1557", "1902", "3489"]}, "coop": "0", "type": "Q_74", "eventKey": "2012FL", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "37", "foul": "0", "tele": "9"}, "teams": ["342", "2383", "4333"]}}, {"blue": {"score": {"brige": "10", "tele": "11", "hybrid": "0", "final": "21", "foul": "0"}, "teams": ["801", "21", "3164"]}, "coop": "0", "type": "Q_75", "eventKey": "2012FL", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "26", "foul": "0", "tele": "6"}, "teams": ["744", "3011", "3132"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "0", "final": "12", "foul": "0"}, "teams": ["1604", "86", "4013"]}, "coop": "1", "type": "Q_76", "eventKey": "2012FL", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "44", "foul": "9", "tele": "7"}, "teams": ["103", "4064", "3242"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["945", "4133", "4065"]}, "coop": "0", "type": "Q_77", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "16", "foul": "0", "tele": "10"}, "teams": ["2757", "1065", "3782"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "10", "final": "15", "foul": "3"}, "teams": ["4214", "1523", "4197"]}, "coop": "2", "type": "Q_78", "eventKey": "2012FL", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "41", "foul": "0", "tele": "19"}, "teams": ["180", "3998", "3659"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "11", "final": "12", "foul": "0"}, "teams": ["79", "386", "4066"]}, "coop": "0", "type": "Q_79", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["2916", "1612", "3410"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "21", "foul": "18"}, "teams": ["1875", "3557", "3611"]}, "coop": "0", "type": "Q_80", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "4", "final": "4", "foul": "0", "tele": "0"}, "teams": ["665", "3556", "1557"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3376", "1649", "4352"]}, "coop": "0", "type": "Q_81", "eventKey": "2012FL", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "22", "foul": "3", "tele": "3"}, "teams": ["3502", "4321", "4091"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "11", "final": "11", "foul": "0"}, "teams": ["233", "3627", "4024"]}, "coop": "2", "type": "Q_82", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "18", "foul": "12", "tele": "0"}, "teams": ["1251", "2797", "2383"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "4", "final": "16", "foul": "0"}, "teams": ["2556", "179", "4223"]}, "coop": "0", "type": "Q_83", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "8", "foul": "0", "tele": "2"}, "teams": ["1543", "4190", "342"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "6", "final": "12", "foul": "0"}, "teams": ["3790", "2152", "4222"]}, "coop": "0", "type": "Q_84", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "15", "foul": "0", "tele": "3"}, "teams": ["108", "25", "1592"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3556", "2916", "1604"]}, "coop": "2", "type": "Q_85", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["665", "3998", "3011"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "10", "final": "22", "foul": "3"}, "teams": ["4321", "2757", "744"]}, "coop": "0", "type": "Q_86", "eventKey": "2012FL", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "37", "foul": "3", "tele": "12"}, "teams": ["4091", "180", "3557"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "5", "final": "5", "foul": "0"}, "teams": ["3132", "79", "3611"]}, "coop": "2", "type": "Q_87", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "6", "foul": "0", "tele": "0"}, "teams": ["3502", "2383", "86"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["4197", "4064", "4333"]}, "coop": "0", "type": "Q_88", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "8", "final": "19", "foul": "9", "tele": "2"}, "teams": ["179", "3782", "3376"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4024", "4190", "4352"]}, "coop": "0", "type": "Q_89", "eventKey": "2012FL", "red": {"score": {"bridge": "10", "hybrid": "21", "final": "40", "foul": "3", "tele": "6"}, "teams": ["21", "1523", "3627"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "13", "final": "15", "foul": "0"}, "teams": ["1557", "2556", "3164"]}, "coop": "0", "type": "Q_90", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "22", "final": "40", "foul": "0", "tele": "18"}, "teams": ["945", "4066", "1592"]}}, {"blue": {"score": {"brige": "20", "tele": "14", "hybrid": "0", "final": "34", "foul": "0"}, "teams": ["4214", "2152", "25"]}, "coop": "0", "type": "Q_91", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["2797", "1543", "4065"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "9", "foul": "9"}, "teams": ["4133", "4013", "3489"]}, "coop": "0", "type": "Q_92", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "0", "tele": "6"}, "teams": ["1649", "4222", "3659"]}}, {"blue": {"score": {"brige": "0", "tele": "15", "hybrid": "12", "final": "30", "foul": "3"}, "teams": ["3410", "108", "103"]}, "coop": "0", "type": "Q_93", "eventKey": "2012FL", "red": {"score": {"bridge": "10", "hybrid": "10", "final": "23", "foul": "0", "tele": "3"}, "teams": ["1875", "4223", "1902"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "6", "final": "11", "foul": "0"}, "teams": ["386", "3242", "3790"]}, "coop": "2", "type": "Q_94", "eventKey": "2012FL", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "51", "foul": "3", "tele": "20"}, "teams": ["233", "342", "1065"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "12", "final": "12", "foul": "0"}, "teams": ["1612", "2556", "86"]}, "coop": "2", "type": "Q_95", "eventKey": "2012FL", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "24", "foul": "0", "tele": "2"}, "teams": ["801", "1251", "665"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "0", "final": "15", "foul": "3"}, "teams": ["4333", "4091", "1604"]}, "coop": "2", "type": "Q_96", "eventKey": "2012FL", "red": {"score": {"bridge": "20", "hybrid": "10", "final": "36", "foul": "6", "tele": "0"}, "teams": ["2797", "4066", "1523"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3557", "4222", "3782"]}, "coop": "0", "type": "Q_97", "eventKey": "2012FL", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "10", "foul": "0", "tele": "0"}, "teams": ["4024", "3132", "3502"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "6", "final": "8", "foul": "0"}, "teams": ["3556", "2152", "3659"]}, "coop": "0", "type": "Q_98", "eventKey": "2012FL", "red": {"score": {"bridge": "10", "hybrid": "5", "final": "24", "foul": "6", "tele": "3"}, "teams": ["3627", "3164", "3410"]}}, {"blue": {"score": {"brige": "10", "tele": "4", "hybrid": "11", "final": "25", "foul": "0"}, "teams": ["945", "2383", "386"]}, "coop": "2", "type": "Q_99", "eventKey": "2012FL", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "15", "foul": "0", "tele": "5"}, "teams": ["4197", "3011", "3376"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "18", "final": "28", "foul": "0"}, "teams": ["180", "4064", "1543"]}, "coop": "0", "type": "Q_100", "eventKey": "2012FL", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "27", "foul": "0", "tele": "11"}, "teams": ["3790", "801", "1649"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "5", "final": "21", "foul": "12"}, "teams": ["3998", "2757", "1902"]}, "coop": "0", "type": "Q_101", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "7", "foul": "0", "tele": "7"}, "teams": ["179", "1592", "4352"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "6", "final": "18", "foul": "0"}, "teams": ["4321", "4133", "342"]}, "coop": "2", "type": "Q_102", "eventKey": "2012FL", "red": {"score": {"bridge": "10", "hybrid": "11", "final": "30", "foul": "0", "tele": "9"}, "teams": ["79", "4214", "103"]}}, {"blue": {"score": {"brige": "10", "tele": "5", "hybrid": "12", "final": "27", "foul": "0"}, "teams": ["4065", "108", "3611"]}, "coop": "0", "type": "Q_103", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["21", "1612", "4013"]}}, {"blue": {"score": {"brige": "0", "tele": "16", "hybrid": "26", "final": "42", "foul": "0"}, "teams": ["1557", "3242", "744"]}, "coop": "2", "type": "Q_104", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "31", "foul": "6", "tele": "13"}, "teams": ["25", "4223", "1251"]}}, {"blue": {"score": {"brige": "20", "tele": "9", "hybrid": "6", "final": "44", "foul": "9"}, "teams": ["945", "2383", "342"]}, "coop": "0", "type": "E_1", "eventKey": "2012FL", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "25", "foul": "0", "tele": "9"}, "teams": ["180", "744", "3556"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "16", "final": "16", "foul": "0"}, "teams": ["801", "79", "3502"]}, "coop": "0", "type": "E_2", "eventKey": "2012FL", "red": {"score": {"bridge": "20", "hybrid": "20", "final": "48", "foul": "0", "tele": "8"}, "teams": ["1902", "1523", "21"]}}, {"blue": {"score": {"brige": "20", "tele": "7", "hybrid": "22", "final": "49", "foul": "0"}, "teams": ["179", "25", "1251"]}, "coop": "0", "type": "E_3", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "33", "foul": "0", "tele": "33"}, "teams": ["86", "233", "1592"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "6", "foul": "3"}, "teams": ["108", "2797", "3998"]}, "coop": "0", "type": "E_4", "eventKey": "2012FL", "red": {"score": {"bridge": "20", "hybrid": "24", "final": "72", "foul": "3", "tele": "25"}, "teams": ["1065", "4091", "103"]}}, {"blue": {"score": {"brige": "0", "tele": "11", "hybrid": "11", "final": "22", "foul": "0"}, "teams": ["945", "2383", "342"]}, "coop": "0", "type": "E_5", "eventKey": "2012FL", "red": {"score": {"bridge": "10", "hybrid": "30", "final": "52", "foul": "3", "tele": "9"}, "teams": ["180", "3556", "744"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "17", "final": "23", "foul": "0"}, "teams": ["801", "79", "3502"]}, "coop": "0", "type": "E_6", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "20", "final": "28", "foul": "0", "tele": "8"}, "teams": ["1902", "1523", "21"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "12", "final": "18", "foul": "0"}, "teams": ["179", "25", "1251"]}, "coop": "0", "type": "E_7", "eventKey": "2012FL", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "65", "foul": "0", "tele": "39"}, "teams": ["233", "86", "1592"]}}, {"blue": {"score": {"brige": "20", "tele": "0", "hybrid": "0", "final": "20", "foul": "0"}, "teams": ["3998", "108", "2797"]}, "coop": "0", "type": "E_8", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "42", "foul": "9", "tele": "21"}, "teams": ["4091", "103", "1065"]}}, {"blue": {"score": {"brige": "20", "tele": "7", "hybrid": "28", "final": "55", "foul": "0"}, "teams": ["2383", "342", "945"]}, "coop": "0", "type": "E_9", "eventKey": "2012FL", "red": {"score": {"bridge": "10", "hybrid": "29", "final": "57", "foul": "6", "tele": "12"}, "teams": ["744", "180", "3556"]}}, {"blue": {"score": {"brige": "20", "tele": "9", "hybrid": "0", "final": "38", "foul": "9"}, "teams": ["179", "1251", "25"]}, "coop": "0", "type": "E_11", "eventKey": "2012FL", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "53", "foul": "0", "tele": "27"}, "teams": ["233", "1592", "86"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "20", "final": "34", "foul": "6"}, "teams": ["21", "1523", "1902"]}, "coop": "0", "type": "E_13", "eventKey": "2012FL", "red": {"score": {"bridge": "20", "hybrid": "30", "final": "70", "foul": "3", "tele": "17"}, "teams": ["180", "744", "3556"]}}, {"blue": {"score": {"brige": "20", "tele": "33", "hybrid": "12", "final": "65", "foul": "0"}, "teams": ["1065", "4091", "103"]}, "coop": "0", "type": "E_14", "eventKey": "2012FL", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "72", "foul": "6", "tele": "28"}, "teams": ["1592", "86", "233"]}}, {"blue": {"score": {"brige": "20", "tele": "11", "hybrid": "26", "final": "57", "foul": "0"}, "teams": ["21", "1523", "1902"]}, "coop": "0", "type": "E_15", "eventKey": "2012FL", "red": {"score": {"bridge": "20", "hybrid": "30", "final": "81", "foul": "6", "tele": "25"}, "teams": ["180", "744", "3556"]}}, {"blue": {"score": {"brige": "0", "tele": "32", "hybrid": "12", "final": "44", "foul": "0"}, "teams": ["4091", "1065", "103"]}, "coop": "0", "type": "E_16", "eventKey": "2012FL", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "71", "foul": "12", "tele": "27"}, "teams": ["86", "1592", "233"]}}, {"blue": {"score": {"brige": "20", "tele": "17", "hybrid": "12", "final": "52", "foul": "3"}, "teams": ["233", "86", "1592"]}, "coop": "0", "type": "E_19", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "24", "final": "39", "foul": "0", "tele": "15"}, "teams": ["180", "3556", "744"]}}, {"blue": {"score": {"brige": "0", "tele": "15", "hybrid": "24", "final": "42", "foul": "3"}, "teams": ["233", "86", "1592"]}, "coop": "0", "type": "E_20", "eventKey": "2012FL", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "30", "foul": "0", "tele": "12"}, "teams": ["744", "3556", "180"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2420", "3139", "4059"]}, "coop": "0", "type": "Q_1", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "9", "foul": "9", "tele": "0"}, "teams": ["3815", "4240", "587"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["1746", "4149", "1379"]}, "coop": "0", "type": "Q_2", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["3694", "3776", "3318"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "14", "final": "14", "foul": "0"}, "teams": ["3600", "3344", "590"]}, "coop": "0", "type": "Q_3", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "9", "foul": "0", "tele": "9"}, "teams": ["3635", "4080", "2415"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "3", "foul": "0"}, "teams": ["3319", "2974", "1311"]}, "coop": "0", "type": "Q_4", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["1319", "2655", "3329"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3224", "1127", "4163"]}, "coop": "0", "type": "Q_5", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["2815", "1877", "4323"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["1683", "2918", "1002"]}, "coop": "0", "type": "Q_6", "eventKey": "2012GA", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "23", "foul": "0", "tele": "7"}, "teams": ["1261", "3824", "3091"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "0", "final": "1", "foul": "0"}, "teams": ["4026", "3976", "3959"]}, "coop": "0", "type": "Q_7", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "1", "foul": "0", "tele": "1"}, "teams": ["1999", "4287", "4195"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "12", "final": "12", "foul": "0"}, "teams": ["34", "832", "3581"]}, "coop": "0", "type": "Q_8", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "1", "foul": "0", "tele": "1"}, "teams": ["1414", "4235", "3573"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["4148", "1795", "343"]}, "coop": "0", "type": "Q_9", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "13", "foul": "0", "tele": "13"}, "teams": ["3653", "1771", "4188"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "12", "final": "24", "foul": "12"}, "teams": ["4177", "3265", "1648"]}, "coop": "0", "type": "Q_10", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "0", "tele": "6"}, "teams": ["4112", "4189", "4193"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "0", "final": "1", "foul": "0"}, "teams": ["1002", "2415", "4149"]}, "coop": "0", "type": "Q_11", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3319", "1746", "3815"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["1127", "4195", "3635"]}, "coop": "0", "type": "Q_12", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "12", "foul": "0", "tele": "6"}, "teams": ["3824", "3139", "1319"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2655", "4235", "4059"]}, "coop": "0", "type": "Q_13", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3224", "3976", "3091"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "5", "foul": "3"}, "teams": ["2815", "2420", "832"]}, "coop": "0", "type": "Q_14", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "15", "final": "33", "foul": "12", "tele": "6"}, "teams": ["4026", "4080", "2974"]}}, {"blue": {"score": {"brige": "10", "tele": "5", "hybrid": "0", "final": "15", "foul": "0"}, "teams": ["4189", "3573", "1683"]}, "coop": "0", "type": "Q_15", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["4112", "4287", "4323"]}}, {"blue": {"score": {"brige": "0", "tele": "13", "hybrid": "0", "final": "13", "foul": "0"}, "teams": ["2918", "1771", "34"]}, "coop": "2", "type": "Q_16", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["4193", "1379", "590"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["1877", "3265", "587"]}, "coop": "0", "type": "Q_17", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3329", "3776", "4188"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "10", "final": "13", "foul": "3"}, "teams": ["343", "1311", "1648"]}, "coop": "0", "type": "Q_18", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["3694", "1795", "1414"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "8", "final": "10", "foul": "0"}, "teams": ["3600", "4177", "1999"]}, "coop": "0", "type": "Q_19", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "9", "foul": "9", "tele": "0"}, "teams": ["4240", "4163", "4148"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "0", "final": "18", "foul": "12"}, "teams": ["3344", "3318", "1261"]}, "coop": "0", "type": "Q_20", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["3581", "3959", "3653"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3824", "4287", "2918"]}, "coop": "0", "type": "Q_21", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["34", "2655", "1746"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "6", "final": "22", "foul": "0"}, "teams": ["3265", "3635", "590"]}, "coop": "0", "type": "Q_22", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "16", "final": "17", "foul": "0", "tele": "1"}, "teams": ["4026", "3319", "3224"]}}, {"blue": {"score": {"brige": "10", "tele": "8", "hybrid": "10", "final": "34", "foul": "6"}, "teams": ["4189", "343", "4080"]}, "coop": "0", "type": "Q_23", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["4149", "4235", "587"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["1414", "4177", "2420"]}, "coop": "0", "type": "Q_24", "eventKey": "2012GA", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "10", "foul": "0", "tele": "0"}, "teams": ["3976", "1795", "4323"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["1261", "3581", "3776"]}, "coop": "0", "type": "Q_25", "eventKey": "2012GA", "red": {"score": {"bridge": "10", "hybrid": "14", "final": "29", "foul": "0", "tele": "5"}, "teams": ["1127", "3600", "4240"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "5", "final": "5", "foul": "0"}, "teams": ["2974", "3573", "3694"]}, "coop": "0", "type": "Q_26", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "11", "foul": "3", "tele": "2"}, "teams": ["3959", "4163", "1771"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4148", "3318", "4188"]}, "coop": "2", "type": "Q_27", "eventKey": "2012GA", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "41", "foul": "0", "tele": "9"}, "teams": ["1311", "3139", "832"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "6", "final": "18", "foul": "9"}, "teams": ["4193", "1002", "1648"]}, "coop": "0", "type": "Q_28", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["3344", "1999", "3329"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "6", "foul": "3"}, "teams": ["4195", "3653", "3815"]}, "coop": "0", "type": "Q_29", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3091", "4112", "1877"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "4", "final": "13", "foul": "0"}, "teams": ["4059", "2415", "1319"]}, "coop": "0", "type": "Q_30", "eventKey": "2012GA", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "13", "foul": "0", "tele": "3"}, "teams": ["1379", "1683", "2815"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "0", "final": "6", "foul": "0"}, "teams": ["2918", "3573", "3319"]}, "coop": "0", "type": "Q_31", "eventKey": "2012GA", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "22", "foul": "0", "tele": "6"}, "teams": ["3224", "343", "4177"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "6", "final": "14", "foul": "0"}, "teams": ["3694", "1771", "1127"]}, "coop": "0", "type": "Q_32", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "8", "final": "11", "foul": "0", "tele": "3"}, "teams": ["832", "4287", "3600"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "4", "final": "6", "foul": "0"}, "teams": ["1002", "3318", "3976"]}, "coop": "0", "type": "Q_33", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "7", "foul": "0", "tele": "1"}, "teams": ["4080", "1648", "4240"]}}, {"blue": {"score": {"brige": "10", "tele": "4", "hybrid": "6", "final": "23", "foul": "3"}, "teams": ["1261", "1795", "3329"]}, "coop": "0", "type": "Q_34", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["4149", "4189", "4163"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "0", "final": "9", "foul": "0"}, "teams": ["3653", "3139", "4026"]}, "coop": "0", "type": "Q_35", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "24", "foul": "0", "tele": "12"}, "teams": ["3581", "2415", "1311"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "9", "foul": "6"}, "teams": ["1379", "1414", "1999"]}, "coop": "0", "type": "Q_36", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["4188", "4195", "3824"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "4", "foul": "0"}, "teams": ["3776", "2655", "2815"]}, "coop": "0", "type": "Q_37", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["4235", "4112", "3959"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2420", "4193", "1746"]}, "coop": "0", "type": "Q_38", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "11", "foul": "3", "tele": "2"}, "teams": ["3635", "3091", "1683"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "6", "foul": "0"}, "teams": ["1877", "4148", "590"]}, "coop": "0", "type": "Q_39", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "15", "foul": "12", "tele": "3"}, "teams": ["2974", "4059", "587"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "12", "final": "21", "foul": "0"}, "teams": ["3265", "34", "1319"]}, "coop": "0", "type": "Q_40", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "9", "foul": "9", "tele": "0"}, "teams": ["3344", "3815", "4323"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3976", "3581", "4163"]}, "coop": "0", "type": "Q_41", "eventKey": "2012GA", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "18", "foul": "0", "tele": "2"}, "teams": ["3224", "3824", "832"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["3318", "4287", "3329"]}, "coop": "0", "type": "Q_42", "eventKey": "2012GA", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "37", "foul": "0", "tele": "15"}, "teams": ["1795", "2918", "2415"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "18", "final": "26", "foul": "0"}, "teams": ["3776", "1771", "4026"]}, "coop": "0", "type": "Q_43", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "16", "foul": "0", "tele": "6"}, "teams": ["4189", "3319", "4188"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "8", "final": "10", "foul": "0"}, "teams": ["2974", "3600", "4112"]}, "coop": "0", "type": "Q_44", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "21", "foul": "3", "tele": "6"}, "teams": ["1311", "4149", "4193"]}}, {"blue": {"score": {"brige": "0", "tele": "7", "hybrid": "0", "final": "7", "foul": "0"}, "teams": ["3959", "1746", "1414"]}, "coop": "0", "type": "Q_45", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["1127", "3265", "4059"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "0", "final": "12", "foul": "0"}, "teams": ["343", "3139", "1999"]}, "coop": "0", "type": "Q_46", "eventKey": "2012GA", "red": {"score": {"bridge": "10", "hybrid": "16", "final": "36", "foul": "3", "tele": "7"}, "teams": ["4080", "34", "1683"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["4240", "4323", "3694"]}, "coop": "0", "type": "Q_47", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "8", "foul": "3", "tele": "5"}, "teams": ["1877", "2655", "3635"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "13", "foul": "3"}, "teams": ["3091", "1319", "3653"]}, "coop": "0", "type": "Q_48", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "8", "foul": "3", "tele": "5"}, "teams": ["1648", "587", "3573"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4235", "3815", "4177"]}, "coop": "0", "type": "Q_49", "eventKey": "2012GA", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "31", "foul": "0", "tele": "3"}, "teams": ["590", "1261", "4195"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4148", "1379", "2420"]}, "coop": "0", "type": "Q_50", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "4", "final": "9", "foul": "3", "tele": "2"}, "teams": ["2815", "3344", "1002"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "22", "final": "30", "foul": "0"}, "teams": ["2974", "2415", "4189"]}, "coop": "0", "type": "Q_51", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "8", "foul": "0", "tele": "2"}, "teams": ["34", "1999", "3224"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "0", "final": "12", "foul": "0"}, "teams": ["3824", "3959", "4323"]}, "coop": "0", "type": "Q_52", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "4", "final": "7", "foul": "0", "tele": "3"}, "teams": ["3329", "4149", "3139"]}}, {"blue": {"score": {"brige": "20", "tele": "2", "hybrid": "0", "final": "22", "foul": "0"}, "teams": ["4188", "4287", "4080"]}, "coop": "0", "type": "Q_53", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "5", "foul": "0", "tele": "5"}, "teams": ["3581", "2918", "1319"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4112", "1795", "3319"]}, "coop": "0", "type": "Q_54", "eventKey": "2012GA", "red": {"score": {"bridge": "20", "hybrid": "5", "final": "29", "foul": "0", "tele": "4"}, "teams": ["832", "587", "1261"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "6", "foul": "0"}, "teams": ["2655", "4195", "4163"]}, "coop": "0", "type": "Q_55", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3265", "1002", "2420"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "5", "final": "15", "foul": "0"}, "teams": ["1683", "590", "1127"]}, "coop": "0", "type": "Q_56", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "14", "foul": "0", "tele": "2"}, "teams": ["3694", "3976", "3653"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "0", "final": "12", "foul": "0"}, "teams": ["4240", "1746", "4235"]}, "coop": "0", "type": "Q_57", "eventKey": "2012GA", "red": {"score": {"bridge": "10", "hybrid": "11", "final": "42", "foul": "0", "tele": "21"}, "teams": ["3573", "3344", "1771"]}}, {"blue": {"score": {"brige": "20", "tele": "0", "hybrid": "4", "final": "33", "foul": "9"}, "teams": ["4193", "1414", "3318"]}, "coop": "0", "type": "Q_58", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "7", "foul": "3", "tele": "4"}, "teams": ["2815", "4148", "3815"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["1648", "3635", "3776"]}, "coop": "2", "type": "Q_59", "eventKey": "2012GA", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "27", "foul": "0", "tele": "11"}, "teams": ["1311", "4059", "4177"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "8", "final": "9", "foul": "0"}, "teams": ["3091", "4026", "3600"]}, "coop": "0", "type": "Q_60", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "7", "foul": "0", "tele": "7"}, "teams": ["1877", "1379", "343"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "0", "final": "8", "foul": "3"}, "teams": ["1127", "4188", "4112"]}, "coop": "0", "type": "Q_61", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "24", "final": "46", "foul": "6", "tele": "16"}, "teams": ["2420", "2415", "34"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "6", "final": "14", "foul": "0"}, "teams": ["2918", "4149", "832"]}, "coop": "0", "type": "Q_62", "eventKey": "2012GA", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "10", "foul": "0", "tele": "0"}, "teams": ["3265", "3344", "3653"]}}, {"blue": {"score": {"brige": "10", "tele": "5", "hybrid": "6", "final": "21", "foul": "0"}, "teams": ["3139", "1795", "3959"]}, "coop": "0", "type": "Q_63", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["4193", "4235", "1319"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "6", "final": "11", "foul": "0"}, "teams": ["587", "1771", "1999"]}, "coop": "0", "type": "Q_64", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["4177", "2655", "3581"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "10", "final": "14", "foul": "0"}, "teams": ["4026", "3318", "3824"]}, "coop": "0", "type": "Q_65", "eventKey": "2012GA", "red": {"score": {"bridge": "10", "hybrid": "8", "final": "20", "foul": "0", "tele": "2"}, "teams": ["4059", "3573", "3600"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "12", "final": "12", "foul": "0"}, "teams": ["4195", "4080", "3224"]}, "coop": "0", "type": "Q_66", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["4148", "3694", "3319"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "17", "final": "26", "foul": "3"}, "teams": ["1261", "4323", "1379"]}, "coop": "2", "type": "Q_67", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "5", "foul": "0", "tele": "5"}, "teams": ["1648", "1746", "2974"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "6", "final": "10", "foul": "3"}, "teams": ["4240", "3329", "590"]}, "coop": "0", "type": "Q_68", "eventKey": "2012GA", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "27", "foul": "3", "tele": "14"}, "teams": ["2815", "3091", "343"]}}, {"blue": {"score": {"brige": "10", "tele": "4", "hybrid": "10", "final": "24", "foul": "0"}, "teams": ["4287", "1877", "4189"]}, "coop": "0", "type": "Q_69", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "9", "foul": "0", "tele": "9"}, "teams": ["1311", "1414", "1002"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "0", "final": "1", "foul": "0"}, "teams": ["3815", "4163", "3635"]}, "coop": "0", "type": "Q_70", "eventKey": "2012GA", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "10", "foul": "0", "tele": "0"}, "teams": ["3776", "3976", "1683"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "5", "final": "24", "foul": "6"}, "teams": ["4235", "3824", "3319"]}, "coop": "2", "type": "Q_71", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "5", "foul": "0", "tele": "0"}, "teams": ["2420", "3318", "3653"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4195", "587", "4323"]}, "coop": "0", "type": "Q_72", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "8", "final": "11", "foul": "3", "tele": "0"}, "teams": ["2918", "4193", "3600"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "6", "final": "18", "foul": "3"}, "teams": ["3224", "3329", "1746"]}, "coop": "2", "type": "Q_73", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["1795", "1999", "1319"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "12", "final": "27", "foul": "9"}, "teams": ["3265", "1311", "3573"]}, "coop": "2", "type": "Q_74", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["1127", "1379", "4080"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "12", "final": "28", "foul": "6"}, "teams": ["4163", "2974", "4188"]}, "coop": "0", "type": "Q_75", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["1648", "3815", "4287"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "6", "final": "9", "foul": "0"}, "teams": ["2655", "832", "4148"]}, "coop": "2", "type": "Q_76", "eventKey": "2012GA", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "40", "foul": "6", "tele": "6"}, "teams": ["2415", "3776", "590"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "0", "final": "12", "foul": "0"}, "teams": ["3091", "3959", "3694"]}, "coop": "0", "type": "Q_77", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "15", "foul": "0", "tele": "5"}, "teams": ["4177", "34", "4189"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "12", "final": "24", "foul": "0"}, "teams": ["1877", "3976", "1771"]}, "coop": "2", "type": "Q_78", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "12", "foul": "3", "tele": "9"}, "teams": ["1261", "3139", "2815"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "0", "final": "12", "foul": "0"}, "teams": ["1002", "4059", "3635"]}, "coop": "0", "type": "Q_79", "eventKey": "2012GA", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "19", "foul": "0", "tele": "3"}, "teams": ["4112", "343", "3581"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4149", "4240", "3344"]}, "coop": "0", "type": "Q_80", "eventKey": "2012GA", "red": {"score": {"bridge": "10", "hybrid": "10", "final": "29", "foul": "0", "tele": "9"}, "teams": ["1414", "1683", "4026"]}}, {"blue": {"score": {"brige": "10", "tele": "9", "hybrid": "5", "final": "27", "foul": "3"}, "teams": ["3776", "4080", "3573"]}, "coop": "0", "type": "Q_81", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["4195", "1795", "4193"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "6", "foul": "0"}, "teams": ["1379", "3653", "832"]}, "coop": "0", "type": "Q_82", "eventKey": "2012GA", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "10", "foul": "0", "tele": "0"}, "teams": ["4177", "3329", "4323"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "0", "final": "13", "foul": "0"}, "teams": ["3319", "3976", "2815"]}, "coop": "0", "type": "Q_83", "eventKey": "2012GA", "red": {"score": {"bridge": "10", "hybrid": "8", "final": "18", "foul": "0", "tele": "0"}, "teams": ["3600", "1746", "4188"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["3581", "1877", "1648"]}, "coop": "0", "type": "Q_84", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "11", "foul": "3", "tele": "8"}, "teams": ["2918", "3959", "2420"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "4", "foul": "0"}, "teams": ["4235", "3694", "1261"]}, "coop": "0", "type": "Q_85", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "1", "foul": "0", "tele": "1"}, "teams": ["1999", "4026", "4059"]}}, {"blue": {"score": {"brige": "10", "tele": "15", "hybrid": "6", "final": "31", "foul": "0"}, "teams": ["4240", "343", "2415"]}, "coop": "0", "type": "Q_86", "eventKey": "2012GA", "red": {"score": {"bridge": "10", "hybrid": "24", "final": "40", "foul": "0", "tele": "6"}, "teams": ["2974", "3265", "3824"]}}, {"blue": {"score": {"brige": "10", "tele": "8", "hybrid": "10", "final": "31", "foul": "3"}, "teams": ["2655", "4189", "3344"]}, "coop": "0", "type": "Q_87", "eventKey": "2012GA", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "29", "foul": "6", "tele": "1"}, "teams": ["1127", "3139", "3815"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "6", "foul": "0"}, "teams": ["1414", "4112", "1319"]}, "coop": "0", "type": "Q_88", "eventKey": "2012GA", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "18", "foul": "0", "tele": "2"}, "teams": ["4163", "3318", "590"]}}, {"blue": {"score": {"brige": "20", "tele": "13", "hybrid": "16", "final": "49", "foul": "0"}, "teams": ["1683", "587", "1311"]}, "coop": "0", "type": "Q_89", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "15", "foul": "0", "tele": "15"}, "teams": ["1002", "3224", "1771"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "6", "foul": "0"}, "teams": ["4287", "34", "3091"]}, "coop": "0", "type": "Q_90", "eventKey": "2012GA", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "14", "foul": "0", "tele": "4"}, "teams": ["4148", "4149", "3635"]}}, {"blue": {"score": {"brige": "10", "tele": "16", "hybrid": "14", "final": "40", "foul": "0"}, "teams": ["343", "1319", "3600"]}, "coop": "0", "type": "E_1", "eventKey": "2012GA", "red": {"score": {"bridge": "10", "hybrid": "11", "final": "24", "foul": "0", "tele": "3"}, "teams": ["1311", "1771", "2815"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "10", "final": "14", "foul": "0"}, "teams": ["832", "4189", "4080"]}, "coop": "0", "type": "E_2", "eventKey": "2012GA", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "13", "foul": "0", "tele": "3"}, "teams": ["34", "3139", "590"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["4177", "4188", "2974"]}, "coop": "0", "type": "E_3", "eventKey": "2012GA", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "35", "foul": "0", "tele": "13"}, "teams": ["587", "2415", "1261"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "5", "final": "24", "foul": "3"}, "teams": ["3824", "1648", "3224"]}, "coop": "0", "type": "E_4", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "5", "foul": "0", "tele": "0"}, "teams": ["4026", "3776", "1683"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "14", "final": "27", "foul": "9"}, "teams": ["343", "1319", "3600"]}, "coop": "0", "type": "E_5", "eventKey": "2012GA", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "33", "foul": "0", "tele": "11"}, "teams": ["1771", "2815", "1311"]}}, {"blue": {"score": {"brige": "20", "tele": "4", "hybrid": "5", "final": "29", "foul": "0"}, "teams": ["832", "4080", "4189"]}, "coop": "0", "type": "E_6", "eventKey": "2012GA", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "37", "foul": "9", "tele": "6"}, "teams": ["34", "3139", "590"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "0", "final": "8", "foul": "3"}, "teams": ["4188", "2974", "4177"]}, "coop": "0", "type": "E_7", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "39", "foul": "0", "tele": "27"}, "teams": ["2415", "587", "1261"]}}, {"blue": {"score": {"brige": "10", "tele": "11", "hybrid": "16", "final": "37", "foul": "0"}, "teams": ["3824", "3224", "1648"]}, "coop": "0", "type": "E_8", "eventKey": "2012GA", "red": {"score": {"bridge": "10", "hybrid": "16", "final": "35", "foul": "0", "tele": "9"}, "teams": ["1683", "4026", "3776"]}}, {"blue": {"score": {"brige": "20", "tele": "12", "hybrid": "8", "final": "40", "foul": "0"}, "teams": ["1319", "343", "3600"]}, "coop": "0", "type": "E_9", "eventKey": "2012GA", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "35", "foul": "0", "tele": "9"}, "teams": ["1771", "2815", "1311"]}}, {"blue": {"score": {"brige": "20", "tele": "6", "hybrid": "20", "final": "46", "foul": "0"}, "teams": ["832", "4189", "4080"]}, "coop": "0", "type": "E_10", "eventKey": "2012GA", "red": {"score": {"bridge": "20", "hybrid": "5", "final": "28", "foul": "0", "tele": "3"}, "teams": ["3139", "590", "34"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "16", "final": "32", "foul": "0"}, "teams": ["4189", "832", "4080"]}, "coop": "0", "type": "E_13", "eventKey": "2012GA", "red": {"score": {"bridge": "0", "hybrid": "8", "final": "14", "foul": "0", "tele": "6"}, "teams": ["1319", "343", "3600"]}}, {"blue": {"score": {"brige": "10", "tele": "9", "hybrid": "17", "final": "36", "foul": "0"}, "teams": ["1648", "3224", "3824"]}, "coop": "0", "type": "E_14", "eventKey": "2012GA", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "56", "foul": "12", "tele": "12"}, "teams": ["587", "2415", "1261"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "10", "final": "26", "foul": "0"}, "teams": ["4189", "832", "4080"]}, "coop": "0", "type": "E_15", "eventKey": "2012GA", "red": {"score": {"bridge": "10", "hybrid": "14", "final": "32", "foul": "0", "tele": "8"}, "teams": ["3600", "343", "1319"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "16", "final": "33", "foul": "0"}, "teams": ["3824", "1648", "3224"]}, "coop": "0", "type": "E_16", "eventKey": "2012GA", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "32", "foul": "0", "tele": "6"}, "teams": ["1261", "587", "2415"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "10", "final": "20", "foul": "0"}, "teams": ["832", "4189", "4080"]}, "coop": "0", "type": "E_17", "eventKey": "2012GA", "red": {"score": {"bridge": "10", "hybrid": "8", "final": "27", "foul": "0", "tele": "9"}, "teams": ["1319", "343", "3600"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "5", "final": "14", "foul": "0"}, "teams": ["1648", "3224", "3824"]}, "coop": "0", "type": "E_18", "eventKey": "2012GA", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "40", "foul": "3", "tele": "11"}, "teams": ["2415", "1261", "587"]}}, {"blue": {"score": {"brige": "10", "tele": "20", "hybrid": "6", "final": "36", "foul": "0"}, "teams": ["1261", "587", "2415"]}, "coop": "0", "type": "E_19", "eventKey": "2012GA", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "27", "foul": "0", "tele": "7"}, "teams": ["343", "3600", "1319"]}}, {"blue": {"score": {"brige": "0", "tele": "24", "hybrid": "12", "final": "37", "foul": "0"}, "teams": ["587", "2415", "1261"]}, "coop": "0", "type": "E_20", "eventKey": "2012GA", "red": {"score": {"bridge": "20", "hybrid": "8", "final": "36", "foul": "0", "tele": "8"}, "teams": ["1319", "343", "3600"]}}, {"blue": {"score": {"brige": "10", "tele": "7", "hybrid": "23", "final": "40", "foul": "0"}, "teams": ["1538", "771", "1305"]}, "coop": "2", "type": "Q_1", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "13", "foul": "0", "tele": "8"}, "teams": ["766", "4353", "527"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "10", "final": "20", "foul": "0"}, "teams": ["2010", "2341", "151"]}, "coop": "0", "type": "Q_2", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "4", "foul": "0", "tele": "4"}, "teams": ["3574", "585", "1108"]}}, {"blue": {"score": {"brige": "0", "tele": "24", "hybrid": "0", "final": "24", "foul": "0"}, "teams": ["2377", "1732", "16"]}, "coop": "0", "type": "Q_3", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["4028", "3189", "168"]}}, {"blue": {"score": {"brige": "0", "tele": "22", "hybrid": "11", "final": "33", "foul": "0"}, "teams": ["3530", "2928", "2704"]}, "coop": "0", "type": "Q_4", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "14", "final": "31", "foul": "0", "tele": "17"}, "teams": ["399", "772", "3925"]}}, {"blue": {"score": {"brige": "10", "tele": "5", "hybrid": "0", "final": "15", "foul": "0"}, "teams": ["2090", "1208", "4099"]}, "coop": "0", "type": "Q_5", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "17", "final": "41", "foul": "6", "tele": "8"}, "teams": ["3142", "1350", "69"]}}, {"blue": {"score": {"brige": "0", "tele": "19", "hybrid": "30", "final": "55", "foul": "6"}, "teams": ["2486", "358", "868"]}, "coop": "2", "type": "Q_6", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "23", "foul": "0", "tele": "12"}, "teams": ["3784", "3981", "25"]}}, {"blue": {"score": {"brige": "0", "tele": "11", "hybrid": "0", "final": "11", "foul": "0"}, "teams": ["1831", "1212", "1515"]}, "coop": "0", "type": "Q_7", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "16", "final": "38", "foul": "0", "tele": "22"}, "teams": ["296", "3196", "2054"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "18", "final": "27", "foul": "3"}, "teams": ["1747", "4013", "492"]}, "coop": "2", "type": "Q_8", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "17", "foul": "3", "tele": "4"}, "teams": ["2220", "2158", "870"]}}, {"blue": {"score": {"brige": "20", "tele": "20", "hybrid": "30", "final": "70", "foul": "0"}, "teams": ["269", "1323", "3173"]}, "coop": "2", "type": "Q_9", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "22", "final": "54", "foul": "3", "tele": "9"}, "teams": ["4372", "2642", "3103"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "5", "final": "18", "foul": "3"}, "teams": ["1011", "4090", "2337"]}, "coop": "2", "type": "Q_10", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "34", "final": "86", "foul": "9", "tele": "33"}, "teams": ["180", "1262", "33"]}}, {"blue": {"score": {"brige": "10", "tele": "9", "hybrid": "12", "final": "31", "foul": "0"}, "teams": ["342", "231", "4394"]}, "coop": "2", "type": "Q_11", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "20", "foul": "0", "tele": "0"}, "teams": ["815", "4057", "125"]}}, {"blue": {"score": {"brige": "10", "tele": "16", "hybrid": "17", "final": "46", "foul": "3"}, "teams": ["2339", "263", "744"]}, "coop": "2", "type": "Q_12", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "23", "foul": "0", "tele": "12"}, "teams": ["2439", "1718", "568"]}}, {"blue": {"score": {"brige": "20", "tele": "7", "hybrid": "5", "final": "50", "foul": "18"}, "teams": ["2016", "533", "4159"]}, "coop": "2", "type": "Q_13", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "33", "foul": "0", "tele": "11"}, "teams": ["1574", "3453", "4146"]}}, {"blue": {"score": {"brige": "10", "tele": "18", "hybrid": "10", "final": "41", "foul": "3"}, "teams": ["148", "281", "3259"]}, "coop": "0", "type": "Q_14", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "11", "final": "51", "foul": "0", "tele": "20"}, "teams": ["1038", "3322", "8"]}}, {"blue": {"score": {"brige": "20", "tele": "8", "hybrid": "12", "final": "49", "foul": "9"}, "teams": ["384", "1382", "573"]}, "coop": "2", "type": "Q_15", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "49", "foul": "0", "tele": "21"}, "teams": ["48", "1918", "4031"]}}, {"blue": {"score": {"brige": "0", "tele": "10", "hybrid": "6", "final": "16", "foul": "0"}, "teams": ["1714", "4083", "3931"]}, "coop": "0", "type": "Q_16", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "56", "foul": "3", "tele": "27"}, "teams": ["237", "1425", "2169"]}}, {"blue": {"score": {"brige": "20", "tele": "9", "hybrid": "24", "final": "53", "foul": "0"}, "teams": ["801", "1671", "2486"]}, "coop": "2", "type": "Q_17", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "17", "final": "32", "foul": "0", "tele": "15"}, "teams": ["1583", "103", "2158"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["399", "1108", "1350"]}, "coop": "0", "type": "Q_18", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "34", "foul": "9", "tele": "9"}, "teams": ["492", "2642", "771"]}}, {"blue": {"score": {"brige": "0", "tele": "15", "hybrid": "10", "final": "25", "foul": "0"}, "teams": ["231", "527", "870"]}, "coop": "2", "type": "Q_19", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "16", "final": "55", "foul": "9", "tele": "10"}, "teams": ["358", "4099", "3103"]}}, {"blue": {"score": {"brige": "10", "tele": "21", "hybrid": "6", "final": "37", "foul": "0"}, "teams": ["772", "2341", "868"]}, "coop": "0", "type": "Q_20", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "28", "final": "53", "foul": "0", "tele": "25"}, "teams": ["1323", "1208", "2337"]}}, {"blue": {"score": {"brige": "20", "tele": "11", "hybrid": "22", "final": "56", "foul": "3"}, "teams": ["1011", "125", "3453"]}, "coop": "2", "type": "Q_21", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "30", "final": "48", "foul": "0", "tele": "18"}, "teams": ["3574", "744", "3925"]}}, {"blue": {"score": {"brige": "10", "tele": "24", "hybrid": "12", "final": "46", "foul": "0"}, "teams": ["148", "2010", "1538"]}, "coop": "2", "type": "Q_22", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "10", "final": "34", "foul": "0", "tele": "14"}, "teams": ["4372", "3196", "4146"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "6", "final": "9", "foul": "0"}, "teams": ["3784", "342", "168"]}, "coop": "2", "type": "Q_23", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "43", "foul": "9", "tele": "12"}, "teams": ["573", "1212", "180"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "6", "foul": "3"}, "teams": ["3981", "1382", "1747"]}, "coop": "0", "type": "Q_24", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "19", "foul": "9", "tele": "0"}, "teams": ["3530", "4353", "2339"]}}, {"blue": {"score": {"brige": "0", "tele": "13", "hybrid": "17", "final": "30", "foul": "0"}, "teams": ["1671", "3259", "1262"]}, "coop": "0", "type": "Q_25", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "16", "final": "36", "foul": "3", "tele": "7"}, "teams": ["263", "1425", "269"]}}, {"blue": {"score": {"brige": "0", "tele": "21", "hybrid": "12", "final": "36", "foul": "3"}, "teams": ["25", "3189", "4083"]}, "coop": "0", "type": "Q_26", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "55", "foul": "6", "tele": "21"}, "teams": ["2704", "3322", "48"]}}, {"blue": {"score": {"brige": "20", "tele": "13", "hybrid": "11", "final": "53", "foul": "9"}, "teams": ["16", "4057", "568"]}, "coop": "0", "type": "Q_27", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "17", "final": "35", "foul": "0", "tele": "18"}, "teams": ["1918", "296", "281"]}}, {"blue": {"score": {"brige": "0", "tele": "15", "hybrid": "23", "final": "38", "foul": "0"}, "teams": ["2169", "3173", "4013"]}, "coop": "0", "type": "Q_28", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "45", "foul": "0", "tele": "13"}, "teams": ["2377", "2928", "384"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "12", "final": "18", "foul": "0"}, "teams": ["2016", "151", "69"]}, "coop": "0", "type": "Q_29", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "30", "foul": "0", "tele": "24"}, "teams": ["1515", "4394", "103"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "14", "final": "22", "foul": "0"}, "teams": ["1305", "533", "1831"]}, "coop": "2", "type": "Q_30", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "68", "foul": "0", "tele": "30"}, "teams": ["3142", "801", "1718"]}}, {"blue": {"score": {"brige": "20", "tele": "6", "hybrid": "6", "final": "32", "foul": "0"}, "teams": ["8", "1574", "1583"]}, "coop": "2", "type": "Q_31", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "28", "foul": "3", "tele": "5"}, "teams": ["1714", "766", "2220"]}}, {"blue": {"score": {"brige": "20", "tele": "21", "hybrid": "6", "final": "47", "foul": "0"}, "teams": ["2054", "1732", "815"]}, "coop": "2", "type": "Q_32", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "38", "foul": "0", "tele": "6"}, "teams": ["4090", "237", "2439"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "12", "final": "22", "foul": "0"}, "teams": ["4031", "3931", "4159"]}, "coop": "0", "type": "Q_33", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "35", "foul": "0", "tele": "7"}, "teams": ["2090", "1038", "585"]}}, {"blue": {"score": {"brige": "10", "tele": "18", "hybrid": "6", "final": "34", "foul": "0"}, "teams": ["33", "2704", "4353"]}, "coop": "0", "type": "Q_34", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "14", "foul": "0", "tele": "8"}, "teams": ["4028", "3259", "2486"]}}, {"blue": {"score": {"brige": "20", "tele": "32", "hybrid": "23", "final": "75", "foul": "0"}, "teams": ["180", "4099", "148"]}, "coop": "2", "type": "Q_35", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "14", "foul": "0", "tele": "2"}, "teams": ["125", "3530", "1425"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "0", "final": "13", "foul": "0"}, "teams": ["2341", "2339", "3925"]}, "coop": "0", "type": "Q_36", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "69", "foul": "27", "tele": "24"}, "teams": ["4013", "25", "269"]}}, {"blue": {"score": {"brige": "20", "tele": "9", "hybrid": "28", "final": "57", "foul": "0"}, "teams": ["2010", "1350", "281"]}, "coop": "0", "type": "Q_37", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "48", "foul": "3", "tele": "13"}, "teams": ["2016", "48", "772"]}}, {"blue": {"score": {"brige": "10", "tele": "18", "hybrid": "9", "final": "37", "foul": "0"}, "teams": ["1108", "2169", "1262"]}, "coop": "0", "type": "Q_38", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "23", "final": "77", "foul": "3", "tele": "31"}, "teams": ["358", "744", "103"]}}, {"blue": {"score": {"brige": "0", "tele": "10", "hybrid": "10", "final": "20", "foul": "0"}, "teams": ["2158", "3196", "1382"]}, "coop": "2", "type": "Q_39", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "33", "foul": "0", "tele": "17"}, "teams": ["2377", "1718", "151"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "0", "final": "15", "foul": "3"}, "teams": ["4146", "1732", "3784"]}, "coop": "2", "type": "Q_40", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "37", "foul": "0", "tele": "9"}, "teams": ["2337", "1305", "384"]}}, {"blue": {"score": {"brige": "10", "tele": "4", "hybrid": "5", "final": "22", "foul": "3"}, "teams": ["815", "3931", "771"]}, "coop": "2", "type": "Q_41", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "38", "foul": "9", "tele": "11"}, "teams": ["1574", "16", "1831"]}}, {"blue": {"score": {"brige": "10", "tele": "27", "hybrid": "10", "final": "47", "foul": "0"}, "teams": ["4083", "1323", "3574"]}, "coop": "0", "type": "Q_42", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "9", "foul": "0", "tele": "3"}, "teams": ["4090", "2928", "342"]}}, {"blue": {"score": {"brige": "0", "tele": "10", "hybrid": "0", "final": "19", "foul": "9"}, "teams": ["2220", "4031", "296"]}, "coop": "2", "type": "Q_43", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "54", "foul": "0", "tele": "32"}, "teams": ["33", "2642", "263"]}}, {"blue": {"score": {"brige": "0", "tele": "20", "hybrid": "24", "final": "53", "foul": "9"}, "teams": ["1011", "2439", "1208"]}, "coop": "2", "type": "Q_44", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "9", "foul": "0", "tele": "4"}, "teams": ["1515", "8", "4372"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "12", "final": "12", "foul": "0"}, "teams": ["568", "1212", "3322"]}, "coop": "2", "type": "Q_45", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "39", "foul": "0", "tele": "13"}, "teams": ["3173", "231", "492"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "3", "foul": "0"}, "teams": ["585", "527", "1747"]}, "coop": "0", "type": "Q_46", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "25", "foul": "0", "tele": "20"}, "teams": ["399", "69", "533"]}}, {"blue": {"score": {"brige": "20", "tele": "23", "hybrid": "23", "final": "69", "foul": "3"}, "teams": ["3103", "1918", "1538"]}, "coop": "0", "type": "Q_47", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "24", "foul": "3", "tele": "9"}, "teams": ["801", "4159", "3189"]}}, {"blue": {"score": {"brige": "10", "tele": "27", "hybrid": "24", "final": "73", "foul": "12"}, "teams": ["2090", "868", "573"]}, "coop": "2", "type": "Q_48", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "46", "foul": "3", "tele": "5"}, "teams": ["4057", "237", "1583"]}}, {"blue": {"score": {"brige": "20", "tele": "6", "hybrid": "6", "final": "59", "foul": "27"}, "teams": ["4028", "3142", "4394"]}, "coop": "2", "type": "Q_49", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "32", "foul": "0", "tele": "14"}, "teams": ["1671", "3981", "1714"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "22", "final": "44", "foul": "6"}, "teams": ["2054", "766", "1038"]}, "coop": "2", "type": "Q_50", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "15", "final": "41", "foul": "3", "tele": "3"}, "teams": ["870", "168", "3453"]}}, {"blue": {"score": {"brige": "10", "tele": "22", "hybrid": "12", "final": "47", "foul": "3"}, "teams": ["180", "263", "1831"]}, "coop": "0", "type": "Q_51", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "62", "foul": "12", "tele": "28"}, "teams": ["2016", "358", "1323"]}}, {"blue": {"score": {"brige": "0", "tele": "27", "hybrid": "10", "final": "37", "foul": "0"}, "teams": ["2158", "2169", "1305"]}, "coop": "2", "type": "Q_52", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "24", "final": "56", "foul": "9", "tele": "23"}, "teams": ["1574", "48", "33"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "17", "final": "17", "foul": "0"}, "teams": ["3574", "3784", "4013"]}, "coop": "2", "type": "Q_53", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "33", "foul": "0", "tele": "11"}, "teams": ["16", "1208", "3259"]}}, {"blue": {"score": {"brige": "10", "tele": "10", "hybrid": "12", "final": "35", "foul": "3"}, "teams": ["4099", "4372", "399"]}, "coop": "0", "type": "Q_54", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "17", "final": "44", "foul": "3", "tele": "24"}, "teams": ["3322", "4031", "2337"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "12", "final": "37", "foul": "9"}, "teams": ["269", "2439", "3931"]}, "coop": "2", "type": "Q_55", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "18", "foul": "0", "tele": "6"}, "teams": ["1108", "125", "533"]}}, {"blue": {"score": {"brige": "20", "tele": "16", "hybrid": "28", "final": "67", "foul": "3"}, "teams": ["492", "801", "69"]}, "coop": "0", "type": "Q_56", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "20", "final": "20", "foul": "0", "tele": "0"}, "teams": ["1011", "2339", "281"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "5", "final": "16", "foul": "9"}, "teams": ["4353", "585", "1262"]}, "coop": "0", "type": "Q_57", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "17", "final": "41", "foul": "0", "tele": "14"}, "teams": ["342", "2377", "8"]}}, {"blue": {"score": {"brige": "10", "tele": "27", "hybrid": "24", "final": "64", "foul": "3"}, "teams": ["3173", "1671", "1918"]}, "coop": "0", "type": "Q_58", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "11", "final": "41", "foul": "0", "tele": "10"}, "teams": ["3925", "2220", "2010"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "10", "final": "16", "foul": "0"}, "teams": ["3196", "772", "384"]}, "coop": "0", "type": "Q_59", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "8", "foul": "3", "tele": "0"}, "teams": ["4159", "3981", "870"]}}, {"blue": {"score": {"brige": "10", "tele": "24", "hybrid": "18", "final": "52", "foul": "0"}, "teams": ["151", "744", "2054"]}, "coop": "2", "type": "Q_60", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "55", "foul": "9", "tele": "20"}, "teams": ["2090", "231", "1732"]}}, {"blue": {"score": {"brige": "20", "tele": "5", "hybrid": "15", "final": "40", "foul": "0"}, "teams": ["3453", "1714", "1515"]}, "coop": "2", "type": "Q_61", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "46", "foul": "0", "tele": "24"}, "teams": ["815", "868", "1350"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "3", "foul": "0"}, "teams": ["4057", "4146", "2704"]}, "coop": "2", "type": "Q_62", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "16", "foul": "0", "tele": "6"}, "teams": ["527", "1382", "2341"]}}, {"blue": {"score": {"brige": "10", "tele": "13", "hybrid": "27", "final": "50", "foul": "0"}, "teams": ["573", "1718", "1747"]}, "coop": "2", "type": "Q_63", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "37", "foul": "3", "tele": "12"}, "teams": ["4083", "1538", "4394"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "11", "final": "17", "foul": "0"}, "teams": ["4090", "1425", "568"]}, "coop": "2", "type": "Q_64", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "35", "foul": "0", "tele": "9"}, "teams": ["1038", "1583", "771"]}}, {"blue": {"score": {"brige": "10", "tele": "21", "hybrid": "12", "final": "43", "foul": "0"}, "teams": ["25", "4028", "3530"]}, "coop": "2", "type": "Q_65", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "15", "final": "31", "foul": "0", "tele": "6"}, "teams": ["3103", "1212", "766"]}}, {"blue": {"score": {"brige": "0", "tele": "14", "hybrid": "6", "final": "20", "foul": "0"}, "teams": ["103", "3142", "2642"]}, "coop": "0", "type": "Q_66", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "5", "final": "45", "foul": "0", "tele": "20"}, "teams": ["237", "2928", "168"]}}, {"blue": {"score": {"brige": "20", "tele": "2", "hybrid": "0", "final": "25", "foul": "3"}, "teams": ["296", "3189", "1305"]}, "coop": "2", "type": "Q_67", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "24", "final": "64", "foul": "0", "tele": "20"}, "teams": ["148", "2486", "870"]}}, {"blue": {"score": {"brige": "20", "tele": "1", "hybrid": "24", "final": "51", "foul": "6"}, "teams": ["358", "269", "3322"]}, "coop": "2", "type": "Q_68", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "11", "final": "35", "foul": "0", "tele": "14"}, "teams": ["585", "1574", "772"]}}, {"blue": {"score": {"brige": "20", "tele": "15", "hybrid": "12", "final": "47", "foul": "0"}, "teams": ["48", "3925", "4372"]}, "coop": "2", "type": "Q_69", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "34", "final": "56", "foul": "0", "tele": "12"}, "teams": ["1732", "1714", "3259"]}}, {"blue": {"score": {"brige": "0", "tele": "27", "hybrid": "12", "final": "39", "foul": "0"}, "teams": ["2339", "1323", "1671"]}, "coop": "2", "type": "Q_70", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "41", "foul": "0", "tele": "15"}, "teams": ["384", "3453", "151"]}}, {"blue": {"score": {"brige": "0", "tele": "21", "hybrid": "6", "final": "27", "foul": "0"}, "teams": ["3784", "1108", "33"]}, "coop": "2", "type": "Q_71", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "50", "foul": "0", "tele": "18"}, "teams": ["3173", "801", "1382"]}}, {"blue": {"score": {"brige": "0", "tele": "24", "hybrid": "17", "final": "41", "foul": "0"}, "teams": ["3784", "1108", "33"]}, "coop": "0", "type": "Q_71", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "30", "foul": "0", "tele": "18"}, "teams": ["3173", "801", "1382"]}}, {"blue": {"score": {"brige": "10", "tele": "21", "hybrid": "18", "final": "52", "foul": "3"}, "teams": ["1747", "2054", "1583"]}, "coop": "2", "type": "Q_72", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "21", "foul": "3", "tele": "2"}, "teams": ["263", "1011", "4099"]}}, {"blue": {"score": {"brige": "20", "tele": "30", "hybrid": "12", "final": "65", "foul": "3"}, "teams": ["4159", "2010", "25"]}, "coop": "2", "type": "Q_73", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "20", "foul": "0", "tele": "15"}, "teams": ["4057", "8", "69"]}}, {"blue": {"score": {"brige": "20", "tele": "17", "hybrid": "18", "final": "58", "foul": "3"}, "teams": ["231", "3142", "1425"]}, "coop": "2", "type": "Q_74", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "35", "foul": "3", "tele": "6"}, "teams": ["2439", "2704", "573"]}}, {"blue": {"score": {"brige": "10", "tele": "28", "hybrid": "12", "final": "59", "foul": "9"}, "teams": ["16", "527", "4394"]}, "coop": "2", "type": "Q_75", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "22", "foul": "3", "tele": "9"}, "teams": ["3196", "4031", "3530"]}}, {"blue": {"score": {"brige": "20", "tele": "7", "hybrid": "12", "final": "39", "foul": "0"}, "teams": ["168", "744", "3931"]}, "coop": "0", "type": "Q_76", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "11", "final": "48", "foul": "6", "tele": "21"}, "teams": ["868", "4090", "296"]}}, {"blue": {"score": {"brige": "0", "tele": "24", "hybrid": "22", "final": "49", "foul": "3"}, "teams": ["180", "3103", "2090"]}, "coop": "2", "type": "Q_77", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "16", "final": "34", "foul": "3", "tele": "15"}, "teams": ["1718", "281", "4013"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "0", "final": "12", "foul": "0"}, "teams": ["2642", "766", "125"]}, "coop": "0", "type": "Q_78", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "18", "foul": "0", "tele": "12"}, "teams": ["1208", "4146", "1831"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "10", "final": "16", "foul": "3"}, "teams": ["2377", "1515", "771"]}, "coop": "2", "type": "Q_79", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "31", "foul": "0", "tele": "21"}, "teams": ["148", "4083", "3981"]}}, {"blue": {"score": {"brige": "20", "tele": "12", "hybrid": "11", "final": "46", "foul": "3"}, "teams": ["2928", "815", "1262"]}, "coop": "2", "type": "Q_80", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "23", "foul": "0", "tele": "17"}, "teams": ["4028", "568", "1538"]}}, {"blue": {"score": {"brige": "10", "tele": "14", "hybrid": "17", "final": "41", "foul": "0"}, "teams": ["2341", "2220", "2169"]}, "coop": "2", "type": "Q_81", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "36", "final": "68", "foul": "0", "tele": "22"}, "teams": ["2486", "2016", "399"]}}, {"blue": {"score": {"brige": "0", "tele": "18", "hybrid": "6", "final": "24", "foul": "0"}, "teams": ["342", "3189", "103"]}, "coop": "2", "type": "Q_82", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "33", "foul": "0", "tele": "11"}, "teams": ["533", "492", "2337"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "18", "final": "26", "foul": "0"}, "teams": ["1212", "237", "1038"]}, "coop": "2", "type": "Q_83", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "18", "foul": "0", "tele": "18"}, "teams": ["4353", "1918", "3574"]}}, {"blue": {"score": {"brige": "10", "tele": "21", "hybrid": "24", "final": "58", "foul": "3"}, "teams": ["2158", "296", "1323"]}, "coop": "0", "type": "Q_84", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "11", "final": "47", "foul": "0", "tele": "16"}, "teams": ["1350", "1425", "527"]}}, {"blue": {"score": {"brige": "20", "tele": "24", "hybrid": "12", "final": "59", "foul": "3"}, "teams": ["1718", "870", "48"]}, "coop": "2", "type": "Q_85", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "5", "final": "31", "foul": "0", "tele": "6"}, "teams": ["269", "4090", "8"]}}, {"blue": {"score": {"brige": "20", "tele": "15", "hybrid": "12", "final": "47", "foul": "0"}, "teams": ["358", "1747", "1208"]}, "coop": "2", "type": "Q_86", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "11", "final": "34", "foul": "3", "tele": "0"}, "teams": ["168", "4159", "1305"]}}, {"blue": {"score": {"brige": "20", "tele": "0", "hybrid": "18", "final": "41", "foul": "3"}, "teams": ["766", "1108", "3925"]}, "coop": "2", "type": "Q_87", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "17", "final": "48", "foul": "0", "tele": "21"}, "teams": ["868", "3196", "281"]}}, {"blue": {"score": {"brige": "20", "tele": "19", "hybrid": "12", "final": "51", "foul": "0"}, "teams": ["744", "815", "585"]}, "coop": "2", "type": "Q_88", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "59", "foul": "0", "tele": "39"}, "teams": ["148", "2642", "573"]}}, {"blue": {"score": {"brige": "20", "tele": "12", "hybrid": "20", "final": "52", "foul": "0"}, "teams": ["3259", "180", "772"]}, "coop": "2", "type": "Q_89", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "5", "final": "36", "foul": "0", "tele": "21"}, "teams": ["2339", "4083", "2054"]}}, {"blue": {"score": {"brige": "20", "tele": "0", "hybrid": "11", "final": "31", "foul": "0"}, "teams": ["2220", "4057", "1515"]}, "coop": "2", "type": "Q_90", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "36", "foul": "3", "tele": "11"}, "teams": ["3784", "2928", "3189"]}}, {"blue": {"score": {"brige": "20", "tele": "27", "hybrid": "30", "final": "77", "foul": "0"}, "teams": ["1918", "231", "1574"]}, "coop": "0", "type": "Q_91", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "15", "final": "31", "foul": "0", "tele": "6"}, "teams": ["69", "1262", "4372"]}}, {"blue": {"score": {"brige": "20", "tele": "15", "hybrid": "24", "final": "59", "foul": "0"}, "teams": ["1350", "103", "1038"]}, "coop": "2", "type": "Q_92", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "16", "final": "22", "foul": "0", "tele": "6"}, "teams": ["1831", "1538", "1382"]}}, {"blue": {"score": {"brige": "0", "tele": "21", "hybrid": "0", "final": "21", "foul": "0"}, "teams": ["4146", "2377", "1714"]}, "coop": "0", "type": "Q_93", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "11", "final": "37", "foul": "0", "tele": "6"}, "teams": ["1011", "3530", "2486"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "26", "final": "26", "foul": "0"}, "teams": ["3981", "568", "3453"]}, "coop": "0", "type": "Q_94", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "25", "foul": "0", "tele": "13"}, "teams": ["2010", "3931", "399"]}}, {"blue": {"score": {"brige": "20", "tele": "3", "hybrid": "6", "final": "29", "foul": "0"}, "teams": ["2439", "4394", "4099"]}, "coop": "2", "type": "Q_95", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "29", "foul": "0", "tele": "18"}, "teams": ["4353", "2169", "492"]}}, {"blue": {"score": {"brige": "0", "tele": "27", "hybrid": "30", "final": "57", "foul": "0"}, "teams": ["1671", "25", "33"]}, "coop": "2", "type": "Q_96", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "17", "final": "43", "foul": "0", "tele": "6"}, "teams": ["771", "533", "3574"]}}, {"blue": {"score": {"brige": "0", "tele": "15", "hybrid": "24", "final": "39", "foul": "0"}, "teams": ["125", "1583", "384"]}, "coop": "0", "type": "Q_97", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "22", "final": "58", "foul": "3", "tele": "23"}, "teams": ["2341", "3322", "3103"]}}, {"blue": {"score": {"brige": "10", "tele": "15", "hybrid": "18", "final": "46", "foul": "3"}, "teams": ["2337", "3173", "2090"]}, "coop": "2", "type": "Q_98", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "30", "foul": "0", "tele": "12"}, "teams": ["2704", "2158", "16"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "24", "final": "29", "foul": "0"}, "teams": ["2016", "1212", "4031"]}, "coop": "0", "type": "Q_99", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "26", "foul": "3", "tele": "13"}, "teams": ["4013", "1732", "3142"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "4", "foul": "0"}, "teams": ["237", "342", "263"]}, "coop": "0", "type": "Q_100", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "13", "foul": "0", "tele": "7"}, "teams": ["4028", "801", "151"]}}, {"blue": {"score": {"brige": "10", "tele": "9", "hybrid": "6", "final": "25", "foul": "0"}, "teams": ["358", "4083", "1011"]}, "coop": "0", "type": "Q_101", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "34", "foul": "0", "tele": "8"}, "teams": ["1038", "2220", "815"]}}, {"blue": {"score": {"brige": "0", "tele": "22", "hybrid": "15", "final": "37", "foul": "0"}, "teams": ["1718", "527", "3453"]}, "coop": "2", "type": "Q_102", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "38", "foul": "0", "tele": "6"}, "teams": ["3189", "4372", "772"]}}, {"blue": {"score": {"brige": "20", "tele": "6", "hybrid": "6", "final": "32", "foul": "0"}, "teams": ["2439", "4057", "766"]}, "coop": "2", "type": "Q_103", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "58", "foul": "6", "tele": "30"}, "teams": ["180", "2377", "399"]}}, {"blue": {"score": {"brige": "20", "tele": "10", "hybrid": "15", "final": "45", "foul": "0"}, "teams": ["3196", "48", "2928"]}, "coop": "2", "type": "Q_104", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "24", "final": "43", "foul": "0", "tele": "19"}, "teams": ["744", "1747", "1671"]}}, {"blue": {"score": {"brige": "10", "tele": "33", "hybrid": "12", "final": "55", "foul": "0"}, "teams": ["33", "4099", "573"]}, "coop": "2", "type": "Q_105", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "28", "final": "35", "foul": "0", "tele": "7"}, "teams": ["1515", "568", "4146"]}}, {"blue": {"score": {"brige": "20", "tele": "5", "hybrid": "16", "final": "44", "foul": "3"}, "teams": ["1831", "492", "3103"]}, "coop": "2", "type": "Q_106", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "35", "foul": "0", "tele": "30"}, "teams": ["1262", "148", "168"]}}, {"blue": {"score": {"brige": "0", "tele": "13", "hybrid": "12", "final": "28", "foul": "3"}, "teams": ["2010", "103", "384"]}, "coop": "0", "type": "Q_107", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "19", "foul": "0", "tele": "13"}, "teams": ["2090", "4353", "1714"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "10", "final": "18", "foul": "0"}, "teams": ["4031", "281", "533"]}, "coop": "2", "type": "Q_108", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "16", "foul": "0", "tele": "11"}, "teams": ["231", "2341", "3784"]}}, {"blue": {"score": {"brige": "20", "tele": "12", "hybrid": "12", "final": "44", "foul": "0"}, "teams": ["3530", "151", "2337"]}, "coop": "2", "type": "Q_109", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "32", "foul": "9", "tele": "7"}, "teams": ["1350", "1583", "3259"]}}, {"blue": {"score": {"brige": "10", "tele": "27", "hybrid": "28", "final": "65", "foul": "0"}, "teams": ["868", "1212", "125"]}, "coop": "2", "type": "Q_110", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "18", "foul": "0", "tele": "2"}, "teams": ["4159", "2158", "771"]}}, {"blue": {"score": {"brige": "20", "tele": "11", "hybrid": "10", "final": "41", "foul": "0"}, "teams": ["1425", "2339", "1108"]}, "coop": "2", "type": "Q_111", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "56", "foul": "3", "tele": "15"}, "teams": ["16", "2016", "342"]}}, {"blue": {"score": {"brige": "20", "tele": "6", "hybrid": "17", "final": "55", "foul": "12"}, "teams": ["3173", "237", "585"]}, "coop": "2", "type": "Q_112", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "11", "final": "45", "foul": "0", "tele": "24"}, "teams": ["25", "296", "1538"]}}, {"blue": {"score": {"brige": "20", "tele": "6", "hybrid": "11", "final": "37", "foul": "0"}, "teams": ["3574", "3931", "8"]}, "coop": "2", "type": "Q_113", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "45", "foul": "0", "tele": "23"}, "teams": ["1382", "2054", "3142"]}}, {"blue": {"score": {"brige": "20", "tele": "3", "hybrid": "6", "final": "29", "foul": "0"}, "teams": ["2642", "4394", "2486"]}, "coop": "2", "type": "Q_114", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "5", "final": "27", "foul": "0", "tele": "12"}, "teams": ["1918", "4013", "4090"]}}, {"blue": {"score": {"brige": "10", "tele": "15", "hybrid": "6", "final": "31", "foul": "0"}, "teams": ["3322", "263", "3925"]}, "coop": "2", "type": "Q_115", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "16", "foul": "0", "tele": "6"}, "teams": ["3981", "1305", "69"]}}, {"blue": {"score": {"brige": "20", "tele": "21", "hybrid": "12", "final": "62", "foul": "9"}, "teams": ["1732", "1574", "870"]}, "coop": "2", "type": "Q_116", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "39", "foul": "6", "tele": "15"}, "teams": ["801", "2704", "1323"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "12", "final": "24", "foul": "0"}, "teams": ["1208", "4028", "1038"]}, "coop": "2", "type": "Q_117", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "49", "foul": "9", "tele": "18"}, "teams": ["2169", "269", "231"]}}, {"blue": {"score": {"brige": "10", "tele": "13", "hybrid": "26", "final": "52", "foul": "3"}, "teams": ["1831", "568", "48"]}, "coop": "2", "type": "Q_118", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "28", "final": "32", "foul": "0", "tele": "4"}, "teams": ["3530", "2220", "2090"]}}, {"blue": {"score": {"brige": "20", "tele": "31", "hybrid": "23", "final": "92", "foul": "18"}, "teams": ["527", "33", "2016"]}, "coop": "2", "type": "Q_119", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "11", "final": "41", "foul": "0", "tele": "20"}, "teams": ["815", "2377", "1583"]}}, {"blue": {"score": {"brige": "0", "tele": "24", "hybrid": "21", "final": "45", "foul": "0"}, "teams": ["2337", "2928", "296"]}, "coop": "0", "type": "Q_120", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "20", "final": "64", "foul": "12", "tele": "12"}, "teams": ["3103", "2010", "2339"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "10", "final": "20", "foul": "0"}, "teams": ["3142", "3259", "2158"]}, "coop": "2", "type": "Q_121", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "31", "foul": "0", "tele": "9"}, "teams": ["1515", "2341", "342"]}}, {"blue": {"score": {"brige": "20", "tele": "16", "hybrid": "18", "final": "72", "foul": "18"}, "teams": ["148", "4057", "772"]}, "coop": "0", "type": "Q_122", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "5", "final": "21", "foul": "3", "tele": "3"}, "teams": ["1747", "151", "3931"]}}, {"blue": {"score": {"brige": "20", "tele": "9", "hybrid": "12", "final": "41", "foul": "0"}, "teams": ["766", "3574", "4372"]}, "coop": "2", "type": "Q_123", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "24", "final": "33", "foul": "3", "tele": "6"}, "teams": ["1425", "358", "4394"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "18", "final": "24", "foul": "0"}, "teams": ["1538", "168", "399"]}, "coop": "2", "type": "Q_124", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "44", "foul": "0", "tele": "12"}, "teams": ["1574", "3925", "384"]}}, {"blue": {"score": {"brige": "0", "tele": "24", "hybrid": "23", "final": "47", "foul": "0"}, "teams": ["103", "3173", "4090"]}, "coop": "2", "type": "Q_125", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "9", "final": "28", "foul": "3", "tele": "6"}, "teams": ["4028", "3453", "4031"]}}, {"blue": {"score": {"brige": "10", "tele": "18", "hybrid": "0", "final": "28", "foul": "0"}, "teams": ["771", "4013", "801"]}, "coop": "2", "type": "Q_126", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "50", "foul": "0", "tele": "12"}, "teams": ["2439", "1714", "585"]}}, {"blue": {"score": {"brige": "10", "tele": "23", "hybrid": "12", "final": "45", "foul": "0"}, "teams": ["4353", "69", "2054"]}, "coop": "2", "type": "Q_127", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "24", "final": "68", "foul": "0", "tele": "24"}, "teams": ["4146", "1671", "1718"]}}, {"blue": {"score": {"brige": "10", "tele": "31", "hybrid": "26", "final": "67", "foul": "0"}, "teams": ["2642", "533", "2169"]}, "coop": "0", "type": "Q_128", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "30", "foul": "0", "tele": "18"}, "teams": ["1011", "868", "1382"]}}, {"blue": {"score": {"brige": "20", "tele": "27", "hybrid": "12", "final": "59", "foul": "0"}, "teams": ["4159", "3322", "1732"]}, "coop": "2", "type": "Q_129", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "56", "foul": "0", "tele": "24"}, "teams": ["2486", "1108", "180"]}}, {"blue": {"score": {"brige": "0", "tele": "7", "hybrid": "15", "final": "25", "foul": "3"}, "teams": ["2704", "237", "3196"]}, "coop": "0", "type": "Q_130", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "6", "foul": "0", "tele": "0"}, "teams": ["3784", "269", "4099"]}}, {"blue": {"score": {"brige": "10", "tele": "18", "hybrid": "29", "final": "63", "foul": "6"}, "teams": ["492", "125", "1918"]}, "coop": "2", "type": "Q_131", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "5", "final": "15", "foul": "0", "tele": "0"}, "teams": ["8", "1305", "4083"]}}, {"blue": {"score": {"brige": "0", "tele": "24", "hybrid": "18", "final": "54", "foul": "12"}, "teams": ["870", "25", "1350"]}, "coop": "0", "type": "Q_132", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "35", "foul": "3", "tele": "14"}, "teams": ["573", "16", "263"]}}, {"blue": {"score": {"brige": "10", "tele": "15", "hybrid": "15", "final": "43", "foul": "3"}, "teams": ["281", "1262", "3189"]}, "coop": "0", "type": "Q_133", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "55", "foul": "0", "tele": "33"}, "teams": ["1212", "3981", "1323"]}}, {"blue": {"score": {"brige": "0", "tele": "23", "hybrid": "18", "final": "44", "foul": "3"}, "teams": ["744", "1714", "2158"]}, "coop": "2", "type": "Q_134", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "61", "foul": "0", "tele": "29"}, "teams": ["1208", "1538", "2016"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "6", "final": "18", "foul": "0"}, "teams": ["3925", "342", "4146"]}, "coop": "2", "type": "Q_135", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "15", "foul": "3", "tele": "6"}, "teams": ["4031", "1747", "771"]}}, {"blue": {"score": {"brige": "10", "tele": "30", "hybrid": "24", "final": "64", "foul": "0"}, "teams": ["766", "2337", "148"]}, "coop": "2", "type": "Q_136", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "17", "final": "40", "foul": "0", "tele": "3"}, "teams": ["4013", "1671", "568"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "12", "final": "24", "foul": "6"}, "teams": ["1382", "2090", "2928"]}, "coop": "0", "type": "Q_137", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "28", "foul": "0", "tele": "12"}, "teams": ["358", "2439", "3259"]}}, {"blue": {"score": {"brige": "10", "tele": "21", "hybrid": "12", "final": "43", "foul": "0"}, "teams": ["4159", "399", "48"]}, "coop": "2", "type": "Q_138", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "9", "foul": "0", "tele": "9"}, "teams": ["1011", "4394", "3784"]}}, {"blue": {"score": {"brige": "10", "tele": "8", "hybrid": "6", "final": "24", "foul": "0"}, "teams": ["69", "269", "2486"]}, "coop": "2", "type": "Q_139", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "9", "final": "45", "foul": "6", "tele": "10"}, "teams": ["4083", "384", "1831"]}}, {"blue": {"score": {"brige": "20", "tele": "6", "hybrid": "10", "final": "39", "foul": "3"}, "teams": ["1574", "1038", "1515"]}, "coop": "0", "type": "Q_140", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "28", "final": "47", "foul": "0", "tele": "19"}, "teams": ["25", "125", "527"]}}, {"blue": {"score": {"brige": "20", "tele": "12", "hybrid": "0", "final": "32", "foul": "0"}, "teams": ["4090", "4372", "2377"]}, "coop": "0", "type": "Q_141", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "11", "final": "21", "foul": "0", "tele": "0"}, "teams": ["1212", "1108", "263"]}}, {"blue": {"score": {"brige": "20", "tele": "10", "hybrid": "11", "final": "41", "foul": "0"}, "teams": ["3530", "801", "2642"]}, "coop": "2", "type": "Q_142", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "17", "final": "59", "foul": "12", "tele": "10"}, "teams": ["4057", "1262", "3574"]}}, {"blue": {"score": {"brige": "0", "tele": "36", "hybrid": "18", "final": "57", "foul": "3"}, "teams": ["168", "1323", "1718"]}, "coop": "2", "type": "Q_143", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "18", "foul": "0", "tele": "0"}, "teams": ["1918", "585", "4099"]}}, {"blue": {"score": {"brige": "10", "tele": "4", "hybrid": "10", "final": "33", "foul": "9"}, "teams": ["3142", "870", "151"]}, "coop": "2", "type": "Q_144", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "18", "foul": "0", "tele": "12"}, "teams": ["2169", "281", "815"]}}, {"blue": {"score": {"brige": "0", "tele": "7", "hybrid": "12", "final": "19", "foul": "0"}, "teams": ["8", "3189", "1350"]}, "coop": "2", "type": "Q_145", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "34", "final": "62", "foul": "0", "tele": "18"}, "teams": ["180", "3196", "3173"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "5", "final": "17", "foul": "0"}, "teams": ["4353", "3103", "772"]}, "coop": "0", "type": "Q_146", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "40", "foul": "0", "tele": "8"}, "teams": ["533", "573", "1732"]}}, {"blue": {"score": {"brige": "0", "tele": "18", "hybrid": "12", "final": "30", "foul": "0"}, "teams": ["4028", "868", "1425"]}, "coop": "0", "type": "Q_147", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "64", "foul": "6", "tele": "30"}, "teams": ["2054", "2010", "3322"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "4", "final": "12", "foul": "0"}, "teams": ["3453", "1583", "2704"]}, "coop": "2", "type": "Q_148", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "20", "foul": "0", "tele": "4"}, "teams": ["492", "296", "1208"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "4", "final": "13", "foul": "0"}, "teams": ["3981", "16", "237"]}, "coop": "2", "type": "Q_149", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "17", "final": "64", "foul": "0", "tele": "27"}, "teams": ["33", "2341", "744"]}}, {"blue": {"score": {"brige": "20", "tele": "10", "hybrid": "6", "final": "36", "foul": "0"}, "teams": ["2220", "1305", "231"]}, "coop": "2", "type": "Q_150", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "17", "final": "36", "foul": "3", "tele": "16"}, "teams": ["3931", "2339", "103"]}}, {"blue": {"score": {"brige": "0", "tele": "18", "hybrid": "18", "final": "36", "foul": "0"}, "teams": ["2054", "573", "2169"]}, "coop": "0", "type": "E_1", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "27", "foul": "3", "tele": "18"}, "teams": ["148", "3322", "33"]}}, {"blue": {"score": {"brige": "0", "tele": "18", "hybrid": "18", "final": "36", "foul": "0"}, "teams": ["1918", "1718", "2337"]}, "coop": "0", "type": "E_2", "eventKey": "2012Galileo", "red": {"score": {"bridge": "40", "hybrid": "30", "final": "106", "foul": "6", "tele": "30"}, "teams": ["16", "180", "25"]}}, {"blue": {"score": {"brige": "20", "tele": "18", "hybrid": "18", "final": "56", "foul": "0"}, "teams": ["1732", "48", "1323"]}, "coop": "0", "type": "E_3", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "51", "foul": "0", "tele": "13"}, "teams": ["358", "2016", "492"]}}, {"blue": {"score": {"brige": "20", "tele": "27", "hybrid": "6", "final": "56", "foul": "3"}, "teams": ["231", "744", "1714"]}, "coop": "0", "type": "E_4", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "30", "final": "55", "foul": "0", "tele": "15"}, "teams": ["3173", "868", "1671"]}}, {"blue": {"score": {"brige": "0", "tele": "22", "hybrid": "30", "final": "52", "foul": "0"}, "teams": ["2054", "573", "2169"]}, "coop": "0", "type": "E_5", "eventKey": "2012Galileo", "red": {"score": {"bridge": "40", "hybrid": "18", "final": "81", "foul": "0", "tele": "23"}, "teams": ["148", "3322", "33"]}}, {"blue": {"score": {"brige": "40", "tele": "24", "hybrid": "12", "final": "79", "foul": "3"}, "teams": ["2337", "1718", "1918"]}, "coop": "0", "type": "E_6", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "24", "final": "66", "foul": "3", "tele": "39"}, "teams": ["25", "180", "16"]}}, {"blue": {"score": {"brige": "20", "tele": "30", "hybrid": "36", "final": "92", "foul": "6"}, "teams": ["1732", "1323", "48"]}, "coop": "0", "type": "E_7", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "28", "foul": "3", "tele": "7"}, "teams": ["492", "2016", "358"]}}, {"blue": {"score": {"brige": "20", "tele": "45", "hybrid": "12", "final": "77", "foul": "0"}, "teams": ["744", "1714", "231"]}, "coop": "0", "type": "E_8", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "30", "final": "74", "foul": "6", "tele": "18"}, "teams": ["1671", "868", "3173"]}}, {"blue": {"score": {"brige": "0", "tele": "30", "hybrid": "30", "final": "63", "foul": "3"}, "teams": ["2054", "2169", "573"]}, "coop": "0", "type": "E_9", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "44", "foul": "0", "tele": "6"}, "teams": ["148", "33", "3322"]}}, {"blue": {"score": {"brige": "0", "tele": "15", "hybrid": "36", "final": "51", "foul": "0"}, "teams": ["2337", "1718", "1918"]}, "coop": "0", "type": "E_10", "eventKey": "2012Galileo", "red": {"score": {"bridge": "40", "hybrid": "24", "final": "109", "foul": "3", "tele": "42"}, "teams": ["25", "16", "180"]}}, {"blue": {"score": {"brige": "0", "tele": "24", "hybrid": "30", "final": "57", "foul": "3"}, "teams": ["180", "16", "25"]}, "coop": "0", "type": "E_13", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "29", "foul": "3", "tele": "14"}, "teams": ["573", "2169", "2054"]}}, {"blue": {"score": {"brige": "20", "tele": "30", "hybrid": "30", "final": "80", "foul": "0"}, "teams": ["744", "1714", "231"]}, "coop": "0", "type": "E_14", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "24", "final": "79", "foul": "0", "tele": "35"}, "teams": ["1732", "48", "1323"]}}, {"blue": {"score": {"brige": "20", "tele": "29", "hybrid": "36", "final": "85", "foul": "0"}, "teams": ["25", "16", "180"]}, "coop": "0", "type": "E_15", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "30", "final": "61", "foul": "3", "tele": "18"}, "teams": ["2054", "573", "2169"]}}, {"blue": {"score": {"brige": "20", "tele": "21", "hybrid": "24", "final": "65", "foul": "0"}, "teams": ["744", "1714", "231"]}, "coop": "0", "type": "E_16", "eventKey": "2012Galileo", "red": {"score": {"bridge": "0", "hybrid": "24", "final": "48", "foul": "0", "tele": "24"}, "teams": ["1323", "48", "1732"]}}, {"blue": {"score": {"brige": "20", "tele": "18", "hybrid": "24", "final": "62", "foul": "0"}, "teams": ["744", "1714", "231"]}, "coop": "0", "type": "E_19", "eventKey": "2012Galileo", "red": {"score": {"bridge": "40", "hybrid": "30", "final": "113", "foul": "12", "tele": "31"}, "teams": ["16", "25", "180"]}}, {"blue": {"score": {"brige": "20", "tele": "15", "hybrid": "30", "final": "74", "foul": "9"}, "teams": ["744", "231", "1714"]}, "coop": "0", "type": "E_20", "eventKey": "2012Galileo", "red": {"score": {"bridge": "10", "hybrid": "30", "final": "73", "foul": "0", "tele": "33"}, "teams": ["25", "16", "180"]}}, {"blue": {"score": {"brige": "0", "tele": "15", "hybrid": "30", "final": "48", "foul": "3"}, "teams": ["1714", "231", "744"]}, "coop": "0", "type": "E_21", "eventKey": "2012Galileo", "red": {"score": {"bridge": "20", "hybrid": "23", "final": "97", "foul": "0", "tele": "54"}, "teams": ["180", "25", "16"]}}, {"blue": {"score": {"brige": "10", "tele": "18", "hybrid": "12", "final": "40", "foul": "0"}, "teams": ["3568", "3322", "3769"]}, "coop": "0", "type": "Q_9", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3537", "2611", "51"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["322", "3535", "2137"]}, "coop": "0", "type": "Q_10", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "10", "foul": "0", "tele": "4"}, "teams": ["70", "1502", "894"]}}, {"blue": {"score": {"brige": "10", "tele": "13", "hybrid": "0", "final": "23", "foul": "0"}, "teams": ["33", "468", "1684"]}, "coop": "0", "type": "Q_11", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "1", "foul": "0", "tele": "1"}, "teams": ["3421", "703", "3536"]}}, {"blue": {"score": {"brige": "0", "tele": "13", "hybrid": "0", "final": "13", "foul": "0"}, "teams": ["4382", "862", "3534"]}, "coop": "2", "type": "Q_12", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["4376", "1322", "302"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "4", "final": "10", "foul": "3"}, "teams": ["2627", "2604", "326"]}, "coop": "0", "type": "Q_13", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "18", "foul": "3", "tele": "9"}, "teams": ["1506", "3415", "494"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "12", "final": "21", "foul": "0"}, "teams": ["468", "3322", "322"]}, "coop": "0", "type": "Q_14", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["2137", "4294", "33"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "18", "final": "18", "foul": "0"}, "teams": ["3534", "70", "2337"]}, "coop": "2", "type": "Q_15", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "23", "foul": "0", "tele": "5"}, "teams": ["1684", "51", "1701"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["314", "1711", "326"]}, "coop": "0", "type": "Q_16", "eventKey": "2012GG", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "10", "foul": "0", "tele": "0"}, "teams": ["703", "302", "3568"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "0", "final": "6", "foul": "0"}, "teams": ["1502", "3537", "1243"]}, "coop": "0", "type": "Q_17", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "4", "foul": "3", "tele": "1"}, "teams": ["3415", "3421", "4376"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "6", "final": "11", "foul": "3"}, "teams": ["2611", "1322", "3302"]}, "coop": "0", "type": "Q_18", "eventKey": "2012GG", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "23", "foul": "0", "tele": "13"}, "teams": ["894", "1504", "1506"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "0", "final": "1", "foul": "0"}, "teams": ["3601", "3536", "3769"]}, "coop": "0", "type": "Q_19", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["3535", "4382", "2604"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "12", "final": "18", "foul": "0"}, "teams": ["862", "494", "2137"]}, "coop": "0", "type": "Q_20", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["2627", "3415", "1243"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4376", "3537", "894"]}, "coop": "2", "type": "Q_21", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "14", "foul": "0", "tele": "2"}, "teams": ["2337", "1711", "1684"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "6", "final": "8", "foul": "0"}, "teams": ["4294", "3535", "2611"]}, "coop": "0", "type": "Q_22", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "5", "foul": "0", "tele": "5"}, "teams": ["3534", "326", "3421"]}}, {"blue": {"score": {"brige": "20", "tele": "0", "hybrid": "0", "final": "29", "foul": "9"}, "teams": ["51", "3568", "322"]}, "coop": "0", "type": "Q_23", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["703", "2627", "862"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "18", "final": "36", "foul": "12"}, "teams": ["70", "302", "3322"]}, "coop": "0", "type": "Q_24", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "4", "foul": "3", "tele": "1"}, "teams": ["3601", "468", "1506"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "7", "foul": "3"}, "teams": ["1322", "1701", "3536"]}, "coop": "2", "type": "Q_25", "eventKey": "2012GG", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "24", "foul": "0", "tele": "14"}, "teams": ["494", "33", "314"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "0", "final": "8", "foul": "0"}, "teams": ["3769", "4382", "1504"]}, "coop": "0", "type": "Q_26", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "5", "foul": "0", "tele": "5"}, "teams": ["3302", "1502", "2604"]}}, {"blue": {"score": {"brige": "20", "tele": "0", "hybrid": "0", "final": "23", "foul": "3"}, "teams": ["894", "3601", "3415"]}, "coop": "0", "type": "Q_27", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["322", "1684", "3534"]}}, {"blue": {"score": {"brige": "10", "tele": "12", "hybrid": "12", "final": "40", "foul": "6"}, "teams": ["862", "3322", "4294"]}, "coop": "0", "type": "Q_28", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["70", "3535", "3537"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "3", "foul": "3"}, "teams": ["3536", "2627", "468"]}, "coop": "0", "type": "Q_29", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["4382", "1701", "2337"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "6", "final": "25", "foul": "3"}, "teams": ["2137", "3421", "1506"]}, "coop": "0", "type": "Q_30", "eventKey": "2012GG", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "28", "foul": "6", "tele": "12"}, "teams": ["3302", "314", "4376"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "0", "final": "12", "foul": "0"}, "teams": ["33", "3769", "2604"]}, "coop": "0", "type": "Q_31", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["2611", "302", "1711"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "0", "final": "8", "foul": "0"}, "teams": ["1243", "326", "494"]}, "coop": "0", "type": "Q_32", "eventKey": "2012GG", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "22", "foul": "3", "tele": "9"}, "teams": ["1322", "3568", "1504"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "4", "final": "10", "foul": "6"}, "teams": ["1502", "703", "3415"]}, "coop": "0", "type": "Q_33", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "27", "foul": "6", "tele": "9"}, "teams": ["51", "2337", "314"]}}, {"blue": {"score": {"brige": "20", "tele": "11", "hybrid": "0", "final": "31", "foul": "0"}, "teams": ["862", "4376", "33"]}, "coop": "0", "type": "Q_34", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["894", "2604", "4294"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3534", "1701", "468"]}, "coop": "0", "type": "Q_35", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "0", "tele": "6"}, "teams": ["1711", "1243", "3769"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "12", "final": "24", "foul": "0"}, "teams": ["51", "3421", "3322"]}, "coop": "0", "type": "Q_36", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "6", "tele": "0"}, "teams": ["322", "326", "4382"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "4", "final": "8", "foul": "0"}, "teams": ["3302", "3535", "703"]}, "coop": "0", "type": "Q_37", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "10", "foul": "0", "tele": "10"}, "teams": ["2627", "3537", "1504"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "12", "final": "15", "foul": "0"}, "teams": ["1684", "302", "1506"]}, "coop": "0", "type": "Q_38", "eventKey": "2012GG", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "23", "foul": "0", "tele": "3"}, "teams": ["1322", "70", "494"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2611", "3601", "1502"]}, "coop": "0", "type": "Q_39", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "8", "foul": "0", "tele": "2"}, "teams": ["2137", "3536", "3568"]}}, {"blue": {"score": {"brige": "10", "tele": "4", "hybrid": "0", "final": "17", "foul": "3"}, "teams": ["33", "1711", "894"]}, "coop": "0", "type": "Q_40", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "4", "final": "5", "foul": "0", "tele": "1"}, "teams": ["326", "3415", "3535"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["4376", "4294", "322"]}, "coop": "0", "type": "Q_41", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "15", "foul": "0", "tele": "15"}, "teams": ["1504", "2604", "314"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "0", "final": "8", "foul": "0"}, "teams": ["3537", "862", "1506"]}, "coop": "0", "type": "Q_42", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["1322", "4382", "468"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3601", "703", "3534"]}, "coop": "0", "type": "Q_43", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3769", "494", "3421"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "6", "final": "9", "foul": "0"}, "teams": ["2611", "1684", "70"]}, "coop": "2", "type": "Q_44", "eventKey": "2012GG", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "34", "foul": "3", "tele": "3"}, "teams": ["2137", "51", "1243"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2627", "302", "3302"]}, "coop": "2", "type": "Q_45", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "27", "foul": "0", "tele": "9"}, "teams": ["2337", "3536", "3322"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3568", "1502", "326"]}, "coop": "0", "type": "Q_46", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "4", "final": "10", "foul": "0", "tele": "6"}, "teams": ["1701", "494", "4376"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "3", "foul": "0"}, "teams": ["3769", "894", "468"]}, "coop": "0", "type": "Q_47", "eventKey": "2012GG", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "14", "foul": "0", "tele": "4"}, "teams": ["314", "1506", "2611"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "6", "foul": "0"}, "teams": ["3421", "2337", "3535"]}, "coop": "2", "type": "Q_48", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "19", "foul": "0", "tele": "19"}, "teams": ["862", "3415", "1504"]}}, {"blue": {"score": {"brige": "20", "tele": "0", "hybrid": "6", "final": "26", "foul": "0"}, "teams": ["1711", "1502", "51"]}, "coop": "0", "type": "Q_49", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "16", "foul": "0", "tele": "4"}, "teams": ["2137", "302", "3601"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["70", "1701", "2627"]}, "coop": "0", "type": "Q_50", "eventKey": "2012GG", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "10", "foul": "0", "tele": "0"}, "teams": ["4294", "4382", "3568"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "0", "final": "9", "foul": "0"}, "teams": ["3536", "1684", "2604"]}, "coop": "0", "type": "Q_51", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "32", "foul": "3", "tele": "17"}, "teams": ["3322", "3537", "703"]}}, {"blue": {"score": {"brige": "0", "tele": "7", "hybrid": "0", "final": "10", "foul": "3"}, "teams": ["322", "1243", "3302"]}, "coop": "0", "type": "Q_52", "eventKey": "2012GG", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "25", "foul": "0", "tele": "5"}, "teams": ["3534", "1322", "33"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["302", "3421", "4382"]}, "coop": "0", "type": "Q_53", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["894", "3568", "1701"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "0", "final": "16", "foul": "3"}, "teams": ["3536", "326", "1506"]}, "coop": "2", "type": "Q_54", "eventKey": "2012GG", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "35", "foul": "0", "tele": "3"}, "teams": ["1502", "1684", "862"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "12", "final": "22", "foul": "0"}, "teams": ["2337", "2611", "4376"]}, "coop": "2", "type": "Q_55", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "15", "foul": "0", "tele": "3"}, "teams": ["322", "70", "703"]}}, {"blue": {"score": {"brige": "10", "tele": "10", "hybrid": "0", "final": "23", "foul": "3"}, "teams": ["314", "1322", "3537"]}, "coop": "2", "type": "Q_56", "eventKey": "2012GG", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "10", "foul": "0", "tele": "0"}, "teams": ["3601", "33", "2627"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "6", "final": "19", "foul": "3"}, "teams": ["3415", "51", "3769"]}, "coop": "0", "type": "Q_57", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "3", "tele": "0"}, "teams": ["468", "494", "4294"]}}, {"blue": {"score": {"brige": "20", "tele": "6", "hybrid": "0", "final": "35", "foul": "9"}, "teams": ["3302", "2137", "1711"]}, "coop": "0", "type": "Q_58", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "21", "foul": "0", "tele": "3"}, "teams": ["1243", "3535", "3322"]}}, {"blue": {"score": {"brige": "0", "tele": "16", "hybrid": "0", "final": "16", "foul": "0"}, "teams": ["1504", "33", "326"]}, "coop": "2", "type": "Q_59", "eventKey": "2012GG", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "18", "foul": "0", "tele": "8"}, "teams": ["2604", "3534", "3537"]}}, {"blue": {"score": {"brige": "10", "tele": "12", "hybrid": "6", "final": "28", "foul": "0"}, "teams": ["2627", "1684", "1322"]}, "coop": "0", "type": "Q_60", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "6", "foul": "0", "tele": "0"}, "teams": ["1502", "322", "3769"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "12", "final": "22", "foul": "0"}, "teams": ["4376", "1243", "3601"]}, "coop": "0", "type": "Q_61", "eventKey": "2012GG", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "30", "foul": "0", "tele": "8"}, "teams": ["3302", "3536", "51"]}}, {"blue": {"score": {"brige": "20", "tele": "0", "hybrid": "5", "final": "25", "foul": "0"}, "teams": ["302", "4294", "3415"]}, "coop": "0", "type": "Q_62", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "19", "foul": "0", "tele": "19"}, "teams": ["2611", "1701", "1504"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "4", "foul": "0"}, "teams": ["3421", "314", "468"]}, "coop": "0", "type": "Q_63", "eventKey": "2012GG", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "26", "foul": "0", "tele": "6"}, "teams": ["862", "1711", "70"]}}, {"blue": {"score": {"brige": "10", "tele": "10", "hybrid": "11", "final": "31", "foul": "0"}, "teams": ["1506", "3568", "2337"]}, "coop": "2", "type": "Q_64", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "12", "foul": "0", "tele": "6"}, "teams": ["703", "2604", "2137"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["894", "3535", "3534"]}, "coop": "2", "type": "Q_65", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "21", "foul": "0", "tele": "15"}, "teams": ["494", "4382", "3322"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "12", "final": "28", "foul": "0"}, "teams": ["70", "314", "3536"]}, "coop": "0", "type": "Q_66", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "26", "foul": "9", "tele": "11"}, "teams": ["862", "3769", "326"]}}, {"blue": {"score": {"brige": "10", "tele": "22", "hybrid": "12", "final": "44", "foul": "0"}, "teams": ["2337", "1504", "2137"]}, "coop": "0", "type": "Q_67", "eventKey": "2012GG", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "24", "foul": "3", "tele": "11"}, "teams": ["33", "1701", "3421"]}}, {"blue": {"score": {"brige": "20", "tele": "10", "hybrid": "0", "final": "30", "foul": "0"}, "teams": ["1684", "3601", "4294"]}, "coop": "0", "type": "Q_68", "eventKey": "2012GG", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "25", "foul": "0", "tele": "5"}, "teams": ["3534", "1506", "1502"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "6", "final": "11", "foul": "0"}, "teams": ["1322", "703", "1243"]}, "coop": "2", "type": "Q_69", "eventKey": "2012GG", "red": {"score": {"bridge": "10", "hybrid": "17", "final": "36", "foul": "9", "tele": "0"}, "teams": ["3535", "302", "51"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "6", "foul": "6"}, "teams": ["4376", "4382", "1711"]}, "coop": "0", "type": "Q_70", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["322", "2611", "2627"]}}, {"blue": {"score": {"brige": "10", "tele": "7", "hybrid": "0", "final": "17", "foul": "0"}, "teams": ["3302", "894", "494"]}, "coop": "0", "type": "Q_71", "eventKey": "2012GG", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "18", "foul": "0", "tele": "8"}, "teams": ["3537", "468", "3568"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "23", "final": "30", "foul": "3"}, "teams": ["2604", "3415", "2337"]}, "coop": "2", "type": "Q_72", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "17", "final": "22", "foul": "3", "tele": "2"}, "teams": ["3322", "1322", "326"]}}, {"blue": {"score": {"brige": "10", "tele": "8", "hybrid": "0", "final": "21", "foul": "3"}, "teams": ["51", "1506", "4294"]}, "coop": "2", "type": "Q_73", "eventKey": "2012GG", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "24", "foul": "0", "tele": "14"}, "teams": ["3536", "1504", "1711"]}}, {"blue": {"score": {"brige": "10", "tele": "13", "hybrid": "12", "final": "35", "foul": "0"}, "teams": ["33", "3537", "4382"]}, "coop": "0", "type": "Q_74", "eventKey": "2012GG", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "10", "foul": "0", "tele": "0"}, "teams": ["3534", "2137", "3769"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "6", "final": "10", "foul": "0"}, "teams": ["302", "314", "1502"]}, "coop": "0", "type": "Q_75", "eventKey": "2012GG", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "29", "foul": "0", "tele": "7"}, "teams": ["3302", "3322", "3415"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "6", "foul": "0"}, "teams": ["494", "2604", "322"]}, "coop": "0", "type": "Q_76", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "17", "foul": "0", "tele": "6"}, "teams": ["70", "1243", "468"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["494", "2604", "322"]}, "coop": "2", "type": "Q_76", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "17", "final": "20", "foul": "0", "tele": "3"}, "teams": ["70", "1243", "468"]}}, {"blue": {"score": {"brige": "20", "tele": "0", "hybrid": "0", "final": "20", "foul": "0"}, "teams": ["3568", "3421", "2627"]}, "coop": "0", "type": "Q_77", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "4", "foul": "0", "tele": "4"}, "teams": ["4376", "3535", "1684"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2611", "894", "703"]}, "coop": "0", "type": "Q_78", "eventKey": "2012GG", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "23", "foul": "0", "tele": "3"}, "teams": ["862", "1701", "3601"]}}, {"blue": {"score": {"brige": "20", "tele": "3", "hybrid": "0", "final": "23", "foul": "0"}, "teams": ["1322", "302", "2137"]}, "coop": "0", "type": "E_1", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "24", "foul": "0", "tele": "5"}, "teams": ["4294", "33", "2337"]}}, {"blue": {"score": {"brige": "20", "tele": "8", "hybrid": "4", "final": "35", "foul": "3"}, "teams": ["3568", "1504", "1243"]}, "coop": "0", "type": "E_2", "eventKey": "2012GG", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "16", "foul": "0", "tele": "6"}, "teams": ["3537", "703", "494"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "12", "final": "13", "foul": "0"}, "teams": ["1502", "3536", "314"]}, "coop": "0", "type": "E_3", "eventKey": "2012GG", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "38", "foul": "0", "tele": "22"}, "teams": ["51", "1684", "894"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "5", "final": "14", "foul": "9"}, "teams": ["1711", "70", "3302"]}, "coop": "0", "type": "E_4", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "22", "final": "34", "foul": "0", "tele": "12"}, "teams": ["862", "3601", "3322"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "6", "final": "18", "foul": "3"}, "teams": ["2137", "302", "1322"]}, "coop": "0", "type": "E_5", "eventKey": "2012GG", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "47", "foul": "3", "tele": "12"}, "teams": ["2337", "33", "4294"]}}, {"blue": {"score": {"brige": "20", "tele": "0", "hybrid": "6", "final": "26", "foul": "0"}, "teams": ["1243", "1504", "3568"]}, "coop": "0", "type": "E_6", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "4", "foul": "0", "tele": "4"}, "teams": ["494", "3537", "703"]}}, {"blue": {"score": {"brige": "0", "tele": "10", "hybrid": "12", "final": "22", "foul": "0"}, "teams": ["314", "1502", "3536"]}, "coop": "0", "type": "E_7", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "24", "final": "46", "foul": "0", "tele": "22"}, "teams": ["51", "894", "1684"]}}, {"blue": {"score": {"brige": "20", "tele": "16", "hybrid": "10", "final": "46", "foul": "0"}, "teams": ["3302", "70", "1711"]}, "coop": "0", "type": "E_8", "eventKey": "2012GG", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "35", "foul": "3", "tele": "12"}, "teams": ["3601", "862", "3322"]}}, {"blue": {"score": {"brige": "20", "tele": "4", "hybrid": "5", "final": "29", "foul": "0"}, "teams": ["1711", "3302", "70"]}, "coop": "0", "type": "E_12", "eventKey": "2012GG", "red": {"score": {"bridge": "20", "hybrid": "30", "final": "50", "foul": "0", "tele": "0"}, "teams": ["3601", "3322", "862"]}}, {"blue": {"score": {"brige": "20", "tele": "15", "hybrid": "6", "final": "41", "foul": "0"}, "teams": ["3568", "1504", "1243"]}, "coop": "0", "type": "E_13", "eventKey": "2012GG", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "52", "foul": "0", "tele": "20"}, "teams": ["2337", "4294", "33"]}}, {"blue": {"score": {"brige": "20", "tele": "16", "hybrid": "24", "final": "63", "foul": "3"}, "teams": ["3601", "862", "3322"]}, "coop": "0", "type": "E_14", "eventKey": "2012GG", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "47", "foul": "0", "tele": "21"}, "teams": ["1684", "894", "51"]}}, {"blue": {"score": {"brige": "10", "tele": "7", "hybrid": "6", "final": "23", "foul": "0"}, "teams": ["3568", "1504", "1243"]}, "coop": "0", "type": "E_15", "eventKey": "2012GG", "red": {"score": {"bridge": "20", "hybrid": "11", "final": "47", "foul": "3", "tele": "13"}, "teams": ["4294", "33", "2337"]}}, {"blue": {"score": {"brige": "20", "tele": "3", "hybrid": "30", "final": "59", "foul": "6"}, "teams": ["3601", "3322", "862"]}, "coop": "0", "type": "E_16", "eventKey": "2012GG", "red": {"score": {"bridge": "0", "hybrid": "24", "final": "42", "foul": "0", "tele": "18"}, "teams": ["1684", "51", "894"]}}, {"blue": {"score": {"brige": "20", "tele": "24", "hybrid": "24", "final": "68", "foul": "0"}, "teams": ["3322", "3601", "862"]}, "coop": "0", "type": "E_19", "eventKey": "2012GG", "red": {"score": {"bridge": "20", "hybrid": "24", "final": "66", "foul": "0", "tele": "22"}, "teams": ["4294", "2337", "33"]}}, {"blue": {"score": {"brige": "20", "tele": "3", "hybrid": "24", "final": "47", "foul": "0"}, "teams": ["862", "3322", "3601"]}, "coop": "0", "type": "E_20", "eventKey": "2012GG", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "56", "foul": "0", "tele": "24"}, "teams": ["4294", "33", "2337"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "30", "final": "39", "foul": "0"}, "teams": ["862", "3322", "3601"]}, "coop": "0", "type": "E_21", "eventKey": "2012GG", "red": {"score": {"bridge": "20", "hybrid": "24", "final": "80", "foul": "0", "tele": "36"}, "teams": ["4294", "2337", "33"]}}, {"blue": {"score": {"brige": "20", "tele": "14", "hybrid": "18", "final": "55", "foul": "3"}, "teams": ["4003", "2054", "217"]}, "coop": "0", "type": "Q_1", "eventKey": "2012GL", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "40", "foul": "0", "tele": "12"}, "teams": ["123", "2246", "3572"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "18", "final": "26", "foul": "0"}, "teams": ["85", "3234", "3322"]}, "coop": "2", "type": "Q_2", "eventKey": "2012GL", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "39", "foul": "0", "tele": "21"}, "teams": ["1023", "1684", "2834"]}}, {"blue": {"score": {"brige": "20", "tele": "12", "hybrid": "12", "final": "53", "foul": "9"}, "teams": ["3617", "3538", "3098"]}, "coop": "2", "type": "Q_3", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "67", "foul": "3", "tele": "26"}, "teams": ["67", "858", "1718"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "0", "final": "8", "foul": "0"}, "teams": ["3620", "862", "1711"]}, "coop": "2", "type": "Q_4", "eventKey": "2012GL", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "36", "foul": "3", "tele": "23"}, "teams": ["1025", "1918", "2591"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "18", "final": "21", "foul": "0"}, "teams": ["3509", "2586", "201"]}, "coop": "0", "type": "Q_5", "eventKey": "2012GL", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "28", "foul": "0", "tele": "12"}, "teams": ["2851", "66", "3601"]}}, {"blue": {"score": {"brige": "20", "tele": "13", "hybrid": "12", "final": "45", "foul": "0"}, "teams": ["3656", "245", "2337"]}, "coop": "0", "type": "Q_6", "eventKey": "2012GL", "red": {"score": {"bridge": "0", "hybrid": "23", "final": "39", "foul": "0", "tele": "16"}, "teams": ["503", "3546", "314"]}}, {"blue": {"score": {"brige": "20", "tele": "6", "hybrid": "18", "final": "44", "foul": "0"}, "teams": ["904", "2767", "247"]}, "coop": "2", "type": "Q_7", "eventKey": "2012GL", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "21", "foul": "9", "tele": "6"}, "teams": ["226", "830", "51"]}}, {"blue": {"score": {"brige": "10", "tele": "5", "hybrid": "18", "final": "45", "foul": "12"}, "teams": ["3618", "240", "548"]}, "coop": "2", "type": "Q_8", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "16", "final": "52", "foul": "0", "tele": "16"}, "teams": ["573", "4294", "1504"]}}, {"blue": {"score": {"brige": "20", "tele": "27", "hybrid": "12", "final": "65", "foul": "6"}, "teams": ["2137", "2959", "27"]}, "coop": "2", "type": "Q_9", "eventKey": "2012GL", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "29", "foul": "0", "tele": "17"}, "teams": ["3539", "141", "2000"]}}, {"blue": {"score": {"brige": "20", "tele": "46", "hybrid": "6", "final": "84", "foul": "12"}, "teams": ["33", "469", "3568"]}, "coop": "2", "type": "Q_10", "eventKey": "2012GL", "red": {"score": {"bridge": "0", "hybrid": "17", "final": "42", "foul": "0", "tele": "25"}, "teams": ["2474", "302", "3537"]}}, {"blue": {"score": {"brige": "0", "tele": "23", "hybrid": "0", "final": "23", "foul": "0"}, "teams": ["494", "107", "2851"]}, "coop": "0", "type": "Q_11", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "42", "foul": "0", "tele": "10"}, "teams": ["308", "70", "123"]}}, {"blue": {"score": {"brige": "20", "tele": "21", "hybrid": "6", "final": "47", "foul": "0"}, "teams": ["3617", "1918", "217"]}, "coop": "2", "type": "Q_12", "eventKey": "2012GL", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "20", "foul": "0", "tele": "9"}, "teams": ["3656", "904", "3546"]}}, {"blue": {"score": {"brige": "20", "tele": "0", "hybrid": "0", "final": "20", "foul": "0"}, "teams": ["3620", "2586", "3601"]}, "coop": "2", "type": "Q_13", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "24", "final": "59", "foul": "3", "tele": "12"}, "teams": ["3098", "240", "1023"]}}, {"blue": {"score": {"brige": "10", "tele": "12", "hybrid": "12", "final": "34", "foul": "0"}, "teams": ["201", "226", "3572"]}, "coop": "0", "type": "Q_14", "eventKey": "2012GL", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "52", "foul": "9", "tele": "27"}, "teams": ["3234", "3509", "2137"]}}, {"blue": {"score": {"brige": "10", "tele": "24", "hybrid": "6", "final": "43", "foul": "3"}, "teams": ["1684", "33", "3537"]}, "coop": "2", "type": "Q_15", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "24", "final": "65", "foul": "0", "tele": "21"}, "teams": ["830", "2054", "2959"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "0", "final": "5", "foul": "0"}, "teams": ["2246", "862", "141"]}, "coop": "2", "type": "Q_16", "eventKey": "2012GL", "red": {"score": {"bridge": "10", "hybrid": "17", "final": "40", "foul": "3", "tele": "10"}, "teams": ["1711", "308", "2337"]}}, {"blue": {"score": {"brige": "20", "tele": "18", "hybrid": "11", "final": "49", "foul": "0"}, "teams": ["3539", "4294", "2591"]}, "coop": "2", "type": "Q_17", "eventKey": "2012GL", "red": {"score": {"bridge": "10", "hybrid": "29", "final": "47", "foul": "0", "tele": "8"}, "teams": ["314", "51", "107"]}}, {"blue": {"score": {"brige": "0", "tele": "19", "hybrid": "10", "final": "29", "foul": "0"}, "teams": ["858", "1504", "3538"]}, "coop": "2", "type": "Q_18", "eventKey": "2012GL", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "73", "foul": "15", "tele": "36"}, "teams": ["245", "2834", "27"]}}, {"blue": {"score": {"brige": "20", "tele": "48", "hybrid": "18", "final": "86", "foul": "0"}, "teams": ["67", "70", "469"]}, "coop": "2", "type": "Q_19", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "62", "foul": "6", "tele": "24"}, "teams": ["2000", "548", "3322"]}}, {"blue": {"score": {"brige": "10", "tele": "18", "hybrid": "12", "final": "40", "foul": "0"}, "teams": ["85", "494", "503"]}, "coop": "0", "type": "Q_20", "eventKey": "2012GL", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "29", "foul": "0", "tele": "17"}, "teams": ["302", "1718", "247"]}}, {"blue": {"score": {"brige": "10", "tele": "9", "hybrid": "12", "final": "34", "foul": "3"}, "teams": ["4003", "2767", "573"]}, "coop": "2", "type": "Q_21", "eventKey": "2012GL", "red": {"score": {"bridge": "10", "hybrid": "16", "final": "31", "foul": "0", "tele": "5"}, "teams": ["1025", "66", "3568"]}}, {"blue": {"score": {"brige": "10", "tele": "28", "hybrid": "23", "final": "61", "foul": "0"}, "teams": ["3618", "2337", "3098"]}, "coop": "2", "type": "Q_22", "eventKey": "2012GL", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "33", "foul": "3", "tele": "24"}, "teams": ["2474", "226", "2959"]}}, {"blue": {"score": {"brige": "0", "tele": "15", "hybrid": "24", "final": "54", "foul": "15"}, "teams": ["217", "3601", "3539"]}, "coop": "2", "type": "Q_23", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "68", "foul": "0", "tele": "36"}, "teams": ["1711", "33", "2851"]}}, {"blue": {"score": {"brige": "20", "tele": "23", "hybrid": "12", "final": "55", "foul": "0"}, "teams": ["1023", "3234", "123"]}, "coop": "0", "type": "Q_24", "eventKey": "2012GL", "red": {"score": {"bridge": "10", "hybrid": "22", "final": "48", "foul": "3", "tele": "13"}, "teams": ["240", "2591", "904"]}}, {"blue": {"score": {"brige": "20", "tele": "21", "hybrid": "18", "final": "59", "foul": "0"}, "teams": ["2767", "245", "1718"]}, "coop": "2", "type": "Q_26", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "24", "final": "79", "foul": "0", "tele": "35"}, "teams": ["469", "3572", "573"]}}, {"blue": {"score": {"brige": "20", "tele": "33", "hybrid": "6", "final": "59", "foul": "0"}, "teams": ["70", "2137", "3537"]}, "coop": "0", "type": "Q_27", "eventKey": "2012GL", "red": {"score": {"bridge": "0", "hybrid": "22", "final": "32", "foul": "0", "tele": "10"}, "teams": ["1504", "247", "3656"]}}, {"blue": {"score": {"brige": "10", "tele": "48", "hybrid": "12", "final": "70", "foul": "0"}, "teams": ["548", "2834", "2474"]}, "coop": "0", "type": "Q_28", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "24", "final": "57", "foul": "0", "tele": "13"}, "teams": ["201", "107", "3620"]}}, {"blue": {"score": {"brige": "0", "tele": "10", "hybrid": "12", "final": "25", "foul": "3"}, "teams": ["1684", "3509", "3568"]}, "coop": "2", "type": "Q_29", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "65", "foul": "3", "tele": "24"}, "teams": ["67", "1025", "2246"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "16", "final": "32", "foul": "0"}, "teams": ["302", "830", "862"]}, "coop": "2", "type": "Q_30", "eventKey": "2012GL", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "22", "foul": "0", "tele": "6"}, "teams": ["2586", "4003", "3538"]}}, {"blue": {"score": {"brige": "20", "tele": "18", "hybrid": "18", "final": "59", "foul": "3"}, "teams": ["141", "494", "4294"]}, "coop": "0", "type": "Q_31", "eventKey": "2012GL", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "39", "foul": "0", "tele": "27"}, "teams": ["3546", "85", "3617"]}}, {"blue": {"score": {"brige": "20", "tele": "26", "hybrid": "24", "final": "70", "foul": "0"}, "teams": ["314", "2000", "2054"]}, "coop": "0", "type": "Q_32", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "41", "foul": "0", "tele": "9"}, "teams": ["3618", "66", "858"]}}, {"blue": {"score": {"brige": "0", "tele": "27", "hybrid": "11", "final": "41", "foul": "3"}, "teams": ["3537", "2851", "1718"]}, "coop": "2", "type": "Q_33", "eventKey": "2012GL", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "39", "foul": "0", "tele": "27"}, "teams": ["107", "1918", "2474"]}}, {"blue": {"score": {"brige": "0", "tele": "22", "hybrid": "18", "final": "40", "foul": "0"}, "teams": ["1023", "226", "503"]}, "coop": "2", "type": "Q_34", "eventKey": "2012GL", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "61", "foul": "3", "tele": "30"}, "teams": ["548", "3539", "3572"]}}, {"blue": {"score": {"brige": "20", "tele": "18", "hybrid": "22", "final": "60", "foul": "0"}, "teams": ["1711", "2137", "201"]}, "coop": "0", "type": "Q_35", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "29", "foul": "0", "tele": "9"}, "teams": ["3568", "2959", "3538"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "24", "final": "40", "foul": "0"}, "teams": ["3601", "3546", "573"]}, "coop": "2", "type": "Q_36", "eventKey": "2012GL", "red": {"score": {"bridge": "10", "hybrid": "28", "final": "70", "foul": "0", "tele": "32"}, "teams": ["3234", "308", "67"]}}, {"blue": {"score": {"brige": "20", "tele": "21", "hybrid": "6", "final": "47", "foul": "0"}, "teams": ["302", "1684", "2246"]}, "coop": "2", "type": "Q_37", "eventKey": "2012GL", "red": {"score": {"bridge": "0", "hybrid": "16", "final": "25", "foul": "0", "tele": "9"}, "teams": ["314", "2591", "3098"]}}, {"blue": {"score": {"brige": "20", "tele": "20", "hybrid": "12", "final": "52", "foul": "0"}, "teams": ["858", "70", "4003"]}, "coop": "2", "type": "Q_38", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "23", "final": "55", "foul": "0", "tele": "12"}, "teams": ["217", "904", "2337"]}}, {"blue": {"score": {"brige": "10", "tele": "27", "hybrid": "6", "final": "43", "foul": "0"}, "teams": ["2834", "141", "3322"]}, "coop": "2", "type": "Q_39", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "56", "foul": "9", "tele": "15"}, "teams": ["862", "4294", "2054"]}}, {"blue": {"score": {"brige": "20", "tele": "27", "hybrid": "23", "final": "76", "foul": "6"}, "teams": ["2767", "3656", "469"]}, "coop": "2", "type": "Q_40", "eventKey": "2012GL", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "14", "foul": "0", "tele": "8"}, "teams": ["85", "3620", "240"]}}, {"blue": {"score": {"brige": "10", "tele": "27", "hybrid": "12", "final": "49", "foul": "0"}, "teams": ["494", "123", "2000"]}, "coop": "0", "type": "Q_41", "eventKey": "2012GL", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "22", "foul": "0", "tele": "12"}, "teams": ["830", "3509", "1504"]}}, {"blue": {"score": {"brige": "20", "tele": "8", "hybrid": "18", "final": "46", "foul": "0"}, "teams": ["1025", "3617", "51"]}, "coop": "2", "type": "Q_42", "eventKey": "2012GL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "23", "foul": "0", "tele": "23"}, "teams": ["66", "33", "27"]}}, {"blue": {"score": {"brige": "0", "tele": "24", "hybrid": "12", "final": "39", "foul": "3"}, "teams": ["2586", "245", "2591"]}, "coop": "2", "type": "Q_43", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "23", "final": "49", "foul": "0", "tele": "6"}, "teams": ["247", "3618", "70"]}}, {"blue": {"score": {"brige": "10", "tele": "12", "hybrid": "17", "final": "42", "foul": "3"}, "teams": ["862", "3572", "2474"]}, "coop": "2", "type": "Q_44", "eventKey": "2012GL", "red": {"score": {"bridge": "10", "hybrid": "5", "final": "30", "foul": "6", "tele": "9"}, "teams": ["4294", "904", "3537"]}}, {"blue": {"score": {"brige": "0", "tele": "24", "hybrid": "24", "final": "48", "foul": "0"}, "teams": ["217", "67", "3546"]}, "coop": "2", "type": "Q_45", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "24", "final": "80", "foul": "0", "tele": "36"}, "teams": ["201", "3539", "469"]}}, {"blue": {"score": {"brige": "20", "tele": "12", "hybrid": "24", "final": "59", "foul": "3"}, "teams": ["2054", "858", "123"]}, "coop": "2", "type": "Q_46", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "43", "foul": "3", "tele": "20"}, "teams": ["85", "2137", "3601"]}}, {"blue": {"score": {"brige": "0", "tele": "10", "hybrid": "0", "final": "22", "foul": "12"}, "teams": ["226", "3620", "1504"]}, "coop": "2", "type": "Q_47", "eventKey": "2012GL", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "31", "foul": "0", "tele": "21"}, "teams": ["1718", "2246", "314"]}}, {"blue": {"score": {"brige": "20", "tele": "30", "hybrid": "6", "final": "59", "foul": "3"}, "teams": ["2586", "27", "3234"]}, "coop": "2", "type": "Q_48", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "30", "final": "57", "foul": "0", "tele": "7"}, "teams": ["503", "2959", "4003"]}}, {"blue": {"score": {"brige": "20", "tele": "9", "hybrid": "12", "final": "41", "foul": "0"}, "teams": ["66", "245", "247"]}, "coop": "0", "type": "Q_49", "eventKey": "2012GL", "red": {"score": {"bridge": "0", "hybrid": "36", "final": "63", "foul": "3", "tele": "24"}, "teams": ["1918", "141", "1023"]}}, {"blue": {"score": {"brige": "0", "tele": "20", "hybrid": "12", "final": "32", "foul": "0"}, "teams": ["1684", "494", "3538"]}, "coop": "0", "type": "Q_50", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "10", "final": "44", "foul": "0", "tele": "14"}, "teams": ["2000", "3618", "573"]}}, {"blue": {"score": {"brige": "20", "tele": "14", "hybrid": "12", "final": "49", "foul": "3"}, "teams": ["3568", "1711", "830"]}, "coop": "2", "type": "Q_51", "eventKey": "2012GL", "red": {"score": {"bridge": "10", "hybrid": "24", "final": "55", "foul": "3", "tele": "18"}, "teams": ["3098", "2834", "308"]}}, {"blue": {"score": {"brige": "20", "tele": "9", "hybrid": "4", "final": "36", "foul": "3"}, "teams": ["2851", "302", "1025"]}, "coop": "2", "type": "Q_52", "eventKey": "2012GL", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "37", "foul": "0", "tele": "15"}, "teams": ["3656", "240", "51"]}}, {"blue": {"score": {"brige": "0", "tele": "14", "hybrid": "24", "final": "41", "foul": "3"}, "teams": ["548", "3509", "2337"]}, "coop": "2", "type": "Q_53", "eventKey": "2012GL", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "48", "foul": "3", "tele": "33"}, "teams": ["3322", "3617", "33"]}}, {"blue": {"score": {"brige": "20", "tele": "24", "hybrid": "18", "final": "62", "foul": "0"}, "teams": ["107", "2246", "27"]}, "coop": "0", "type": "Q_54", "eventKey": "2012GL", "red": {"score": {"bridge": "0", "hybrid": "24", "final": "33", "foul": "3", "tele": "6"}, "teams": ["2767", "3601", "3234"]}}, {"blue": {"score": {"brige": "20", "tele": "12", "hybrid": "12", "final": "44", "foul": "0"}, "teams": ["3539", "904", "4003"]}, "coop": "0", "type": "Q_55", "eventKey": "2012GL", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "18", "foul": "0", "tele": "12"}, "teams": ["2591", "247", "2000"]}}, {"blue": {"score": {"brige": "20", "tele": "25", "hybrid": "18", "final": "63", "foul": "0"}, "teams": ["314", "226", "573"]}, "coop": "2", "type": "Q_56", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "23", "final": "59", "foul": "0", "tele": "16"}, "teams": ["3537", "1023", "217"]}}, {"blue": {"score": {"brige": "0", "tele": "7", "hybrid": "18", "final": "25", "foul": "0"}, "teams": ["141", "3568", "3620"]}, "coop": "2", "type": "Q_57", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "53", "foul": "0", "tele": "15"}, "teams": ["1684", "503", "858"]}}, {"blue": {"score": {"brige": "20", "tele": "36", "hybrid": "18", "final": "74", "foul": "0"}, "teams": ["201", "494", "548"]}, "coop": "2", "type": "Q_58", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "24", "final": "68", "foul": "0", "tele": "24"}, "teams": ["3098", "245", "2054"]}}, {"blue": {"score": {"brige": "10", "tele": "27", "hybrid": "6", "final": "43", "foul": "0"}, "teams": ["2959", "3618", "67"]}, "coop": "2", "type": "Q_59", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "49", "foul": "0", "tele": "17"}, "teams": ["2851", "862", "2767"]}}, {"blue": {"score": {"brige": "0", "tele": "18", "hybrid": "12", "final": "30", "foul": "0"}, "teams": ["240", "1711", "2474"]}, "coop": "0", "type": "Q_60", "eventKey": "2012GL", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "35", "foul": "0", "tele": "23"}, "teams": ["70", "3322", "3546"]}}, {"blue": {"score": {"brige": "10", "tele": "12", "hybrid": "18", "final": "40", "foul": "0"}, "teams": ["66", "1918", "3509"]}, "coop": "2", "type": "Q_61", "eventKey": "2012GL", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "36", "foul": "9", "tele": "15"}, "teams": ["2137", "2834", "302"]}}, {"blue": {"score": {"brige": "20", "tele": "33", "hybrid": "6", "final": "59", "foul": "0"}, "teams": ["85", "3656", "33"]}, "coop": "2", "type": "Q_62", "eventKey": "2012GL", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "14", "foul": "0", "tele": "2"}, "teams": ["308", "3572", "3538"]}}, {"blue": {"score": {"brige": "0", "tele": "20", "hybrid": "10", "final": "30", "foul": "0"}, "teams": ["1504", "107", "3617"]}, "coop": "2", "type": "Q_63", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "74", "foul": "6", "tele": "36"}, "teams": ["469", "2586", "51"]}}, {"blue": {"score": {"brige": "20", "tele": "15", "hybrid": "6", "final": "41", "foul": "0"}, "teams": ["1718", "2337", "1025"]}, "coop": "2", "type": "Q_64", "eventKey": "2012GL", "red": {"score": {"bridge": "0", "hybrid": "30", "final": "42", "foul": "0", "tele": "12"}, "teams": ["830", "123", "4294"]}}, {"blue": {"score": {"brige": "10", "tele": "39", "hybrid": "30", "final": "85", "foul": "6"}, "teams": ["494", "217", "2474"]}, "coop": "2", "type": "Q_65", "eventKey": "2012GL", "red": {"score": {"bridge": "0", "hybrid": "4", "final": "13", "foul": "0", "tele": "9"}, "teams": ["862", "503", "3601"]}}, {"blue": {"score": {"brige": "10", "tele": "34", "hybrid": "6", "final": "50", "foul": "0"}, "teams": ["2834", "3509", "2246"]}, "coop": "2", "type": "Q_66", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "24", "final": "62", "foul": "0", "tele": "18"}, "teams": ["240", "245", "4003"]}}, {"blue": {"score": {"brige": "0", "tele": "7", "hybrid": "12", "final": "19", "foul": "0"}, "teams": ["3656", "302", "2000"]}, "coop": "2", "type": "Q_67", "eventKey": "2012GL", "red": {"score": {"bridge": "10", "hybrid": "24", "final": "67", "foul": "0", "tele": "33"}, "teams": ["1711", "3234", "548"]}}, {"blue": {"score": {"brige": "10", "tele": "26", "hybrid": "6", "final": "45", "foul": "3"}, "teams": ["3620", "27", "2054"]}, "coop": "2", "type": "Q_68", "eventKey": "2012GL", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "30", "foul": "3", "tele": "11"}, "teams": ["70", "904", "2586"]}}, {"blue": {"score": {"brige": "20", "tele": "22", "hybrid": "26", "final": "68", "foul": "0"}, "teams": ["3617", "469", "308"]}, "coop": "2", "type": "Q_69", "eventKey": "2012GL", "red": {"score": {"bridge": "0", "hybrid": "17", "final": "47", "foul": "0", "tele": "30"}, "teams": ["1918", "2959", "314"]}}, {"blue": {"score": {"brige": "20", "tele": "24", "hybrid": "36", "final": "92", "foul": "12"}, "teams": ["3539", "67", "66"]}, "coop": "2", "type": "Q_70", "eventKey": "2012GL", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "23", "foul": "0", "tele": "11"}, "teams": ["1504", "2591", "3572"]}}, {"blue": {"score": {"brige": "10", "tele": "26", "hybrid": "24", "final": "63", "foul": "3"}, "teams": ["2337", "3546", "2767"]}, "coop": "2", "type": "Q_71", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "30", "final": "66", "foul": "0", "tele": "16"}, "teams": ["1684", "2137", "1718"]}}, {"blue": {"score": {"brige": "10", "tele": "11", "hybrid": "10", "final": "31", "foul": "0"}, "teams": ["51", "3537", "3618"]}, "coop": "0", "type": "Q_72", "eventKey": "2012GL", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "24", "foul": "0", "tele": "6"}, "teams": ["141", "123", "201"]}}, {"blue": {"score": {"brige": "20", "tele": "21", "hybrid": "18", "final": "62", "foul": "3"}, "teams": ["3098", "573", "247"]}, "coop": "0", "type": "Q_73", "eventKey": "2012GL", "red": {"score": {"bridge": "0", "hybrid": "24", "final": "45", "foul": "3", "tele": "18"}, "teams": ["3538", "33", "107"]}}, {"blue": {"score": {"brige": "10", "tele": "29", "hybrid": "17", "final": "56", "foul": "0"}, "teams": ["3322", "1025", "830"]}, "coop": "0", "type": "Q_74", "eventKey": "2012GL", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "24", "foul": "0", "tele": "14"}, "teams": ["2851", "858", "85"]}}, {"blue": {"score": {"brige": "20", "tele": "26", "hybrid": "6", "final": "55", "foul": "3"}, "teams": ["4294", "1023", "70"]}, "coop": "2", "type": "Q_75", "eventKey": "2012GL", "red": {"score": {"bridge": "0", "hybrid": "4", "final": "11", "foul": "0", "tele": "7"}, "teams": ["226", "3568", "302"]}}, {"blue": {"score": {"brige": "20", "tele": "13", "hybrid": "15", "final": "51", "foul": "3"}, "teams": ["314", "862", "1504"]}, "coop": "2", "type": "Q_76", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "11", "final": "52", "foul": "3", "tele": "18"}, "teams": ["3546", "3509", "2054"]}}, {"blue": {"score": {"brige": "20", "tele": "5", "hybrid": "18", "final": "46", "foul": "3"}, "teams": ["3618", "4003", "3601"]}, "coop": "0", "type": "Q_77", "eventKey": "2012GL", "red": {"score": {"bridge": "10", "hybrid": "11", "final": "41", "foul": "3", "tele": "17"}, "teams": ["3539", "3537", "3617"]}}, {"blue": {"score": {"brige": "20", "tele": "9", "hybrid": "30", "final": "59", "foul": "0"}, "teams": ["308", "2959", "1684"]}, "coop": "0", "type": "Q_78", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "50", "foul": "0", "tele": "24"}, "teams": ["240", "1718", "217"]}}, {"blue": {"score": {"brige": "10", "tele": "20", "hybrid": "12", "final": "42", "foul": "0"}, "teams": ["830", "858", "3572"]}, "coop": "0", "type": "Q_79", "eventKey": "2012GL", "red": {"score": {"bridge": "10", "hybrid": "24", "final": "52", "foul": "3", "tele": "15"}, "teams": ["1918", "201", "573"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "24", "final": "40", "foul": "0"}, "teams": ["107", "3656", "66"]}, "coop": "2", "type": "Q_80", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "60", "foul": "0", "tele": "22"}, "teams": ["226", "494", "2337"]}}, {"blue": {"score": {"brige": "20", "tele": "0", "hybrid": "12", "final": "35", "foul": "3"}, "teams": ["3538", "141", "247"]}, "coop": "2", "type": "Q_81", "eventKey": "2012GL", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "38", "foul": "0", "tele": "22"}, "teams": ["3620", "3322", "2767"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "18", "final": "26", "foul": "3"}, "teams": ["85", "27", "3568"]}, "coop": "2", "type": "Q_82", "eventKey": "2012GL", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "58", "foul": "0", "tele": "30"}, "teams": ["2591", "51", "548"]}}, {"blue": {"score": {"brige": "20", "tele": "18", "hybrid": "12", "final": "53", "foul": "3"}, "teams": ["2000", "2851", "2137"]}, "coop": "0", "type": "Q_83", "eventKey": "2012GL", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "48", "foul": "9", "tele": "21"}, "teams": ["2246", "33", "1023"]}}, {"blue": {"score": {"brige": "10", "tele": "33", "hybrid": "18", "final": "61", "foul": "0"}, "teams": ["2834", "469", "123"]}, "coop": "2", "type": "Q_84", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "64", "foul": "3", "tele": "23"}, "teams": ["2586", "503", "67"]}}, {"blue": {"score": {"brige": "20", "tele": "14", "hybrid": "12", "final": "46", "foul": "0"}, "teams": ["245", "1711", "1025"]}, "coop": "2", "type": "Q_85", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "24", "final": "59", "foul": "0", "tele": "15"}, "teams": ["904", "2474", "3234"]}}, {"blue": {"score": {"brige": "0", "tele": "21", "hybrid": "18", "final": "42", "foul": "3"}, "teams": ["4294", "66", "3322"]}, "coop": "2", "type": "Q_86", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "24", "final": "66", "foul": "3", "tele": "19"}, "teams": ["3098", "217", "2959"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "18", "final": "34", "foul": "0"}, "teams": ["3601", "308", "201"]}, "coop": "2", "type": "Q_87", "eventKey": "2012GL", "red": {"score": {"bridge": "10", "hybrid": "28", "final": "50", "foul": "0", "tele": "12"}, "teams": ["302", "1504", "2337"]}}, {"blue": {"score": {"brige": "20", "tele": "11", "hybrid": "22", "final": "68", "foul": "15"}, "teams": ["862", "1023", "107"]}, "coop": "2", "type": "Q_88", "eventKey": "2012GL", "red": {"score": {"bridge": "0", "hybrid": "30", "final": "42", "foul": "0", "tele": "12"}, "teams": ["1684", "27", "830"]}}, {"blue": {"score": {"brige": "10", "tele": "15", "hybrid": "6", "final": "31", "foul": "0"}, "teams": ["2851", "240", "3568"]}, "coop": "2", "type": "Q_89", "eventKey": "2012GL", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "44", "foul": "3", "tele": "13"}, "teams": ["2054", "247", "3572"]}}, {"blue": {"score": {"brige": "10", "tele": "39", "hybrid": "6", "final": "58", "foul": "3"}, "teams": ["469", "1025", "2137"]}, "coop": "2", "type": "Q_90", "eventKey": "2012GL", "red": {"score": {"bridge": "0", "hybrid": "29", "final": "52", "foul": "3", "tele": "20"}, "teams": ["2834", "3618", "494"]}}, {"blue": {"score": {"brige": "10", "tele": "31", "hybrid": "29", "final": "70", "foul": "0"}, "teams": ["3098", "1918", "70"]}, "coop": "2", "type": "Q_91", "eventKey": "2012GL", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "36", "foul": "0", "tele": "24"}, "teams": ["3539", "85", "3509"]}}, {"blue": {"score": {"brige": "0", "tele": "14", "hybrid": "12", "final": "29", "foul": "3"}, "teams": ["314", "141", "904"]}, "coop": "2", "type": "Q_92", "eventKey": "2012GL", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "61", "foul": "0", "tele": "33"}, "teams": ["1718", "548", "3538"]}}, {"blue": {"score": {"brige": "20", "tele": "8", "hybrid": "18", "final": "52", "foul": "6"}, "teams": ["226", "2591", "3546"]}, "coop": "2", "type": "Q_93", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "44", "foul": "0", "tele": "18"}, "teams": ["2586", "33", "858"]}}, {"blue": {"score": {"brige": "10", "tele": "31", "hybrid": "30", "final": "77", "foul": "6"}, "teams": ["573", "2474", "51"]}, "coop": "2", "type": "Q_94", "eventKey": "2012GL", "red": {"score": {"bridge": "10", "hybrid": "24", "final": "39", "foul": "0", "tele": "5"}, "teams": ["4003", "2246", "3656"]}}, {"blue": {"score": {"brige": "10", "tele": "21", "hybrid": "6", "final": "37", "foul": "0"}, "teams": ["123", "3617", "503"]}, "coop": "2", "type": "Q_95", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "39", "foul": "0", "tele": "7"}, "teams": ["2000", "1711", "2767"]}}, {"blue": {"score": {"brige": "20", "tele": "9", "hybrid": "12", "final": "44", "foul": "3"}, "teams": ["4294", "245", "3234"]}, "coop": "2", "type": "Q_96", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "29", "final": "79", "foul": "9", "tele": "21"}, "teams": ["3620", "3537", "67"]}}, {"blue": {"score": {"brige": "20", "tele": "15", "hybrid": "4", "final": "42", "foul": "3"}, "teams": ["904", "1718", "3601"]}, "coop": "2", "type": "Q_97", "eventKey": "2012GL", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "49", "foul": "3", "tele": "18"}, "teams": ["3618", "3568", "3322"]}}, {"blue": {"score": {"brige": "20", "tele": "3", "hybrid": "18", "final": "53", "foul": "12"}, "teams": ["830", "240", "107"]}, "coop": "0", "type": "Q_98", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "30", "final": "61", "foul": "0", "tele": "11"}, "teams": ["314", "2137", "66"]}}, {"blue": {"score": {"brige": "0", "tele": "30", "hybrid": "16", "final": "55", "foul": "9"}, "teams": ["2586", "1504", "2474"]}, "coop": "2", "type": "Q_99", "eventKey": "2012GL", "red": {"score": {"bridge": "0", "hybrid": "24", "final": "39", "foul": "0", "tele": "15"}, "teams": ["85", "141", "217"]}}, {"blue": {"score": {"brige": "20", "tele": "15", "hybrid": "30", "final": "71", "foul": "6"}, "teams": ["3546", "3572", "3098"]}, "coop": "2", "type": "Q_100", "eventKey": "2012GL", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "61", "foul": "0", "tele": "39"}, "teams": ["2834", "51", "2000"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "12", "final": "21", "foul": "0"}, "teams": ["3509", "3537", "2591"]}, "coop": "0", "type": "Q_101", "eventKey": "2012GL", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "51", "foul": "0", "tele": "29"}, "teams": ["308", "1025", "548"]}}, {"blue": {"score": {"brige": "20", "tele": "18", "hybrid": "17", "final": "55", "foul": "0"}, "teams": ["2959", "3539", "573"]}, "coop": "2", "type": "Q_102", "eventKey": "2012GL", "red": {"score": {"bridge": "10", "hybrid": "24", "final": "42", "foul": "0", "tele": "8"}, "teams": ["123", "302", "3620"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "0", "final": "15", "foul": "3"}, "teams": ["70", "2246", "503"]}, "coop": "2", "type": "Q_103", "eventKey": "2012GL", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "21", "foul": "0", "tele": "9"}, "teams": ["4294", "201", "3538"]}}, {"blue": {"score": {"brige": "20", "tele": "31", "hybrid": "30", "final": "81", "foul": "0"}, "teams": ["4003", "1918", "33"]}, "coop": "2", "type": "Q_104", "eventKey": "2012GL", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "65", "foul": "0", "tele": "43"}, "teams": ["2767", "67", "494"]}}, {"blue": {"score": {"brige": "20", "tele": "27", "hybrid": "24", "final": "71", "foul": "0"}, "teams": ["469", "2054", "3234"]}, "coop": "2", "type": "Q_105", "eventKey": "2012GL", "red": {"score": {"bridge": "10", "hybrid": "17", "final": "41", "foul": "0", "tele": "14"}, "teams": ["27", "247", "2337"]}}, {"blue": {"score": {"brige": "20", "tele": "6", "hybrid": "12", "final": "41", "foul": "3"}, "teams": ["1711", "3617", "1684"]}, "coop": "0", "type": "Q_106", "eventKey": "2012GL", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "28", "foul": "0", "tele": "6"}, "teams": ["2851", "245", "226"]}}, {"blue": {"score": {"brige": "10", "tele": "38", "hybrid": "29", "final": "80", "foul": "3"}, "teams": ["1023", "3656", "548"]}, "coop": "2", "type": "Q_107", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "22", "final": "61", "foul": "0", "tele": "19"}, "teams": ["862", "858", "2959"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "18", "final": "21", "foul": "0"}, "teams": ["3601", "141", "3572"]}, "coop": "0", "type": "Q_108", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "11", "final": "42", "foul": "0", "tele": "11"}, "teams": ["314", "1025", "70"]}}, {"blue": {"score": {"brige": "20", "tele": "3", "hybrid": "24", "final": "56", "foul": "9"}, "teams": ["66", "503", "904"]}, "coop": "2", "type": "Q_109", "eventKey": "2012GL", "red": {"score": {"bridge": "10", "hybrid": "17", "final": "35", "foul": "0", "tele": "8"}, "teams": ["85", "3537", "2246"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "14", "foul": "12"}, "teams": ["302", "3618", "27"]}, "coop": "0", "type": "Q_110", "eventKey": "2012GL", "red": {"score": {"bridge": "10", "hybrid": "28", "final": "55", "foul": "0", "tele": "17"}, "teams": ["3620", "3546", "830"]}}, {"blue": {"score": {"brige": "10", "tele": "21", "hybrid": "11", "final": "42", "foul": "0"}, "teams": ["2591", "3322", "2137"]}, "coop": "2", "type": "Q_111", "eventKey": "2012GL", "red": {"score": {"bridge": "10", "hybrid": "11", "final": "37", "foul": "3", "tele": "13"}, "teams": ["494", "3617", "573"]}}, {"blue": {"score": {"brige": "20", "tele": "39", "hybrid": "24", "final": "86", "foul": "3"}, "teams": ["67", "2054", "2337"]}, "coop": "2", "type": "Q_112", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "23", "final": "72", "foul": "0", "tele": "29"}, "teams": ["1711", "1023", "51"]}}, {"blue": {"score": {"brige": "20", "tele": "3", "hybrid": "0", "final": "23", "foul": "0"}, "teams": ["308", "3509", "247"]}, "coop": "2", "type": "Q_113", "eventKey": "2012GL", "red": {"score": {"bridge": "10", "hybrid": "24", "final": "55", "foul": "0", "tele": "21"}, "teams": ["858", "2474", "4294"]}}, {"blue": {"score": {"brige": "10", "tele": "18", "hybrid": "6", "final": "34", "foul": "0"}, "teams": ["4003", "3234", "2851"]}, "coop": "2", "type": "Q_114", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "34", "final": "82", "foul": "0", "tele": "28"}, "teams": ["3098", "469", "1504"]}}, {"blue": {"score": {"brige": "0", "tele": "26", "hybrid": "24", "final": "53", "foul": "3"}, "teams": ["2586", "3539", "3656"]}, "coop": "0", "type": "Q_115", "eventKey": "2012GL", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "48", "foul": "0", "tele": "20"}, "teams": ["1684", "201", "2767"]}}, {"blue": {"score": {"brige": "0", "tele": "15", "hybrid": "29", "final": "44", "foul": "0"}, "teams": ["240", "2834", "1918"]}, "coop": "0", "type": "Q_116", "eventKey": "2012GL", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "27", "foul": "0", "tele": "15"}, "teams": ["2000", "226", "217"]}}, {"blue": {"score": {"brige": "0", "tele": "21", "hybrid": "6", "final": "27", "foul": "0"}, "teams": ["3568", "123", "1718"]}, "coop": "2", "type": "Q_117", "eventKey": "2012GL", "red": {"score": {"bridge": "10", "hybrid": "29", "final": "63", "foul": "9", "tele": "15"}, "teams": ["862", "245", "33"]}}, {"blue": {"score": {"brige": "0", "tele": "21", "hybrid": "18", "final": "39", "foul": "0"}, "teams": ["3538", "2054", "1023"]}, "coop": "2", "type": "Q_118", "eventKey": "2012GL", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "40", "foul": "0", "tele": "18"}, "teams": ["107", "3509", "1025"]}}, {"blue": {"score": {"brige": "20", "tele": "9", "hybrid": "12", "final": "41", "foul": "0"}, "teams": ["904", "2851", "3098"]}, "coop": "2", "type": "Q_119", "eventKey": "2012GL", "red": {"score": {"bridge": "0", "hybrid": "30", "final": "48", "foul": "0", "tele": "18"}, "teams": ["573", "503", "2137"]}}, {"blue": {"score": {"brige": "10", "tele": "20", "hybrid": "33", "final": "63", "foul": "0"}, "teams": ["67", "2591", "830"]}, "coop": "2", "type": "Q_120", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "46", "foul": "0", "tele": "20"}, "teams": ["3656", "2474", "141"]}}, {"blue": {"score": {"brige": "10", "tele": "7", "hybrid": "22", "final": "39", "foul": "0"}, "teams": ["1711", "85", "314"]}, "coop": "0", "type": "Q_121", "eventKey": "2012GL", "red": {"score": {"bridge": "10", "hybrid": "22", "final": "48", "foul": "0", "tele": "16"}, "teams": ["201", "4003", "27"]}}, {"blue": {"score": {"brige": "10", "tele": "33", "hybrid": "6", "final": "61", "foul": "12"}, "teams": ["548", "247", "123"]}, "coop": "2", "type": "Q_122", "eventKey": "2012GL", "red": {"score": {"bridge": "10", "hybrid": "24", "final": "50", "foul": "0", "tele": "16"}, "teams": ["3546", "66", "1684"]}}, {"blue": {"score": {"brige": "20", "tele": "3", "hybrid": "12", "final": "38", "foul": "3"}, "teams": ["858", "240", "2246"]}, "coop": "2", "type": "Q_123", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "54", "foul": "0", "tele": "22"}, "teams": ["494", "1718", "3539"]}}, {"blue": {"score": {"brige": "0", "tele": "27", "hybrid": "6", "final": "33", "foul": "0"}, "teams": ["2959", "302", "3322"]}, "coop": "2", "type": "Q_124", "eventKey": "2012GL", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "57", "foul": "0", "tele": "29"}, "teams": ["245", "3572", "107"]}}, {"blue": {"score": {"brige": "10", "tele": "17", "hybrid": "10", "final": "37", "foul": "0"}, "teams": ["3537", "2834", "862"]}, "coop": "2", "type": "Q_125", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "48", "foul": "0", "tele": "16"}, "teams": ["3617", "2767", "70"]}}, {"blue": {"score": {"brige": "10", "tele": "41", "hybrid": "23", "final": "80", "foul": "6"}, "teams": ["217", "33", "51"]}, "coop": "2", "type": "Q_126", "eventKey": "2012GL", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "24", "foul": "0", "tele": "2"}, "teams": ["3618", "3620", "3234"]}}, {"blue": {"score": {"brige": "0", "tele": "13", "hybrid": "16", "final": "29", "foul": "0"}, "teams": ["1918", "2000", "1504"]}, "coop": "0", "type": "Q_127", "eventKey": "2012GL", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "39", "foul": "3", "tele": "18"}, "teams": ["3568", "2337", "2586"]}}, {"blue": {"score": {"brige": "20", "tele": "22", "hybrid": "18", "final": "60", "foul": "0"}, "teams": ["308", "226", "4294"]}, "coop": "2", "type": "Q_128", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "82", "foul": "21", "tele": "29"}, "teams": ["469", "3601", "3538"]}}, {"blue": {"score": {"brige": "20", "tele": "27", "hybrid": "0", "final": "50", "foul": "3"}, "teams": ["1718", "3322", "862"]}, "coop": "0", "type": "E_1", "eventKey": "2012GL", "red": {"score": {"bridge": "40", "hybrid": "16", "final": "92", "foul": "0", "tele": "36"}, "teams": ["469", "67", "830"]}}, {"blue": {"score": {"brige": "20", "tele": "27", "hybrid": "23", "final": "70", "foul": "0"}, "teams": ["3234", "4294", "2474"]}, "coop": "0", "type": "E_2", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "64", "foul": "0", "tele": "26"}, "teams": ["573", "1918", "70"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "18", "final": "27", "foul": "0"}, "teams": ["217", "2851", "51"]}, "coop": "0", "type": "E_3", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "24", "final": "68", "foul": "3", "tele": "21"}, "teams": ["245", "548", "2054"]}}, {"blue": {"score": {"brige": "0", "tele": "22", "hybrid": "12", "final": "34", "foul": "0"}, "teams": ["1023", "1684", "2337"]}, "coop": "0", "type": "E_4", "eventKey": "2012GL", "red": {"score": {"bridge": "40", "hybrid": "22", "final": "89", "foul": "9", "tele": "18"}, "teams": ["3098", "33", "2137"]}}, {"blue": {"score": {"brige": "40", "tele": "29", "hybrid": "18", "final": "90", "foul": "3"}, "teams": ["1718", "862", "3322"]}, "coop": "0", "type": "E_5", "eventKey": "2012GL", "red": {"score": {"bridge": "40", "hybrid": "18", "final": "97", "foul": "6", "tele": "33"}, "teams": ["67", "830", "469"]}}, {"blue": {"score": {"brige": "20", "tele": "12", "hybrid": "6", "final": "38", "foul": "0"}, "teams": ["4294", "3234", "2474"]}, "coop": "0", "type": "E_6", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "5", "final": "48", "foul": "6", "tele": "17"}, "teams": ["70", "1918", "573"]}}, {"blue": {"score": {"brige": "40", "tele": "24", "hybrid": "6", "final": "73", "foul": "3"}, "teams": ["51", "217", "2851"]}, "coop": "0", "type": "E_7", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "30", "final": "68", "foul": "0", "tele": "18"}, "teams": ["2054", "548", "245"]}}, {"blue": {"score": {"brige": "10", "tele": "24", "hybrid": "24", "final": "61", "foul": "3"}, "teams": ["1684", "2337", "1023"]}, "coop": "0", "type": "E_8", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "17", "final": "94", "foul": "36", "tele": "21"}, "teams": ["3098", "2137", "33"]}}, {"blue": {"score": {"brige": "0", "tele": "30", "hybrid": "6", "final": "36", "foul": "0"}, "teams": ["2474", "4294", "3234"]}, "coop": "0", "type": "E_10", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "67", "foul": "3", "tele": "26"}, "teams": ["1918", "70", "573"]}}, {"blue": {"score": {"brige": "40", "tele": "24", "hybrid": "12", "final": "76", "foul": "0"}, "teams": ["217", "51", "2851"]}, "coop": "0", "type": "E_11", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "36", "final": "83", "foul": "9", "tele": "18"}, "teams": ["2054", "245", "548"]}}, {"blue": {"score": {"brige": "20", "tele": "30", "hybrid": "12", "final": "65", "foul": "3"}, "teams": ["573", "1918", "70"]}, "coop": "0", "type": "E_13", "eventKey": "2012GL", "red": {"score": {"bridge": "40", "hybrid": "30", "final": "82", "foul": "0", "tele": "12"}, "teams": ["469", "830", "67"]}}, {"blue": {"score": {"brige": "20", "tele": "21", "hybrid": "22", "final": "66", "foul": "3"}, "teams": ["2137", "3098", "33"]}, "coop": "0", "type": "E_14", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "30", "final": "97", "foul": "18", "tele": "29"}, "teams": ["245", "548", "2054"]}}, {"blue": {"score": {"brige": "20", "tele": "29", "hybrid": "15", "final": "67", "foul": "3"}, "teams": ["573", "1918", "308"]}, "coop": "0", "type": "E_15", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "30", "final": "80", "foul": "0", "tele": "30"}, "teams": ["67", "469", "830"]}}, {"blue": {"score": {"brige": "40", "tele": "33", "hybrid": "11", "final": "84", "foul": "0"}, "teams": ["2137", "3098", "33"]}, "coop": "0", "type": "E_16", "eventKey": "2012GL", "red": {"score": {"bridge": "0", "hybrid": "30", "final": "57", "foul": "3", "tele": "24"}, "teams": ["2054", "548", "245"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "15", "final": "27", "foul": "3"}, "teams": ["3098", "2137", "33"]}, "coop": "0", "type": "E_18", "eventKey": "2012GL", "red": {"score": {"bridge": "20", "hybrid": "24", "final": "71", "foul": "0", "tele": "27"}, "teams": ["2054", "245", "548"]}}, {"blue": {"score": {"brige": "40", "tele": "16", "hybrid": "24", "final": "80", "foul": "0"}, "teams": ["2054", "245", "548"]}, "coop": "0", "type": "E_19", "eventKey": "2012GL", "red": {"score": {"bridge": "40", "hybrid": "30", "final": "111", "foul": "0", "tele": "41"}, "teams": ["830", "67", "469"]}}, {"blue": {"score": {"brige": "0", "tele": "16", "hybrid": "30", "final": "49", "foul": "3"}, "teams": ["2054", "548", "245"]}, "coop": "0", "type": "E_20", "eventKey": "2012GL", "red": {"score": {"bridge": "0", "hybrid": "24", "final": "60", "foul": "3", "tele": "33"}, "teams": ["67", "469", "830"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "10", "final": "13", "foul": "3"}, "teams": ["2439", "3880", "2445"]}, "coop": "0", "type": "Q_1", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "9", "foul": "9", "tele": "0"}, "teams": ["4374", "2441", "3306"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "0", "final": "9", "foul": "0"}, "teams": ["3837", "368", "2348"]}, "coop": "0", "type": "Q_2", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "0", "tele": "6"}, "teams": ["2460", "1920", "4253"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["1378", "2459", "3882"]}, "coop": "0", "type": "Q_3", "eventKey": "2012HI", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "32", "foul": "9", "tele": "3"}, "teams": ["3878", "2438", "4158"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2090", "2477", "3881"]}, "coop": "0", "type": "Q_4", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "24", "foul": "3", "tele": "15"}, "teams": ["3008", "359", "4270"]}}, {"blue": {"score": {"brige": "20", "tele": "4", "hybrid": "6", "final": "30", "foul": "0"}, "teams": ["3879", "2437", "2443"]}, "coop": "0", "type": "Q_5", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "4", "foul": "0", "tele": "4"}, "teams": ["2444", "3721", "2465"]}}, {"blue": {"score": {"brige": "10", "tele": "16", "hybrid": "10", "final": "36", "foul": "0"}, "teams": ["2504", "1056", "2853"]}, "coop": "0", "type": "Q_6", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["2896", "3685", "3800"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4218", "2348", "3882"]}, "coop": "0", "type": "Q_7", "eventKey": "2012HI", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "30", "foul": "3", "tele": "11"}, "teams": ["2455", "368", "3880"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3879", "3881", "2445"]}, "coop": "0", "type": "Q_8", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "14", "foul": "0", "tele": "3"}, "teams": ["3008", "3837", "2459"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "6", "final": "11", "foul": "3"}, "teams": ["3879", "3881", "2445"]}, "coop": "0", "type": "Q_8", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "8", "foul": "3", "tele": "5"}, "teams": ["3008", "3837", "2459"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4270", "4158", "2853"]}, "coop": "0", "type": "Q_9", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["1378", "2444", "2504"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "0", "final": "6", "foul": "0"}, "teams": ["2438", "2437", "4218"]}, "coop": "2", "type": "Q_10", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "9", "foul": "3", "tele": "6"}, "teams": ["2439", "3800", "3721"]}}, {"blue": {"score": {"brige": "20", "tele": "0", "hybrid": "6", "final": "26", "foul": "0"}, "teams": ["3306", "2443", "2455"]}, "coop": "0", "type": "Q_11", "eventKey": "2012HI", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "40", "foul": "9", "tele": "15"}, "teams": ["4253", "359", "4374"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "10", "final": "12", "foul": "0"}, "teams": ["3878", "1920", "2465"]}, "coop": "0", "type": "Q_12", "eventKey": "2012HI", "red": {"score": {"bridge": "10", "hybrid": "16", "final": "44", "foul": "9", "tele": "9"}, "teams": ["1056", "3685", "2090"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["2460", "2441", "2504"]}, "coop": "0", "type": "Q_13", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["2896", "2477", "3721"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["4374", "2437", "3837"]}, "coop": "2", "type": "Q_14", "eventKey": "2012HI", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "25", "foul": "0", "tele": "9"}, "teams": ["359", "3881", "2853"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "16", "final": "28", "foul": "0"}, "teams": ["1056", "3882", "4270"]}, "coop": "2", "type": "Q_15", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["3879", "2455", "2439"]}}, {"blue": {"score": {"brige": "10", "tele": "1", "hybrid": "12", "final": "26", "foul": "3"}, "teams": ["2444", "2443", "3880"]}, "coop": "0", "type": "Q_16", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "14", "final": "16", "foul": "0", "tele": "2"}, "teams": ["3306", "3878", "368"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "5", "final": "24", "foul": "3"}, "teams": ["2444", "2443", "3880"]}, "coop": "0", "type": "Q_16", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3306", "3878", "368"]}}, {"blue": {"score": {"brige": "0", "tele": "10", "hybrid": "12", "final": "22", "foul": "0"}, "teams": ["4253", "2438", "3008"]}, "coop": "0", "type": "Q_17", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "15", "foul": "3", "tele": "6"}, "teams": ["2460", "4218", "2090"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2441", "3685", "1920"]}, "coop": "0", "type": "Q_18", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "16", "final": "18", "foul": "0", "tele": "2"}, "teams": ["2465", "3800", "2445"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "5", "final": "5", "foul": "0"}, "teams": ["2896", "2459", "2348"]}, "coop": "2", "type": "Q_19", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["4158", "2477", "1378"]}}, {"blue": {"score": {"brige": "10", "tele": "14", "hybrid": "6", "final": "30", "foul": "0"}, "teams": ["4218", "3008", "2455"]}, "coop": "0", "type": "Q_20", "eventKey": "2012HI", "red": {"score": {"bridge": "10", "hybrid": "10", "final": "32", "foul": "0", "tele": "12"}, "teams": ["4374", "3721", "1056"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3800", "2504", "3881"]}, "coop": "0", "type": "Q_21", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3882", "2444", "4253"]}}, {"blue": {"score": {"brige": "0", "tele": "18", "hybrid": "6", "final": "27", "foul": "3"}, "teams": ["2438", "2441", "2090"]}, "coop": "0", "type": "Q_22", "eventKey": "2012HI", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "10", "foul": "0", "tele": "0"}, "teams": ["2437", "4158", "3306"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "27", "final": "48", "foul": "9"}, "teams": ["2465", "3837", "359"]}, "coop": "0", "type": "Q_23", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "9", "foul": "9", "tele": "0"}, "teams": ["3880", "2459", "2477"]}}, {"blue": {"score": {"brige": "0", "tele": "11", "hybrid": "5", "final": "25", "foul": "9"}, "teams": ["2439", "2460", "2348"]}, "coop": "2", "type": "Q_24", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "4", "foul": "0", "tele": "4"}, "teams": ["2853", "3879", "3685"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "5", "final": "16", "foul": "9"}, "teams": ["4270", "2443", "1378"]}, "coop": "0", "type": "Q_25", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "4", "final": "4", "foul": "0", "tele": "0"}, "teams": ["2896", "2445", "1920"]}}, {"blue": {"score": {"brige": "20", "tele": "25", "hybrid": "18", "final": "63", "foul": "0"}, "teams": ["368", "359", "4158"]}, "coop": "2", "type": "Q_26", "eventKey": "2012HI", "red": {"score": {"bridge": "10", "hybrid": "10", "final": "35", "foul": "0", "tele": "15"}, "teams": ["3878", "3881", "1056"]}}, {"blue": {"score": {"brige": "20", "tele": "16", "hybrid": "6", "final": "42", "foul": "0"}, "teams": ["2439", "2444", "3008"]}, "coop": "0", "type": "Q_27", "eventKey": "2012HI", "red": {"score": {"bridge": "10", "hybrid": "16", "final": "35", "foul": "0", "tele": "9"}, "teams": ["2504", "2348", "2465"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2477", "2445", "4253"]}, "coop": "2", "type": "Q_28", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "15", "foul": "0", "tele": "10"}, "teams": ["2437", "3880", "1378"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "5", "final": "11", "foul": "0"}, "teams": ["3837", "2438", "3879"]}, "coop": "2", "type": "Q_29", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["2441", "3878", "4270"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2460", "3721", "2455"]}, "coop": "0", "type": "Q_30", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "24", "foul": "3", "tele": "15"}, "teams": ["368", "3800", "2459"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "0", "final": "6", "foul": "0"}, "teams": ["3685", "4374", "4218"]}, "coop": "0", "type": "Q_31", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["1920", "3882", "2090"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["3306", "2896", "3880"]}, "coop": "2", "type": "Q_32", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "10", "foul": "0", "tele": "5"}, "teams": ["2443", "2853", "2465"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "6", "foul": "6"}, "teams": ["4253", "2441", "3721"]}, "coop": "0", "type": "Q_33", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "15", "final": "30", "foul": "0", "tele": "15"}, "teams": ["2444", "2445", "359"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "5", "final": "11", "foul": "0"}, "teams": ["2455", "3837", "3800"]}, "coop": "0", "type": "Q_34", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3878", "2477", "3882"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "17", "final": "26", "foul": "0"}, "teams": ["2896", "3008", "2443"]}, "coop": "2", "type": "Q_35", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "18", "foul": "0", "tele": "6"}, "teams": ["4270", "3685", "2439"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "0", "final": "6", "foul": "0"}, "teams": ["2437", "2853", "2459"]}, "coop": "2", "type": "Q_36", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "16", "final": "32", "foul": "6", "tele": "10"}, "teams": ["1056", "4218", "368"]}}, {"blue": {"score": {"brige": "10", "tele": "4", "hybrid": "0", "final": "14", "foul": "0"}, "teams": ["2090", "2504", "4374"]}, "coop": "0", "type": "Q_37", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "23", "foul": "12", "tele": "6"}, "teams": ["1378", "3879", "2460"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["3881", "1920", "4158"]}, "coop": "0", "type": "Q_38", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "8", "foul": "0", "tele": "2"}, "teams": ["2438", "3306", "2348"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4218", "2444", "2896"]}, "coop": "2", "type": "Q_39", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "6", "foul": "0", "tele": "0"}, "teams": ["3837", "2477", "2439"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "0", "final": "6", "foul": "0"}, "teams": ["3685", "2460", "2437"]}, "coop": "0", "type": "Q_40", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "12", "foul": "0", "tele": "2"}, "teams": ["2455", "1378", "2441"]}}, {"blue": {"score": {"brige": "0", "tele": "20", "hybrid": "6", "final": "26", "foul": "0"}, "teams": ["3721", "3878", "359"]}, "coop": "0", "type": "Q_41", "eventKey": "2012HI", "red": {"score": {"bridge": "10", "hybrid": "16", "final": "43", "foul": "3", "tele": "14"}, "teams": ["1056", "1920", "2348"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "4", "foul": "0"}, "teams": ["3306", "3881", "2465"]}, "coop": "0", "type": "Q_42", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "0", "tele": "6"}, "teams": ["2504", "2438", "4270"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "12", "final": "22", "foul": "0"}, "teams": ["3800", "2853", "3880"]}, "coop": "0", "type": "Q_43", "eventKey": "2012HI", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "22", "foul": "0", "tele": "6"}, "teams": ["3879", "3008", "4158"]}}, {"blue": {"score": {"brige": "10", "tele": "4", "hybrid": "0", "final": "14", "foul": "0"}, "teams": ["2459", "4253", "2090"]}, "coop": "0", "type": "Q_44", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "9", "foul": "3", "tele": "0"}, "teams": ["2445", "3882", "2443"]}}, {"blue": {"score": {"brige": "0", "tele": "18", "hybrid": "0", "final": "18", "foul": "0"}, "teams": ["368", "2438", "3685"]}, "coop": "2", "type": "Q_45", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["4374", "4270", "2444"]}}, {"blue": {"score": {"brige": "0", "tele": "10", "hybrid": "16", "final": "26", "foul": "0"}, "teams": ["3800", "3008", "1056"]}, "coop": "0", "type": "Q_46", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3306", "3837", "1378"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "6", "final": "8", "foul": "0"}, "teams": ["2460", "2445", "4158"]}, "coop": "2", "type": "Q_47", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "4", "foul": "3", "tele": "1"}, "teams": ["4218", "3881", "2443"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "12", "final": "15", "foul": "0"}, "teams": ["2090", "3880", "3878"]}, "coop": "2", "type": "Q_48", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["2504", "2437", "3721"]}}, {"blue": {"score": {"brige": "0", "tele": "14", "hybrid": "12", "final": "26", "foul": "0"}, "teams": ["2439", "359", "2459"]}, "coop": "2", "type": "Q_49", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "9", "foul": "0", "tele": "3"}, "teams": ["2853", "2441", "2348"]}}, {"blue": {"score": {"brige": "0", "tele": "15", "hybrid": "0", "final": "15", "foul": "0"}, "teams": ["1920", "3879", "368"]}, "coop": "0", "type": "Q_50", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["2465", "2477", "2455"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "4", "final": "4", "foul": "0"}, "teams": ["3882", "4374", "4158"]}, "coop": "2", "type": "Q_51", "eventKey": "2012HI", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "22", "foul": "0", "tele": "2"}, "teams": ["4253", "2896", "2437"]}}, {"blue": {"score": {"brige": "20", "tele": "12", "hybrid": "22", "final": "57", "foul": "3"}, "teams": ["2443", "1056", "2439"]}, "coop": "0", "type": "Q_52", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "12", "foul": "0", "tele": "1"}, "teams": ["3880", "2441", "3837"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "0", "final": "6", "foul": "0"}, "teams": ["2455", "2459", "2444"]}, "coop": "0", "type": "Q_53", "eventKey": "2012HI", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "46", "foul": "0", "tele": "18"}, "teams": ["3306", "2090", "3008"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "4", "final": "4", "foul": "0"}, "teams": ["3685", "2477", "2504"]}, "coop": "0", "type": "Q_54", "eventKey": "2012HI", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "43", "foul": "3", "tele": "18"}, "teams": ["359", "1920", "4218"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "4", "foul": "0"}, "teams": ["3882", "2465", "2460"]}, "coop": "0", "type": "Q_55", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "4", "final": "7", "foul": "0", "tele": "3"}, "teams": ["2445", "2348", "4374"]}}, {"blue": {"score": {"brige": "0", "tele": "15", "hybrid": "5", "final": "20", "foul": "0"}, "teams": ["368", "4253", "1378"]}, "coop": "0", "type": "Q_56", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3879", "3800", "4270"]}}, {"blue": {"score": {"brige": "20", "tele": "0", "hybrid": "0", "final": "20", "foul": "0"}, "teams": ["2853", "3878", "2896"]}, "coop": "0", "type": "Q_57", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "9", "foul": "0", "tele": "9"}, "teams": ["2438", "3721", "3881"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "16", "final": "21", "foul": "0"}, "teams": ["2465", "3008", "2441"]}, "coop": "0", "type": "Q_58", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "31", "foul": "0", "tele": "25"}, "teams": ["359", "2455", "3882"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "12", "final": "16", "foul": "3"}, "teams": ["3880", "1920", "4270"]}, "coop": "0", "type": "Q_59", "eventKey": "2012HI", "red": {"score": {"bridge": "10", "hybrid": "22", "final": "48", "foul": "0", "tele": "16"}, "teams": ["1056", "2460", "2459"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3878", "2444", "3879"]}, "coop": "0", "type": "Q_60", "eventKey": "2012HI", "red": {"score": {"bridge": "20", "hybrid": "4", "final": "24", "foul": "0", "tele": "0"}, "teams": ["2853", "4218", "3306"]}}, {"blue": {"score": {"brige": "0", "tele": "16", "hybrid": "36", "final": "52", "foul": "0"}, "teams": ["2090", "2445", "368"]}, "coop": "2", "type": "Q_61", "eventKey": "2012HI", "red": {"score": {"bridge": "20", "hybrid": "9", "final": "35", "foul": "3", "tele": "3"}, "teams": ["2439", "2896", "4158"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "5", "final": "20", "foul": "3"}, "teams": ["3721", "1378", "3685"]}, "coop": "0", "type": "Q_62", "eventKey": "2012HI", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "10", "foul": "0", "tele": "0"}, "teams": ["3881", "3837", "4253"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2348", "3800", "2477"]}, "coop": "0", "type": "Q_63", "eventKey": "2012HI", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "40", "foul": "3", "tele": "9"}, "teams": ["2443", "2438", "4374"]}}, {"blue": {"score": {"brige": "0", "tele": "21", "hybrid": "6", "final": "30", "foul": "3"}, "teams": ["2437", "368", "2441"]}, "coop": "0", "type": "Q_64", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "17", "foul": "0", "tele": "11"}, "teams": ["2504", "1920", "3008"]}}, {"blue": {"score": {"brige": "0", "tele": "25", "hybrid": "17", "final": "42", "foul": "0"}, "teams": ["1378", "359", "2090"]}, "coop": "0", "type": "Q_65", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "24", "final": "32", "foul": "0", "tele": "8"}, "teams": ["3881", "2460", "3880"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "4", "final": "4", "foul": "0"}, "teams": ["3306", "2477", "4270"]}, "coop": "0", "type": "Q_66", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "1", "foul": "0", "tele": "1"}, "teams": ["2853", "3721", "3882"]}}, {"blue": {"score": {"brige": "0", "tele": "16", "hybrid": "16", "final": "35", "foul": "3"}, "teams": ["2445", "1056", "2438"]}, "coop": "2", "type": "Q_67", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "0", "tele": "6"}, "teams": ["2504", "2455", "2896"]}}, {"blue": {"score": {"brige": "10", "tele": "4", "hybrid": "0", "final": "14", "foul": "0"}, "teams": ["2459", "4374", "3879"]}, "coop": "0", "type": "Q_68", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "6", "tele": "0"}, "teams": ["3685", "4158", "2444"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "21", "final": "31", "foul": "0"}, "teams": ["2465", "4218", "2439"]}, "coop": "0", "type": "Q_69", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3800", "3878", "4253"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "6", "final": "9", "foul": "0"}, "teams": ["2443", "3837", "2504"]}, "coop": "0", "type": "Q_70", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "29", "foul": "0", "tele": "11"}, "teams": ["2437", "2348", "2090"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "17", "final": "22", "foul": "0"}, "teams": ["2438", "2896", "1378"]}, "coop": "0", "type": "Q_71", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "17", "final": "29", "foul": "3", "tele": "9"}, "teams": ["3879", "359", "3880"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["1920", "2853", "2444"]}, "coop": "0", "type": "Q_72", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "25", "foul": "9", "tele": "4"}, "teams": ["2445", "3878", "2455"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "5", "final": "5", "foul": "0"}, "teams": ["3837", "4158", "3721"]}, "coop": "0", "type": "Q_73", "eventKey": "2012HI", "red": {"score": {"bridge": "10", "hybrid": "17", "final": "33", "foul": "0", "tele": "6"}, "teams": ["2465", "4374", "368"]}}, {"blue": {"score": {"brige": "10", "tele": "5", "hybrid": "6", "final": "21", "foul": "0"}, "teams": ["3881", "4270", "2348"]}, "coop": "0", "type": "Q_74", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3800", "2441", "4218"]}}, {"blue": {"score": {"brige": "10", "tele": "16", "hybrid": "10", "final": "36", "foul": "0"}, "teams": ["3306", "4253", "1056"]}, "coop": "0", "type": "Q_75", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "12", "foul": "0", "tele": "12"}, "teams": ["3008", "2477", "2460"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "5", "final": "5", "foul": "0"}, "teams": ["2439", "2437", "3882"]}, "coop": "2", "type": "Q_76", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "13", "foul": "0", "tele": "7"}, "teams": ["3685", "2443", "2459"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2896", "4270", "4158"]}, "coop": "0", "type": "E_1", "eventKey": "2012HI", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "62", "foul": "12", "tele": "18"}, "teams": ["2439", "359", "4218"]}}, {"blue": {"score": {"brige": "10", "tele": "19", "hybrid": "24", "final": "53", "foul": "0"}, "teams": ["2455", "2438", "3008"]}, "coop": "0", "type": "E_2", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "9", "final": "17", "foul": "0", "tele": "8"}, "teams": ["2504", "2348", "2445"]}}, {"blue": {"score": {"brige": "10", "tele": "14", "hybrid": "6", "final": "30", "foul": "0"}, "teams": ["2460", "3880", "2437"]}, "coop": "0", "type": "E_3", "eventKey": "2012HI", "red": {"score": {"bridge": "20", "hybrid": "16", "final": "51", "foul": "0", "tele": "15"}, "teams": ["2443", "3882", "1056"]}}, {"blue": {"score": {"brige": "20", "tele": "0", "hybrid": "15", "final": "35", "foul": "0"}, "teams": ["1378", "2459", "2465"]}, "coop": "0", "type": "E_4", "eventKey": "2012HI", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "46", "foul": "3", "tele": "21"}, "teams": ["368", "3881", "2090"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4270", "2896", "4158"]}, "coop": "0", "type": "E_5", "eventKey": "2012HI", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "68", "foul": "0", "tele": "30"}, "teams": ["2439", "4218", "359"]}}, {"blue": {"score": {"brige": "0", "tele": "16", "hybrid": "12", "final": "31", "foul": "3"}, "teams": ["3008", "2455", "2438"]}, "coop": "0", "type": "E_6", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "18", "foul": "0", "tele": "6"}, "teams": ["2445", "2348", "2504"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "6", "foul": "0"}, "teams": ["2437", "2460", "3880"]}, "coop": "0", "type": "E_7", "eventKey": "2012HI", "red": {"score": {"bridge": "10", "hybrid": "16", "final": "28", "foul": "0", "tele": "2"}, "teams": ["2443", "3882", "1056"]}}, {"blue": {"score": {"brige": "20", "tele": "14", "hybrid": "10", "final": "44", "foul": "0"}, "teams": ["2465", "1378", "2459"]}, "coop": "0", "type": "E_8", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "30", "foul": "0", "tele": "18"}, "teams": ["2090", "3881", "368"]}}, {"blue": {"score": {"brige": "20", "tele": "11", "hybrid": "14", "final": "45", "foul": "0"}, "teams": ["2459", "1378", "2465"]}, "coop": "0", "type": "E_12", "eventKey": "2012HI", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "52", "foul": "0", "tele": "20"}, "teams": ["2090", "3881", "368"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "12", "final": "18", "foul": "0"}, "teams": ["2438", "2455", "3008"]}, "coop": "0", "type": "E_13", "eventKey": "2012HI", "red": {"score": {"bridge": "20", "hybrid": "17", "final": "70", "foul": "0", "tele": "33"}, "teams": ["4218", "2439", "359"]}}, {"blue": {"score": {"brige": "10", "tele": "23", "hybrid": "12", "final": "45", "foul": "0"}, "teams": ["3881", "2090", "368"]}, "coop": "0", "type": "E_14", "eventKey": "2012HI", "red": {"score": {"bridge": "10", "hybrid": "16", "final": "42", "foul": "0", "tele": "16"}, "teams": ["3882", "2443", "1056"]}}, {"blue": {"score": {"brige": "10", "tele": "13", "hybrid": "12", "final": "35", "foul": "0"}, "teams": ["3008", "2438", "2455"]}, "coop": "0", "type": "E_15", "eventKey": "2012HI", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "61", "foul": "0", "tele": "35"}, "teams": ["2439", "4218", "359"]}}, {"blue": {"score": {"brige": "20", "tele": "6", "hybrid": "0", "final": "29", "foul": "3"}, "teams": ["368", "3881", "2090"]}, "coop": "0", "type": "E_16", "eventKey": "2012HI", "red": {"score": {"bridge": "20", "hybrid": "22", "final": "53", "foul": "0", "tele": "11"}, "teams": ["2443", "1056", "3882"]}}, {"blue": {"score": {"brige": "20", "tele": "33", "hybrid": "11", "final": "64", "foul": "0"}, "teams": ["2090", "368", "3881"]}, "coop": "0", "type": "E_18", "eventKey": "2012HI", "red": {"score": {"bridge": "20", "hybrid": "16", "final": "49", "foul": "0", "tele": "13"}, "teams": ["1056", "3882", "2443"]}}, {"blue": {"score": {"brige": "20", "tele": "24", "hybrid": "6", "final": "50", "foul": "0"}, "teams": ["3881", "2090", "368"]}, "coop": "0", "type": "E_19", "eventKey": "2012HI", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "46", "foul": "3", "tele": "23"}, "teams": ["2439", "4218", "359"]}}, {"blue": {"score": {"brige": "20", "tele": "24", "hybrid": "12", "final": "56", "foul": "0"}, "teams": ["2090", "368", "3881"]}, "coop": "0", "type": "E_20", "eventKey": "2012HI", "red": {"score": {"bridge": "20", "hybrid": "17", "final": "68", "foul": "0", "tele": "31"}, "teams": ["359", "4218", "2439"]}}, {"blue": {"score": {"brige": "20", "tele": "9", "hybrid": "12", "final": "41", "foul": "0"}, "teams": ["368", "3881", "2090"]}, "coop": "0", "type": "E_21", "eventKey": "2012HI", "red": {"score": {"bridge": "0", "hybrid": "24", "final": "48", "foul": "3", "tele": "21"}, "teams": ["359", "2439", "4218"]}}, {"blue": {"score": {"brige": "0", "tele": "16", "hybrid": "12", "final": "28", "foul": "0"}, "teams": ["16", "2136", "4212"]}, "coop": "2", "type": "Q_1", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "3", "tele": "0"}, "teams": ["4081", "2803", "4324"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2462", "3695", "3186"]}, "coop": "1", "type": "Q_2", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "8", "foul": "0", "tele": "2"}, "teams": ["148", "3928", "1850"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4314", "101", "1781"]}, "coop": "0", "type": "Q_3", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "4", "final": "4", "foul": "0", "tele": "0"}, "teams": ["3067", "2709", "3942"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "8", "final": "12", "foul": "0"}, "teams": ["3177", "2338", "2781"]}, "coop": "0", "type": "Q_4", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["3110", "4213", "4037"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3177", "2338", "2781"]}, "coop": "0", "type": "Q_4", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "6", "tele": "0"}, "teams": ["3110", "4213", "4037"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "3", "foul": "0"}, "teams": ["4302", "2022", "3936"]}, "coop": "0", "type": "Q_5", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "8", "foul": "0", "tele": "8"}, "teams": ["3061", "4292", "4129"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "12", "final": "15", "foul": "0"}, "teams": ["4302", "2022", "3936"]}, "coop": "0", "type": "Q_5", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "0", "tele": "6"}, "teams": ["3061", "4292", "4129"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "24", "final": "36", "foul": "3"}, "teams": ["1710", "3595", "1625"]}, "coop": "0", "type": "Q_6", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "26", "foul": "0", "tele": "14"}, "teams": ["3135", "111", "3994"]}}, {"blue": {"score": {"brige": "10", "tele": "15", "hybrid": "11", "final": "36", "foul": "0"}, "teams": ["1710", "3595", "1625"]}, "coop": "0", "type": "Q_6", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3135", "111", "3994"]}}, {"blue": {"score": {"brige": "10", "tele": "1", "hybrid": "0", "final": "11", "foul": "0"}, "teams": ["2151", "4241", "4096"]}, "coop": "0", "type": "Q_7", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "24", "foul": "0", "tele": "12"}, "teams": ["71", "2725", "2358"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["648", "2704", "3734"]}, "coop": "0", "type": "Q_8", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["1739", "3488", "2949"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "5", "final": "13", "foul": "0"}, "teams": ["3177", "3061", "4081"]}, "coop": "0", "type": "Q_9", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "7", "foul": "0", "tele": "1"}, "teams": ["3494", "2803", "2462"]}}, {"blue": {"score": {"brige": "0", "tele": "7", "hybrid": "24", "final": "31", "foul": "0"}, "teams": ["111", "3936", "3067"]}, "coop": "0", "type": "Q_10", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "29", "foul": "27", "tele": "2"}, "teams": ["1850", "3994", "2136"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "11", "final": "23", "foul": "0"}, "teams": ["101", "2358", "4241"]}, "coop": "0", "type": "Q_11", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["3595", "2022", "3186"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "3", "foul": "0"}, "teams": ["1781", "3488", "3942"]}, "coop": "0", "type": "Q_12", "eventKey": "2012IL", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "36", "foul": "0", "tele": "26"}, "teams": ["148", "4212", "2338"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "0", "final": "12", "foul": "0"}, "teams": ["3135", "4096", "648"]}, "coop": "2", "type": "Q_13", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "19", "final": "31", "foul": "0", "tele": "12"}, "teams": ["2781", "71", "3494"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "6", "final": "9", "foul": "0"}, "teams": ["4129", "2949", "1710"]}, "coop": "0", "type": "Q_14", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "12", "foul": "12", "tele": "0"}, "teams": ["3695", "3110", "4314"]}}, {"blue": {"score": {"brige": "0", "tele": "15", "hybrid": "6", "final": "21", "foul": "0"}, "teams": ["4213", "16", "2709"]}, "coop": "0", "type": "Q_15", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "0", "tele": "6"}, "teams": ["1625", "2725", "3734"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "11", "final": "13", "foul": "0"}, "teams": ["2151", "4324", "3928"]}, "coop": "0", "type": "Q_16", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["2704", "4292", "4302"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["4037", "4241", "3488"]}, "coop": "0", "type": "Q_17", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "18", "foul": "0", "tele": "8"}, "teams": ["1739", "3061", "2136"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["3994", "2803", "3067"]}, "coop": "0", "type": "Q_18", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["4096", "2022", "3942"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "12", "final": "24", "foul": "0"}, "teams": ["1625", "4314", "4129"]}, "coop": "2", "type": "Q_19", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "42", "foul": "3", "tele": "21"}, "teams": ["16", "3494", "2338"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "6", "final": "9", "foul": "0"}, "teams": ["2358", "3177", "3928"]}, "coop": "2", "type": "Q_20", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "24", "foul": "0", "tele": "6"}, "teams": ["2781", "1710", "148"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["3595", "2709", "648"]}, "coop": "0", "type": "Q_21", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "1", "foul": "0", "tele": "1"}, "teams": ["4324", "4213", "2704"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "6", "final": "10", "foul": "0"}, "teams": ["2462", "3110", "71"]}, "coop": "0", "type": "Q_22", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "3", "tele": "3"}, "teams": ["4037", "3186", "4292"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "12", "foul": "9"}, "teams": ["1739", "1850", "101"]}, "coop": "0", "type": "Q_23", "eventKey": "2012IL", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "16", "foul": "0", "tele": "6"}, "teams": ["4212", "2151", "3135"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "6", "foul": "0"}, "teams": ["3734", "3695", "1781"]}, "coop": "2", "type": "Q_24", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "16", "foul": "0", "tele": "4"}, "teams": ["2725", "4081", "111"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "5", "final": "18", "foul": "0"}, "teams": ["4302", "4096", "2338"]}, "coop": "0", "type": "Q_25", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "23", "final": "26", "foul": "0", "tele": "3"}, "teams": ["2949", "3936", "2709"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "9", "foul": "3"}, "teams": ["3110", "4241", "3494"]}, "coop": "0", "type": "Q_26", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "17", "final": "38", "foul": "0", "tele": "21"}, "teams": ["3067", "3488", "16"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "3", "foul": "0"}, "teams": ["4324", "2022", "4314"]}, "coop": "0", "type": "Q_27", "eventKey": "2012IL", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "10", "foul": "0", "tele": "0"}, "teams": ["1850", "3135", "4037"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "17", "final": "26", "foul": "0"}, "teams": ["1710", "111", "3061"]}, "coop": "0", "type": "Q_28", "eventKey": "2012IL", "red": {"score": {"bridge": "10", "hybrid": "5", "final": "17", "foul": "0", "tele": "2"}, "teams": ["3186", "1781", "2151"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3942", "2725", "3177"]}, "coop": "2", "type": "Q_29", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "27", "foul": "0", "tele": "9"}, "teams": ["3595", "3928", "3936"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "6", "final": "14", "foul": "0"}, "teams": ["4213", "2949", "3994"]}, "coop": "2", "type": "Q_30", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "17", "final": "26", "foul": "3", "tele": "6"}, "teams": ["71", "2803", "148"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["4212", "1739", "3734"]}, "coop": "2", "type": "Q_31", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "17", "final": "23", "foul": "0", "tele": "6"}, "teams": ["2358", "4292", "3695"]}}, {"blue": {"score": {"brige": "0", "tele": "21", "hybrid": "0", "final": "21", "foul": "0"}, "teams": ["1625", "2781", "2704"]}, "coop": "0", "type": "Q_32", "eventKey": "2012IL", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "24", "foul": "0", "tele": "4"}, "teams": ["2136", "2462", "4302"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "0", "final": "6", "foul": "0"}, "teams": ["648", "4129", "2338"]}, "coop": "0", "type": "Q_33", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "8", "foul": "3", "tele": "0"}, "teams": ["4081", "101", "3067"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3177", "1850", "4324"]}, "coop": "2", "type": "Q_34", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["2949", "3942", "4241"]}}, {"blue": {"score": {"brige": "0", "tele": "7", "hybrid": "12", "final": "19", "foul": "0"}, "teams": ["2803", "3110", "3928"]}, "coop": "0", "type": "Q_35", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "17", "final": "23", "foul": "0", "tele": "6"}, "teams": ["111", "3494", "2151"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["2022", "1739", "3994"]}, "coop": "0", "type": "Q_36", "eventKey": "2012IL", "red": {"score": {"bridge": "10", "hybrid": "11", "final": "37", "foul": "0", "tele": "16"}, "teams": ["3061", "1781", "2709"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "8", "final": "18", "foul": "0"}, "teams": ["2781", "3936", "3734"]}, "coop": "0", "type": "Q_37", "eventKey": "2012IL", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "28", "foul": "0", "tele": "6"}, "teams": ["3186", "4314", "71"]}}, {"blue": {"score": {"brige": "0", "tele": "21", "hybrid": "6", "final": "27", "foul": "0"}, "teams": ["148", "4292", "2136"]}, "coop": "2", "type": "Q_38", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "17", "final": "56", "foul": "9", "tele": "30"}, "teams": ["16", "3135", "101"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "6", "final": "14", "foul": "0"}, "teams": ["2704", "2358", "3595"]}, "coop": "0", "type": "Q_39", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["4081", "4037", "4129"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "6", "foul": "0"}, "teams": ["3695", "1710", "2725"]}, "coop": "2", "type": "Q_40", "eventKey": "2012IL", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "31", "foul": "0", "tele": "15"}, "teams": ["1625", "4302", "648"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "6", "foul": "6"}, "teams": ["2462", "3488", "2022"]}, "coop": "0", "type": "Q_41", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "17", "foul": "9", "tele": "8"}, "teams": ["4212", "4213", "4096"]}}, {"blue": {"score": {"brige": "10", "tele": "12", "hybrid": "12", "final": "34", "foul": "0"}, "teams": ["2709", "2781", "111"]}, "coop": "2", "type": "Q_42", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "21", "final": "24", "foul": "0", "tele": "3"}, "teams": ["4292", "3067", "71"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "6", "final": "19", "foul": "0"}, "teams": ["3135", "3936", "2338"]}, "coop": "0", "type": "Q_43", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "12", "foul": "3", "tele": "3"}, "teams": ["4241", "3928", "3734"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "5", "final": "15", "foul": "0"}, "teams": ["2704", "3994", "101"]}, "coop": "0", "type": "Q_44", "eventKey": "2012IL", "red": {"score": {"bridge": "10", "hybrid": "5", "final": "21", "foul": "0", "tele": "6"}, "teams": ["3494", "3695", "3177"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "16", "final": "21", "foul": "0"}, "teams": ["3061", "2803", "16"]}, "coop": "0", "type": "Q_46", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "17", "foul": "0", "tele": "11"}, "teams": ["1850", "648", "2358"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "21", "foul": "18"}, "teams": ["3488", "4212", "3186"]}, "coop": "0", "type": "Q_47", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "4", "final": "4", "foul": "0", "tele": "0"}, "teams": ["2725", "4302", "4314"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "0", "final": "1", "foul": "0"}, "teams": ["2136", "4213", "4081"]}, "coop": "0", "type": "Q_48", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3110", "2151", "3942"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "6", "final": "15", "foul": "0"}, "teams": ["4129", "2462", "148"]}, "coop": "2", "type": "Q_49", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["1710", "1739", "4324"]}}, {"blue": {"score": {"brige": "20", "tele": "15", "hybrid": "6", "final": "41", "foul": "0"}, "teams": ["2781", "16", "1781"]}, "coop": "2", "type": "Q_50", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "15", "foul": "0", "tele": "3"}, "teams": ["3695", "2704", "3936"]}}, {"blue": {"score": {"brige": "0", "tele": "17", "hybrid": "0", "final": "17", "foul": "0"}, "teams": ["71", "111", "4037"]}, "coop": "0", "type": "Q_51", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "10", "foul": "0", "tele": "0"}, "teams": ["3488", "2725", "101"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "0", "final": "13", "foul": "0"}, "teams": ["3110", "4212", "648"]}, "coop": "0", "type": "Q_52", "eventKey": "2012IL", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "13", "foul": "0", "tele": "3"}, "teams": ["3994", "3734", "3595"]}}, {"blue": {"score": {"brige": "0", "tele": "16", "hybrid": "12", "final": "37", "foul": "9"}, "teams": ["4292", "1625", "2709"]}, "coop": "0", "type": "Q_53", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["4241", "3177", "2803"]}}, {"blue": {"score": {"brige": "20", "tele": "14", "hybrid": "12", "final": "46", "foul": "0"}, "teams": ["3067", "4213", "148"]}, "coop": "2", "type": "Q_54", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "12", "foul": "0", "tele": "12"}, "teams": ["4324", "4096", "3061"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4314", "1850", "4081"]}, "coop": "2", "type": "Q_55", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "19", "foul": "0", "tele": "9"}, "teams": ["3928", "1739", "4302"]}}, {"blue": {"score": {"brige": "10", "tele": "11", "hybrid": "11", "final": "32", "foul": "0"}, "teams": ["2358", "3494", "3186"]}, "coop": "2", "type": "Q_56", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "12", "foul": "0", "tele": "6"}, "teams": ["2136", "2949", "2338"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "3", "foul": "0"}, "teams": ["2151", "4129", "2022"]}, "coop": "0", "type": "Q_57", "eventKey": "2012IL", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "10", "foul": "0", "tele": "0"}, "teams": ["3135", "2462", "3942"]}}, {"blue": {"score": {"brige": "10", "tele": "13", "hybrid": "22", "final": "45", "foul": "0"}, "teams": ["3061", "71", "4212"]}, "coop": "0", "type": "Q_58", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["1710", "2704", "3110"]}}, {"blue": {"score": {"brige": "10", "tele": "9", "hybrid": "12", "final": "31", "foul": "0"}, "teams": ["4292", "4314", "111"]}, "coop": "2", "type": "Q_59", "eventKey": "2012IL", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "24", "foul": "0", "tele": "14"}, "teams": ["4081", "148", "648"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "6", "final": "15", "foul": "0"}, "teams": ["1781", "4213", "2358"]}, "coop": "0", "type": "Q_60", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "8", "foul": "0", "tele": "2"}, "teams": ["1850", "3494", "3936"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "3", "foul": "0"}, "teams": ["3942", "3186", "1739"]}, "coop": "2", "type": "Q_61", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "17", "final": "30", "foul": "0", "tele": "13"}, "teams": ["1625", "16", "3177"]}}, {"blue": {"score": {"brige": "10", "tele": "5", "hybrid": "11", "final": "26", "foul": "0"}, "teams": ["2022", "2949", "2803"]}, "coop": "2", "type": "Q_62", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "8", "final": "8", "foul": "0", "tele": "0"}, "teams": ["3488", "2781", "3135"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "5", "final": "18", "foul": "0"}, "teams": ["2151", "3994", "3695"]}, "coop": "0", "type": "Q_63", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "5", "foul": "0", "tele": "5"}, "teams": ["4037", "4324", "2338"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "6", "final": "9", "foul": "0"}, "teams": ["2136", "4241", "2709"]}, "coop": "0", "type": "Q_64", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "24", "final": "30", "foul": "0", "tele": "6"}, "teams": ["3928", "4096", "1710"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "4", "final": "6", "foul": "0"}, "teams": ["3067", "3595", "4302"]}, "coop": "0", "type": "Q_65", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["101", "3734", "2462"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "10", "final": "16", "foul": "0"}, "teams": ["2725", "148", "1739"]}, "coop": "2", "type": "Q_66", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "8", "final": "8", "foul": "0", "tele": "0"}, "teams": ["4129", "2781", "3110"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "10", "final": "14", "foul": "0"}, "teams": ["3695", "2338", "1850"]}, "coop": "2", "type": "Q_67", "eventKey": "2012IL", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "31", "foul": "0", "tele": "15"}, "teams": ["71", "2022", "648"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "24", "final": "36", "foul": "3"}, "teams": ["16", "111", "4324"]}, "coop": "2", "type": "Q_68", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3488", "3177", "4096"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "16", "final": "32", "foul": "0"}, "teams": ["3067", "3928", "2949"]}, "coop": "2", "type": "Q_69", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "10", "foul": "0", "tele": "10"}, "teams": ["4037", "2151", "3061"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2709", "2725", "3994"]}, "coop": "0", "type": "Q_70", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "9", "foul": "0", "tele": "9"}, "teams": ["4314", "2358", "2462"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "0", "final": "1", "foul": "0"}, "teams": ["4292", "3734", "4213"]}, "coop": "0", "type": "Q_71", "eventKey": "2012IL", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "10", "foul": "0", "tele": "0"}, "teams": ["2136", "1781", "4129"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "5", "final": "17", "foul": "0"}, "teams": ["4212", "3494", "4081"]}, "coop": "2", "type": "Q_72", "eventKey": "2012IL", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "19", "foul": "3", "tele": "0"}, "teams": ["3936", "4241", "3186"]}}, {"blue": {"score": {"brige": "10", "tele": "9", "hybrid": "6", "final": "25", "foul": "0"}, "teams": ["3135", "1710", "4302"]}, "coop": "0", "type": "Q_73", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "12", "foul": "12", "tele": "0"}, "teams": ["2803", "2704", "3942"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "4", "final": "12", "foul": "0"}, "teams": ["1625", "1850", "3110"]}, "coop": "2", "type": "Q_74", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "4", "final": "8", "foul": "0", "tele": "4"}, "teams": ["101", "3595", "4096"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3695", "3488", "2136"]}, "coop": "2", "type": "Q_75", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "23", "final": "25", "foul": "0", "tele": "2"}, "teams": ["2358", "2709", "2151"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "6", "final": "22", "foul": "0"}, "teams": ["2022", "2725", "3494"]}, "coop": "2", "type": "Q_76", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "20", "foul": "0", "tele": "10"}, "teams": ["4324", "3734", "148"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["648", "4037", "2462"]}, "coop": "2", "type": "Q_77", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "29", "foul": "3", "tele": "14"}, "teams": ["3936", "16", "3942"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "18", "final": "34", "foul": "0"}, "teams": ["2781", "2949", "3061"]}, "coop": "2", "type": "Q_78", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "14", "foul": "0", "tele": "9"}, "teams": ["4212", "101", "1625"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2704", "4241", "4314"]}, "coop": "2", "type": "Q_79", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "21", "foul": "0", "tele": "9"}, "teams": ["2803", "111", "4213"]}}, {"blue": {"score": {"brige": "10", "tele": "15", "hybrid": "12", "final": "40", "foul": "3"}, "teams": ["3135", "3177", "71"]}, "coop": "0", "type": "Q_80", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "16", "final": "18", "foul": "0", "tele": "2"}, "teams": ["4081", "4302", "1781"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "6", "final": "7", "foul": "0"}, "teams": ["1739", "3595", "4292"]}, "coop": "0", "type": "Q_81", "eventKey": "2012IL", "red": {"score": {"bridge": "10", "hybrid": "11", "final": "39", "foul": "3", "tele": "15"}, "teams": ["1710", "2338", "3067"]}}, {"blue": {"score": {"brige": "10", "tele": "15", "hybrid": "22", "final": "47", "foul": "0"}, "teams": ["3928", "3186", "1625"]}, "coop": "2", "type": "Q_82", "eventKey": "2012IL", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "12", "foul": "0", "tele": "2"}, "teams": ["4129", "3994", "3488"]}}, {"blue": {"score": {"brige": "10", "tele": "8", "hybrid": "5", "final": "23", "foul": "0"}, "teams": ["3061", "3942", "3734"]}, "coop": "2", "type": "Q_83", "eventKey": "2012IL", "red": {"score": {"bridge": "10", "hybrid": "8", "final": "18", "foul": "0", "tele": "0"}, "teams": ["4096", "3695", "2781"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "12", "final": "24", "foul": "0"}, "teams": ["148", "3494", "4037"]}, "coop": "0", "type": "Q_84", "eventKey": "2012IL", "red": {"score": {"bridge": "10", "hybrid": "4", "final": "14", "foul": "0", "tele": "0"}, "teams": ["2709", "4212", "4302"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "12", "final": "21", "foul": "0"}, "teams": ["2136", "71", "2151"]}, "coop": "0", "type": "Q_85", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "6", "tele": "0"}, "teams": ["4314", "3177", "3595"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "9", "foul": "9"}, "teams": ["2704", "1850", "2725"]}, "coop": "0", "type": "Q_86", "eventKey": "2012IL", "red": {"score": {"bridge": "10", "hybrid": "10", "final": "22", "foul": "0", "tele": "2"}, "teams": ["3994", "2338", "4292"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "6", "final": "19", "foul": "0"}, "teams": ["4324", "3067", "3135"]}, "coop": "0", "type": "Q_87", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "23", "foul": "0", "tele": "11"}, "teams": ["2358", "3936", "3110"]}}, {"blue": {"score": {"brige": "20", "tele": "7", "hybrid": "12", "final": "39", "foul": "0"}, "teams": ["2462", "2949", "1781"]}, "coop": "0", "type": "Q_88", "eventKey": "2012IL", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "34", "foul": "0", "tele": "12"}, "teams": ["111", "648", "4241"]}}, {"blue": {"score": {"brige": "0", "tele": "21", "hybrid": "12", "final": "33", "foul": "0"}, "teams": ["16", "3928", "4081"]}, "coop": "0", "type": "Q_89", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "1", "foul": "0", "tele": "1"}, "teams": ["4213", "1710", "2022"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["1739", "2803", "4096"]}, "coop": "2", "type": "Q_90", "eventKey": "2012IL", "red": {"score": {"bridge": "10", "hybrid": "10", "final": "20", "foul": "0", "tele": "0"}, "teams": ["101", "4129", "3186"]}}, {"blue": {"score": {"brige": "20", "tele": "0", "hybrid": "4", "final": "27", "foul": "3"}, "teams": ["3494", "3695", "4212"]}, "coop": "0", "type": "E_1", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "17", "final": "36", "foul": "0", "tele": "19"}, "teams": ["2022", "16", "148"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "12", "final": "15", "foul": "0"}, "teams": ["3928", "3110", "648"]}, "coop": "0", "type": "E_2", "eventKey": "2012IL", "red": {"score": {"bridge": "20", "hybrid": "8", "final": "45", "foul": "6", "tele": "11"}, "teams": ["2338", "2709", "2781"]}}, {"blue": {"score": {"brige": "20", "tele": "12", "hybrid": "10", "final": "42", "foul": "0"}, "teams": ["1781", "1710", "3061"]}, "coop": "0", "type": "E_3", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "36", "foul": "12", "tele": "6"}, "teams": ["3135", "1625", "2949"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "6", "final": "15", "foul": "0"}, "teams": ["4096", "2358", "3067"]}, "coop": "0", "type": "E_4", "eventKey": "2012IL", "red": {"score": {"bridge": "20", "hybrid": "24", "final": "65", "foul": "0", "tele": "21"}, "teams": ["71", "2151", "111"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "6", "final": "10", "foul": "0"}, "teams": ["4212", "3695", "3494"]}, "coop": "0", "type": "E_5", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "16", "final": "38", "foul": "0", "tele": "22"}, "teams": ["148", "16", "2022"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "12", "final": "14", "foul": "0"}, "teams": ["3110", "648", "3928"]}, "coop": "0", "type": "E_6", "eventKey": "2012IL", "red": {"score": {"bridge": "10", "hybrid": "24", "final": "36", "foul": "0", "tele": "2"}, "teams": ["2338", "2781", "2709"]}}, {"blue": {"score": {"brige": "10", "tele": "11", "hybrid": "17", "final": "38", "foul": "0"}, "teams": ["1781", "1710", "3061"]}, "coop": "0", "type": "E_7", "eventKey": "2012IL", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "37", "foul": "0", "tele": "15"}, "teams": ["2949", "1625", "3135"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "0", "final": "19", "foul": "3"}, "teams": ["3067", "2358", "4096"]}, "coop": "0", "type": "E_8", "eventKey": "2012IL", "red": {"score": {"bridge": "10", "hybrid": "30", "final": "55", "foul": "0", "tele": "15"}, "teams": ["71", "111", "2151"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "19", "final": "19", "foul": "0"}, "teams": ["2709", "2338", "2781"]}, "coop": "0", "type": "E_13", "eventKey": "2012IL", "red": {"score": {"bridge": "20", "hybrid": "22", "final": "59", "foul": "0", "tele": "17"}, "teams": ["148", "16", "2022"]}}, {"blue": {"score": {"brige": "20", "tele": "21", "hybrid": "12", "final": "53", "foul": "0"}, "teams": ["71", "111", "2151"]}, "coop": "0", "type": "E_14", "eventKey": "2012IL", "red": {"score": {"bridge": "0", "hybrid": "22", "final": "35", "foul": "3", "tele": "10"}, "teams": ["1710", "1781", "3061"]}}, {"blue": {"score": {"brige": "20", "tele": "12", "hybrid": "13", "final": "48", "foul": "3"}, "teams": ["2709", "2338", "2781"]}, "coop": "0", "type": "E_15", "eventKey": "2012IL", "red": {"score": {"bridge": "20", "hybrid": "22", "final": "75", "foul": "6", "tele": "27"}, "teams": ["148", "16", "2022"]}}, {"blue": {"score": {"brige": "0", "tele": "26", "hybrid": "18", "final": "44", "foul": "0"}, "teams": ["2151", "71", "111"]}, "coop": "0", "type": "E_16", "eventKey": "2012IL", "red": {"score": {"bridge": "10", "hybrid": "16", "final": "38", "foul": "0", "tele": "12"}, "teams": ["1710", "1781", "3061"]}}, {"blue": {"score": {"brige": "10", "tele": "32", "hybrid": "18", "final": "60", "foul": "0"}, "teams": ["2151", "71", "111"]}, "coop": "0", "type": "E_19", "eventKey": "2012IL", "red": {"score": {"bridge": "20", "hybrid": "16", "final": "76", "foul": "0", "tele": "40"}, "teams": ["16", "148", "2022"]}}, {"blue": {"score": {"brige": "0", "tele": "26", "hybrid": "18", "final": "44", "foul": "0"}, "teams": ["111", "71", "2151"]}, "coop": "0", "type": "E_20", "eventKey": "2012IL", "red": {"score": {"bridge": "20", "hybrid": "22", "final": "76", "foul": "0", "tele": "34"}, "teams": ["16", "2022", "148"]}}, {"blue": {"score": {"brige": "20", "tele": "5", "hybrid": "6", "final": "31", "foul": "0"}, "teams": ["1732", "292", "4028"]}, "coop": "0", "type": "Q_1", "eventKey": "2012IN", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "12", "foul": "0", "tele": "2"}, "teams": ["4103", "4058", "1646"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3814", "461", "4070"]}, "coop": "0", "type": "Q_2", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "4", "foul": "0", "tele": "4"}, "teams": ["4272", "2197", "1501"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["2909", "3865", "135"]}, "coop": "0", "type": "Q_3", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "9", "foul": "0", "tele": "9"}, "teams": ["2081", "45", "4234"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2171", "4008", "1741"]}, "coop": "0", "type": "Q_4", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3559", "3147", "1760"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "4", "foul": "0"}, "teams": ["234", "1747", "1720"]}, "coop": "0", "type": "Q_5", "eventKey": "2012IN", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "18", "foul": "0", "tele": "2"}, "teams": ["1529", "3487", "1018"]}}, {"blue": {"score": {"brige": "0", "tele": "24", "hybrid": "0", "final": "24", "foul": "0"}, "teams": ["3565", "868", "3947"]}, "coop": "2", "type": "Q_6", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "17", "foul": "0", "tele": "11"}, "teams": ["3940", "4211", "1756"]}}, {"blue": {"score": {"brige": "0", "tele": "15", "hybrid": "0", "final": "15", "foul": "0"}, "teams": ["2867", "829", "2197"]}, "coop": "2", "type": "Q_7", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "5", "foul": "0", "tele": "0"}, "teams": ["1024", "3176", "3147"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "11", "final": "24", "foul": "0"}, "teams": ["1720", "292", "4103"]}, "coop": "2", "type": "Q_8", "eventKey": "2012IN", "red": {"score": {"bridge": "20", "hybrid": "4", "final": "39", "foul": "9", "tele": "6"}, "teams": ["135", "1501", "461"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["1741", "4272", "4070"]}, "coop": "0", "type": "Q_9", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "25", "foul": "0", "tele": "15"}, "teams": ["1760", "234", "2081"]}}, {"blue": {"score": {"brige": "20", "tele": "2", "hybrid": "0", "final": "22", "foul": "0"}, "teams": ["4211", "3487", "1024"]}, "coop": "0", "type": "Q_10", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "9", "foul": "0", "tele": "3"}, "teams": ["4028", "4008", "3559"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "0", "final": "16", "foul": "0"}, "teams": ["4234", "1747", "2171"]}, "coop": "0", "type": "Q_11", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "9", "foul": "0", "tele": "3"}, "teams": ["1646", "1756", "45"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "5", "foul": "3"}, "teams": ["1529", "3565", "4058"]}, "coop": "0", "type": "Q_12", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "11", "foul": "0", "tele": "6"}, "teams": ["3947", "2867", "3176"]}}, {"blue": {"score": {"brige": "10", "tele": "15", "hybrid": "18", "final": "46", "foul": "3"}, "teams": ["829", "3865", "1732"]}, "coop": "0", "type": "Q_13", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "19", "foul": "9", "tele": "10"}, "teams": ["3814", "868", "2909"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["1018", "2197", "45"]}, "coop": "0", "type": "Q_14", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "5", "foul": "0", "tele": "5"}, "teams": ["3940", "4028", "3147"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4211", "1760", "3565"]}, "coop": "2", "type": "Q_15", "eventKey": "2012IN", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "28", "foul": "12", "tele": "0"}, "teams": ["461", "3487", "4058"]}}, {"blue": {"score": {"brige": "20", "tele": "6", "hybrid": "0", "final": "35", "foul": "9"}, "teams": ["1732", "1024", "1741"]}, "coop": "0", "type": "Q_16", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "4", "foul": "0", "tele": "4"}, "teams": ["1720", "1646", "3176"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "6", "foul": "0"}, "teams": ["2867", "3814", "3559"]}, "coop": "0", "type": "Q_17", "eventKey": "2012IN", "red": {"score": {"bridge": "20", "hybrid": "10", "final": "40", "foul": "0", "tele": "10"}, "teams": ["2081", "1501", "1747"]}}, {"blue": {"score": {"brige": "10", "tele": "20", "hybrid": "0", "final": "30", "foul": "0"}, "teams": ["3947", "2171", "1756"]}, "coop": "0", "type": "Q_18", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "4", "final": "7", "foul": "0", "tele": "3"}, "teams": ["4070", "4234", "2909"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "12", "final": "18", "foul": "0"}, "teams": ["4008", "3865", "3940"]}, "coop": "0", "type": "Q_19", "eventKey": "2012IN", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "32", "foul": "0", "tele": "12"}, "teams": ["1529", "292", "135"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "6", "final": "15", "foul": "0"}, "teams": ["4103", "1018", "868"]}, "coop": "2", "type": "Q_20", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "30", "foul": "3", "tele": "15"}, "teams": ["4272", "234", "829"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "18", "final": "30", "foul": "6"}, "teams": ["3565", "3559", "1756"]}, "coop": "1", "type": "Q_21", "eventKey": "2012IN", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "13", "foul": "0", "tele": "3"}, "teams": ["1732", "4211", "45"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "0", "final": "1", "foul": "0"}, "teams": ["4008", "1529", "3814"]}, "coop": "2", "type": "Q_22", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "14", "foul": "0", "tele": "2"}, "teams": ["1024", "2197", "2171"]}}, {"blue": {"score": {"brige": "0", "tele": "15", "hybrid": "0", "final": "18", "foul": "3"}, "teams": ["3176", "4272", "3940"]}, "coop": "2", "type": "Q_23", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["1646", "2081", "3865"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "6", "final": "18", "foul": "0"}, "teams": ["4234", "868", "3147"]}, "coop": "0", "type": "Q_24", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "17", "foul": "3", "tele": "14"}, "teams": ["461", "3947", "234"]}}, {"blue": {"score": {"brige": "0", "tele": "18", "hybrid": "6", "final": "24", "foul": "0"}, "teams": ["2909", "1018", "829"]}, "coop": "0", "type": "Q_25", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "24", "foul": "0", "tele": "12"}, "teams": ["4058", "292", "1741"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["135", "1760", "4070"]}, "coop": "0", "type": "Q_26", "eventKey": "2012IN", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "36", "foul": "9", "tele": "5"}, "teams": ["4028", "2867", "1747"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "0", "final": "1", "foul": "0"}, "teams": ["4103", "1501", "4008"]}, "coop": "2", "type": "Q_27", "eventKey": "2012IN", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "12", "foul": "0", "tele": "2"}, "teams": ["3487", "1720", "3565"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "0", "final": "5", "foul": "0"}, "teams": ["4234", "1646", "461"]}, "coop": "0", "type": "Q_28", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "12", "foul": "0", "tele": "6"}, "teams": ["3814", "3147", "1732"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "4", "final": "14", "foul": "0"}, "teams": ["3559", "1529", "45"]}, "coop": "0", "type": "Q_29", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "22", "final": "23", "foul": "0", "tele": "1"}, "teams": ["1018", "3947", "4272"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "10", "final": "10", "foul": "0"}, "teams": ["1760", "2867", "1720"]}, "coop": "2", "type": "Q_30", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "18", "foul": "0", "tele": "18"}, "teams": ["2081", "1756", "135"]}}, {"blue": {"score": {"brige": "0", "tele": "10", "hybrid": "0", "final": "13", "foul": "3"}, "teams": ["1747", "3940", "4070"]}, "coop": "2", "type": "Q_31", "eventKey": "2012IN", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "19", "foul": "3", "tele": "0"}, "teams": ["2909", "1024", "4103"]}}, {"blue": {"score": {"brige": "10", "tele": "13", "hybrid": "0", "final": "23", "foul": "0"}, "teams": ["3176", "3487", "292"]}, "coop": "0", "type": "Q_32", "eventKey": "2012IN", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "28", "foul": "0", "tele": "12"}, "teams": ["2171", "234", "868"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "3", "foul": "0"}, "teams": ["2197", "4028", "4058"]}, "coop": "2", "type": "Q_33", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "14", "foul": "0", "tele": "4"}, "teams": ["1741", "1501", "3865"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "4", "final": "16", "foul": "12"}, "teams": ["4211", "3814", "4103"]}, "coop": "0", "type": "Q_34", "eventKey": "2012IN", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "32", "foul": "0", "tele": "6"}, "teams": ["829", "3147", "4070"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "6", "final": "18", "foul": "0"}, "teams": ["2909", "45", "461"]}, "coop": "0", "type": "Q_35", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["1529", "2867", "1024"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "0", "final": "12", "foul": "0"}, "teams": ["2171", "1720", "3940"]}, "coop": "0", "type": "Q_36", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "23", "foul": "0", "tele": "11"}, "teams": ["868", "4272", "4058"]}}, {"blue": {"score": {"brige": "10", "tele": "12", "hybrid": "16", "final": "50", "foul": "12"}, "teams": ["3176", "829", "1756"]}, "coop": "2", "type": "Q_37", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["135", "3565", "2197"]}}, {"blue": {"score": {"brige": "0", "tele": "16", "hybrid": "6", "final": "22", "foul": "0"}, "teams": ["234", "3865", "292"]}, "coop": "0", "type": "Q_38", "eventKey": "2012IN", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "34", "foul": "0", "tele": "6"}, "teams": ["1747", "4211", "3559"]}}, {"blue": {"score": {"brige": "20", "tele": "2", "hybrid": "15", "final": "37", "foul": "0"}, "teams": ["1501", "1732", "4234"]}, "coop": "2", "type": "Q_39", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "22", "final": "37", "foul": "9", "tele": "6"}, "teams": ["1018", "4008", "1760"]}}, {"blue": {"score": {"brige": "20", "tele": "6", "hybrid": "11", "final": "37", "foul": "0"}, "teams": ["3487", "3947", "2081"]}, "coop": "2", "type": "Q_40", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "20", "foul": "0", "tele": "8"}, "teams": ["1646", "1741", "4028"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["4070", "45", "1024"]}, "coop": "0", "type": "Q_41", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "18", "foul": "0", "tele": "6"}, "teams": ["4211", "868", "1720"]}}, {"blue": {"score": {"brige": "10", "tele": "7", "hybrid": "10", "final": "30", "foul": "3"}, "teams": ["3559", "1501", "2171"]}, "coop": "0", "type": "Q_42", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "17", "final": "17", "foul": "0", "tele": "0"}, "teams": ["3176", "4103", "1732"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "17", "final": "24", "foul": "3"}, "teams": ["461", "4272", "2867"]}, "coop": "0", "type": "Q_43", "eventKey": "2012IN", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "29", "foul": "0", "tele": "3"}, "teams": ["3487", "3865", "1756"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "5", "final": "6", "foul": "0"}, "teams": ["4028", "1760", "1529"]}, "coop": "0", "type": "Q_44", "eventKey": "2012IN", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "28", "foul": "0", "tele": "6"}, "teams": ["4234", "829", "292"]}}, {"blue": {"score": {"brige": "0", "tele": "7", "hybrid": "5", "final": "12", "foul": "0"}, "teams": ["2909", "234", "1741"]}, "coop": "0", "type": "Q_45", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "22", "foul": "9", "tele": "7"}, "teams": ["3940", "3814", "3565"]}}, {"blue": {"score": {"brige": "0", "tele": "21", "hybrid": "18", "final": "39", "foul": "0"}, "teams": ["3147", "2081", "4008"]}, "coop": "0", "type": "Q_46", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "0", "tele": "6"}, "teams": ["4058", "1018", "1747"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "6", "final": "18", "foul": "0"}, "teams": ["135", "3947", "1720"]}, "coop": "2", "type": "Q_47", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "11", "foul": "0", "tele": "0"}, "teams": ["2197", "1646", "1760"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "11", "foul": "9"}, "teams": ["4234", "3176", "3814"]}, "coop": "2", "type": "Q_48", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "24", "foul": "0", "tele": "12"}, "teams": ["3487", "3940", "2867"]}}, {"blue": {"score": {"brige": "10", "tele": "12", "hybrid": "18", "final": "40", "foul": "0"}, "teams": ["868", "1529", "1732"]}, "coop": "2", "type": "Q_49", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "7", "foul": "0", "tele": "2"}, "teams": ["4103", "4028", "4070"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "6", "final": "19", "foul": "0"}, "teams": ["2171", "2081", "461"]}, "coop": "2", "type": "Q_50", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "25", "foul": "3", "tele": "10"}, "teams": ["4008", "829", "45"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "0", "final": "6", "foul": "0"}, "teams": ["4058", "1024", "234"]}, "coop": "2", "type": "Q_51", "eventKey": "2012IN", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "28", "foul": "0", "tele": "12"}, "teams": ["1756", "292", "2197"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "11", "final": "13", "foul": "0"}, "teams": ["3147", "2909", "3947"]}, "coop": "2", "type": "Q_52", "eventKey": "2012IN", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "10", "foul": "0", "tele": "0"}, "teams": ["3559", "3865", "4272"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "6", "final": "16", "foul": "0"}, "teams": ["135", "1646", "4211"]}, "coop": "0", "type": "Q_53", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "9", "foul": "0", "tele": "4"}, "teams": ["1501", "1018", "3565"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "10", "final": "20", "foul": "0"}, "teams": ["1747", "45", "1760"]}, "coop": "0", "type": "Q_54", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "16", "foul": "12", "tele": "4"}, "teams": ["1741", "461", "3176"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "0", "final": "13", "foul": "0"}, "teams": ["2197", "1732", "1720"]}, "coop": "0", "type": "Q_55", "eventKey": "2012IN", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "16", "foul": "0", "tele": "0"}, "teams": ["2081", "3559", "2909"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "18", "final": "27", "foul": "3"}, "teams": ["1018", "3940", "292"]}, "coop": "0", "type": "Q_56", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "8", "foul": "6", "tele": "2"}, "teams": ["2867", "4070", "3565"]}}, {"blue": {"score": {"brige": "20", "tele": "9", "hybrid": "17", "final": "46", "foul": "0"}, "teams": ["135", "868", "3487"]}, "coop": "0", "type": "Q_57", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "8", "foul": "0", "tele": "2"}, "teams": ["1741", "1529", "3147"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "24", "final": "27", "foul": "0"}, "teams": ["1747", "4272", "1646"]}, "coop": "2", "type": "Q_58", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "29", "foul": "6", "tele": "12"}, "teams": ["1501", "4211", "829"]}}, {"blue": {"score": {"brige": "10", "tele": "13", "hybrid": "12", "final": "35", "foul": "0"}, "teams": ["1756", "4008", "1024"]}, "coop": "2", "type": "Q_59", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "23", "foul": "3", "tele": "14"}, "teams": ["4103", "4234", "234"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "10", "final": "16", "foul": "0"}, "teams": ["4058", "3865", "3947"]}, "coop": "2", "type": "Q_60", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3814", "4028", "2171"]}}, {"blue": {"score": {"brige": "0", "tele": "11", "hybrid": "12", "final": "26", "foul": "3"}, "teams": ["868", "3940", "3559"]}, "coop": "0", "type": "Q_61", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "28", "final": "52", "foul": "3", "tele": "21"}, "teams": ["1760", "461", "829"]}}, {"blue": {"score": {"brige": "10", "tele": "8", "hybrid": "23", "final": "41", "foul": "0"}, "teams": ["234", "3487", "1646"]}, "coop": "0", "type": "Q_62", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "5", "foul": "0", "tele": "0"}, "teams": ["2867", "4103", "45"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "11", "final": "19", "foul": "0"}, "teams": ["4028", "1756", "1018"]}, "coop": "0", "type": "Q_63", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["1529", "2171", "3176"]}}, {"blue": {"score": {"brige": "20", "tele": "0", "hybrid": "0", "final": "20", "foul": "0"}, "teams": ["4070", "3865", "4211"]}, "coop": "2", "type": "Q_64", "eventKey": "2012IN", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "10", "foul": "0", "tele": "0"}, "teams": ["4234", "1720", "1741"]}}, {"blue": {"score": {"brige": "10", "tele": "12", "hybrid": "12", "final": "34", "foul": "0"}, "teams": ["2081", "4058", "1732"]}, "coop": "0", "type": "Q_65", "eventKey": "2012IN", "red": {"score": {"bridge": "10", "hybrid": "17", "final": "39", "foul": "12", "tele": "0"}, "teams": ["1024", "135", "1747"]}}, {"blue": {"score": {"brige": "10", "tele": "9", "hybrid": "6", "final": "25", "foul": "0"}, "teams": ["2909", "4272", "292"]}, "coop": "0", "type": "Q_66", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "8", "foul": "0", "tele": "8"}, "teams": ["4008", "3947", "2197"]}}, {"blue": {"score": {"brige": "0", "tele": "7", "hybrid": "10", "final": "17", "foul": "0"}, "teams": ["3814", "1501", "1720"]}, "coop": "0", "type": "Q_67", "eventKey": "2012IN", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "22", "foul": "0", "tele": "6"}, "teams": ["3565", "3147", "45"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "5", "final": "18", "foul": "0"}, "teams": ["3559", "3487", "4234"]}, "coop": "2", "type": "Q_68", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["4070", "3176", "4058"]}}, {"blue": {"score": {"brige": "20", "tele": "14", "hybrid": "5", "final": "39", "foul": "0"}, "teams": ["3947", "829", "1024"]}, "coop": "2", "type": "Q_69", "eventKey": "2012IN", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "35", "foul": "0", "tele": "3"}, "teams": ["1732", "4272", "135"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "6", "final": "22", "foul": "0"}, "teams": ["3565", "1747", "461"]}, "coop": "0", "type": "Q_70", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "15", "foul": "0", "tele": "9"}, "teams": ["2081", "4028", "868"]}}, {"blue": {"score": {"brige": "0", "tele": "11", "hybrid": "12", "final": "23", "foul": "0"}, "teams": ["3147", "1646", "1501"]}, "coop": "0", "type": "Q_71", "eventKey": "2012IN", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "22", "foul": "0", "tele": "0"}, "teams": ["1529", "2909", "3940"]}}, {"blue": {"score": {"brige": "10", "tele": "17", "hybrid": "5", "final": "32", "foul": "0"}, "teams": ["1756", "1760", "4103"]}, "coop": "2", "type": "Q_72", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "5", "foul": "0", "tele": "5"}, "teams": ["1018", "3814", "3865"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4211", "1741", "2197"]}, "coop": "0", "type": "Q_73", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "4", "foul": "0", "tele": "4"}, "teams": ["2867", "292", "2171"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "10", "final": "28", "foul": "12"}, "teams": ["234", "4028", "3176"]}, "coop": "0", "type": "Q_74", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "5", "foul": "0", "tele": "0"}, "teams": ["4008", "1720", "2909"]}}, {"blue": {"score": {"brige": "20", "tele": "6", "hybrid": "12", "final": "38", "foul": "0"}, "teams": ["1646", "829", "3559"]}, "coop": "0", "type": "Q_75", "eventKey": "2012IN", "red": {"score": {"bridge": "20", "hybrid": "5", "final": "32", "foul": "0", "tele": "7"}, "teams": ["1501", "1756", "4070"]}}, {"blue": {"score": {"brige": "20", "tele": "5", "hybrid": "0", "final": "25", "foul": "0"}, "teams": ["2197", "3940", "461"]}, "coop": "2", "type": "Q_76", "eventKey": "2012IN", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "47", "foul": "0", "tele": "9"}, "teams": ["1732", "1747", "3487"]}}, {"blue": {"score": {"brige": "10", "tele": "4", "hybrid": "6", "final": "29", "foul": "9"}, "teams": ["4272", "3565", "1024"]}, "coop": "0", "type": "Q_77", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["3865", "1760", "4234"]}}, {"blue": {"score": {"brige": "0", "tele": "7", "hybrid": "0", "final": "7", "foul": "0"}, "teams": ["2171", "4058", "135"]}, "coop": "0", "type": "Q_78", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "11", "foul": "0", "tele": "11"}, "teams": ["3814", "45", "234"]}}, {"blue": {"score": {"brige": "0", "tele": "13", "hybrid": "0", "final": "13", "foul": "0"}, "teams": ["1741", "2081", "4103"]}, "coop": "2", "type": "Q_79", "eventKey": "2012IN", "red": {"score": {"bridge": "10", "hybrid": "14", "final": "38", "foul": "3", "tele": "11"}, "teams": ["1529", "4211", "3947"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "12", "final": "25", "foul": "0"}, "teams": ["2867", "3147", "1018"]}, "coop": "0", "type": "Q_80", "eventKey": "2012IN", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "33", "foul": "0", "tele": "11"}, "teams": ["868", "292", "4008"]}}, {"blue": {"score": {"brige": "20", "tele": "4", "hybrid": "6", "final": "33", "foul": "3"}, "teams": ["1732", "292", "4272"]}, "coop": "0", "type": "E_1", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "24", "foul": "3", "tele": "3"}, "teams": ["829", "3559", "868"]}}, {"blue": {"score": {"brige": "40", "tele": "9", "hybrid": "5", "final": "54", "foul": "0"}, "teams": ["1024", "1747", "1720"]}, "coop": "0", "type": "E_2", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "16", "final": "25", "foul": "0", "tele": "9"}, "teams": ["4028", "1756", "1501"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "6", "final": "19", "foul": "0"}, "teams": ["4211", "3147", "2081"]}, "coop": "0", "type": "E_3", "eventKey": "2012IN", "red": {"score": {"bridge": "10", "hybrid": "29", "final": "59", "foul": "3", "tele": "17"}, "teams": ["461", "234", "3487"]}}, {"blue": {"score": {"brige": "20", "tele": "6", "hybrid": "11", "final": "37", "foul": "0"}, "teams": ["1646", "1760", "135"]}, "coop": "0", "type": "E_4", "eventKey": "2012IN", "red": {"score": {"bridge": "20", "hybrid": "16", "final": "62", "foul": "6", "tele": "20"}, "teams": ["2197", "3940", "3947"]}}, {"blue": {"score": {"brige": "40", "tele": "3", "hybrid": "6", "final": "49", "foul": "0"}, "teams": ["4272", "292", "1732"]}, "coop": "0", "type": "E_5", "eventKey": "2012IN", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "47", "foul": "0", "tele": "9"}, "teams": ["868", "3559", "829"]}}, {"blue": {"score": {"brige": "0", "tele": "7", "hybrid": "11", "final": "21", "foul": "3"}, "teams": ["1024", "1747", "1720"]}, "coop": "0", "type": "E_6", "eventKey": "2012IN", "red": {"score": {"bridge": "20", "hybrid": "11", "final": "44", "foul": "6", "tele": "7"}, "teams": ["1501", "1756", "4028"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "12", "final": "21", "foul": "0"}, "teams": ["3147", "2081", "4211"]}, "coop": "0", "type": "E_7", "eventKey": "2012IN", "red": {"score": {"bridge": "20", "hybrid": "21", "final": "63", "foul": "9", "tele": "13"}, "teams": ["234", "461", "3487"]}}, {"blue": {"score": {"brige": "20", "tele": "9", "hybrid": "0", "final": "38", "foul": "9"}, "teams": ["1646", "1760", "135"]}, "coop": "0", "type": "E_8", "eventKey": "2012IN", "red": {"score": {"bridge": "20", "hybrid": "16", "final": "51", "foul": "6", "tele": "9"}, "teams": ["3940", "3947", "2197"]}}, {"blue": {"score": {"brige": "20", "tele": "0", "hybrid": "6", "final": "26", "foul": "0"}, "teams": ["1720", "1024", "1747"]}, "coop": "0", "type": "E_10", "eventKey": "2012IN", "red": {"score": {"bridge": "20", "hybrid": "11", "final": "44", "foul": "0", "tele": "13"}, "teams": ["4028", "1501", "1756"]}}, {"blue": {"score": {"brige": "20", "tele": "14", "hybrid": "6", "final": "43", "foul": "3"}, "teams": ["1501", "4028", "1756"]}, "coop": "0", "type": "E_13", "eventKey": "2012IN", "red": {"score": {"bridge": "40", "hybrid": "12", "final": "57", "foul": "0", "tele": "5"}, "teams": ["292", "1732", "4272"]}}, {"blue": {"score": {"brige": "10", "tele": "18", "hybrid": "0", "final": "31", "foul": "3"}, "teams": ["2197", "3947", "3940"]}, "coop": "0", "type": "E_14", "eventKey": "2012IN", "red": {"score": {"bridge": "20", "hybrid": "23", "final": "56", "foul": "0", "tele": "13"}, "teams": ["461", "234", "3487"]}}, {"blue": {"score": {"brige": "40", "tele": "12", "hybrid": "6", "final": "58", "foul": "0"}, "teams": ["1501", "1756", "4028"]}, "coop": "0", "type": "E_15", "eventKey": "2012IN", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "32", "foul": "0", "tele": "12"}, "teams": ["292", "1732", "4272"]}}, {"blue": {"score": {"brige": "0", "tele": "14", "hybrid": "11", "final": "26", "foul": "0"}, "teams": ["3940", "2197", "3947"]}, "coop": "0", "type": "E_16", "eventKey": "2012IN", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "25", "foul": "0", "tele": "9"}, "teams": ["461", "3487", "234"]}}, {"blue": {"score": {"brige": "40", "tele": "5", "hybrid": "0", "final": "45", "foul": "0"}, "teams": ["1756", "1501", "4028"]}, "coop": "0", "type": "E_17", "eventKey": "2012IN", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "9", "foul": "0", "tele": "3"}, "teams": ["4272", "1732", "292"]}}, {"blue": {"score": {"brige": "20", "tele": "8", "hybrid": "0", "final": "28", "foul": "0"}, "teams": ["3865", "3940", "3947"]}, "coop": "0", "type": "E_19", "eventKey": "2012IN", "red": {"score": {"bridge": "20", "hybrid": "11", "final": "47", "foul": "3", "tele": "13"}, "teams": ["1756", "4028", "1501"]}}, {"blue": {"score": {"brige": "20", "tele": "3", "hybrid": "0", "final": "23", "foul": "0"}, "teams": ["3947", "3865", "3940"]}, "coop": "0", "type": "E_20", "eventKey": "2012IN", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "44", "foul": "3", "tele": "15"}, "teams": ["1756", "4028", "1501"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "20", "foul": "18"}, "teams": ["2679", "2212", "2214"]}, "coop": "0", "type": "Q_1", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "8", "foul": "0", "tele": "8"}, "teams": ["2231", "4406", "1657"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "6", "final": "7", "foul": "0"}, "teams": ["1946", "4320", "3065"]}, "coop": "0", "type": "Q_2", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "15", "foul": "3", "tele": "12"}, "teams": ["2230", "1942", "1573"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "15", "foul": "12"}, "teams": ["3087", "3835", "2216"]}, "coop": "0", "type": "Q_3", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "10", "foul": "0", "tele": "0"}, "teams": ["3075", "3774", "3316"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "6", "final": "8", "foul": "0"}, "teams": ["1580", "2213", "1943"]}, "coop": "0", "type": "Q_4", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "4", "final": "7", "foul": "3", "tele": "0"}, "teams": ["4319", "3339", "1937"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "0", "final": "10", "foul": "9"}, "teams": ["1576", "3052", "1944"]}, "coop": "0", "type": "Q_5", "eventKey": "2012IS", "red": {"score": {"bridge": "10", "hybrid": "11", "final": "39", "foul": "9", "tele": "9"}, "teams": ["4338", "1662", "1574"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "0", "final": "8", "foul": "0"}, "teams": ["1577", "1578", "3083"]}, "coop": "0", "type": "Q_6", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "15", "foul": "0", "tele": "15"}, "teams": ["1690", "1954", "1952"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "5", "final": "24", "foul": "6"}, "teams": ["3775", "2630", "3388"]}, "coop": "0", "type": "Q_7", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "16", "final": "19", "foul": "0", "tele": "3"}, "teams": ["3358", "3766", "3211"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "4", "foul": "0"}, "teams": ["2672", "4326", "2212"]}, "coop": "0", "type": "Q_8", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "5", "foul": "0", "tele": "5"}, "teams": ["3351", "1731", "4338"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "0", "final": "12", "foul": "0"}, "teams": ["1954", "1657", "2213"]}, "coop": "2", "type": "Q_9", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "5", "foul": "3", "tele": "2"}, "teams": ["2216", "1944", "1952"]}}, {"blue": {"score": {"brige": "0", "tele": "10", "hybrid": "10", "final": "20", "foul": "0"}, "teams": ["1690", "3316", "2230"]}, "coop": "0", "type": "Q_10", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "8", "foul": "6", "tele": "2"}, "teams": ["1943", "4406", "3766"]}}, {"blue": {"score": {"brige": "10", "tele": "9", "hybrid": "8", "final": "36", "foul": "9"}, "teams": ["3339", "3075", "3775"]}, "coop": "0", "type": "Q_11", "eventKey": "2012IS", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "26", "foul": "0", "tele": "0"}, "teams": ["1578", "2214", "2231"]}}, {"blue": {"score": {"brige": "0", "tele": "21", "hybrid": "12", "final": "33", "foul": "0"}, "teams": ["3351", "1946", "1662"]}, "coop": "2", "type": "Q_12", "eventKey": "2012IS", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "22", "foul": "6", "tele": "6"}, "teams": ["3065", "1937", "1577"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "0", "final": "13", "foul": "12"}, "teams": ["3052", "4326", "3358"]}, "coop": "0", "type": "Q_13", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "4", "foul": "0", "tele": "4"}, "teams": ["4319", "3835", "2679"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3774", "3087", "2672"]}, "coop": "0", "type": "Q_14", "eventKey": "2012IS", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "50", "foul": "12", "tele": "10"}, "teams": ["1942", "2630", "1574"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "6", "final": "12", "foul": "3"}, "teams": ["1731", "3211", "3388"]}, "coop": "0", "type": "Q_15", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "4", "foul": "0", "tele": "4"}, "teams": ["1576", "3083", "4320"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "6", "final": "18", "foul": "3"}, "teams": ["1573", "3835", "1662"]}, "coop": "2", "type": "Q_16", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "4", "foul": "3", "tele": "1"}, "teams": ["1580", "1952", "3339"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "5", "final": "21", "foul": "6"}, "teams": ["2230", "4326", "1657"]}, "coop": "0", "type": "Q_17", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "14", "foul": "3", "tele": "5"}, "teams": ["3052", "3775", "3316"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "10", "final": "10", "foul": "0"}, "teams": ["3388", "4320", "1944"]}, "coop": "0", "type": "Q_18", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "4", "foul": "0", "tele": "4"}, "teams": ["3351", "1577", "2212"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "18", "foul": "18"}, "teams": ["1942", "3766", "1946"]}, "coop": "0", "type": "Q_19", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "6", "foul": "0", "tele": "0"}, "teams": ["4319", "4406", "1731"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["1954", "3075", "1578"]}, "coop": "0", "type": "Q_20", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["1576", "2630", "1580"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "6", "foul": "3"}, "teams": ["4338", "3211", "3083"]}, "coop": "0", "type": "Q_21", "eventKey": "2012IS", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "26", "foul": "0", "tele": "4"}, "teams": ["2213", "2231", "2216"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "6", "final": "18", "foul": "0"}, "teams": ["1690", "3065", "3358"]}, "coop": "0", "type": "Q_22", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "5", "foul": "0", "tele": "0"}, "teams": ["2214", "1937", "3774"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["1690", "3065", "3358"]}, "coop": "0", "type": "Q_22", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["2214", "1937", "3774"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "12", "final": "21", "foul": "0"}, "teams": ["2672", "2679", "1574"]}, "coop": "0", "type": "Q_23", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "4", "foul": "3", "tele": "1"}, "teams": ["1573", "3087", "1943"]}}, {"blue": {"score": {"brige": "0", "tele": "11", "hybrid": "0", "final": "14", "foul": "3"}, "teams": ["2213", "1942", "3339"]}, "coop": "0", "type": "Q_24", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3388", "3075", "3052"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "4", "final": "8", "foul": "3"}, "teams": ["3766", "3351", "3774"]}, "coop": "0", "type": "Q_25", "eventKey": "2012IS", "red": {"score": {"bridge": "20", "hybrid": "10", "final": "48", "foul": "15", "tele": "3"}, "teams": ["1576", "2231", "3211"]}}, {"blue": {"score": {"brige": "20", "tele": "8", "hybrid": "18", "final": "46", "foul": "0"}, "teams": ["1574", "1952", "1657"]}, "coop": "0", "type": "Q_26", "eventKey": "2012IS", "red": {"score": {"bridge": "10", "hybrid": "11", "final": "36", "foul": "0", "tele": "15"}, "teams": ["1662", "3065", "4326"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "6", "foul": "0"}, "teams": ["3835", "1580", "3775"]}, "coop": "0", "type": "Q_27", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["4338", "4406", "2212"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "12", "final": "27", "foul": "9"}, "teams": ["1954", "2679", "1731"]}, "coop": "0", "type": "Q_28", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "18", "foul": "3", "tele": "9"}, "teams": ["3083", "2214", "1690"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "10", "final": "29", "foul": "9"}, "teams": ["2230", "4320", "3087"]}, "coop": "0", "type": "Q_29", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "16", "final": "25", "foul": "6", "tele": "3"}, "teams": ["1937", "1578", "3358"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "0", "final": "8", "foul": "0"}, "teams": ["1944", "1946", "1577"]}, "coop": "2", "type": "Q_30", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "17", "foul": "3", "tele": "4"}, "teams": ["3316", "2672", "2630"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "0", "final": "8", "foul": "3"}, "teams": ["2216", "1573", "3774"]}, "coop": "0", "type": "Q_31", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "6", "tele": "0"}, "teams": ["4319", "1943", "1954"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "12", "final": "18", "foul": "0"}, "teams": ["1574", "1937", "3075"]}, "coop": "0", "type": "Q_32", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["4320", "4406", "1952"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "25", "final": "46", "foul": "9"}, "teams": ["3087", "3316", "1576"]}, "coop": "0", "type": "Q_33", "eventKey": "2012IS", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "35", "foul": "3", "tele": "6"}, "teams": ["3065", "2230", "2213"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "3", "foul": "3"}, "teams": ["4338", "1580", "3358"]}, "coop": "0", "type": "Q_34", "eventKey": "2012IS", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "24", "foul": "0", "tele": "4"}, "teams": ["1731", "1657", "1946"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "3", "foul": "0"}, "teams": ["3339", "2216", "3052"]}, "coop": "2", "type": "Q_35", "eventKey": "2012IS", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "31", "foul": "0", "tele": "15"}, "teams": ["3351", "1690", "2630"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "6", "final": "16", "foul": "0"}, "teams": ["1942", "1577", "1943"]}, "coop": "0", "type": "Q_36", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "11", "foul": "0", "tele": "0"}, "teams": ["4326", "3775", "2231"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "3", "foul": "3"}, "teams": ["2212", "1944", "1578"]}, "coop": "0", "type": "Q_37", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3766", "2679", "1573"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "5", "foul": "3"}, "teams": ["2672", "3388", "4319"]}, "coop": "0", "type": "Q_38", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "32", "foul": "0", "tele": "20"}, "teams": ["2214", "3211", "1662"]}}, {"blue": {"score": {"brige": "20", "tele": "3", "hybrid": "10", "final": "39", "foul": "6"}, "teams": ["3083", "1937", "1731"]}, "coop": "0", "type": "Q_39", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "12", "foul": "0", "tele": "0"}, "teams": ["3835", "3774", "1954"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "5", "final": "24", "foul": "3"}, "teams": ["1942", "1580", "3351"]}, "coop": "0", "type": "Q_40", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "12", "foul": "0", "tele": "2"}, "teams": ["3316", "3358", "1943"]}}, {"blue": {"score": {"brige": "0", "tele": "14", "hybrid": "12", "final": "26", "foul": "0"}, "teams": ["1574", "2213", "2214"]}, "coop": "0", "type": "Q_41", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3775", "1946", "1578"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "11", "final": "23", "foul": "12"}, "teams": ["4406", "2672", "1576"]}, "coop": "0", "type": "Q_42", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "4", "final": "22", "foul": "18", "tele": "0"}, "teams": ["1952", "3083", "3052"]}}, {"blue": {"score": {"brige": "10", "tele": "9", "hybrid": "6", "final": "25", "foul": "0"}, "teams": ["1577", "2231", "4319"]}, "coop": "2", "type": "Q_43", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["2230", "3835", "1944"]}}, {"blue": {"score": {"brige": "20", "tele": "2", "hybrid": "10", "final": "38", "foul": "6"}, "teams": ["2679", "1657", "4320"]}, "coop": "2", "type": "Q_44", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "0", "tele": "6"}, "teams": ["3339", "3087", "3766"]}}, {"blue": {"score": {"brige": "10", "tele": "8", "hybrid": "12", "final": "30", "foul": "0"}, "teams": ["2212", "1662", "1690"]}, "coop": "0", "type": "Q_45", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "10", "foul": "0", "tele": "10"}, "teams": ["3075", "3211", "2216"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "5", "final": "21", "foul": "3"}, "teams": ["4326", "4338", "2630"]}, "coop": "0", "type": "Q_46", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "9", "foul": "0", "tele": "3"}, "teams": ["3388", "1573", "3065"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "0", "final": "18", "foul": "9"}, "teams": ["1657", "3083", "4319"]}, "coop": "2", "type": "Q_47", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "21", "foul": "0", "tele": "3"}, "teams": ["3351", "1578", "1574"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "6", "final": "11", "foul": "0"}, "teams": ["3775", "2672", "2214"]}, "coop": "0", "type": "Q_48", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "13", "foul": "0", "tele": "3"}, "teams": ["3835", "3316", "4320"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "3", "foul": "3"}, "teams": ["3358", "1573", "1576"]}, "coop": "2", "type": "Q_49", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "13", "foul": "6", "tele": "7"}, "teams": ["4406", "1690", "2216"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "12", "final": "29", "foul": "9"}, "teams": ["1952", "3774", "1942"]}, "coop": "0", "type": "Q_50", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "3", "tele": "0"}, "teams": ["2230", "1580", "2679"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "8", "final": "13", "foul": "0"}, "teams": ["2630", "3339", "3211"]}, "coop": "0", "type": "Q_51", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "10", "foul": "6", "tele": "4"}, "teams": ["4326", "1937", "1944"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3075", "3087", "2231"]}, "coop": "0", "type": "Q_52", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "1", "foul": "0", "tele": "1"}, "teams": ["1954", "1946", "3388"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3065", "2212", "3766"]}, "coop": "0", "type": "Q_53", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "23", "foul": "3", "tele": "14"}, "teams": ["3052", "2213", "1662"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["4338", "1577", "1657"]}, "coop": "2", "type": "Q_54", "eventKey": "2012IS", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "13", "foul": "0", "tele": "3"}, "teams": ["1731", "1943", "1574"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "13", "foul": "3"}, "teams": ["3774", "3775", "3083"]}, "coop": "0", "type": "Q_55", "eventKey": "2012IS", "red": {"score": {"bridge": "20", "hybrid": "4", "final": "36", "foul": "3", "tele": "9"}, "teams": ["1573", "3339", "1946"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "10", "final": "20", "foul": "0"}, "teams": ["3835", "1942", "3065"]}, "coop": "0", "type": "Q_56", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "24", "foul": "3", "tele": "21"}, "teams": ["1690", "2213", "1944"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3766", "3075", "1576"]}, "coop": "0", "type": "Q_57", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "10", "foul": "0", "tele": "10"}, "teams": ["3358", "2672", "1577"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["2630", "2214", "1952"]}, "coop": "0", "type": "Q_58", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["2230", "1943", "2212"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "15", "final": "36", "foul": "9"}, "teams": ["2216", "1937", "3316"]}, "coop": "0", "type": "Q_59", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "15", "foul": "12", "tele": "3"}, "teams": ["3388", "4338", "2679"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "15", "final": "20", "foul": "3"}, "teams": ["4406", "3351", "4326"]}, "coop": "2", "type": "Q_60", "eventKey": "2012IS", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "37", "foul": "0", "tele": "9"}, "teams": ["4320", "1954", "1662"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "6", "final": "22", "foul": "3"}, "teams": ["2231", "1580", "1731"]}, "coop": "0", "type": "Q_61", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "5", "foul": "0", "tele": "0"}, "teams": ["4319", "3087", "3052"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "6", "foul": "3"}, "teams": ["3211", "1937", "3835"]}, "coop": "0", "type": "Q_62", "eventKey": "2012IS", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "37", "foul": "6", "tele": "9"}, "teams": ["1578", "1942", "1576"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "0", "final": "1", "foul": "0"}, "teams": ["3388", "4406", "3774"]}, "coop": "0", "type": "Q_63", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "14", "foul": "6", "tele": "3"}, "teams": ["1657", "2672", "1944"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "12", "final": "25", "foul": "0"}, "teams": ["2231", "3358", "3351"]}, "coop": "0", "type": "Q_64", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "5", "foul": "3", "tele": "2"}, "teams": ["1573", "3075", "2213"]}}, {"blue": {"score": {"brige": "10", "tele": "10", "hybrid": "10", "final": "30", "foul": "0"}, "teams": ["4319", "3316", "1574"]}, "coop": "0", "type": "Q_65", "eventKey": "2012IS", "red": {"score": {"bridge": "10", "hybrid": "9", "final": "34", "foul": "15", "tele": "0"}, "teams": ["2212", "1954", "2630"]}}, {"blue": {"score": {"brige": "0", "tele": "11", "hybrid": "17", "final": "28", "foul": "0"}, "teams": ["3211", "1690", "4326"]}, "coop": "0", "type": "Q_66", "eventKey": "2012IS", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "10", "foul": "0", "tele": "0"}, "teams": ["3087", "2214", "1580"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["1946", "1943", "1952"]}, "coop": "0", "type": "Q_67", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "6", "foul": "0", "tele": "0"}, "teams": ["3052", "4320", "3766"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "6", "final": "12", "foul": "3"}, "teams": ["3775", "4338", "2230"]}, "coop": "0", "type": "Q_68", "eventKey": "2012IS", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "27", "foul": "3", "tele": "14"}, "teams": ["1662", "2679", "3083"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "8", "final": "9", "foul": "0"}, "teams": ["3339", "1578", "3065"]}, "coop": "0", "type": "Q_69", "eventKey": "2012IS", "red": {"score": {"bridge": "10", "hybrid": "24", "final": "45", "foul": "3", "tele": "8"}, "teams": ["1577", "1731", "2216"]}}, {"blue": {"score": {"brige": "10", "tele": "9", "hybrid": "12", "final": "43", "foul": "12"}, "teams": ["1690", "1946", "1574"]}, "coop": "2", "type": "Q_70", "eventKey": "2012IS", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "25", "foul": "0", "tele": "3"}, "teams": ["3388", "3351", "3835"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "22", "final": "31", "foul": "3"}, "teams": ["3316", "1662", "1952"]}, "coop": "2", "type": "Q_71", "eventKey": "2012IS", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "16", "foul": "3", "tele": "3"}, "teams": ["4320", "2630", "2231"]}}, {"blue": {"score": {"brige": "10", "tele": "12", "hybrid": "12", "final": "43", "foul": "9"}, "teams": ["3052", "2230", "1731"]}, "coop": "2", "type": "Q_72", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "22", "foul": "3", "tele": "9"}, "teams": ["3211", "1573", "1657"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["3065", "1943", "1944"]}, "coop": "0", "type": "Q_73", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "13", "foul": "12", "tele": "1"}, "teams": ["3075", "3358", "3083"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "5", "final": "5", "foul": "0"}, "teams": ["2212", "1576", "4319"]}, "coop": "0", "type": "Q_74", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "16", "foul": "0", "tele": "5"}, "teams": ["3087", "1937", "3775"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2214", "1954", "3766"]}, "coop": "0", "type": "Q_75", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "28", "foul": "3", "tele": "7"}, "teams": ["2216", "1942", "4338"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "6", "foul": "3"}, "teams": ["4406", "2213", "1578"]}, "coop": "0", "type": "Q_76", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "14", "final": "20", "foul": "0", "tele": "6"}, "teams": ["3774", "1577", "4326"]}}, {"blue": {"score": {"brige": "10", "tele": "9", "hybrid": "8", "final": "30", "foul": "3"}, "teams": ["2679", "3339", "2231"]}, "coop": "0", "type": "Q_77", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["2672", "1580", "3065"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "12", "final": "17", "foul": "0"}, "teams": ["1731", "3087", "1952"]}, "coop": "0", "type": "Q_78", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "14", "foul": "3", "tele": "5"}, "teams": ["3351", "1944", "3775"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "6", "foul": "0"}, "teams": ["4338", "4320", "3075"]}, "coop": "0", "type": "Q_79", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "26", "foul": "3", "tele": "12"}, "teams": ["1690", "3774", "4319"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "4", "foul": "0"}, "teams": ["2230", "2216", "3766"]}, "coop": "0", "type": "Q_80", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "17", "foul": "3", "tele": "8"}, "teams": ["1574", "4326", "1580"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["2230", "2216", "3766"]}, "coop": "0", "type": "Q_80", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "28", "foul": "18", "tele": "5"}, "teams": ["1574", "4326", "1580"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "3", "foul": "3"}, "teams": ["4406", "3358", "1954"]}, "coop": "0", "type": "Q_81", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "8", "final": "14", "foul": "3", "tele": "3"}, "teams": ["3388", "2212", "3339"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "5", "final": "5", "foul": "0"}, "teams": ["3052", "1937", "1573"]}, "coop": "2", "type": "Q_82", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "29", "foul": "6", "tele": "13"}, "teams": ["2214", "3316", "1577"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "6", "final": "16", "foul": "0"}, "teams": ["3211", "1943", "2679"]}, "coop": "2", "type": "Q_83", "eventKey": "2012IS", "red": {"score": {"bridge": "10", "hybrid": "11", "final": "24", "foul": "0", "tele": "3"}, "teams": ["1576", "3835", "1946"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "0", "final": "13", "foul": "0"}, "teams": ["2213", "2630", "3083"]}, "coop": "2", "type": "Q_84", "eventKey": "2012IS", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "28", "foul": "0", "tele": "6"}, "teams": ["1942", "1662", "1657"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "3", "foul": "3"}, "teams": ["1578", "2230", "3388"]}, "coop": "2", "type": "Q_85", "eventKey": "2012IS", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "19", "foul": "0", "tele": "3"}, "teams": ["2672", "3052", "3351"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "3", "foul": "3"}, "teams": ["3835", "2213", "1954"]}, "coop": "0", "type": "E_1", "eventKey": "2012IS", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "63", "foul": "18", "tele": "27"}, "teams": ["1690", "1937", "1662"]}}, {"blue": {"score": {"brige": "20", "tele": "6", "hybrid": "10", "final": "42", "foul": "6"}, "teams": ["3316", "1731", "2231"]}, "coop": "0", "type": "E_2", "eventKey": "2012IS", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "43", "foul": "0", "tele": "11"}, "teams": ["4320", "3339", "2630"]}}, {"blue": {"score": {"brige": "20", "tele": "5", "hybrid": "11", "final": "45", "foul": "9"}, "teams": ["1952", "2216", "1944"]}, "coop": "0", "type": "E_3", "eventKey": "2012IS", "red": {"score": {"bridge": "20", "hybrid": "30", "final": "65", "foul": "0", "tele": "15"}, "teams": ["1574", "3211", "1577"]}}, {"blue": {"score": {"brige": "0", "tele": "14", "hybrid": "12", "final": "26", "foul": "0"}, "teams": ["1942", "1946", "2212"]}, "coop": "0", "type": "E_4", "eventKey": "2012IS", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "25", "foul": "3", "tele": "6"}, "teams": ["1657", "4338", "3351"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["2679", "3835", "2213"]}, "coop": "0", "type": "E_5", "eventKey": "2012IS", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "59", "foul": "0", "tele": "21"}, "teams": ["1937", "1662", "1690"]}}, {"blue": {"score": {"brige": "20", "tele": "16", "hybrid": "22", "final": "58", "foul": "0"}, "teams": ["3316", "2231", "1731"]}, "coop": "0", "type": "E_6", "eventKey": "2012IS", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "35", "foul": "6", "tele": "9"}, "teams": ["4320", "2630", "3339"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "16", "final": "20", "foul": "0"}, "teams": ["1952", "1944", "2216"]}, "coop": "0", "type": "E_7", "eventKey": "2012IS", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "53", "foul": "0", "tele": "15"}, "teams": ["3211", "1577", "1574"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "12", "final": "28", "foul": "3"}, "teams": ["1942", "1946", "2212"]}, "coop": "0", "type": "E_8", "eventKey": "2012IS", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "44", "foul": "6", "tele": "6"}, "teams": ["4338", "3351", "1657"]}}, {"blue": {"score": {"brige": "20", "tele": "15", "hybrid": "16", "final": "51", "foul": "0"}, "teams": ["3316", "2231", "1731"]}, "coop": "0", "type": "E_10", "eventKey": "2012IS", "red": {"score": {"bridge": "20", "hybrid": "14", "final": "49", "foul": "0", "tele": "15"}, "teams": ["4320", "3339", "2630"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "6", "foul": "0"}, "teams": ["1946", "1942", "3052"]}, "coop": "0", "type": "E_12", "eventKey": "2012IS", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "38", "foul": "6", "tele": "0"}, "teams": ["1657", "4338", "3351"]}}, {"blue": {"score": {"brige": "0", "tele": "16", "hybrid": "16", "final": "35", "foul": "3"}, "teams": ["1731", "2231", "3316"]}, "coop": "0", "type": "E_13", "eventKey": "2012IS", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "68", "foul": "0", "tele": "30"}, "teams": ["1690", "1662", "1937"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "6", "final": "11", "foul": "0"}, "teams": ["3351", "4338", "1657"]}, "coop": "0", "type": "E_14", "eventKey": "2012IS", "red": {"score": {"bridge": "10", "hybrid": "24", "final": "55", "foul": "6", "tele": "15"}, "teams": ["3211", "1574", "1577"]}}, {"blue": {"score": {"brige": "20", "tele": "12", "hybrid": "22", "final": "54", "foul": "0"}, "teams": ["2231", "1731", "3316"]}, "coop": "0", "type": "E_15", "eventKey": "2012IS", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "74", "foul": "3", "tele": "39"}, "teams": ["1690", "1937", "1662"]}}, {"blue": {"score": {"brige": "20", "tele": "0", "hybrid": "11", "final": "31", "foul": "0"}, "teams": ["1657", "4338", "3351"]}, "coop": "0", "type": "E_16", "eventKey": "2012IS", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "34", "foul": "0", "tele": "6"}, "teams": ["3211", "1577", "1574"]}}, {"blue": {"score": {"brige": "20", "tele": "20", "hybrid": "17", "final": "57", "foul": "0"}, "teams": ["3211", "1577", "1574"]}, "coop": "0", "type": "E_19", "eventKey": "2012IS", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "62", "foul": "15", "tele": "27"}, "teams": ["1690", "1937", "1662"]}}, {"blue": {"score": {"brige": "20", "tele": "12", "hybrid": "12", "final": "44", "foul": "0"}, "teams": ["3211", "1577", "1574"]}, "coop": "0", "type": "E_20", "eventKey": "2012IS", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "50", "foul": "9", "tele": "21"}, "teams": ["1662", "1690", "1937"]}}, {"blue": {"score": {"brige": "10", "tele": "1", "hybrid": "4", "final": "15", "foul": "0"}, "teams": ["1806", "1997", "2972"]}, "coop": "2", "type": "Q_1", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "11", "foul": "0", "tele": "5"}, "teams": ["1985", "1939", "1984"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "0", "final": "1", "foul": "0"}, "teams": ["2410", "3973", "937"]}, "coop": "0", "type": "Q_2", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "24", "foul": "0", "tele": "13"}, "teams": ["16", "3931", "1982"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "6", "final": "9", "foul": "0"}, "teams": ["2949", "1825", "3485"]}, "coop": "0", "type": "Q_3", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "8", "foul": "0", "tele": "2"}, "teams": ["967", "1785", "1777"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "4", "final": "4", "foul": "0"}, "teams": ["3784", "4208", "2560"]}, "coop": "0", "type": "Q_4", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["931", "1810", "2345"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "6", "foul": "0"}, "teams": ["2001", "1094", "2346"]}, "coop": "0", "type": "Q_5", "eventKey": "2012KC", "red": {"score": {"bridge": "10", "hybrid": "4", "final": "17", "foul": "0", "tele": "3"}, "teams": ["1802", "1782", "1764"]}}, {"blue": {"score": {"brige": "0", "tele": "15", "hybrid": "12", "final": "27", "foul": "0"}, "teams": ["1986", "1763", "935"]}, "coop": "0", "type": "Q_6", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "18", "foul": "18", "tele": "0"}, "teams": ["1737", "1994", "2004"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["1769", "2357", "2335"]}, "coop": "0", "type": "Q_7", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "33", "foul": "3", "tele": "18"}, "teams": ["2996", "1730", "2457"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "12", "foul": "12"}, "teams": ["1652", "1108", "2164"]}, "coop": "0", "type": "Q_8", "eventKey": "2012KC", "red": {"score": {"bridge": "10", "hybrid": "5", "final": "27", "foul": "3", "tele": "9"}, "teams": ["1208", "1448", "1987"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "10", "final": "37", "foul": "15"}, "teams": ["2167", "2353", "3528"]}, "coop": "0", "type": "Q_9", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["1723", "662", "1847"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "12", "final": "17", "foul": "0"}, "teams": ["1827", "3284", "3798"]}, "coop": "0", "type": "Q_10", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "17", "foul": "3", "tele": "8"}, "teams": ["2395", "3507", "1775"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2874", "3764", "1802"]}, "coop": "0", "type": "Q_11", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "22", "final": "37", "foul": "6", "tele": "9"}, "teams": ["525", "938", "935"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "19", "foul": "9"}, "teams": ["1094", "1985", "1763"]}, "coop": "2", "type": "Q_12", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "29", "foul": "3", "tele": "14"}, "teams": ["1982", "2345", "2949"]}}, {"blue": {"score": {"brige": "10", "tele": "7", "hybrid": "0", "final": "17", "foul": "0"}, "teams": ["2001", "967", "931"]}, "coop": "2", "type": "Q_13", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "3", "tele": "3"}, "teams": ["2335", "1208", "1994"]}}, {"blue": {"score": {"brige": "0", "tele": "20", "hybrid": "5", "final": "28", "foul": "3"}, "teams": ["1810", "2167", "525"]}, "coop": "0", "type": "Q_19", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "12", "foul": "3", "tele": "3"}, "teams": ["3284", "3485", "2410"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["1785", "1108", "2353"]}, "coop": "0", "type": "Q_20", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["1775", "937", "1769"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "17", "final": "39", "foul": "21"}, "teams": ["2357", "1987", "1737"]}, "coop": "0", "type": "Q_21", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "9", "foul": "3", "tele": "0"}, "teams": ["4208", "3973", "3798"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "18", "foul": "18"}, "teams": ["1939", "2335", "3931"]}, "coop": "0", "type": "Q_22", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "11", "foul": "6", "tele": "5"}, "teams": ["1777", "1827", "2345"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "0", "final": "12", "foul": "6"}, "teams": ["931", "2164", "2346"]}, "coop": "0", "type": "Q_23", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "27", "foul": "6", "tele": "9"}, "teams": ["1806", "1763", "2395"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2457", "2001", "2004"]}, "coop": "0", "type": "Q_24", "eventKey": "2012KC", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "17", "foul": "0", "tele": "7"}, "teams": ["2996", "2949", "2167"]}}, {"blue": {"score": {"brige": "10", "tele": "9", "hybrid": "6", "final": "31", "foul": "6"}, "teams": ["16", "3485", "1775"]}, "coop": "0", "type": "Q_25", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "10", "foul": "0", "tele": "0"}, "teams": ["3784", "938", "1448"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "12", "final": "25", "foul": "0"}, "teams": ["3284", "1994", "1730"]}, "coop": "0", "type": "Q_26", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "16", "final": "32", "foul": "6", "tele": "10"}, "teams": ["3528", "1785", "1987"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["1939", "1764", "1652"]}, "coop": "0", "type": "Q_27", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["2353", "1737", "2560"]}}, {"blue": {"score": {"brige": "10", "tele": "8", "hybrid": "12", "final": "33", "foul": "3"}, "teams": ["2410", "935", "662"]}, "coop": "2", "type": "Q_28", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "27", "foul": "3", "tele": "12"}, "teams": ["1108", "1825", "1985"]}}, {"blue": {"score": {"brige": "10", "tele": "5", "hybrid": "5", "final": "20", "foul": "0"}, "teams": ["1769", "1847", "1094"]}, "coop": "2", "type": "Q_29", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "47", "foul": "12", "tele": "23"}, "teams": ["1208", "3973", "3507"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "12", "final": "17", "foul": "0"}, "teams": ["1810", "1997", "1984"]}, "coop": "0", "type": "Q_30", "eventKey": "2012KC", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "13", "foul": "0", "tele": "3"}, "teams": ["1723", "2874", "2357"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "12", "final": "23", "foul": "6"}, "teams": ["967", "4208", "3764"]}, "coop": "0", "type": "Q_31", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "20", "foul": "18", "tele": "2"}, "teams": ["937", "1802", "2972"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "5", "final": "23", "foul": "12"}, "teams": ["1982", "3798", "1782"]}, "coop": "2", "type": "Q_32", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "31", "foul": "0", "tele": "19"}, "teams": ["1986", "525", "1777"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "5", "final": "8", "foul": "0"}, "teams": ["1939", "2353", "2395"]}, "coop": "0", "type": "Q_33", "eventKey": "2012KC", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "16", "foul": "0", "tele": "6"}, "teams": ["1985", "3485", "2004"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "18", "final": "27", "foul": "3"}, "teams": ["3284", "1825", "1764"]}, "coop": "0", "type": "Q_34", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "24", "foul": "3", "tele": "9"}, "teams": ["3784", "1208", "2457"]}}, {"blue": {"score": {"brige": "10", "tele": "11", "hybrid": "12", "final": "33", "foul": "0"}, "teams": ["935", "1997", "931"]}, "coop": "2", "type": "Q_35", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "5", "foul": "0", "tele": "5"}, "teams": ["1094", "2949", "3931"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3764", "1785", "3507"]}, "coop": "0", "type": "Q_36", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "5", "foul": "0", "tele": "5"}, "teams": ["2001", "1810", "1652"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "11", "final": "14", "foul": "0"}, "teams": ["16", "2560", "2357"]}, "coop": "2", "type": "Q_37", "eventKey": "2012KC", "red": {"score": {"bridge": "10", "hybrid": "22", "final": "60", "foul": "9", "tele": "19"}, "teams": ["3528", "1986", "1782"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "0", "final": "6", "foul": "0"}, "teams": ["1777", "1763", "937"]}, "coop": "0", "type": "Q_38", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "17", "foul": "3", "tele": "3"}, "teams": ["1847", "1987", "2167"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "5", "final": "23", "foul": "12"}, "teams": ["1448", "525", "3973"]}, "coop": "2", "type": "Q_39", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "30", "foul": "12", "tele": "6"}, "teams": ["2346", "2345", "1994"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "4", "foul": "0"}, "teams": ["938", "1984", "2996"]}, "coop": "2", "type": "Q_40", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["967", "2410", "1827"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "3", "foul": "0"}, "teams": ["1730", "2164", "2874"]}, "coop": "0", "type": "Q_41", "eventKey": "2012KC", "red": {"score": {"bridge": "20", "hybrid": "11", "final": "40", "foul": "3", "tele": "6"}, "teams": ["1775", "1982", "1737"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["1994", "2972", "1827"]}, "coop": "0", "type": "Q_62", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "8", "foul": "6", "tele": "2"}, "teams": ["2357", "1094", "3485"]}}, {"blue": {"score": {"brige": "20", "tele": "10", "hybrid": "10", "final": "49", "foul": "9"}, "teams": ["1985", "1775", "3528"]}, "coop": "2", "type": "Q_63", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "16", "foul": "0", "tele": "10"}, "teams": ["2457", "525", "4208"]}}, {"blue": {"score": {"brige": "0", "tele": "17", "hybrid": "6", "final": "23", "foul": "0"}, "teams": ["3507", "1737", "2345"]}, "coop": "0", "type": "Q_64", "eventKey": "2012KC", "red": {"score": {"bridge": "10", "hybrid": "14", "final": "33", "foul": "0", "tele": "9"}, "teams": ["1802", "1825", "1984"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "6", "final": "12", "foul": "0"}, "teams": ["662", "937", "2949"]}, "coop": "0", "type": "Q_65", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["2874", "1448", "2560"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "6", "final": "19", "foul": "9"}, "teams": ["967", "1782", "1847"]}, "coop": "2", "type": "Q_66", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "29", "foul": "3", "tele": "21"}, "teams": ["1939", "935", "1730"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "0", "final": "1", "foul": "0"}, "teams": ["1785", "3784", "1723"]}, "coop": "0", "type": "Q_67", "eventKey": "2012KC", "red": {"score": {"bridge": "10", "hybrid": "17", "final": "38", "foul": "9", "tele": "2"}, "teams": ["1987", "1982", "2395"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "12", "final": "21", "foul": "6"}, "teams": ["1810", "1986", "2972"]}, "coop": "0", "type": "Q_68", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["2164", "2167", "3973"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "10", "final": "28", "foul": "18"}, "teams": ["3485", "3528", "2335"]}, "coop": "0", "type": "Q_69", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "12", "foul": "3", "tele": "4"}, "teams": ["1763", "1769", "1652"]}}, {"blue": {"score": {"brige": "0", "tele": "10", "hybrid": "18", "final": "28", "foul": "0"}, "teams": ["3507", "4208", "2996"]}, "coop": "0", "type": "Q_70", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "24", "foul": "0", "tele": "6"}, "teams": ["1764", "1997", "525"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "6", "final": "9", "foul": "0"}, "teams": ["1827", "1108", "938"]}, "coop": "0", "type": "Q_71", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "19", "foul": "18", "tele": "1"}, "teams": ["1737", "2001", "1985"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "16", "final": "25", "foul": "0"}, "teams": ["1806", "1775", "1777"]}, "coop": "0", "type": "Q_72", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "12", "foul": "0", "tele": "6"}, "teams": ["2345", "1094", "2004"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "12", "final": "33", "foul": "9"}, "teams": ["16", "3764", "2457"]}, "coop": "0", "type": "Q_73", "eventKey": "2012KC", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "17", "foul": "3", "tele": "4"}, "teams": ["1994", "931", "1984"]}}, {"blue": {"score": {"brige": "0", "tele": "23", "hybrid": "17", "final": "52", "foul": "12"}, "teams": ["3931", "1208", "1825"]}, "coop": "0", "type": "Q_74", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "19", "foul": "0", "tele": "8"}, "teams": ["2353", "3798", "2346"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["1802", "2410", "1448"]}, "coop": "0", "type": "Q_75", "eventKey": "2012KC", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "37", "foul": "15", "tele": "0"}, "teams": ["2357", "3284", "1847"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "22", "final": "22", "foul": "0"}, "teams": ["1764", "1769", "1985"]}, "coop": "0", "type": "Q_76", "eventKey": "2012KC", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "32", "foul": "0", "tele": "4"}, "teams": ["1987", "967", "1810"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "4", "final": "14", "foul": "0"}, "teams": ["937", "2996", "1094"]}, "coop": "0", "type": "Q_77", "eventKey": "2012KC", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "32", "foul": "0", "tele": "6"}, "teams": ["1939", "1723", "1986"]}}, {"blue": {"score": {"brige": "0", "tele": "10", "hybrid": "16", "final": "26", "foul": "0"}, "teams": ["2345", "2001", "2972"]}, "coop": "0", "type": "Q_78", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "40", "foul": "0", "tele": "28"}, "teams": ["16", "2395", "662"]}}, {"blue": {"score": {"brige": "10", "tele": "20", "hybrid": "0", "final": "30", "foul": "0"}, "teams": ["931", "1825", "1730"]}, "coop": "2", "type": "Q_79", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "9", "foul": "3", "tele": "6"}, "teams": ["2004", "1827", "525"]}}, {"blue": {"score": {"brige": "10", "tele": "8", "hybrid": "21", "final": "45", "foul": "6"}, "teams": ["2346", "1984", "1982"]}, "coop": "0", "type": "Q_80", "eventKey": "2012KC", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "31", "foul": "0", "tele": "9"}, "teams": ["2167", "935", "4208"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "6", "final": "15", "foul": "6"}, "teams": ["2560", "938", "1785"]}, "coop": "0", "type": "Q_81", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["2335", "2164", "3798"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "16", "final": "24", "foul": "0"}, "teams": ["1737", "1208", "3528"]}, "coop": "0", "type": "Q_82", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "11", "foul": "0", "tele": "0"}, "teams": ["1806", "2410", "3764"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "0", "final": "9", "foul": "0"}, "teams": ["3507", "3931", "2357"]}, "coop": "2", "type": "Q_83", "eventKey": "2012KC", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "28", "foul": "3", "tele": "3"}, "teams": ["3784", "1763", "1108"]}}, {"blue": {"score": {"brige": "10", "tele": "11", "hybrid": "6", "final": "27", "foul": "0"}, "teams": ["2949", "2874", "3973"]}, "coop": "0", "type": "Q_84", "eventKey": "2012KC", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "22", "foul": "0", "tele": "6"}, "teams": ["2353", "1782", "3284"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "6", "final": "14", "foul": "0"}, "teams": ["1652", "1775", "1802"]}, "coop": "0", "type": "Q_85", "eventKey": "2012KC", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "24", "foul": "0", "tele": "14"}, "teams": ["1994", "1997", "1777"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "18", "final": "27", "foul": "9"}, "teams": ["2457", "3798", "2345"]}, "coop": "0", "type": "Q_86", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "21", "foul": "3", "tele": "12"}, "teams": ["3485", "935", "937"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "10", "final": "19", "foul": "0"}, "teams": ["1847", "525", "2164"]}, "coop": "0", "type": "Q_87", "eventKey": "2012KC", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "24", "foul": "0", "tele": "4"}, "teams": ["1984", "1723", "2001"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "14", "final": "16", "foul": "0"}, "teams": ["938", "1982", "1810"]}, "coop": "0", "type": "Q_88", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "20", "final": "38", "foul": "3", "tele": "15"}, "teams": ["1448", "3528", "1825"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "3", "foul": "3"}, "teams": ["2972", "1782", "1987"]}, "coop": "0", "type": "Q_89", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "15", "foul": "6", "tele": "9"}, "teams": ["3507", "2353", "931"]}}, {"blue": {"score": {"brige": "0", "tele": "16", "hybrid": "11", "final": "33", "foul": "6"}, "teams": ["1777", "3284", "1208"]}, "coop": "2", "type": "Q_90", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "16", "foul": "0", "tele": "5"}, "teams": ["2996", "2560", "1985"]}}, {"blue": {"score": {"brige": "20", "tele": "12", "hybrid": "16", "final": "48", "foul": "0"}, "teams": ["2874", "1806", "1986"]}, "coop": "2", "type": "Q_91", "eventKey": "2012KC", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "29", "foul": "0", "tele": "3"}, "teams": ["967", "3931", "3485"]}}, {"blue": {"score": {"brige": "0", "tele": "7", "hybrid": "0", "final": "7", "foul": "0"}, "teams": ["2395", "2410", "4208"]}, "coop": "0", "type": "Q_92", "eventKey": "2012KC", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "25", "foul": "3", "tele": "6"}, "teams": ["1730", "1652", "1094"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "6", "final": "11", "foul": "0"}, "teams": ["1108", "1994", "1769"]}, "coop": "0", "type": "Q_93", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "15", "foul": "0", "tele": "9"}, "teams": ["1939", "3784", "2949"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "6", "final": "7", "foul": "0"}, "teams": ["1737", "2167", "2346"]}, "coop": "0", "type": "Q_94", "eventKey": "2012KC", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "64", "foul": "18", "tele": "14"}, "teams": ["16", "1997", "2335"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "0", "final": "5", "foul": "0"}, "teams": ["1827", "1763", "3973"]}, "coop": "0", "type": "Q_95", "eventKey": "2012KC", "red": {"score": {"bridge": "10", "hybrid": "4", "final": "16", "foul": "0", "tele": "2"}, "teams": ["1785", "2457", "1802"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "11", "final": "14", "foul": "0"}, "teams": ["662", "2004", "1775"]}, "coop": "0", "type": "Q_96", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "9", "foul": "9", "tele": "0"}, "teams": ["1764", "2357", "3764"]}}, {"blue": {"score": {"brige": "20", "tele": "12", "hybrid": "11", "final": "43", "foul": "0"}, "teams": ["3284", "1775", "1985"]}, "coop": "0", "type": "E_1", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "26", "foul": "9", "tele": "6"}, "teams": ["3784", "1986", "16"]}}, {"blue": {"score": {"brige": "20", "tele": "5", "hybrid": "11", "final": "39", "foul": "3"}, "teams": ["1987", "1094", "1982"]}, "coop": "0", "type": "E_2", "eventKey": "2012KC", "red": {"score": {"bridge": "10", "hybrid": "11", "final": "25", "foul": "0", "tele": "4"}, "teams": ["1730", "1806", "2949"]}}, {"blue": {"score": {"brige": "10", "tele": "8", "hybrid": "16", "final": "34", "foul": "0"}, "teams": ["3507", "2346", "1984"]}, "coop": "0", "type": "E_3", "eventKey": "2012KC", "red": {"score": {"bridge": "10", "hybrid": "16", "final": "56", "foul": "12", "tele": "18"}, "teams": ["3528", "1802", "525"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "18", "final": "48", "foul": "18"}, "teams": ["1825", "967", "1997"]}, "coop": "0", "type": "E_4", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "27", "foul": "0", "tele": "27"}, "teams": ["1769", "1208", "935"]}}, {"blue": {"score": {"brige": "20", "tele": "9", "hybrid": "12", "final": "41", "foul": "0"}, "teams": ["3284", "1775", "1985"]}, "coop": "0", "type": "E_5", "eventKey": "2012KC", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "89", "foul": "15", "tele": "36"}, "teams": ["3784", "1986", "16"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "6", "final": "16", "foul": "0"}, "teams": ["1094", "1987", "1982"]}, "coop": "0", "type": "E_6", "eventKey": "2012KC", "red": {"score": {"bridge": "20", "hybrid": "17", "final": "43", "foul": "0", "tele": "6"}, "teams": ["2949", "1730", "1806"]}}, {"blue": {"score": {"brige": "10", "tele": "18", "hybrid": "6", "final": "37", "foul": "3"}, "teams": ["1984", "2346", "3507"]}, "coop": "0", "type": "E_7", "eventKey": "2012KC", "red": {"score": {"bridge": "10", "hybrid": "26", "final": "39", "foul": "0", "tele": "3"}, "teams": ["525", "3528", "1802"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "6", "final": "18", "foul": "3"}, "teams": ["1825", "967", "1997"]}, "coop": "0", "type": "E_8", "eventKey": "2012KC", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "56", "foul": "6", "tele": "18"}, "teams": ["1208", "935", "1769"]}}, {"blue": {"score": {"brige": "20", "tele": "13", "hybrid": "11", "final": "47", "foul": "3"}, "teams": ["3284", "1775", "1985"]}, "coop": "0", "type": "E_9", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "48", "foul": "3", "tele": "27"}, "teams": ["3784", "16", "1986"]}}, {"blue": {"score": {"brige": "20", "tele": "3", "hybrid": "0", "final": "26", "foul": "3"}, "teams": ["1982", "1094", "1987"]}, "coop": "0", "type": "E_10", "eventKey": "2012KC", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "21", "foul": "3", "tele": "8"}, "teams": ["2949", "1730", "1806"]}}, {"blue": {"score": {"brige": "20", "tele": "12", "hybrid": "6", "final": "38", "foul": "0"}, "teams": ["1997", "967", "1825"]}, "coop": "0", "type": "E_12", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "28", "final": "63", "foul": "6", "tele": "29"}, "teams": ["1208", "1769", "935"]}}, {"blue": {"score": {"brige": "20", "tele": "5", "hybrid": "22", "final": "47", "foul": "0"}, "teams": ["1094", "1987", "1982"]}, "coop": "0", "type": "E_13", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "34", "foul": "0", "tele": "24"}, "teams": ["3784", "1986", "16"]}}, {"blue": {"score": {"brige": "20", "tele": "18", "hybrid": "17", "final": "55", "foul": "0"}, "teams": ["1769", "1208", "935"]}, "coop": "0", "type": "E_14", "eventKey": "2012KC", "red": {"score": {"bridge": "10", "hybrid": "22", "final": "38", "foul": "0", "tele": "6"}, "teams": ["1802", "3528", "525"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "6", "final": "10", "foul": "0"}, "teams": ["1987", "1982", "1094"]}, "coop": "0", "type": "E_15", "eventKey": "2012KC", "red": {"score": {"bridge": "10", "hybrid": "23", "final": "72", "foul": "3", "tele": "36"}, "teams": ["16", "3784", "1986"]}}, {"blue": {"score": {"brige": "20", "tele": "17", "hybrid": "17", "final": "54", "foul": "0"}, "teams": ["935", "1769", "1208"]}, "coop": "0", "type": "E_16", "eventKey": "2012KC", "red": {"score": {"bridge": "20", "hybrid": "15", "final": "40", "foul": "0", "tele": "5"}, "teams": ["1802", "3528", "525"]}}, {"blue": {"score": {"brige": "0", "tele": "11", "hybrid": "10", "final": "30", "foul": "9"}, "teams": ["1094", "1987", "1982"]}, "coop": "0", "type": "E_17", "eventKey": "2012KC", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "63", "foul": "3", "tele": "38"}, "teams": ["16", "1986", "3784"]}}, {"blue": {"score": {"brige": "10", "tele": "20", "hybrid": "18", "final": "48", "foul": "0"}, "teams": ["935", "1769", "1208"]}, "coop": "0", "type": "E_19", "eventKey": "2012KC", "red": {"score": {"bridge": "10", "hybrid": "34", "final": "73", "foul": "9", "tele": "20"}, "teams": ["1986", "3784", "16"]}}, {"blue": {"score": {"brige": "20", "tele": "12", "hybrid": "17", "final": "49", "foul": "0"}, "teams": ["1769", "935", "1208"]}, "coop": "0", "type": "E_20", "eventKey": "2012KC", "red": {"score": {"bridge": "0", "hybrid": "29", "final": "68", "foul": "0", "tele": "39"}, "teams": ["1986", "16", "3784"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "0", "final": "1", "foul": "0"}, "teams": ["2221", "3991", "2078"]}, "coop": "0", "type": "Q_7", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "12", "foul": "0", "tele": "12"}, "teams": ["418", "57", "1477"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3946", "4336", "2078"]}, "coop": "0", "type": "Q_13", "eventKey": "2012LA", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "25", "foul": "3", "tele": "12"}, "teams": ["1920", "2080", "2848"]}}, {"blue": {"score": {"brige": "10", "tele": "4", "hybrid": "5", "final": "19", "foul": "0"}, "teams": ["3471", "1421", "3350"]}, "coop": "0", "type": "Q_14", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "0", "tele": "6"}, "teams": ["1296", "2091", "3469"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["1304", "3310", "2221"]}, "coop": "0", "type": "Q_15", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "12", "foul": "0", "tele": "0"}, "teams": ["3666", "1927", "3991"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["4113", "4179", "364"]}, "coop": "0", "type": "Q_16", "eventKey": "2012LA", "red": {"score": {"bridge": "10", "hybrid": "4", "final": "17", "foul": "0", "tele": "3"}, "teams": ["4316", "1912", "4209"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["57", "1920", "3337"]}, "coop": "0", "type": "Q_17", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3606", "3039", "418"]}}, {"blue": {"score": {"brige": "0", "tele": "7", "hybrid": "0", "final": "10", "foul": "3"}, "teams": ["4199", "1296", "3471"]}, "coop": "0", "type": "Q_18", "eventKey": "2012LA", "red": {"score": {"bridge": "10", "hybrid": "10", "final": "28", "foul": "0", "tele": "8"}, "teams": ["3937", "2848", "3616"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["4087", "3468", "3666"]}, "coop": "2", "type": "Q_19", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "33", "foul": "3", "tele": "12"}, "teams": ["1477", "3350", "3946"]}}, {"blue": {"score": {"brige": "10", "tele": "30", "hybrid": "0", "final": "40", "foul": "0"}, "teams": ["1421", "624", "3228"]}, "coop": "0", "type": "Q_21", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["57", "1927", "4297"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "3", "foul": "3"}, "teams": ["4053", "2091", "4316"]}, "coop": "0", "type": "Q_22", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "10", "foul": "3", "tele": "2"}, "teams": ["364", "2080", "3753"]}}, {"blue": {"score": {"brige": "10", "tele": "11", "hybrid": "0", "final": "24", "foul": "3"}, "teams": ["3672", "1296", "3337"]}, "coop": "0", "type": "Q_25", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3991", "4136", "1304"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "11", "final": "16", "foul": "3"}, "teams": ["4113", "3350", "3616"]}, "coop": "0", "type": "Q_26", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["1920", "4297", "418"]}}, {"blue": {"score": {"brige": "0", "tele": "7", "hybrid": "0", "final": "7", "foul": "0"}, "teams": ["4209", "1421", "3946"]}, "coop": "0", "type": "Q_33", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3228", "4336", "3606"]}}, {"blue": {"score": {"brige": "0", "tele": "10", "hybrid": "11", "final": "21", "foul": "0"}, "teams": ["1296", "3937", "1304"]}, "coop": "2", "type": "Q_34", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "7", "foul": "0", "tele": "7"}, "teams": ["2078", "4113", "3468"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "6", "final": "17", "foul": "3"}, "teams": ["1296", "3937", "1304"]}, "coop": "2", "type": "Q_34", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "4", "foul": "0", "tele": "4"}, "teams": ["2078", "4113", "3468"]}}, {"blue": {"score": {"brige": "20", "tele": "18", "hybrid": "0", "final": "38", "foul": "0"}, "teams": ["4087", "624", "418"]}, "coop": "0", "type": "Q_35", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "12", "foul": "9", "tele": "3"}, "teams": ["3310", "3471", "2183"]}}, {"blue": {"score": {"brige": "20", "tele": "1", "hybrid": "0", "final": "21", "foul": "0"}, "teams": ["4297", "1912", "2091"]}, "coop": "0", "type": "Q_36", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "1", "foul": "0", "tele": "1"}, "teams": ["4179", "3991", "2242"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "5", "final": "7", "foul": "0"}, "teams": ["3228", "1920", "3753"]}, "coop": "0", "type": "Q_37", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "11", "foul": "0", "tele": "11"}, "teams": ["456", "3337", "3666"]}}, {"blue": {"score": {"brige": "20", "tele": "18", "hybrid": "10", "final": "48", "foul": "0"}, "teams": ["1477", "2992", "1421"]}, "coop": "2", "type": "Q_38", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "4", "final": "15", "foul": "0", "tele": "11"}, "teams": ["3350", "2848", "1927"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["3039", "4209", "4353"]}, "coop": "0", "type": "Q_39", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["4053", "4199", "3411"]}}, {"blue": {"score": {"brige": "20", "tele": "2", "hybrid": "6", "final": "28", "foul": "0"}, "teams": ["4316", "3469", "2080"]}, "coop": "0", "type": "Q_40", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "10", "foul": "0", "tele": "5"}, "teams": ["3672", "3616", "2221"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "6", "final": "31", "foul": "12"}, "teams": ["57", "4136", "3310"]}, "coop": "0", "type": "Q_41", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["364", "4336", "4107"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4179", "3666", "2078"]}, "coop": "0", "type": "Q_42", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "9", "foul": "0", "tele": "3"}, "teams": ["1927", "3471", "4087"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "6", "final": "12", "foul": "0"}, "teams": ["1304", "3039", "2091"]}, "coop": "2", "type": "Q_43", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "30", "foul": "0", "tele": "24"}, "teams": ["1477", "4297", "2848"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "4", "foul": "0"}, "teams": ["3991", "3411", "4209"]}, "coop": "0", "type": "Q_44", "eventKey": "2012LA", "red": {"score": {"bridge": "10", "hybrid": "17", "final": "32", "foul": "0", "tele": "5"}, "teams": ["3946", "3616", "624"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "4", "final": "7", "foul": "3"}, "teams": ["418", "4336", "3469"]}, "coop": "0", "type": "Q_45", "eventKey": "2012LA", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "29", "foul": "3", "tele": "10"}, "teams": ["4316", "2992", "4107"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "4", "foul": "0"}, "teams": ["3672", "4353", "3606"]}, "coop": "0", "type": "Q_46", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "11", "foul": "0", "tele": "5"}, "teams": ["1296", "57", "1912"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["3228", "3337", "4113"]}, "coop": "0", "type": "Q_47", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "14", "foul": "3", "tele": "1"}, "teams": ["3468", "4053", "2080"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "17", "final": "24", "foul": "3"}, "teams": ["3937", "3753", "3350"]}, "coop": "0", "type": "Q_48", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["4136", "2221", "2242"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "10", "final": "12", "foul": "0"}, "teams": ["4199", "1920", "456"]}, "coop": "2", "type": "Q_49", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "14", "foul": "0", "tele": "2"}, "teams": ["2183", "364", "1421"]}}, {"blue": {"score": {"brige": "10", "tele": "21", "hybrid": "6", "final": "37", "foul": "0"}, "teams": ["3310", "1477", "4316"]}, "coop": "0", "type": "Q_50", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["4353", "4297", "3471"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2080", "418", "3228"]}, "coop": "0", "type": "Q_51", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "3", "tele": "0"}, "teams": ["4179", "1912", "1304"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4136", "4209", "3468"]}, "coop": "0", "type": "Q_52", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "15", "foul": "3", "tele": "0"}, "teams": ["3666", "57", "3039"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "6", "final": "18", "foul": "3"}, "teams": ["2242", "2078", "2183"]}, "coop": "0", "type": "Q_53", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "0", "tele": "6"}, "teams": ["3946", "3672", "4199"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "0", "final": "19", "foul": "3"}, "teams": ["624", "4053", "3469"]}, "coop": "0", "type": "Q_54", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["1920", "2091", "4087"]}}, {"blue": {"score": {"brige": "10", "tele": "4", "hybrid": "24", "final": "38", "foul": "0"}, "teams": ["3991", "364", "3937"]}, "coop": "0", "type": "Q_55", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "9", "foul": "3", "tele": "0"}, "teams": ["3350", "4336", "2992"]}}, {"blue": {"score": {"brige": "10", "tele": "7", "hybrid": "5", "final": "22", "foul": "0"}, "teams": ["3616", "1927", "3606"]}, "coop": "0", "type": "Q_56", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "7", "foul": "0", "tele": "2"}, "teams": ["456", "3753", "4113"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "15", "final": "25", "foul": "0"}, "teams": ["3411", "2221", "2848"]}, "coop": "0", "type": "Q_57", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "20", "foul": "0", "tele": "10"}, "teams": ["3337", "1421", "4107"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "3", "foul": "0"}, "teams": ["1296", "3946", "1920"]}, "coop": "0", "type": "Q_58", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["4209", "3310", "2091"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "6", "final": "9", "foul": "0"}, "teams": ["2183", "3469", "3228"]}, "coop": "2", "type": "Q_59", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "34", "foul": "0", "tele": "22"}, "teams": ["1477", "4336", "3039"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "6", "foul": "0"}, "teams": ["2992", "4179", "4297"]}, "coop": "0", "type": "Q_60", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "6", "foul": "0", "tele": "1"}, "teams": ["3753", "4199", "4136"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "12", "final": "12", "foul": "0"}, "teams": ["3471", "57", "3411"]}, "coop": "0", "type": "Q_61", "eventKey": "2012LA", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "25", "foul": "0", "tele": "9"}, "teams": ["4113", "2848", "2242"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "22", "final": "33", "foul": "3"}, "teams": ["456", "3937", "1927"]}, "coop": "0", "type": "Q_62", "eventKey": "2012LA", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "19", "foul": "0", "tele": "3"}, "teams": ["1296", "418", "4053"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "4", "foul": "0"}, "teams": ["1304", "3616", "3468"]}, "coop": "0", "type": "Q_63", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "14", "foul": "0", "tele": "2"}, "teams": ["364", "3606", "4087"]}}, {"blue": {"score": {"brige": "20", "tele": "15", "hybrid": "12", "final": "53", "foul": "6"}, "teams": ["3337", "624", "1912"]}, "coop": "2", "type": "Q_64", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "13", "foul": "0", "tele": "2"}, "teams": ["3350", "4353", "2221"]}}, {"blue": {"score": {"brige": "20", "tele": "0", "hybrid": "0", "final": "23", "foul": "3"}, "teams": ["2080", "2078", "4107"]}, "coop": "0", "type": "Q_65", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "22", "foul": "0", "tele": "17"}, "teams": ["3991", "4316", "1421"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "18", "final": "22", "foul": "0"}, "teams": ["3666", "3310", "2848"]}, "coop": "0", "type": "Q_66", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "21", "foul": "0", "tele": "3"}, "teams": ["3672", "2183", "4179"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "6", "final": "10", "foul": "0"}, "teams": ["2091", "3937", "2242"]}, "coop": "0", "type": "Q_67", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "11", "foul": "0", "tele": "1"}, "teams": ["1920", "3469", "1927"]}}, {"blue": {"score": {"brige": "20", "tele": "2", "hybrid": "5", "final": "48", "foul": "21"}, "teams": ["2221", "3039", "3946"]}, "coop": "0", "type": "Q_68", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "22", "foul": "6", "tele": "5"}, "teams": ["1304", "2992", "4113"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["456", "4297", "2080"]}, "coop": "0", "type": "Q_69", "eventKey": "2012LA", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "16", "foul": "0", "tele": "0"}, "teams": ["4087", "57", "4209"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "5", "final": "16", "foul": "3"}, "teams": ["4316", "3753", "418"]}, "coop": "0", "type": "Q_70", "eventKey": "2012LA", "red": {"score": {"bridge": "10", "hybrid": "5", "final": "20", "foul": "0", "tele": "5"}, "teams": ["1296", "3411", "3228"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "0", "final": "5", "foul": "0"}, "teams": ["4199", "3606", "4107"]}, "coop": "2", "type": "Q_71", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "21", "foul": "0", "tele": "15"}, "teams": ["3666", "624", "3350"]}}, {"blue": {"score": {"brige": "20", "tele": "8", "hybrid": "5", "final": "33", "foul": "0"}, "teams": ["3616", "3337", "4136"]}, "coop": "0", "type": "Q_72", "eventKey": "2012LA", "red": {"score": {"bridge": "20", "hybrid": "5", "final": "32", "foul": "0", "tele": "7"}, "teams": ["2078", "1912", "1421"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "5", "final": "8", "foul": "3"}, "teams": ["3468", "3672", "3471"]}, "coop": "0", "type": "Q_73", "eventKey": "2012LA", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "10", "foul": "0", "tele": "0"}, "teams": ["4336", "4353", "4053"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "24", "final": "33", "foul": "0"}, "teams": ["3991", "1477", "1296"]}, "coop": "0", "type": "Q_74", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "4", "final": "20", "foul": "12", "tele": "4"}, "teams": ["364", "3411", "2242"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "4", "final": "14", "foul": "6"}, "teams": ["456", "3469", "4107"]}, "coop": "0", "type": "Q_75", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3946", "4297", "1304"]}}, {"blue": {"score": {"brige": "10", "tele": "9", "hybrid": "6", "final": "25", "foul": "0"}, "teams": ["3616", "57", "2078"]}, "coop": "0", "type": "Q_76", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "6", "foul": "0", "tele": "0"}, "teams": ["4179", "2091", "3350"]}}, {"blue": {"score": {"brige": "10", "tele": "4", "hybrid": "12", "final": "29", "foul": "3"}, "teams": ["2080", "1421", "3310"]}, "coop": "0", "type": "Q_77", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "26", "final": "30", "foul": "0", "tele": "4"}, "teams": ["3937", "3039", "3468"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "6", "final": "33", "foul": "15"}, "teams": ["3991", "2992", "4199"]}, "coop": "0", "type": "Q_78", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "12", "foul": "9", "tele": "3"}, "teams": ["1920", "3606", "3471"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4336", "1912", "4113"]}, "coop": "2", "type": "Q_79", "eventKey": "2012LA", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "46", "foul": "0", "tele": "30"}, "teams": ["3753", "1477", "624"]}}, {"blue": {"score": {"brige": "0", "tele": "10", "hybrid": "12", "final": "22", "foul": "0"}, "teams": ["364", "4053", "2848"]}, "coop": "0", "type": "Q_80", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "5", "foul": "0", "tele": "5"}, "teams": ["418", "2221", "3666"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "12", "final": "17", "foul": "0"}, "teams": ["4136", "2183", "1927"]}, "coop": "0", "type": "Q_81", "eventKey": "2012LA", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "18", "foul": "0", "tele": "8"}, "teams": ["4316", "3337", "4353"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "6", "foul": "0"}, "teams": ["4087", "3672", "3350"]}, "coop": "0", "type": "Q_82", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "9", "foul": "0", "tele": "9"}, "teams": ["4209", "3228", "2992"]}}, {"blue": {"score": {"brige": "0", "tele": "15", "hybrid": "12", "final": "27", "foul": "0"}, "teams": ["1912", "3468", "3411"]}, "coop": "0", "type": "Q_83", "eventKey": "2012LA", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "33", "foul": "0", "tele": "17"}, "teams": ["624", "2078", "1920"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "11", "final": "11", "foul": "0"}, "teams": ["1304", "57", "3753"]}, "coop": "0", "type": "Q_84", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "9", "foul": "0", "tele": "3"}, "teams": ["4199", "3310", "3469"]}}, {"blue": {"score": {"brige": "10", "tele": "7", "hybrid": "4", "final": "21", "foul": "0"}, "teams": ["364", "4297", "3616"]}, "coop": "0", "type": "Q_85", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "4", "foul": "0", "tele": "4"}, "teams": ["4336", "3337", "3937"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3471", "4136", "2091"]}, "coop": "0", "type": "Q_86", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "3", "tele": "0"}, "teams": ["456", "2221", "3228"]}}, {"blue": {"score": {"brige": "10", "tele": "12", "hybrid": "6", "final": "28", "foul": "0"}, "teams": ["2848", "4316", "2183"]}, "coop": "0", "type": "Q_87", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "9", "foul": "0", "tele": "3"}, "teams": ["3606", "4053", "3991"]}}, {"blue": {"score": {"brige": "0", "tele": "7", "hybrid": "0", "final": "7", "foul": "0"}, "teams": ["2242", "3666", "1421"]}, "coop": "0", "type": "Q_88", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "4", "foul": "0", "tele": "4"}, "teams": ["418", "4353", "4113"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "18", "final": "46", "foul": "12"}, "teams": ["1296", "1927", "3039"]}, "coop": "0", "type": "Q_89", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "1", "foul": "0", "tele": "1"}, "teams": ["3946", "2080", "4087"]}}, {"blue": {"score": {"brige": "10", "tele": "10", "hybrid": "23", "final": "46", "foul": "3"}, "teams": ["4179", "1477", "3937"]}, "coop": "2", "type": "Q_90", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "15", "foul": "3", "tele": "2"}, "teams": ["4107", "3672", "4209"]}}, {"blue": {"score": {"brige": "20", "tele": "3", "hybrid": "0", "final": "23", "foul": "0"}, "teams": ["2221", "4053", "4107"]}, "coop": "0", "type": "E_1", "eventKey": "2012LA", "red": {"score": {"bridge": "10", "hybrid": "24", "final": "53", "foul": "0", "tele": "19"}, "teams": ["1477", "4353", "624"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "18", "final": "31", "foul": "0"}, "teams": ["57", "3039", "3310"]}, "coop": "0", "type": "E_2", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "3", "tele": "0"}, "teams": ["3616", "456", "3937"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "22", "final": "24", "foul": "0"}, "teams": ["3753", "1912", "1927"]}, "coop": "0", "type": "E_3", "eventKey": "2012LA", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "49", "foul": "6", "tele": "21"}, "teams": ["2848", "4316", "1296"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "6", "final": "10", "foul": "0"}, "teams": ["2183", "3350", "3337"]}, "coop": "0", "type": "E_4", "eventKey": "2012LA", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "29", "foul": "0", "tele": "13"}, "teams": ["1421", "2078", "2992"]}}, {"blue": {"score": {"brige": "10", "tele": "5", "hybrid": "5", "final": "20", "foul": "0"}, "teams": ["4107", "2221", "4053"]}, "coop": "0", "type": "E_5", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "47", "foul": "0", "tele": "36"}, "teams": ["624", "4353", "1477"]}}, {"blue": {"score": {"brige": "20", "tele": "2", "hybrid": "12", "final": "34", "foul": "0"}, "teams": ["3310", "57", "3039"]}, "coop": "0", "type": "E_6", "eventKey": "2012LA", "red": {"score": {"bridge": "20", "hybrid": "11", "final": "38", "foul": "0", "tele": "7"}, "teams": ["3616", "456", "3937"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "11", "final": "14", "foul": "0"}, "teams": ["1912", "3753", "1927"]}, "coop": "0", "type": "E_7", "eventKey": "2012LA", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "50", "foul": "0", "tele": "28"}, "teams": ["2848", "1296", "4316"]}}, {"blue": {"score": {"brige": "0", "tele": "13", "hybrid": "12", "final": "25", "foul": "0"}, "teams": ["3350", "2183", "3337"]}, "coop": "0", "type": "E_8", "eventKey": "2012LA", "red": {"score": {"bridge": "10", "hybrid": "11", "final": "38", "foul": "0", "tele": "17"}, "teams": ["2992", "2078", "1421"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "24", "final": "43", "foul": "9"}, "teams": ["3310", "3039", "57"]}, "coop": "0", "type": "E_10", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["456", "3937", "3616"]}}, {"blue": {"score": {"brige": "20", "tele": "3", "hybrid": "24", "final": "47", "foul": "0"}, "teams": ["3310", "57", "3039"]}, "coop": "0", "type": "E_13", "eventKey": "2012LA", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "56", "foul": "0", "tele": "18"}, "teams": ["624", "1477", "4353"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "12", "final": "24", "foul": "0"}, "teams": ["2078", "1421", "2992"]}, "coop": "0", "type": "E_14", "eventKey": "2012LA", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "48", "foul": "3", "tele": "17"}, "teams": ["2848", "1296", "4316"]}}, {"blue": {"score": {"brige": "10", "tele": "4", "hybrid": "24", "final": "38", "foul": "0"}, "teams": ["3039", "57", "3310"]}, "coop": "0", "type": "E_15", "eventKey": "2012LA", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "59", "foul": "6", "tele": "21"}, "teams": ["1477", "4353", "624"]}}, {"blue": {"score": {"brige": "20", "tele": "10", "hybrid": "16", "final": "46", "foul": "0"}, "teams": ["2078", "2992", "1421"]}, "coop": "0", "type": "E_16", "eventKey": "2012LA", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "45", "foul": "0", "tele": "23"}, "teams": ["2848", "4316", "1296"]}}, {"blue": {"score": {"brige": "20", "tele": "18", "hybrid": "0", "final": "38", "foul": "0"}, "teams": ["2078", "2992", "1421"]}, "coop": "0", "type": "E_18", "eventKey": "2012LA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "9", "foul": "0", "tele": "9"}, "teams": ["1296", "2848", "4316"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "6", "final": "14", "foul": "0"}, "teams": ["2992", "1421", "2078"]}, "coop": "0", "type": "E_19", "eventKey": "2012LA", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "50", "foul": "0", "tele": "18"}, "teams": ["624", "4353", "1477"]}}, {"blue": {"score": {"brige": "0", "tele": "28", "hybrid": "6", "final": "34", "foul": "0"}, "teams": ["1421", "2078", "2992"]}, "coop": "0", "type": "E_20", "eventKey": "2012LA", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "53", "foul": "0", "tele": "27"}, "teams": ["4353", "624", "1477"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["2347", "2638", "522"]}, "coop": "0", "type": "Q_1", "eventKey": "2012LI", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "34", "foul": "0", "tele": "6"}, "teams": ["3624", "329", "884"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3171", "371", "810"]}, "coop": "0", "type": "Q_2", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["2487", "2010", "4006"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "4", "foul": "0"}, "teams": ["263", "352", "270"]}, "coop": "0", "type": "Q_3", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "13", "foul": "3", "tele": "10"}, "teams": ["1751", "2641", "2872"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "0", "final": "6", "foul": "0"}, "teams": ["1203", "1808", "3460"]}, "coop": "0", "type": "Q_4", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["871", "1803", "514"]}}, {"blue": {"score": {"brige": "0", "tele": "10", "hybrid": "6", "final": "25", "foul": "9"}, "teams": ["533", "271", "1607"]}, "coop": "2", "type": "Q_5", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "9", "foul": "0", "tele": "9"}, "teams": ["527", "1537", "1546"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "0", "final": "11", "foul": "3"}, "teams": ["3950", "496", "1554"]}, "coop": "0", "type": "Q_6", "eventKey": "2012LI", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "29", "foul": "0", "tele": "9"}, "teams": ["358", "564", "1230"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["3059", "353", "3474"]}, "coop": "0", "type": "Q_7", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "21", "foul": "6", "tele": "3"}, "teams": ["1468", "3137", "2161"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "0", "final": "9", "foul": "3"}, "teams": ["545", "569", "28"]}, "coop": "2", "type": "Q_8", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "22", "final": "40", "foul": "12", "tele": "6"}, "teams": ["2027", "2875", "1796"]}}, {"blue": {"score": {"brige": "20", "tele": "12", "hybrid": "10", "final": "42", "foul": "0"}, "teams": ["870", "263", "527"]}, "coop": "0", "type": "Q_9", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "18", "foul": "9", "tele": "3"}, "teams": ["1601", "2487", "871"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "0", "final": "6", "foul": "0"}, "teams": ["270", "3460", "884"]}, "coop": "0", "type": "Q_10", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "21", "foul": "0", "tele": "15"}, "teams": ["810", "2872", "329"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "15", "final": "28", "foul": "3"}, "teams": ["2161", "2641", "353"]}, "coop": "2", "type": "Q_11", "eventKey": "2012LI", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "10", "foul": "0", "tele": "0"}, "teams": ["522", "3171", "3624"]}}, {"blue": {"score": {"brige": "20", "tele": "6", "hybrid": "12", "final": "38", "foul": "0"}, "teams": ["1468", "545", "271"]}, "coop": "2", "type": "Q_12", "eventKey": "2012LI", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "43", "foul": "9", "tele": "6"}, "teams": ["358", "1808", "1796"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "4", "foul": "0"}, "teams": ["4006", "3137", "496"]}, "coop": "0", "type": "Q_14", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "4", "foul": "0", "tele": "4"}, "teams": ["1546", "352", "1607"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "0", "final": "13", "foul": "0"}, "teams": ["1554", "2010", "533"]}, "coop": "0", "type": "Q_15", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "7", "foul": "0", "tele": "1"}, "teams": ["2027", "1203", "1601"]}}, {"blue": {"score": {"brige": "20", "tele": "2", "hybrid": "10", "final": "32", "foul": "0"}, "teams": ["1803", "2875", "569"]}, "coop": "0", "type": "Q_16", "eventKey": "2012LI", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "13", "foul": "0", "tele": "3"}, "teams": ["3059", "2347", "1230"]}}, {"blue": {"score": {"brige": "10", "tele": "9", "hybrid": "10", "final": "29", "foul": "0"}, "teams": ["371", "2638", "271"]}, "coop": "0", "type": "Q_17", "eventKey": "2012LI", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "28", "foul": "0", "tele": "0"}, "teams": ["514", "28", "564"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "3", "foul": "0"}, "teams": ["2872", "1546", "353"]}, "coop": "0", "type": "Q_18", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "22", "foul": "0", "tele": "10"}, "teams": ["2487", "1751", "545"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "5", "final": "11", "foul": "0"}, "teams": ["4006", "522", "263"]}, "coop": "2", "type": "Q_19", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "14", "foul": "0", "tele": "4"}, "teams": ["1554", "1203", "3137"]}}, {"blue": {"score": {"brige": "10", "tele": "21", "hybrid": "18", "final": "61", "foul": "12"}, "teams": ["1796", "2347", "1468"]}, "coop": "0", "type": "Q_20", "eventKey": "2012LI", "red": {"score": {"bridge": "10", "hybrid": "10", "final": "24", "foul": "0", "tele": "4"}, "teams": ["533", "496", "1537"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "10", "final": "25", "foul": "3"}, "teams": ["2875", "352", "358"]}, "coop": "0", "type": "Q_21", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "21", "foul": "0", "tele": "16"}, "teams": ["514", "3460", "2638"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["2161", "810", "569"]}, "coop": "0", "type": "Q_22", "eventKey": "2012LI", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "26", "foul": "0", "tele": "6"}, "teams": ["371", "870", "1803"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2027", "28", "884"]}, "coop": "0", "type": "Q_23", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["2641", "1601", "1808"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "6", "final": "18", "foul": "0"}, "teams": ["2010", "1607", "3059"]}, "coop": "0", "type": "Q_24", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "3", "tele": "0"}, "teams": ["3474", "3624", "871"]}}, {"blue": {"score": {"brige": "20", "tele": "7", "hybrid": "16", "final": "49", "foul": "6"}, "teams": ["3171", "1230", "527"]}, "coop": "0", "type": "Q_25", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "9", "foul": "0", "tele": "3"}, "teams": ["270", "329", "3950"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "3", "foul": "0"}, "teams": ["810", "870", "352"]}, "coop": "0", "type": "Q_26", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "15", "foul": "3", "tele": "0"}, "teams": ["2347", "353", "271"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "5", "final": "23", "foul": "18"}, "teams": ["2161", "514", "1601"]}, "coop": "0", "type": "Q_27", "eventKey": "2012LI", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "41", "foul": "0", "tele": "15"}, "teams": ["1796", "4006", "1546"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "10", "final": "12", "foul": "0"}, "teams": ["1607", "564", "1537"]}, "coop": "0", "type": "Q_28", "eventKey": "2012LI", "red": {"score": {"bridge": "10", "hybrid": "10", "final": "30", "foul": "3", "tele": "7"}, "teams": ["2010", "2875", "2641"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "5", "final": "22", "foul": "12"}, "teams": ["263", "871", "3171"]}, "coop": "2", "type": "Q_29", "eventKey": "2012LI", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "26", "foul": "0", "tele": "16"}, "teams": ["2638", "496", "1468"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "5", "final": "17", "foul": "0"}, "teams": ["522", "527", "1751"]}, "coop": "2", "type": "Q_30", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "8", "foul": "0", "tele": "8"}, "teams": ["569", "371", "2027"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "27", "final": "51", "foul": "24"}, "teams": ["3137", "3624", "1803"]}, "coop": "0", "type": "Q_31", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "0", "tele": "6"}, "teams": ["545", "884", "3950"]}}, {"blue": {"score": {"brige": "10", "tele": "16", "hybrid": "12", "final": "38", "foul": "0"}, "teams": ["2872", "1230", "2487"]}, "coop": "0", "type": "Q_32", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "22", "foul": "0", "tele": "11"}, "teams": ["3474", "1203", "533"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "6", "final": "7", "foul": "0"}, "teams": ["3059", "358", "1554"]}, "coop": "0", "type": "Q_33", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "27", "foul": "9", "tele": "0"}, "teams": ["3460", "28", "329"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["1808", "1546", "870"]}, "coop": "0", "type": "Q_34", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "11", "foul": "3", "tele": "2"}, "teams": ["270", "2010", "527"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "0", "final": "6", "foul": "0"}, "teams": ["2347", "2027", "514"]}, "coop": "0", "type": "Q_35", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "22", "foul": "6", "tele": "5"}, "teams": ["3171", "3137", "564"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "6", "foul": "3"}, "teams": ["1537", "871", "569"]}, "coop": "0", "type": "Q_36", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "19", "foul": "3", "tele": "10"}, "teams": ["884", "2161", "352"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "15", "final": "18", "foul": "3"}, "teams": ["810", "3624", "263"]}, "coop": "0", "type": "Q_37", "eventKey": "2012LI", "red": {"score": {"bridge": "20", "hybrid": "8", "final": "52", "foul": "12", "tele": "12"}, "teams": ["28", "3950", "1230"]}}, {"blue": {"score": {"brige": "10", "tele": "16", "hybrid": "11", "final": "40", "foul": "3"}, "teams": ["1601", "353", "358"]}, "coop": "0", "type": "Q_38", "eventKey": "2012LI", "red": {"score": {"bridge": "10", "hybrid": "10", "final": "25", "foul": "0", "tele": "5"}, "teams": ["3460", "2487", "1607"]}}, {"blue": {"score": {"brige": "10", "tele": "1", "hybrid": "0", "final": "11", "foul": "0"}, "teams": ["1203", "2641", "371"]}, "coop": "2", "type": "Q_39", "eventKey": "2012LI", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "64", "foul": "0", "tele": "26"}, "teams": ["329", "1796", "545"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4006", "1751", "1808"]}, "coop": "0", "type": "Q_40", "eventKey": "2012LI", "red": {"score": {"bridge": "10", "hybrid": "10", "final": "42", "foul": "3", "tele": "19"}, "teams": ["533", "3059", "2638"]}}, {"blue": {"score": {"brige": "0", "tele": "24", "hybrid": "12", "final": "36", "foul": "0"}, "teams": ["1554", "3474", "1468"]}, "coop": "0", "type": "Q_41", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "26", "foul": "0", "tele": "16"}, "teams": ["270", "1803", "271"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "5", "final": "15", "foul": "0"}, "teams": ["2875", "2872", "3950"]}, "coop": "0", "type": "Q_42", "eventKey": "2012LI", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "31", "foul": "3", "tele": "8"}, "teams": ["522", "496", "1601"]}}, {"blue": {"score": {"brige": "10", "tele": "16", "hybrid": "5", "final": "34", "foul": "3"}, "teams": ["1230", "3460", "1546"]}, "coop": "0", "type": "Q_43", "eventKey": "2012LI", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "13", "foul": "0", "tele": "3"}, "teams": ["371", "2347", "1607"]}}, {"blue": {"score": {"brige": "20", "tele": "6", "hybrid": "12", "final": "41", "foul": "3"}, "teams": ["884", "3171", "358"]}, "coop": "0", "type": "Q_44", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "12", "foul": "3", "tele": "3"}, "teams": ["870", "1203", "3059"]}}, {"blue": {"score": {"brige": "10", "tele": "4", "hybrid": "10", "final": "24", "foul": "0"}, "teams": ["810", "1554", "514"]}, "coop": "0", "type": "Q_45", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "14", "foul": "0", "tele": "9"}, "teams": ["3624", "569", "533"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "9", "foul": "9"}, "teams": ["2027", "4006", "1537"]}, "coop": "0", "type": "Q_46", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "17", "foul": "3", "tele": "4"}, "teams": ["263", "3474", "2872"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "12", "final": "12", "foul": "0"}, "teams": ["2010", "2161", "271"]}, "coop": "0", "type": "Q_47", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "16", "foul": "6", "tele": "10"}, "teams": ["545", "2638", "2641"]}}, {"blue": {"score": {"brige": "0", "tele": "14", "hybrid": "10", "final": "24", "foul": "0"}, "teams": ["2487", "3137", "1796"]}, "coop": "0", "type": "Q_48", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "0", "tele": "6"}, "teams": ["270", "871", "1751"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "26", "final": "42", "foul": "0"}, "teams": ["1803", "329", "527"]}, "coop": "2", "type": "Q_49", "eventKey": "2012LI", "red": {"score": {"bridge": "10", "hybrid": "8", "final": "30", "foul": "3", "tele": "9"}, "teams": ["496", "353", "28"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "12", "final": "25", "foul": "3"}, "teams": ["352", "1468", "1808"]}, "coop": "2", "type": "Q_50", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "26", "foul": "6", "tele": "10"}, "teams": ["2875", "522", "564"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2638", "1537", "1601"]}, "coop": "0", "type": "Q_52", "eventKey": "2012LI", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "30", "foul": "6", "tele": "4"}, "teams": ["810", "270", "3059"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "0", "final": "12", "foul": "0"}, "teams": ["28", "1751", "2010"]}, "coop": "0", "type": "Q_53", "eventKey": "2012LI", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "31", "foul": "0", "tele": "9"}, "teams": ["358", "2347", "2161"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["2027", "1803", "522"]}, "coop": "2", "type": "Q_54", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "12", "foul": "0", "tele": "12"}, "teams": ["271", "2487", "1546"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "17", "final": "29", "foul": "0"}, "teams": ["564", "884", "1796"]}, "coop": "0", "type": "Q_55", "eventKey": "2012LI", "red": {"score": {"bridge": "20", "hybrid": "24", "final": "59", "foul": "9", "tele": "6"}, "teams": ["353", "1230", "4006"]}}, {"blue": {"score": {"brige": "20", "tele": "9", "hybrid": "6", "final": "38", "foul": "3"}, "teams": ["3624", "3950", "1468"]}, "coop": "2", "type": "Q_56", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["352", "371", "2872"]}}, {"blue": {"score": {"brige": "10", "tele": "16", "hybrid": "0", "final": "26", "foul": "0"}, "teams": ["569", "263", "329"]}, "coop": "2", "type": "Q_57", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "7", "foul": "0", "tele": "2"}, "teams": ["2875", "1808", "1607"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "5", "final": "5", "foul": "0"}, "teams": ["2641", "3474", "514"]}, "coop": "0", "type": "Q_58", "eventKey": "2012LI", "red": {"score": {"bridge": "20", "hybrid": "5", "final": "31", "foul": "0", "tele": "6"}, "teams": ["496", "871", "527"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["3137", "1601", "2347"]}, "coop": "0", "type": "Q_59", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "11", "foul": "0", "tele": "1"}, "teams": ["1203", "564", "271"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "7", "foul": "3"}, "teams": ["353", "3950", "1803"]}, "coop": "2", "type": "Q_60", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "14", "foul": "0", "tele": "2"}, "teams": ["2872", "2638", "2010"]}}, {"blue": {"score": {"brige": "10", "tele": "11", "hybrid": "11", "final": "41", "foul": "9"}, "teams": ["371", "1796", "533"]}, "coop": "0", "type": "Q_61", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "16", "final": "22", "foul": "0", "tele": "6"}, "teams": ["263", "3059", "884"]}}, {"blue": {"score": {"brige": "10", "tele": "12", "hybrid": "6", "final": "28", "foul": "0"}, "teams": ["3460", "1537", "1468"]}, "coop": "0", "type": "Q_62", "eventKey": "2012LI", "red": {"score": {"bridge": "10", "hybrid": "17", "final": "29", "foul": "0", "tele": "2"}, "teams": ["527", "3624", "28"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "4", "foul": "0"}, "teams": ["3171", "569", "1808"]}, "coop": "2", "type": "Q_63", "eventKey": "2012LI", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "51", "foul": "3", "tele": "10"}, "teams": ["3137", "358", "810"]}}, {"blue": {"score": {"brige": "10", "tele": "12", "hybrid": "18", "final": "52", "foul": "12"}, "teams": ["1230", "329", "1203"]}, "coop": "0", "type": "Q_64", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "4", "foul": "0", "tele": "4"}, "teams": ["2027", "1751", "352"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "22", "final": "37", "foul": "6"}, "teams": ["2487", "496", "2875"]}, "coop": "0", "type": "Q_65", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "4", "foul": "0", "tele": "4"}, "teams": ["2161", "4006", "870"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "0", "final": "1", "foul": "0"}, "teams": ["3474", "1607", "270"]}, "coop": "0", "type": "Q_66", "eventKey": "2012LI", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "20", "foul": "0", "tele": "0"}, "teams": ["522", "545", "514"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "0", "final": "1", "foul": "0"}, "teams": ["2641", "871", "3059"]}, "coop": "0", "type": "Q_67", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "6", "foul": "0", "tele": "0"}, "teams": ["1554", "1546", "2347"]}}, {"blue": {"score": {"brige": "0", "tele": "15", "hybrid": "10", "final": "25", "foul": "0"}, "teams": ["2638", "1230", "1751"]}, "coop": "2", "type": "Q_68", "eventKey": "2012LI", "red": {"score": {"bridge": "10", "hybrid": "16", "final": "36", "foul": "0", "tele": "10"}, "teams": ["2010", "1601", "1468"]}}, {"blue": {"score": {"brige": "10", "tele": "9", "hybrid": "6", "final": "25", "foul": "0"}, "teams": ["3624", "496", "870"]}, "coop": "0", "type": "Q_69", "eventKey": "2012LI", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "31", "foul": "6", "tele": "3"}, "teams": ["3137", "2027", "1808"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "12", "final": "25", "foul": "0"}, "teams": ["28", "1796", "352"]}, "coop": "0", "type": "Q_70", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "11", "foul": "6", "tele": "5"}, "teams": ["2487", "3474", "3171"]}}, {"blue": {"score": {"brige": "0", "tele": "7", "hybrid": "6", "final": "13", "foul": "0"}, "teams": ["884", "2872", "527"]}, "coop": "0", "type": "Q_71", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "1", "foul": "0", "tele": "1"}, "teams": ["1554", "2161", "1607"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "0", "final": "5", "foul": "0"}, "teams": ["564", "545", "871"]}, "coop": "2", "type": "Q_72", "eventKey": "2012LI", "red": {"score": {"bridge": "10", "hybrid": "15", "final": "29", "foul": "0", "tele": "4"}, "teams": ["522", "810", "533"]}}, {"blue": {"score": {"brige": "0", "tele": "13", "hybrid": "11", "final": "24", "foul": "0"}, "teams": ["329", "514", "358"]}, "coop": "0", "type": "Q_73", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "20", "final": "27", "foul": "0", "tele": "7"}, "teams": ["1803", "263", "1537"]}}, {"blue": {"score": {"brige": "20", "tele": "3", "hybrid": "6", "final": "32", "foul": "3"}, "teams": ["2641", "4006", "271"]}, "coop": "2", "type": "Q_74", "eventKey": "2012LI", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "25", "foul": "0", "tele": "5"}, "teams": ["3460", "3950", "569"]}}, {"blue": {"score": {"brige": "0", "tele": "13", "hybrid": "22", "final": "35", "foul": "0"}, "teams": ["2875", "1203", "1546"]}, "coop": "0", "type": "Q_75", "eventKey": "2012LI", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "16", "foul": "0", "tele": "6"}, "teams": ["270", "371", "353"]}}, {"blue": {"score": {"brige": "10", "tele": "14", "hybrid": "0", "final": "24", "foul": "0"}, "teams": ["352", "3137", "1230"]}, "coop": "2", "type": "Q_76", "eventKey": "2012LI", "red": {"score": {"bridge": "10", "hybrid": "22", "final": "39", "foul": "0", "tele": "7"}, "teams": ["545", "2161", "527"]}}, {"blue": {"score": {"brige": "10", "tele": "14", "hybrid": "0", "final": "24", "foul": "0"}, "teams": ["1607", "2638", "870"]}, "coop": "2", "type": "Q_77", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "22", "final": "36", "foul": "9", "tele": "5"}, "teams": ["1796", "1803", "1554"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "9", "foul": "3"}, "teams": ["1537", "2010", "522"]}, "coop": "2", "type": "Q_78", "eventKey": "2012LI", "red": {"score": {"bridge": "10", "hybrid": "10", "final": "34", "foul": "0", "tele": "14"}, "teams": ["3460", "496", "263"]}}, {"blue": {"score": {"brige": "10", "tele": "16", "hybrid": "8", "final": "34", "foul": "0"}, "teams": ["358", "270", "28"]}, "coop": "2", "type": "Q_79", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "12", "foul": "6", "tele": "6"}, "teams": ["533", "353", "871"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "8", "final": "9", "foul": "0"}, "teams": ["358", "270", "28"]}, "coop": "2", "type": "Q_79", "eventKey": "2012LI", "red": {"score": {"bridge": "10", "hybrid": "10", "final": "24", "foul": "0", "tele": "4"}, "teams": ["533", "353", "871"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "6", "final": "16", "foul": "0"}, "teams": ["3624", "1203", "2872"]}, "coop": "0", "type": "Q_80", "eventKey": "2012LI", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "16", "foul": "0", "tele": "6"}, "teams": ["1546", "564", "569"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "12", "final": "13", "foul": "0"}, "teams": ["3624", "1203", "2872"]}, "coop": "0", "type": "Q_80", "eventKey": "2012LI", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "26", "foul": "0", "tele": "4"}, "teams": ["1546", "564", "569"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["1601", "3950", "371"]}, "coop": "0", "type": "Q_81", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["1808", "3474", "2347"]}}, {"blue": {"score": {"brige": "20", "tele": "6", "hybrid": "15", "final": "44", "foul": "3"}, "teams": ["329", "2641", "2487"]}, "coop": "2", "type": "Q_82", "eventKey": "2012LI", "red": {"score": {"bridge": "20", "hybrid": "16", "final": "47", "foul": "0", "tele": "11"}, "teams": ["1468", "4006", "514"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "11", "final": "14", "foul": "0"}, "teams": ["271", "810", "884"]}, "coop": "0", "type": "Q_83", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "16", "foul": "0", "tele": "16"}, "teams": ["1751", "3171", "2875"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "0", "final": "12", "foul": "0"}, "teams": ["3059", "3460", "2161"]}, "coop": "0", "type": "Q_84", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "20", "final": "28", "foul": "6", "tele": "2"}, "teams": ["2027", "263", "564"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "12", "final": "18", "foul": "0"}, "teams": ["870", "2010", "1796"]}, "coop": "2", "type": "Q_85", "eventKey": "2012LI", "red": {"score": {"bridge": "10", "hybrid": "8", "final": "20", "foul": "0", "tele": "2"}, "teams": ["2872", "522", "28"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "9", "foul": "3"}, "teams": ["1808", "2487", "353"]}, "coop": "0", "type": "Q_86", "eventKey": "2012LI", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "19", "foul": "0", "tele": "3"}, "teams": ["1537", "1554", "1230"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "10", "final": "24", "foul": "6"}, "teams": ["1751", "1601", "1803"]}, "coop": "0", "type": "Q_87", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "4", "foul": "0", "tele": "4"}, "teams": ["352", "3171", "2641"]}}, {"blue": {"score": {"brige": "20", "tele": "0", "hybrid": "6", "final": "26", "foul": "0"}, "teams": ["371", "4006", "3624"]}, "coop": "2", "type": "Q_88", "eventKey": "2012LI", "red": {"score": {"bridge": "20", "hybrid": "10", "final": "34", "foul": "0", "tele": "4"}, "teams": ["271", "527", "358"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "3", "foul": "0"}, "teams": ["2027", "810", "1607"]}, "coop": "2", "type": "Q_89", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "31", "foul": "6", "tele": "19"}, "teams": ["270", "1203", "1468"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "10", "final": "16", "foul": "0"}, "teams": ["3474", "1546", "496"]}, "coop": "2", "type": "Q_90", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "12", "foul": "0", "tele": "6"}, "teams": ["569", "2638", "884"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "10", "final": "22", "foul": "3"}, "teams": ["329", "2875", "533"]}, "coop": "2", "type": "Q_91", "eventKey": "2012LI", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "29", "foul": "0", "tele": "13"}, "teams": ["871", "3950", "3137"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "6", "foul": "0"}, "teams": ["545", "2347", "2872"]}, "coop": "2", "type": "Q_92", "eventKey": "2012LI", "red": {"score": {"bridge": "20", "hybrid": "16", "final": "43", "foul": "0", "tele": "7"}, "teams": ["514", "3059", "2487"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "8", "final": "19", "foul": "3"}, "teams": ["496", "28", "2010"]}, "coop": "0", "type": "E_1", "eventKey": "2012LI", "red": {"score": {"bridge": "20", "hybrid": "5", "final": "52", "foul": "3", "tele": "24"}, "teams": ["870", "527", "1796"]}}, {"blue": {"score": {"brige": "0", "tele": "7", "hybrid": "12", "final": "19", "foul": "0"}, "teams": ["1230", "545", "3059"]}, "coop": "0", "type": "E_2", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "16", "final": "27", "foul": "0", "tele": "11"}, "teams": ["533", "271", "358"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "10", "final": "13", "foul": "0"}, "teams": ["2638", "2641", "1803"]}, "coop": "0", "type": "E_3", "eventKey": "2012LI", "red": {"score": {"bridge": "10", "hybrid": "5", "final": "23", "foul": "6", "tele": "2"}, "teams": ["522", "263", "1468"]}}, {"blue": {"score": {"brige": "20", "tele": "10", "hybrid": "0", "final": "36", "foul": "6"}, "teams": ["3460", "2872", "2875"]}, "coop": "0", "type": "E_4", "eventKey": "2012LI", "red": {"score": {"bridge": "10", "hybrid": "16", "final": "45", "foul": "3", "tele": "16"}, "teams": ["329", "3137", "353"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "8", "final": "12", "foul": "0"}, "teams": ["496", "28", "2010"]}, "coop": "0", "type": "E_5", "eventKey": "2012LI", "red": {"score": {"bridge": "20", "hybrid": "17", "final": "53", "foul": "3", "tele": "13"}, "teams": ["1796", "527", "870"]}}, {"blue": {"score": {"brige": "20", "tele": "6", "hybrid": "12", "final": "44", "foul": "6"}, "teams": ["3059", "545", "1230"]}, "coop": "0", "type": "E_6", "eventKey": "2012LI", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "38", "foul": "3", "tele": "3"}, "teams": ["358", "271", "533"]}}, {"blue": {"score": {"brige": "0", "tele": "10", "hybrid": "15", "final": "25", "foul": "0"}, "teams": ["2638", "2641", "1803"]}, "coop": "0", "type": "E_7", "eventKey": "2012LI", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "41", "foul": "18", "tele": "3"}, "teams": ["522", "263", "1468"]}}, {"blue": {"score": {"brige": "10", "tele": "4", "hybrid": "11", "final": "25", "foul": "0"}, "teams": ["3460", "2875", "1546"]}, "coop": "0", "type": "E_8", "eventKey": "2012LI", "red": {"score": {"bridge": "10", "hybrid": "17", "final": "36", "foul": "0", "tele": "9"}, "teams": ["353", "3137", "329"]}}, {"blue": {"score": {"brige": "20", "tele": "15", "hybrid": "12", "final": "47", "foul": "0"}, "teams": ["545", "1230", "3059"]}, "coop": "0", "type": "E_10", "eventKey": "2012LI", "red": {"score": {"bridge": "20", "hybrid": "10", "final": "39", "foul": "3", "tele": "6"}, "teams": ["533", "358", "271"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "6", "foul": "3"}, "teams": ["1230", "3059", "545"]}, "coop": "0", "type": "E_13", "eventKey": "2012LI", "red": {"score": {"bridge": "20", "hybrid": "22", "final": "56", "foul": "6", "tele": "8"}, "teams": ["1796", "527", "870"]}}, {"blue": {"score": {"brige": "20", "tele": "8", "hybrid": "16", "final": "44", "foul": "0"}, "teams": ["329", "353", "3137"]}, "coop": "0", "type": "E_14", "eventKey": "2012LI", "red": {"score": {"bridge": "10", "hybrid": "10", "final": "23", "foul": "0", "tele": "3"}, "teams": ["522", "1468", "263"]}}, {"blue": {"score": {"brige": "20", "tele": "10", "hybrid": "12", "final": "45", "foul": "3"}, "teams": ["545", "1230", "3059"]}, "coop": "0", "type": "E_15", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "20", "foul": "3", "tele": "6"}, "teams": ["870", "1796", "527"]}}, {"blue": {"score": {"brige": "20", "tele": "18", "hybrid": "17", "final": "55", "foul": "0"}, "teams": ["353", "3137", "329"]}, "coop": "0", "type": "E_16", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "20", "foul": "0", "tele": "15"}, "teams": ["522", "263", "1468"]}}, {"blue": {"score": {"brige": "20", "tele": "9", "hybrid": "6", "final": "38", "foul": "3"}, "teams": ["1230", "545", "3059"]}, "coop": "0", "type": "E_17", "eventKey": "2012LI", "red": {"score": {"bridge": "20", "hybrid": "17", "final": "49", "foul": "3", "tele": "9"}, "teams": ["1796", "870", "527"]}}, {"blue": {"score": {"brige": "20", "tele": "7", "hybrid": "18", "final": "45", "foul": "0"}, "teams": ["353", "329", "3137"]}, "coop": "0", "type": "E_19", "eventKey": "2012LI", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "25", "foul": "0", "tele": "20"}, "teams": ["870", "527", "1796"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "26", "final": "32", "foul": "3"}, "teams": ["3137", "353", "329"]}, "coop": "0", "type": "E_20", "eventKey": "2012LI", "red": {"score": {"bridge": "20", "hybrid": "16", "final": "56", "foul": "0", "tele": "20"}, "teams": ["1796", "527", "870"]}}, {"blue": {"score": {"brige": "20", "tele": "9", "hybrid": "12", "final": "41", "foul": "0"}, "teams": ["3137", "329", "353"]}, "coop": "0", "type": "E_21", "eventKey": "2012LI", "red": {"score": {"bridge": "20", "hybrid": "16", "final": "51", "foul": "3", "tele": "12"}, "teams": ["527", "1796", "870"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "21", "final": "29", "foul": "0"}, "teams": ["1100", "125", "246"]}, "coop": "0", "type": "Q_1", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "3", "tele": "3"}, "teams": ["1768", "3566", "1757"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4151", "4176", "3466"]}, "coop": "0", "type": "Q_2", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "34", "foul": "30", "tele": "4"}, "teams": ["3780", "2713", "4048"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4169", "121", "1027"]}, "coop": "0", "type": "Q_3", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["2871", "97", "3927"]}}, {"blue": {"score": {"brige": "10", "tele": "5", "hybrid": "12", "final": "27", "foul": "0"}, "teams": ["1058", "2648", "131"]}, "coop": "0", "type": "Q_4", "eventKey": "2012MA", "red": {"score": {"bridge": "20", "hybrid": "5", "final": "33", "foul": "0", "tele": "8"}, "teams": ["1754", "69", "78"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "10", "final": "13", "foul": "3"}, "teams": ["2084", "2079", "1474"]}, "coop": "0", "type": "Q_5", "eventKey": "2012MA", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "33", "foul": "18", "tele": "5"}, "teams": ["2497", "1973", "1350"]}}, {"blue": {"score": {"brige": "10", "tele": "10", "hybrid": "12", "final": "32", "foul": "0"}, "teams": ["1153", "2523", "3236"]}, "coop": "0", "type": "Q_6", "eventKey": "2012MA", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "19", "foul": "0", "tele": "3"}, "teams": ["1761", "529", "2877"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "4", "final": "16", "foul": "0"}, "teams": ["4172", "2013", "3958"]}, "coop": "0", "type": "Q_7", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["2262", "2349", "4311"]}}, {"blue": {"score": {"brige": "10", "tele": "1", "hybrid": "0", "final": "11", "foul": "0"}, "teams": ["3479", "1965", "2888"]}, "coop": "0", "type": "Q_8", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "23", "foul": "3", "tele": "14"}, "teams": ["4010", "233", "2423"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["88", "1099", "3466"]}, "coop": "2", "type": "Q_9", "eventKey": "2012MA", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "30", "foul": "0", "tele": "14"}, "teams": ["341", "157", "2876"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "12", "final": "15", "foul": "0"}, "teams": ["121", "2497", "125"]}, "coop": "0", "type": "Q_10", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["1100", "4151", "1754"]}}, {"blue": {"score": {"brige": "10", "tele": "4", "hybrid": "6", "final": "20", "foul": "0"}, "teams": ["2084", "2262", "2013"]}, "coop": "0", "type": "Q_11", "eventKey": "2012MA", "red": {"score": {"bridge": "10", "hybrid": "5", "final": "21", "foul": "0", "tele": "6"}, "teams": ["131", "246", "1027"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["2648", "4172", "2871"]}, "coop": "0", "type": "Q_12", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["4048", "2079", "2888"]}}, {"blue": {"score": {"brige": "0", "tele": "24", "hybrid": "18", "final": "51", "foul": "9"}, "teams": ["233", "341", "97"]}, "coop": "0", "type": "Q_13", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "1", "foul": "0", "tele": "1"}, "teams": ["1474", "157", "2523"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["1973", "2349", "3479"]}, "coop": "0", "type": "Q_14", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "8", "foul": "0", "tele": "2"}, "teams": ["4311", "2877", "2876"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "0", "final": "8", "foul": "0"}, "teams": ["4010", "1058", "3566"]}, "coop": "0", "type": "Q_15", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "4", "final": "4", "foul": "0", "tele": "0"}, "teams": ["3236", "4176", "3927"]}}, {"blue": {"score": {"brige": "0", "tele": "10", "hybrid": "21", "final": "52", "foul": "21"}, "teams": ["1761", "1350", "78"]}, "coop": "0", "type": "Q_16", "eventKey": "2012MA", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "14", "foul": "0", "tele": "4"}, "teams": ["4169", "529", "2713"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "4", "foul": "0"}, "teams": ["88", "3958", "2423"]}, "coop": "2", "type": "Q_17", "eventKey": "2012MA", "red": {"score": {"bridge": "10", "hybrid": "5", "final": "19", "foul": "0", "tele": "4"}, "teams": ["1768", "69", "1099"]}}, {"blue": {"score": {"brige": "20", "tele": "12", "hybrid": "11", "final": "43", "foul": "0"}, "teams": ["1757", "1153", "131"]}, "coop": "0", "type": "Q_18", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "0", "tele": "6"}, "teams": ["1965", "3780", "2871"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "12", "final": "22", "foul": "0"}, "teams": ["121", "3479", "2877"]}, "coop": "2", "type": "Q_19", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["246", "3566", "2888"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "6", "final": "14", "foul": "0"}, "teams": ["3927", "233", "3466"]}, "coop": "0", "type": "Q_20", "eventKey": "2012MA", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "25", "foul": "0", "tele": "3"}, "teams": ["1761", "2084", "4172"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "6", "final": "22", "foul": "3"}, "teams": ["2497", "1768", "97"]}, "coop": "0", "type": "Q_21", "eventKey": "2012MA", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "23", "foul": "0", "tele": "13"}, "teams": ["341", "2423", "2648"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "10", "final": "20", "foul": "0"}, "teams": ["4311", "1100", "1027"]}, "coop": "0", "type": "Q_22", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "12", "foul": "0", "tele": "0"}, "teams": ["1153", "4048", "1754"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "10", "final": "16", "foul": "0"}, "teams": ["2523", "3958", "4169"]}, "coop": "0", "type": "Q_23", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "5", "foul": "0", "tele": "5"}, "teams": ["4151", "1965", "1973"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "5", "final": "17", "foul": "6"}, "teams": ["157", "69", "2349"]}, "coop": "0", "type": "Q_24", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "12", "foul": "0", "tele": "2"}, "teams": ["3236", "529", "1757"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["2262", "3780", "4176"]}, "coop": "0", "type": "Q_25", "eventKey": "2012MA", "red": {"score": {"bridge": "10", "hybrid": "11", "final": "30", "foul": "3", "tele": "6"}, "teams": ["78", "1474", "88"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "6", "final": "17", "foul": "3"}, "teams": ["125", "2079", "1099"]}, "coop": "2", "type": "Q_26", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "19", "foul": "0", "tele": "9"}, "teams": ["2876", "2013", "1058"]}}, {"blue": {"score": {"brige": "10", "tele": "7", "hybrid": "9", "final": "44", "foul": "18"}, "teams": ["4010", "131", "2497"]}, "coop": "0", "type": "Q_27", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "3", "tele": "3"}, "teams": ["1350", "2713", "4172"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "10", "final": "13", "foul": "3"}, "teams": ["97", "1761", "4151"]}, "coop": "0", "type": "Q_28", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "5", "foul": "0", "tele": "0"}, "teams": ["3566", "3479", "2871"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["1965", "4311", "3927"]}, "coop": "2", "type": "Q_29", "eventKey": "2012MA", "red": {"score": {"bridge": "10", "hybrid": "10", "final": "31", "foul": "3", "tele": "8"}, "teams": ["157", "3466", "1100"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "12", "final": "13", "foul": "0"}, "teams": ["1965", "4311", "3927"]}, "coop": "0", "type": "Q_29", "eventKey": "2012MA", "red": {"score": {"bridge": "10", "hybrid": "15", "final": "34", "foul": "9", "tele": "0"}, "teams": ["157", "3466", "1100"]}}, {"blue": {"score": {"brige": "10", "tele": "14", "hybrid": "10", "final": "34", "foul": "0"}, "teams": ["233", "4169", "1754"]}, "coop": "0", "type": "Q_30", "eventKey": "2012MA", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "13", "foul": "3", "tele": "0"}, "teams": ["246", "1757", "1099"]}}, {"blue": {"score": {"brige": "10", "tele": "12", "hybrid": "5", "final": "27", "foul": "0"}, "teams": ["2877", "78", "3780"]}, "coop": "0", "type": "Q_31", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "8", "foul": "0", "tele": "3"}, "teams": ["1768", "1973", "2079"]}}, {"blue": {"score": {"brige": "0", "tele": "23", "hybrid": "12", "final": "35", "foul": "0"}, "teams": ["4010", "4048", "341"]}, "coop": "2", "type": "Q_32", "eventKey": "2012MA", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "44", "foul": "0", "tele": "24"}, "teams": ["1153", "125", "69"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "9", "foul": "9"}, "teams": ["2013", "1474", "3236"]}, "coop": "0", "type": "Q_33", "eventKey": "2012MA", "red": {"score": {"bridge": "10", "hybrid": "10", "final": "30", "foul": "6", "tele": "4"}, "teams": ["3958", "2713", "2648"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "12", "final": "28", "foul": "3"}, "teams": ["2876", "529", "4176"]}, "coop": "0", "type": "Q_34", "eventKey": "2012MA", "red": {"score": {"bridge": "10", "hybrid": "20", "final": "43", "foul": "3", "tele": "10"}, "teams": ["2084", "2888", "121"]}}, {"blue": {"score": {"brige": "10", "tele": "9", "hybrid": "5", "final": "24", "foul": "0"}, "teams": ["2423", "1350", "1058"]}, "coop": "0", "type": "Q_35", "eventKey": "2012MA", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "10", "foul": "0", "tele": "0"}, "teams": ["1027", "2262", "2523"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "0", "final": "1", "foul": "0"}, "teams": ["2349", "4010", "4151"]}, "coop": "0", "type": "Q_36", "eventKey": "2012MA", "red": {"score": {"bridge": "10", "hybrid": "16", "final": "28", "foul": "0", "tele": "2"}, "teams": ["88", "1100", "97"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "11", "final": "20", "foul": "6"}, "teams": ["246", "2871", "3236"]}, "coop": "0", "type": "Q_37", "eventKey": "2012MA", "red": {"score": {"bridge": "10", "hybrid": "5", "final": "25", "foul": "0", "tele": "10"}, "teams": ["1973", "4172", "78"]}}, {"blue": {"score": {"brige": "10", "tele": "5", "hybrid": "18", "final": "33", "foul": "0"}, "teams": ["2013", "529", "1768"]}, "coop": "0", "type": "Q_38", "eventKey": "2012MA", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "13", "foul": "0", "tele": "3"}, "teams": ["2497", "4048", "3927"]}}, {"blue": {"score": {"brige": "0", "tele": "10", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["1058", "1754", "121"]}, "coop": "2", "type": "Q_39", "eventKey": "2012MA", "red": {"score": {"bridge": "20", "hybrid": "16", "final": "38", "foul": "0", "tele": "2"}, "teams": ["1761", "3466", "3958"]}}, {"blue": {"score": {"brige": "20", "tele": "6", "hybrid": "6", "final": "32", "foul": "0"}, "teams": ["69", "88", "2877"]}, "coop": "0", "type": "Q_40", "eventKey": "2012MA", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "26", "foul": "0", "tele": "10"}, "teams": ["2713", "1965", "233"]}}, {"blue": {"score": {"brige": "10", "tele": "4", "hybrid": "0", "final": "14", "foul": "0"}, "teams": ["2084", "2648", "3780"]}, "coop": "0", "type": "Q_41", "eventKey": "2012MA", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "10", "foul": "0", "tele": "0"}, "teams": ["4169", "2423", "3566"]}}, {"blue": {"score": {"brige": "10", "tele": "18", "hybrid": "23", "final": "51", "foul": "0"}, "teams": ["341", "4176", "1153"]}, "coop": "2", "type": "Q_42", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "5", "foul": "3", "tele": "2"}, "teams": ["2079", "1350", "3479"]}}, {"blue": {"score": {"brige": "10", "tele": "10", "hybrid": "16", "final": "39", "foul": "3"}, "teams": ["131", "157", "125"]}, "coop": "0", "type": "Q_43", "eventKey": "2012MA", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "17", "foul": "0", "tele": "1"}, "teams": ["2888", "2349", "1474"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "5", "final": "11", "foul": "6"}, "teams": ["2523", "1757", "4311"]}, "coop": "0", "type": "Q_44", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "23", "foul": "12", "tele": "5"}, "teams": ["2876", "2262", "1099"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["529", "2648", "1973"]}, "coop": "1", "type": "Q_45", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "3", "tele": "0"}, "teams": ["1027", "4010", "3466"]}}, {"blue": {"score": {"brige": "10", "tele": "24", "hybrid": "20", "final": "54", "foul": "0"}, "teams": ["2713", "2084", "1768"]}, "coop": "0", "type": "Q_46", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "4", "final": "17", "foul": "9", "tele": "4"}, "teams": ["1965", "1754", "97"]}}, {"blue": {"score": {"brige": "20", "tele": "3", "hybrid": "5", "final": "28", "foul": "0"}, "teams": ["2349", "88", "4048"]}, "coop": "0", "type": "Q_47", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "7", "foul": "0", "tele": "1"}, "teams": ["4169", "341", "1058"]}}, {"blue": {"score": {"brige": "0", "tele": "30", "hybrid": "0", "final": "33", "foul": "3"}, "teams": ["233", "2888", "2871"]}, "coop": "2", "type": "Q_48", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "20", "foul": "3", "tele": "7"}, "teams": ["1100", "2262", "3236"]}}, {"blue": {"score": {"brige": "10", "tele": "18", "hybrid": "0", "final": "28", "foul": "0"}, "teams": ["233", "2888", "2871"]}, "coop": "2", "type": "Q_48", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "22", "foul": "9", "tele": "8"}, "teams": ["1100", "2262", "3236"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "23", "final": "33", "foul": "0"}, "teams": ["2523", "1761", "1099"]}, "coop": "0", "type": "Q_49", "eventKey": "2012MA", "red": {"score": {"bridge": "10", "hybrid": "5", "final": "26", "foul": "0", "tele": "11"}, "teams": ["4176", "131", "4172"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "6", "foul": "0"}, "teams": ["3566", "2876", "4151"]}, "coop": "0", "type": "Q_50", "eventKey": "2012MA", "red": {"score": {"bridge": "20", "hybrid": "14", "final": "44", "foul": "3", "tele": "7"}, "teams": ["2013", "1350", "69"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "0", "final": "6", "foul": "0"}, "teams": ["78", "3927", "3479"]}, "coop": "0", "type": "Q_51", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "24", "foul": "0", "tele": "12"}, "teams": ["125", "4311", "3958"]}}, {"blue": {"score": {"brige": "20", "tele": "3", "hybrid": "17", "final": "40", "foul": "0"}, "teams": ["2877", "246", "157"]}, "coop": "0", "type": "Q_52", "eventKey": "2012MA", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "26", "foul": "6", "tele": "0"}, "teams": ["2497", "3780", "1027"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "12", "final": "17", "foul": "0"}, "teams": ["121", "1153", "2079"]}, "coop": "0", "type": "Q_53", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "22", "final": "25", "foul": "3", "tele": "0"}, "teams": ["1474", "1757", "2423"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2876", "3236", "4172"]}, "coop": "0", "type": "Q_54", "eventKey": "2012MA", "red": {"score": {"bridge": "10", "hybrid": "10", "final": "42", "foul": "18", "tele": "4"}, "teams": ["131", "97", "4169"]}}, {"blue": {"score": {"brige": "10", "tele": "13", "hybrid": "10", "final": "33", "foul": "0"}, "teams": ["1058", "78", "2713"]}, "coop": "2", "type": "Q_55", "eventKey": "2012MA", "red": {"score": {"bridge": "20", "hybrid": "11", "final": "39", "foul": "0", "tele": "8"}, "teams": ["341", "1100", "2888"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["4010", "1754", "2523"]}, "coop": "0", "type": "Q_56", "eventKey": "2012MA", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "19", "foul": "9", "tele": "0"}, "teams": ["2013", "3566", "3780"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "12", "final": "18", "foul": "6"}, "teams": ["1761", "88", "1757"]}, "coop": "2", "type": "Q_57", "eventKey": "2012MA", "red": {"score": {"bridge": "20", "hybrid": "14", "final": "42", "foul": "0", "tele": "8"}, "teams": ["3958", "2084", "2497"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "0", "final": "21", "foul": "9"}, "teams": ["3466", "1474", "4048"]}, "coop": "0", "type": "Q_58", "eventKey": "2012MA", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "31", "foul": "12", "tele": "3"}, "teams": ["2423", "246", "3479"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "0", "final": "9", "foul": "0"}, "teams": ["2877", "1973", "1153"]}, "coop": "0", "type": "Q_59", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "8", "foul": "0", "tele": "2"}, "teams": ["3927", "4151", "1099"]}}, {"blue": {"score": {"brige": "10", "tele": "12", "hybrid": "16", "final": "38", "foul": "0"}, "teams": ["233", "157", "4311"]}, "coop": "2", "type": "Q_60", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "5", "foul": "0", "tele": "0"}, "teams": ["2871", "2079", "4176"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "6", "final": "21", "foul": "3"}, "teams": ["125", "2648", "1965"]}, "coop": "2", "type": "Q_61", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "9", "foul": "0", "tele": "3"}, "teams": ["529", "2262", "1350"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "4", "foul": "0"}, "teams": ["1027", "69", "3479"]}, "coop": "0", "type": "Q_62", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "21", "final": "27", "foul": "0", "tele": "6"}, "teams": ["1768", "2349", "121"]}}, {"blue": {"score": {"brige": "10", "tele": "12", "hybrid": "28", "final": "50", "foul": "0"}, "teams": ["1757", "1754", "341"]}, "coop": "2", "type": "Q_63", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "6", "foul": "0", "tele": "0"}, "teams": ["4172", "2877", "3927"]}}, {"blue": {"score": {"brige": "10", "tele": "10", "hybrid": "5", "final": "28", "foul": "3"}, "teams": ["4010", "78", "2888"]}, "coop": "0", "type": "Q_64", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "5", "foul": "3", "tele": "2"}, "teams": ["2523", "4151", "2497"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "0", "final": "9", "foul": "3"}, "teams": ["246", "1965", "2013"]}, "coop": "0", "type": "Q_65", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "4", "final": "13", "foul": "3", "tele": "6"}, "teams": ["1058", "97", "4176"]}}, {"blue": {"score": {"brige": "10", "tele": "9", "hybrid": "0", "final": "31", "foul": "12"}, "teams": ["3566", "121", "529"]}, "coop": "2", "type": "Q_66", "eventKey": "2012MA", "red": {"score": {"bridge": "10", "hybrid": "16", "final": "34", "foul": "0", "tele": "8"}, "teams": ["88", "4311", "131"]}}, {"blue": {"score": {"brige": "10", "tele": "22", "hybrid": "17", "final": "49", "foul": "0"}, "teams": ["2876", "233", "3958"]}, "coop": "2", "type": "Q_67", "eventKey": "2012MA", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "38", "foul": "0", "tele": "6"}, "teams": ["1153", "1027", "2648"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "22", "final": "26", "foul": "0"}, "teams": ["2423", "3466", "2084"]}, "coop": "2", "type": "Q_68", "eventKey": "2012MA", "red": {"score": {"bridge": "10", "hybrid": "11", "final": "35", "foul": "0", "tele": "14"}, "teams": ["2349", "2871", "125"]}}, {"blue": {"score": {"brige": "0", "tele": "7", "hybrid": "6", "final": "13", "foul": "0"}, "teams": ["2079", "4169", "1761"]}, "coop": "0", "type": "Q_69", "eventKey": "2012MA", "red": {"score": {"bridge": "10", "hybrid": "5", "final": "39", "foul": "6", "tele": "18"}, "teams": ["1474", "1100", "69"]}}, {"blue": {"score": {"brige": "20", "tele": "6", "hybrid": "0", "final": "29", "foul": "3"}, "teams": ["1099", "1350", "3780"]}, "coop": "0", "type": "Q_70", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "51", "foul": "12", "tele": "21"}, "teams": ["4048", "3236", "1768"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "0", "final": "9", "foul": "0"}, "teams": ["1973", "2262", "3566"]}, "coop": "0", "type": "Q_71", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "19", "foul": "6", "tele": "8"}, "teams": ["157", "2713", "121"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "0", "final": "5", "foul": "0"}, "teams": ["97", "2888", "1027"]}, "coop": "0", "type": "Q_72", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "19", "foul": "0", "tele": "14"}, "teams": ["1757", "78", "3466"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "11", "final": "17", "foul": "0"}, "teams": ["2523", "1100", "3927"]}, "coop": "0", "type": "Q_73", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "13", "foul": "0", "tele": "3"}, "teams": ["3479", "2648", "88"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "16", "final": "18", "foul": "0"}, "teams": ["2349", "3236", "1099"]}, "coop": "0", "type": "Q_74", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "3", "tele": "0"}, "teams": ["2079", "1965", "2497"]}}, {"blue": {"score": {"brige": "10", "tele": "32", "hybrid": "17", "final": "59", "foul": "0"}, "teams": ["1973", "341", "125"]}, "coop": "2", "type": "Q_75", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "58", "foul": "15", "tele": "31"}, "teams": ["233", "1761", "131"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "16", "final": "26", "foul": "0"}, "teams": ["4151", "2713", "2423"]}, "coop": "0", "type": "Q_76", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "9", "foul": "0", "tele": "9"}, "teams": ["4311", "246", "529"]}}, {"blue": {"score": {"brige": "0", "tele": "7", "hybrid": "0", "final": "7", "foul": "0"}, "teams": ["1058", "2262", "4048"]}, "coop": "0", "type": "Q_77", "eventKey": "2012MA", "red": {"score": {"bridge": "10", "hybrid": "16", "final": "28", "foul": "0", "tele": "2"}, "teams": ["2084", "4010", "2877"]}}, {"blue": {"score": {"brige": "20", "tele": "1", "hybrid": "0", "final": "21", "foul": "0"}, "teams": ["1754", "4176", "1474"]}, "coop": "0", "type": "Q_78", "eventKey": "2012MA", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "19", "foul": "3", "tele": "0"}, "teams": ["2871", "2876", "69"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "12", "final": "15", "foul": "0"}, "teams": ["1768", "4169", "4172"]}, "coop": "0", "type": "Q_79", "eventKey": "2012MA", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "56", "foul": "9", "tele": "15"}, "teams": ["1153", "157", "2013"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["3958", "3780", "97"]}, "coop": "0", "type": "Q_80", "eventKey": "2012MA", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "64", "foul": "9", "tele": "23"}, "teams": ["1350", "125", "233"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "0", "final": "16", "foul": "0"}, "teams": ["246", "2713", "3927"]}, "coop": "0", "type": "Q_81", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "5", "foul": "0", "tele": "0"}, "teams": ["2349", "2079", "2523"]}}, {"blue": {"score": {"brige": "10", "tele": "8", "hybrid": "10", "final": "34", "foul": "6"}, "teams": ["2084", "1027", "1757"]}, "coop": "2", "type": "Q_82", "eventKey": "2012MA", "red": {"score": {"bridge": "10", "hybrid": "24", "final": "56", "foul": "3", "tele": "19"}, "teams": ["3236", "4151", "341"]}}, {"blue": {"score": {"brige": "20", "tele": "18", "hybrid": "10", "final": "48", "foul": "0"}, "teams": ["157", "1965", "78"]}, "coop": "0", "type": "Q_83", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "16", "final": "20", "foul": "0", "tele": "4"}, "teams": ["4048", "121", "1761"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["1474", "3479", "529"]}, "coop": "0", "type": "Q_84", "eventKey": "2012MA", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "29", "foul": "9", "tele": "4"}, "teams": ["1099", "4172", "1058"]}}, {"blue": {"score": {"brige": "20", "tele": "0", "hybrid": "10", "final": "30", "foul": "0"}, "teams": ["88", "2888", "1350"]}, "coop": "2", "type": "Q_85", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["2013", "1973", "1754"]}}, {"blue": {"score": {"brige": "20", "tele": "5", "hybrid": "6", "final": "31", "foul": "0"}, "teams": ["3566", "69", "2497"]}, "coop": "0", "type": "Q_86", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "23", "foul": "0", "tele": "11"}, "teams": ["2262", "1153", "3466"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "3", "foul": "3"}, "teams": ["4311", "2871", "4169"]}, "coop": "0", "type": "Q_87", "eventKey": "2012MA", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "25", "foul": "6", "tele": "3"}, "teams": ["1768", "2648", "4010"]}}, {"blue": {"score": {"brige": "20", "tele": "4", "hybrid": "15", "final": "39", "foul": "0"}, "teams": ["131", "2423", "1100"]}, "coop": "2", "type": "Q_88", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "15", "final": "18", "foul": "0", "tele": "3"}, "teams": ["2877", "3958", "4176"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "10", "final": "12", "foul": "0"}, "teams": ["2876", "121", "3927"]}, "coop": "2", "type": "Q_89", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "12", "foul": "0", "tele": "6"}, "teams": ["3780", "246", "1761"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "16", "final": "28", "foul": "0"}, "teams": ["1058", "69", "2497"]}, "coop": "0", "type": "E_1", "eventKey": "2012MA", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "79", "foul": "3", "tele": "54"}, "teams": ["233", "341", "246"]}}, {"blue": {"score": {"brige": "20", "tele": "14", "hybrid": "20", "final": "54", "foul": "0"}, "teams": ["131", "157", "2013"]}, "coop": "0", "type": "E_2", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "15", "foul": "0", "tele": "4"}, "teams": ["121", "3958", "1350"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "22", "final": "28", "foul": "0"}, "teams": ["1099", "2877", "2423"]}, "coop": "0", "type": "E_3", "eventKey": "2012MA", "red": {"score": {"bridge": "10", "hybrid": "31", "final": "58", "foul": "3", "tele": "14"}, "teams": ["78", "2084", "125"]}}, {"blue": {"score": {"brige": "20", "tele": "18", "hybrid": "6", "final": "44", "foul": "0"}, "teams": ["2648", "88", "1768"]}, "coop": "0", "type": "E_4", "eventKey": "2012MA", "red": {"score": {"bridge": "20", "hybrid": "5", "final": "31", "foul": "0", "tele": "6"}, "teams": ["1153", "2888", "1100"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "10", "final": "19", "foul": "0"}, "teams": ["69", "2497", "1058"]}, "coop": "0", "type": "E_5", "eventKey": "2012MA", "red": {"score": {"bridge": "10", "hybrid": "36", "final": "103", "foul": "9", "tele": "48"}, "teams": ["246", "233", "341"]}}, {"blue": {"score": {"brige": "0", "tele": "10", "hybrid": "15", "final": "37", "foul": "12"}, "teams": ["2013", "131", "157"]}, "coop": "0", "type": "E_6", "eventKey": "2012MA", "red": {"score": {"bridge": "20", "hybrid": "16", "final": "51", "foul": "6", "tele": "9"}, "teams": ["121", "3958", "1350"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "11", "final": "17", "foul": "0"}, "teams": ["2877", "1099", "2423"]}, "coop": "0", "type": "E_7", "eventKey": "2012MA", "red": {"score": {"bridge": "0", "hybrid": "22", "final": "44", "foul": "3", "tele": "19"}, "teams": ["2084", "125", "78"]}}, {"blue": {"score": {"brige": "20", "tele": "0", "hybrid": "0", "final": "20", "foul": "0"}, "teams": ["2648", "88", "1768"]}, "coop": "0", "type": "E_8", "eventKey": "2012MA", "red": {"score": {"bridge": "20", "hybrid": "16", "final": "58", "foul": "0", "tele": "22"}, "teams": ["1153", "2888", "1100"]}}, {"blue": {"score": {"brige": "20", "tele": "14", "hybrid": "10", "final": "53", "foul": "9"}, "teams": ["157", "131", "2013"]}, "coop": "0", "type": "E_10", "eventKey": "2012MA", "red": {"score": {"bridge": "40", "hybrid": "10", "final": "54", "foul": "0", "tele": "4"}, "teams": ["1350", "121", "3958"]}}, {"blue": {"score": {"brige": "10", "tele": "7", "hybrid": "4", "final": "24", "foul": "3"}, "teams": ["88", "2648", "2876"]}, "coop": "0", "type": "E_12", "eventKey": "2012MA", "red": {"score": {"bridge": "10", "hybrid": "22", "final": "54", "foul": "9", "tele": "13"}, "teams": ["1153", "1100", "2888"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "15", "final": "25", "foul": "0"}, "teams": ["121", "1350", "3958"]}, "coop": "0", "type": "E_13", "eventKey": "2012MA", "red": {"score": {"bridge": "20", "hybrid": "42", "final": "89", "foul": "3", "tele": "24"}, "teams": ["246", "341", "233"]}}, {"blue": {"score": {"brige": "0", "tele": "20", "hybrid": "16", "final": "36", "foul": "0"}, "teams": ["1153", "1100", "2888"]}, "coop": "0", "type": "E_14", "eventKey": "2012MA", "red": {"score": {"bridge": "20", "hybrid": "26", "final": "60", "foul": "6", "tele": "8"}, "teams": ["78", "2084", "125"]}}, {"blue": {"score": {"brige": "20", "tele": "6", "hybrid": "26", "final": "52", "foul": "0"}, "teams": ["121", "1350", "3958"]}, "coop": "0", "type": "E_15", "eventKey": "2012MA", "red": {"score": {"bridge": "20", "hybrid": "36", "final": "92", "foul": "0", "tele": "36"}, "teams": ["233", "341", "246"]}}, {"blue": {"score": {"brige": "20", "tele": "15", "hybrid": "16", "final": "51", "foul": "0"}, "teams": ["2888", "1100", "1153"]}, "coop": "0", "type": "E_16", "eventKey": "2012MA", "red": {"score": {"bridge": "20", "hybrid": "32", "final": "66", "foul": "0", "tele": "14"}, "teams": ["2084", "125", "78"]}}, {"blue": {"score": {"brige": "20", "tele": "17", "hybrid": "22", "final": "59", "foul": "0"}, "teams": ["125", "2084", "78"]}, "coop": "0", "type": "E_19", "eventKey": "2012MA", "red": {"score": {"bridge": "20", "hybrid": "30", "final": "86", "foul": "0", "tele": "36"}, "teams": ["233", "246", "341"]}}, {"blue": {"score": {"brige": "20", "tele": "15", "hybrid": "32", "final": "67", "foul": "0"}, "teams": ["78", "2084", "125"]}, "coop": "0", "type": "E_20", "eventKey": "2012MA", "red": {"score": {"bridge": "20", "hybrid": "42", "final": "71", "foul": "0", "tele": "9"}, "teams": ["341", "233", "246"]}}, {"blue": {"score": {"brige": "10", "tele": "4", "hybrid": "0", "final": "14", "foul": "0"}, "teams": ["2528", "449", "768"]}, "coop": "0", "type": "Q_1", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["1155", "533", "1389"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "0", "final": "1", "foul": "0"}, "teams": ["192", "4266", "2819"]}, "coop": "0", "type": "Q_2", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "15", "foul": "0", "tele": "5"}, "teams": ["888", "2377", "686"]}}, {"blue": {"score": {"brige": "0", "tele": "13", "hybrid": "16", "final": "29", "foul": "0"}, "teams": ["2912", "204", "836"]}, "coop": "0", "type": "Q_3", "eventKey": "2012MD", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "16", "foul": "0", "tele": "0"}, "teams": ["2866", "4067", "88"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "0", "final": "13", "foul": "0"}, "teams": ["27", "216", "4288"]}, "coop": "2", "type": "Q_4", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "12", "foul": "0", "tele": "12"}, "teams": ["2537", "1748", "217"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3941", "1719", "1915"]}, "coop": "0", "type": "Q_5", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["288", "3389", "53"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "5", "final": "24", "foul": "3"}, "teams": ["612", "358", "2199"]}, "coop": "2", "type": "Q_6", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["2534", "237", "1643"]}}, {"blue": {"score": {"brige": "20", "tele": "0", "hybrid": "0", "final": "29", "foul": "9"}, "teams": ["3714", "3419", "509"]}, "coop": "0", "type": "Q_7", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "5", "foul": "0", "tele": "0"}, "teams": ["3150", "2421", "714"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "6", "foul": "0"}, "teams": ["3748", "1980", "3793"]}, "coop": "0", "type": "Q_8", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "6", "foul": "0", "tele": "0"}, "teams": ["7", "1446", "244"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "12", "foul": "9"}, "teams": ["3283", "2265", "181"]}, "coop": "0", "type": "Q_9", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "17", "foul": "3", "tele": "14"}, "teams": ["2546", "1895", "1629"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "3", "foul": "0"}, "teams": ["3733", "2068", "3307"]}, "coop": "0", "type": "Q_10", "eventKey": "2012MD", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "10", "foul": "0", "tele": "0"}, "teams": ["623", "1111", "3650"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "13", "foul": "9"}, "teams": ["2849", "27", "1155"]}, "coop": "0", "type": "Q_11", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["2028", "1195", "2534"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "6", "foul": "0"}, "teams": ["217", "53", "686"]}, "coop": "2", "type": "Q_12", "eventKey": "2012MD", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "25", "foul": "0", "tele": "3"}, "teams": ["612", "3714", "4067"]}}, {"blue": {"score": {"brige": "10", "tele": "9", "hybrid": "0", "final": "28", "foul": "9"}, "teams": ["888", "3389", "449"]}, "coop": "0", "type": "Q_13", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "1", "foul": "0", "tele": "1"}, "teams": ["1643", "4288", "3419"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "4", "final": "4", "foul": "0"}, "teams": ["1446", "768", "533"]}, "coop": "0", "type": "Q_14", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["192", "2546", "216"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "0", "final": "5", "foul": "0"}, "teams": ["4266", "1895", "2421"]}, "coop": "0", "type": "Q_15", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["1111", "244", "3793"]}}, {"blue": {"score": {"brige": "0", "tele": "10", "hybrid": "10", "final": "23", "foul": "3"}, "teams": ["1629", "3748", "1389"]}, "coop": "2", "type": "Q_16", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "25", "foul": "6", "tele": "7"}, "teams": ["2377", "836", "1195"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["204", "7", "3150"]}, "coop": "0", "type": "Q_17", "eventKey": "2012MD", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "19", "foul": "3", "tele": "0"}, "teams": ["1719", "2068", "623"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2537", "3733", "181"]}, "coop": "0", "type": "Q_18", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "25", "foul": "15", "tele": "0"}, "teams": ["2199", "3307", "1915"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "3", "foul": "0"}, "teams": ["358", "509", "2265"]}, "coop": "0", "type": "Q_19", "eventKey": "2012MD", "red": {"score": {"bridge": "10", "hybrid": "5", "final": "19", "foul": "3", "tele": "1"}, "teams": ["2528", "2912", "2819"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "6", "final": "10", "foul": "0"}, "teams": ["2849", "2866", "3283"]}, "coop": "0", "type": "Q_20", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "12", "foul": "0", "tele": "0"}, "teams": ["714", "3941", "3650"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["1748", "88", "288"]}, "coop": "0", "type": "Q_21", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "17", "final": "17", "foul": "0", "tele": "0"}, "teams": ["237", "2028", "1980"]}}, {"blue": {"score": {"brige": "10", "tele": "12", "hybrid": "6", "final": "28", "foul": "0"}, "teams": ["449", "836", "3419"]}, "coop": "0", "type": "Q_22", "eventKey": "2012MD", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "25", "foul": "0", "tele": "3"}, "teams": ["686", "2068", "612"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2537", "3714", "53"]}, "coop": "0", "type": "Q_23", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "5", "foul": "0", "tele": "5"}, "teams": ["1446", "888", "1389"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "5", "final": "13", "foul": "0"}, "teams": ["2199", "2546", "3793"]}, "coop": "0", "type": "Q_24", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "11", "foul": "3", "tele": "2"}, "teams": ["2528", "1195", "4067"]}}, {"blue": {"score": {"brige": "20", "tele": "20", "hybrid": "18", "final": "61", "foul": "3"}, "teams": ["192", "1629", "714"]}, "coop": "0", "type": "Q_25", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "13", "foul": "0", "tele": "1"}, "teams": ["1111", "1643", "1719"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "5", "final": "7", "foul": "0"}, "teams": ["204", "2534", "216"]}, "coop": "2", "type": "Q_26", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "6", "foul": "0", "tele": "0"}, "teams": ["181", "3941", "2028"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "9", "foul": "3"}, "teams": ["623", "509", "4266"]}, "coop": "0", "type": "Q_27", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["1155", "1915", "1980"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "0", "final": "12", "foul": "0"}, "teams": ["7", "237", "358"]}, "coop": "0", "type": "Q_28", "eventKey": "2012MD", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "17", "foul": "3", "tele": "4"}, "teams": ["2849", "1895", "3389"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3748", "288", "2421"]}, "coop": "0", "type": "Q_29", "eventKey": "2012MD", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "23", "foul": "0", "tele": "13"}, "teams": ["3733", "2819", "27"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "6", "foul": "0"}, "teams": ["3307", "1748", "2866"]}, "coop": "0", "type": "Q_30", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "18", "foul": "0", "tele": "18"}, "teams": ["3283", "2377", "3150"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "6", "final": "10", "foul": "0"}, "teams": ["2912", "88", "244"]}, "coop": "0", "type": "Q_31", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["533", "3650", "4288"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "24", "foul": "18"}, "teams": ["2265", "1195", "1719"]}, "coop": "0", "type": "Q_32", "eventKey": "2012MD", "red": {"score": {"bridge": "10", "hybrid": "11", "final": "27", "foul": "0", "tele": "6"}, "teams": ["217", "768", "3419"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["623", "3714", "181"]}, "coop": "0", "type": "Q_33", "eventKey": "2012MD", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "33", "foul": "3", "tele": "8"}, "teams": ["192", "358", "3389"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "13", "foul": "9"}, "teams": ["1915", "2819", "2028"]}, "coop": "0", "type": "Q_34", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "9", "foul": "0", "tele": "3"}, "teams": ["836", "1446", "2546"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["1980", "204", "3733"]}, "coop": "0", "type": "Q_35", "eventKey": "2012MD", "red": {"score": {"bridge": "10", "hybrid": "16", "final": "35", "foul": "0", "tele": "9"}, "teams": ["888", "2537", "3283"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "4", "final": "10", "foul": "0"}, "teams": ["686", "2912", "1155"]}, "coop": "0", "type": "Q_36", "eventKey": "2012MD", "red": {"score": {"bridge": "10", "hybrid": "10", "final": "23", "foul": "0", "tele": "3"}, "teams": ["2199", "288", "1111"]}}, {"blue": {"score": {"brige": "0", "tele": "10", "hybrid": "6", "final": "19", "foul": "3"}, "teams": ["612", "27", "3941"]}, "coop": "0", "type": "Q_37", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "7", "foul": "6", "tele": "1"}, "teams": ["2265", "3793", "768"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "17", "final": "26", "foul": "0"}, "teams": ["4288", "2528", "237"]}, "coop": "0", "type": "Q_38", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "11", "foul": "0", "tele": "6"}, "teams": ["2377", "2068", "714"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "5", "final": "5", "foul": "0"}, "teams": ["1389", "244", "216"]}, "coop": "0", "type": "Q_39", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["1643", "509", "3307"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "6", "final": "14", "foul": "0"}, "teams": ["2866", "533", "217"]}, "coop": "0", "type": "Q_40", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["2849", "3748", "4266"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "0", "final": "13", "foul": "0"}, "teams": ["2534", "4067", "1895"]}, "coop": "0", "type": "Q_41", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "20", "foul": "0", "tele": "10"}, "teams": ["88", "3150", "1629"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "0", "final": "1", "foul": "0"}, "teams": ["53", "7", "1748"]}, "coop": "0", "type": "Q_42", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3650", "449", "2421"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "18", "final": "29", "foul": "3"}, "teams": ["1719", "612", "181"]}, "coop": "0", "type": "Q_43", "eventKey": "2012MD", "red": {"score": {"bridge": "10", "hybrid": "10", "final": "29", "foul": "9", "tele": "0"}, "teams": ["4288", "1155", "1446"]}}, {"blue": {"score": {"brige": "10", "tele": "8", "hybrid": "6", "final": "24", "foul": "0"}, "teams": ["1915", "192", "2912"]}, "coop": "0", "type": "Q_44", "eventKey": "2012MD", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "21", "foul": "0", "tele": "5"}, "teams": ["3793", "3419", "237"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "5", "final": "24", "foul": "9"}, "teams": ["533", "714", "1195"]}, "coop": "0", "type": "Q_45", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "9", "foul": "0", "tele": "3"}, "teams": ["3389", "2265", "204"]}}, {"blue": {"score": {"brige": "20", "tele": "15", "hybrid": "6", "final": "41", "foul": "0"}, "teams": ["888", "27", "2866"]}, "coop": "2", "type": "Q_46", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "7", "foul": "0", "tele": "7"}, "teams": ["2068", "1389", "358"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3941", "3307", "1980"]}, "coop": "0", "type": "Q_47", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["1895", "3714", "686"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["1643", "216", "2421"]}, "coop": "0", "type": "Q_48", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["3283", "88", "623"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "6", "final": "10", "foul": "0"}, "teams": ["7", "1111", "768"]}, "coop": "0", "type": "Q_49", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "8", "foul": "0", "tele": "2"}, "teams": ["2534", "2819", "1748"]}}, {"blue": {"score": {"brige": "10", "tele": "9", "hybrid": "4", "final": "23", "foul": "0"}, "teams": ["2849", "2377", "449"]}, "coop": "0", "type": "Q_50", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["288", "4067", "2546"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "0", "final": "8", "foul": "0"}, "teams": ["3650", "4266", "1629"]}, "coop": "0", "type": "Q_51", "eventKey": "2012MD", "red": {"score": {"bridge": "10", "hybrid": "5", "final": "25", "foul": "0", "tele": "10"}, "teams": ["3748", "509", "2199"]}}, {"blue": {"score": {"brige": "10", "tele": "15", "hybrid": "17", "final": "42", "foul": "0"}, "teams": ["3150", "2028", "217"]}, "coop": "0", "type": "Q_52", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["3733", "244", "2528"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "6", "final": "16", "foul": "0"}, "teams": ["2537", "714", "1155"]}, "coop": "2", "type": "Q_53", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "24", "foul": "3", "tele": "3"}, "teams": ["53", "836", "358"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "5", "final": "5", "foul": "0"}, "teams": ["4288", "1980", "2534"]}, "coop": "0", "type": "Q_54", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "15", "foul": "3", "tele": "0"}, "teams": ["2421", "2866", "2265"]}}, {"blue": {"score": {"brige": "0", "tele": "18", "hybrid": "0", "final": "18", "foul": "0"}, "teams": ["1643", "2377", "2912"]}, "coop": "0", "type": "Q_55", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3941", "3714", "7"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "18", "final": "27", "foul": "0"}, "teams": ["1719", "888", "2546"]}, "coop": "0", "type": "Q_56", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["88", "3748", "3307"]}}, {"blue": {"score": {"brige": "10", "tele": "5", "hybrid": "6", "final": "21", "foul": "0"}, "teams": ["244", "237", "623"]}, "coop": "2", "type": "Q_57", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "4", "final": "20", "foul": "0", "tele": "16"}, "teams": ["1629", "686", "27"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "13", "final": "17", "foul": "0"}, "teams": ["1895", "2537", "2028"]}, "coop": "0", "type": "Q_58", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["509", "533", "2819"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "6", "final": "14", "foul": "3"}, "teams": ["836", "3793", "3650"]}, "coop": "2", "type": "Q_59", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "15", "foul": "0", "tele": "9"}, "teams": ["216", "217", "449"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "12", "final": "28", "foul": "3"}, "teams": ["2068", "3389", "1446"]}, "coop": "0", "type": "Q_60", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "17", "foul": "3", "tele": "4"}, "teams": ["768", "2199", "3283"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "11", "final": "24", "foul": "0"}, "teams": ["1111", "204", "2528"]}, "coop": "0", "type": "Q_61", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "15", "foul": "0", "tele": "15"}, "teams": ["1915", "612", "2849"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["288", "1195", "3150"]}, "coop": "0", "type": "Q_62", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "15", "foul": "3", "tele": "0"}, "teams": ["181", "192", "53"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "0", "final": "16", "foul": "0"}, "teams": ["4266", "4067", "3419"]}, "coop": "0", "type": "Q_63", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["1748", "1389", "3733"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["7", "686", "2546"]}, "coop": "2", "type": "Q_64", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "21", "foul": "3", "tele": "0"}, "teams": ["509", "2866", "4288"]}}, {"blue": {"score": {"brige": "0", "tele": "11", "hybrid": "12", "final": "23", "foul": "0"}, "teams": ["27", "1446", "714"]}, "coop": "0", "type": "Q_65", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["1895", "449", "3307"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "6", "final": "19", "foul": "0"}, "teams": ["88", "2068", "2819"]}, "coop": "0", "type": "Q_66", "eventKey": "2012MD", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "37", "foul": "0", "tele": "21"}, "teams": ["217", "1629", "3941"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "0", "final": "12", "foul": "0"}, "teams": ["1111", "3150", "1915"]}, "coop": "0", "type": "Q_67", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["358", "1195", "1980"]}}, {"blue": {"score": {"brige": "0", "tele": "13", "hybrid": "0", "final": "13", "foul": "0"}, "teams": ["1389", "3389", "612"]}, "coop": "0", "type": "Q_68", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "5", "foul": "0", "tele": "0"}, "teams": ["2028", "2421", "2912"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2849", "3793", "1748"]}, "coop": "0", "type": "Q_69", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "24", "final": "24", "foul": "0", "tele": "0"}, "teams": ["836", "888", "181"]}}, {"blue": {"score": {"brige": "10", "tele": "5", "hybrid": "4", "final": "28", "foul": "9"}, "teams": ["3650", "768", "1643"]}, "coop": "0", "type": "Q_70", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["288", "4266", "2537"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3714", "3748", "237"]}, "coop": "0", "type": "Q_71", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "13", "foul": "0", "tele": "8"}, "teams": ["2528", "216", "2265"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["2534", "623", "533"]}, "coop": "2", "type": "Q_72", "eventKey": "2012MD", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "35", "foul": "3", "tele": "6"}, "teams": ["3419", "53", "2377"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "12", "final": "18", "foul": "3"}, "teams": ["244", "1155", "1719"]}, "coop": "0", "type": "Q_73", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3283", "3733", "4067"]}}, {"blue": {"score": {"brige": "10", "tele": "10", "hybrid": "12", "final": "35", "foul": "3"}, "teams": ["192", "1895", "1389"]}, "coop": "0", "type": "Q_74", "eventKey": "2012MD", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "16", "foul": "0", "tele": "0"}, "teams": ["2199", "204", "4288"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "6", "final": "18", "foul": "9"}, "teams": ["3389", "1111", "88"]}, "coop": "2", "type": "Q_75", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "12", "foul": "0", "tele": "12"}, "teams": ["509", "449", "27"]}}, {"blue": {"score": {"brige": "10", "tele": "16", "hybrid": "4", "final": "33", "foul": "3"}, "teams": ["1748", "2528", "1629"]}, "coop": "0", "type": "Q_76", "eventKey": "2012MD", "red": {"score": {"bridge": "10", "hybrid": "15", "final": "28", "foul": "0", "tele": "3"}, "teams": ["1446", "2866", "2537"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "6", "final": "12", "foul": "0"}, "teams": ["768", "2421", "888"]}, "coop": "2", "type": "Q_77", "eventKey": "2012MD", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "22", "foul": "0", "tele": "6"}, "teams": ["237", "181", "686"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "6", "foul": "6"}, "teams": ["1195", "3793", "612"]}, "coop": "0", "type": "Q_78", "eventKey": "2012MD", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "18", "foul": "0", "tele": "2"}, "teams": ["714", "623", "2819"]}}, {"blue": {"score": {"brige": "10", "tele": "28", "hybrid": "13", "final": "51", "foul": "0"}, "teams": ["2377", "1719", "2199"]}, "coop": "0", "type": "Q_79", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["1980", "216", "2849"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "11", "final": "21", "foul": "0"}, "teams": ["2534", "288", "1915"]}, "coop": "0", "type": "Q_80", "eventKey": "2012MD", "red": {"score": {"bridge": "10", "hybrid": "11", "final": "21", "foul": "0", "tele": "0"}, "teams": ["2068", "244", "3714"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["3307", "2028", "4067"]}, "coop": "0", "type": "Q_81", "eventKey": "2012MD", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "14", "foul": "0", "tele": "4"}, "teams": ["7", "2265", "192"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "8", "final": "18", "foul": "0"}, "teams": ["3283", "2546", "53"]}, "coop": "0", "type": "Q_82", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "39", "foul": "21", "tele": "6"}, "teams": ["217", "4266", "2912"]}}, {"blue": {"score": {"brige": "20", "tele": "9", "hybrid": "6", "final": "38", "foul": "0"}, "teams": ["1155", "358", "3419"]}, "coop": "0", "type": "Q_83", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "17", "final": "17", "foul": "0", "tele": "0"}, "teams": ["3748", "3650", "204"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3733", "3150", "533"]}, "coop": "0", "type": "Q_84", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "6", "foul": "0", "tele": "0"}, "teams": ["1643", "836", "3941"]}}, {"blue": {"score": {"brige": "10", "tele": "9", "hybrid": "5", "final": "24", "foul": "0"}, "teams": ["2819", "2199", "237"]}, "coop": "2", "type": "Q_85", "eventKey": "2012MD", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "50", "foul": "18", "tele": "4"}, "teams": ["1719", "2866", "449"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "6", "final": "22", "foul": "0"}, "teams": ["714", "2265", "1389"]}, "coop": "0", "type": "Q_86", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "7", "foul": "0", "tele": "2"}, "teams": ["88", "1915", "686"]}}, {"blue": {"score": {"brige": "10", "tele": "5", "hybrid": "6", "final": "21", "foul": "0"}, "teams": ["1111", "4288", "3283"]}, "coop": "0", "type": "Q_87", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["2028", "3714", "3793"]}}, {"blue": {"score": {"brige": "0", "tele": "17", "hybrid": "0", "final": "17", "foul": "0"}, "teams": ["2421", "1446", "2377"]}, "coop": "0", "type": "Q_88", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "17", "final": "34", "foul": "0", "tele": "17"}, "teams": ["204", "358", "217"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "6", "final": "12", "foul": "3"}, "teams": ["3941", "2537", "244"]}, "coop": "0", "type": "Q_89", "eventKey": "2012MD", "red": {"score": {"bridge": "10", "hybrid": "5", "final": "25", "foul": "3", "tele": "7"}, "teams": ["3419", "623", "2546"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "0", "final": "12", "foul": "0"}, "teams": ["4067", "27", "3650"]}, "coop": "2", "type": "Q_90", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["533", "1980", "181"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "12", "final": "15", "foul": "3"}, "teams": ["3389", "3307", "836"]}, "coop": "0", "type": "Q_91", "eventKey": "2012MD", "red": {"score": {"bridge": "10", "hybrid": "4", "final": "33", "foul": "0", "tele": "19"}, "teams": ["2528", "2534", "4266"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["3733", "509", "53"]}, "coop": "0", "type": "Q_92", "eventKey": "2012MD", "red": {"score": {"bridge": "20", "hybrid": "11", "final": "41", "foul": "0", "tele": "10"}, "teams": ["2849", "192", "768"]}}, {"blue": {"score": {"brige": "10", "tele": "19", "hybrid": "10", "final": "39", "foul": "0"}, "teams": ["888", "1629", "216"]}, "coop": "2", "type": "Q_93", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "19", "foul": "0", "tele": "9"}, "teams": ["612", "288", "7"]}}, {"blue": {"score": {"brige": "10", "tele": "5", "hybrid": "5", "final": "20", "foul": "0"}, "teams": ["1895", "1643", "2068"]}, "coop": "0", "type": "Q_94", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "1", "foul": "0", "tele": "1"}, "teams": ["1195", "1155", "1748"]}}, {"blue": {"score": {"brige": "0", "tele": "1", "hybrid": "6", "final": "10", "foul": "0"}, "teams": ["3748", "2912", "449"]}, "coop": "0", "type": "Q_95", "eventKey": "2012MD", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "10", "foul": "0", "tele": "0"}, "teams": ["3150", "686", "2537"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "6", "final": "8", "foul": "0"}, "teams": ["612", "768", "237"]}, "coop": "0", "type": "E_1", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "38", "foul": "0", "tele": "20"}, "teams": ["27", "217", "2849"]}}, {"blue": {"score": {"brige": "20", "tele": "9", "hybrid": "5", "final": "34", "foul": "0"}, "teams": ["181", "2377", "192"]}, "coop": "0", "type": "E_2", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "26", "final": "41", "foul": "3", "tele": "12"}, "teams": ["836", "2866", "2528"]}}, {"blue": {"score": {"brige": "20", "tele": "5", "hybrid": "23", "final": "51", "foul": "3"}, "teams": ["2068", "358", "714"]}, "coop": "0", "type": "E_3", "eventKey": "2012MD", "red": {"score": {"bridge": "10", "hybrid": "17", "final": "33", "foul": "3", "tele": "3"}, "teams": ["2912", "1629", "888"]}}, {"blue": {"score": {"brige": "0", "tele": "7", "hybrid": "0", "final": "7", "foul": "0"}, "teams": ["2534", "1719", "449"]}, "coop": "0", "type": "E_4", "eventKey": "2012MD", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "22", "foul": "0", "tele": "2"}, "teams": ["1111", "216", "2199"]}}, {"blue": {"score": {"brige": "10", "tele": "13", "hybrid": "4", "final": "27", "foul": "0"}, "teams": ["768", "612", "237"]}, "coop": "0", "type": "E_5", "eventKey": "2012MD", "red": {"score": {"bridge": "10", "hybrid": "17", "final": "36", "foul": "0", "tele": "9"}, "teams": ["217", "27", "2849"]}}, {"blue": {"score": {"brige": "20", "tele": "24", "hybrid": "12", "final": "56", "foul": "0"}, "teams": ["192", "3419", "2377"]}, "coop": "0", "type": "E_6", "eventKey": "2012MD", "red": {"score": {"bridge": "10", "hybrid": "22", "final": "49", "foul": "3", "tele": "14"}, "teams": ["2866", "2528", "836"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "17", "final": "26", "foul": "3"}, "teams": ["714", "2068", "358"]}, "coop": "0", "type": "E_7", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "16", "final": "31", "foul": "3", "tele": "12"}, "teams": ["1629", "2912", "888"]}}, {"blue": {"score": {"brige": "10", "tele": "14", "hybrid": "22", "final": "46", "foul": "0"}, "teams": ["2534", "1719", "449"]}, "coop": "0", "type": "E_8", "eventKey": "2012MD", "red": {"score": {"bridge": "20", "hybrid": "10", "final": "39", "foul": "3", "tele": "6"}, "teams": ["2199", "216", "1111"]}}, {"blue": {"score": {"brige": "20", "tele": "25", "hybrid": "18", "final": "63", "foul": "0"}, "teams": ["192", "3419", "2377"]}, "coop": "0", "type": "E_10", "eventKey": "2012MD", "red": {"score": {"bridge": "20", "hybrid": "22", "final": "51", "foul": "0", "tele": "9"}, "teams": ["2528", "836", "2866"]}}, {"blue": {"score": {"brige": "20", "tele": "6", "hybrid": "12", "final": "38", "foul": "0"}, "teams": ["714", "2068", "358"]}, "coop": "0", "type": "E_11", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "15", "foul": "0", "tele": "9"}, "teams": ["888", "2912", "1629"]}}, {"blue": {"score": {"brige": "10", "tele": "12", "hybrid": "28", "final": "50", "foul": "0"}, "teams": ["1719", "2534", "449"]}, "coop": "0", "type": "E_12", "eventKey": "2012MD", "red": {"score": {"bridge": "20", "hybrid": "10", "final": "38", "foul": "0", "tele": "8"}, "teams": ["216", "2199", "1111"]}}, {"blue": {"score": {"brige": "20", "tele": "20", "hybrid": "6", "final": "49", "foul": "3"}, "teams": ["192", "2377", "3419"]}, "coop": "0", "type": "E_13", "eventKey": "2012MD", "red": {"score": {"bridge": "20", "hybrid": "11", "final": "33", "foul": "0", "tele": "2"}, "teams": ["27", "217", "2849"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "23", "final": "25", "foul": "0"}, "teams": ["449", "2534", "1719"]}, "coop": "0", "type": "E_14", "eventKey": "2012MD", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "33", "foul": "0", "tele": "1"}, "teams": ["2068", "358", "714"]}}, {"blue": {"score": {"brige": "20", "tele": "5", "hybrid": "18", "final": "46", "foul": "3"}, "teams": ["3419", "192", "2377"]}, "coop": "0", "type": "E_15", "eventKey": "2012MD", "red": {"score": {"bridge": "10", "hybrid": "4", "final": "14", "foul": "0", "tele": "0"}, "teams": ["217", "27", "2849"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "16", "final": "21", "foul": "3"}, "teams": ["2534", "1719", "449"]}, "coop": "0", "type": "E_16", "eventKey": "2012MD", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "24", "foul": "3", "tele": "9"}, "teams": ["2068", "358", "714"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "18", "final": "21", "foul": "0"}, "teams": ["714", "358", "2068"]}, "coop": "0", "type": "E_19", "eventKey": "2012MD", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "43", "foul": "0", "tele": "11"}, "teams": ["3419", "2377", "192"]}}, {"blue": {"score": {"brige": "20", "tele": "5", "hybrid": "17", "final": "42", "foul": "0"}, "teams": ["714", "2068", "358"]}, "coop": "0", "type": "E_20", "eventKey": "2012MD", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "48", "foul": "3", "tele": "7"}, "teams": ["192", "2377", "3419"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "12", "final": "12", "foul": "0"}, "teams": ["2245", "3640", "1718"]}, "coop": "2", "type": "Q_1", "eventKey": "2012MI", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "12", "foul": "0", "tele": "6"}, "teams": ["4327", "3234", "4368"]}}, {"blue": {"score": {"brige": "10", "tele": "11", "hybrid": "0", "final": "21", "foul": "0"}, "teams": ["4004", "2405", "1918"]}, "coop": "2", "type": "Q_2", "eventKey": "2012MI", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "29", "foul": "0", "tele": "3"}, "teams": ["2000", "3572", "2586"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "6", "final": "14", "foul": "6"}, "teams": ["910", "3458", "2767"]}, "coop": "0", "type": "Q_3", "eventKey": "2012MI", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "18", "foul": "0", "tele": "2"}, "teams": ["3688", "3875", "1896"]}}, {"blue": {"score": {"brige": "20", "tele": "10", "hybrid": "12", "final": "51", "foul": "9"}, "teams": ["857", "85", "2474"]}, "coop": "0", "type": "Q_4", "eventKey": "2012MI", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "12", "foul": "0", "tele": "6"}, "teams": ["3603", "74", "216"]}}, {"blue": {"score": {"brige": "10", "tele": "14", "hybrid": "0", "final": "24", "foul": "0"}, "teams": ["2054", "2075", "107"]}, "coop": "0", "type": "Q_5", "eventKey": "2012MI", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "45", "foul": "0", "tele": "7"}, "teams": ["904", "858", "3570"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4003", "4337", "244"]}, "coop": "0", "type": "Q_6", "eventKey": "2012MI", "red": {"score": {"bridge": "10", "hybrid": "11", "final": "21", "foul": "0", "tele": "0"}, "teams": ["288", "3546", "141"]}}, {"blue": {"score": {"brige": "0", "tele": "22", "hybrid": "12", "final": "49", "foul": "15"}, "teams": ["2771", "3357", "1918"]}, "coop": "2", "type": "Q_7", "eventKey": "2012MI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3658", "1677", "4327"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "6", "final": "8", "foul": "0"}, "teams": ["1896", "216", "2000"]}, "coop": "0", "type": "Q_8", "eventKey": "2012MI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "14", "foul": "0", "tele": "14"}, "teams": ["4368", "3688", "858"]}}, {"blue": {"score": {"brige": "0", "tele": "15", "hybrid": "12", "final": "27", "foul": "0"}, "teams": ["3458", "1718", "2405"]}, "coop": "2", "type": "Q_9", "eventKey": "2012MI", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "21", "foul": "0", "tele": "9"}, "teams": ["2474", "3546", "3570"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "24", "final": "27", "foul": "0"}, "teams": ["904", "141", "4003"]}, "coop": "0", "type": "Q_10", "eventKey": "2012MI", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "6", "foul": "0", "tele": "0"}, "teams": ["85", "2771", "910"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "6", "foul": "0"}, "teams": ["2245", "3658", "74"]}, "coop": "2", "type": "Q_11", "eventKey": "2012MI", "red": {"score": {"bridge": "20", "hybrid": "11", "final": "34", "foul": "0", "tele": "3"}, "teams": ["4337", "4004", "107"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "4", "final": "12", "foul": "0"}, "teams": ["3234", "3640", "1677"]}, "coop": "0", "type": "Q_12", "eventKey": "2012MI", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "31", "foul": "0", "tele": "15"}, "teams": ["2767", "3572", "3357"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "17", "final": "33", "foul": "3"}, "teams": ["2586", "3875", "3603"]}, "coop": "0", "type": "Q_13", "eventKey": "2012MI", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "25", "foul": "0", "tele": "9"}, "teams": ["288", "2054", "857"]}}, {"blue": {"score": {"brige": "20", "tele": "0", "hybrid": "6", "final": "26", "foul": "0"}, "teams": ["244", "3546", "2771"]}, "coop": "0", "type": "Q_14", "eventKey": "2012MI", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "28", "foul": "0", "tele": "12"}, "teams": ["2075", "216", "4368"]}}, {"blue": {"score": {"brige": "20", "tele": "14", "hybrid": "9", "final": "64", "foul": "21"}, "teams": ["3234", "1896", "141"]}, "coop": "2", "type": "Q_15", "eventKey": "2012MI", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "15", "foul": "0", "tele": "3"}, "teams": ["2474", "2405", "4337"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "6", "final": "22", "foul": "0"}, "teams": ["1677", "288", "3570"]}, "coop": "2", "type": "Q_16", "eventKey": "2012MI", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "16", "foul": "0", "tele": "0"}, "teams": ["857", "910", "858"]}}, {"blue": {"score": {"brige": "20", "tele": "24", "hybrid": "12", "final": "59", "foul": "3"}, "teams": ["3875", "2054", "1718"]}, "coop": "2", "type": "Q_17", "eventKey": "2012MI", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "23", "foul": "6", "tele": "5"}, "teams": ["3658", "4004", "904"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "6", "final": "22", "foul": "6"}, "teams": ["3603", "3640", "4003"]}, "coop": "2", "type": "Q_18", "eventKey": "2012MI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["1918", "2000", "3458"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "0", "final": "15", "foul": "3"}, "teams": ["85", "2767", "2075"]}, "coop": "0", "type": "Q_19", "eventKey": "2012MI", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "6", "foul": "0", "tele": "0"}, "teams": ["2245", "2586", "4327"]}}, {"blue": {"score": {"brige": "10", "tele": "8", "hybrid": "6", "final": "24", "foul": "0"}, "teams": ["3357", "244", "3688"]}, "coop": "0", "type": "Q_20", "eventKey": "2012MI", "red": {"score": {"bridge": "10", "hybrid": "11", "final": "21", "foul": "0", "tele": "0"}, "teams": ["107", "74", "3572"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "6", "final": "9", "foul": "0"}, "teams": ["3546", "4368", "3658"]}, "coop": "0", "type": "Q_21", "eventKey": "2012MI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["1896", "2405", "3603"]}}, {"blue": {"score": {"brige": "10", "tele": "27", "hybrid": "12", "final": "58", "foul": "9"}, "teams": ["2586", "2474", "1718"]}, "coop": "2", "type": "Q_22", "eventKey": "2012MI", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "7", "foul": "0", "tele": "2"}, "teams": ["857", "3875", "4337"]}}, {"blue": {"score": {"brige": "10", "tele": "4", "hybrid": "12", "final": "26", "foul": "0"}, "teams": ["3640", "904", "3688"]}, "coop": "0", "type": "Q_23", "eventKey": "2012MI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "2", "foul": "0", "tele": "2"}, "teams": ["2245", "216", "1918"]}}, {"blue": {"score": {"brige": "20", "tele": "6", "hybrid": "18", "final": "44", "foul": "0"}, "teams": ["858", "141", "3357"]}, "coop": "0", "type": "Q_24", "eventKey": "2012MI", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "46", "foul": "0", "tele": "14"}, "teams": ["4004", "2054", "2767"]}}, {"blue": {"score": {"brige": "10", "tele": "5", "hybrid": "24", "final": "39", "foul": "0"}, "teams": ["85", "2000", "74"]}, "coop": "0", "type": "Q_25", "eventKey": "2012MI", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "16", "foul": "0", "tele": "6"}, "teams": ["3234", "2075", "4003"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "6", "final": "16", "foul": "0"}, "teams": ["288", "244", "910"]}, "coop": "0", "type": "Q_26", "eventKey": "2012MI", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "6", "foul": "0", "tele": "0"}, "teams": ["2771", "3572", "3458"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "12", "final": "14", "foul": "0"}, "teams": ["3570", "4327", "3875"]}, "coop": "0", "type": "Q_27", "eventKey": "2012MI", "red": {"score": {"bridge": "20", "hybrid": "16", "final": "55", "foul": "12", "tele": "7"}, "teams": ["107", "1677", "3688"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "4", "final": "16", "foul": "6"}, "teams": ["4368", "2245", "2405"]}, "coop": "0", "type": "Q_28", "eventKey": "2012MI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "15", "foul": "0", "tele": "15"}, "teams": ["4003", "2054", "1896"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "6", "final": "15", "foul": "0"}, "teams": ["3603", "1918", "141"]}, "coop": "2", "type": "Q_29", "eventKey": "2012MI", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "24", "foul": "0", "tele": "6"}, "teams": ["1718", "216", "3357"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["288", "4337", "4327"]}, "coop": "0", "type": "Q_30", "eventKey": "2012MI", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "16", "foul": "0", "tele": "0"}, "teams": ["904", "3458", "1677"]}}, {"blue": {"score": {"brige": "20", "tele": "0", "hybrid": "0", "final": "20", "foul": "0"}, "teams": ["2075", "3546", "857"]}, "coop": "0", "type": "Q_31", "eventKey": "2012MI", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "12", "foul": "0", "tele": "0"}, "teams": ["910", "3572", "3640"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "6", "final": "12", "foul": "0"}, "teams": ["2771", "2000", "3570"]}, "coop": "2", "type": "Q_32", "eventKey": "2012MI", "red": {"score": {"bridge": "20", "hybrid": "10", "final": "33", "foul": "0", "tele": "3"}, "teams": ["4004", "2586", "74"]}}, {"blue": {"score": {"brige": "10", "tele": "19", "hybrid": "17", "final": "46", "foul": "0"}, "teams": ["2767", "244", "2474"]}, "coop": "0", "type": "Q_33", "eventKey": "2012MI", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "48", "foul": "0", "tele": "10"}, "teams": ["3658", "85", "107"]}}, {"blue": {"score": {"brige": "20", "tele": "17", "hybrid": "0", "final": "37", "foul": "0"}, "teams": ["3234", "3357", "857"]}, "coop": "0", "type": "Q_34", "eventKey": "2012MI", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "10", "foul": "0", "tele": "5"}, "teams": ["858", "3458", "4327"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "15", "final": "18", "foul": "0"}, "teams": ["74", "4337", "3640"]}, "coop": "2", "type": "Q_35", "eventKey": "2012MI", "red": {"score": {"bridge": "10", "hybrid": "11", "final": "30", "foul": "0", "tele": "9"}, "teams": ["141", "2075", "2405"]}}, {"blue": {"score": {"brige": "0", "tele": "20", "hybrid": "10", "final": "30", "foul": "0"}, "teams": ["3688", "1918", "2054"]}, "coop": "2", "type": "Q_36", "eventKey": "2012MI", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "39", "foul": "3", "tele": "20"}, "teams": ["288", "1718", "2767"]}}, {"blue": {"score": {"brige": "0", "tele": "21", "hybrid": "24", "final": "45", "foul": "0"}, "teams": ["2474", "4368", "3572"]}, "coop": "0", "type": "Q_37", "eventKey": "2012MI", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "32", "foul": "0", "tele": "12"}, "teams": ["904", "3603", "2000"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "4", "final": "19", "foul": "3"}, "teams": ["3234", "858", "3875"]}, "coop": "2", "type": "Q_38", "eventKey": "2012MI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "10", "foul": "3", "tele": "7"}, "teams": ["3570", "244", "3658"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "10", "final": "19", "foul": "0"}, "teams": ["2586", "216", "910"]}, "coop": "2", "type": "Q_39", "eventKey": "2012MI", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "33", "foul": "0", "tele": "11"}, "teams": ["3546", "107", "2245"]}}, {"blue": {"score": {"brige": "10", "tele": "8", "hybrid": "12", "final": "36", "foul": "6"}, "teams": ["85", "4004", "4003"]}, "coop": "0", "type": "Q_40", "eventKey": "2012MI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["1896", "1677", "2771"]}}, {"blue": {"score": {"brige": "10", "tele": "12", "hybrid": "18", "final": "46", "foul": "6"}, "teams": ["2075", "2000", "3658"]}, "coop": "0", "type": "Q_41", "eventKey": "2012MI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "3", "tele": "0"}, "teams": ["857", "3570", "141"]}}, {"blue": {"score": {"brige": "0", "tele": "13", "hybrid": "18", "final": "31", "foul": "0"}, "teams": ["4327", "107", "3357"]}, "coop": "2", "type": "Q_42", "eventKey": "2012MI", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "12", "foul": "0", "tele": "0"}, "teams": ["3603", "3546", "4337"]}}, {"blue": {"score": {"brige": "20", "tele": "11", "hybrid": "6", "final": "37", "foul": "0"}, "teams": ["85", "904", "2586"]}, "coop": "2", "type": "Q_43", "eventKey": "2012MI", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "12", "foul": "0", "tele": "0"}, "teams": ["288", "3234", "3688"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "6", "final": "10", "foul": "0"}, "teams": ["74", "2054", "1677"]}, "coop": "0", "type": "Q_44", "eventKey": "2012MI", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "7", "foul": "0", "tele": "1"}, "teams": ["1896", "244", "3640"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "12", "final": "14", "foul": "0"}, "teams": ["2405", "3875", "3572"]}, "coop": "0", "type": "Q_45", "eventKey": "2012MI", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "24", "foul": "0", "tele": "2"}, "teams": ["858", "2771", "2245"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "12", "final": "25", "foul": "0"}, "teams": ["1718", "4004", "4368"]}, "coop": "2", "type": "Q_46", "eventKey": "2012MI", "red": {"score": {"bridge": "0", "hybrid": "24", "final": "48", "foul": "6", "tele": "18"}, "teams": ["1918", "2474", "910"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "6", "final": "22", "foul": "0"}, "teams": ["216", "2767", "3658"]}, "coop": "2", "type": "Q_47", "eventKey": "2012MI", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "20", "foul": "12", "tele": "2"}, "teams": ["3458", "4003", "74"]}}, {"blue": {"score": {"brige": "10", "tele": "14", "hybrid": "11", "final": "38", "foul": "3"}, "teams": ["107", "3875", "904"]}, "coop": "0", "type": "Q_48", "eventKey": "2012MI", "red": {"score": {"bridge": "10", "hybrid": "4", "final": "14", "foul": "0", "tele": "0"}, "teams": ["141", "3640", "2771"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3603", "910", "1677"]}, "coop": "0", "type": "Q_49", "eventKey": "2012MI", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "9", "foul": "3", "tele": "0"}, "teams": ["2405", "244", "2586"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "0", "final": "2", "foul": "0"}, "teams": ["1718", "1896", "857"]}, "coop": "2", "type": "Q_50", "eventKey": "2012MI", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "33", "foul": "3", "tele": "14"}, "teams": ["2767", "2000", "4327"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "24", "final": "24", "foul": "0"}, "teams": ["3572", "4003", "216"]}, "coop": "2", "type": "Q_51", "eventKey": "2012MI", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "59", "foul": "0", "tele": "21"}, "teams": ["3234", "2474", "2054"]}}, {"blue": {"score": {"brige": "0", "tele": "20", "hybrid": "6", "final": "26", "foul": "0"}, "teams": ["1918", "858", "3546"]}, "coop": "2", "type": "Q_52", "eventKey": "2012MI", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "18", "foul": "0", "tele": "6"}, "teams": ["2245", "4337", "85"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["288", "4368", "3458"]}, "coop": "0", "type": "Q_53", "eventKey": "2012MI", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "39", "foul": "0", "tele": "21"}, "teams": ["2075", "3357", "4004"]}}, {"blue": {"score": {"brige": "0", "tele": "7", "hybrid": "6", "final": "16", "foul": "3"}, "teams": ["3688", "2771", "4327"]}, "coop": "0", "type": "Q_54", "eventKey": "2012MI", "red": {"score": {"bridge": "10", "hybrid": "11", "final": "24", "foul": "0", "tele": "3"}, "teams": ["3570", "4003", "2586"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "18", "final": "21", "foul": "0"}, "teams": ["3572", "1896", "904"]}, "coop": "0", "type": "Q_55", "eventKey": "2012MI", "red": {"score": {"bridge": "10", "hybrid": "11", "final": "46", "foul": "3", "tele": "22"}, "teams": ["1918", "74", "244"]}}, {"blue": {"score": {"brige": "10", "tele": "18", "hybrid": "22", "final": "50", "foul": "0"}, "teams": ["107", "1718", "2000"]}, "coop": "2", "type": "Q_56", "eventKey": "2012MI", "red": {"score": {"bridge": "20", "hybrid": "5", "final": "25", "foul": "0", "tele": "0"}, "teams": ["288", "3875", "216"]}}, {"blue": {"score": {"brige": "10", "tele": "18", "hybrid": "12", "final": "52", "foul": "12"}, "teams": ["2474", "141", "2245"]}, "coop": "0", "type": "Q_57", "eventKey": "2012MI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "14", "foul": "3", "tele": "11"}, "teams": ["3357", "4368", "3570"]}}, {"blue": {"score": {"brige": "10", "tele": "12", "hybrid": "6", "final": "28", "foul": "0"}, "teams": ["2075", "3603", "3458"]}, "coop": "0", "type": "Q_58", "eventKey": "2012MI", "red": {"score": {"bridge": "0", "hybrid": "14", "final": "23", "foul": "0", "tele": "9"}, "teams": ["1677", "858", "2767"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "4", "foul": "0"}, "teams": ["3688", "4004", "857"]}, "coop": "2", "type": "Q_59", "eventKey": "2012MI", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "30", "foul": "0", "tele": "8"}, "teams": ["3546", "3234", "2405"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "6", "final": "15", "foul": "3"}, "teams": ["3658", "4337", "910"]}, "coop": "2", "type": "Q_60", "eventKey": "2012MI", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "37", "foul": "0", "tele": "9"}, "teams": ["3640", "2054", "85"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "6", "final": "25", "foul": "3"}, "teams": ["2000", "2245", "288"]}, "coop": "2", "type": "Q_61", "eventKey": "2012MI", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "16", "foul": "0", "tele": "10"}, "teams": ["1718", "244", "4327"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3603", "2771", "4004"]}, "coop": "0", "type": "Q_62", "eventKey": "2012MI", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "30", "foul": "3", "tele": "5"}, "teams": ["2767", "857", "904"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "12", "final": "27", "foul": "6"}, "teams": ["3658", "1918", "1896"]}, "coop": "2", "type": "Q_63", "eventKey": "2012MI", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "44", "foul": "6", "tele": "6"}, "teams": ["2586", "2075", "858"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "11", "final": "23", "foul": "3"}, "teams": ["910", "74", "2405"]}, "coop": "0", "type": "Q_64", "eventKey": "2012MI", "red": {"score": {"bridge": "20", "hybrid": "23", "final": "65", "foul": "6", "tele": "16"}, "teams": ["3875", "3357", "85"]}}, {"blue": {"score": {"brige": "20", "tele": "13", "hybrid": "11", "final": "65", "foul": "21"}, "teams": ["216", "3570", "3234"]}, "coop": "0", "type": "Q_65", "eventKey": "2012MI", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "20", "foul": "0", "tele": "0"}, "teams": ["4368", "4337", "1677"]}}, {"blue": {"score": {"brige": "10", "tele": "12", "hybrid": "30", "final": "55", "foul": "3"}, "teams": ["2054", "3546", "3572"]}, "coop": "2", "type": "Q_66", "eventKey": "2012MI", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "14", "foul": "0", "tele": "2"}, "teams": ["107", "3458", "141"]}}, {"blue": {"score": {"brige": "20", "tele": "30", "hybrid": "12", "final": "74", "foul": "12"}, "teams": ["2474", "3640", "858"]}, "coop": "2", "type": "Q_67", "eventKey": "2012MI", "red": {"score": {"bridge": "10", "hybrid": "11", "final": "28", "foul": "0", "tele": "7"}, "teams": ["4003", "3688", "2245"]}}, {"blue": {"score": {"brige": "20", "tele": "3", "hybrid": "11", "final": "43", "foul": "9"}, "teams": ["1896", "288", "74"]}, "coop": "0", "type": "Q_68", "eventKey": "2012MI", "red": {"score": {"bridge": "20", "hybrid": "24", "final": "47", "foul": "0", "tele": "3"}, "teams": ["3603", "3658", "3234"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "6", "final": "21", "foul": "3"}, "teams": ["4337", "1918", "3572"]}, "coop": "0", "type": "Q_69", "eventKey": "2012MI", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "11", "foul": "0", "tele": "0"}, "teams": ["2771", "3875", "4368"]}}, {"blue": {"score": {"brige": "0", "tele": "11", "hybrid": "5", "final": "19", "foul": "3"}, "teams": ["2767", "2586", "3688"]}, "coop": "2", "type": "Q_70", "eventKey": "2012MI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "12", "foul": "0", "tele": "12"}, "teams": ["85", "216", "2405"]}}, {"blue": {"score": {"brige": "10", "tele": "18", "hybrid": "11", "final": "39", "foul": "0"}, "teams": ["2474", "2075", "4327"]}, "coop": "0", "type": "Q_71", "eventKey": "2012MI", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "34", "foul": "0", "tele": "12"}, "teams": ["244", "2000", "2054"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "18", "final": "24", "foul": "3"}, "teams": ["3357", "4003", "1677"]}, "coop": "2", "type": "Q_72", "eventKey": "2012MI", "red": {"score": {"bridge": "10", "hybrid": "30", "final": "62", "foul": "0", "tele": "22"}, "teams": ["904", "1718", "3546"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["4004", "3640", "3458"]}, "coop": "2", "type": "Q_73", "eventKey": "2012MI", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "29", "foul": "0", "tele": "3"}, "teams": ["107", "3570", "910"]}}, {"blue": {"score": {"brige": "10", "tele": "9", "hybrid": "11", "final": "30", "foul": "0"}, "teams": ["857", "2245", "3603"]}, "coop": "0", "type": "Q_74", "eventKey": "2012MI", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "6", "foul": "0", "tele": "6"}, "teams": ["141", "3658", "3688"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "12", "final": "27", "foul": "9"}, "teams": ["2771", "2767", "4337"]}, "coop": "2", "type": "Q_75", "eventKey": "2012MI", "red": {"score": {"bridge": "20", "hybrid": "24", "final": "65", "foul": "3", "tele": "18"}, "teams": ["2474", "1677", "2000"]}}, {"blue": {"score": {"brige": "0", "tele": "17", "hybrid": "12", "final": "29", "foul": "0"}, "teams": ["3570", "3458", "85"]}, "coop": "2", "type": "Q_76", "eventKey": "2012MI", "red": {"score": {"bridge": "0", "hybrid": "24", "final": "45", "foul": "0", "tele": "21"}, "teams": ["2075", "3572", "1718"]}}, {"blue": {"score": {"brige": "0", "tele": "7", "hybrid": "6", "final": "13", "foul": "0"}, "teams": ["4327", "2405", "904"]}, "coop": "0", "type": "Q_77", "eventKey": "2012MI", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "25", "foul": "0", "tele": "5"}, "teams": ["4004", "141", "910"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "0", "final": "8", "foul": "0"}, "teams": ["244", "107", "3234"]}, "coop": "2", "type": "Q_78", "eventKey": "2012MI", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "35", "foul": "0", "tele": "19"}, "teams": ["1918", "4003", "857"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "6", "foul": "0"}, "teams": ["2586", "4368", "1896"]}, "coop": "2", "type": "Q_79", "eventKey": "2012MI", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "19", "foul": "0", "tele": "9"}, "teams": ["3357", "288", "3640"]}}, {"blue": {"score": {"brige": "20", "tele": "16", "hybrid": "16", "final": "55", "foul": "3"}, "teams": ["858", "2054", "216"]}, "coop": "2", "type": "Q_80", "eventKey": "2012MI", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "29", "foul": "0", "tele": "3"}, "teams": ["3875", "3546", "74"]}}, {"blue": {"score": {"brige": "10", "tele": "11", "hybrid": "6", "final": "27", "foul": "0"}, "teams": ["2075", "2405", "4004"]}, "coop": "0", "type": "E_1", "eventKey": "2012MI", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "40", "foul": "0", "tele": "20"}, "teams": ["2474", "1718", "288"]}}, {"blue": {"score": {"brige": "10", "tele": "20", "hybrid": "18", "final": "51", "foul": "3"}, "teams": ["1918", "910", "85"]}, "coop": "0", "type": "E_2", "eventKey": "2012MI", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "58", "foul": "9", "tele": "27"}, "teams": ["74", "3357", "107"]}}, {"blue": {"score": {"brige": "0", "tele": "11", "hybrid": "6", "final": "23", "foul": "6"}, "teams": ["904", "4003", "858"]}, "coop": "0", "type": "E_3", "eventKey": "2012MI", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "40", "foul": "3", "tele": "11"}, "teams": ["2586", "857", "3234"]}}, {"blue": {"score": {"brige": "20", "tele": "9", "hybrid": "24", "final": "53", "foul": "0"}, "teams": ["2000", "2767", "3572"]}, "coop": "0", "type": "E_4", "eventKey": "2012MI", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "35", "foul": "0", "tele": "3"}, "teams": ["2054", "3546", "141"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "12", "final": "25", "foul": "0"}, "teams": ["2075", "2405", "4004"]}, "coop": "0", "type": "E_5", "eventKey": "2012MI", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "33", "foul": "0", "tele": "21"}, "teams": ["288", "1718", "2474"]}}, {"blue": {"score": {"brige": "0", "tele": "23", "hybrid": "29", "final": "52", "foul": "0"}, "teams": ["1918", "910", "85"]}, "coop": "0", "type": "E_6", "eventKey": "2012MI", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "44", "foul": "3", "tele": "29"}, "teams": ["74", "3357", "107"]}}, {"blue": {"score": {"brige": "20", "tele": "4", "hybrid": "12", "final": "39", "foul": "3"}, "teams": ["904", "858", "4003"]}, "coop": "0", "type": "E_7", "eventKey": "2012MI", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "35", "foul": "0", "tele": "15"}, "teams": ["857", "2586", "3234"]}}, {"blue": {"score": {"brige": "10", "tele": "9", "hybrid": "18", "final": "40", "foul": "3"}, "teams": ["2767", "2000", "3572"]}, "coop": "0", "type": "E_8", "eventKey": "2012MI", "red": {"score": {"bridge": "20", "hybrid": "24", "final": "59", "foul": "0", "tele": "15"}, "teams": ["2054", "141", "3546"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "12", "final": "24", "foul": "6"}, "teams": ["904", "858", "4003"]}, "coop": "0", "type": "E_11", "eventKey": "2012MI", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "18", "foul": "0", "tele": "6"}, "teams": ["2586", "857", "3234"]}}, {"blue": {"score": {"brige": "20", "tele": "7", "hybrid": "18", "final": "45", "foul": "0"}, "teams": ["2000", "3572", "2767"]}, "coop": "0", "type": "E_12", "eventKey": "2012MI", "red": {"score": {"bridge": "20", "hybrid": "18", "final": "62", "foul": "3", "tele": "21"}, "teams": ["3546", "141", "2054"]}}, {"blue": {"score": {"brige": "20", "tele": "10", "hybrid": "30", "final": "60", "foul": "0"}, "teams": ["910", "85", "1918"]}, "coop": "0", "type": "E_13", "eventKey": "2012MI", "red": {"score": {"bridge": "0", "hybrid": "30", "final": "54", "foul": "0", "tele": "24"}, "teams": ["1718", "288", "2474"]}}, {"blue": {"score": {"brige": "20", "tele": "12", "hybrid": "24", "final": "56", "foul": "0"}, "teams": ["141", "3546", "2054"]}, "coop": "0", "type": "E_14", "eventKey": "2012MI", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "55", "foul": "9", "tele": "14"}, "teams": ["4003", "904", "858"]}}, {"blue": {"score": {"brige": "10", "tele": "14", "hybrid": "24", "final": "48", "foul": "0"}, "teams": ["910", "85", "1918"]}, "coop": "0", "type": "E_15", "eventKey": "2012MI", "red": {"score": {"bridge": "10", "hybrid": "17", "final": "42", "foul": "0", "tele": "15"}, "teams": ["288", "2474", "1718"]}}, {"blue": {"score": {"brige": "20", "tele": "18", "hybrid": "18", "final": "56", "foul": "0"}, "teams": ["2054", "141", "3546"]}, "coop": "0", "type": "E_16", "eventKey": "2012MI", "red": {"score": {"bridge": "0", "hybrid": "24", "final": "44", "foul": "6", "tele": "14"}, "teams": ["4003", "858", "904"]}}, {"blue": {"score": {"brige": "20", "tele": "12", "hybrid": "18", "final": "50", "foul": "0"}, "teams": ["3546", "2054", "141"]}, "coop": "0", "type": "E_19", "eventKey": "2012MI", "red": {"score": {"bridge": "40", "hybrid": "11", "final": "64", "foul": "3", "tele": "10"}, "teams": ["910", "85", "1918"]}}, {"blue": {"score": {"brige": "20", "tele": "15", "hybrid": "30", "final": "65", "foul": "0"}, "teams": ["3546", "141", "2054"]}, "coop": "0", "type": "E_20", "eventKey": "2012MI", "red": {"score": {"bridge": "40", "hybrid": "6", "final": "61", "foul": "0", "tele": "15"}, "teams": ["85", "910", "1918"]}}, {"blue": {"score": {"brige": "20", "tele": "8", "hybrid": "36", "final": "64", "foul": "0"}, "teams": ["3546", "141", "2054"]}, "coop": "0", "type": "E_21", "eventKey": "2012MI", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "40", "foul": "0", "tele": "8"}, "teams": ["910", "85", "1918"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "0", "final": "6", "foul": "0"}, "teams": ["2246", "4325", "2767"]}, "coop": "0", "type": "Q_51", "eventKey": "2012MIGL", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "25", "foul": "0", "tele": "3"}, "teams": ["3546", "3618", "4368"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3767", "2771", "4004"]}, "coop": "0", "type": "Q_52", "eventKey": "2012MIGL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "1", "foul": "0", "tele": "1"}, "teams": ["4327", "4389", "1677"]}}, {"blue": {"score": {"brige": "0", "tele": "11", "hybrid": "6", "final": "29", "foul": "12"}, "teams": ["4398", "123", "2959"]}, "coop": "0", "type": "Q_53", "eventKey": "2012MIGL", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "15", "foul": "0", "tele": "3"}, "teams": ["3452", "4237", "3875"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "0", "final": "6", "foul": "0"}, "teams": ["2405", "1254", "3658"]}, "coop": "0", "type": "Q_54", "eventKey": "2012MIGL", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "6", "foul": "0", "tele": "0"}, "teams": ["4409", "4381", "3656"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "12", "final": "51", "foul": "27"}, "teams": ["85", "904", "4327"]}, "coop": "2", "type": "Q_55", "eventKey": "2012MIGL", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "28", "foul": "0", "tele": "12"}, "teams": ["4389", "1918", "2246"]}}, {"blue": {"score": {"brige": "20", "tele": "1", "hybrid": "0", "final": "21", "foul": "0"}, "teams": ["4325", "4362", "4004"]}, "coop": "0", "type": "Q_56", "eventKey": "2012MIGL", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "31", "foul": "0", "tele": "9"}, "teams": ["4368", "123", "4375"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "0", "final": "22", "foul": "9"}, "teams": ["3656", "4398", "3875"]}, "coop": "0", "type": "Q_57", "eventKey": "2012MIGL", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "19", "foul": "9", "tele": "4"}, "teams": ["1677", "2959", "4408"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "9", "foul": "3"}, "teams": ["1254", "1528", "247"]}, "coop": "0", "type": "Q_58", "eventKey": "2012MIGL", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "14", "foul": "0", "tele": "3"}, "teams": ["3546", "2767", "4237"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "0", "final": "6", "foul": "0"}, "teams": ["2771", "4381", "3509"]}, "coop": "0", "type": "Q_59", "eventKey": "2012MIGL", "red": {"score": {"bridge": "10", "hybrid": "10", "final": "22", "foul": "0", "tele": "2"}, "teams": ["4377", "3452", "2000"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4409", "2405", "3767"]}, "coop": "0", "type": "Q_60", "eventKey": "2012MIGL", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "12", "foul": "0", "tele": "0"}, "teams": ["3618", "1940", "3658"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "5", "final": "18", "foul": "0"}, "teams": ["4327", "4375", "2767"]}, "coop": "0", "type": "Q_61", "eventKey": "2012MIGL", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "10", "foul": "0", "tele": "0"}, "teams": ["4325", "3875", "2959"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "6", "final": "22", "foul": "0"}, "teams": ["3546", "4408", "123"]}, "coop": "0", "type": "Q_62", "eventKey": "2012MIGL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "1", "foul": "0", "tele": "1"}, "teams": ["2246", "4004", "4381"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "6", "final": "18", "foul": "0"}, "teams": ["1940", "4362", "85"]}, "coop": "0", "type": "Q_63", "eventKey": "2012MIGL", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "6", "foul": "0", "tele": "0"}, "teams": ["3618", "4398", "2405"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "12", "final": "15", "foul": "0"}, "teams": ["247", "3509", "4377"]}, "coop": "0", "type": "Q_64", "eventKey": "2012MIGL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "3", "tele": "0"}, "teams": ["1254", "3767", "4389"]}}, {"blue": {"score": {"brige": "0", "tele": "21", "hybrid": "0", "final": "21", "foul": "0"}, "teams": ["3656", "3452", "904"]}, "coop": "0", "type": "Q_65", "eventKey": "2012MIGL", "red": {"score": {"bridge": "10", "hybrid": "16", "final": "28", "foul": "0", "tele": "2"}, "teams": ["4237", "2000", "4409"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "5", "final": "5", "foul": "0"}, "teams": ["1677", "2771", "4368"]}, "coop": "0", "type": "Q_66", "eventKey": "2012MIGL", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "15", "foul": "0", "tele": "9"}, "teams": ["1528", "3658", "1918"]}}, {"blue": {"score": {"brige": "10", "tele": "12", "hybrid": "12", "final": "34", "foul": "0"}, "teams": ["1254", "2246", "85"]}, "coop": "0", "type": "Q_67", "eventKey": "2012MIGL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["4398", "4408", "4362"]}}, {"blue": {"score": {"brige": "20", "tele": "3", "hybrid": "6", "final": "29", "foul": "0"}, "teams": ["4409", "3546", "4004"]}, "coop": "0", "type": "Q_68", "eventKey": "2012MIGL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["2405", "4325", "4375"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "0", "final": "8", "foul": "0"}, "teams": ["2000", "2767", "3767"]}, "coop": "2", "type": "Q_69", "eventKey": "2012MIGL", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "21", "foul": "0", "tele": "11"}, "teams": ["123", "1918", "4377"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "9", "foul": "3"}, "teams": ["3618", "4327", "4381"]}, "coop": "0", "type": "Q_70", "eventKey": "2012MIGL", "red": {"score": {"bridge": "20", "hybrid": "0", "final": "26", "foul": "0", "tele": "6"}, "teams": ["4237", "2959", "247"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3658", "3656", "4389"]}, "coop": "0", "type": "Q_71", "eventKey": "2012MIGL", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "7", "foul": "3", "tele": "4"}, "teams": ["3452", "2771", "1528"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "4", "foul": "0"}, "teams": ["1940", "4368", "3875"]}, "coop": "0", "type": "Q_72", "eventKey": "2012MIGL", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "16", "foul": "3", "tele": "2"}, "teams": ["1677", "904", "3509"]}}, {"blue": {"score": {"brige": "0", "tele": "12", "hybrid": "5", "final": "17", "foul": "0"}, "teams": ["1940", "4409", "3509"]}, "coop": "0", "type": "E_1", "eventKey": "2012MIGL", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "32", "foul": "3", "tele": "17"}, "teams": ["1677", "85", "1918"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "6", "final": "9", "foul": "0"}, "teams": ["3618", "3452", "4237"]}, "coop": "0", "type": "E_2", "eventKey": "2012MIGL", "red": {"score": {"bridge": "10", "hybrid": "4", "final": "19", "foul": "0", "tele": "5"}, "teams": ["4377", "2246", "3656"]}}, {"blue": {"score": {"brige": "10", "tele": "10", "hybrid": "6", "final": "29", "foul": "3"}, "teams": ["2000", "4362", "904"]}, "coop": "0", "type": "E_3", "eventKey": "2012MIGL", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "12", "foul": "0", "tele": "0"}, "teams": ["123", "2405", "247"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "6", "final": "8", "foul": "0"}, "teams": ["4004", "4398", "3546"]}, "coop": "0", "type": "E_4", "eventKey": "2012MIGL", "red": {"score": {"bridge": "10", "hybrid": "16", "final": "29", "foul": "0", "tele": "3"}, "teams": ["4368", "2959", "2767"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "10", "final": "10", "foul": "0"}, "teams": ["3509", "4409", "1940"]}, "coop": "0", "type": "E_5", "eventKey": "2012MIGL", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "31", "foul": "3", "tele": "6"}, "teams": ["1677", "1918", "85"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "18", "final": "21", "foul": "3"}, "teams": ["4237", "3452", "3618"]}, "coop": "0", "type": "E_6", "eventKey": "2012MIGL", "red": {"score": {"bridge": "10", "hybrid": "10", "final": "26", "foul": "0", "tele": "6"}, "teams": ["2246", "4377", "3656"]}}, {"blue": {"score": {"brige": "10", "tele": "8", "hybrid": "12", "final": "30", "foul": "0"}, "teams": ["2000", "4362", "904"]}, "coop": "0", "type": "E_7", "eventKey": "2012MIGL", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "31", "foul": "0", "tele": "12"}, "teams": ["247", "2405", "123"]}}, {"blue": {"score": {"brige": "0", "tele": "2", "hybrid": "12", "final": "14", "foul": "0"}, "teams": ["3546", "4004", "4398"]}, "coop": "0", "type": "E_8", "eventKey": "2012MIGL", "red": {"score": {"bridge": "10", "hybrid": "11", "final": "24", "foul": "0", "tele": "3"}, "teams": ["2767", "4368", "2959"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "6", "final": "12", "foul": "0"}, "teams": ["904", "2000", "4362"]}, "coop": "0", "type": "E_11", "eventKey": "2012MIGL", "red": {"score": {"bridge": "10", "hybrid": "23", "final": "42", "foul": "9", "tele": "0"}, "teams": ["123", "247", "2405"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "0", "final": "8", "foul": "0"}, "teams": ["3656", "2246", "4377"]}, "coop": "0", "type": "E_13", "eventKey": "2012MIGL", "red": {"score": {"bridge": "20", "hybrid": "17", "final": "50", "foul": "0", "tele": "13"}, "teams": ["1677", "1918", "85"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "11", "final": "11", "foul": "0"}, "teams": ["2959", "2767", "4368"]}, "coop": "0", "type": "E_14", "eventKey": "2012MIGL", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "24", "foul": "0", "tele": "14"}, "teams": ["123", "2405", "247"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "3", "foul": "0"}, "teams": ["3656", "2246", "4377"]}, "coop": "0", "type": "E_15", "eventKey": "2012MIGL", "red": {"score": {"bridge": "10", "hybrid": "18", "final": "37", "foul": "0", "tele": "9"}, "teams": ["1677", "1918", "85"]}}, {"blue": {"score": {"brige": "20", "tele": "9", "hybrid": "12", "final": "44", "foul": "3"}, "teams": ["2959", "4368", "2767"]}, "coop": "0", "type": "E_16", "eventKey": "2012MIGL", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "43", "foul": "9", "tele": "12"}, "teams": ["123", "247", "2405"]}}, {"blue": {"score": {"brige": "20", "tele": "9", "hybrid": "11", "final": "40", "foul": "0"}, "teams": ["2767", "4368", "2959"]}, "coop": "0", "type": "E_18", "eventKey": "2012MIGL", "red": {"score": {"bridge": "0", "hybrid": "23", "final": "29", "foul": "0", "tele": "6"}, "teams": ["123", "2405", "247"]}}, {"blue": {"score": {"brige": "10", "tele": "2", "hybrid": "12", "final": "24", "foul": "0"}, "teams": ["2959", "4368", "2767"]}, "coop": "0", "type": "E_19", "eventKey": "2012MIGL", "red": {"score": {"bridge": "20", "hybrid": "12", "final": "44", "foul": "0", "tele": "12"}, "teams": ["85", "4327", "1918"]}}, {"blue": {"score": {"brige": "10", "tele": "4", "hybrid": "22", "final": "36", "foul": "0"}, "teams": ["4368", "2959", "2767"]}, "coop": "0", "type": "E_20", "eventKey": "2012MIGL", "red": {"score": {"bridge": "0", "hybrid": "24", "final": "47", "foul": "3", "tele": "20"}, "teams": ["85", "1918", "4327"]}}, {"blue": {"score": {"brige": "10", "tele": "4", "hybrid": "0", "final": "17", "foul": "3"}, "teams": ["2861", "2232", "2470"]}, "coop": "0", "type": "Q_1", "eventKey": "2012MN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3297", "3723", "2181"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "6", "foul": "0"}, "teams": ["2987", "3313", "2502"]}, "coop": "0", "type": "Q_2", "eventKey": "2012MN", "red": {"score": {"bridge": "0", "hybrid": "18", "final": "23", "foul": "0", "tele": "5"}, "teams": ["2501", "3100", "3630"]}}, {"blue": {"score": {"brige": "10", "tele": "6", "hybrid": "6", "final": "22", "foul": "0"}, "teams": ["3407", "3018", "2530"]}, "coop": "0", "type": "Q_3", "eventKey": "2012MN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["2667", "4207", "3038"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "3", "foul": "3"}, "teams": ["3524", "2531", "2511"]}, "coop": "0", "type": "Q_4", "eventKey": "2012MN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3299", "3765", "3292"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "13", "foul": "3"}, "teams": ["2500", "3783", "3058"]}, "coop": "0", "type": "Q_5", "eventKey": "2012MN", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "10", "foul": "0", "tele": "4"}, "teams": ["2879", "3454", "3747"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3300", "3244", "4021"]}, "coop": "0", "type": "Q_6", "eventKey": "2012MN", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "15", "foul": "3", "tele": "0"}, "teams": ["3184", "2515", "2479"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2545", "3871", "3722"]}, "coop": "2", "type": "Q_7", "eventKey": "2012MN", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "15", "foul": "3", "tele": "0"}, "teams": ["2052", "2227", "2538"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "6", "foul": "6"}, "teams": ["2503", "3751", "2518"]}, "coop": "0", "type": "Q_8", "eventKey": "2012MN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["2498", "4229", "3745"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3212", "3081", "3082"]}, "coop": "0", "type": "Q_9", "eventKey": "2012MN", "red": {"score": {"bridge": "0", "hybrid": "8", "final": "8", "foul": "0", "tele": "0"}, "teams": ["3642", "2450", "2508"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "6", "foul": "0"}, "teams": ["3090", "2532", "2705"]}, "coop": "0", "type": "Q_10", "eventKey": "2012MN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "4", "foul": "0", "tele": "4"}, "teams": ["525", "4215", "3007"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2825", "2480", "2846"]}, "coop": "0", "type": "Q_11", "eventKey": "2012MN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["2509", "2535", "3313"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "3", "foul": "0"}, "teams": ["2181", "4021", "3299"]}, "coop": "0", "type": "Q_12", "eventKey": "2012MN", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "11", "foul": "0", "tele": "0"}, "teams": ["3722", "2538", "2500"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["2227", "3038", "3407"]}, "coop": "0", "type": "Q_13", "eventKey": "2012MN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3100", "3751", "2879"]}}, {"blue": {"score": {"brige": "0", "tele": "13", "hybrid": "6", "final": "19", "foul": "0"}, "teams": ["3058", "2987", "2052"]}, "coop": "0", "type": "Q_14", "eventKey": "2012MN", "red": {"score": {"bridge": "0", "hybrid": "10", "final": "10", "foul": "0", "tele": "0"}, "teams": ["2450", "2518", "3300"]}}, {"blue": {"score": {"brige": "0", "tele": "6", "hybrid": "6", "final": "12", "foul": "0"}, "teams": ["2503", "2545", "525"]}, "coop": "0", "type": "Q_15", "eventKey": "2012MN", "red": {"score": {"bridge": "0", "hybrid": "8", "final": "8", "foul": "0", "tele": "0"}, "teams": ["2511", "2508", "3783"]}}, {"blue": {"score": {"brige": "0", "tele": "8", "hybrid": "10", "final": "21", "foul": "3"}, "teams": ["3292", "2530", "3007"]}, "coop": "0", "type": "Q_16", "eventKey": "2012MN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["3212", "2535", "2480"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "4", "final": "7", "foul": "3"}, "teams": ["2470", "4207", "3090"]}, "coop": "0", "type": "Q_17", "eventKey": "2012MN", "red": {"score": {"bridge": "0", "hybrid": "4", "final": "4", "foul": "0", "tele": "0"}, "teams": ["2498", "3524", "2501"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["3745", "2502", "2479"]}, "coop": "0", "type": "Q_18", "eventKey": "2012MN", "red": {"score": {"bridge": "0", "hybrid": "17", "final": "17", "foul": "0", "tele": "0"}, "teams": ["2846", "3082", "2861"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "0", "final": "4", "foul": "0"}, "teams": ["3642", "4229", "3244"]}, "coop": "0", "type": "Q_19", "eventKey": "2012MN", "red": {"score": {"bridge": "0", "hybrid": "11", "final": "11", "foul": "0", "tele": "0"}, "teams": ["2531", "3723", "2705"]}}, {"blue": {"score": {"brige": "20", "tele": "3", "hybrid": "6", "final": "29", "foul": "0"}, "teams": ["3018", "3297", "3454"]}, "coop": "0", "type": "Q_20", "eventKey": "2012MN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["2532", "2515", "3081"]}}, {"blue": {"score": {"brige": "10", "tele": "4", "hybrid": "6", "final": "20", "foul": "0"}, "teams": ["3630", "4215", "2232"]}, "coop": "0", "type": "Q_21", "eventKey": "2012MN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "0", "tele": "3"}, "teams": ["3871", "3184", "2509"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "6", "final": "9", "foul": "0"}, "teams": ["3747", "2825", "3100"]}, "coop": "0", "type": "Q_22", "eventKey": "2012MN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "3", "foul": "3", "tele": "0"}, "teams": ["2667", "3765", "3007"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "6", "final": "22", "foul": "6"}, "teams": ["2538", "2508", "4207"]}, "coop": "0", "type": "Q_23", "eventKey": "2012MN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["2879", "3090", "3745"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "6", "foul": "6"}, "teams": ["3212", "3751", "2470"]}, "coop": "0", "type": "Q_24", "eventKey": "2012MN", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "10", "foul": "0", "tele": "4"}, "teams": ["2511", "3058", "3244"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "6", "foul": "0"}, "teams": ["3038", "3722", "3524"]}, "coop": "2", "type": "Q_25", "eventKey": "2012MN", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "9", "foul": "0", "tele": "3"}, "teams": ["2545", "2502", "2535"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["3081", "2501", "3297"]}, "coop": "0", "type": "Q_26", "eventKey": "2012MN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "9", "foul": "9", "tele": "0"}, "teams": ["2479", "3407", "3871"]}}, {"blue": {"score": {"brige": "10", "tele": "10", "hybrid": "0", "final": "29", "foul": "9"}, "teams": ["3082", "3783", "2987"]}, "coop": "2", "type": "Q_27", "eventKey": "2012MN", "red": {"score": {"bridge": "0", "hybrid": "24", "final": "44", "foul": "3", "tele": "17"}, "teams": ["2705", "3018", "2480"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "6", "foul": "0"}, "teams": ["2181", "2531", "4215"]}, "coop": "0", "type": "Q_28", "eventKey": "2012MN", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "30", "foul": "0", "tele": "18"}, "teams": ["2515", "2530", "2052"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "12", "final": "15", "foul": "3"}, "teams": ["4021", "3630", "2532"]}, "coop": "0", "type": "Q_29", "eventKey": "2012MN", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "19", "foul": "0", "tele": "3"}, "teams": ["2518", "3642", "2825"]}}, {"blue": {"score": {"brige": "20", "tele": "0", "hybrid": "0", "final": "20", "foul": "0"}, "teams": ["2450", "4229", "2500"]}, "coop": "0", "type": "Q_30", "eventKey": "2012MN", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "16", "foul": "0", "tele": "0"}, "teams": ["2861", "2509", "2667"]}}, {"blue": {"score": {"brige": "20", "tele": "0", "hybrid": "0", "final": "20", "foul": "0"}, "teams": ["3300", "3765", "3454"]}, "coop": "0", "type": "Q_31", "eventKey": "2012MN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["2503", "3292", "3723"]}}, {"blue": {"score": {"brige": "10", "tele": "5", "hybrid": "10", "final": "25", "foul": "0"}, "teams": ["3299", "3313", "2232"]}, "coop": "2", "type": "Q_32", "eventKey": "2012MN", "red": {"score": {"bridge": "10", "hybrid": "12", "final": "43", "foul": "3", "tele": "18"}, "teams": ["3747", "525", "2227"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["2846", "2511", "2181"]}, "coop": "0", "type": "Q_33", "eventKey": "2012MN", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "6", "foul": "0", "tele": "0"}, "teams": ["3184", "2498", "2987"]}}, {"blue": {"score": {"brige": "0", "tele": "18", "hybrid": "18", "final": "42", "foul": "6"}, "teams": ["2502", "3081", "2052"]}, "coop": "0", "type": "Q_34", "eventKey": "2012MN", "red": {"score": {"bridge": "10", "hybrid": "0", "final": "13", "foul": "3", "tele": "0"}, "teams": ["3090", "2480", "3751"]}}, {"blue": {"score": {"brige": "10", "tele": "0", "hybrid": "0", "final": "10", "foul": "0"}, "teams": ["2479", "2545", "2500"]}, "coop": "0", "type": "Q_35", "eventKey": "2012MN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["2531", "2825", "3212"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "0", "final": "0", "foul": "0"}, "teams": ["4207", "3765", "3723"]}, "coop": "0", "type": "Q_36", "eventKey": "2012MN", "red": {"score": {"bridge": "20", "hybrid": "6", "final": "29", "foul": "0", "tele": "3"}, "teams": ["3871", "2515", "3630"]}}, {"blue": {"score": {"brige": "10", "tele": "9", "hybrid": "12", "final": "31", "foul": "0"}, "teams": ["525", "2535", "2538"]}, "coop": "0", "type": "Q_37", "eventKey": "2012MN", "red": {"score": {"bridge": "0", "hybrid": "4", "final": "4", "foul": "0", "tele": "0"}, "teams": ["2470", "2667", "3642"]}}, {"blue": {"score": {"brige": "20", "tele": "0", "hybrid": "6", "final": "26", "foul": "0"}, "teams": ["2861", "2501", "2518"]}, "coop": "0", "type": "Q_38", "eventKey": "2012MN", "red": {"score": {"bridge": "10", "hybrid": "6", "final": "20", "foul": "0", "tele": "4"}, "teams": ["2227", "2705", "3454"]}}, {"blue": {"score": {"brige": "0", "tele": "4", "hybrid": "6", "final": "10", "foul": "0"}, "teams": ["2509", "3038", "2879"]}, "coop": "0", "type": "Q_39", "eventKey": "2012MN", "red": {"score": {"bridge": "0", "hybrid": "16", "final": "41", "foul": "21", "tele": "4"}, "teams": ["3082", "3297", "3007"]}}, {"blue": {"score": {"brige": "20", "tele": "0", "hybrid": "0", "final": "20", "foul": "0"}, "teams": ["3783", "3524", "3407"]}, "coop": "0", "type": "Q_40", "eventKey": "2012MN", "red": {"score": {"bridge": "0", "hybrid": "5", "final": "5", "foul": "0", "tele": "0"}, "teams": ["4229", "3313", "4215"]}}, {"blue": {"score": {"brige": "0", "tele": "0", "hybrid": "6", "final": "12", "foul": "6"}, "teams": ["3184", "3100", "3058"]}, "coop": "2", "type": "Q_41", "eventKey": "2012MN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "1", "foul": "0", "tele": "1"}, "teams": ["2503", "3299", "3745"]}}, {"blue": {"score": {"brige": "0", "tele": "14", "hybrid": "12", "final": "26", "foul": "0"}, "teams": ["2450", "3018", "4021"]}, "coop": "0", "type": "Q_42", "eventKey": "2012MN", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "6", "foul": "0", "tele": "0"}, "teams": ["3292", "2846", "3747"]}}, {"blue": {"score": {"brige": "10", "tele": "3", "hybrid": "0", "final": "13", "foul": "0"}, "teams": ["2232", "2498", "2508"]}, "coop": "0", "type": "Q_43", "eventKey": "2012MN", "red": {"score": {"bridge": "10", "hybrid": "16", "final": "26", "foul": "0", "tele": "0"}, "teams": ["2530", "3722", "3244"]}}, {"blue": {"score": {"brige": "20", "tele": "3", "hybrid": "6", "final": "29", "foul": "0"}, "teams": ["3300", "2511", "2861"]}, "coop": "0", "type": "Q_44", "eventKey": "2012MN", "red": {"score": {"bridge": "0", "hybrid": "0", "final": "0", "foul": "0", "tele": "0"}, "teams": ["2532", "2535", "4207"]}}, {"blue": {"score": {"brige": "20", "tele": "2", "hybrid": "12", "final": "34", "foul": "0"}, "teams": ["2538", "3454", "3082"]}, "coop": "2", "type": "Q_45", "eventKey": "2012MN", "red": {"score": {"bridge": "10", "hybrid": "16", "final": "30", "foul": "0", "tele": "4"}, "teams": ["3007", "3630", "3751"]}}, {"blue": {"score": {"brige": "0", "tele": "9", "hybrid": "12", "final": "21", "foul": "0"}, "teams": ["2052", "3212", "2479"]}, "coop": "0", "type": "Q_46", "eventKey": "2012MN", "red": {"score": {"bridge": "0", "hybrid": "6", "final": "11", "foul": "0", "tele": "5"}, "teams": ["2705", "3765", "3100"]}}, {"blue": {"score": {"brige": "0", "tele": "5", "hybrid": "6", "final": "11", "foul": "0"}, "teams": ["3018", "3090", "2181"]}, "coop": "0", "type": "Q_47", "eventKey": "2012MN", "red": {"score": {"bridge": "0", "hybrid": "12", "final": "16", "foul": "3", "tele": "1"}, "teams": ["3313", "2531", "2503"]}}, {"blue": {"score": {"brige": "0", "tele": "3", "hybrid": "0", "final": "3", "foul": "0"}, "teams": ["2501", "2825", "3723"]}, "coop": "2", "type": "Q_48", "eventKey": "2012MN", "red":
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment