-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2023_dump.sql
146 lines (127 loc) · 21 KB
/
2023_dump.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
-- MySQL dump 10.13 Distrib 8.0.35, for Linux (x86_64)
--
-- Host: localhost Database: softball
-- ------------------------------------------------------
-- Server version 8.0.35-0ubuntu0.23.04.1
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!50503 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `game`
--
DROP TABLE IF EXISTS `game`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `game` (
`id` int NOT NULL AUTO_INCREMENT,
`year` int NOT NULL,
`team` varchar(45) NOT NULL,
`gamenum` int NOT NULL,
`opponent` varchar(45) NOT NULL,
`opponentscore` int NOT NULL,
`washome` tinyint(1) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `id_UNIQUE` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=46 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `game`
--
LOCK TABLES `game` WRITE;
/*!40000 ALTER TABLE `game` DISABLE KEYS */;
INSERT INTO `game` VALUES (2,2021,'West Building Wombats',1,'Cryo-Havoc',19,1),(7,2021,'West Building Wombats',2,'Cryo-Havoc',18,0),(8,2021,'West Building Wombats',3,'Quit Your Pitchin\'',16,0),(9,2021,'West Building Wombats',4,'Quit Your Pitchin\'',6,1),(10,2021,'West Building Wombats',5,'Tailgators',18,0),(11,2021,'West Building Wombats',6,'Tailgators',19,1),(12,2021,'West Building Wombats',7,'QN Deez',19,1),(13,2021,'West Building Wombats',8,'QN Deez',17,0),(14,2021,'West Building Wombats',9,'Quit Your Pitchin\'',12,0),(15,2021,'West Building Wombats',10,'Quit Your Pitchin\'',3,1),(16,2021,'West Building Wombats',11,'Tailgators',10,1),(17,2021,'West Building Wombats',12,'Tailgators',8,0),(18,2022,'West Building Wombats',1,'PIPELine',3,1),(19,2022,'West Building Wombats',2,'PIPELine',6,0),(20,2022,'West Building Wombats',3,'Tailgators',3,0),(21,2022,'West Building Wombats',4,'Tailgators',18,1),(22,2022,'West Building Wombats',5,'QN Deez',26,1),(23,2022,'West Building Wombats',6,'QN Deez',14,0),(24,2022,'West Building Wombats',7,'Quit Your Pitchin\'',19,0),(25,2022,'West Building Wombats',8,'Quit Your Pitchin\'',11,1),(26,2022,'West Building Wombats',9,'PIPELine',6,0),(27,2022,'West Building Wombats',10,'PIPELine',5,1),(28,2022,'West Building Wombats',11,'Tailgators',25,1),(29,2022,'West Building Wombats',12,'Tailgators',25,0),(30,2022,'West Building Wombats',13,'QN Deez',20,0),(31,2022,'West Building Wombats',14,'QN Deez',25,1),(32,2023,'West Building Wombats',1,'Cryo-Havoc',14,0),(33,2023,'West Building Wombats',2,'Cryo-Havoc',9,1),(34,2023,'West Building Wombats',3,'Troy Hill Wango Tangoes',7,0),(35,2023,'West Building Wombats',4,'Troy Hill Wango Tangoes',10,1),(36,2023,'West Building Wombats',5,'Tailgators',12,0),(37,2023,'West Building Wombats',6,'Tailgators',19,1),(38,2023,'West Building Wombats',7,'Troy Hill Wango Tangoes',14,0),(39,2023,'West Building Wombats',8,'Troy Hill Wango Tangoes',14,1),(40,2023,'West Building Wombats',9,'Chips Off The Block',12,1),(41,2023,'West Building Wombats',10,'Chips Off The Block',15,0),(42,2023,'West Building Wombats',11,'Chips Off The Block',19,1),(43,2023,'West Building Wombats',12,'Chips Off The Block',9,0),(44,2023,'West Building Wombats',13,'Quit Your Pitching',11,0),(45,2023,'West Building Wombats',14,'Quit Your Pitching',20,1);
/*!40000 ALTER TABLE `game` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `player`
--
DROP TABLE IF EXISTS `player`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `player` (
`id` int NOT NULL AUTO_INCREMENT,
`name` varchar(45) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `id_UNIQUE` (`id`),
UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=132 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `player`
--
LOCK TABLES `player` WRITE;
/*!40000 ALTER TABLE `player` DISABLE KEYS */;
INSERT INTO `player` VALUES (100,'Anna'),(101,'Brad'),(102,'Brandon'),(103,'Cam'),(104,'Carol'),(105,'Chad'),(106,'Greg'),(107,'Hunter'),(108,'Ian'),(109,'Isaac'),(110,'Jake'),(111,'Jamila'),(112,'Josh'),(113,'Katie'),(114,'Lance'),(115,'Luke'),(116,'Matthew'),(117,'Moises'),(118,'Nate La'),(119,'Nate Lo'),(120,'Nate Ly'),(121,'Paul'),(122,'Phil'),(123,'Ron'),(124,'Ruthie'),(125,'Ryan'),(126,'Shane'),(127,'Steve'),(128,'Ted'),(129,'Walt'),(130,'Zach');
/*!40000 ALTER TABLE `player` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `playerstat`
--
DROP TABLE IF EXISTS `playerstat`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `playerstat` (
`id` int NOT NULL AUTO_INCREMENT,
`player` int NOT NULL,
`game` int NOT NULL,
`plateappearances` int NOT NULL,
`runs` int NOT NULL,
`sacflies` int NOT NULL,
`walks` int NOT NULL,
`strikeouts` int NOT NULL,
`singles` int NOT NULL,
`doubles` int NOT NULL,
`triples` int NOT NULL,
`homeruns` int NOT NULL,
PRIMARY KEY (`id`),
KEY `FK_PLAYER_ID_idx` (`player`),
KEY `FK_GAME_ID_idx` (`game`),
CONSTRAINT `FK_GAME_ID` FOREIGN KEY (`game`) REFERENCES `game` (`id`) ON UPDATE CASCADE,
CONSTRAINT `FK_PLAYER_ID` FOREIGN KEY (`player`) REFERENCES `player` (`id`) ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=438 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `playerstat`
--
LOCK TABLES `playerstat` WRITE;
/*!40000 ALTER TABLE `playerstat` DISABLE KEYS */;
INSERT INTO `playerstat` VALUES (1,101,2,3,1,0,0,0,2,0,0,0),(2,104,2,3,1,0,1,2,0,0,0,0),(3,106,2,2,1,0,0,0,0,0,0,0),(4,110,2,3,0,1,0,1,1,0,0,0),(5,113,2,3,0,0,0,0,1,0,0,0),(6,114,2,3,1,0,1,0,1,0,0,0),(7,122,2,3,0,0,0,0,2,0,0,0),(8,124,2,3,0,0,0,0,3,0,0,0),(9,125,2,2,1,0,0,1,1,0,0,0),(10,128,2,3,1,0,0,0,2,0,0,0),(11,129,2,3,1,0,0,1,1,0,0,0),(12,101,7,3,2,0,0,0,2,0,0,0),(13,104,7,3,0,0,0,0,3,0,0,0),(14,106,7,3,2,0,0,0,2,0,0,0),(15,110,7,3,2,0,0,0,3,0,0,0),(16,113,7,3,0,0,0,0,1,0,0,0),(17,114,7,3,1,0,0,0,1,0,0,0),(18,122,7,2,0,0,1,0,0,0,0,0),(19,124,7,3,0,1,0,0,1,0,0,0),(20,125,7,3,1,0,1,1,0,0,0,0),(21,128,7,3,0,0,0,0,2,0,0,0),(22,129,7,3,3,0,0,0,3,0,0,0),(23,101,8,3,1,0,1,0,1,0,0,0),(24,102,8,2,0,1,0,0,0,0,0,0),(25,104,8,3,0,0,0,2,0,0,0,0),(26,106,8,2,0,0,0,0,1,0,0,0),(27,110,8,3,2,0,0,0,3,0,0,0),(28,114,8,3,0,0,0,0,2,0,0,0),(29,122,8,3,0,0,0,0,1,0,0,0),(30,124,8,3,0,1,0,0,0,0,0,0),(31,125,8,3,1,0,0,0,2,0,0,0),(32,128,8,3,0,0,0,0,0,0,0,0),(33,129,8,3,1,0,0,0,2,0,0,0),(34,101,9,4,2,0,1,0,2,0,0,0),(35,104,9,4,1,0,1,0,0,0,0,0),(36,106,9,4,3,0,0,1,3,0,0,0),(37,110,9,4,3,0,0,0,4,0,0,0),(38,111,9,1,1,0,0,0,1,0,0,0),(39,114,9,3,1,0,0,0,2,0,0,0),(40,122,9,4,0,0,0,0,2,0,0,0),(41,124,9,1,0,0,0,0,0,0,0,0),(42,125,9,3,1,0,0,0,1,0,0,0),(43,128,9,4,3,0,0,0,4,0,0,0),(44,129,9,4,2,0,0,0,2,0,0,0),(45,100,10,3,0,0,0,1,0,0,0,0),(46,101,10,3,1,0,1,0,1,0,0,0),(47,102,10,4,1,0,1,1,2,0,0,0),(48,104,10,3,0,0,1,0,0,0,0,0),(49,106,10,3,0,2,0,0,0,0,0,0),(50,109,10,3,1,0,0,0,1,0,0,0),(51,110,10,3,1,1,0,0,2,0,0,0),(52,111,10,4,0,1,0,0,1,0,0,0),(53,113,10,3,0,1,0,1,0,0,0,0),(54,122,10,3,2,0,1,0,2,0,0,0),(55,125,10,3,2,0,1,0,1,0,0,0),(56,128,10,3,2,0,0,0,3,0,0,0),(57,129,10,3,1,1,0,0,2,0,0,0),(58,100,11,3,0,0,0,1,1,0,0,0),(59,101,11,3,1,0,1,0,2,0,0,0),(60,102,11,2,0,0,0,0,1,0,0,0),(61,104,11,2,0,0,1,1,0,0,0,0),(62,106,11,2,0,0,0,0,1,0,0,0),(63,109,11,3,0,0,0,0,1,0,0,0),(64,110,11,3,1,0,0,0,3,0,0,0),(65,111,11,2,1,0,1,0,0,0,0,0),(66,113,11,3,0,1,0,0,0,0,0,0),(67,122,11,2,1,0,0,1,1,0,0,0),(68,125,11,3,1,0,1,0,0,0,0,0),(69,128,11,2,1,0,0,0,1,0,0,0),(70,129,11,3,2,0,0,0,1,0,0,0),(71,101,12,2,2,0,0,0,2,0,0,0),(72,102,12,2,0,0,0,0,1,0,0,0),(73,106,12,2,0,0,0,0,2,0,0,0),(74,109,12,2,0,1,0,0,1,0,0,0),(75,110,12,2,2,0,0,0,2,0,0,0),(76,111,12,2,0,0,0,0,0,0,0,0),(77,113,12,2,0,0,0,0,0,0,0,0),(78,114,12,2,0,0,0,0,1,0,0,0),(79,124,12,2,0,0,0,0,2,0,0,0),(80,125,12,3,0,0,0,0,0,0,0,0),(81,128,12,2,0,0,0,0,1,0,0,0),(82,129,12,2,1,0,0,0,1,0,0,0),(83,101,13,3,1,0,0,0,3,0,0,0),(84,102,13,2,0,0,0,0,2,0,0,0),(85,106,13,2,0,0,0,0,1,0,0,0),(86,109,13,3,0,0,0,0,2,0,0,0),(87,110,13,3,2,0,0,0,2,0,0,0),(88,111,13,3,0,0,0,1,0,0,0,0),(89,113,13,2,0,0,0,0,1,0,0,0),(90,114,13,3,0,0,0,0,2,0,0,0),(91,124,13,2,0,0,0,1,1,0,0,0),(92,125,13,2,0,0,0,1,0,0,0,0),(93,128,13,2,0,0,0,0,1,0,0,0),(94,129,13,3,2,0,0,0,2,0,0,0),(95,102,14,5,1,0,1,1,1,0,0,0),(96,104,14,5,0,1,1,0,1,0,0,0),(97,106,14,4,1,0,1,0,3,0,0,0),(98,109,14,5,1,0,0,0,2,0,0,0),(99,110,14,5,1,0,0,0,3,0,0,0),(100,114,14,5,1,2,0,0,1,0,0,0),(101,122,14,5,2,0,1,0,2,0,0,0),(102,125,14,5,1,1,0,1,3,0,0,0),(103,129,14,5,2,0,0,0,2,0,0,0),(104,102,15,2,0,0,0,0,2,0,0,0),(105,104,15,2,0,0,0,0,0,0,0,0),(106,106,15,2,0,0,0,0,0,0,0,0),(107,109,15,2,0,0,0,0,1,0,0,0),(108,110,15,2,2,0,0,0,2,0,0,0),(109,114,15,2,0,1,0,0,0,0,0,0),(110,122,15,2,1,0,0,0,1,0,0,0),(111,125,15,1,0,0,0,0,1,0,0,0),(112,129,15,2,1,0,0,0,2,0,0,0),(113,101,16,4,2,0,0,0,3,0,0,0),(114,102,16,4,1,0,0,0,4,0,0,0),(115,104,16,4,1,0,2,0,0,0,0,0),(116,106,16,4,1,0,0,0,2,0,0,0),(117,114,16,4,1,2,0,0,1,0,0,0),(118,122,16,3,3,0,0,0,2,0,0,0),(119,124,16,4,0,1,0,1,0,0,0,0),(120,128,16,4,3,0,0,0,3,0,0,0),(121,129,16,4,3,0,0,0,3,0,0,0),(122,101,17,3,1,0,0,0,2,0,0,0),(123,102,17,3,1,0,0,0,1,0,0,0),(124,104,17,3,1,0,1,1,0,0,0,0),(125,106,17,2,2,0,0,0,2,0,0,0),(126,114,17,3,0,0,0,0,2,0,0,0),(127,122,17,3,2,0,0,0,2,0,0,0),(128,124,17,3,0,1,0,0,1,0,0,0),(129,128,17,3,1,0,0,0,2,0,0,0),(130,129,17,3,2,0,0,0,2,0,0,0),(131,122,18,3,3,0,0,0,3,0,0,0),(132,129,18,3,2,0,0,0,2,0,0,0),(133,130,18,3,3,0,0,0,1,1,0,1),(134,126,18,3,1,0,0,0,0,1,0,1),(135,107,18,3,2,0,0,0,2,0,0,0),(136,128,18,3,0,0,0,0,2,0,0,0),(137,114,18,3,1,0,0,0,1,1,0,0),(138,119,18,3,1,0,0,1,1,0,0,0),(139,104,18,3,0,0,0,0,2,0,0,0),(140,108,18,3,0,0,0,0,1,0,0,0),(141,125,18,3,0,0,0,2,0,0,0,0),(142,102,18,2,1,0,1,0,0,0,0,0),(143,106,18,2,2,0,0,0,1,1,0,0),(144,115,18,2,2,0,0,0,0,2,0,0),(145,102,19,3,1,0,0,0,3,0,0,0),(146,106,19,3,1,0,0,0,1,0,0,0),(147,115,19,3,1,0,0,0,1,0,0,0),(148,122,19,3,1,0,0,1,1,0,0,0),(149,129,19,3,2,0,0,0,1,0,0,1),(150,130,19,3,2,0,0,0,1,0,1,0),(151,126,19,3,2,0,0,0,2,0,0,0),(152,107,19,3,1,1,0,0,1,0,0,0),(153,128,19,3,1,1,0,0,2,0,0,0),(154,114,19,3,1,0,0,0,2,0,0,0),(155,119,19,2,1,0,0,0,1,0,0,0),(156,104,19,2,2,0,0,0,2,0,0,0),(157,108,19,2,2,0,0,0,2,0,0,0),(158,125,19,2,0,0,0,0,2,0,0,0),(159,114,20,4,1,0,0,0,3,0,0,0),(160,115,20,4,2,0,0,0,2,2,0,0),(161,126,20,4,0,1,0,0,1,0,0,0),(162,130,20,4,2,0,1,0,3,0,0,0),(163,119,20,4,2,0,1,0,3,0,0,0),(164,116,20,4,0,0,0,4,0,0,0,0),(165,104,20,4,0,0,1,0,1,0,0,0),(166,128,20,4,1,0,0,1,3,0,0,0),(167,107,20,4,2,0,0,1,1,1,0,0),(168,106,20,4,0,0,0,0,2,1,0,0),(169,125,20,3,1,0,0,1,2,0,0,0),(170,125,21,4,1,0,0,1,3,0,0,0),(171,114,21,4,1,0,0,0,4,0,0,0),(172,115,21,4,2,0,0,0,3,0,0,0),(173,126,21,4,2,0,0,0,1,1,1,0),(174,130,21,4,1,1,0,0,3,0,0,0),(175,119,21,4,1,1,1,0,1,0,0,0),(176,116,21,4,0,0,0,0,2,0,0,0),(177,104,21,4,0,0,0,0,2,0,0,0),(178,128,21,3,0,0,0,0,2,0,0,0),(179,107,21,3,0,0,0,0,1,0,0,0),(180,106,21,3,1,0,0,0,1,1,0,0),(181,128,22,2,1,0,0,0,1,0,0,0),(182,129,22,2,1,0,0,0,1,0,0,0),(183,108,22,2,1,0,0,0,1,0,0,0),(184,126,22,2,1,0,0,0,0,0,1,0),(185,115,22,1,0,1,0,0,0,0,0,0),(186,114,22,1,0,0,0,0,0,0,0,0),(187,107,22,1,0,0,0,0,0,0,0,0),(188,119,22,1,0,0,0,0,0,0,0,0),(189,116,22,1,0,0,0,0,0,0,0,0),(190,102,22,1,0,0,1,0,0,0,0,0),(191,106,22,1,0,0,0,0,0,1,0,0),(192,115,23,3,0,0,0,0,1,0,0,0),(193,114,23,3,0,0,0,0,1,0,0,0),(194,107,23,3,0,0,0,1,0,0,0,0),(195,119,23,3,0,0,0,0,1,0,0,0),(196,116,23,2,0,0,1,0,0,0,0,0),(197,102,23,2,0,0,0,0,1,0,0,0),(198,106,23,2,0,0,0,0,1,0,0,0),(199,128,23,2,0,0,0,0,0,0,0,0),(200,129,23,2,2,0,0,0,1,1,0,0),(201,108,23,2,1,0,0,0,0,2,0,0),(202,126,23,2,0,2,0,0,0,0,0,0),(203,102,24,5,3,0,0,1,3,0,0,0),(204,115,24,5,3,0,0,0,3,1,0,0),(205,126,24,5,1,2,0,0,2,0,0,0),(206,130,24,5,1,1,0,0,3,0,0,0),(207,108,24,5,2,0,0,0,3,0,0,0),(208,125,24,4,1,0,0,1,2,0,0,0),(209,104,24,4,0,0,2,0,1,0,0,0),(210,114,24,4,0,0,0,0,2,0,0,0),(211,119,24,4,0,0,1,0,1,0,0,0),(212,106,24,4,2,0,0,0,3,0,0,0),(213,125,25,4,1,0,0,0,2,1,0,0),(214,104,25,4,1,0,0,0,2,0,0,0),(215,114,25,3,2,0,2,0,0,0,0,0),(216,119,25,3,2,0,1,0,2,0,0,0),(217,106,25,3,2,0,0,0,2,1,0,0),(218,102,25,3,2,0,0,1,1,1,0,0),(219,115,25,3,1,0,0,0,2,0,0,1),(220,126,25,3,0,0,0,0,1,0,0,0),(221,130,25,3,1,1,0,0,1,0,0,0),(222,108,25,3,0,0,1,0,0,0,0,0),(223,122,26,4,0,0,0,1,1,0,0,0),(224,128,26,4,2,0,0,0,3,0,0,0),(225,130,26,4,2,0,0,0,1,0,1,1),(226,125,26,4,1,0,0,0,3,0,0,0),(227,104,26,4,0,1,0,0,2,0,0,0),(228,114,26,4,0,0,0,0,2,0,0,0),(229,102,26,3,1,1,0,0,1,0,0,0),(230,119,26,3,0,0,2,0,0,0,0,0),(231,112,26,3,1,0,0,0,1,0,0,0),(232,107,26,3,2,0,0,0,2,0,0,0),(233,108,26,3,1,0,0,0,2,0,1,0),(234,106,26,3,0,0,1,0,0,1,0,0),(235,102,27,4,1,1,0,0,0,1,0,0),(236,119,27,4,1,0,0,0,3,0,0,0),(237,112,27,3,2,0,0,0,2,0,0,0),(238,107,27,3,2,0,0,0,3,0,0,0),(239,108,27,3,2,0,0,0,1,0,0,1),(240,106,27,3,1,0,0,0,1,1,0,0),(241,122,27,3,0,0,0,0,2,0,0,0),(242,128,27,3,2,0,0,0,2,0,0,0),(243,130,27,3,2,0,0,0,3,0,0,0),(244,125,27,3,1,0,1,0,2,0,0,0),(245,104,27,3,1,1,0,0,1,0,0,0),(246,114,27,3,0,0,1,0,0,0,0,0),(247,128,28,3,0,0,0,0,0,0,0,0),(248,107,28,3,1,0,0,0,1,0,0,0),(249,130,28,3,1,0,0,0,1,0,0,1),(250,125,28,3,0,0,0,1,1,0,0,0),(251,119,28,3,1,0,0,0,2,0,0,0),(252,104,28,2,1,0,0,0,0,1,0,0),(253,112,28,2,0,0,0,0,1,1,0,0),(254,114,28,2,0,0,0,0,1,1,0,0),(255,108,28,2,0,0,0,0,1,0,0,0),(256,102,28,1,0,0,0,0,1,0,0,0),(257,104,29,4,0,0,0,0,1,0,0,0),(258,112,29,4,0,0,0,0,1,0,0,0),(259,114,29,4,1,0,0,0,2,0,0,0),(260,108,29,4,3,0,0,0,2,1,0,0),(261,102,29,4,2,0,1,0,1,0,0,0),(262,128,29,3,0,0,0,0,1,0,0,0),(263,107,29,3,2,0,0,0,1,0,1,0),(264,130,29,3,1,0,0,0,1,0,0,0),(265,125,29,3,1,0,0,0,1,1,0,0),(266,119,29,3,0,0,0,1,2,0,0,0),(267,107,30,3,3,0,0,0,2,1,0,0),(268,126,30,3,0,1,0,0,0,1,0,0),(269,130,30,3,0,0,0,0,1,0,1,0),(270,128,30,2,0,0,0,0,1,0,0,0),(271,104,30,2,0,0,0,0,1,0,0,0),(272,122,30,2,0,0,0,0,1,0,0,0),(273,102,30,2,0,0,0,2,0,0,0,0),(274,114,30,2,1,0,0,0,1,0,0,0),(275,108,30,2,1,0,0,0,1,0,0,0),(276,128,31,3,0,0,0,0,1,0,0,0),(277,104,31,3,0,0,0,0,2,0,0,0),(278,122,31,3,1,0,0,1,2,0,0,0),(279,102,31,3,1,0,1,1,1,0,0,0),(280,114,31,3,1,0,0,0,2,0,0,0),(281,108,31,3,1,0,0,0,1,0,0,0),(282,107,31,2,0,0,0,0,0,1,0,0),(283,126,31,2,1,0,0,0,1,1,0,0),(284,130,31,2,0,0,0,0,1,0,0,0),(285,106,32,2,0,0,0,0,0,0,0,0),(286,107,32,2,1,1,0,0,1,0,0,0),(287,108,32,2,0,0,0,0,2,0,0,0),(288,112,32,2,0,0,0,0,1,0,0,0),(289,115,32,2,0,0,0,1,0,0,0,0),(290,117,32,2,0,1,0,0,0,0,0,0),(291,119,32,2,0,0,0,0,2,0,0,0),(292,120,32,2,0,0,0,1,0,0,0,0),(293,122,32,2,0,0,0,0,1,0,0,0),(294,125,32,1,0,0,0,0,0,0,0,0),(295,126,32,2,1,0,0,0,2,0,0,0),(296,127,32,2,0,0,0,1,0,0,0,0),(297,128,32,2,1,0,0,0,2,0,0,0),(298,106,33,2,1,0,0,0,1,0,0,0),(299,107,33,3,2,0,0,1,2,0,0,0),(300,108,33,3,1,0,0,0,1,0,0,0),(301,112,33,2,1,0,0,0,1,0,0,0),(302,115,33,2,1,0,0,0,2,0,0,0),(303,117,33,2,0,0,0,0,1,0,0,0),(304,119,33,2,0,1,0,0,1,0,0,0),(305,120,33,2,0,1,1,0,0,0,0,0),(306,122,33,2,2,0,0,0,2,0,0,0),(307,125,33,3,0,0,0,0,2,0,0,0),(308,126,33,3,1,0,0,0,0,0,2,0),(309,127,33,2,1,0,1,0,1,0,0,0),(310,128,33,3,1,0,0,0,2,0,0,0),(311,119,34,4,1,0,1,0,2,0,0,0),(312,128,34,4,1,0,0,0,1,0,0,0),(313,130,34,3,0,0,0,0,1,1,0,0),(314,126,34,3,1,0,0,0,0,0,0,1),(315,122,34,3,2,0,0,0,3,0,0,0),(316,121,34,3,1,0,0,0,1,1,0,0),(317,104,34,3,0,0,0,1,2,0,0,0),(318,120,34,3,1,0,0,0,1,0,0,0),(319,107,34,3,1,0,0,0,3,0,0,0),(320,125,34,3,1,0,0,0,0,1,0,0),(321,108,34,3,1,0,0,0,1,0,0,0),(322,106,34,3,0,1,0,0,2,0,0,0),(323,115,34,3,2,1,0,0,1,1,0,0),(324,130,35,4,3,0,0,0,1,2,0,1),(325,126,35,4,0,0,0,0,3,0,1,0),(326,122,35,4,2,0,0,1,2,0,0,0),(327,121,35,4,1,0,0,0,1,1,0,0),(328,104,35,4,1,0,2,0,0,0,0,0),(329,120,35,3,2,0,0,0,2,0,0,0),(330,107,35,3,1,0,0,0,2,0,0,0),(331,125,35,3,1,0,0,0,1,1,0,0),(332,108,35,3,1,0,0,0,2,1,0,0),(333,106,35,3,1,0,0,0,2,0,0,0),(334,115,35,3,1,0,0,1,1,0,0,0),(335,119,35,3,2,0,3,0,0,0,0,0),(336,128,35,3,2,0,0,0,3,0,0,0),(337,127,36,3,1,0,0,0,1,1,0,0),(338,103,36,3,1,0,0,0,2,0,0,0),(339,128,36,3,0,0,0,0,2,0,0,0),(340,130,36,3,2,1,0,0,1,0,1,0),(341,126,36,3,2,0,0,0,1,1,0,0),(342,119,36,3,0,1,1,0,1,0,0,0),(343,117,36,3,0,0,1,0,0,0,0,0),(344,106,36,3,1,1,0,0,0,1,0,0),(345,125,36,2,1,0,0,1,1,0,0,0),(346,108,36,2,0,0,0,0,1,0,0,0),(347,127,37,3,1,0,0,1,2,0,0,0),(348,103,37,3,0,0,0,0,0,0,0,0),(349,128,37,3,1,0,0,0,1,0,0,0),(350,130,37,3,1,0,0,0,1,1,0,1),(351,126,37,3,0,0,0,0,2,0,0,0),(352,119,37,3,0,0,2,1,0,0,0,0),(353,117,37,3,0,0,1,0,0,0,0,0),(354,106,37,2,0,0,0,0,1,0,0,0),(355,125,37,2,0,0,0,0,0,0,0,0),(356,108,37,2,1,0,0,0,1,0,0,0),(357,102,38,3,0,0,0,1,0,0,0,0),(358,122,38,3,1,0,0,0,1,1,0,0),(359,128,38,3,0,1,0,0,1,0,0,0),(360,130,38,3,1,0,0,0,2,0,0,0),(361,126,38,3,0,0,0,0,3,0,0,0),(362,127,38,3,0,0,0,0,1,0,0,0),(363,112,38,2,0,0,0,0,1,0,0,0),(364,119,38,2,0,0,2,0,0,0,0,0),(365,125,38,2,0,0,1,1,0,0,0,0),(366,106,38,2,0,0,0,0,0,0,0,0),(367,112,39,6,1,0,1,0,1,0,1,0),(368,125,39,6,2,0,1,0,1,2,0,0),(369,102,39,6,2,0,3,1,1,0,0,0),(370,122,39,6,1,0,1,1,3,0,0,0),(371,128,39,6,3,0,0,0,5,0,0,0),(372,130,39,6,4,0,1,0,2,1,0,1),(373,126,39,5,3,0,0,0,3,1,0,1),(374,127,39,5,2,0,1,0,4,0,0,0),(375,106,39,3,1,0,0,0,2,1,0,0),(376,128,40,3,1,0,0,0,2,0,0,0),(377,127,40,3,1,1,0,0,1,0,0,0),(378,121,40,3,3,0,0,0,3,0,0,0),(379,108,40,3,2,0,0,0,2,0,0,0),(380,126,40,3,1,0,0,0,2,0,1,0),(381,103,40,3,1,0,0,0,1,0,0,0),(382,125,40,2,0,0,0,0,2,0,0,0),(383,117,40,2,0,0,0,1,0,0,0,0),(384,104,40,2,1,0,0,0,2,0,0,0),(385,112,40,2,1,0,0,0,1,0,0,0),(386,106,40,2,2,0,0,0,0,2,0,0),(387,115,40,2,0,1,0,0,1,0,0,0),(388,125,41,4,3,0,0,0,3,0,0,0),(389,117,41,4,1,0,1,1,2,0,0,0),(390,104,41,4,1,0,1,0,2,0,0,0),(391,112,41,4,2,1,0,0,2,0,0,0),(392,106,41,3,1,0,0,0,2,1,0,0),(393,115,41,3,0,0,0,0,2,0,0,0),(394,128,41,3,2,0,0,0,2,1,0,0),(395,127,41,3,1,0,0,1,1,0,0,0),(396,121,41,2,1,0,0,0,0,1,0,0),(397,108,41,3,2,0,0,0,1,0,1,0),(398,126,41,3,2,0,0,0,2,1,0,0),(399,103,41,3,2,0,1,1,1,0,0,0),(400,122,42,5,2,0,0,0,3,0,0,0),(401,107,42,5,5,0,0,0,1,4,0,0),(402,104,42,5,0,2,0,0,1,1,0,0),(403,130,42,5,3,0,0,0,1,0,0,1),(404,112,42,5,1,0,0,0,2,2,0,0),(405,128,42,5,1,0,0,1,1,1,0,1),(406,103,42,5,1,0,0,0,1,1,0,1),(407,117,42,4,0,1,0,0,0,0,0,0),(408,120,42,4,1,0,0,0,2,0,0,0),(409,106,42,4,3,0,0,0,1,1,1,1),(410,108,42,4,1,2,0,0,0,0,0,1),(411,117,43,3,0,0,0,0,1,0,0,0),(412,120,43,4,2,0,0,0,3,0,0,0),(413,106,43,4,3,0,0,0,2,1,0,0),(414,108,43,4,1,0,0,0,4,0,0,0),(415,122,43,4,0,0,0,1,2,0,0,0),(416,107,43,4,1,0,0,0,1,2,1,0),(417,104,43,4,1,0,0,0,1,0,0,0),(418,130,43,3,2,0,0,0,0,1,1,0),(419,112,43,3,2,0,0,0,3,0,0,0),(420,128,43,3,2,0,0,0,1,1,1,0),(421,103,43,3,1,0,0,0,3,0,0,0),(422,122,44,6,2,1,3,0,1,0,0,0),(423,102,44,6,3,1,0,0,5,0,0,0),(424,128,44,6,2,0,1,0,3,1,0,0),(425,126,44,6,1,0,0,0,5,0,1,0),(426,125,44,6,0,0,1,1,2,0,0,0),(427,119,44,5,0,0,1,0,1,0,0,0),(428,108,44,5,2,0,0,0,1,1,0,1),(429,106,44,5,2,0,1,0,1,0,0,0),(430,119,45,6,0,0,0,0,1,0,0,0),(431,108,45,5,2,0,0,0,2,2,0,0),(432,106,45,5,4,0,0,0,2,1,1,0),(433,122,45,5,2,0,1,0,3,0,0,0),(434,102,45,5,1,2,1,0,2,0,0,0),(435,128,45,5,1,0,0,0,3,0,0,0),(436,126,45,5,1,0,0,0,2,0,1,1),(437,125,45,5,1,0,0,0,3,1,1,1);
/*!40000 ALTER TABLE `playerstat` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `roster`
--
DROP TABLE IF EXISTS `roster`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `roster` (
`id` int NOT NULL AUTO_INCREMENT,
`year` int NOT NULL,
`player` varchar(45) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=54 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `roster`
--
LOCK TABLES `roster` WRITE;
/*!40000 ALTER TABLE `roster` DISABLE KEYS */;
INSERT INTO `roster` VALUES (1,2021,'100'),(2,2021,'101'),(3,2021,'102'),(4,2021,'104'),(5,2021,'106'),(6,2021,'109'),(7,2021,'110'),(8,2021,'111'),(9,2021,'113'),(10,2021,'114'),(11,2021,'118'),(12,2021,'122'),(13,2021,'124'),(14,2021,'125'),(15,2021,'128'),(16,2021,'129'),(17,2022,'102'),(18,2022,'104'),(19,2022,'105'),(20,2022,'106'),(21,2022,'107'),(22,2022,'108'),(23,2022,'112'),(24,2022,'114'),(25,2022,'115'),(26,2022,'116'),(27,2022,'119'),(28,2022,'122'),(29,2022,'125'),(30,2022,'126'),(31,2022,'128'),(32,2022,'129'),(33,2022,'130'),(34,2023,'102'),(35,2023,'103'),(36,2023,'104'),(37,2023,'105'),(38,2023,'106'),(39,2023,'107'),(40,2023,'108'),(41,2023,'112'),(42,2023,'115'),(43,2023,'117'),(44,2023,'119'),(45,2023,'120'),(46,2023,'121'),(47,2023,'122'),(48,2023,'125'),(49,2023,'123'),(50,2023,'126'),(51,2023,'127'),(52,2023,'128'),(53,2023,'130');
/*!40000 ALTER TABLE `roster` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2024-04-13 19:47:42