scouting: Add an endpoint for populating the match schedule

This patch combines the scraping library with the scouting webserver.
There's now also a new end point for the web page (or debug CLI tool)
to ask the server to fetch the match list. The end point is
`/requests/refresh_match_list`.

All the tests are updated. The `cli_test` downloads a 2016 ny_tr match
list that I downloaded from TBA. It should be a decent integration
test as it uses representative data.

Signed-off-by: Philipp Schrader <philipp.schrader@gmail.com>
Change-Id: I6c540590521b00887eb2ddde2a9369875c659551
diff --git a/scouting/scraping/BUILD b/scouting/scraping/BUILD
index d9248f8..8681ddd 100644
--- a/scouting/scraping/BUILD
+++ b/scouting/scraping/BUILD
@@ -1,5 +1,14 @@
 load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
 
+filegroup(
+    name = "test_data",
+    srcs = [
+        # Generated with: bazel run //scouting/scraping:scraping_demo -- --json
+        "test_data/2016_nytr.json",
+    ],
+    visibility = ["//visibility:public"],
+)
+
 go_library(
     name = "scraping",
     srcs = [
diff --git a/scouting/scraping/scrape.go b/scouting/scraping/scrape.go
index fa20f7b..170fe50 100644
--- a/scouting/scraping/scrape.go
+++ b/scouting/scraping/scrape.go
@@ -4,15 +4,17 @@
 import (
 	"encoding/json"
 	"errors"
+	"fmt"
 	"io/ioutil"
-	"log"
 	"net/http"
 	"os"
+	"strconv"
 )
 
 // Stores the TBA API key to access the API.
-type params struct {
-	ApiKey string `json:"api_key"`
+type scrapingConfig struct {
+	ApiKey  string `json:"api_key"`
+	BaseUrl string `json:"base_url"`
 }
 
 // Takes in year and FIRST event code and returns all matches in that event according to TBA.
@@ -22,64 +24,64 @@
 //{
 //    api_key:"myTBAapiKey"
 //}
-func AllMatches(year, eventCode, filePath string) ([]Match, error) {
-	if filePath == "" {
-		filePath = os.Getenv("BUILD_WORKSPACE_DIRECTORY") + "/scouting_config.json"
+func AllMatches(year int32, eventCode, configPath string) ([]Match, error) {
+	if configPath == "" {
+		configPath = os.Getenv("BUILD_WORKSPACE_DIRECTORY") + "/scouting_config.json"
 	}
+
 	// Takes the filepath and grabs the api key from the json.
-	content, err := ioutil.ReadFile(filePath)
+	content, err := ioutil.ReadFile(configPath)
 	if err != nil {
-		log.Fatal(err)
+		return nil, errors.New(fmt.Sprint("Failed to open config at ", configPath, ": ", err))
 	}
 	// Parses the JSON parameters into a struct.
-	var passed_params params
-	error := json.Unmarshal([]byte(content), &passed_params)
-	if error != nil {
-		log.Fatalf("You forgot to add the api_key parameter in the json file")
-		log.Fatalf("%s", err)
+	var config scrapingConfig
+	if err := json.Unmarshal([]byte(content), &config); err != nil {
+		return nil, errors.New(fmt.Sprint("Failed to parse config file as JSON: ", err))
+	}
+
+	// Perform some basic validation on the data.
+	if config.ApiKey == "" {
+		return nil, errors.New("Missing 'api_key' in config JSON.")
+	}
+	if config.BaseUrl == "" {
+		config.BaseUrl = "https://www.thebluealliance.com"
 	}
 
 	// Create the TBA event key for the year and event code.
-	eventKey := year + eventCode
-
-	// Create the client for HTTP requests.
-	client := &http.Client{}
+	eventKey := strconv.Itoa(int(year)) + eventCode
 
 	// Create a get request for the match info.
-	req, err := http.NewRequest("GET", "https://www.thebluealliance.com/api/v3/event/"+eventKey+"/matches", nil)
-
+	req, err := http.NewRequest("GET", config.BaseUrl+"/api/v3/event/"+eventKey+"/matches", nil)
 	if err != nil {
-		return nil, errors.New("failed to build http request")
+		return nil, errors.New(fmt.Sprint("Failed to build http request: ", err))
 	}
 
 	// Add the auth key header to the request.
-	req.Header.Add("X-TBA-Auth-Key", passed_params.ApiKey)
+	req.Header.Add("X-TBA-Auth-Key", config.ApiKey)
 
-	// Make the API request
+	// Make the API request.
+	client := &http.Client{}
 	resp, err := client.Do(req)
-
 	if err != nil {
-		return nil, err
+		return nil, errors.New(fmt.Sprint("Failed to make TBA API request: ", err))
 	}
 
-	if resp.Status != "200 OK" {
-		return nil, errors.New("Recieved a status of " + resp.Status + " expected : 200 OK")
-	}
-
-	// Wait until the response is done.
 	defer resp.Body.Close()
+	if resp.StatusCode != 200 {
+		return nil, errors.New(fmt.Sprint("Got unexpected status code from TBA API request: ", resp.Status))
+	}
 
 	// Get all bytes from response body.
 	bodyBytes, err := ioutil.ReadAll(resp.Body)
 	if err != nil {
-		return nil, errors.New("failed to read response body with error :" + err.Error())
+		return nil, errors.New(fmt.Sprint("Failed to read TBA API response: ", err))
 	}
 
 	var matches []Match
 	// Unmarshal json into go usable format.
-	jsonError := json.Unmarshal([]byte(bodyBytes), &matches)
-	if jsonError != nil {
-		return nil, errors.New("failed to unmarshal json recieved from TBA")
+	if err := json.Unmarshal([]byte(bodyBytes), &matches); err != nil {
+		return nil, errors.New(fmt.Sprint("Failed to parse JSON received from TBA: ", err))
 	}
 
 	return matches, nil
diff --git a/scouting/scraping/scraping_demo.go b/scouting/scraping/scraping_demo.go
index 1d727f3..0ea3e53 100644
--- a/scouting/scraping/scraping_demo.go
+++ b/scouting/scraping/scraping_demo.go
@@ -2,6 +2,9 @@
 
 // To run the demo, ensure that you have a file named scouting_config.json at the workspace root with your TBA api key in it.
 import (
+	"encoding/json"
+	"flag"
+	"fmt"
 	"log"
 
 	"github.com/davecgh/go-spew/spew"
@@ -9,12 +12,23 @@
 )
 
 func main() {
+	jsonPtr := flag.Bool("json", false, "If set, dump as JSON, rather than Go debug output.")
+	flag.Parse()
+
 	// Get all the matches.
-	matches, err := scraping.AllMatches("2016", "nytr", "")
-	// Fail on error.
+	matches, err := scraping.AllMatches(2016, "nytr", "")
 	if err != nil {
-		log.Fatal("Error:", err.Error)
+		log.Fatal("Failed to scrape match list: ", err)
 	}
+
 	// Dump the matches.
-	spew.Dump(matches)
+	if *jsonPtr {
+		jsonData, err := json.MarshalIndent(matches, "", "  ")
+		if err != nil {
+			log.Fatal("Failed to turn match list into JSON: ", err)
+		}
+		fmt.Println(string(jsonData))
+	} else {
+		spew.Dump(matches)
+	}
 }
diff --git a/scouting/scraping/test_data/2016_nytr.json b/scouting/scraping/test_data/2016_nytr.json
new file mode 100644
index 0000000..120d6d3
--- /dev/null
+++ b/scouting/scraping/test_data/2016_nytr.json
@@ -0,0 +1,10812 @@
+[
+  {
+    "Key": "2016nytr_f1m1",
+    "comp_level": "f",
+    "set_number": 1,
+    "match_number": 1,
+    "alliances": {
+      "red": {
+        "score": 168,
+        "team_keys": [
+          "frc3990",
+          "frc359",
+          "frc4508"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 115,
+        "team_keys": [
+          "frc20",
+          "frc5254",
+          "frc1665"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "red",
+    "event_key": "2016nytr",
+    "time": 1458418140,
+    "predicted_time": 0,
+    "actual_time": 1458417643,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_f1m2",
+    "comp_level": "f",
+    "set_number": 1,
+    "match_number": 2,
+    "alliances": {
+      "red": {
+        "score": 134,
+        "team_keys": [
+          "frc3990",
+          "frc359",
+          "frc4508"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 136,
+        "team_keys": [
+          "frc20",
+          "frc5254",
+          "frc1665"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "blue",
+    "event_key": "2016nytr",
+    "time": 1458418920,
+    "predicted_time": 0,
+    "actual_time": 1458418685,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_f1m3",
+    "comp_level": "f",
+    "set_number": 1,
+    "match_number": 3,
+    "alliances": {
+      "red": {
+        "score": 164,
+        "team_keys": [
+          "frc3990",
+          "frc359",
+          "frc4508"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 147,
+        "team_keys": [
+          "frc20",
+          "frc5254",
+          "frc1665"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "red",
+    "event_key": "2016nytr",
+    "time": 1458419700,
+    "predicted_time": 0,
+    "actual_time": 1458419924,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qf1m1",
+    "comp_level": "qf",
+    "set_number": 1,
+    "match_number": 1,
+    "alliances": {
+      "red": {
+        "score": 121,
+        "team_keys": [
+          "frc3990",
+          "frc359",
+          "frc4508"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 107,
+        "team_keys": [
+          "frc3044",
+          "frc4930",
+          "frc4481"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "red",
+    "event_key": "2016nytr",
+    "time": 1458408600,
+    "predicted_time": 0,
+    "actual_time": 1458408170,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qf1m2",
+    "comp_level": "qf",
+    "set_number": 1,
+    "match_number": 2,
+    "alliances": {
+      "red": {
+        "score": 170,
+        "team_keys": [
+          "frc3990",
+          "frc359",
+          "frc4508"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 80,
+        "team_keys": [
+          "frc3044",
+          "frc4930",
+          "frc4481"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "red",
+    "event_key": "2016nytr",
+    "time": 1458410460,
+    "predicted_time": 0,
+    "actual_time": 1458410300,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qf2m1",
+    "comp_level": "qf",
+    "set_number": 2,
+    "match_number": 1,
+    "alliances": {
+      "red": {
+        "score": 107,
+        "team_keys": [
+          "frc5240",
+          "frc3419",
+          "frc663"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 110,
+        "team_keys": [
+          "frc1493",
+          "frc48",
+          "frc1551"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "blue",
+    "event_key": "2016nytr",
+    "time": 1458409020,
+    "predicted_time": 0,
+    "actual_time": 1458408692,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qf2m2",
+    "comp_level": "qf",
+    "set_number": 2,
+    "match_number": 2,
+    "alliances": {
+      "red": {
+        "score": 116,
+        "team_keys": [
+          "frc5240",
+          "frc3419",
+          "frc663"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 78,
+        "team_keys": [
+          "frc1493",
+          "frc48",
+          "frc1551"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "red",
+    "event_key": "2016nytr",
+    "time": 1458410880,
+    "predicted_time": 0,
+    "actual_time": 1458410748,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qf2m3",
+    "comp_level": "qf",
+    "set_number": 2,
+    "match_number": 3,
+    "alliances": {
+      "red": {
+        "score": 104,
+        "team_keys": [
+          "frc5240",
+          "frc3419",
+          "frc663"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 94,
+        "team_keys": [
+          "frc1493",
+          "frc48",
+          "frc1551"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "red",
+    "event_key": "2016nytr",
+    "time": 1458412920,
+    "predicted_time": 0,
+    "actual_time": 1458412900,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qf3m1",
+    "comp_level": "qf",
+    "set_number": 3,
+    "match_number": 1,
+    "alliances": {
+      "red": {
+        "score": 132,
+        "team_keys": [
+          "frc20",
+          "frc5254",
+          "frc229"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 84,
+        "team_keys": [
+          "frc3003",
+          "frc358",
+          "frc527"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "red",
+    "event_key": "2016nytr",
+    "time": 1458409440,
+    "predicted_time": 0,
+    "actual_time": 1458409186,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qf3m2",
+    "comp_level": "qf",
+    "set_number": 3,
+    "match_number": 2,
+    "alliances": {
+      "red": {
+        "score": 144,
+        "team_keys": [
+          "frc20",
+          "frc5254",
+          "frc229"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 103,
+        "team_keys": [
+          "frc3003",
+          "frc358",
+          "frc527"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "red",
+    "event_key": "2016nytr",
+    "time": 1458411300,
+    "predicted_time": 0,
+    "actual_time": 1458411317,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qf4m1",
+    "comp_level": "qf",
+    "set_number": 4,
+    "match_number": 1,
+    "alliances": {
+      "red": {
+        "score": 147,
+        "team_keys": [
+          "frc2791",
+          "frc5236",
+          "frc3624"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 121,
+        "team_keys": [
+          "frc333",
+          "frc250",
+          "frc145"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "red",
+    "event_key": "2016nytr",
+    "time": 1458409860,
+    "predicted_time": 0,
+    "actual_time": 1458409739,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qf4m2",
+    "comp_level": "qf",
+    "set_number": 4,
+    "match_number": 2,
+    "alliances": {
+      "red": {
+        "score": 106,
+        "team_keys": [
+          "frc2791",
+          "frc5236",
+          "frc3624"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 151,
+        "team_keys": [
+          "frc333",
+          "frc250",
+          "frc145"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "blue",
+    "event_key": "2016nytr",
+    "time": 1458411720,
+    "predicted_time": 0,
+    "actual_time": 1458411761,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qf4m3",
+    "comp_level": "qf",
+    "set_number": 4,
+    "match_number": 3,
+    "alliances": {
+      "red": {
+        "score": 165,
+        "team_keys": [
+          "frc2791",
+          "frc5236",
+          "frc3624"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 89,
+        "team_keys": [
+          "frc333",
+          "frc250",
+          "frc145"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "red",
+    "event_key": "2016nytr",
+    "time": 1458413760,
+    "predicted_time": 0,
+    "actual_time": 1458413371,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm1",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 1,
+    "alliances": {
+      "red": {
+        "score": 62,
+        "team_keys": [
+          "frc5240",
+          "frc3003",
+          "frc3419"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 85,
+        "team_keys": [
+          "frc3990",
+          "frc371",
+          "frc2791"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "blue",
+    "event_key": "2016nytr",
+    "time": 1458306000,
+    "predicted_time": 0,
+    "actual_time": 1458306152,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm10",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 10,
+    "alliances": {
+      "red": {
+        "score": 79,
+        "team_keys": [
+          "frc250",
+          "frc5879",
+          "frc2791"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 85,
+        "team_keys": [
+          "frc371",
+          "frc4856",
+          "frc359"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "blue",
+    "event_key": "2016nytr",
+    "time": 1458310680,
+    "predicted_time": 0,
+    "actual_time": 1458310963,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm11",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 11,
+    "alliances": {
+      "red": {
+        "score": 40,
+        "team_keys": [
+          "frc1551",
+          "frc1665",
+          "frc3624"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": [
+          "frc3624"
+        ]
+      },
+      "blue": {
+        "score": 82,
+        "team_keys": [
+          "frc20",
+          "frc3044",
+          "frc4093"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "blue",
+    "event_key": "2016nytr",
+    "time": 1458311160,
+    "predicted_time": 0,
+    "actual_time": 1458311501,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm12",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 12,
+    "alliances": {
+      "red": {
+        "score": 76,
+        "team_keys": [
+          "frc3990",
+          "frc4481",
+          "frc5881"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 45,
+        "team_keys": [
+          "frc4203",
+          "frc663",
+          "frc527"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "red",
+    "event_key": "2016nytr",
+    "time": 1458311640,
+    "predicted_time": 0,
+    "actual_time": 1458311984,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm13",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 13,
+    "alliances": {
+      "red": {
+        "score": 24,
+        "team_keys": [
+          "frc1450",
+          "frc4856",
+          "frc5879"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": [
+          "frc5879"
+        ]
+      },
+      "blue": {
+        "score": 60,
+        "team_keys": [
+          "frc5254",
+          "frc5585",
+          "frc371"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "blue",
+    "event_key": "2016nytr",
+    "time": 1458312120,
+    "predicted_time": 0,
+    "actual_time": 1458312573,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm14",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 14,
+    "alliances": {
+      "red": {
+        "score": 34,
+        "team_keys": [
+          "frc4508",
+          "frc5149",
+          "frc250"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 44,
+        "team_keys": [
+          "frc5964",
+          "frc5240",
+          "frc1665"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "blue",
+    "event_key": "2016nytr",
+    "time": 1458312600,
+    "predicted_time": 0,
+    "actual_time": 1458313136,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm15",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 15,
+    "alliances": {
+      "red": {
+        "score": 91,
+        "team_keys": [
+          "frc2791",
+          "frc5881",
+          "frc527"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 85,
+        "team_keys": [
+          "frc48",
+          "frc3624",
+          "frc333"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": [
+          "frc3624"
+        ]
+      }
+    },
+    "winning_alliance": "red",
+    "event_key": "2016nytr",
+    "time": 1458313080,
+    "predicted_time": 0,
+    "actual_time": 1458313525,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm16",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 16,
+    "alliances": {
+      "red": {
+        "score": 95,
+        "team_keys": [
+          "frc229",
+          "frc1493",
+          "frc359"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 77,
+        "team_keys": [
+          "frc3419",
+          "frc3044",
+          "frc663"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "red",
+    "event_key": "2016nytr",
+    "time": 1458313740,
+    "predicted_time": 0,
+    "actual_time": 1458314003,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm17",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 17,
+    "alliances": {
+      "red": {
+        "score": 45,
+        "team_keys": [
+          "frc3990",
+          "frc4203",
+          "frc5943"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 86,
+        "team_keys": [
+          "frc1551",
+          "frc358",
+          "frc145"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "blue",
+    "event_key": "2016nytr",
+    "time": 1458314220,
+    "predicted_time": 0,
+    "actual_time": 1458314433,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm18",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 18,
+    "alliances": {
+      "red": {
+        "score": 75,
+        "team_keys": [
+          "frc4481",
+          "frc4930",
+          "frc4093"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 88,
+        "team_keys": [
+          "frc5236",
+          "frc3003",
+          "frc20"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "blue",
+    "event_key": "2016nytr",
+    "time": 1458314700,
+    "predicted_time": 0,
+    "actual_time": 1458314859,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm19",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 19,
+    "alliances": {
+      "red": {
+        "score": 88,
+        "team_keys": [
+          "frc48",
+          "frc5149",
+          "frc5254"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 62,
+        "team_keys": [
+          "frc229",
+          "frc663",
+          "frc4856"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "red",
+    "event_key": "2016nytr",
+    "time": 1458315180,
+    "predicted_time": 0,
+    "actual_time": 1458315401,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm2",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 2,
+    "alliances": {
+      "red": {
+        "score": 85,
+        "team_keys": [
+          "frc48",
+          "frc3044",
+          "frc4856"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": [
+          "frc4856"
+        ]
+      },
+      "blue": {
+        "score": 15,
+        "team_keys": [
+          "frc4481",
+          "frc358",
+          "frc3624"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": [
+          "frc3624"
+        ]
+      }
+    },
+    "winning_alliance": "red",
+    "event_key": "2016nytr",
+    "time": 1458306480,
+    "predicted_time": 0,
+    "actual_time": 1458306689,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm20",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 20,
+    "alliances": {
+      "red": {
+        "score": 10,
+        "team_keys": [
+          "frc1665",
+          "frc371",
+          "frc5943"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 65,
+        "team_keys": [
+          "frc5585",
+          "frc3624",
+          "frc3044"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "blue",
+    "event_key": "2016nytr",
+    "time": 1458315660,
+    "predicted_time": 0,
+    "actual_time": 1458315911,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm21",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 21,
+    "alliances": {
+      "red": {
+        "score": 30,
+        "team_keys": [
+          "frc1551",
+          "frc4203",
+          "frc250"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 81,
+        "team_keys": [
+          "frc333",
+          "frc20",
+          "frc1493"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "blue",
+    "event_key": "2016nytr",
+    "time": 1458316140,
+    "predicted_time": 0,
+    "actual_time": 1458316579,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm22",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 22,
+    "alliances": {
+      "red": {
+        "score": 124,
+        "team_keys": [
+          "frc359",
+          "frc3419",
+          "frc145"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 66,
+        "team_keys": [
+          "frc2791",
+          "frc4481",
+          "frc3003"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "red",
+    "event_key": "2016nytr",
+    "time": 1458316800,
+    "predicted_time": 0,
+    "actual_time": 1458316995,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm23",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 23,
+    "alliances": {
+      "red": {
+        "score": 63,
+        "team_keys": [
+          "frc5964",
+          "frc4508",
+          "frc5881"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 81,
+        "team_keys": [
+          "frc4093",
+          "frc1450",
+          "frc3990"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "blue",
+    "event_key": "2016nytr",
+    "time": 1458317280,
+    "predicted_time": 0,
+    "actual_time": 1458317393,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm24",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 24,
+    "alliances": {
+      "red": {
+        "score": 26,
+        "team_keys": [
+          "frc358",
+          "frc5236",
+          "frc527"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 47,
+        "team_keys": [
+          "frc5240",
+          "frc4930",
+          "frc5879"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "blue",
+    "event_key": "2016nytr",
+    "time": 1458321360,
+    "predicted_time": 0,
+    "actual_time": 1458321119,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm25",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 25,
+    "alliances": {
+      "red": {
+        "score": 69,
+        "team_keys": [
+          "frc250",
+          "frc371",
+          "frc3003"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 62,
+        "team_keys": [
+          "frc5585",
+          "frc4481",
+          "frc4203"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "red",
+    "event_key": "2016nytr",
+    "time": 1458321840,
+    "predicted_time": 0,
+    "actual_time": 1458321835,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm26",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 26,
+    "alliances": {
+      "red": {
+        "score": 99,
+        "team_keys": [
+          "frc229",
+          "frc333",
+          "frc5881"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 115,
+        "team_keys": [
+          "frc1665",
+          "frc359",
+          "frc3990"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "blue",
+    "event_key": "2016nytr",
+    "time": 1458322320,
+    "predicted_time": 0,
+    "actual_time": 1458322308,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm27",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 27,
+    "alliances": {
+      "red": {
+        "score": 73,
+        "team_keys": [
+          "frc5240",
+          "frc527",
+          "frc20"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 47,
+        "team_keys": [
+          "frc4856",
+          "frc4930",
+          "frc5943"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "red",
+    "event_key": "2016nytr",
+    "time": 1458322800,
+    "predicted_time": 0,
+    "actual_time": 1458322685,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm28",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 28,
+    "alliances": {
+      "red": {
+        "score": 29,
+        "team_keys": [
+          "frc5149",
+          "frc3624",
+          "frc145"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 84,
+        "team_keys": [
+          "frc5254",
+          "frc358",
+          "frc1450"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "blue",
+    "event_key": "2016nytr",
+    "time": 1458323460,
+    "predicted_time": 0,
+    "actual_time": 1458323094,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm29",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 29,
+    "alliances": {
+      "red": {
+        "score": 51,
+        "team_keys": [
+          "frc1493",
+          "frc4093",
+          "frc5879"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 82,
+        "team_keys": [
+          "frc5964",
+          "frc48",
+          "frc3419"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "blue",
+    "event_key": "2016nytr",
+    "time": 1458323940,
+    "predicted_time": 0,
+    "actual_time": 1458324109,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm3",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 3,
+    "alliances": {
+      "red": {
+        "score": 60,
+        "team_keys": [
+          "frc663",
+          "frc4093",
+          "frc333"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 64,
+        "team_keys": [
+          "frc5585",
+          "frc145",
+          "frc1450"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "blue",
+    "event_key": "2016nytr",
+    "time": 1458306960,
+    "predicted_time": 0,
+    "actual_time": 1458307302,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm30",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 30,
+    "alliances": {
+      "red": {
+        "score": 54,
+        "team_keys": [
+          "frc3044",
+          "frc1551",
+          "frc4508"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 93,
+        "team_keys": [
+          "frc5236",
+          "frc663",
+          "frc2791"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "blue",
+    "event_key": "2016nytr",
+    "time": 1458324420,
+    "predicted_time": 0,
+    "actual_time": 1458324499,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm31",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 31,
+    "alliances": {
+      "red": {
+        "score": 66,
+        "team_keys": [
+          "frc5585",
+          "frc20",
+          "frc4856"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 112,
+        "team_keys": [
+          "frc333",
+          "frc4930",
+          "frc3990"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "blue",
+    "event_key": "2016nytr",
+    "time": 1458324900,
+    "predicted_time": 0,
+    "actual_time": 1458325029,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm32",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 32,
+    "alliances": {
+      "red": {
+        "score": 49,
+        "team_keys": [
+          "frc145",
+          "frc371",
+          "frc4093"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 92,
+        "team_keys": [
+          "frc5879",
+          "frc5964",
+          "frc359"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "blue",
+    "event_key": "2016nytr",
+    "time": 1458325380,
+    "predicted_time": 0,
+    "actual_time": 1458325592,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm33",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 33,
+    "alliances": {
+      "red": {
+        "score": 74,
+        "team_keys": [
+          "frc3624",
+          "frc527",
+          "frc229"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 67,
+        "team_keys": [
+          "frc5236",
+          "frc4203",
+          "frc4508"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "red",
+    "event_key": "2016nytr",
+    "time": 1458325860,
+    "predicted_time": 0,
+    "actual_time": 1458325971,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm34",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 34,
+    "alliances": {
+      "red": {
+        "score": 70,
+        "team_keys": [
+          "frc4481",
+          "frc5149",
+          "frc1450"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 86,
+        "team_keys": [
+          "frc1551",
+          "frc2791",
+          "frc1493"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "blue",
+    "event_key": "2016nytr",
+    "time": 1458326520,
+    "predicted_time": 0,
+    "actual_time": 1458326383,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm35",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 35,
+    "alliances": {
+      "red": {
+        "score": 72,
+        "team_keys": [
+          "frc663",
+          "frc48",
+          "frc5943"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 83,
+        "team_keys": [
+          "frc1665",
+          "frc5254",
+          "frc3003"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "blue",
+    "event_key": "2016nytr",
+    "time": 1458327000,
+    "predicted_time": 0,
+    "actual_time": 1458326796,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm36",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 36,
+    "alliances": {
+      "red": {
+        "score": 107,
+        "team_keys": [
+          "frc3044",
+          "frc5240",
+          "frc250"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 74,
+        "team_keys": [
+          "frc3419",
+          "frc358",
+          "frc5881"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "red",
+    "event_key": "2016nytr",
+    "time": 1458327480,
+    "predicted_time": 0,
+    "actual_time": 1458327181,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm37",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 37,
+    "alliances": {
+      "red": {
+        "score": 66,
+        "team_keys": [
+          "frc4481",
+          "frc145",
+          "frc1493"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 90,
+        "team_keys": [
+          "frc527",
+          "frc371",
+          "frc333"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "blue",
+    "event_key": "2016nytr",
+    "time": 1458327960,
+    "predicted_time": 0,
+    "actual_time": 1458327852,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm38",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 38,
+    "alliances": {
+      "red": {
+        "score": 44,
+        "team_keys": [
+          "frc5236",
+          "frc4856",
+          "frc5149"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 111,
+        "team_keys": [
+          "frc20",
+          "frc48",
+          "frc3990"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "blue",
+    "event_key": "2016nytr",
+    "time": 1458328440,
+    "predicted_time": 0,
+    "actual_time": 1458328284,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm39",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 39,
+    "alliances": {
+      "red": {
+        "score": 99,
+        "team_keys": [
+          "frc3419",
+          "frc2791",
+          "frc4930"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 67,
+        "team_keys": [
+          "frc5964",
+          "frc1551",
+          "frc663"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "red",
+    "event_key": "2016nytr",
+    "time": 1458328920,
+    "predicted_time": 0,
+    "actual_time": 1458328709,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm4",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 4,
+    "alliances": {
+      "red": {
+        "score": 73,
+        "team_keys": [
+          "frc4508",
+          "frc4930",
+          "frc1493"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 78,
+        "team_keys": [
+          "frc5254",
+          "frc250",
+          "frc5943"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "blue",
+    "event_key": "2016nytr",
+    "time": 1458307620,
+    "predicted_time": 0,
+    "actual_time": 1458307725,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm40",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 40,
+    "alliances": {
+      "red": {
+        "score": 82,
+        "team_keys": [
+          "frc5254",
+          "frc5879",
+          "frc4203"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 77,
+        "team_keys": [
+          "frc5881",
+          "frc5943",
+          "frc3044"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "red",
+    "event_key": "2016nytr",
+    "time": 1458329580,
+    "predicted_time": 0,
+    "actual_time": 1458329683,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm41",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 41,
+    "alliances": {
+      "red": {
+        "score": 70,
+        "team_keys": [
+          "frc3624",
+          "frc1450",
+          "frc5240"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 77,
+        "team_keys": [
+          "frc4093",
+          "frc250",
+          "frc229"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "blue",
+    "event_key": "2016nytr",
+    "time": 1458330060,
+    "predicted_time": 0,
+    "actual_time": 1458330063,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm42",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 42,
+    "alliances": {
+      "red": {
+        "score": 109,
+        "team_keys": [
+          "frc3003",
+          "frc359",
+          "frc358"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 39,
+        "team_keys": [
+          "frc5585",
+          "frc1665",
+          "frc4508"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "red",
+    "event_key": "2016nytr",
+    "time": 1458330540,
+    "predicted_time": 0,
+    "actual_time": 1458330433,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm43",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 43,
+    "alliances": {
+      "red": {
+        "score": 61,
+        "team_keys": [
+          "frc5881",
+          "frc4203",
+          "frc145"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 64,
+        "team_keys": [
+          "frc3044",
+          "frc4930",
+          "frc527"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "blue",
+    "event_key": "2016nytr",
+    "time": 1458331020,
+    "predicted_time": 0,
+    "actual_time": 1458330818,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm44",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 44,
+    "alliances": {
+      "red": {
+        "score": 101,
+        "team_keys": [
+          "frc5254",
+          "frc333",
+          "frc4481"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 77,
+        "team_keys": [
+          "frc5149",
+          "frc5240",
+          "frc2791"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "red",
+    "event_key": "2016nytr",
+    "time": 1458331500,
+    "predicted_time": 0,
+    "actual_time": 1458331224,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm45",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 45,
+    "alliances": {
+      "red": {
+        "score": 60,
+        "team_keys": [
+          "frc5964",
+          "frc4093",
+          "frc3003"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 62,
+        "team_keys": [
+          "frc250",
+          "frc4856",
+          "frc1493"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "blue",
+    "event_key": "2016nytr",
+    "time": 1458331980,
+    "predicted_time": 0,
+    "actual_time": 1458331735,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm46",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 46,
+    "alliances": {
+      "red": {
+        "score": 56,
+        "team_keys": [
+          "frc371",
+          "frc20",
+          "frc3624"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 107,
+        "team_keys": [
+          "frc663",
+          "frc4508",
+          "frc359"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "blue",
+    "event_key": "2016nytr",
+    "time": 1458332640,
+    "predicted_time": 0,
+    "actual_time": 1458332313,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm47",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 47,
+    "alliances": {
+      "red": {
+        "score": 72,
+        "team_keys": [
+          "frc1450",
+          "frc1665",
+          "frc48"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 86,
+        "team_keys": [
+          "frc358",
+          "frc5879",
+          "frc3990"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "blue",
+    "event_key": "2016nytr",
+    "time": 1458333120,
+    "predicted_time": 0,
+    "actual_time": 1458333025,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm48",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 48,
+    "alliances": {
+      "red": {
+        "score": 49,
+        "team_keys": [
+          "frc5943",
+          "frc5585",
+          "frc229"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 102,
+        "team_keys": [
+          "frc1551",
+          "frc3419",
+          "frc5236"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "blue",
+    "event_key": "2016nytr",
+    "time": 1458333600,
+    "predicted_time": 0,
+    "actual_time": 1458333472,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm49",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 49,
+    "alliances": {
+      "red": {
+        "score": 143,
+        "team_keys": [
+          "frc359",
+          "frc3624",
+          "frc5254"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 86,
+        "team_keys": [
+          "frc5964",
+          "frc4481",
+          "frc20"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "red",
+    "event_key": "2016nytr",
+    "time": 1458334080,
+    "predicted_time": 0,
+    "actual_time": 1458333898,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm5",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 5,
+    "alliances": {
+      "red": {
+        "score": 102,
+        "team_keys": [
+          "frc5236",
+          "frc359",
+          "frc5881"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 19,
+        "team_keys": [
+          "frc5149",
+          "frc4203",
+          "frc5964"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "red",
+    "event_key": "2016nytr",
+    "time": 1458308100,
+    "predicted_time": 0,
+    "actual_time": 1458308171,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm50",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 50,
+    "alliances": {
+      "red": {
+        "score": 82,
+        "team_keys": [
+          "frc5240",
+          "frc1493",
+          "frc663"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 54,
+        "team_keys": [
+          "frc5879",
+          "frc3003",
+          "frc145"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "red",
+    "event_key": "2016nytr",
+    "time": 1458334560,
+    "predicted_time": 0,
+    "actual_time": 1458334725,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm51",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 51,
+    "alliances": {
+      "red": {
+        "score": 69,
+        "team_keys": [
+          "frc2791",
+          "frc5943",
+          "frc358"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 52,
+        "team_keys": [
+          "frc5585",
+          "frc5881",
+          "frc4093"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "red",
+    "event_key": "2016nytr",
+    "time": 1458335040,
+    "predicted_time": 0,
+    "actual_time": 1458335144,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm52",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 52,
+    "alliances": {
+      "red": {
+        "score": 101,
+        "team_keys": [
+          "frc5236",
+          "frc3990",
+          "frc229"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 82,
+        "team_keys": [
+          "frc333",
+          "frc1450",
+          "frc250"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "red",
+    "event_key": "2016nytr",
+    "time": 1458335700,
+    "predicted_time": 0,
+    "actual_time": 1458335606,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm53",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 53,
+    "alliances": {
+      "red": {
+        "score": 55,
+        "team_keys": [
+          "frc371",
+          "frc3044",
+          "frc5149"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 102,
+        "team_keys": [
+          "frc48",
+          "frc4930",
+          "frc1551"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "blue",
+    "event_key": "2016nytr",
+    "time": 1458336180,
+    "predicted_time": 0,
+    "actual_time": 1458336076,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm54",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 54,
+    "alliances": {
+      "red": {
+        "score": 89,
+        "team_keys": [
+          "frc1665",
+          "frc3419",
+          "frc4203"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 83,
+        "team_keys": [
+          "frc4508",
+          "frc527",
+          "frc4856"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "red",
+    "event_key": "2016nytr",
+    "time": 1458392400,
+    "predicted_time": 0,
+    "actual_time": 1458391888,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm55",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 55,
+    "alliances": {
+      "red": {
+        "score": 108,
+        "team_keys": [
+          "frc3990",
+          "frc3003",
+          "frc663"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 83,
+        "team_keys": [
+          "frc1493",
+          "frc3624",
+          "frc5943"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "red",
+    "event_key": "2016nytr",
+    "time": 1458392880,
+    "predicted_time": 0,
+    "actual_time": 1458392321,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm56",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 56,
+    "alliances": {
+      "red": {
+        "score": 94,
+        "team_keys": [
+          "frc5240",
+          "frc5585",
+          "frc333"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 68,
+        "team_keys": [
+          "frc5881",
+          "frc5879",
+          "frc48"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "red",
+    "event_key": "2016nytr",
+    "time": 1458393360,
+    "predicted_time": 0,
+    "actual_time": 1458393079,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm57",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 57,
+    "alliances": {
+      "red": {
+        "score": 86,
+        "team_keys": [
+          "frc3419",
+          "frc20",
+          "frc5149"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 71,
+        "team_keys": [
+          "frc358",
+          "frc3044",
+          "frc4203"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "red",
+    "event_key": "2016nytr",
+    "time": 1458393840,
+    "predicted_time": 0,
+    "actual_time": 1458393573,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm58",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 58,
+    "alliances": {
+      "red": {
+        "score": 97,
+        "team_keys": [
+          "frc5254",
+          "frc1551",
+          "frc4093"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 110,
+        "team_keys": [
+          "frc527",
+          "frc359",
+          "frc250"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "blue",
+    "event_key": "2016nytr",
+    "time": 1458394500,
+    "predicted_time": 0,
+    "actual_time": 1458394319,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm59",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 59,
+    "alliances": {
+      "red": {
+        "score": 89,
+        "team_keys": [
+          "frc5964",
+          "frc4856",
+          "frc2791"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 101,
+        "team_keys": [
+          "frc1665",
+          "frc145",
+          "frc5236"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "blue",
+    "event_key": "2016nytr",
+    "time": 1458394980,
+    "predicted_time": 0,
+    "actual_time": 1458394775,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm6",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 6,
+    "alliances": {
+      "red": {
+        "score": 50,
+        "team_keys": [
+          "frc5879",
+          "frc1665",
+          "frc527"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 86,
+        "team_keys": [
+          "frc229",
+          "frc20",
+          "frc1551"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "blue",
+    "event_key": "2016nytr",
+    "time": 1458308580,
+    "predicted_time": 0,
+    "actual_time": 1458309050,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm60",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 60,
+    "alliances": {
+      "red": {
+        "score": 62,
+        "team_keys": [
+          "frc4481",
+          "frc4508",
+          "frc371"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 46,
+        "team_keys": [
+          "frc229",
+          "frc4930",
+          "frc1450"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "red",
+    "event_key": "2016nytr",
+    "time": 1458395460,
+    "predicted_time": 0,
+    "actual_time": 1458395186,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm61",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 61,
+    "alliances": {
+      "red": {
+        "score": 105,
+        "team_keys": [
+          "frc4093",
+          "frc48",
+          "frc527"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 70,
+        "team_keys": [
+          "frc359",
+          "frc5943",
+          "frc5149"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "red",
+    "event_key": "2016nytr",
+    "time": 1458395940,
+    "predicted_time": 0,
+    "actual_time": 1458395574,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm62",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 62,
+    "alliances": {
+      "red": {
+        "score": 61,
+        "team_keys": [
+          "frc663",
+          "frc358",
+          "frc20"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 84,
+        "team_keys": [
+          "frc5964",
+          "frc145",
+          "frc5254"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "blue",
+    "event_key": "2016nytr",
+    "time": 1458396420,
+    "predicted_time": 0,
+    "actual_time": 1458395960,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm63",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 63,
+    "alliances": {
+      "red": {
+        "score": 57,
+        "team_keys": [
+          "frc1551",
+          "frc333",
+          "frc5879"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 80,
+        "team_keys": [
+          "frc4508",
+          "frc3624",
+          "frc3003"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "blue",
+    "event_key": "2016nytr",
+    "time": 1458396900,
+    "predicted_time": 0,
+    "actual_time": 1458396366,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm64",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 64,
+    "alliances": {
+      "red": {
+        "score": 85,
+        "team_keys": [
+          "frc1665",
+          "frc3044",
+          "frc1493"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 101,
+        "team_keys": [
+          "frc5236",
+          "frc4481",
+          "frc5240"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "blue",
+    "event_key": "2016nytr",
+    "time": 1458397560,
+    "predicted_time": 0,
+    "actual_time": 1458396974,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm65",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 65,
+    "alliances": {
+      "red": {
+        "score": 110,
+        "team_keys": [
+          "frc3990",
+          "frc4856",
+          "frc3419"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 50,
+        "team_keys": [
+          "frc1450",
+          "frc5881",
+          "frc371"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "red",
+    "event_key": "2016nytr",
+    "time": 1458398040,
+    "predicted_time": 0,
+    "actual_time": 1458397555,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm66",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 66,
+    "alliances": {
+      "red": {
+        "score": 59,
+        "team_keys": [
+          "frc250",
+          "frc5585",
+          "frc4930"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 57,
+        "team_keys": [
+          "frc4203",
+          "frc2791",
+          "frc229"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "red",
+    "event_key": "2016nytr",
+    "time": 1458398520,
+    "predicted_time": 0,
+    "actual_time": 1458398075,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm67",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 67,
+    "alliances": {
+      "red": {
+        "score": 97,
+        "team_keys": [
+          "frc333",
+          "frc3044",
+          "frc5964"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 92,
+        "team_keys": [
+          "frc4481",
+          "frc5943",
+          "frc527"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "red",
+    "event_key": "2016nytr",
+    "time": 1458399000,
+    "predicted_time": 0,
+    "actual_time": 1458398523,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm68",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 68,
+    "alliances": {
+      "red": {
+        "score": 76,
+        "team_keys": [
+          "frc5236",
+          "frc1493",
+          "frc1450"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 80,
+        "team_keys": [
+          "frc4856",
+          "frc358",
+          "frc1665"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "blue",
+    "event_key": "2016nytr",
+    "time": 1458399480,
+    "predicted_time": 0,
+    "actual_time": 1458398992,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm69",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 69,
+    "alliances": {
+      "red": {
+        "score": 101,
+        "team_keys": [
+          "frc2791",
+          "frc20",
+          "frc359"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 40,
+        "team_keys": [
+          "frc5879",
+          "frc5149",
+          "frc229"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "red",
+    "event_key": "2016nytr",
+    "time": 1458399960,
+    "predicted_time": 0,
+    "actual_time": 1458399575,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm7",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 7,
+    "alliances": {
+      "red": {
+        "score": 64,
+        "team_keys": [
+          "frc4508",
+          "frc5943",
+          "frc1450"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 103,
+        "team_keys": [
+          "frc5240",
+          "frc48",
+          "frc145"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "blue",
+    "event_key": "2016nytr",
+    "time": 1458309060,
+    "predicted_time": 0,
+    "actual_time": 1458309624,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm70",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 70,
+    "alliances": {
+      "red": {
+        "score": 83,
+        "team_keys": [
+          "frc1551",
+          "frc5585",
+          "frc3003"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 96,
+        "team_keys": [
+          "frc5881",
+          "frc5254",
+          "frc5240"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "blue",
+    "event_key": "2016nytr",
+    "time": 1458400620,
+    "predicted_time": 0,
+    "actual_time": 1458400008,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm71",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 71,
+    "alliances": {
+      "red": {
+        "score": 30,
+        "team_keys": [
+          "frc4203",
+          "frc371",
+          "frc48"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 94,
+        "team_keys": [
+          "frc4508",
+          "frc4093",
+          "frc3419"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "blue",
+    "event_key": "2016nytr",
+    "time": 1458401100,
+    "predicted_time": 0,
+    "actual_time": 1458400865,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm72",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 72,
+    "alliances": {
+      "red": {
+        "score": 74,
+        "team_keys": [
+          "frc4930",
+          "frc663",
+          "frc145"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 103,
+        "team_keys": [
+          "frc250",
+          "frc3624",
+          "frc3990"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "blue",
+    "event_key": "2016nytr",
+    "time": 1458401580,
+    "predicted_time": 0,
+    "actual_time": 1458401706,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm8",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 8,
+    "alliances": {
+      "red": {
+        "score": 90,
+        "team_keys": [
+          "frc5254",
+          "frc5236",
+          "frc4930"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 74,
+        "team_keys": [
+          "frc1493",
+          "frc5585",
+          "frc3419"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "red",
+    "event_key": "2016nytr",
+    "time": 1458309540,
+    "predicted_time": 0,
+    "actual_time": 1458310026,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_qm9",
+    "comp_level": "qm",
+    "set_number": 1,
+    "match_number": 9,
+    "alliances": {
+      "red": {
+        "score": 64,
+        "team_keys": [
+          "frc5964",
+          "frc229",
+          "frc358"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 52,
+        "team_keys": [
+          "frc3003",
+          "frc333",
+          "frc5149"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "red",
+    "event_key": "2016nytr",
+    "time": 1458310020,
+    "predicted_time": 0,
+    "actual_time": 1458310411,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_sf1m1",
+    "comp_level": "sf",
+    "set_number": 1,
+    "match_number": 1,
+    "alliances": {
+      "red": {
+        "score": 164,
+        "team_keys": [
+          "frc3990",
+          "frc359",
+          "frc4508"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 147,
+        "team_keys": [
+          "frc5240",
+          "frc3419",
+          "frc663"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "red",
+    "event_key": "2016nytr",
+    "time": 1458414720,
+    "predicted_time": 0,
+    "actual_time": 1458414299,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_sf1m2",
+    "comp_level": "sf",
+    "set_number": 1,
+    "match_number": 2,
+    "alliances": {
+      "red": {
+        "score": 179,
+        "team_keys": [
+          "frc3990",
+          "frc359",
+          "frc4508"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 153,
+        "team_keys": [
+          "frc5240",
+          "frc3419",
+          "frc663"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "red",
+    "event_key": "2016nytr",
+    "time": 1458415560,
+    "predicted_time": 0,
+    "actual_time": 1458415297,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_sf2m1",
+    "comp_level": "sf",
+    "set_number": 2,
+    "match_number": 1,
+    "alliances": {
+      "red": {
+        "score": 107,
+        "team_keys": [
+          "frc20",
+          "frc5254",
+          "frc229"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 111,
+        "team_keys": [
+          "frc2791",
+          "frc5236",
+          "frc3624"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "blue",
+    "event_key": "2016nytr",
+    "time": 1458415140,
+    "predicted_time": 0,
+    "actual_time": 1458414793,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_sf2m2",
+    "comp_level": "sf",
+    "set_number": 2,
+    "match_number": 2,
+    "alliances": {
+      "red": {
+        "score": 149,
+        "team_keys": [
+          "frc20",
+          "frc5254",
+          "frc1665"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 106,
+        "team_keys": [
+          "frc2791",
+          "frc5236",
+          "frc3624"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "red",
+    "event_key": "2016nytr",
+    "time": 1458415980,
+    "predicted_time": 0,
+    "actual_time": 1458415857,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  },
+  {
+    "Key": "2016nytr_sf2m3",
+    "comp_level": "sf",
+    "set_number": 2,
+    "match_number": 3,
+    "alliances": {
+      "red": {
+        "score": 149,
+        "team_keys": [
+          "frc20",
+          "frc5254",
+          "frc1665"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      },
+      "blue": {
+        "score": 90,
+        "team_keys": [
+          "frc2791",
+          "frc5236",
+          "frc3624"
+        ],
+        "surrogate_team_keys": [],
+        "dq_team_keys": []
+      }
+    },
+    "winning_alliance": "red",
+    "event_key": "2016nytr",
+    "time": 1458417180,
+    "predicted_time": 0,
+    "actual_time": 1458416630,
+    "post_result_time": 0,
+    "score_breakdowns": {
+      "blue": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      },
+      "red": {
+        "taxiRobot1": "",
+        "endgameRobot1": "",
+        "taxiRobot2": "",
+        "endgameRobot2": "",
+        "taxiRobot3": "",
+        "endgameRobot3": "",
+        "autoCargoLowerNear": 0,
+        "autoCargoLowerFar": 0,
+        "autoCargoLowerBlue": 0,
+        "autoCargoLowerRed": 0,
+        "autoCargoUpperNear": 0,
+        "autoCargoUpperFar": 0,
+        "autoCargoUpperBlue": 0,
+        "autoCargoUpperRed": 0,
+        "autoCargoTotal": 0,
+        "teleopCargoLowerNear": 0,
+        "teleopCargoLowerFar": 0,
+        "teleopCargoLowerBlue": 0,
+        "teleopCargoLowerRed": 0,
+        "teleopCargoUpperNear": 0,
+        "teleopCargoUpperFar": 0,
+        "teleopCargoUpperBlue": 0,
+        "teleopCargoUpperRed": 0,
+        "teleopCargoTotal": 0,
+        "matchCargoTotal": 0,
+        "autoTaxiPoints": 0,
+        "autoCargoPoints": 0,
+        "autoPoints": 0,
+        "quintetAchieved": false,
+        "teleopCargoPoints": 0,
+        "endgamePoints": 0,
+        "teleopPoints": 0,
+        "cargoBonusRankingPoint": false,
+        "hangarBonusRankingPoint": false,
+        "foulCount": false,
+        "techFoulCount": 0,
+        "adjustPoints": 0,
+        "foulPoints": 0,
+        "rp": 0,
+        "totalPoints": 0
+      }
+    }
+  }
+]