diff --git a/.nojekyll b/.nojekyll index a41c0f9..3299b22 100644 --- a/.nojekyll +++ b/.nojekyll @@ -1 +1 @@ -0ca92575 \ No newline at end of file +5c950b5f \ No newline at end of file diff --git a/baseball/verlander-pitches.html b/baseball/verlander-pitches.html index 7153081..2da7f35 100644 --- a/baseball/verlander-pitches.html +++ b/baseball/verlander-pitches.html @@ -2,7 +2,7 @@ - + @@ -48,7 +48,13 @@ "collapse-after": 3, "panel-placement": "end", "type": "overlay", - "limit": 20, + "limit": 50, + "keyboard-shortcut": [ + "f", + "/", + "s" + ], + "show-item-context": false, "language": { "search-no-results-text": "No results", "search-matching-documents-text": "matching documents", @@ -57,6 +63,7 @@ "search-more-match-text": "more match in this document", "search-more-matches-text": "more matches in this document", "search-clear-button-title": "Clear", + "search-text-placeholder": "", "search-detached-cancel-button-title": "Cancel", "search-submit-button-title": "Submit", "search-label": "Search" @@ -70,9 +77,9 @@
-
-
-
+
-
+

Justin Verlander Pitches

@@ -509,8 +534,10 @@

Justin Verlander Pitches

+
+

Motivation

After nearly two full seasons due to injury, at the age of 39 Justin Verlander returned for the 2022 season to win the American League Cy Young award and World Series with the Houston Astros. Leading the league in a variety of statistics, Verlander dominated in his starts throughout the season. Pitch selection has played a key role into Verlander’s recent success with the Astros. Verlander throws four types of pitches (using MLB’s abbreviation): fastball (FF), slider (SL), curveball (CB), and changeup (CH). However, pitches are thrown in the context of an at-bat where the ball-strike count starts 0-0, and progresses until either the batter strikes out (reaches three strikes), is walked (reaches four balls), or is either hit-by-pitch or hits the ball in-play. As the count varies, pitchers often decide to favor certain pitches over others, e.g, with three balls (i.e., 3-X counts) the pitcher may favor throwing more accurate fastballs relative to out-of-the-zone offspeed pitches that are favored with two strikes (i.e., X-2 counts).

@@ -641,10 +668,9 @@

References

// clear code selection e.clearSelection(); }); - function tippyHover(el, contentFn) { + function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) { const config = { allowHTML: true, - content: contentFn, maxWidth: 500, delay: 100, arrow: false, @@ -654,8 +680,17 @@

References

interactive: true, interactiveBorder: 10, theme: 'quarto', - placement: 'bottom-start' + placement: 'bottom-start', }; + if (contentFn) { + config.content = contentFn; + } + if (onTriggerFn) { + config.onTrigger = onTriggerFn; + } + if (onUntriggerFn) { + config.onUntrigger = onUntriggerFn; + } window.tippy(el, config); } const noterefs = window.document.querySelectorAll('a[role="doc-noteref"]'); @@ -669,6 +704,125 @@

References

const note = window.document.getElementById(id); return note.innerHTML; }); + } + const xrefs = window.document.querySelectorAll('a.quarto-xref'); + const processXRef = (id, note) => { + // Strip column container classes + const stripColumnClz = (el) => { + el.classList.remove("page-full", "page-columns"); + if (el.children) { + for (const child of el.children) { + stripColumnClz(child); + } + } + } + stripColumnClz(note) + if (id === null || id.startsWith('sec-')) { + // Special case sections, only their first couple elements + const container = document.createElement("div"); + if (note.children && note.children.length > 2) { + container.appendChild(note.children[0].cloneNode(true)); + for (let i = 1; i < note.children.length; i++) { + const child = note.children[i]; + if (child.tagName === "P" && child.innerText === "") { + continue; + } else { + container.appendChild(child.cloneNode(true)); + break; + } + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(container); + } + return container.innerHTML + } else { + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + return note.innerHTML; + } + } else { + // Remove any anchor links if they are present + const anchorLink = note.querySelector('a.anchorjs-link'); + if (anchorLink) { + anchorLink.remove(); + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + // TODO in 1.5, we should make sure this works without a callout special case + if (note.classList.contains("callout")) { + return note.outerHTML; + } else { + return note.innerHTML; + } + } + } + for (var i=0; i res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.getElementById(id); + if (note !== null) { + const html = processXRef(id, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + } else { + // See if we can fetch a full url (with no hash to target) + // This is a special case and we should probably do some content thinning / targeting + fetch(url) + .then(res => res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.querySelector('main.content'); + if (note !== null) { + // This should only happen for chapter cross references + // (since there is no id in the URL) + // remove the first header + if (note.children.length > 0 && note.children[0].tagName === "HEADER") { + note.children[0].remove(); + } + const html = processXRef(null, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + }, function(instance) { + }); } let selectedAnnoteEl; const selectorForAnnotation = ( cell, annotation) => { @@ -711,6 +865,7 @@

References

} div.style.top = top - 2 + "px"; div.style.height = height + 4 + "px"; + div.style.left = 0; let gutterDiv = window.document.getElementById("code-annotation-line-highlight-gutter"); if (gutterDiv === null) { gutterDiv = window.document.createElement("div"); @@ -736,6 +891,32 @@

References

}); selectedAnnoteEl = undefined; }; + // Handle positioning of the toggle + window.addEventListener( + "resize", + throttle(() => { + elRect = undefined; + if (selectedAnnoteEl) { + selectCodeLines(selectedAnnoteEl); + } + }, 10) + ); + function throttle(fn, ms) { + let throttle = false; + let timer; + return (...args) => { + if(!throttle) { // first call gets through + fn.apply(this, args); + throttle = true; + } else { // all the others get throttled + if(timer) clearTimeout(timer); // cancel #2 + timer = setTimeout(() => { + fn.apply(this, args); + timer = throttle = false; + }, ms); + } + }; + } // Attach click handler to the DT const annoteDls = window.document.querySelectorAll('dt[data-target-cell]'); for (const annoteDlNode of annoteDls) { @@ -801,7 +982,9 @@

References

- + @@ -810,4 +993,5 @@

References

+ \ No newline at end of file diff --git a/basketball/WNBA20Yrs.html b/basketball/WNBA20Yrs.html new file mode 100644 index 0000000..246cfff --- /dev/null +++ b/basketball/WNBA20Yrs.html @@ -0,0 +1,1022 @@ + + + + + + + + + + + + +SCORE Sports Data Repository - Women’s National Baskeball Assosiation game statistics + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+ +
+ + +
+ + + +
+ +
+
+

Women’s National Baskeball Assosiation game statistics

+
+
Data cleaning
+
Missing Data
+
Tables
+
Logistic Regression
+
+
+ +
+
+ This data set contains team game statistics for 16 WNBA teams and for 20 seasons. +
+
+ + +
+ +
+
Author
+
+

Kristen Varin

+
+
+ +
+
Published
+
+

December 15, 2023

+
+
+ + +
+ + + +
+ + +
+

Motivation

+

All data sets used in this worksheet are from the Wehoop Package.

+

The National Basketball Association (NBA) has dominated over the WNBA in popularity since the creation of the WNBA 50 years after that of the NBA. For this reason, there are way more data sets available for the NBA. Thus, there is a need for high quality WNBA data sets in order to run analysis on the players and teams. This data set can be used to demonstrate the process of cleaning, prepping, and determining quality of data.

+
+
+

Data

+

The WNBA20Yrs data set contains 8920 rows and 9 columns. Each pair of rows represents a game played by two WNBA teams in one of the 2003 to 2022 regular seasons. The first row is for the away team and the second row is for the home team. The columns are as follows:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
WNBA20Yrs.csv
VariableDescription
game_idgame id number
seasonseason number
season_typebinary predictor; 2 if regular season game; 3 if playoff game
game_datedate of the game
team_idteam id number
team_display_namefull team name (name and city)
team_winnerBoolean; True if the team won the game
opponent_team_idid number of the opponent
team_home_awayWhere the game was played; either “home” or “away”
+
+
+

Questions

+

The goal will be to create a worksheet for the students telling them we want to predict whether a team makes playoffs based on their record halfway through the season. First, they will need to clean the data based on prompts. We will ask them what they notice about total games played by each team across seasons. They should recognize that the total games recorded is inconsistent between teams and with online WNBA statistics. We will ask them why this is a problem and how the issue could be solved if we still wanted to run the original regression.

+
    +
  • Create a table including a team’s mid season record, whether they would make playoffs based on that record (teams with the top 8 records make the playoffs), their record at the end of the season, and whether they made playoffs based on that record.

  • +
  • What do you notice about the team IDs in this data set? Filter out the IDs we won’t be using and rename the teams so that the same IDs all have the most recent team name.

  • +
  • What problem is there regarding number of games played by each team? What are some ways we could solve this problem?

  • +
  • Run logistic Regression Models to predict whether a team makes playoffs based on their record at the halfway point of the season. If is significant? Interpret the results.

  • +
+
+
+

References

+

Gilani S, Hutchinson G (2022). wehoop: Access Women’s Basketball Play by Play Data. R package version 1.5.0, https://CRAN.R-project.org/package=wehoop.

+ + +
+ +
+ +
+ + + + + + \ No newline at end of file diff --git a/basketball/nba-player-stats.html b/basketball/nba-player-stats.html index 2ec5655..8138a81 100644 --- a/basketball/nba-player-stats.html +++ b/basketball/nba-player-stats.html @@ -2,7 +2,7 @@ - + @@ -48,7 +48,13 @@ "collapse-after": 3, "panel-placement": "end", "type": "overlay", - "limit": 20, + "limit": 50, + "keyboard-shortcut": [ + "f", + "/", + "s" + ], + "show-item-context": false, "language": { "search-no-results-text": "No results", "search-matching-documents-text": "matching documents", @@ -57,6 +63,7 @@ "search-more-match-text": "more match in this document", "search-more-matches-text": "more matches in this document", "search-clear-button-title": "Clear", + "search-text-placeholder": "", "search-detached-cancel-button-title": "Cancel", "search-submit-button-title": "Submit", "search-label": "Search" @@ -66,15 +73,42 @@ + +
-
-
-
+
-
+

National Basketball Association Player Statistics

@@ -511,8 +563,10 @@

National Basketball Association Player Statistics

+
+

Motivation

The National Basketball Association (NBA) is the top men’s professional basketball league in the world. While players have predefined positions, the sport is becoming increasingly positionless - with centers attempting more three point shots and guards driving the ball inside to dunk. With this dataset, you can explore clustering NBA players based on various types of statistics and compare your players labels to the predefined positions.

@@ -747,10 +801,9 @@

References

// clear code selection e.clearSelection(); }); - function tippyHover(el, contentFn) { + function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) { const config = { allowHTML: true, - content: contentFn, maxWidth: 500, delay: 100, arrow: false, @@ -760,8 +813,17 @@

References

interactive: true, interactiveBorder: 10, theme: 'quarto', - placement: 'bottom-start' + placement: 'bottom-start', }; + if (contentFn) { + config.content = contentFn; + } + if (onTriggerFn) { + config.onTrigger = onTriggerFn; + } + if (onUntriggerFn) { + config.onUntrigger = onUntriggerFn; + } window.tippy(el, config); } const noterefs = window.document.querySelectorAll('a[role="doc-noteref"]'); @@ -775,6 +837,125 @@

References

const note = window.document.getElementById(id); return note.innerHTML; }); + } + const xrefs = window.document.querySelectorAll('a.quarto-xref'); + const processXRef = (id, note) => { + // Strip column container classes + const stripColumnClz = (el) => { + el.classList.remove("page-full", "page-columns"); + if (el.children) { + for (const child of el.children) { + stripColumnClz(child); + } + } + } + stripColumnClz(note) + if (id === null || id.startsWith('sec-')) { + // Special case sections, only their first couple elements + const container = document.createElement("div"); + if (note.children && note.children.length > 2) { + container.appendChild(note.children[0].cloneNode(true)); + for (let i = 1; i < note.children.length; i++) { + const child = note.children[i]; + if (child.tagName === "P" && child.innerText === "") { + continue; + } else { + container.appendChild(child.cloneNode(true)); + break; + } + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(container); + } + return container.innerHTML + } else { + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + return note.innerHTML; + } + } else { + // Remove any anchor links if they are present + const anchorLink = note.querySelector('a.anchorjs-link'); + if (anchorLink) { + anchorLink.remove(); + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + // TODO in 1.5, we should make sure this works without a callout special case + if (note.classList.contains("callout")) { + return note.outerHTML; + } else { + return note.innerHTML; + } + } + } + for (var i=0; i res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.getElementById(id); + if (note !== null) { + const html = processXRef(id, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + } else { + // See if we can fetch a full url (with no hash to target) + // This is a special case and we should probably do some content thinning / targeting + fetch(url) + .then(res => res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.querySelector('main.content'); + if (note !== null) { + // This should only happen for chapter cross references + // (since there is no id in the URL) + // remove the first header + if (note.children.length > 0 && note.children[0].tagName === "HEADER") { + note.children[0].remove(); + } + const html = processXRef(null, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + }, function(instance) { + }); } let selectedAnnoteEl; const selectorForAnnotation = ( cell, annotation) => { @@ -817,6 +998,7 @@

References

} div.style.top = top - 2 + "px"; div.style.height = height + 4 + "px"; + div.style.left = 0; let gutterDiv = window.document.getElementById("code-annotation-line-highlight-gutter"); if (gutterDiv === null) { gutterDiv = window.document.createElement("div"); @@ -842,6 +1024,32 @@

References

}); selectedAnnoteEl = undefined; }; + // Handle positioning of the toggle + window.addEventListener( + "resize", + throttle(() => { + elRect = undefined; + if (selectedAnnoteEl) { + selectCodeLines(selectedAnnoteEl); + } + }, 10) + ); + function throttle(fn, ms) { + let throttle = false; + let timer; + return (...args) => { + if(!throttle) { // first call gets through + fn.apply(this, args); + throttle = true; + } else { // all the others get throttled + if(timer) clearTimeout(timer); // cancel #2 + timer = setTimeout(() => { + fn.apply(this, args); + timer = throttle = false; + }, ms); + } + }; + } // Attach click handler to the DT const annoteDls = window.document.querySelectorAll('dt[data-target-cell]'); for (const annoteDlNode of annoteDls) { @@ -907,7 +1115,9 @@

References

- + @@ -916,4 +1126,5 @@

References

+ \ No newline at end of file diff --git a/basketball/wnba-shots.html b/basketball/wnba-shots.html index 7f68511..1143ca2 100644 --- a/basketball/wnba-shots.html +++ b/basketball/wnba-shots.html @@ -2,7 +2,7 @@ - + @@ -48,7 +48,13 @@ "collapse-after": 3, "panel-placement": "end", "type": "overlay", - "limit": 20, + "limit": 50, + "keyboard-shortcut": [ + "f", + "/", + "s" + ], + "show-item-context": false, "language": { "search-no-results-text": "No results", "search-matching-documents-text": "matching documents", @@ -57,6 +63,7 @@ "search-more-match-text": "more match in this document", "search-more-matches-text": "more matches in this document", "search-clear-button-title": "Clear", + "search-text-placeholder": "", "search-detached-cancel-button-title": "Cancel", "search-submit-button-title": "Submit", "search-label": "Search" @@ -70,9 +77,9 @@
-
-
-
+
-
+

Women’s National Basketball Association Shots

@@ -513,8 +538,10 @@

Women’s National Basketball Association Shots

+
+

Motivation

The Women’s National Basketball Association (WNBA) is the top professional women’s basketball league in the world. The league records every shot players take along with contextual information about the shot such as its location, a description of the shot type, as well as the outcome. With this dataset, you can predict the success of each shot attempt to compute the expected value of shot types and compare team decision making.

@@ -693,10 +720,9 @@

References

// clear code selection e.clearSelection(); }); - function tippyHover(el, contentFn) { + function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) { const config = { allowHTML: true, - content: contentFn, maxWidth: 500, delay: 100, arrow: false, @@ -706,8 +732,17 @@

References

interactive: true, interactiveBorder: 10, theme: 'quarto', - placement: 'bottom-start' + placement: 'bottom-start', }; + if (contentFn) { + config.content = contentFn; + } + if (onTriggerFn) { + config.onTrigger = onTriggerFn; + } + if (onUntriggerFn) { + config.onUntrigger = onUntriggerFn; + } window.tippy(el, config); } const noterefs = window.document.querySelectorAll('a[role="doc-noteref"]'); @@ -721,6 +756,125 @@

References

const note = window.document.getElementById(id); return note.innerHTML; }); + } + const xrefs = window.document.querySelectorAll('a.quarto-xref'); + const processXRef = (id, note) => { + // Strip column container classes + const stripColumnClz = (el) => { + el.classList.remove("page-full", "page-columns"); + if (el.children) { + for (const child of el.children) { + stripColumnClz(child); + } + } + } + stripColumnClz(note) + if (id === null || id.startsWith('sec-')) { + // Special case sections, only their first couple elements + const container = document.createElement("div"); + if (note.children && note.children.length > 2) { + container.appendChild(note.children[0].cloneNode(true)); + for (let i = 1; i < note.children.length; i++) { + const child = note.children[i]; + if (child.tagName === "P" && child.innerText === "") { + continue; + } else { + container.appendChild(child.cloneNode(true)); + break; + } + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(container); + } + return container.innerHTML + } else { + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + return note.innerHTML; + } + } else { + // Remove any anchor links if they are present + const anchorLink = note.querySelector('a.anchorjs-link'); + if (anchorLink) { + anchorLink.remove(); + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + // TODO in 1.5, we should make sure this works without a callout special case + if (note.classList.contains("callout")) { + return note.outerHTML; + } else { + return note.innerHTML; + } + } + } + for (var i=0; i res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.getElementById(id); + if (note !== null) { + const html = processXRef(id, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + } else { + // See if we can fetch a full url (with no hash to target) + // This is a special case and we should probably do some content thinning / targeting + fetch(url) + .then(res => res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.querySelector('main.content'); + if (note !== null) { + // This should only happen for chapter cross references + // (since there is no id in the URL) + // remove the first header + if (note.children.length > 0 && note.children[0].tagName === "HEADER") { + note.children[0].remove(); + } + const html = processXRef(null, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + }, function(instance) { + }); } let selectedAnnoteEl; const selectorForAnnotation = ( cell, annotation) => { @@ -763,6 +917,7 @@

References

} div.style.top = top - 2 + "px"; div.style.height = height + 4 + "px"; + div.style.left = 0; let gutterDiv = window.document.getElementById("code-annotation-line-highlight-gutter"); if (gutterDiv === null) { gutterDiv = window.document.createElement("div"); @@ -788,6 +943,32 @@

References

}); selectedAnnoteEl = undefined; }; + // Handle positioning of the toggle + window.addEventListener( + "resize", + throttle(() => { + elRect = undefined; + if (selectedAnnoteEl) { + selectCodeLines(selectedAnnoteEl); + } + }, 10) + ); + function throttle(fn, ms) { + let throttle = false; + let timer; + return (...args) => { + if(!throttle) { // first call gets through + fn.apply(this, args); + throttle = true; + } else { // all the others get throttled + if(timer) clearTimeout(timer); // cancel #2 + timer = setTimeout(() => { + fn.apply(this, args); + timer = throttle = false; + }, ms); + } + }; + } // Attach click handler to the DT const annoteDls = window.document.querySelectorAll('dt[data-target-cell]'); for (const annoteDlNode of annoteDls) { @@ -853,7 +1034,9 @@

References

- + @@ -862,4 +1045,5 @@

References

+ \ No newline at end of file diff --git a/by-statsds-topic.html b/by-statsds-topic.html index 24aaa8d..3609598 100644 --- a/by-statsds-topic.html +++ b/by-statsds-topic.html @@ -2,7 +2,7 @@ - + @@ -47,7 +47,13 @@ "collapse-after": 3, "panel-placement": "end", "type": "overlay", - "limit": 20, + "limit": 50, + "keyboard-shortcut": [ + "f", + "/", + "s" + ], + "show-item-context": false, "language": { "search-no-results-text": "No results", "search-matching-documents-text": "matching documents", @@ -56,6 +62,7 @@ "search-more-match-text": "more match in this document", "search-more-matches-text": "more matches in this document", "search-clear-button-title": "Clear", + "search-text-placeholder": "", "search-detached-cancel-button-title": "Cancel", "search-submit-button-title": "Submit", "search-label": "Search" @@ -94,15 +101,42 @@ + +
-
-
-
+
+
Categories
All (25)
ANOVA for means (1)
Chi-square test for association (1)
Correlation (2)
Data cleaning (1)
Difference in means confidence intervals (1)
Difference in means hypothesis tests (1)
Exploratory Data Analysis (1)
Histograms (1)
Linear Regression (1)
Linear regression (1)
Logistic Regression (1)
Missing Data (1)
Outliers (1)
Pairwise comparisons (1)
Scatter Plots (1)
Summary statistics (1)
Tables (1)
categorical data (3)
chi-squared test (3)
classification (2)
clustering (2)
correlation (3)
correlations (1)
data visualization (2)
data wrangling (4)
density estimation (2)
exploratory data Analysis (1)
five number summary (1)
generalized additive models (2)
indicator variables (1)
joining (1)
linear regression (6)
logistic regression (4)
merging (1)
missing data (1)
model assumptions (1)
model building (1)
multicollinearity (1)
multinomial logistic regression (2)
multiple linear regression (1)
naive bayes classifier (2)
outlier detection (1)
principal component analysis (3)
proportions (1)
regularization (1)
side-by-side boxplots (1)
summary statistics (1)
transformations in regression (1)
two-way tables (1)
variable selection (1)
z-scores (2)
@@ -509,27 +561,62 @@

Datasets By Topic

+
+
-
+
+ +
+
+
+

+
 
+

+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
+ +
+
+
+

+
 
+

+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
+ +
+
+
+

+
 
+

+
+
+

Here are some resources for finding sports datasets:

  • CRAN Task View for Sports Analytics - catalog of R packages published on the Comprehensive R Archive Network (CRAN) organized by sport (curated by Benjamin S. Baumer, Quang Nguyen, and Gregory J. Matthews)
  • @@ -569,10 +596,9 @@

    Data Sources

    // clear code selection e.clearSelection(); }); - function tippyHover(el, contentFn) { + function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) { const config = { allowHTML: true, - content: contentFn, maxWidth: 500, delay: 100, arrow: false, @@ -582,8 +608,17 @@

    Data Sources

    interactive: true, interactiveBorder: 10, theme: 'quarto', - placement: 'bottom-start' + placement: 'bottom-start', }; + if (contentFn) { + config.content = contentFn; + } + if (onTriggerFn) { + config.onTrigger = onTriggerFn; + } + if (onUntriggerFn) { + config.onUntrigger = onUntriggerFn; + } window.tippy(el, config); } const noterefs = window.document.querySelectorAll('a[role="doc-noteref"]'); @@ -597,6 +632,125 @@

    Data Sources

    const note = window.document.getElementById(id); return note.innerHTML; }); + } + const xrefs = window.document.querySelectorAll('a.quarto-xref'); + const processXRef = (id, note) => { + // Strip column container classes + const stripColumnClz = (el) => { + el.classList.remove("page-full", "page-columns"); + if (el.children) { + for (const child of el.children) { + stripColumnClz(child); + } + } + } + stripColumnClz(note) + if (id === null || id.startsWith('sec-')) { + // Special case sections, only their first couple elements + const container = document.createElement("div"); + if (note.children && note.children.length > 2) { + container.appendChild(note.children[0].cloneNode(true)); + for (let i = 1; i < note.children.length; i++) { + const child = note.children[i]; + if (child.tagName === "P" && child.innerText === "") { + continue; + } else { + container.appendChild(child.cloneNode(true)); + break; + } + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(container); + } + return container.innerHTML + } else { + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + return note.innerHTML; + } + } else { + // Remove any anchor links if they are present + const anchorLink = note.querySelector('a.anchorjs-link'); + if (anchorLink) { + anchorLink.remove(); + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + // TODO in 1.5, we should make sure this works without a callout special case + if (note.classList.contains("callout")) { + return note.outerHTML; + } else { + return note.innerHTML; + } + } + } + for (var i=0; i res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.getElementById(id); + if (note !== null) { + const html = processXRef(id, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + } else { + // See if we can fetch a full url (with no hash to target) + // This is a special case and we should probably do some content thinning / targeting + fetch(url) + .then(res => res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.querySelector('main.content'); + if (note !== null) { + // This should only happen for chapter cross references + // (since there is no id in the URL) + // remove the first header + if (note.children.length > 0 && note.children[0].tagName === "HEADER") { + note.children[0].remove(); + } + const html = processXRef(null, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + }, function(instance) { + }); } let selectedAnnoteEl; const selectorForAnnotation = ( cell, annotation) => { @@ -639,6 +793,7 @@

    Data Sources

    } div.style.top = top - 2 + "px"; div.style.height = height + 4 + "px"; + div.style.left = 0; let gutterDiv = window.document.getElementById("code-annotation-line-highlight-gutter"); if (gutterDiv === null) { gutterDiv = window.document.createElement("div"); @@ -664,6 +819,32 @@

    Data Sources

    }); selectedAnnoteEl = undefined; }; + // Handle positioning of the toggle + window.addEventListener( + "resize", + throttle(() => { + elRect = undefined; + if (selectedAnnoteEl) { + selectCodeLines(selectedAnnoteEl); + } + }, 10) + ); + function throttle(fn, ms) { + let throttle = false; + let timer; + return (...args) => { + if(!throttle) { // first call gets through + fn.apply(this, args); + throttle = true; + } else { // all the others get throttled + if(timer) clearTimeout(timer); // cancel #2 + timer = setTimeout(() => { + fn.apply(this, args); + timer = throttle = false; + }, ms); + } + }; + } // Attach click handler to the DT const annoteDls = window.document.querySelectorAll('dt[data-target-cell]'); for (const annoteDlNode of annoteDls) { @@ -729,7 +910,9 @@

    Data Sources

    - + @@ -738,4 +921,5 @@

    Data Sources

    + \ No newline at end of file diff --git a/data/WNBA20Yrs.csv b/data/WNBA20Yrs.csv new file mode 100644 index 0000000..8970c14 --- /dev/null +++ b/data/WNBA20Yrs.csv @@ -0,0 +1,8921 @@ +game_id,season,season_type,game_date,team_id,team_display_name,team_winner,opponent_team_id,team_home_away +230916003,2003,3,2003-09-16,6,Los Angeles Sparks,FALSE,3,away +230916003,2003,3,2003-09-16,3,Detroit Shock,TRUE,6,home +230907006,2003,3,2003-09-07,13,Sacramento Monarchs,FALSE,6,away +230907006,2003,3,2003-09-07,6,Los Angeles Sparks,TRUE,13,home +230907003,2003,3,2003-09-07,18,Connecticut Sun,FALSE,3,away +230907003,2003,3,2003-09-07,3,Detroit Shock,TRUE,18,home +230905013,2003,3,2003-09-05,6,Los Angeles Sparks,FALSE,13,away +230905013,2003,3,2003-09-05,13,Sacramento Monarchs,TRUE,6,home +230902004,2003,3,2003-09-02,13,Sacramento Monarchs,TRUE,4,away +230902004,2003,3,2003-09-02,4,Houston Comets,FALSE,13,home +230902003,2003,3,2003-09-02,2,Cleveland Rockers,FALSE,3,away +230902003,2003,3,2003-09-02,3,Detroit Shock,TRUE,2,home +230901006,2003,3,2003-09-01,8,Minnesota Lynx,FALSE,6,away +230901006,2003,3,2003-09-01,6,Los Angeles Sparks,TRUE,8,home +230831004,2003,3,2003-08-31,13,Sacramento Monarchs,FALSE,4,away +230831004,2003,3,2003-08-31,4,Houston Comets,TRUE,13,home +230831003,2003,3,2003-08-31,2,Cleveland Rockers,TRUE,3,away +230831003,2003,3,2003-08-31,3,Detroit Shock,FALSE,2,home +230830001,2003,3,2003-08-30,18,Connecticut Sun,TRUE,1,away +230830001,2003,3,2003-08-30,1,Charlotte Sting,FALSE,18,home +230829002,2003,3,2003-08-29,3,Detroit Shock,TRUE,2,away +230829002,2003,3,2003-08-29,2,Cleveland Rockers,FALSE,3,home +230828008,2003,3,2003-08-28,6,Los Angeles Sparks,FALSE,8,away +230828008,2003,3,2003-08-28,8,Minnesota Lynx,TRUE,6,home +230828018,2003,3,2003-08-28,1,Charlotte Sting,FALSE,18,away +230828018,2003,3,2003-08-28,18,Connecticut Sun,TRUE,1,home +230825014,2003,2,2003-08-25,13,Sacramento Monarchs,FALSE,14,away +230825014,2003,2,2003-08-25,14,Seattle Storm,TRUE,13,home +230825005,2003,2,2003-08-25,18,Connecticut Sun,TRUE,5,away +230825005,2003,2,2003-08-25,5,Indiana Fever,FALSE,18,home +230825003,2003,2,2003-08-25,16,Washington Mystics,FALSE,3,away +230825003,2003,2,2003-08-25,3,Detroit Shock,TRUE,16,home +230825002,2003,2,2003-08-25,1,Charlotte Sting,FALSE,2,away +230825002,2003,2,2003-08-25,2,Cleveland Rockers,TRUE,1,home +230824001,2003,2,2003-08-24,9,New York Liberty,FALSE,1,away +230824001,2003,2,2003-08-24,1,Charlotte Sting,TRUE,9,home +230823006,2003,2,2003-08-23,17,San Antonio Silver Stars,FALSE,6,away +230823006,2003,2,2003-08-23,6,Los Angeles Sparks,TRUE,17,home +230823013,2003,2,2003-08-23,11,Phoenix Mercury,FALSE,13,away +230823013,2003,2,2003-08-23,13,Sacramento Monarchs,TRUE,11,home +230823005,2003,2,2003-08-23,2,Cleveland Rockers,FALSE,5,away +230823005,2003,2,2003-08-23,5,Indiana Fever,TRUE,2,home +230823008,2003,2,2003-08-23,3,Detroit Shock,TRUE,8,away +230823008,2003,2,2003-08-23,8,Minnesota Lynx,FALSE,3,home +230823016,2003,2,2003-08-23,18,Connecticut Sun,TRUE,16,away +230823016,2003,2,2003-08-23,16,Washington Mystics,FALSE,18,home +230822011,2003,2,2003-08-22,17,San Antonio Silver Stars,FALSE,11,away +230822011,2003,2,2003-08-22,11,Phoenix Mercury,TRUE,17,home +230822009,2003,2,2003-08-22,5,Indiana Fever,TRUE,9,away +230822009,2003,2,2003-08-22,9,New York Liberty,FALSE,5,home +230821013,2003,2,2003-08-21,4,Houston Comets,FALSE,13,away +230821013,2003,2,2003-08-21,13,Sacramento Monarchs,TRUE,4,home +230821003,2003,2,2003-08-21,2,Cleveland Rockers,FALSE,3,away +230821003,2003,2,2003-08-21,3,Detroit Shock,TRUE,2,home +230821016,2003,2,2003-08-21,9,New York Liberty,TRUE,16,away +230821016,2003,2,2003-08-21,16,Washington Mystics,FALSE,9,home +230820011,2003,2,2003-08-20,8,Minnesota Lynx,TRUE,11,away +230820011,2003,2,2003-08-20,11,Phoenix Mercury,FALSE,8,home +230820017,2003,2,2003-08-20,14,Seattle Storm,FALSE,17,away +230820017,2003,2,2003-08-20,17,San Antonio Silver Stars,TRUE,14,home +230820001,2003,2,2003-08-20,5,Indiana Fever,FALSE,1,away +230820001,2003,2,2003-08-20,1,Charlotte Sting,TRUE,5,home +230819004,2003,2,2003-08-19,14,Seattle Storm,FALSE,4,away +230819004,2003,2,2003-08-19,4,Houston Comets,TRUE,14,home +230819002,2003,2,2003-08-19,18,Connecticut Sun,FALSE,2,away +230819002,2003,2,2003-08-19,2,Cleveland Rockers,TRUE,18,home +230816011,2003,2,2003-08-16,13,Sacramento Monarchs,TRUE,11,away +230816011,2003,2,2003-08-16,11,Phoenix Mercury,FALSE,13,home +230816017,2003,2,2003-08-16,8,Minnesota Lynx,TRUE,17,away +230816017,2003,2,2003-08-16,17,San Antonio Silver Stars,FALSE,8,home +230816005,2003,2,2003-08-16,1,Charlotte Sting,FALSE,5,away +230816005,2003,2,2003-08-16,5,Indiana Fever,TRUE,1,home +230816004,2003,2,2003-08-16,6,Los Angeles Sparks,TRUE,4,away +230816004,2003,2,2003-08-16,4,Houston Comets,FALSE,6,home +230815011,2003,2,2003-08-15,14,Seattle Storm,FALSE,11,away +230815011,2003,2,2003-08-15,11,Phoenix Mercury,TRUE,14,home +230815013,2003,2,2003-08-15,3,Detroit Shock,FALSE,13,away +230815013,2003,2,2003-08-15,13,Sacramento Monarchs,TRUE,3,home +230814008,2003,2,2003-08-14,6,Los Angeles Sparks,TRUE,8,away +230814008,2003,2,2003-08-14,8,Minnesota Lynx,FALSE,6,home +230814001,2003,2,2003-08-14,16,Washington Mystics,TRUE,1,away +230814001,2003,2,2003-08-14,1,Charlotte Sting,FALSE,16,home +230813011,2003,2,2003-08-13,3,Detroit Shock,TRUE,11,away +230813011,2003,2,2003-08-13,11,Phoenix Mercury,FALSE,3,home +230812014,2003,2,2003-08-12,17,San Antonio Silver Stars,TRUE,14,away +230812014,2003,2,2003-08-12,14,Seattle Storm,FALSE,17,home +230812005,2003,2,2003-08-12,16,Washington Mystics,TRUE,5,away +230812005,2003,2,2003-08-12,5,Indiana Fever,FALSE,16,home +230812018,2003,2,2003-08-12,9,New York Liberty,TRUE,18,away +230812018,2003,2,2003-08-12,18,Connecticut Sun,FALSE,9,home +230810004,2003,2,2003-08-10,11,Phoenix Mercury,FALSE,4,away +230810004,2003,2,2003-08-10,4,Houston Comets,TRUE,11,home +230810003,2003,2,2003-08-10,9,New York Liberty,FALSE,3,away +230810003,2003,2,2003-08-10,3,Detroit Shock,TRUE,9,home +230810002,2003,2,2003-08-10,5,Indiana Fever,FALSE,2,away +230810002,2003,2,2003-08-10,2,Cleveland Rockers,TRUE,5,home +230809013,2003,2,2003-08-09,8,Minnesota Lynx,TRUE,13,away +230809013,2003,2,2003-08-09,13,Sacramento Monarchs,FALSE,8,home +230809017,2003,2,2003-08-09,6,Los Angeles Sparks,FALSE,17,away +230809017,2003,2,2003-08-09,17,San Antonio Silver Stars,TRUE,6,home +230809005,2003,2,2003-08-09,2,Cleveland Rockers,TRUE,5,away +230809005,2003,2,2003-08-09,5,Indiana Fever,FALSE,2,home +230809001,2003,2,2003-08-09,18,Connecticut Sun,FALSE,1,away +230809001,2003,2,2003-08-09,1,Charlotte Sting,TRUE,18,home +230808011,2003,2,2003-08-08,6,Los Angeles Sparks,TRUE,11,away +230808011,2003,2,2003-08-08,11,Phoenix Mercury,FALSE,6,home +230808014,2003,2,2003-08-08,8,Minnesota Lynx,FALSE,14,away +230808014,2003,2,2003-08-08,14,Seattle Storm,TRUE,8,home +230808003,2003,2,2003-08-08,4,Houston Comets,TRUE,3,away +230808003,2003,2,2003-08-08,3,Detroit Shock,FALSE,4,home +230807005,2003,2,2003-08-07,4,Houston Comets,TRUE,5,away +230807005,2003,2,2003-08-07,5,Indiana Fever,FALSE,4,home +230807017,2003,2,2003-08-07,13,Sacramento Monarchs,TRUE,17,away +230807017,2003,2,2003-08-07,17,San Antonio Silver Stars,FALSE,13,home +230807001,2003,2,2003-08-07,9,New York Liberty,FALSE,1,away +230807001,2003,2,2003-08-07,1,Charlotte Sting,TRUE,9,home +230806011,2003,2,2003-08-06,8,Minnesota Lynx,FALSE,11,away +230806011,2003,2,2003-08-06,11,Phoenix Mercury,TRUE,8,home +230806014,2003,2,2003-08-06,6,Los Angeles Sparks,FALSE,14,away +230806014,2003,2,2003-08-06,14,Seattle Storm,TRUE,6,home +230805004,2003,2,2003-08-05,13,Sacramento Monarchs,FALSE,4,away +230805004,2003,2,2003-08-05,4,Houston Comets,TRUE,13,home +230805018,2003,2,2003-08-05,3,Detroit Shock,TRUE,18,away +230805018,2003,2,2003-08-05,18,Connecticut Sun,FALSE,3,home +230805009,2003,2,2003-08-05,17,San Antonio Silver Stars,FALSE,9,away +230805009,2003,2,2003-08-05,9,New York Liberty,TRUE,17,home +230804008,2003,2,2003-08-04,11,Phoenix Mercury,FALSE,8,away +230804008,2003,2,2003-08-04,8,Minnesota Lynx,TRUE,11,home +230803013,2003,2,2003-08-03,1,Charlotte Sting,FALSE,13,away +230803013,2003,2,2003-08-03,13,Sacramento Monarchs,TRUE,1,home +230802006,2003,2,2003-08-02,1,Charlotte Sting,TRUE,6,away +230802006,2003,2,2003-08-02,6,Los Angeles Sparks,FALSE,1,home +230802004,2003,2,2003-08-02,17,San Antonio Silver Stars,FALSE,4,away +230802004,2003,2,2003-08-02,4,Houston Comets,TRUE,17,home +230802008,2003,2,2003-08-02,14,Seattle Storm,FALSE,8,away +230802008,2003,2,2003-08-02,8,Minnesota Lynx,TRUE,14,home +230802003,2003,2,2003-08-02,5,Indiana Fever,FALSE,3,away +230802003,2003,2,2003-08-02,3,Detroit Shock,TRUE,5,home +230801017,2003,2,2003-08-01,4,Houston Comets,FALSE,17,away +230801017,2003,2,2003-08-01,17,San Antonio Silver Stars,TRUE,4,home +230801009,2003,2,2003-08-01,3,Detroit Shock,TRUE,9,away +230801009,2003,2,2003-08-01,9,New York Liberty,FALSE,3,home +230801002,2003,2,2003-08-01,11,Phoenix Mercury,FALSE,2,away +230801002,2003,2,2003-08-01,2,Cleveland Rockers,TRUE,11,home +230801018,2003,2,2003-08-01,16,Washington Mystics,TRUE,18,away +230801018,2003,2,2003-08-01,18,Connecticut Sun,FALSE,16,home +230731013,2003,2,2003-07-31,6,Los Angeles Sparks,FALSE,13,away +230731013,2003,2,2003-07-31,13,Sacramento Monarchs,TRUE,6,home +230731014,2003,2,2003-07-31,1,Charlotte Sting,FALSE,14,away +230731014,2003,2,2003-07-31,14,Seattle Storm,TRUE,1,home +230730006,2003,2,2003-07-30,17,San Antonio Silver Stars,TRUE,6,away +230730006,2003,2,2003-07-30,6,Los Angeles Sparks,FALSE,17,home +230729011,2003,2,2003-07-29,9,New York Liberty,FALSE,11,away +230729011,2003,2,2003-07-29,11,Phoenix Mercury,TRUE,9,home +230729004,2003,2,2003-07-29,8,Minnesota Lynx,FALSE,4,away +230729004,2003,2,2003-07-29,4,Houston Comets,TRUE,8,home +230729002,2003,2,2003-07-29,3,Detroit Shock,TRUE,2,away +230729002,2003,2,2003-07-29,2,Cleveland Rockers,FALSE,3,home +230729016,2003,2,2003-07-29,5,Indiana Fever,TRUE,16,away +230729016,2003,2,2003-07-29,16,Washington Mystics,FALSE,5,home +230727017,2003,2,2003-07-27,2,Cleveland Rockers,FALSE,17,away +230727017,2003,2,2003-07-27,17,San Antonio Silver Stars,TRUE,2,home +230727003,2003,2,2003-07-27,16,Washington Mystics,FALSE,3,away +230727003,2003,2,2003-07-27,3,Detroit Shock,TRUE,16,home +230726013,2003,2,2003-07-26,14,Seattle Storm,FALSE,13,away +230726013,2003,2,2003-07-26,13,Sacramento Monarchs,TRUE,14,home +230726005,2003,2,2003-07-26,8,Minnesota Lynx,TRUE,5,away +230726005,2003,2,2003-07-26,5,Indiana Fever,FALSE,8,home +230726018,2003,2,2003-07-26,1,Charlotte Sting,FALSE,18,away +230726018,2003,2,2003-07-26,18,Connecticut Sun,TRUE,1,home +230726004,2003,2,2003-07-26,9,New York Liberty,FALSE,4,away +230726004,2003,2,2003-07-26,4,Houston Comets,TRUE,9,home +230726002,2003,2,2003-07-26,16,Washington Mystics,FALSE,2,away +230726002,2003,2,2003-07-26,2,Cleveland Rockers,TRUE,16,home +230725014,2003,2,2003-07-25,11,Phoenix Mercury,FALSE,14,away +230725014,2003,2,2003-07-25,14,Seattle Storm,TRUE,11,home +230725008,2003,2,2003-07-25,17,San Antonio Silver Stars,FALSE,8,away +230725008,2003,2,2003-07-25,8,Minnesota Lynx,TRUE,17,home +230724013,2003,2,2003-07-24,9,New York Liberty,FALSE,13,away +230724013,2003,2,2003-07-24,13,Sacramento Monarchs,TRUE,9,home +230724016,2003,2,2003-07-24,5,Indiana Fever,TRUE,16,away +230724016,2003,2,2003-07-24,16,Washington Mystics,FALSE,5,home +230724001,2003,2,2003-07-24,3,Detroit Shock,FALSE,1,away +230724001,2003,2,2003-07-24,1,Charlotte Sting,TRUE,3,home +230723005,2003,2,2003-07-23,17,San Antonio Silver Stars,FALSE,5,away +230723005,2003,2,2003-07-23,5,Indiana Fever,TRUE,17,home +230723014,2003,2,2003-07-23,9,New York Liberty,FALSE,14,away +230723014,2003,2,2003-07-23,14,Seattle Storm,TRUE,9,home +230722003,2003,2,2003-07-22,2,Cleveland Rockers,FALSE,3,away +230722003,2003,2,2003-07-22,3,Detroit Shock,TRUE,2,home +230720006,2003,2,2003-07-20,18,Connecticut Sun,TRUE,6,away +230720006,2003,2,2003-07-20,6,Los Angeles Sparks,FALSE,18,home +230720001,2003,2,2003-07-20,2,Cleveland Rockers,TRUE,1,away +230720001,2003,2,2003-07-20,1,Charlotte Sting,FALSE,2,home +230720008,2003,2,2003-07-20,14,Seattle Storm,FALSE,8,away +230720008,2003,2,2003-07-20,8,Minnesota Lynx,TRUE,14,home +230719011,2003,2,2003-07-19,18,Connecticut Sun,TRUE,11,away +230719011,2003,2,2003-07-19,11,Phoenix Mercury,FALSE,18,home +230719013,2003,2,2003-07-19,4,Houston Comets,TRUE,13,away +230719013,2003,2,2003-07-19,13,Sacramento Monarchs,FALSE,4,home +230719017,2003,2,2003-07-19,16,Washington Mystics,TRUE,17,away +230719017,2003,2,2003-07-19,17,San Antonio Silver Stars,FALSE,16,home +230719002,2003,2,2003-07-19,3,Detroit Shock,TRUE,2,away +230719002,2003,2,2003-07-19,2,Cleveland Rockers,FALSE,3,home +230718006,2003,2,2003-07-18,4,Houston Comets,TRUE,6,away +230718006,2003,2,2003-07-18,6,Los Angeles Sparks,FALSE,4,home +230718003,2003,2,2003-07-18,14,Seattle Storm,FALSE,3,away +230718003,2003,2,2003-07-18,3,Detroit Shock,TRUE,14,home +230717017,2003,2,2003-07-17,13,Sacramento Monarchs,TRUE,17,away +230717017,2003,2,2003-07-17,17,San Antonio Silver Stars,FALSE,13,home +230717002,2003,2,2003-07-17,8,Minnesota Lynx,FALSE,2,away +230717002,2003,2,2003-07-17,2,Cleveland Rockers,TRUE,8,home +230716005,2003,2,2003-07-16,3,Detroit Shock,TRUE,5,away +230716005,2003,2,2003-07-16,5,Indiana Fever,FALSE,3,home +230716008,2003,2,2003-07-16,17,San Antonio Silver Stars,FALSE,8,away +230716008,2003,2,2003-07-16,8,Minnesota Lynx,TRUE,17,home +230715006,2003,2,2003-07-15,11,Phoenix Mercury,FALSE,6,away +230715006,2003,2,2003-07-15,6,Los Angeles Sparks,TRUE,11,home +230715014,2003,2,2003-07-15,4,Houston Comets,FALSE,14,away +230715014,2003,2,2003-07-15,14,Seattle Storm,TRUE,4,home +230715009,2003,2,2003-07-15,16,Washington Mystics,TRUE,9,away +230715009,2003,2,2003-07-15,9,New York Liberty,FALSE,16,home +230715002,2003,2,2003-07-15,13,Sacramento Monarchs,TRUE,2,away +230715002,2003,2,2003-07-15,2,Cleveland Rockers,FALSE,13,home +230712098,2003,2,2003-07-12,99,WEST,TRUE,98,away +230712098,2003,2,2003-07-12,98,EAST,FALSE,99,home +230710005,2003,2,2003-07-10,9,New York Liberty,FALSE,5,away +230710005,2003,2,2003-07-10,5,Indiana Fever,TRUE,9,home +230710008,2003,2,2003-07-10,18,Connecticut Sun,FALSE,8,away +230710008,2003,2,2003-07-10,8,Minnesota Lynx,TRUE,18,home +230710001,2003,2,2003-07-10,3,Detroit Shock,FALSE,1,away +230710001,2003,2,2003-07-10,1,Charlotte Sting,TRUE,3,home +230710011,2003,2,2003-07-10,2,Cleveland Rockers,TRUE,11,away +230710011,2003,2,2003-07-10,11,Phoenix Mercury,FALSE,2,home +230709016,2003,2,2003-07-09,6,Los Angeles Sparks,TRUE,16,away +230709016,2003,2,2003-07-09,16,Washington Mystics,FALSE,6,home +230708004,2003,2,2003-07-08,5,Indiana Fever,FALSE,4,away +230708004,2003,2,2003-07-08,4,Houston Comets,TRUE,5,home +230708008,2003,2,2003-07-08,13,Sacramento Monarchs,FALSE,8,away +230708008,2003,2,2003-07-08,8,Minnesota Lynx,TRUE,13,home +230708003,2003,2,2003-07-08,18,Connecticut Sun,FALSE,3,away +230708003,2003,2,2003-07-08,3,Detroit Shock,TRUE,18,home +230707006,2003,2,2003-07-07,2,Cleveland Rockers,FALSE,6,away +230707006,2003,2,2003-07-07,6,Los Angeles Sparks,TRUE,2,home +230707016,2003,2,2003-07-07,1,Charlotte Sting,TRUE,16,away +230707016,2003,2,2003-07-07,16,Washington Mystics,FALSE,1,home +230706005,2003,2,2003-07-06,3,Detroit Shock,FALSE,5,away +230706005,2003,2,2003-07-06,5,Indiana Fever,TRUE,3,home +230706018,2003,2,2003-07-06,9,New York Liberty,FALSE,18,away +230706018,2003,2,2003-07-06,18,Connecticut Sun,TRUE,9,home +230705006,2003,2,2003-07-05,14,Seattle Storm,FALSE,6,away +230705006,2003,2,2003-07-05,6,Los Angeles Sparks,TRUE,14,home +230705004,2003,2,2003-07-05,16,Washington Mystics,FALSE,4,away +230705004,2003,2,2003-07-05,4,Houston Comets,TRUE,16,home +230705017,2003,2,2003-07-05,11,Phoenix Mercury,FALSE,17,away +230705017,2003,2,2003-07-05,17,San Antonio Silver Stars,TRUE,11,home +230705008,2003,2,2003-07-05,2,Cleveland Rockers,TRUE,8,away +230705008,2003,2,2003-07-05,8,Minnesota Lynx,FALSE,2,home +230705001,2003,2,2003-07-05,13,Sacramento Monarchs,FALSE,1,away +230705001,2003,2,2003-07-05,1,Charlotte Sting,TRUE,13,home +230704018,2003,2,2003-07-04,13,Sacramento Monarchs,FALSE,18,away +230704018,2003,2,2003-07-04,18,Connecticut Sun,TRUE,13,home +230703014,2003,2,2003-07-03,16,Washington Mystics,FALSE,14,away +230703014,2003,2,2003-07-03,14,Seattle Storm,TRUE,16,home +230703003,2003,2,2003-07-03,1,Charlotte Sting,TRUE,3,away +230703003,2003,2,2003-07-03,3,Detroit Shock,FALSE,1,home +230702013,2003,2,2003-07-02,16,Washington Mystics,FALSE,13,away +230702013,2003,2,2003-07-02,13,Sacramento Monarchs,TRUE,16,home +230702005,2003,2,2003-07-02,11,Phoenix Mercury,FALSE,5,away +230702005,2003,2,2003-07-02,5,Indiana Fever,TRUE,11,home +230702018,2003,2,2003-07-02,2,Cleveland Rockers,FALSE,18,away +230702018,2003,2,2003-07-02,18,Connecticut Sun,TRUE,2,home +230701003,2003,2,2003-07-01,17,San Antonio Silver Stars,FALSE,3,away +230701003,2003,2,2003-07-01,3,Detroit Shock,TRUE,17,home +230701004,2003,2,2003-07-01,8,Minnesota Lynx,FALSE,4,away +230701004,2003,2,2003-07-01,4,Houston Comets,TRUE,8,home +230630001,2003,2,2003-06-30,14,Seattle Storm,TRUE,1,away +230630001,2003,2,2003-06-30,1,Charlotte Sting,FALSE,14,home +230629002,2003,2,2003-06-29,5,Indiana Fever,FALSE,2,away +230629002,2003,2,2003-06-29,2,Cleveland Rockers,TRUE,5,home +230629016,2003,2,2003-06-29,8,Minnesota Lynx,TRUE,16,away +230629016,2003,2,2003-06-29,16,Washington Mystics,FALSE,8,home +230628005,2003,2,2003-06-28,14,Seattle Storm,FALSE,5,away +230628005,2003,2,2003-06-28,5,Indiana Fever,TRUE,14,home +230628003,2003,2,2003-06-28,11,Phoenix Mercury,TRUE,3,away +230628003,2003,2,2003-06-28,3,Detroit Shock,FALSE,11,home +230628001,2003,2,2003-06-28,18,Connecticut Sun,FALSE,1,away +230628001,2003,2,2003-06-28,1,Charlotte Sting,TRUE,18,home +230628004,2003,2,2003-06-28,17,San Antonio Silver Stars,FALSE,4,away +230628004,2003,2,2003-06-28,4,Houston Comets,TRUE,17,home +230627008,2003,2,2003-06-27,11,Phoenix Mercury,FALSE,8,away +230627008,2003,2,2003-06-27,8,Minnesota Lynx,TRUE,11,home +230627009,2003,2,2003-06-27,3,Detroit Shock,TRUE,9,away +230627009,2003,2,2003-06-27,9,New York Liberty,FALSE,3,home +230627002,2003,2,2003-06-27,14,Seattle Storm,TRUE,2,away +230627002,2003,2,2003-06-27,2,Cleveland Rockers,FALSE,14,home +230626017,2003,2,2003-06-26,6,Los Angeles Sparks,TRUE,17,away +230626017,2003,2,2003-06-26,17,San Antonio Silver Stars,FALSE,6,home +230625001,2003,2,2003-06-25,2,Cleveland Rockers,FALSE,1,away +230625001,2003,2,2003-06-25,1,Charlotte Sting,TRUE,2,home +230624013,2003,2,2003-06-24,17,San Antonio Silver Stars,TRUE,13,away +230624013,2003,2,2003-06-24,13,Sacramento Monarchs,FALSE,17,home +230624004,2003,2,2003-06-24,6,Los Angeles Sparks,TRUE,4,away +230624004,2003,2,2003-06-24,4,Houston Comets,FALSE,6,home +230624003,2003,2,2003-06-24,5,Indiana Fever,FALSE,3,away +230624003,2003,2,2003-06-24,3,Detroit Shock,TRUE,5,home +230622014,2003,2,2003-06-22,17,San Antonio Silver Stars,FALSE,14,away +230622014,2003,2,2003-06-22,14,Seattle Storm,TRUE,17,home +230622009,2003,2,2003-06-22,1,Charlotte Sting,FALSE,9,away +230622009,2003,2,2003-06-22,9,New York Liberty,TRUE,1,home +230622018,2003,2,2003-06-22,3,Detroit Shock,TRUE,18,away +230622018,2003,2,2003-06-22,18,Connecticut Sun,FALSE,3,home +230621011,2003,2,2003-06-21,6,Los Angeles Sparks,TRUE,11,away +230621011,2003,2,2003-06-21,11,Phoenix Mercury,FALSE,6,home +230621013,2003,2,2003-06-21,14,Seattle Storm,FALSE,13,away +230621013,2003,2,2003-06-21,13,Sacramento Monarchs,TRUE,14,home +230621004,2003,2,2003-06-21,2,Cleveland Rockers,FALSE,4,away +230621004,2003,2,2003-06-21,4,Houston Comets,TRUE,2,home +230621008,2003,2,2003-06-21,5,Indiana Fever,FALSE,8,away +230621008,2003,2,2003-06-21,8,Minnesota Lynx,TRUE,5,home +230620017,2003,2,2003-06-20,4,Houston Comets,FALSE,17,away +230620017,2003,2,2003-06-20,17,San Antonio Silver Stars,TRUE,4,home +230620005,2003,2,2003-06-20,18,Connecticut Sun,FALSE,5,away +230620005,2003,2,2003-06-20,5,Indiana Fever,TRUE,18,home +230620003,2003,2,2003-06-20,9,New York Liberty,FALSE,3,away +230620003,2003,2,2003-06-20,3,Detroit Shock,TRUE,9,home +230620001,2003,2,2003-06-20,8,Minnesota Lynx,FALSE,1,away +230620001,2003,2,2003-06-20,1,Charlotte Sting,TRUE,8,home +230620002,2003,2,2003-06-20,16,Washington Mystics,FALSE,2,away +230620002,2003,2,2003-06-20,2,Cleveland Rockers,TRUE,16,home +230619006,2003,2,2003-06-19,14,Seattle Storm,TRUE,6,away +230619006,2003,2,2003-06-19,6,Los Angeles Sparks,FALSE,14,home +230618016,2003,2,2003-06-18,13,Sacramento Monarchs,TRUE,16,away +230618016,2003,2,2003-06-18,16,Washington Mystics,FALSE,13,home +230618018,2003,2,2003-06-18,2,Cleveland Rockers,FALSE,18,away +230618018,2003,2,2003-06-18,18,Connecticut Sun,TRUE,2,home +230617005,2003,2,2003-06-17,1,Charlotte Sting,FALSE,5,away +230617005,2003,2,2003-06-17,5,Indiana Fever,TRUE,1,home +230617008,2003,2,2003-06-17,4,Houston Comets,TRUE,8,away +230617008,2003,2,2003-06-17,8,Minnesota Lynx,FALSE,4,home +230617003,2003,2,2003-06-17,6,Los Angeles Sparks,FALSE,3,away +230617003,2003,2,2003-06-17,3,Detroit Shock,TRUE,6,home +230617011,2003,2,2003-06-17,14,Seattle Storm,TRUE,11,away +230617011,2003,2,2003-06-17,11,Phoenix Mercury,FALSE,14,home +230614011,2003,2,2003-06-14,4,Houston Comets,FALSE,11,away +230614011,2003,2,2003-06-14,11,Phoenix Mercury,TRUE,4,home +230614013,2003,2,2003-06-14,5,Indiana Fever,TRUE,13,away +230614013,2003,2,2003-06-14,13,Sacramento Monarchs,FALSE,5,home +230614014,2003,2,2003-06-14,8,Minnesota Lynx,TRUE,14,away +230614014,2003,2,2003-06-14,14,Seattle Storm,FALSE,8,home +230614017,2003,2,2003-06-14,1,Charlotte Sting,FALSE,17,away +230614017,2003,2,2003-06-14,17,San Antonio Silver Stars,TRUE,1,home +230614002,2003,2,2003-06-14,18,Connecticut Sun,FALSE,2,away +230614002,2003,2,2003-06-14,2,Cleveland Rockers,TRUE,18,home +230614009,2003,2,2003-06-14,6,Los Angeles Sparks,TRUE,9,away +230614009,2003,2,2003-06-14,9,New York Liberty,FALSE,6,home +230613018,2003,2,2003-06-13,16,Washington Mystics,FALSE,18,away +230613018,2003,2,2003-06-13,18,Connecticut Sun,TRUE,16,home +230612006,2003,2,2003-06-12,5,Indiana Fever,FALSE,6,away +230612006,2003,2,2003-06-12,6,Los Angeles Sparks,TRUE,5,home +230612013,2003,2,2003-06-12,8,Minnesota Lynx,FALSE,13,away +230612013,2003,2,2003-06-12,13,Sacramento Monarchs,TRUE,8,home +230610014,2003,2,2003-06-10,5,Indiana Fever,FALSE,14,away +230610014,2003,2,2003-06-10,14,Seattle Storm,TRUE,5,home +230610004,2003,2,2003-06-10,13,Sacramento Monarchs,FALSE,4,away +230610004,2003,2,2003-06-10,4,Houston Comets,TRUE,13,home +230607013,2003,2,2003-06-07,6,Los Angeles Sparks,TRUE,13,away +230607013,2003,2,2003-06-07,13,Sacramento Monarchs,FALSE,6,home +230607014,2003,2,2003-06-07,11,Phoenix Mercury,FALSE,14,away +230607014,2003,2,2003-06-07,14,Seattle Storm,TRUE,11,home +230607017,2003,2,2003-06-07,3,Detroit Shock,TRUE,17,away +230607017,2003,2,2003-06-07,17,San Antonio Silver Stars,FALSE,3,home +230607005,2003,2,2003-06-07,9,New York Liberty,FALSE,5,away +230607005,2003,2,2003-06-07,5,Indiana Fever,TRUE,9,home +230607002,2003,2,2003-06-07,1,Charlotte Sting,FALSE,2,away +230607002,2003,2,2003-06-07,2,Cleveland Rockers,TRUE,1,home +230607018,2003,2,2003-06-07,4,Houston Comets,FALSE,18,away +230607018,2003,2,2003-06-07,18,Connecticut Sun,TRUE,4,home +230606008,2003,2,2003-06-06,9,New York Liberty,TRUE,8,away +230606008,2003,2,2003-06-06,8,Minnesota Lynx,FALSE,9,home +230606001,2003,2,2003-06-06,4,Houston Comets,FALSE,1,away +230606001,2003,2,2003-06-06,1,Charlotte Sting,TRUE,4,home +230606016,2003,2,2003-06-06,2,Cleveland Rockers,TRUE,16,away +230606016,2003,2,2003-06-06,16,Washington Mystics,FALSE,2,home +230605006,2003,2,2003-06-05,13,Sacramento Monarchs,FALSE,6,away +230605006,2003,2,2003-06-05,6,Los Angeles Sparks,TRUE,13,home +230605017,2003,2,2003-06-05,11,Phoenix Mercury,FALSE,17,away +230605017,2003,2,2003-06-05,17,San Antonio Silver Stars,TRUE,11,home +230605003,2003,2,2003-06-05,18,Connecticut Sun,FALSE,3,away +230605003,2003,2,2003-06-05,3,Detroit Shock,TRUE,18,home +230604001,2003,2,2003-06-04,17,San Antonio Silver Stars,FALSE,1,away +230604001,2003,2,2003-06-04,1,Charlotte Sting,TRUE,17,home +230603014,2003,2,2003-06-03,13,Sacramento Monarchs,FALSE,14,away +230603014,2003,2,2003-06-03,14,Seattle Storm,TRUE,13,home +241012014,2004,3,2004-10-12,18,Connecticut Sun,FALSE,14,away +241012014,2004,3,2004-10-12,14,Seattle Storm,TRUE,18,home +241010014,2004,3,2004-10-10,18,Connecticut Sun,FALSE,14,away +241010014,2004,3,2004-10-10,14,Seattle Storm,TRUE,18,home +241008018,2004,3,2004-10-08,14,Seattle Storm,FALSE,18,away +241008018,2004,3,2004-10-08,18,Connecticut Sun,TRUE,14,home +241005014,2004,3,2004-10-05,13,Sacramento Monarchs,FALSE,14,away +241005014,2004,3,2004-10-05,14,Seattle Storm,TRUE,13,home +241003014,2004,3,2004-10-03,13,Sacramento Monarchs,FALSE,14,away +241003014,2004,3,2004-10-03,14,Seattle Storm,TRUE,13,home +241003018,2004,3,2004-10-03,9,New York Liberty,FALSE,18,away +241003018,2004,3,2004-10-03,18,Connecticut Sun,TRUE,9,home +241001013,2004,3,2004-10-01,14,Seattle Storm,FALSE,13,away +241001013,2004,3,2004-10-01,13,Sacramento Monarchs,TRUE,14,home +240929018,2004,3,2004-09-29,16,Washington Mystics,FALSE,18,away +240929018,2004,3,2004-09-29,18,Connecticut Sun,TRUE,16,home +240928006,2004,3,2004-09-28,13,Sacramento Monarchs,TRUE,6,away +240928006,2004,3,2004-09-28,6,Los Angeles Sparks,FALSE,13,home +240927014,2004,3,2004-09-27,8,Minnesota Lynx,FALSE,14,away +240927014,2004,3,2004-09-27,14,Seattle Storm,TRUE,8,home +240927018,2004,3,2004-09-27,16,Washington Mystics,FALSE,18,away +240927018,2004,3,2004-09-27,18,Connecticut Sun,TRUE,16,home +240926006,2004,3,2004-09-26,13,Sacramento Monarchs,FALSE,6,away +240926006,2004,3,2004-09-26,6,Los Angeles Sparks,TRUE,13,home +240926009,2004,3,2004-09-26,3,Detroit Shock,TRUE,9,away +240926009,2004,3,2004-09-26,9,New York Liberty,FALSE,3,home +240925008,2004,3,2004-09-25,14,Seattle Storm,TRUE,8,away +240925008,2004,3,2004-09-25,8,Minnesota Lynx,FALSE,14,home +240925016,2004,3,2004-09-25,18,Connecticut Sun,FALSE,16,away +240925016,2004,3,2004-09-25,16,Washington Mystics,TRUE,18,home +240924013,2004,3,2004-09-24,6,Los Angeles Sparks,FALSE,13,away +240924013,2004,3,2004-09-24,13,Sacramento Monarchs,TRUE,6,home +240924003,2004,3,2004-09-24,9,New York Liberty,TRUE,3,away +240924003,2004,3,2004-09-24,3,Detroit Shock,FALSE,9,home +240919013,2004,2,2004-09-19,8,Minnesota Lynx,FALSE,13,away +240919013,2004,2,2004-09-19,13,Sacramento Monarchs,TRUE,8,home +240919011,2004,2,2004-09-19,4,Houston Comets,FALSE,11,away +240919011,2004,2,2004-09-19,11,Phoenix Mercury,TRUE,4,home +240919003,2004,2,2004-09-19,1,Charlotte Sting,FALSE,3,away +240919003,2004,2,2004-09-19,3,Detroit Shock,TRUE,1,home +240919018,2004,2,2004-09-19,5,Indiana Fever,FALSE,18,away +240919018,2004,2,2004-09-19,18,Connecticut Sun,TRUE,5,home +240918013,2004,2,2004-09-18,4,Houston Comets,FALSE,13,away +240918013,2004,2,2004-09-18,13,Sacramento Monarchs,TRUE,4,home +240918014,2004,2,2004-09-18,6,Los Angeles Sparks,TRUE,14,away +240918014,2004,2,2004-09-18,14,Seattle Storm,FALSE,6,home +240917006,2004,2,2004-09-17,8,Minnesota Lynx,TRUE,6,away +240917006,2004,2,2004-09-17,6,Los Angeles Sparks,FALSE,8,home +240917011,2004,2,2004-09-17,16,Washington Mystics,TRUE,11,away +240917011,2004,2,2004-09-17,11,Phoenix Mercury,FALSE,16,home +240917017,2004,2,2004-09-17,1,Charlotte Sting,FALSE,17,away +240917017,2004,2,2004-09-17,17,San Antonio Silver Stars,TRUE,1,home +240917018,2004,2,2004-09-17,9,New York Liberty,TRUE,18,away +240917018,2004,2,2004-09-17,18,Connecticut Sun,FALSE,9,home +240916004,2004,2,2004-09-16,13,Sacramento Monarchs,TRUE,4,away +240916004,2004,2,2004-09-16,4,Houston Comets,FALSE,13,home +240915014,2004,2,2004-09-15,11,Phoenix Mercury,FALSE,14,away +240915014,2004,2,2004-09-15,14,Seattle Storm,TRUE,11,home +240915017,2004,2,2004-09-15,16,Washington Mystics,TRUE,17,away +240915017,2004,2,2004-09-15,17,San Antonio Silver Stars,FALSE,16,home +240915001,2004,2,2004-09-15,18,Connecticut Sun,TRUE,1,away +240915001,2004,2,2004-09-15,1,Charlotte Sting,FALSE,18,home +240914006,2004,2,2004-09-14,11,Phoenix Mercury,FALSE,6,away +240914006,2004,2,2004-09-14,6,Los Angeles Sparks,TRUE,11,home +240914004,2004,2,2004-09-14,8,Minnesota Lynx,FALSE,4,away +240914004,2004,2,2004-09-14,4,Houston Comets,TRUE,8,home +240914003,2004,2,2004-09-14,9,New York Liberty,FALSE,3,away +240914003,2004,2,2004-09-14,3,Detroit Shock,TRUE,9,home +240913005,2004,2,2004-09-13,14,Seattle Storm,TRUE,5,away +240913005,2004,2,2004-09-13,5,Indiana Fever,FALSE,14,home +240912006,2004,2,2004-09-12,13,Sacramento Monarchs,FALSE,6,away +240912006,2004,2,2004-09-12,6,Los Angeles Sparks,TRUE,13,home +240912009,2004,2,2004-09-12,17,San Antonio Silver Stars,FALSE,9,away +240912009,2004,2,2004-09-12,9,New York Liberty,TRUE,17,home +240912018,2004,2,2004-09-12,14,Seattle Storm,FALSE,18,away +240912018,2004,2,2004-09-12,18,Connecticut Sun,TRUE,14,home +240912016,2004,2,2004-09-12,4,Houston Comets,FALSE,16,away +240912016,2004,2,2004-09-12,16,Washington Mystics,TRUE,4,home +240911011,2004,2,2004-09-11,3,Detroit Shock,TRUE,11,away +240911011,2004,2,2004-09-11,11,Phoenix Mercury,FALSE,3,home +240911001,2004,2,2004-09-11,8,Minnesota Lynx,FALSE,1,away +240911001,2004,2,2004-09-11,1,Charlotte Sting,TRUE,8,home +240910005,2004,2,2004-09-10,17,San Antonio Silver Stars,TRUE,5,away +240910005,2004,2,2004-09-10,5,Indiana Fever,FALSE,17,home +240909006,2004,2,2004-09-09,3,Detroit Shock,FALSE,6,away +240909006,2004,2,2004-09-09,6,Los Angeles Sparks,TRUE,3,home +240909017,2004,2,2004-09-09,4,Houston Comets,FALSE,17,away +240909017,2004,2,2004-09-09,17,San Antonio Silver Stars,TRUE,4,home +240909001,2004,2,2004-09-09,13,Sacramento Monarchs,FALSE,1,away +240909001,2004,2,2004-09-09,1,Charlotte Sting,TRUE,13,home +240909016,2004,2,2004-09-09,9,New York Liberty,FALSE,16,away +240909016,2004,2,2004-09-09,16,Washington Mystics,TRUE,9,home +240908011,2004,2,2004-09-08,6,Los Angeles Sparks,FALSE,11,away +240908011,2004,2,2004-09-08,11,Phoenix Mercury,TRUE,6,home +240908014,2004,2,2004-09-08,3,Detroit Shock,FALSE,14,away +240908014,2004,2,2004-09-08,14,Seattle Storm,TRUE,3,home +240908008,2004,2,2004-09-08,1,Charlotte Sting,TRUE,8,away +240908008,2004,2,2004-09-08,8,Minnesota Lynx,FALSE,1,home +240907016,2004,2,2004-09-07,13,Sacramento Monarchs,FALSE,16,away +240907016,2004,2,2004-09-07,16,Washington Mystics,TRUE,13,home +240904011,2004,2,2004-09-04,14,Seattle Storm,FALSE,11,away +240904011,2004,2,2004-09-04,11,Phoenix Mercury,TRUE,14,home +240904005,2004,2,2004-09-04,16,Washington Mystics,FALSE,5,away +240904005,2004,2,2004-09-04,5,Indiana Fever,TRUE,16,home +240904017,2004,2,2004-09-04,13,Sacramento Monarchs,TRUE,17,away +240904017,2004,2,2004-09-04,17,San Antonio Silver Stars,FALSE,13,home +240904001,2004,2,2004-09-04,3,Detroit Shock,TRUE,1,away +240904001,2004,2,2004-09-04,1,Charlotte Sting,FALSE,3,home +240903006,2004,2,2004-09-03,14,Seattle Storm,FALSE,6,away +240903006,2004,2,2004-09-03,6,Los Angeles Sparks,TRUE,14,home +240903004,2004,2,2004-09-03,11,Phoenix Mercury,TRUE,4,away +240903004,2004,2,2004-09-03,4,Houston Comets,FALSE,11,home +240903008,2004,2,2004-09-03,5,Indiana Fever,TRUE,8,away +240903008,2004,2,2004-09-03,8,Minnesota Lynx,FALSE,5,home +240903018,2004,2,2004-09-03,9,New York Liberty,FALSE,18,away +240903018,2004,2,2004-09-03,18,Connecticut Sun,TRUE,9,home +240902013,2004,2,2004-09-02,17,San Antonio Silver Stars,FALSE,13,away +240902013,2004,2,2004-09-02,13,Sacramento Monarchs,TRUE,17,home +240901004,2004,2,2004-09-01,8,Minnesota Lynx,TRUE,4,away +240901004,2004,2,2004-09-01,4,Houston Comets,FALSE,8,home +240901001,2004,2,2004-09-01,18,Connecticut Sun,FALSE,1,away +240901001,2004,2,2004-09-01,1,Charlotte Sting,TRUE,18,home +240901016,2004,2,2004-09-01,5,Indiana Fever,TRUE,16,away +240901016,2004,2,2004-09-01,16,Washington Mystics,FALSE,5,home +240801014,2004,2,2004-08-01,1,Charlotte Sting,FALSE,14,away +240801014,2004,2,2004-08-01,14,Seattle Storm,TRUE,1,home +240801003,2004,2,2004-08-01,8,Minnesota Lynx,TRUE,3,away +240801003,2004,2,2004-08-01,3,Detroit Shock,FALSE,8,home +240801016,2004,2,2004-08-01,11,Phoenix Mercury,FALSE,16,away +240801016,2004,2,2004-08-01,16,Washington Mystics,TRUE,11,home +240731013,2004,2,2004-07-31,1,Charlotte Sting,FALSE,13,away +240731013,2004,2,2004-07-31,13,Sacramento Monarchs,TRUE,1,home +240731017,2004,2,2004-07-31,6,Los Angeles Sparks,TRUE,17,away +240731017,2004,2,2004-07-31,17,San Antonio Silver Stars,FALSE,6,home +240731009,2004,2,2004-07-31,18,Connecticut Sun,FALSE,9,away +240731009,2004,2,2004-07-31,9,New York Liberty,TRUE,18,home +240731004,2004,2,2004-07-31,5,Indiana Fever,FALSE,4,away +240731004,2004,2,2004-07-31,4,Houston Comets,TRUE,5,home +240730008,2004,2,2004-07-30,14,Seattle Storm,TRUE,8,away +240730008,2004,2,2004-07-30,8,Minnesota Lynx,FALSE,14,home +240730017,2004,2,2004-07-30,11,Phoenix Mercury,TRUE,17,away +240730017,2004,2,2004-07-30,17,San Antonio Silver Stars,FALSE,11,home +240730003,2004,2,2004-07-30,9,New York Liberty,FALSE,3,away +240730003,2004,2,2004-07-30,3,Detroit Shock,TRUE,9,home +240730016,2004,2,2004-07-30,18,Connecticut Sun,FALSE,16,away +240730016,2004,2,2004-07-30,16,Washington Mystics,TRUE,18,home +240729013,2004,2,2004-07-29,6,Los Angeles Sparks,TRUE,13,away +240729013,2004,2,2004-07-29,13,Sacramento Monarchs,FALSE,6,home +240728005,2004,2,2004-07-28,1,Charlotte Sting,TRUE,5,away +240728005,2004,2,2004-07-28,5,Indiana Fever,FALSE,1,home +240728008,2004,2,2004-07-28,17,San Antonio Silver Stars,FALSE,8,away +240728008,2004,2,2004-07-28,8,Minnesota Lynx,TRUE,17,home +240728016,2004,2,2004-07-28,3,Detroit Shock,TRUE,16,away +240728016,2004,2,2004-07-28,16,Washington Mystics,FALSE,3,home +240727004,2004,2,2004-07-27,14,Seattle Storm,FALSE,4,away +240727004,2004,2,2004-07-27,4,Houston Comets,TRUE,14,home +240725013,2004,2,2004-07-25,5,Indiana Fever,FALSE,13,away +240725013,2004,2,2004-07-25,13,Sacramento Monarchs,TRUE,5,home +240724011,2004,2,2004-07-24,5,Indiana Fever,FALSE,11,away +240724011,2004,2,2004-07-24,11,Phoenix Mercury,TRUE,5,home +240724014,2004,2,2004-07-24,4,Houston Comets,FALSE,14,away +240724014,2004,2,2004-07-24,14,Seattle Storm,TRUE,4,home +240724001,2004,2,2004-07-24,16,Washington Mystics,FALSE,1,away +240724001,2004,2,2004-07-24,1,Charlotte Sting,TRUE,16,home +240724018,2004,2,2004-07-24,17,San Antonio Silver Stars,FALSE,18,away +240724018,2004,2,2004-07-24,18,Connecticut Sun,TRUE,17,home +240723006,2004,2,2004-07-23,4,Houston Comets,FALSE,6,away +240723006,2004,2,2004-07-23,6,Los Angeles Sparks,TRUE,4,home +240723003,2004,2,2004-07-23,1,Charlotte Sting,FALSE,3,away +240723003,2004,2,2004-07-23,3,Detroit Shock,TRUE,1,home +240723016,2004,2,2004-07-23,8,Minnesota Lynx,FALSE,16,away +240723016,2004,2,2004-07-23,16,Washington Mystics,TRUE,8,home +240722013,2004,2,2004-07-22,11,Phoenix Mercury,TRUE,13,away +240722013,2004,2,2004-07-22,13,Sacramento Monarchs,FALSE,11,home +240722018,2004,2,2004-07-22,8,Minnesota Lynx,TRUE,18,away +240722018,2004,2,2004-07-22,18,Connecticut Sun,FALSE,8,home +240722014,2004,2,2004-07-22,5,Indiana Fever,FALSE,14,away +240722014,2004,2,2004-07-22,14,Seattle Storm,TRUE,5,home +240721006,2004,2,2004-07-21,16,Washington Mystics,FALSE,6,away +240721006,2004,2,2004-07-21,6,Los Angeles Sparks,TRUE,16,home +240721011,2004,2,2004-07-21,17,San Antonio Silver Stars,FALSE,11,away +240721011,2004,2,2004-07-21,11,Phoenix Mercury,TRUE,17,home +240720001,2004,2,2004-07-20,9,New York Liberty,TRUE,1,away +240720001,2004,2,2004-07-20,1,Charlotte Sting,FALSE,9,home +240719006,2004,2,2004-07-19,5,Indiana Fever,FALSE,6,away +240719006,2004,2,2004-07-19,6,Los Angeles Sparks,TRUE,5,home +240718013,2004,2,2004-07-18,16,Washington Mystics,FALSE,13,away +240718013,2004,2,2004-07-18,13,Sacramento Monarchs,TRUE,16,home +240718011,2004,2,2004-07-18,8,Minnesota Lynx,TRUE,11,away +240718011,2004,2,2004-07-18,11,Phoenix Mercury,FALSE,8,home +240718009,2004,2,2004-07-18,1,Charlotte Sting,FALSE,9,away +240718009,2004,2,2004-07-18,9,New York Liberty,TRUE,1,home +240718003,2004,2,2004-07-18,17,San Antonio Silver Stars,FALSE,3,away +240718003,2004,2,2004-07-18,3,Detroit Shock,TRUE,17,home +240717014,2004,2,2004-07-17,16,Washington Mystics,FALSE,14,away +240717014,2004,2,2004-07-17,14,Seattle Storm,TRUE,16,home +240717004,2004,2,2004-07-17,18,Connecticut Sun,FALSE,4,away +240717004,2004,2,2004-07-17,4,Houston Comets,TRUE,18,home +240715004,2004,2,2004-07-15,3,Detroit Shock,FALSE,4,away +240715004,2004,2,2004-07-15,4,Houston Comets,TRUE,3,home +240715017,2004,2,2004-07-15,18,Connecticut Sun,FALSE,17,away +240715017,2004,2,2004-07-15,17,San Antonio Silver Stars,TRUE,18,home +240715009,2004,2,2004-07-15,8,Minnesota Lynx,TRUE,9,away +240715009,2004,2,2004-07-15,9,New York Liberty,FALSE,8,home +240715013,2004,2,2004-07-15,14,Seattle Storm,TRUE,13,away +240715013,2004,2,2004-07-15,13,Sacramento Monarchs,FALSE,14,home +240715016,2004,2,2004-07-15,1,Charlotte Sting,FALSE,16,away +240715016,2004,2,2004-07-15,16,Washington Mystics,TRUE,1,home +240714005,2004,2,2004-07-14,4,Houston Comets,FALSE,5,away +240714005,2004,2,2004-07-14,5,Indiana Fever,TRUE,4,home +240714008,2004,2,2004-07-14,18,Connecticut Sun,FALSE,8,away +240714008,2004,2,2004-07-14,8,Minnesota Lynx,TRUE,18,home +240712014,2004,2,2004-07-12,17,San Antonio Silver Stars,FALSE,14,away +240712014,2004,2,2004-07-12,14,Seattle Storm,TRUE,17,home +240712003,2004,2,2004-07-12,13,Sacramento Monarchs,TRUE,3,away +240712003,2004,2,2004-07-12,3,Detroit Shock,FALSE,13,home +240711008,2004,2,2004-07-11,13,Sacramento Monarchs,FALSE,8,away +240711008,2004,2,2004-07-11,8,Minnesota Lynx,TRUE,13,home +240711005,2004,2,2004-07-11,18,Connecticut Sun,TRUE,5,away +240711005,2004,2,2004-07-11,5,Indiana Fever,FALSE,18,home +240711009,2004,2,2004-07-11,11,Phoenix Mercury,FALSE,9,away +240711009,2004,2,2004-07-11,9,New York Liberty,TRUE,11,home +240710004,2004,2,2004-07-10,6,Los Angeles Sparks,TRUE,4,away +240710004,2004,2,2004-07-10,4,Houston Comets,FALSE,6,home +240710001,2004,2,2004-07-10,16,Washington Mystics,FALSE,1,away +240710001,2004,2,2004-07-10,1,Charlotte Sting,TRUE,16,home +240710003,2004,2,2004-07-10,14,Seattle Storm,FALSE,3,away +240710003,2004,2,2004-07-10,3,Detroit Shock,TRUE,14,home +240709008,2004,2,2004-07-09,11,Phoenix Mercury,FALSE,8,away +240709008,2004,2,2004-07-09,8,Minnesota Lynx,TRUE,11,home +240709017,2004,2,2004-07-09,6,Los Angeles Sparks,TRUE,17,away +240709017,2004,2,2004-07-09,17,San Antonio Silver Stars,FALSE,6,home +240709018,2004,2,2004-07-09,13,Sacramento Monarchs,TRUE,18,away +240709018,2004,2,2004-07-09,18,Connecticut Sun,FALSE,13,home +240708005,2004,2,2004-07-08,8,Minnesota Lynx,FALSE,5,away +240708005,2004,2,2004-07-08,5,Indiana Fever,TRUE,8,home +240708001,2004,2,2004-07-08,14,Seattle Storm,FALSE,1,away +240708001,2004,2,2004-07-08,1,Charlotte Sting,TRUE,14,home +240707006,2004,2,2004-07-07,11,Phoenix Mercury,FALSE,6,away +240707006,2004,2,2004-07-07,6,Los Angeles Sparks,TRUE,11,home +240707016,2004,2,2004-07-07,14,Seattle Storm,FALSE,16,away +240707016,2004,2,2004-07-07,16,Washington Mystics,TRUE,14,home +240706003,2004,2,2004-07-06,4,Houston Comets,FALSE,3,away +240706003,2004,2,2004-07-06,3,Detroit Shock,TRUE,4,home +240706009,2004,2,2004-07-06,13,Sacramento Monarchs,FALSE,9,away +240706009,2004,2,2004-07-06,9,New York Liberty,TRUE,13,home +240706018,2004,2,2004-07-06,5,Indiana Fever,FALSE,18,away +240706018,2004,2,2004-07-06,18,Connecticut Sun,TRUE,5,home +240703014,2004,2,2004-07-03,13,Sacramento Monarchs,FALSE,14,away +240703014,2004,2,2004-07-03,14,Seattle Storm,TRUE,13,home +240703004,2004,2,2004-07-03,1,Charlotte Sting,TRUE,4,away +240703004,2004,2,2004-07-03,4,Houston Comets,FALSE,1,home +240703005,2004,2,2004-07-03,11,Phoenix Mercury,FALSE,5,away +240703005,2004,2,2004-07-03,5,Indiana Fever,TRUE,11,home +240703008,2004,2,2004-07-03,3,Detroit Shock,FALSE,8,away +240703008,2004,2,2004-07-03,8,Minnesota Lynx,TRUE,3,home +240702006,2004,2,2004-07-02,17,San Antonio Silver Stars,FALSE,6,away +240702006,2004,2,2004-07-02,6,Los Angeles Sparks,TRUE,17,home +240701013,2004,2,2004-07-01,9,New York Liberty,FALSE,13,away +240701013,2004,2,2004-07-01,13,Sacramento Monarchs,TRUE,9,home +240701014,2004,2,2004-07-01,17,San Antonio Silver Stars,FALSE,14,away +240701014,2004,2,2004-07-01,14,Seattle Storm,TRUE,17,home +240701016,2004,2,2004-07-01,5,Indiana Fever,FALSE,16,away +240701016,2004,2,2004-07-01,16,Washington Mystics,TRUE,5,home +240701001,2004,2,2004-07-01,11,Phoenix Mercury,TRUE,1,away +240701001,2004,2,2004-07-01,1,Charlotte Sting,FALSE,11,home +240630008,2004,2,2004-06-30,4,Houston Comets,FALSE,8,away +240630008,2004,2,2004-06-30,8,Minnesota Lynx,TRUE,4,home +240630018,2004,2,2004-06-30,16,Washington Mystics,FALSE,18,away +240630018,2004,2,2004-06-30,18,Connecticut Sun,TRUE,16,home +240629006,2004,2,2004-06-29,9,New York Liberty,FALSE,6,away +240629006,2004,2,2004-06-29,6,Los Angeles Sparks,TRUE,9,home +240629003,2004,2,2004-06-29,5,Indiana Fever,TRUE,3,away +240629003,2004,2,2004-06-29,3,Detroit Shock,FALSE,5,home +240627013,2004,2,2004-06-27,11,Phoenix Mercury,FALSE,13,away +240627013,2004,2,2004-06-27,13,Sacramento Monarchs,TRUE,11,home +240627003,2004,2,2004-06-27,18,Connecticut Sun,TRUE,3,away +240627003,2004,2,2004-06-27,3,Detroit Shock,FALSE,18,home +240627008,2004,2,2004-06-27,6,Los Angeles Sparks,TRUE,8,away +240627008,2004,2,2004-06-27,8,Minnesota Lynx,FALSE,6,home +240627004,2004,2,2004-06-27,16,Washington Mystics,FALSE,4,away +240627004,2004,2,2004-06-27,4,Houston Comets,TRUE,16,home +240626011,2004,2,2004-06-26,17,San Antonio Silver Stars,TRUE,11,away +240626011,2004,2,2004-06-26,11,Phoenix Mercury,FALSE,17,home +240626001,2004,2,2004-06-26,5,Indiana Fever,FALSE,1,away +240626001,2004,2,2004-06-26,1,Charlotte Sting,TRUE,5,home +240625013,2004,2,2004-06-25,4,Houston Comets,FALSE,13,away +240625013,2004,2,2004-06-25,13,Sacramento Monarchs,TRUE,4,home +240625005,2004,2,2004-06-25,6,Los Angeles Sparks,FALSE,5,away +240625005,2004,2,2004-06-25,5,Indiana Fever,TRUE,6,home +240625018,2004,2,2004-06-25,3,Detroit Shock,FALSE,18,away +240625018,2004,2,2004-06-25,18,Connecticut Sun,TRUE,3,home +240624011,2004,2,2004-06-24,9,New York Liberty,FALSE,11,away +240624011,2004,2,2004-06-24,11,Phoenix Mercury,TRUE,9,home +240624017,2004,2,2004-06-24,8,Minnesota Lynx,FALSE,17,away +240624017,2004,2,2004-06-24,17,San Antonio Silver Stars,TRUE,8,home +240623001,2004,2,2004-06-23,3,Detroit Shock,TRUE,1,away +240623001,2004,2,2004-06-23,1,Charlotte Sting,FALSE,3,home +240622011,2004,2,2004-06-22,8,Minnesota Lynx,FALSE,11,away +240622011,2004,2,2004-06-22,11,Phoenix Mercury,TRUE,8,home +240622014,2004,2,2004-06-22,4,Houston Comets,TRUE,14,away +240622014,2004,2,2004-06-22,14,Seattle Storm,FALSE,4,home +240622005,2004,2,2004-06-22,18,Connecticut Sun,TRUE,5,away +240622005,2004,2,2004-06-22,5,Indiana Fever,FALSE,18,home +240622003,2004,2,2004-06-22,16,Washington Mystics,TRUE,3,away +240622003,2004,2,2004-06-22,3,Detroit Shock,FALSE,16,home +240620001,2004,2,2004-06-20,6,Los Angeles Sparks,FALSE,1,away +240620001,2004,2,2004-06-20,1,Charlotte Sting,TRUE,6,home +240620018,2004,2,2004-06-20,16,Washington Mystics,FALSE,18,away +240620018,2004,2,2004-06-20,18,Connecticut Sun,TRUE,16,home +240619005,2004,2,2004-06-19,9,New York Liberty,FALSE,5,away +240619005,2004,2,2004-06-19,5,Indiana Fever,TRUE,9,home +240619008,2004,2,2004-06-19,4,Houston Comets,FALSE,8,away +240619008,2004,2,2004-06-19,8,Minnesota Lynx,TRUE,4,home +240619017,2004,2,2004-06-19,14,Seattle Storm,TRUE,17,away +240619017,2004,2,2004-06-19,17,San Antonio Silver Stars,FALSE,14,home +240619013,2004,2,2004-06-19,3,Detroit Shock,TRUE,13,away +240619013,2004,2,2004-06-19,13,Sacramento Monarchs,FALSE,3,home +240618011,2004,2,2004-06-18,6,Los Angeles Sparks,TRUE,11,away +240618011,2004,2,2004-06-18,11,Phoenix Mercury,FALSE,6,home +240618004,2004,2,2004-06-18,14,Seattle Storm,TRUE,4,away +240618004,2004,2,2004-06-18,4,Houston Comets,FALSE,14,home +240618018,2004,2,2004-06-18,1,Charlotte Sting,TRUE,18,away +240618018,2004,2,2004-06-18,18,Connecticut Sun,FALSE,1,home +240617008,2004,2,2004-06-17,13,Sacramento Monarchs,TRUE,8,away +240617008,2004,2,2004-06-17,8,Minnesota Lynx,FALSE,13,home +240617016,2004,2,2004-06-17,17,San Antonio Silver Stars,FALSE,16,away +240617016,2004,2,2004-06-17,16,Washington Mystics,TRUE,17,home +240616005,2004,2,2004-06-16,13,Sacramento Monarchs,FALSE,5,away +240616005,2004,2,2004-06-16,5,Indiana Fever,TRUE,13,home +240615009,2004,2,2004-06-15,14,Seattle Storm,TRUE,9,away +240615009,2004,2,2004-06-15,9,New York Liberty,FALSE,14,home +240615001,2004,2,2004-06-15,17,San Antonio Silver Stars,FALSE,1,away +240615001,2004,2,2004-06-15,1,Charlotte Sting,TRUE,17,home +240613016,2004,2,2004-06-13,9,New York Liberty,FALSE,16,away +240613016,2004,2,2004-06-13,16,Washington Mystics,TRUE,9,home +240612013,2004,2,2004-06-12,18,Connecticut Sun,TRUE,13,away +240612013,2004,2,2004-06-12,13,Sacramento Monarchs,FALSE,18,home +240612017,2004,2,2004-06-12,4,Houston Comets,TRUE,17,away +240612017,2004,2,2004-06-12,17,San Antonio Silver Stars,FALSE,4,home +240612003,2004,2,2004-06-12,5,Indiana Fever,FALSE,3,away +240612003,2004,2,2004-06-12,3,Detroit Shock,TRUE,5,home +240611006,2004,2,2004-06-11,8,Minnesota Lynx,FALSE,6,away +240611006,2004,2,2004-06-11,6,Los Angeles Sparks,TRUE,8,home +240611011,2004,2,2004-06-11,1,Charlotte Sting,TRUE,11,away +240611011,2004,2,2004-06-11,11,Phoenix Mercury,FALSE,1,home +240611014,2004,2,2004-06-11,18,Connecticut Sun,FALSE,14,away +240611014,2004,2,2004-06-11,14,Seattle Storm,TRUE,18,home +240611009,2004,2,2004-06-11,5,Indiana Fever,TRUE,9,away +240611009,2004,2,2004-06-11,9,New York Liberty,FALSE,5,home +240611016,2004,2,2004-06-11,3,Detroit Shock,TRUE,16,away +240611016,2004,2,2004-06-11,16,Washington Mystics,FALSE,3,home +240609006,2004,2,2004-06-09,1,Charlotte Sting,FALSE,6,away +240609006,2004,2,2004-06-09,6,Los Angeles Sparks,TRUE,1,home +240609004,2004,2,2004-06-09,17,San Antonio Silver Stars,FALSE,4,away +240609004,2004,2,2004-06-09,4,Houston Comets,TRUE,17,home +240609005,2004,2,2004-06-09,3,Detroit Shock,TRUE,5,away +240609005,2004,2,2004-06-09,5,Indiana Fever,FALSE,3,home +240609011,2004,2,2004-06-09,18,Connecticut Sun,FALSE,11,away +240609011,2004,2,2004-06-09,11,Phoenix Mercury,TRUE,18,home +240606018,2004,2,2004-06-06,3,Detroit Shock,TRUE,18,away +240606018,2004,2,2004-06-06,18,Connecticut Sun,FALSE,3,home +240605013,2004,2,2004-06-05,14,Seattle Storm,TRUE,13,away +240605013,2004,2,2004-06-05,13,Sacramento Monarchs,FALSE,14,home +240605008,2004,2,2004-06-05,11,Phoenix Mercury,FALSE,8,away +240605008,2004,2,2004-06-05,8,Minnesota Lynx,TRUE,11,home +240605017,2004,2,2004-06-05,9,New York Liberty,TRUE,17,away +240605017,2004,2,2004-06-05,17,San Antonio Silver Stars,FALSE,9,home +240605004,2004,2,2004-06-05,6,Los Angeles Sparks,FALSE,4,away +240605004,2004,2,2004-06-05,4,Houston Comets,TRUE,6,home +240603014,2004,2,2004-06-03,11,Phoenix Mercury,FALSE,14,away +240603014,2004,2,2004-06-03,14,Seattle Storm,TRUE,11,home +240603004,2004,2,2004-06-03,9,New York Liberty,TRUE,4,away +240603004,2004,2,2004-06-03,4,Houston Comets,FALSE,9,home +240603008,2004,2,2004-06-03,17,San Antonio Silver Stars,FALSE,8,away +240603008,2004,2,2004-06-03,8,Minnesota Lynx,TRUE,17,home +240603018,2004,2,2004-06-03,1,Charlotte Sting,FALSE,18,away +240603018,2004,2,2004-06-03,18,Connecticut Sun,TRUE,1,home +240602003,2004,2,2004-06-02,16,Washington Mystics,TRUE,3,away +240602003,2004,2,2004-06-02,3,Detroit Shock,FALSE,16,home +240601006,2004,2,2004-06-01,14,Seattle Storm,FALSE,6,away +240601006,2004,2,2004-06-01,6,Los Angeles Sparks,TRUE,14,home +240601011,2004,2,2004-06-01,4,Houston Comets,FALSE,11,away +240601011,2004,2,2004-06-01,11,Phoenix Mercury,TRUE,4,home +240601017,2004,2,2004-06-01,5,Indiana Fever,TRUE,17,away +240601017,2004,2,2004-06-01,17,San Antonio Silver Stars,FALSE,5,home +240601001,2004,2,2004-06-01,9,New York Liberty,TRUE,1,away +240601001,2004,2,2004-06-01,1,Charlotte Sting,FALSE,9,home +240530008,2004,2,2004-05-30,9,New York Liberty,TRUE,8,away +240530008,2004,2,2004-05-30,8,Minnesota Lynx,FALSE,9,home +240530004,2004,2,2004-05-30,13,Sacramento Monarchs,FALSE,4,away +240530004,2004,2,2004-05-30,4,Houston Comets,TRUE,13,home +240529003,2004,2,2004-05-29,6,Los Angeles Sparks,TRUE,3,away +240529003,2004,2,2004-05-29,3,Detroit Shock,FALSE,6,home +240528011,2004,2,2004-05-28,14,Seattle Storm,FALSE,11,away +240528011,2004,2,2004-05-28,11,Phoenix Mercury,TRUE,14,home +240528008,2004,2,2004-05-28,16,Washington Mystics,FALSE,8,away +240528008,2004,2,2004-05-28,8,Minnesota Lynx,TRUE,16,home +240528017,2004,2,2004-05-28,13,Sacramento Monarchs,FALSE,17,away +240528017,2004,2,2004-05-28,17,San Antonio Silver Stars,TRUE,13,home +240528001,2004,2,2004-05-28,5,Indiana Fever,FALSE,1,away +240528001,2004,2,2004-05-28,1,Charlotte Sting,TRUE,5,home +240527018,2004,2,2004-05-27,6,Los Angeles Sparks,FALSE,18,away +240527018,2004,2,2004-05-27,18,Connecticut Sun,TRUE,6,home +240526017,2004,2,2004-05-26,8,Minnesota Lynx,FALSE,17,away +240526017,2004,2,2004-05-26,17,San Antonio Silver Stars,TRUE,8,home +240526009,2004,2,2004-05-26,3,Detroit Shock,FALSE,9,away +240526009,2004,2,2004-05-26,9,New York Liberty,TRUE,3,home +240525018,2004,2,2004-05-25,4,Houston Comets,TRUE,18,away +240525018,2004,2,2004-05-25,18,Connecticut Sun,FALSE,4,home +240523005,2004,2,2004-05-23,16,Washington Mystics,TRUE,5,away +240523005,2004,2,2004-05-23,5,Indiana Fever,FALSE,16,home +240523009,2004,2,2004-05-23,4,Houston Comets,FALSE,9,away +240523009,2004,2,2004-05-23,9,New York Liberty,TRUE,4,home +240522013,2004,2,2004-05-22,8,Minnesota Lynx,TRUE,13,away +240522013,2004,2,2004-05-22,13,Sacramento Monarchs,FALSE,8,home +240522014,2004,2,2004-05-22,6,Los Angeles Sparks,FALSE,14,away +240522014,2004,2,2004-05-22,14,Seattle Storm,TRUE,6,home +240522017,2004,2,2004-05-22,3,Detroit Shock,TRUE,17,away +240522017,2004,2,2004-05-22,17,San Antonio Silver Stars,FALSE,3,home +240522018,2004,2,2004-05-22,11,Phoenix Mercury,TRUE,18,away +240522018,2004,2,2004-05-22,18,Connecticut Sun,FALSE,11,home +240521005,2004,2,2004-05-21,9,New York Liberty,FALSE,5,away +240521005,2004,2,2004-05-21,5,Indiana Fever,TRUE,9,home +240521001,2004,2,2004-05-21,4,Houston Comets,TRUE,1,away +240521001,2004,2,2004-05-21,1,Charlotte Sting,FALSE,4,home +240520014,2004,2,2004-05-20,8,Minnesota Lynx,FALSE,14,away +240520014,2004,2,2004-05-20,14,Seattle Storm,TRUE,8,home +250920013,2005,3,2005-09-20,18,Connecticut Sun,FALSE,13,away +250920013,2005,3,2005-09-20,13,Sacramento Monarchs,TRUE,18,home +250918013,2005,3,2005-09-18,18,Connecticut Sun,FALSE,13,away +250918013,2005,3,2005-09-18,13,Sacramento Monarchs,TRUE,18,home +250915018,2005,3,2005-09-15,13,Sacramento Monarchs,FALSE,18,away +250915018,2005,3,2005-09-15,18,Connecticut Sun,TRUE,13,home +250914018,2005,3,2005-09-14,13,Sacramento Monarchs,TRUE,18,away +250914018,2005,3,2005-09-14,18,Connecticut Sun,FALSE,13,home +250910013,2005,3,2005-09-10,4,Houston Comets,FALSE,13,away +250910013,2005,3,2005-09-10,13,Sacramento Monarchs,TRUE,4,home +250910018,2005,3,2005-09-10,5,Indiana Fever,FALSE,18,away +250910018,2005,3,2005-09-10,18,Connecticut Sun,TRUE,5,home +250908004,2005,3,2005-09-08,13,Sacramento Monarchs,TRUE,4,away +250908004,2005,3,2005-09-08,4,Houston Comets,FALSE,13,home +250908005,2005,3,2005-09-08,18,Connecticut Sun,TRUE,5,away +250908005,2005,3,2005-09-08,5,Indiana Fever,FALSE,18,home +250903014,2005,3,2005-09-03,4,Houston Comets,TRUE,14,away +250903014,2005,3,2005-09-03,14,Seattle Storm,FALSE,4,home +250902013,2005,3,2005-09-02,6,Los Angeles Sparks,FALSE,13,away +250902013,2005,3,2005-09-02,13,Sacramento Monarchs,TRUE,6,home +250902018,2005,3,2005-09-02,3,Detroit Shock,FALSE,18,away +250902018,2005,3,2005-09-02,18,Connecticut Sun,TRUE,3,home +250901014,2005,3,2005-09-01,4,Houston Comets,TRUE,14,away +250901014,2005,3,2005-09-01,14,Seattle Storm,FALSE,4,home +250901005,2005,3,2005-09-01,9,New York Liberty,FALSE,5,away +250901005,2005,3,2005-09-01,5,Indiana Fever,TRUE,9,home +250831006,2005,3,2005-08-31,13,Sacramento Monarchs,TRUE,6,away +250831006,2005,3,2005-08-31,6,Los Angeles Sparks,FALSE,13,home +250831003,2005,3,2005-08-31,18,Connecticut Sun,TRUE,3,away +250831003,2005,3,2005-08-31,3,Detroit Shock,FALSE,18,home +250830004,2005,3,2005-08-30,14,Seattle Storm,TRUE,4,away +250830004,2005,3,2005-08-30,4,Houston Comets,FALSE,14,home +250830009,2005,3,2005-08-30,5,Indiana Fever,TRUE,9,away +250830009,2005,3,2005-08-30,9,New York Liberty,FALSE,5,home +250827004,2005,2,2005-08-27,6,Los Angeles Sparks,FALSE,4,away +250827004,2005,2,2005-08-27,4,Houston Comets,TRUE,6,home +250827005,2005,2,2005-08-27,9,New York Liberty,FALSE,5,away +250827005,2005,2,2005-08-27,5,Indiana Fever,TRUE,9,home +250827008,2005,2,2005-08-27,13,Sacramento Monarchs,TRUE,8,away +250827008,2005,2,2005-08-27,8,Minnesota Lynx,FALSE,13,home +250827014,2005,2,2005-08-27,11,Phoenix Mercury,FALSE,14,away +250827014,2005,2,2005-08-27,14,Seattle Storm,TRUE,11,home +250827001,2005,2,2005-08-27,18,Connecticut Sun,TRUE,1,away +250827001,2005,2,2005-08-27,1,Charlotte Sting,FALSE,18,home +250827016,2005,2,2005-08-27,3,Detroit Shock,FALSE,16,away +250827016,2005,2,2005-08-27,16,Washington Mystics,TRUE,3,home +250826017,2005,2,2005-08-26,6,Los Angeles Sparks,TRUE,17,away +250826017,2005,2,2005-08-26,17,San Antonio Silver Stars,FALSE,6,home +250826018,2005,2,2005-08-26,16,Washington Mystics,FALSE,18,away +250826018,2005,2,2005-08-26,18,Connecticut Sun,TRUE,16,home +250825011,2005,2,2005-08-25,4,Houston Comets,TRUE,11,away +250825011,2005,2,2005-08-25,11,Phoenix Mercury,FALSE,4,home +250825014,2005,2,2005-08-25,13,Sacramento Monarchs,FALSE,14,away +250825014,2005,2,2005-08-25,14,Seattle Storm,TRUE,13,home +250825003,2005,2,2005-08-25,5,Indiana Fever,FALSE,3,away +250825003,2005,2,2005-08-25,3,Detroit Shock,TRUE,5,home +250825009,2005,2,2005-08-25,1,Charlotte Sting,TRUE,9,away +250825009,2005,2,2005-08-25,9,New York Liberty,FALSE,1,home +250823006,2005,2,2005-08-23,8,Minnesota Lynx,FALSE,6,away +250823006,2005,2,2005-08-23,6,Los Angeles Sparks,TRUE,8,home +250823013,2005,2,2005-08-23,11,Phoenix Mercury,FALSE,13,away +250823013,2005,2,2005-08-23,13,Sacramento Monarchs,TRUE,11,home +250823017,2005,2,2005-08-23,14,Seattle Storm,TRUE,17,away +250823017,2005,2,2005-08-23,17,San Antonio Silver Stars,FALSE,14,home +250823001,2005,2,2005-08-23,3,Detroit Shock,FALSE,1,away +250823001,2005,2,2005-08-23,1,Charlotte Sting,TRUE,3,home +250823016,2005,2,2005-08-23,9,New York Liberty,FALSE,16,away +250823016,2005,2,2005-08-23,16,Washington Mystics,TRUE,9,home +250823018,2005,2,2005-08-23,5,Indiana Fever,TRUE,18,away +250823018,2005,2,2005-08-23,18,Connecticut Sun,FALSE,5,home +250821006,2005,2,2005-08-21,4,Houston Comets,FALSE,6,away +250821006,2005,2,2005-08-21,6,Los Angeles Sparks,TRUE,4,home +250821011,2005,2,2005-08-21,8,Minnesota Lynx,FALSE,11,away +250821011,2005,2,2005-08-21,11,Phoenix Mercury,TRUE,8,home +250821003,2005,2,2005-08-21,16,Washington Mystics,FALSE,3,away +250821003,2005,2,2005-08-21,3,Detroit Shock,TRUE,16,home +250820005,2005,2,2005-08-20,1,Charlotte Sting,FALSE,5,away +250820005,2005,2,2005-08-20,5,Indiana Fever,TRUE,1,home +250820018,2005,2,2005-08-20,9,New York Liberty,TRUE,18,away +250820018,2005,2,2005-08-20,18,Connecticut Sun,FALSE,9,home +250820013,2005,2,2005-08-20,14,Seattle Storm,FALSE,13,away +250820013,2005,2,2005-08-20,13,Sacramento Monarchs,TRUE,14,home +250819006,2005,2,2005-08-19,3,Detroit Shock,FALSE,6,away +250819006,2005,2,2005-08-19,6,Los Angeles Sparks,TRUE,3,home +250819011,2005,2,2005-08-19,17,San Antonio Silver Stars,FALSE,11,away +250819011,2005,2,2005-08-19,11,Phoenix Mercury,TRUE,17,home +250818013,2005,2,2005-08-18,17,San Antonio Silver Stars,FALSE,13,away +250818013,2005,2,2005-08-18,13,Sacramento Monarchs,TRUE,17,home +250818014,2005,2,2005-08-18,8,Minnesota Lynx,FALSE,14,away +250818014,2005,2,2005-08-18,14,Seattle Storm,TRUE,8,home +250818004,2005,2,2005-08-18,11,Phoenix Mercury,FALSE,4,away +250818004,2005,2,2005-08-18,4,Houston Comets,TRUE,11,home +250818005,2005,2,2005-08-18,16,Washington Mystics,FALSE,5,away +250818005,2005,2,2005-08-18,5,Indiana Fever,TRUE,16,home +250818018,2005,2,2005-08-18,1,Charlotte Sting,FALSE,18,away +250818018,2005,2,2005-08-18,18,Connecticut Sun,TRUE,1,home +250816006,2005,2,2005-08-16,13,Sacramento Monarchs,TRUE,6,away +250816006,2005,2,2005-08-16,6,Los Angeles Sparks,FALSE,13,home +250816011,2005,2,2005-08-16,3,Detroit Shock,FALSE,11,away +250816011,2005,2,2005-08-16,11,Phoenix Mercury,TRUE,3,home +250816008,2005,2,2005-08-16,4,Houston Comets,FALSE,8,away +250816008,2005,2,2005-08-16,8,Minnesota Lynx,TRUE,4,home +250814011,2005,2,2005-08-14,5,Indiana Fever,TRUE,11,away +250814011,2005,2,2005-08-14,11,Phoenix Mercury,FALSE,5,home +250814004,2005,2,2005-08-14,14,Seattle Storm,FALSE,4,away +250814004,2005,2,2005-08-14,4,Houston Comets,TRUE,14,home +250814009,2005,2,2005-08-14,1,Charlotte Sting,FALSE,9,away +250814009,2005,2,2005-08-14,9,New York Liberty,TRUE,1,home +250814018,2005,2,2005-08-14,16,Washington Mystics,FALSE,18,away +250814018,2005,2,2005-08-14,18,Connecticut Sun,TRUE,16,home +250813006,2005,2,2005-08-13,5,Indiana Fever,FALSE,6,away +250813006,2005,2,2005-08-13,6,Los Angeles Sparks,TRUE,5,home +250813017,2005,2,2005-08-13,3,Detroit Shock,TRUE,17,away +250813017,2005,2,2005-08-13,17,San Antonio Silver Stars,FALSE,3,home +250812011,2005,2,2005-08-12,13,Sacramento Monarchs,FALSE,11,away +250812011,2005,2,2005-08-12,11,Phoenix Mercury,TRUE,13,home +250812008,2005,2,2005-08-12,14,Seattle Storm,TRUE,8,away +250812008,2005,2,2005-08-12,8,Minnesota Lynx,FALSE,14,home +250812001,2005,2,2005-08-12,9,New York Liberty,TRUE,1,away +250812001,2005,2,2005-08-12,1,Charlotte Sting,FALSE,9,home +250811017,2005,2,2005-08-11,5,Indiana Fever,TRUE,17,away +250811017,2005,2,2005-08-11,17,San Antonio Silver Stars,FALSE,5,home +250811003,2005,2,2005-08-11,8,Minnesota Lynx,FALSE,3,away +250811003,2005,2,2005-08-11,3,Detroit Shock,TRUE,8,home +250810009,2005,2,2005-08-10,6,Los Angeles Sparks,FALSE,9,away +250810009,2005,2,2005-08-10,9,New York Liberty,TRUE,6,home +250809014,2005,2,2005-08-09,4,Houston Comets,FALSE,14,away +250809014,2005,2,2005-08-09,14,Seattle Storm,TRUE,4,home +250809008,2005,2,2005-08-09,17,San Antonio Silver Stars,FALSE,8,away +250809008,2005,2,2005-08-09,8,Minnesota Lynx,TRUE,17,home +250809003,2005,2,2005-08-09,1,Charlotte Sting,FALSE,3,away +250809003,2005,2,2005-08-09,3,Detroit Shock,TRUE,1,home +250809018,2005,2,2005-08-09,6,Los Angeles Sparks,FALSE,18,away +250809018,2005,2,2005-08-09,18,Connecticut Sun,TRUE,6,home +250807013,2005,2,2005-08-07,4,Houston Comets,FALSE,13,away +250807013,2005,2,2005-08-07,13,Sacramento Monarchs,TRUE,4,home +250807016,2005,2,2005-08-07,5,Indiana Fever,FALSE,16,away +250807016,2005,2,2005-08-07,16,Washington Mystics,TRUE,5,home +250807003,2005,2,2005-08-07,9,New York Liberty,FALSE,3,away +250807003,2005,2,2005-08-07,3,Detroit Shock,TRUE,9,home +250807008,2005,2,2005-08-07,6,Los Angeles Sparks,FALSE,8,away +250807008,2005,2,2005-08-07,8,Minnesota Lynx,TRUE,6,home +250806005,2005,2,2005-08-06,18,Connecticut Sun,TRUE,5,away +250806005,2005,2,2005-08-06,5,Indiana Fever,FALSE,18,home +250806009,2005,2,2005-08-06,14,Seattle Storm,FALSE,9,away +250806009,2005,2,2005-08-06,9,New York Liberty,TRUE,14,home +250806001,2005,2,2005-08-06,3,Detroit Shock,FALSE,1,away +250806001,2005,2,2005-08-06,1,Charlotte Sting,TRUE,3,home +250805011,2005,2,2005-08-05,4,Houston Comets,FALSE,11,away +250805011,2005,2,2005-08-05,11,Phoenix Mercury,TRUE,4,home +250805017,2005,2,2005-08-05,6,Los Angeles Sparks,TRUE,17,away +250805017,2005,2,2005-08-05,17,San Antonio Silver Stars,FALSE,6,home +250804005,2005,2,2005-08-04,14,Seattle Storm,FALSE,5,away +250804005,2005,2,2005-08-04,5,Indiana Fever,TRUE,14,home +250804001,2005,2,2005-08-04,13,Sacramento Monarchs,TRUE,1,away +250804001,2005,2,2005-08-04,1,Charlotte Sting,FALSE,13,home +250803011,2005,2,2005-08-03,8,Minnesota Lynx,FALSE,11,away +250803011,2005,2,2005-08-03,11,Phoenix Mercury,TRUE,8,home +250802004,2005,2,2005-08-02,3,Detroit Shock,FALSE,4,away +250802004,2005,2,2005-08-02,4,Houston Comets,TRUE,3,home +250802016,2005,2,2005-08-02,1,Charlotte Sting,FALSE,16,away +250802016,2005,2,2005-08-02,16,Washington Mystics,TRUE,1,home +250802017,2005,2,2005-08-02,13,Sacramento Monarchs,TRUE,17,away +250802017,2005,2,2005-08-02,17,San Antonio Silver Stars,FALSE,13,home +250802009,2005,2,2005-08-02,18,Connecticut Sun,TRUE,9,away +250802009,2005,2,2005-08-02,9,New York Liberty,FALSE,18,home +250731013,2005,2,2005-07-31,8,Minnesota Lynx,FALSE,13,away +250731013,2005,2,2005-07-31,13,Sacramento Monarchs,TRUE,8,home +250731014,2005,2,2005-07-31,6,Los Angeles Sparks,FALSE,14,away +250731014,2005,2,2005-07-31,14,Seattle Storm,TRUE,6,home +250731003,2005,2,2005-07-31,11,Phoenix Mercury,FALSE,3,away +250731003,2005,2,2005-07-31,3,Detroit Shock,TRUE,11,home +250731009,2005,2,2005-07-31,5,Indiana Fever,FALSE,9,away +250731009,2005,2,2005-07-31,9,New York Liberty,TRUE,5,home +250730004,2005,2,2005-07-30,17,San Antonio Silver Stars,TRUE,4,away +250730004,2005,2,2005-07-30,4,Houston Comets,FALSE,17,home +250730018,2005,2,2005-07-30,3,Detroit Shock,TRUE,18,away +250730018,2005,2,2005-07-30,18,Connecticut Sun,FALSE,3,home +250729013,2005,2,2005-07-29,6,Los Angeles Sparks,FALSE,13,away +250729013,2005,2,2005-07-29,13,Sacramento Monarchs,TRUE,6,home +250729014,2005,2,2005-07-29,1,Charlotte Sting,FALSE,14,away +250729014,2005,2,2005-07-29,14,Seattle Storm,TRUE,1,home +250729005,2005,2,2005-07-29,16,Washington Mystics,FALSE,5,away +250729005,2005,2,2005-07-29,5,Indiana Fever,TRUE,16,home +250729008,2005,2,2005-07-29,11,Phoenix Mercury,TRUE,8,away +250729008,2005,2,2005-07-29,8,Minnesota Lynx,FALSE,11,home +250728016,2005,2,2005-07-28,17,San Antonio Silver Stars,FALSE,16,away +250728016,2005,2,2005-07-28,16,Washington Mystics,TRUE,17,home +250728018,2005,2,2005-07-28,9,New York Liberty,FALSE,18,away +250728018,2005,2,2005-07-28,18,Connecticut Sun,TRUE,9,home +250727009,2005,2,2005-07-27,4,Houston Comets,TRUE,9,away +250727009,2005,2,2005-07-27,9,New York Liberty,FALSE,4,home +250726011,2005,2,2005-07-26,6,Los Angeles Sparks,FALSE,11,away +250726011,2005,2,2005-07-26,11,Phoenix Mercury,TRUE,6,home +250726013,2005,2,2005-07-26,1,Charlotte Sting,FALSE,13,away +250726013,2005,2,2005-07-26,13,Sacramento Monarchs,TRUE,1,home +250726017,2005,2,2005-07-26,8,Minnesota Lynx,FALSE,17,away +250726017,2005,2,2005-07-26,17,San Antonio Silver Stars,TRUE,8,home +250726018,2005,2,2005-07-26,5,Indiana Fever,FALSE,18,away +250726018,2005,2,2005-07-26,18,Connecticut Sun,TRUE,5,home +250726016,2005,2,2005-07-26,4,Houston Comets,TRUE,16,away +250726016,2005,2,2005-07-26,16,Washington Mystics,FALSE,4,home +250724013,2005,2,2005-07-24,3,Detroit Shock,FALSE,13,away +250724013,2005,2,2005-07-24,13,Sacramento Monarchs,TRUE,3,home +250724008,2005,2,2005-07-24,9,New York Liberty,TRUE,8,away +250724008,2005,2,2005-07-24,8,Minnesota Lynx,FALSE,9,home +250723017,2005,2,2005-07-23,11,Phoenix Mercury,TRUE,17,away +250723017,2005,2,2005-07-23,17,San Antonio Silver Stars,FALSE,11,home +250723001,2005,2,2005-07-23,5,Indiana Fever,TRUE,1,away +250723001,2005,2,2005-07-23,1,Charlotte Sting,FALSE,5,home +250723014,2005,2,2005-07-23,3,Detroit Shock,FALSE,14,away +250723014,2005,2,2005-07-23,14,Seattle Storm,TRUE,3,home +250723004,2005,2,2005-07-23,6,Los Angeles Sparks,TRUE,4,away +250723004,2005,2,2005-07-23,4,Houston Comets,FALSE,6,home +250722013,2005,2,2005-07-22,9,New York Liberty,TRUE,13,away +250722013,2005,2,2005-07-22,13,Sacramento Monarchs,FALSE,9,home +250721011,2005,2,2005-07-21,9,New York Liberty,TRUE,11,away +250721011,2005,2,2005-07-21,11,Phoenix Mercury,FALSE,9,home +250721005,2005,2,2005-07-21,17,San Antonio Silver Stars,FALSE,5,away +250721005,2005,2,2005-07-21,5,Indiana Fever,TRUE,17,home +250721004,2005,2,2005-07-21,16,Washington Mystics,TRUE,4,away +250721004,2005,2,2005-07-21,4,Houston Comets,FALSE,16,home +250720003,2005,2,2005-07-20,18,Connecticut Sun,FALSE,3,away +250720003,2005,2,2005-07-20,3,Detroit Shock,TRUE,18,home +250719014,2005,2,2005-07-19,9,New York Liberty,FALSE,14,away +250719014,2005,2,2005-07-19,14,Seattle Storm,TRUE,9,home +250719004,2005,2,2005-07-19,13,Sacramento Monarchs,FALSE,4,away +250719004,2005,2,2005-07-19,4,Houston Comets,TRUE,13,home +250719008,2005,2,2005-07-19,5,Indiana Fever,FALSE,8,away +250719008,2005,2,2005-07-19,8,Minnesota Lynx,TRUE,5,home +250719006,2005,2,2005-07-19,16,Washington Mystics,TRUE,6,away +250719006,2005,2,2005-07-19,6,Los Angeles Sparks,FALSE,16,home +250719001,2005,2,2005-07-19,18,Connecticut Sun,TRUE,1,away +250719001,2005,2,2005-07-19,1,Charlotte Sting,FALSE,18,home +250717008,2005,2,2005-07-17,18,Connecticut Sun,TRUE,8,away +250717008,2005,2,2005-07-17,8,Minnesota Lynx,FALSE,18,home +250717001,2005,2,2005-07-17,4,Houston Comets,TRUE,1,away +250717001,2005,2,2005-07-17,1,Charlotte Sting,FALSE,4,home +250716006,2005,2,2005-07-16,14,Seattle Storm,TRUE,6,away +250716006,2005,2,2005-07-16,6,Los Angeles Sparks,FALSE,14,home +250716013,2005,2,2005-07-16,16,Washington Mystics,FALSE,13,away +250716013,2005,2,2005-07-16,13,Sacramento Monarchs,TRUE,16,home +250715011,2005,2,2005-07-15,16,Washington Mystics,FALSE,11,away +250715011,2005,2,2005-07-15,11,Phoenix Mercury,TRUE,16,home +250715014,2005,2,2005-07-15,17,San Antonio Silver Stars,FALSE,14,away +250715014,2005,2,2005-07-15,14,Seattle Storm,TRUE,17,home +250715005,2005,2,2005-07-15,3,Detroit Shock,FALSE,5,away +250715005,2005,2,2005-07-15,5,Indiana Fever,TRUE,3,home +250715009,2005,2,2005-07-15,8,Minnesota Lynx,TRUE,9,away +250715009,2005,2,2005-07-15,9,New York Liberty,FALSE,8,home +250715018,2005,2,2005-07-15,4,Houston Comets,FALSE,18,away +250715018,2005,2,2005-07-15,18,Connecticut Sun,TRUE,4,home +250714013,2005,2,2005-07-14,17,San Antonio Silver Stars,FALSE,13,away +250714013,2005,2,2005-07-14,13,Sacramento Monarchs,TRUE,17,home +250713011,2005,2,2005-07-13,1,Charlotte Sting,FALSE,11,away +250713011,2005,2,2005-07-13,11,Phoenix Mercury,TRUE,1,home +250713014,2005,2,2005-07-13,16,Washington Mystics,TRUE,14,away +250713014,2005,2,2005-07-13,14,Seattle Storm,FALSE,16,home +250713005,2005,2,2005-07-13,18,Connecticut Sun,FALSE,5,away +250713005,2005,2,2005-07-13,5,Indiana Fever,TRUE,18,home +250713008,2005,2,2005-07-13,3,Detroit Shock,FALSE,8,away +250713008,2005,2,2005-07-13,8,Minnesota Lynx,TRUE,3,home +250712006,2005,2,2005-07-12,1,Charlotte Sting,FALSE,6,away +250712006,2005,2,2005-07-12,6,Los Angeles Sparks,TRUE,1,home +250712004,2005,2,2005-07-12,9,New York Liberty,TRUE,4,away +250712004,2005,2,2005-07-12,4,Houston Comets,FALSE,9,home +250709099,2005,2,2005-07-09,98,EAST,FALSE,99,away +250709099,2005,2,2005-07-09,99,WEST,TRUE,98,home +250707005,2005,2,2005-07-07,4,Houston Comets,TRUE,5,away +250707005,2005,2,2005-07-07,5,Indiana Fever,FALSE,4,home +250707009,2005,2,2005-07-07,18,Connecticut Sun,FALSE,9,away +250707009,2005,2,2005-07-07,9,New York Liberty,TRUE,18,home +250707001,2005,2,2005-07-07,8,Minnesota Lynx,FALSE,1,away +250707001,2005,2,2005-07-07,1,Charlotte Sting,TRUE,8,home +250707016,2005,2,2005-07-07,3,Detroit Shock,TRUE,16,away +250707016,2005,2,2005-07-07,16,Washington Mystics,FALSE,3,home +250706011,2005,2,2005-07-06,14,Seattle Storm,FALSE,11,away +250706011,2005,2,2005-07-06,11,Phoenix Mercury,TRUE,14,home +250705006,2005,2,2005-07-05,9,New York Liberty,TRUE,6,away +250705006,2005,2,2005-07-05,6,Los Angeles Sparks,FALSE,9,home +250705017,2005,2,2005-07-05,11,Phoenix Mercury,TRUE,17,away +250705017,2005,2,2005-07-05,17,San Antonio Silver Stars,FALSE,11,home +250705003,2005,2,2005-07-05,4,Houston Comets,TRUE,3,away +250705003,2005,2,2005-07-05,3,Detroit Shock,FALSE,4,home +250703014,2005,2,2005-07-03,13,Sacramento Monarchs,FALSE,14,away +250703014,2005,2,2005-07-03,14,Seattle Storm,TRUE,13,home +250702006,2005,2,2005-07-02,11,Phoenix Mercury,FALSE,6,away +250702006,2005,2,2005-07-02,6,Los Angeles Sparks,TRUE,11,home +250702017,2005,2,2005-07-02,9,New York Liberty,FALSE,17,away +250702017,2005,2,2005-07-02,17,San Antonio Silver Stars,TRUE,9,home +250702004,2005,2,2005-07-02,1,Charlotte Sting,FALSE,4,away +250702004,2005,2,2005-07-02,4,Houston Comets,TRUE,1,home +250701003,2005,2,2005-07-01,13,Sacramento Monarchs,TRUE,3,away +250701003,2005,2,2005-07-01,3,Detroit Shock,FALSE,13,home +250630017,2005,2,2005-06-30,14,Seattle Storm,FALSE,17,away +250630017,2005,2,2005-06-30,17,San Antonio Silver Stars,TRUE,14,home +250630009,2005,2,2005-06-30,13,Sacramento Monarchs,TRUE,9,away +250630009,2005,2,2005-06-30,9,New York Liberty,FALSE,13,home +250630016,2005,2,2005-06-30,1,Charlotte Sting,FALSE,16,away +250630016,2005,2,2005-06-30,16,Washington Mystics,TRUE,1,home +250630018,2005,2,2005-06-30,8,Minnesota Lynx,FALSE,18,away +250630018,2005,2,2005-06-30,18,Connecticut Sun,TRUE,8,home +250628004,2005,2,2005-06-28,14,Seattle Storm,FALSE,4,away +250628004,2005,2,2005-06-28,4,Houston Comets,TRUE,14,home +250628005,2005,2,2005-06-28,6,Los Angeles Sparks,TRUE,5,away +250628005,2005,2,2005-06-28,5,Indiana Fever,FALSE,6,home +250628008,2005,2,2005-06-28,17,San Antonio Silver Stars,FALSE,8,away +250628008,2005,2,2005-06-28,8,Minnesota Lynx,TRUE,17,home +250628001,2005,2,2005-06-28,16,Washington Mystics,TRUE,1,away +250628001,2005,2,2005-06-28,1,Charlotte Sting,FALSE,16,home +250628018,2005,2,2005-06-28,13,Sacramento Monarchs,FALSE,18,away +250628018,2005,2,2005-06-28,18,Connecticut Sun,TRUE,13,home +250626008,2005,2,2005-06-26,14,Seattle Storm,FALSE,8,away +250626008,2005,2,2005-06-26,8,Minnesota Lynx,TRUE,14,home +250626016,2005,2,2005-06-26,13,Sacramento Monarchs,TRUE,16,away +250626016,2005,2,2005-06-26,16,Washington Mystics,FALSE,13,home +250626003,2005,2,2005-06-26,6,Los Angeles Sparks,FALSE,3,away +250626003,2005,2,2005-06-26,3,Detroit Shock,TRUE,6,home +250625011,2005,2,2005-06-25,18,Connecticut Sun,TRUE,11,away +250625011,2005,2,2005-06-25,11,Phoenix Mercury,FALSE,18,home +250625001,2005,2,2005-06-25,9,New York Liberty,FALSE,1,away +250625001,2005,2,2005-06-25,1,Charlotte Sting,TRUE,9,home +250625004,2005,2,2005-06-25,17,San Antonio Silver Stars,FALSE,4,away +250625004,2005,2,2005-06-25,4,Houston Comets,TRUE,17,home +250624006,2005,2,2005-06-24,14,Seattle Storm,FALSE,6,away +250624006,2005,2,2005-06-24,6,Los Angeles Sparks,TRUE,14,home +250624013,2005,2,2005-06-24,18,Connecticut Sun,TRUE,13,away +250624013,2005,2,2005-06-24,13,Sacramento Monarchs,FALSE,18,home +250624005,2005,2,2005-06-24,8,Minnesota Lynx,FALSE,5,away +250624005,2005,2,2005-06-24,5,Indiana Fever,TRUE,8,home +250624003,2005,2,2005-06-24,16,Washington Mystics,TRUE,3,away +250624003,2005,2,2005-06-24,3,Detroit Shock,FALSE,16,home +250623001,2005,2,2005-06-23,17,San Antonio Silver Stars,TRUE,1,away +250623001,2005,2,2005-06-23,1,Charlotte Sting,FALSE,17,home +250622014,2005,2,2005-06-22,18,Connecticut Sun,FALSE,14,away +250622014,2005,2,2005-06-22,14,Seattle Storm,TRUE,18,home +250622008,2005,2,2005-06-22,11,Phoenix Mercury,FALSE,8,away +250622008,2005,2,2005-06-22,8,Minnesota Lynx,TRUE,11,home +250620006,2005,2,2005-06-20,18,Connecticut Sun,TRUE,6,away +250620006,2005,2,2005-06-20,6,Los Angeles Sparks,FALSE,18,home +250618006,2005,2,2005-06-18,8,Minnesota Lynx,FALSE,6,away +250618006,2005,2,2005-06-18,6,Los Angeles Sparks,TRUE,8,home +250618017,2005,2,2005-06-18,4,Houston Comets,TRUE,17,away +250618017,2005,2,2005-06-18,17,San Antonio Silver Stars,FALSE,4,home +250618018,2005,2,2005-06-18,3,Detroit Shock,FALSE,18,away +250618018,2005,2,2005-06-18,18,Connecticut Sun,TRUE,3,home +250618016,2005,2,2005-06-18,5,Indiana Fever,FALSE,16,away +250618016,2005,2,2005-06-18,16,Washington Mystics,TRUE,5,home +250618009,2005,2,2005-06-18,11,Phoenix Mercury,FALSE,9,away +250618009,2005,2,2005-06-18,9,New York Liberty,TRUE,11,home +250617013,2005,2,2005-06-17,8,Minnesota Lynx,FALSE,13,away +250617013,2005,2,2005-06-17,13,Sacramento Monarchs,TRUE,8,home +250616001,2005,2,2005-06-16,5,Indiana Fever,TRUE,1,away +250616001,2005,2,2005-06-16,1,Charlotte Sting,FALSE,5,home +250615006,2005,2,2005-06-15,4,Houston Comets,FALSE,6,away +250615006,2005,2,2005-06-15,6,Los Angeles Sparks,TRUE,4,home +250615014,2005,2,2005-06-15,8,Minnesota Lynx,TRUE,14,away +250615014,2005,2,2005-06-15,14,Seattle Storm,FALSE,8,home +250615005,2005,2,2005-06-15,3,Detroit Shock,FALSE,5,away +250615005,2005,2,2005-06-15,5,Indiana Fever,TRUE,3,home +250615011,2005,2,2005-06-15,17,San Antonio Silver Stars,FALSE,11,away +250615011,2005,2,2005-06-15,11,Phoenix Mercury,TRUE,17,home +250613013,2005,2,2005-06-13,4,Houston Comets,FALSE,13,away +250613013,2005,2,2005-06-13,13,Sacramento Monarchs,TRUE,4,home +250612001,2005,2,2005-06-12,14,Seattle Storm,TRUE,1,away +250612001,2005,2,2005-06-12,1,Charlotte Sting,FALSE,14,home +250612009,2005,2,2005-06-12,3,Detroit Shock,FALSE,9,away +250612009,2005,2,2005-06-12,9,New York Liberty,TRUE,3,home +250611006,2005,2,2005-06-11,13,Sacramento Monarchs,FALSE,6,away +250611006,2005,2,2005-06-11,6,Los Angeles Sparks,TRUE,13,home +250611008,2005,2,2005-06-11,16,Washington Mystics,FALSE,8,away +250611008,2005,2,2005-06-11,8,Minnesota Lynx,TRUE,16,home +250611017,2005,2,2005-06-11,18,Connecticut Sun,TRUE,17,away +250611017,2005,2,2005-06-11,17,San Antonio Silver Stars,FALSE,18,home +250610013,2005,2,2005-06-10,11,Phoenix Mercury,FALSE,13,away +250610013,2005,2,2005-06-10,13,Sacramento Monarchs,TRUE,11,home +250610004,2005,2,2005-06-10,18,Connecticut Sun,TRUE,4,away +250610004,2005,2,2005-06-10,4,Houston Comets,FALSE,18,home +250610005,2005,2,2005-06-10,9,New York Liberty,FALSE,5,away +250610005,2005,2,2005-06-10,5,Indiana Fever,TRUE,9,home +250610003,2005,2,2005-06-10,1,Charlotte Sting,FALSE,3,away +250610003,2005,2,2005-06-10,3,Detroit Shock,TRUE,1,home +250610016,2005,2,2005-06-10,14,Seattle Storm,FALSE,16,away +250610016,2005,2,2005-06-10,16,Washington Mystics,TRUE,14,home +250608006,2005,2,2005-06-08,11,Phoenix Mercury,TRUE,6,away +250608006,2005,2,2005-06-08,6,Los Angeles Sparks,FALSE,11,home +250608003,2005,2,2005-06-08,14,Seattle Storm,TRUE,3,away +250608003,2005,2,2005-06-08,3,Detroit Shock,FALSE,14,home +250607013,2005,2,2005-06-07,5,Indiana Fever,FALSE,13,away +250607013,2005,2,2005-06-07,13,Sacramento Monarchs,TRUE,5,home +250607004,2005,2,2005-06-07,8,Minnesota Lynx,TRUE,4,away +250607004,2005,2,2005-06-07,4,Houston Comets,FALSE,8,home +250607017,2005,2,2005-06-07,16,Washington Mystics,FALSE,17,away +250607017,2005,2,2005-06-07,17,San Antonio Silver Stars,TRUE,16,home +250607018,2005,2,2005-06-07,14,Seattle Storm,FALSE,18,away +250607018,2005,2,2005-06-07,18,Connecticut Sun,TRUE,14,home +250604013,2005,2,2005-06-04,6,Los Angeles Sparks,FALSE,13,away +250604013,2005,2,2005-06-04,13,Sacramento Monarchs,TRUE,6,home +250604018,2005,2,2005-06-04,17,San Antonio Silver Stars,FALSE,18,away +250604018,2005,2,2005-06-04,18,Connecticut Sun,TRUE,17,home +250604004,2005,2,2005-06-04,11,Phoenix Mercury,FALSE,4,away +250604004,2005,2,2005-06-04,4,Houston Comets,TRUE,11,home +250603003,2005,2,2005-06-03,9,New York Liberty,FALSE,3,away +250603003,2005,2,2005-06-03,3,Detroit Shock,TRUE,9,home +250603016,2005,2,2005-06-03,8,Minnesota Lynx,FALSE,16,away +250603016,2005,2,2005-06-03,16,Washington Mystics,TRUE,8,home +250602011,2005,2,2005-06-02,14,Seattle Storm,TRUE,11,away +250602011,2005,2,2005-06-02,11,Phoenix Mercury,FALSE,14,home +250602017,2005,2,2005-06-02,1,Charlotte Sting,FALSE,17,away +250602017,2005,2,2005-06-02,17,San Antonio Silver Stars,TRUE,1,home +250601005,2005,2,2005-06-01,13,Sacramento Monarchs,FALSE,5,away +250601005,2005,2,2005-06-01,5,Indiana Fever,TRUE,13,home +250601016,2005,2,2005-06-01,9,New York Liberty,TRUE,16,away +250601016,2005,2,2005-06-01,16,Washington Mystics,FALSE,9,home +250531006,2005,2,2005-05-31,17,San Antonio Silver Stars,FALSE,6,away +250531006,2005,2,2005-05-31,6,Los Angeles Sparks,TRUE,17,home +250529014,2005,2,2005-05-29,17,San Antonio Silver Stars,FALSE,14,away +250529014,2005,2,2005-05-29,14,Seattle Storm,TRUE,17,home +250529008,2005,2,2005-05-29,13,Sacramento Monarchs,TRUE,8,away +250529008,2005,2,2005-05-29,8,Minnesota Lynx,FALSE,13,home +250529004,2005,2,2005-05-29,5,Indiana Fever,FALSE,4,away +250529004,2005,2,2005-05-29,4,Houston Comets,TRUE,5,home +250528001,2005,2,2005-05-28,6,Los Angeles Sparks,FALSE,1,away +250528001,2005,2,2005-05-28,1,Charlotte Sting,TRUE,6,home +250528018,2005,2,2005-05-28,11,Phoenix Mercury,FALSE,18,away +250528018,2005,2,2005-05-28,18,Connecticut Sun,TRUE,11,home +250527014,2005,2,2005-05-27,4,Houston Comets,FALSE,14,away +250527014,2005,2,2005-05-27,14,Seattle Storm,TRUE,4,home +250527017,2005,2,2005-05-27,13,Sacramento Monarchs,TRUE,17,away +250527017,2005,2,2005-05-27,17,San Antonio Silver Stars,FALSE,13,home +250526009,2005,2,2005-05-26,5,Indiana Fever,TRUE,9,away +250526009,2005,2,2005-05-26,9,New York Liberty,FALSE,5,home +250526001,2005,2,2005-05-26,11,Phoenix Mercury,TRUE,1,away +250526001,2005,2,2005-05-26,1,Charlotte Sting,FALSE,11,home +250526016,2005,2,2005-05-26,6,Los Angeles Sparks,TRUE,16,away +250526016,2005,2,2005-05-26,16,Washington Mystics,FALSE,6,home +250525008,2005,2,2005-05-25,6,Los Angeles Sparks,FALSE,8,away +250525008,2005,2,2005-05-25,8,Minnesota Lynx,TRUE,6,home +250524005,2005,2,2005-05-24,11,Phoenix Mercury,FALSE,5,away +250524005,2005,2,2005-05-24,5,Indiana Fever,TRUE,11,home +250524003,2005,2,2005-05-24,17,San Antonio Silver Stars,FALSE,3,away +250524003,2005,2,2005-05-24,3,Detroit Shock,TRUE,17,home +250522004,2005,2,2005-05-22,8,Minnesota Lynx,FALSE,4,away +250522004,2005,2,2005-05-22,4,Houston Comets,TRUE,8,home +250522005,2005,2,2005-05-22,1,Charlotte Sting,FALSE,5,away +250522005,2005,2,2005-05-22,5,Indiana Fever,TRUE,1,home +250522016,2005,2,2005-05-22,18,Connecticut Sun,TRUE,16,away +250522016,2005,2,2005-05-22,16,Washington Mystics,FALSE,18,home +250522009,2005,2,2005-05-22,3,Detroit Shock,TRUE,9,away +250522009,2005,2,2005-05-22,9,New York Liberty,FALSE,3,home +250521011,2005,2,2005-05-21,13,Sacramento Monarchs,TRUE,11,away +250521011,2005,2,2005-05-21,11,Phoenix Mercury,FALSE,13,home +250521017,2005,2,2005-05-21,4,Houston Comets,TRUE,17,away +250521017,2005,2,2005-05-21,17,San Antonio Silver Stars,FALSE,4,home +250521001,2005,2,2005-05-21,16,Washington Mystics,TRUE,1,away +250521001,2005,2,2005-05-21,1,Charlotte Sting,FALSE,16,home +250521014,2005,2,2005-05-21,6,Los Angeles Sparks,TRUE,14,away +250521014,2005,2,2005-05-21,14,Seattle Storm,FALSE,6,home +250521003,2005,2,2005-05-21,18,Connecticut Sun,FALSE,3,away +250521003,2005,2,2005-05-21,3,Detroit Shock,TRUE,18,home +260909003,2006,3,2006-09-09,13,Sacramento Monarchs,FALSE,3,away +260909003,2006,3,2006-09-09,3,Detroit Shock,TRUE,13,home +260906013,2006,3,2006-09-06,3,Detroit Shock,TRUE,13,away +260906013,2006,3,2006-09-06,13,Sacramento Monarchs,FALSE,3,home +260903013,2006,3,2006-09-03,3,Detroit Shock,FALSE,13,away +260903013,2006,3,2006-09-03,13,Sacramento Monarchs,TRUE,3,home +260901003,2006,3,2006-09-01,13,Sacramento Monarchs,FALSE,3,away +260901003,2006,3,2006-09-01,3,Detroit Shock,TRUE,13,home +260830003,2006,3,2006-08-30,13,Sacramento Monarchs,TRUE,3,away +260830003,2006,3,2006-08-30,3,Detroit Shock,FALSE,13,home +260827018,2006,3,2006-08-27,3,Detroit Shock,TRUE,18,away +260827018,2006,3,2006-08-27,18,Connecticut Sun,FALSE,3,home +260826006,2006,3,2006-08-26,13,Sacramento Monarchs,TRUE,6,away +260826006,2006,3,2006-08-26,6,Los Angeles Sparks,FALSE,13,home +260826018,2006,3,2006-08-26,3,Detroit Shock,FALSE,18,away +260826018,2006,3,2006-08-26,18,Connecticut Sun,TRUE,3,home +260824013,2006,3,2006-08-24,6,Los Angeles Sparks,FALSE,13,away +260824013,2006,3,2006-08-24,13,Sacramento Monarchs,TRUE,6,home +260824003,2006,3,2006-08-24,18,Connecticut Sun,FALSE,3,away +260824003,2006,3,2006-08-24,3,Detroit Shock,TRUE,18,home +260822006,2006,3,2006-08-22,14,Seattle Storm,FALSE,6,away +260822006,2006,3,2006-08-22,6,Los Angeles Sparks,TRUE,14,home +260820006,2006,3,2006-08-20,14,Seattle Storm,FALSE,6,away +260820006,2006,3,2006-08-20,6,Los Angeles Sparks,TRUE,14,home +260820018,2006,3,2006-08-20,16,Washington Mystics,FALSE,18,away +260820018,2006,3,2006-08-20,18,Connecticut Sun,TRUE,16,home +260819003,2006,3,2006-08-19,5,Indiana Fever,FALSE,3,away +260819003,2006,3,2006-08-19,3,Detroit Shock,TRUE,5,home +260819013,2006,3,2006-08-19,4,Houston Comets,FALSE,13,away +260819013,2006,3,2006-08-19,13,Sacramento Monarchs,TRUE,4,home +260818014,2006,3,2006-08-18,6,Los Angeles Sparks,FALSE,14,away +260818014,2006,3,2006-08-18,14,Seattle Storm,TRUE,6,home +260818016,2006,3,2006-08-18,18,Connecticut Sun,TRUE,16,away +260818016,2006,3,2006-08-18,16,Washington Mystics,FALSE,18,home +260817004,2006,3,2006-08-17,13,Sacramento Monarchs,TRUE,4,away +260817004,2006,3,2006-08-17,4,Houston Comets,FALSE,13,home +260817005,2006,3,2006-08-17,3,Detroit Shock,TRUE,5,away +260817005,2006,3,2006-08-17,5,Indiana Fever,FALSE,3,home +260813011,2006,2,2006-08-13,13,Sacramento Monarchs,FALSE,11,away +260813011,2006,2,2006-08-13,11,Phoenix Mercury,TRUE,13,home +260813006,2006,2,2006-08-13,8,Minnesota Lynx,FALSE,6,away +260813006,2006,2,2006-08-13,6,Los Angeles Sparks,TRUE,8,home +260813005,2006,2,2006-08-13,19,Chicago Sky,TRUE,5,away +260813005,2006,2,2006-08-13,5,Indiana Fever,FALSE,19,home +260813003,2006,2,2006-08-13,18,Connecticut Sun,FALSE,3,away +260813003,2006,2,2006-08-13,3,Detroit Shock,TRUE,18,home +260813009,2006,2,2006-08-13,16,Washington Mystics,FALSE,9,away +260813009,2006,2,2006-08-13,9,New York Liberty,TRUE,16,home +260812017,2006,2,2006-08-12,11,Phoenix Mercury,TRUE,17,away +260812017,2006,2,2006-08-12,17,San Antonio Silver Stars,FALSE,11,home +260812001,2006,2,2006-08-12,19,Chicago Sky,FALSE,1,away +260812001,2006,2,2006-08-12,1,Charlotte Sting,TRUE,19,home +260812004,2006,2,2006-08-12,14,Seattle Storm,FALSE,4,away +260812004,2006,2,2006-08-12,4,Houston Comets,TRUE,14,home +260811009,2006,2,2006-08-11,1,Charlotte Sting,FALSE,9,away +260811009,2006,2,2006-08-11,9,New York Liberty,TRUE,1,home +260811016,2006,2,2006-08-11,3,Detroit Shock,FALSE,16,away +260811016,2006,2,2006-08-11,16,Washington Mystics,TRUE,3,home +260811018,2006,2,2006-08-11,5,Indiana Fever,TRUE,18,away +260811018,2006,2,2006-08-11,18,Connecticut Sun,FALSE,5,home +260810013,2006,2,2006-08-10,8,Minnesota Lynx,FALSE,13,away +260810013,2006,2,2006-08-10,13,Sacramento Monarchs,TRUE,8,home +260810004,2006,2,2006-08-10,11,Phoenix Mercury,TRUE,4,away +260810004,2006,2,2006-08-10,4,Houston Comets,FALSE,11,home +260810017,2006,2,2006-08-10,14,Seattle Storm,FALSE,17,away +260810017,2006,2,2006-08-10,17,San Antonio Silver Stars,TRUE,14,home +260810003,2006,2,2006-08-10,19,Chicago Sky,FALSE,3,away +260810003,2006,2,2006-08-10,3,Detroit Shock,TRUE,19,home +260809005,2006,2,2006-08-09,18,Connecticut Sun,TRUE,5,away +260809005,2006,2,2006-08-09,5,Indiana Fever,FALSE,18,home +260809006,2006,2,2006-08-09,13,Sacramento Monarchs,FALSE,6,away +260809006,2006,2,2006-08-09,6,Los Angeles Sparks,TRUE,13,home +260808011,2006,2,2006-08-08,8,Minnesota Lynx,FALSE,11,away +260808011,2006,2,2006-08-08,11,Phoenix Mercury,TRUE,8,home +260808003,2006,2,2006-08-08,14,Seattle Storm,TRUE,3,away +260808003,2006,2,2006-08-08,3,Detroit Shock,FALSE,14,home +260808009,2006,2,2006-08-08,5,Indiana Fever,TRUE,9,away +260808009,2006,2,2006-08-08,9,New York Liberty,FALSE,5,home +260808019,2006,2,2006-08-08,18,Connecticut Sun,TRUE,19,away +260808019,2006,2,2006-08-08,19,Chicago Sky,FALSE,18,home +260808001,2006,2,2006-08-08,4,Houston Comets,FALSE,1,away +260808001,2006,2,2006-08-08,1,Charlotte Sting,TRUE,4,home +260808016,2006,2,2006-08-08,17,San Antonio Silver Stars,FALSE,16,away +260808016,2006,2,2006-08-08,16,Washington Mystics,TRUE,17,home +260806008,2006,2,2006-08-06,17,San Antonio Silver Stars,FALSE,8,away +260806008,2006,2,2006-08-06,8,Minnesota Lynx,TRUE,17,home +260806003,2006,2,2006-08-06,9,New York Liberty,FALSE,3,away +260806003,2006,2,2006-08-06,3,Detroit Shock,TRUE,9,home +260806004,2006,2,2006-08-06,18,Connecticut Sun,TRUE,4,away +260806004,2006,2,2006-08-06,4,Houston Comets,FALSE,18,home +260805011,2006,2,2006-08-05,6,Los Angeles Sparks,FALSE,11,away +260805011,2006,2,2006-08-05,11,Phoenix Mercury,TRUE,6,home +260805013,2006,2,2006-08-05,16,Washington Mystics,FALSE,13,away +260805013,2006,2,2006-08-05,13,Sacramento Monarchs,TRUE,16,home +260805014,2006,2,2006-08-05,1,Charlotte Sting,FALSE,14,away +260805014,2006,2,2006-08-05,14,Seattle Storm,TRUE,1,home +260805009,2006,2,2006-08-05,19,Chicago Sky,FALSE,9,away +260805009,2006,2,2006-08-05,9,New York Liberty,TRUE,19,home +260805005,2006,2,2006-08-05,17,San Antonio Silver Stars,FALSE,5,away +260805005,2006,2,2006-08-05,5,Indiana Fever,TRUE,17,home +260804019,2006,2,2006-08-04,3,Detroit Shock,TRUE,19,away +260804019,2006,2,2006-08-04,19,Chicago Sky,FALSE,3,home +260804008,2006,2,2006-08-04,4,Houston Comets,TRUE,8,away +260804008,2006,2,2006-08-04,8,Minnesota Lynx,FALSE,4,home +260803011,2006,2,2006-08-03,1,Charlotte Sting,FALSE,11,away +260803011,2006,2,2006-08-03,11,Phoenix Mercury,TRUE,1,home +260803014,2006,2,2006-08-03,16,Washington Mystics,FALSE,14,away +260803014,2006,2,2006-08-03,14,Seattle Storm,TRUE,16,home +260803017,2006,2,2006-08-03,13,Sacramento Monarchs,TRUE,17,away +260803017,2006,2,2006-08-03,17,San Antonio Silver Stars,FALSE,13,home +260803009,2006,2,2006-08-03,3,Detroit Shock,FALSE,9,away +260803009,2006,2,2006-08-03,9,New York Liberty,TRUE,3,home +260803005,2006,2,2006-08-03,8,Minnesota Lynx,FALSE,5,away +260803005,2006,2,2006-08-03,5,Indiana Fever,TRUE,8,home +260803018,2006,2,2006-08-03,6,Los Angeles Sparks,FALSE,18,away +260803018,2006,2,2006-08-03,18,Connecticut Sun,TRUE,6,home +260801013,2006,2,2006-08-01,4,Houston Comets,FALSE,13,away +260801013,2006,2,2006-08-01,13,Sacramento Monarchs,TRUE,4,home +260801003,2006,2,2006-08-01,5,Indiana Fever,FALSE,3,away +260801003,2006,2,2006-08-01,3,Detroit Shock,TRUE,5,home +260801008,2006,2,2006-08-01,14,Seattle Storm,TRUE,8,away +260801008,2006,2,2006-08-01,8,Minnesota Lynx,FALSE,14,home +260801017,2006,2,2006-08-01,1,Charlotte Sting,TRUE,17,away +260801017,2006,2,2006-08-01,17,San Antonio Silver Stars,FALSE,1,home +260801019,2006,2,2006-08-01,11,Phoenix Mercury,TRUE,19,away +260801019,2006,2,2006-08-01,19,Chicago Sky,FALSE,11,home +260801016,2006,2,2006-08-01,6,Los Angeles Sparks,FALSE,16,away +260801016,2006,2,2006-08-01,16,Washington Mystics,TRUE,6,home +260801018,2006,2,2006-08-01,9,New York Liberty,FALSE,18,away +260801018,2006,2,2006-08-01,18,Connecticut Sun,TRUE,9,home +260730013,2006,2,2006-07-30,3,Detroit Shock,FALSE,13,away +260730013,2006,2,2006-07-30,13,Sacramento Monarchs,TRUE,3,home +260730014,2006,2,2006-07-30,6,Los Angeles Sparks,TRUE,14,away +260730014,2006,2,2006-07-30,14,Seattle Storm,FALSE,6,home +260730016,2006,2,2006-07-30,1,Charlotte Sting,FALSE,16,away +260730016,2006,2,2006-07-30,16,Washington Mystics,TRUE,1,home +260730011,2006,2,2006-07-30,4,Houston Comets,TRUE,11,away +260730011,2006,2,2006-07-30,11,Phoenix Mercury,FALSE,4,home +260730019,2006,2,2006-07-30,5,Indiana Fever,TRUE,19,away +260730019,2006,2,2006-07-30,19,Chicago Sky,FALSE,5,home +260730009,2006,2,2006-07-30,8,Minnesota Lynx,FALSE,9,away +260730009,2006,2,2006-07-30,9,New York Liberty,TRUE,8,home +260730018,2006,2,2006-07-30,17,San Antonio Silver Stars,FALSE,18,away +260730018,2006,2,2006-07-30,18,Connecticut Sun,TRUE,17,home +260729005,2006,2,2006-07-29,16,Washington Mystics,TRUE,5,away +260729005,2006,2,2006-07-29,5,Indiana Fever,FALSE,16,home +260729001,2006,2,2006-07-29,9,New York Liberty,TRUE,1,away +260729001,2006,2,2006-07-29,1,Charlotte Sting,FALSE,9,home +260728014,2006,2,2006-07-28,3,Detroit Shock,TRUE,14,away +260728014,2006,2,2006-07-28,14,Seattle Storm,FALSE,3,home +260728019,2006,2,2006-07-28,8,Minnesota Lynx,FALSE,19,away +260728019,2006,2,2006-07-28,19,Chicago Sky,TRUE,8,home +260728017,2006,2,2006-07-28,11,Phoenix Mercury,FALSE,17,away +260728017,2006,2,2006-07-28,17,San Antonio Silver Stars,TRUE,11,home +260728018,2006,2,2006-07-28,13,Sacramento Monarchs,FALSE,18,away +260728018,2006,2,2006-07-28,18,Connecticut Sun,TRUE,13,home +260727004,2006,2,2006-07-27,11,Phoenix Mercury,FALSE,4,away +260727004,2006,2,2006-07-27,4,Houston Comets,TRUE,11,home +260727008,2006,2,2006-07-27,1,Charlotte Sting,TRUE,8,away +260727008,2006,2,2006-07-27,8,Minnesota Lynx,FALSE,1,home +260727016,2006,2,2006-07-27,19,Chicago Sky,FALSE,16,away +260727016,2006,2,2006-07-27,16,Washington Mystics,TRUE,19,home +260726017,2006,2,2006-07-26,6,Los Angeles Sparks,TRUE,17,away +260726017,2006,2,2006-07-26,17,San Antonio Silver Stars,FALSE,6,home +260726003,2006,2,2006-07-26,13,Sacramento Monarchs,FALSE,3,away +260726003,2006,2,2006-07-26,3,Detroit Shock,TRUE,13,home +260725011,2006,2,2006-07-25,14,Seattle Storm,TRUE,11,away +260725011,2006,2,2006-07-25,11,Phoenix Mercury,FALSE,14,home +260725004,2006,2,2006-07-25,6,Los Angeles Sparks,TRUE,4,away +260725004,2006,2,2006-07-25,4,Houston Comets,FALSE,6,home +260725019,2006,2,2006-07-25,9,New York Liberty,TRUE,19,away +260725019,2006,2,2006-07-25,19,Chicago Sky,FALSE,9,home +260725018,2006,2,2006-07-25,16,Washington Mystics,FALSE,18,away +260725018,2006,2,2006-07-25,18,Connecticut Sun,TRUE,16,home +260725001,2006,2,2006-07-25,8,Minnesota Lynx,TRUE,1,away +260725001,2006,2,2006-07-25,1,Charlotte Sting,FALSE,8,home +260725005,2006,2,2006-07-25,13,Sacramento Monarchs,FALSE,5,away +260725005,2006,2,2006-07-25,5,Indiana Fever,TRUE,13,home +260724009,2006,2,2006-07-24,18,Connecticut Sun,TRUE,9,away +260724009,2006,2,2006-07-24,9,New York Liberty,FALSE,18,home +260723016,2006,2,2006-07-23,14,Seattle Storm,TRUE,16,away +260723016,2006,2,2006-07-23,16,Washington Mystics,FALSE,14,home +260722008,2006,2,2006-07-22,13,Sacramento Monarchs,TRUE,8,away +260722008,2006,2,2006-07-22,8,Minnesota Lynx,FALSE,13,home +260722017,2006,2,2006-07-22,18,Connecticut Sun,TRUE,17,away +260722017,2006,2,2006-07-22,17,San Antonio Silver Stars,FALSE,18,home +260722003,2006,2,2006-07-22,19,Chicago Sky,FALSE,3,away +260722003,2006,2,2006-07-22,3,Detroit Shock,TRUE,19,home +260722009,2006,2,2006-07-22,14,Seattle Storm,TRUE,9,away +260722009,2006,2,2006-07-22,9,New York Liberty,FALSE,14,home +260722005,2006,2,2006-07-22,6,Los Angeles Sparks,TRUE,5,away +260722005,2006,2,2006-07-22,5,Indiana Fever,FALSE,6,home +260722001,2006,2,2006-07-22,11,Phoenix Mercury,TRUE,1,away +260722001,2006,2,2006-07-22,1,Charlotte Sting,FALSE,11,home +260721017,2006,2,2006-07-21,16,Washington Mystics,TRUE,17,away +260721017,2006,2,2006-07-21,17,San Antonio Silver Stars,FALSE,16,home +260721003,2006,2,2006-07-21,6,Los Angeles Sparks,FALSE,3,away +260721003,2006,2,2006-07-21,3,Detroit Shock,TRUE,6,home +260720004,2006,2,2006-07-20,8,Minnesota Lynx,FALSE,4,away +260720004,2006,2,2006-07-20,4,Houston Comets,TRUE,8,home +260720018,2006,2,2006-07-20,19,Chicago Sky,FALSE,18,away +260720018,2006,2,2006-07-20,18,Connecticut Sun,TRUE,19,home +260720013,2006,2,2006-07-20,9,New York Liberty,FALSE,13,away +260720013,2006,2,2006-07-20,13,Sacramento Monarchs,TRUE,9,home +260720001,2006,2,2006-07-20,14,Seattle Storm,FALSE,1,away +260720001,2006,2,2006-07-20,1,Charlotte Sting,TRUE,14,home +260719008,2006,2,2006-07-19,19,Chicago Sky,FALSE,8,away +260719008,2006,2,2006-07-19,8,Minnesota Lynx,TRUE,19,home +260719003,2006,2,2006-07-19,1,Charlotte Sting,TRUE,3,away +260719003,2006,2,2006-07-19,3,Detroit Shock,FALSE,1,home +260719016,2006,2,2006-07-19,11,Phoenix Mercury,TRUE,16,away +260719016,2006,2,2006-07-19,16,Washington Mystics,FALSE,11,home +260718006,2006,2,2006-07-18,9,New York Liberty,FALSE,6,away +260718006,2006,2,2006-07-18,6,Los Angeles Sparks,TRUE,9,home +260718017,2006,2,2006-07-18,4,Houston Comets,FALSE,17,away +260718017,2006,2,2006-07-18,17,San Antonio Silver Stars,TRUE,4,home +260718014,2006,2,2006-07-18,13,Sacramento Monarchs,TRUE,14,away +260718014,2006,2,2006-07-18,14,Seattle Storm,FALSE,13,home +260718005,2006,2,2006-07-18,11,Phoenix Mercury,FALSE,5,away +260718005,2006,2,2006-07-18,5,Indiana Fever,TRUE,11,home +260716011,2006,2,2006-07-16,9,New York Liberty,FALSE,11,away +260716011,2006,2,2006-07-16,11,Phoenix Mercury,TRUE,9,home +260716014,2006,2,2006-07-16,18,Connecticut Sun,TRUE,14,away +260716014,2006,2,2006-07-16,14,Seattle Storm,FALSE,18,home +260716019,2006,2,2006-07-16,16,Washington Mystics,TRUE,19,away +260716019,2006,2,2006-07-16,19,Chicago Sky,FALSE,16,home +260716005,2006,2,2006-07-16,4,Houston Comets,FALSE,5,away +260716005,2006,2,2006-07-16,5,Indiana Fever,TRUE,4,home +260716008,2006,2,2006-07-16,6,Los Angeles Sparks,TRUE,8,away +260716008,2006,2,2006-07-16,8,Minnesota Lynx,FALSE,6,home +260716003,2006,2,2006-07-16,17,San Antonio Silver Stars,FALSE,3,away +260716003,2006,2,2006-07-16,3,Detroit Shock,TRUE,17,home +260715001,2006,2,2006-07-15,5,Indiana Fever,FALSE,1,away +260715001,2006,2,2006-07-15,1,Charlotte Sting,TRUE,5,home +260715013,2006,2,2006-07-15,18,Connecticut Sun,FALSE,13,away +260715013,2006,2,2006-07-15,13,Sacramento Monarchs,TRUE,18,home +260714011,2006,2,2006-07-14,6,Los Angeles Sparks,TRUE,11,away +260714011,2006,2,2006-07-14,11,Phoenix Mercury,FALSE,6,home +260714014,2006,2,2006-07-14,9,New York Liberty,FALSE,14,away +260714014,2006,2,2006-07-14,14,Seattle Storm,TRUE,9,home +260714019,2006,2,2006-07-14,4,Houston Comets,TRUE,19,away +260714019,2006,2,2006-07-14,19,Chicago Sky,FALSE,4,home +260714001,2006,2,2006-07-14,17,San Antonio Silver Stars,FALSE,1,away +260714001,2006,2,2006-07-14,1,Charlotte Sting,TRUE,17,home +260712098,2006,2,2006-07-12,99,WEST,FALSE,98,away +260712098,2006,2,2006-07-12,98,EAST,TRUE,99,home +260709013,2006,2,2006-07-09,1,Charlotte Sting,FALSE,13,away +260709013,2006,2,2006-07-09,13,Sacramento Monarchs,TRUE,1,home +260709014,2006,2,2006-07-09,5,Indiana Fever,TRUE,14,away +260709014,2006,2,2006-07-09,14,Seattle Storm,FALSE,5,home +260709004,2006,2,2006-07-09,3,Detroit Shock,TRUE,4,away +260709004,2006,2,2006-07-09,4,Houston Comets,FALSE,3,home +260709008,2006,2,2006-07-09,17,San Antonio Silver Stars,FALSE,8,away +260709008,2006,2,2006-07-09,8,Minnesota Lynx,TRUE,17,home +260709009,2006,2,2006-07-09,11,Phoenix Mercury,TRUE,9,away +260709009,2006,2,2006-07-09,9,New York Liberty,FALSE,11,home +260709016,2006,2,2006-07-09,19,Chicago Sky,FALSE,16,away +260709016,2006,2,2006-07-09,16,Washington Mystics,TRUE,19,home +260708006,2006,2,2006-07-08,1,Charlotte Sting,FALSE,6,away +260708006,2006,2,2006-07-08,6,Los Angeles Sparks,TRUE,1,home +260708018,2006,2,2006-07-08,11,Phoenix Mercury,FALSE,18,away +260708018,2006,2,2006-07-08,18,Connecticut Sun,TRUE,11,home +260707006,2006,2,2006-07-07,5,Indiana Fever,FALSE,6,away +260707006,2006,2,2006-07-07,6,Los Angeles Sparks,TRUE,5,home +260707019,2006,2,2006-07-07,9,New York Liberty,FALSE,19,away +260707019,2006,2,2006-07-07,19,Chicago Sky,TRUE,9,home +260707008,2006,2,2006-07-07,3,Detroit Shock,TRUE,8,away +260707008,2006,2,2006-07-07,8,Minnesota Lynx,FALSE,3,home +260707017,2006,2,2006-07-07,4,Houston Comets,FALSE,17,away +260707017,2006,2,2006-07-07,17,San Antonio Silver Stars,TRUE,4,home +260707016,2006,2,2006-07-07,13,Sacramento Monarchs,TRUE,16,away +260707016,2006,2,2006-07-07,16,Washington Mystics,FALSE,13,home +260706003,2006,2,2006-07-06,11,Phoenix Mercury,TRUE,3,away +260706003,2006,2,2006-07-06,3,Detroit Shock,FALSE,11,home +260706009,2006,2,2006-07-06,13,Sacramento Monarchs,TRUE,9,away +260706009,2006,2,2006-07-06,9,New York Liberty,FALSE,13,home +260706018,2006,2,2006-07-06,1,Charlotte Sting,FALSE,18,away +260706018,2006,2,2006-07-06,18,Connecticut Sun,TRUE,1,home +260705006,2006,2,2006-07-05,4,Houston Comets,FALSE,6,away +260705006,2006,2,2006-07-05,6,Los Angeles Sparks,TRUE,4,home +260705008,2006,2,2006-07-05,16,Washington Mystics,FALSE,8,away +260705008,2006,2,2006-07-05,8,Minnesota Lynx,TRUE,16,home +260703006,2006,2,2006-07-03,17,San Antonio Silver Stars,TRUE,6,away +260703006,2006,2,2006-07-03,6,Los Angeles Sparks,FALSE,17,home +260702011,2006,2,2006-07-02,16,Washington Mystics,TRUE,11,away +260702011,2006,2,2006-07-02,11,Phoenix Mercury,FALSE,16,home +260702004,2006,2,2006-07-02,13,Sacramento Monarchs,FALSE,4,away +260702004,2006,2,2006-07-02,4,Houston Comets,TRUE,13,home +260701006,2006,2,2006-07-01,16,Washington Mystics,FALSE,6,away +260701006,2006,2,2006-07-01,6,Los Angeles Sparks,TRUE,16,home +260701014,2006,2,2006-07-01,8,Minnesota Lynx,FALSE,14,away +260701014,2006,2,2006-07-01,14,Seattle Storm,TRUE,8,home +260701017,2006,2,2006-07-01,19,Chicago Sky,FALSE,17,away +260701017,2006,2,2006-07-01,17,San Antonio Silver Stars,TRUE,19,home +260701005,2006,2,2006-07-01,18,Connecticut Sun,TRUE,5,away +260701005,2006,2,2006-07-01,5,Indiana Fever,FALSE,18,home +260701001,2006,2,2006-07-01,13,Sacramento Monarchs,TRUE,1,away +260701001,2006,2,2006-07-01,1,Charlotte Sting,FALSE,13,home +260630006,2006,2,2006-06-30,11,Phoenix Mercury,FALSE,6,away +260630006,2006,2,2006-06-30,6,Los Angeles Sparks,TRUE,11,home +260630009,2006,2,2006-06-30,17,San Antonio Silver Stars,TRUE,9,away +260630009,2006,2,2006-06-30,9,New York Liberty,FALSE,17,home +260630018,2006,2,2006-06-30,3,Detroit Shock,TRUE,18,away +260630018,2006,2,2006-06-30,18,Connecticut Sun,FALSE,3,home +260629013,2006,2,2006-06-29,8,Minnesota Lynx,FALSE,13,away +260629013,2006,2,2006-06-29,13,Sacramento Monarchs,TRUE,8,home +260629019,2006,2,2006-06-29,1,Charlotte Sting,FALSE,19,away +260629019,2006,2,2006-06-29,19,Chicago Sky,TRUE,1,home +260629005,2006,2,2006-06-29,3,Detroit Shock,FALSE,5,away +260629005,2006,2,2006-06-29,5,Indiana Fever,TRUE,3,home +260629004,2006,2,2006-06-29,16,Washington Mystics,FALSE,4,away +260629004,2006,2,2006-06-29,4,Houston Comets,TRUE,16,home +260628006,2006,2,2006-06-28,14,Seattle Storm,TRUE,6,away +260628006,2006,2,2006-06-28,6,Los Angeles Sparks,FALSE,14,home +260628011,2006,2,2006-06-28,8,Minnesota Lynx,FALSE,11,away +260628011,2006,2,2006-06-28,11,Phoenix Mercury,TRUE,8,home +260627014,2006,2,2006-06-27,13,Sacramento Monarchs,FALSE,14,away +260627014,2006,2,2006-06-27,14,Seattle Storm,TRUE,13,home +260627017,2006,2,2006-06-27,3,Detroit Shock,TRUE,17,away +260627017,2006,2,2006-06-27,17,San Antonio Silver Stars,FALSE,3,home +260627009,2006,2,2006-06-27,1,Charlotte Sting,TRUE,9,away +260627009,2006,2,2006-06-27,9,New York Liberty,FALSE,1,home +260627016,2006,2,2006-06-27,5,Indiana Fever,TRUE,16,away +260627016,2006,2,2006-06-27,16,Washington Mystics,FALSE,5,home +260627018,2006,2,2006-06-27,4,Houston Comets,FALSE,18,away +260627018,2006,2,2006-06-27,18,Connecticut Sun,TRUE,4,home +260625006,2006,2,2006-06-25,17,San Antonio Silver Stars,FALSE,6,away +260625006,2006,2,2006-06-25,6,Los Angeles Sparks,TRUE,17,home +260625011,2006,2,2006-06-25,19,Chicago Sky,FALSE,11,away +260625011,2006,2,2006-06-25,11,Phoenix Mercury,TRUE,19,home +260625013,2006,2,2006-06-25,5,Indiana Fever,FALSE,13,away +260625013,2006,2,2006-06-25,13,Sacramento Monarchs,TRUE,5,home +260625004,2006,2,2006-06-25,14,Seattle Storm,FALSE,4,away +260625004,2006,2,2006-06-25,4,Houston Comets,TRUE,14,home +260625016,2006,2,2006-06-25,18,Connecticut Sun,FALSE,16,away +260625016,2006,2,2006-06-25,16,Washington Mystics,TRUE,18,home +260625003,2006,2,2006-06-25,1,Charlotte Sting,FALSE,3,away +260625003,2006,2,2006-06-25,3,Detroit Shock,TRUE,1,home +260624008,2006,2,2006-06-24,9,New York Liberty,TRUE,8,away +260624008,2006,2,2006-06-24,8,Minnesota Lynx,FALSE,9,home +260624003,2006,2,2006-06-24,16,Washington Mystics,FALSE,3,away +260624003,2006,2,2006-06-24,3,Detroit Shock,TRUE,16,home +260623011,2006,2,2006-06-23,5,Indiana Fever,TRUE,11,away +260623011,2006,2,2006-06-23,11,Phoenix Mercury,FALSE,5,home +260623013,2006,2,2006-06-23,6,Los Angeles Sparks,TRUE,13,away +260623013,2006,2,2006-06-23,13,Sacramento Monarchs,FALSE,6,home +260623014,2006,2,2006-06-23,17,San Antonio Silver Stars,FALSE,14,away +260623014,2006,2,2006-06-23,14,Seattle Storm,TRUE,17,home +260623004,2006,2,2006-06-23,1,Charlotte Sting,FALSE,4,away +260623004,2006,2,2006-06-23,4,Houston Comets,TRUE,1,home +260623019,2006,2,2006-06-23,18,Connecticut Sun,TRUE,19,away +260623019,2006,2,2006-06-23,19,Chicago Sky,FALSE,18,home +260622018,2006,2,2006-06-22,8,Minnesota Lynx,FALSE,18,away +260622018,2006,2,2006-06-22,18,Connecticut Sun,TRUE,8,home +260622001,2006,2,2006-06-22,3,Detroit Shock,TRUE,1,away +260622001,2006,2,2006-06-22,1,Charlotte Sting,FALSE,3,home +260621006,2006,2,2006-06-21,4,Houston Comets,FALSE,6,away +260621006,2006,2,2006-06-21,6,Los Angeles Sparks,TRUE,4,home +260621013,2006,2,2006-06-21,17,San Antonio Silver Stars,FALSE,13,away +260621013,2006,2,2006-06-21,13,Sacramento Monarchs,TRUE,17,home +260621014,2006,2,2006-06-21,11,Phoenix Mercury,TRUE,14,away +260621014,2006,2,2006-06-21,14,Seattle Storm,FALSE,11,home +260621009,2006,2,2006-06-21,16,Washington Mystics,FALSE,9,away +260621009,2006,2,2006-06-21,9,New York Liberty,TRUE,16,home +260621005,2006,2,2006-06-21,19,Chicago Sky,FALSE,5,away +260621005,2006,2,2006-06-21,5,Indiana Fever,TRUE,19,home +260620001,2006,2,2006-06-20,18,Connecticut Sun,TRUE,1,away +260620001,2006,2,2006-06-20,1,Charlotte Sting,FALSE,18,home +260618006,2006,2,2006-06-18,13,Sacramento Monarchs,FALSE,6,away +260618006,2006,2,2006-06-18,6,Los Angeles Sparks,TRUE,13,home +260618005,2006,2,2006-06-18,1,Charlotte Sting,FALSE,5,away +260618005,2006,2,2006-06-18,5,Indiana Fever,TRUE,1,home +260618008,2006,2,2006-06-18,11,Phoenix Mercury,FALSE,8,away +260618008,2006,2,2006-06-18,8,Minnesota Lynx,TRUE,11,home +260617006,2006,2,2006-06-17,18,Connecticut Sun,FALSE,6,away +260617006,2006,2,2006-06-17,6,Los Angeles Sparks,TRUE,18,home +260617019,2006,2,2006-06-17,17,San Antonio Silver Stars,TRUE,19,away +260617019,2006,2,2006-06-17,19,Chicago Sky,FALSE,17,home +260617003,2006,2,2006-06-17,4,Houston Comets,FALSE,3,away +260617003,2006,2,2006-06-17,3,Detroit Shock,TRUE,4,home +260617016,2006,2,2006-06-17,9,New York Liberty,FALSE,16,away +260617016,2006,2,2006-06-17,16,Washington Mystics,TRUE,9,home +260617013,2006,2,2006-06-17,14,Seattle Storm,FALSE,13,away +260617013,2006,2,2006-06-17,13,Sacramento Monarchs,TRUE,14,home +260616011,2006,2,2006-06-16,18,Connecticut Sun,FALSE,11,away +260616011,2006,2,2006-06-16,11,Phoenix Mercury,TRUE,18,home +260616017,2006,2,2006-06-16,8,Minnesota Lynx,FALSE,17,away +260616017,2006,2,2006-06-16,17,San Antonio Silver Stars,TRUE,8,home +260616003,2006,2,2006-06-16,5,Indiana Fever,FALSE,3,away +260616003,2006,2,2006-06-16,3,Detroit Shock,TRUE,5,home +260616009,2006,2,2006-06-16,4,Houston Comets,TRUE,9,away +260616009,2006,2,2006-06-16,9,New York Liberty,FALSE,4,home +260615019,2006,2,2006-06-15,14,Seattle Storm,TRUE,19,away +260615019,2006,2,2006-06-15,19,Chicago Sky,FALSE,14,home +260615001,2006,2,2006-06-15,16,Washington Mystics,TRUE,1,away +260615001,2006,2,2006-06-15,1,Charlotte Sting,FALSE,16,home +260614004,2006,2,2006-06-14,13,Sacramento Monarchs,FALSE,4,away +260614004,2006,2,2006-06-14,4,Houston Comets,TRUE,13,home +260614008,2006,2,2006-06-14,14,Seattle Storm,TRUE,8,away +260614008,2006,2,2006-06-14,8,Minnesota Lynx,FALSE,14,home +260613006,2006,2,2006-06-13,11,Phoenix Mercury,FALSE,6,away +260613006,2006,2,2006-06-13,6,Los Angeles Sparks,TRUE,11,home +260613009,2006,2,2006-06-13,5,Indiana Fever,TRUE,9,away +260613009,2006,2,2006-06-13,9,New York Liberty,FALSE,5,home +260613016,2006,2,2006-06-13,1,Charlotte Sting,FALSE,16,away +260613016,2006,2,2006-06-13,16,Washington Mystics,TRUE,1,home +260611005,2006,2,2006-06-11,14,Seattle Storm,FALSE,5,away +260611005,2006,2,2006-06-11,5,Indiana Fever,TRUE,14,home +260611008,2006,2,2006-06-11,4,Houston Comets,FALSE,8,away +260611008,2006,2,2006-06-11,8,Minnesota Lynx,TRUE,4,home +260611018,2006,2,2006-06-11,16,Washington Mystics,FALSE,18,away +260611018,2006,2,2006-06-11,18,Connecticut Sun,TRUE,16,home +260610013,2006,2,2006-06-10,19,Chicago Sky,FALSE,13,away +260610013,2006,2,2006-06-10,13,Sacramento Monarchs,TRUE,19,home +260610017,2006,2,2006-06-10,9,New York Liberty,TRUE,17,away +260610017,2006,2,2006-06-10,17,San Antonio Silver Stars,FALSE,9,home +260609006,2006,2,2006-06-09,19,Chicago Sky,FALSE,6,away +260609006,2006,2,2006-06-09,6,Los Angeles Sparks,TRUE,19,home +260609011,2006,2,2006-06-09,3,Detroit Shock,FALSE,11,away +260609011,2006,2,2006-06-09,11,Phoenix Mercury,TRUE,3,home +260609004,2006,2,2006-06-09,9,New York Liberty,FALSE,4,away +260609004,2006,2,2006-06-09,4,Houston Comets,TRUE,9,home +260609017,2006,2,2006-06-09,8,Minnesota Lynx,TRUE,17,away +260609017,2006,2,2006-06-09,17,San Antonio Silver Stars,FALSE,8,home +260609001,2006,2,2006-06-09,5,Indiana Fever,FALSE,1,away +260609001,2006,2,2006-06-09,1,Charlotte Sting,TRUE,5,home +260609018,2006,2,2006-06-09,14,Seattle Storm,FALSE,18,away +260609018,2006,2,2006-06-09,18,Connecticut Sun,TRUE,14,home +260607006,2006,2,2006-06-07,3,Detroit Shock,FALSE,6,away +260607006,2006,2,2006-06-07,6,Los Angeles Sparks,TRUE,3,home +260607014,2006,2,2006-06-07,19,Chicago Sky,FALSE,14,away +260607014,2006,2,2006-06-07,14,Seattle Storm,TRUE,19,home +260607005,2006,2,2006-06-07,16,Washington Mystics,FALSE,5,away +260607005,2006,2,2006-06-07,5,Indiana Fever,TRUE,16,home +260607009,2006,2,2006-06-07,18,Connecticut Sun,TRUE,9,away +260607009,2006,2,2006-06-07,9,New York Liberty,FALSE,18,home +260606011,2006,2,2006-06-06,13,Sacramento Monarchs,FALSE,11,away +260606011,2006,2,2006-06-06,11,Phoenix Mercury,TRUE,13,home +260606016,2006,2,2006-06-06,4,Houston Comets,FALSE,16,away +260606016,2006,2,2006-06-06,16,Washington Mystics,TRUE,4,home +260604014,2006,2,2006-06-04,17,San Antonio Silver Stars,TRUE,14,away +260604014,2006,2,2006-06-04,14,Seattle Storm,FALSE,17,home +260604019,2006,2,2006-06-04,3,Detroit Shock,TRUE,19,away +260604019,2006,2,2006-06-04,19,Chicago Sky,FALSE,3,home +260604004,2006,2,2006-06-04,8,Minnesota Lynx,FALSE,4,away +260604004,2006,2,2006-06-04,4,Houston Comets,TRUE,8,home +260603009,2006,2,2006-06-03,6,Los Angeles Sparks,FALSE,9,away +260603009,2006,2,2006-06-03,9,New York Liberty,TRUE,6,home +260603016,2006,2,2006-06-03,3,Detroit Shock,FALSE,16,away +260603016,2006,2,2006-06-03,16,Washington Mystics,TRUE,3,home +260603018,2006,2,2006-06-03,1,Charlotte Sting,FALSE,18,away +260603018,2006,2,2006-06-03,18,Connecticut Sun,TRUE,1,home +260602013,2006,2,2006-06-02,17,San Antonio Silver Stars,TRUE,13,away +260602013,2006,2,2006-06-02,13,Sacramento Monarchs,FALSE,17,home +260602014,2006,2,2006-06-02,11,Phoenix Mercury,FALSE,14,away +260602014,2006,2,2006-06-02,14,Seattle Storm,TRUE,11,home +260602004,2006,2,2006-06-02,19,Chicago Sky,FALSE,4,away +260602004,2006,2,2006-06-02,4,Houston Comets,TRUE,19,home +260602008,2006,2,2006-06-02,5,Indiana Fever,FALSE,8,away +260602008,2006,2,2006-06-02,8,Minnesota Lynx,TRUE,5,home +260601003,2006,2,2006-06-01,9,New York Liberty,FALSE,3,away +260601003,2006,2,2006-06-01,3,Detroit Shock,TRUE,9,home +260601001,2006,2,2006-06-01,18,Connecticut Sun,TRUE,1,away +260601001,2006,2,2006-06-01,1,Charlotte Sting,FALSE,18,home +260531011,2006,2,2006-05-31,17,San Antonio Silver Stars,TRUE,11,away +260531011,2006,2,2006-05-31,11,Phoenix Mercury,FALSE,17,home +260531013,2006,2,2006-05-31,14,Seattle Storm,FALSE,13,away +260531013,2006,2,2006-05-31,13,Sacramento Monarchs,TRUE,14,home +260531004,2006,2,2006-05-31,5,Indiana Fever,FALSE,4,away +260531004,2006,2,2006-05-31,4,Houston Comets,TRUE,5,home +260531008,2006,2,2006-05-31,6,Los Angeles Sparks,FALSE,8,away +260531008,2006,2,2006-05-31,8,Minnesota Lynx,TRUE,6,home +260530019,2006,2,2006-05-30,6,Los Angeles Sparks,TRUE,19,away +260530019,2006,2,2006-05-30,19,Chicago Sky,FALSE,6,home +260530005,2006,2,2006-05-30,9,New York Liberty,FALSE,5,away +260530005,2006,2,2006-05-30,5,Indiana Fever,TRUE,9,home +260527016,2006,2,2006-05-27,8,Minnesota Lynx,FALSE,16,away +260527016,2006,2,2006-05-27,16,Washington Mystics,TRUE,8,home +260527018,2006,2,2006-05-27,3,Detroit Shock,TRUE,18,away +260527018,2006,2,2006-05-27,18,Connecticut Sun,FALSE,3,home +260525011,2006,2,2006-05-25,14,Seattle Storm,TRUE,11,away +260525011,2006,2,2006-05-25,11,Phoenix Mercury,FALSE,14,home +260525013,2006,2,2006-05-25,4,Houston Comets,TRUE,13,away +260525013,2006,2,2006-05-25,13,Sacramento Monarchs,FALSE,4,home +260525017,2006,2,2006-05-25,6,Los Angeles Sparks,TRUE,17,away +260525017,2006,2,2006-05-25,17,San Antonio Silver Stars,FALSE,6,home +260525001,2006,2,2006-05-25,16,Washington Mystics,FALSE,1,away +260525001,2006,2,2006-05-25,1,Charlotte Sting,TRUE,16,home +260524003,2006,2,2006-05-24,8,Minnesota Lynx,FALSE,3,away +260524003,2006,2,2006-05-24,3,Detroit Shock,TRUE,8,home +260523014,2006,2,2006-05-23,4,Houston Comets,TRUE,14,away +260523014,2006,2,2006-05-23,14,Seattle Storm,FALSE,4,home +260523008,2006,2,2006-05-23,18,Connecticut Sun,TRUE,8,away +260523008,2006,2,2006-05-23,8,Minnesota Lynx,FALSE,18,home +260523017,2006,2,2006-05-23,5,Indiana Fever,TRUE,17,away +260523017,2006,2,2006-05-23,17,San Antonio Silver Stars,FALSE,5,home +260523001,2006,2,2006-05-23,6,Los Angeles Sparks,TRUE,1,away +260523001,2006,2,2006-05-23,1,Charlotte Sting,FALSE,6,home +260523016,2006,2,2006-05-23,9,New York Liberty,FALSE,16,away +260523016,2006,2,2006-05-23,16,Washington Mystics,TRUE,9,home +260521014,2006,2,2006-05-21,6,Los Angeles Sparks,FALSE,14,away +260521014,2006,2,2006-05-21,14,Seattle Storm,TRUE,6,home +260521004,2006,2,2006-05-21,17,San Antonio Silver Stars,TRUE,4,away +260521004,2006,2,2006-05-21,4,Houston Comets,FALSE,17,home +260520005,2006,2,2006-05-20,3,Detroit Shock,FALSE,5,away +260520005,2006,2,2006-05-20,5,Indiana Fever,TRUE,3,home +260520018,2006,2,2006-05-20,9,New York Liberty,FALSE,18,away +260520018,2006,2,2006-05-20,18,Connecticut Sun,TRUE,9,home +260520001,2006,2,2006-05-20,19,Chicago Sky,TRUE,1,away +260520001,2006,2,2006-05-20,1,Charlotte Sting,FALSE,19,home +260520013,2006,2,2006-05-20,11,Phoenix Mercury,FALSE,13,away +260520013,2006,2,2006-05-20,13,Sacramento Monarchs,TRUE,11,home +270916003,2007,3,2007-09-16,11,Phoenix Mercury,TRUE,3,away +270916003,2007,3,2007-09-16,3,Detroit Shock,FALSE,11,home +270913011,2007,3,2007-09-13,3,Detroit Shock,FALSE,11,away +270913011,2007,3,2007-09-13,11,Phoenix Mercury,TRUE,3,home +270911011,2007,3,2007-09-11,3,Detroit Shock,TRUE,11,away +270911011,2007,3,2007-09-11,11,Phoenix Mercury,FALSE,3,home +270908003,2007,3,2007-09-08,11,Phoenix Mercury,TRUE,3,away +270908003,2007,3,2007-09-08,3,Detroit Shock,FALSE,11,home +270905003,2007,3,2007-09-05,11,Phoenix Mercury,FALSE,3,away +270905003,2007,3,2007-09-05,3,Detroit Shock,TRUE,11,home +270903003,2007,3,2007-09-03,5,Indiana Fever,FALSE,3,away +270903003,2007,3,2007-09-03,3,Detroit Shock,TRUE,5,home +270902003,2007,3,2007-09-02,5,Indiana Fever,FALSE,3,away +270902003,2007,3,2007-09-02,3,Detroit Shock,TRUE,5,home +270901011,2007,3,2007-09-01,17,San Antonio Silver Stars,FALSE,11,away +270901011,2007,3,2007-09-01,11,Phoenix Mercury,TRUE,17,home +270831005,2007,3,2007-08-31,3,Detroit Shock,FALSE,5,away +270831005,2007,3,2007-08-31,5,Indiana Fever,TRUE,3,home +270830017,2007,3,2007-08-30,11,Phoenix Mercury,TRUE,17,away +270830017,2007,3,2007-08-30,17,San Antonio Silver Stars,FALSE,11,home +270828003,2007,3,2007-08-28,9,New York Liberty,FALSE,3,away +270828003,2007,3,2007-08-28,3,Detroit Shock,TRUE,9,home +270827017,2007,3,2007-08-27,13,Sacramento Monarchs,FALSE,17,away +270827017,2007,3,2007-08-27,17,San Antonio Silver Stars,TRUE,13,home +270827005,2007,3,2007-08-27,18,Connecticut Sun,FALSE,5,away +270827005,2007,3,2007-08-27,5,Indiana Fever,TRUE,18,home +270826011,2007,3,2007-08-26,14,Seattle Storm,FALSE,11,away +270826011,2007,3,2007-08-26,11,Phoenix Mercury,TRUE,14,home +270826003,2007,3,2007-08-26,9,New York Liberty,FALSE,3,away +270826003,2007,3,2007-08-26,3,Detroit Shock,TRUE,9,home +270825005,2007,3,2007-08-25,18,Connecticut Sun,FALSE,5,away +270825005,2007,3,2007-08-25,5,Indiana Fever,TRUE,18,home +270825017,2007,3,2007-08-25,13,Sacramento Monarchs,FALSE,17,away +270825017,2007,3,2007-08-25,17,San Antonio Silver Stars,TRUE,13,home +270824014,2007,3,2007-08-24,11,Phoenix Mercury,TRUE,14,away +270824014,2007,3,2007-08-24,14,Seattle Storm,FALSE,11,home +270824009,2007,3,2007-08-24,3,Detroit Shock,FALSE,9,away +270824009,2007,3,2007-08-24,9,New York Liberty,TRUE,3,home +270823013,2007,3,2007-08-23,17,San Antonio Silver Stars,FALSE,13,away +270823013,2007,3,2007-08-23,13,Sacramento Monarchs,TRUE,17,home +270823018,2007,3,2007-08-23,5,Indiana Fever,FALSE,18,away +270823018,2007,3,2007-08-23,18,Connecticut Sun,TRUE,5,home +270819006,2007,2,2007-08-19,4,Houston Comets,TRUE,6,away +270819006,2007,2,2007-08-19,6,Los Angeles Sparks,FALSE,4,home +270819011,2007,2,2007-08-19,13,Sacramento Monarchs,FALSE,11,away +270819011,2007,2,2007-08-19,11,Phoenix Mercury,TRUE,13,home +270819005,2007,2,2007-08-19,3,Detroit Shock,FALSE,5,away +270819005,2007,2,2007-08-19,5,Indiana Fever,TRUE,3,home +270819008,2007,2,2007-08-19,17,San Antonio Silver Stars,FALSE,8,away +270819008,2007,2,2007-08-19,8,Minnesota Lynx,TRUE,17,home +270819009,2007,2,2007-08-19,19,Chicago Sky,FALSE,9,away +270819009,2007,2,2007-08-19,9,New York Liberty,TRUE,19,home +270819018,2007,2,2007-08-19,16,Washington Mystics,TRUE,18,away +270819018,2007,2,2007-08-19,18,Connecticut Sun,FALSE,16,home +270817013,2007,2,2007-08-17,11,Phoenix Mercury,TRUE,13,away +270817013,2007,2,2007-08-17,13,Sacramento Monarchs,FALSE,11,home +270817014,2007,2,2007-08-17,6,Los Angeles Sparks,FALSE,14,away +270817014,2007,2,2007-08-17,14,Seattle Storm,TRUE,6,home +270817017,2007,2,2007-08-17,5,Indiana Fever,TRUE,17,away +270817017,2007,2,2007-08-17,17,San Antonio Silver Stars,FALSE,5,home +270817009,2007,2,2007-08-17,18,Connecticut Sun,FALSE,9,away +270817009,2007,2,2007-08-17,9,New York Liberty,TRUE,18,home +270816004,2007,2,2007-08-16,19,Chicago Sky,TRUE,4,away +270816004,2007,2,2007-08-16,4,Houston Comets,FALSE,19,home +270816008,2007,2,2007-08-16,3,Detroit Shock,FALSE,8,away +270816008,2007,2,2007-08-16,8,Minnesota Lynx,TRUE,3,home +270816016,2007,2,2007-08-16,9,New York Liberty,TRUE,16,away +270816016,2007,2,2007-08-16,16,Washington Mystics,FALSE,9,home +270815013,2007,2,2007-08-15,17,San Antonio Silver Stars,FALSE,13,away +270815013,2007,2,2007-08-15,13,Sacramento Monarchs,TRUE,17,home +270815005,2007,2,2007-08-15,18,Connecticut Sun,TRUE,5,away +270815005,2007,2,2007-08-15,5,Indiana Fever,FALSE,18,home +270814006,2007,2,2007-08-14,17,San Antonio Silver Stars,TRUE,6,away +270814006,2007,2,2007-08-14,6,Los Angeles Sparks,FALSE,17,home +270814014,2007,2,2007-08-14,8,Minnesota Lynx,FALSE,14,away +270814014,2007,2,2007-08-14,14,Seattle Storm,TRUE,8,home +270814019,2007,2,2007-08-14,9,New York Liberty,FALSE,19,away +270814019,2007,2,2007-08-14,19,Chicago Sky,TRUE,9,home +270814003,2007,2,2007-08-14,4,Houston Comets,TRUE,3,away +270814003,2007,2,2007-08-14,3,Detroit Shock,FALSE,4,home +270814016,2007,2,2007-08-14,18,Connecticut Sun,FALSE,16,away +270814016,2007,2,2007-08-14,16,Washington Mystics,TRUE,18,home +270812006,2007,2,2007-08-12,8,Minnesota Lynx,FALSE,6,away +270812006,2007,2,2007-08-12,6,Los Angeles Sparks,TRUE,8,home +270812013,2007,2,2007-08-12,16,Washington Mystics,FALSE,13,away +270812013,2007,2,2007-08-12,13,Sacramento Monarchs,TRUE,16,home +270812009,2007,2,2007-08-12,3,Detroit Shock,FALSE,9,away +270812009,2007,2,2007-08-12,9,New York Liberty,TRUE,3,home +270811011,2007,2,2007-08-11,6,Los Angeles Sparks,FALSE,11,away +270811011,2007,2,2007-08-11,11,Phoenix Mercury,TRUE,6,home +270811014,2007,2,2007-08-11,16,Washington Mystics,FALSE,14,away +270811014,2007,2,2007-08-11,14,Seattle Storm,TRUE,16,home +270811017,2007,2,2007-08-11,4,Houston Comets,FALSE,17,away +270811017,2007,2,2007-08-11,17,San Antonio Silver Stars,TRUE,4,home +270811019,2007,2,2007-08-11,18,Connecticut Sun,TRUE,19,away +270811019,2007,2,2007-08-11,19,Chicago Sky,FALSE,18,home +270811003,2007,2,2007-08-11,5,Indiana Fever,FALSE,3,away +270811003,2007,2,2007-08-11,3,Detroit Shock,TRUE,5,home +270810004,2007,2,2007-08-10,13,Sacramento Monarchs,FALSE,4,away +270810004,2007,2,2007-08-10,4,Houston Comets,TRUE,13,home +270809006,2007,2,2007-08-09,16,Washington Mystics,TRUE,6,away +270809006,2007,2,2007-08-09,6,Los Angeles Sparks,FALSE,16,home +270809011,2007,2,2007-08-09,9,New York Liberty,FALSE,11,away +270809011,2007,2,2007-08-09,11,Phoenix Mercury,TRUE,9,home +270809017,2007,2,2007-08-09,13,Sacramento Monarchs,FALSE,17,away +270809017,2007,2,2007-08-09,17,San Antonio Silver Stars,TRUE,13,home +270809003,2007,2,2007-08-09,14,Seattle Storm,FALSE,3,away +270809003,2007,2,2007-08-09,3,Detroit Shock,TRUE,14,home +270807006,2007,2,2007-08-07,11,Phoenix Mercury,TRUE,6,away +270807006,2007,2,2007-08-07,6,Los Angeles Sparks,FALSE,11,home +270807004,2007,2,2007-08-07,9,New York Liberty,TRUE,4,away +270807004,2007,2,2007-08-07,4,Houston Comets,FALSE,9,home +270807008,2007,2,2007-08-07,14,Seattle Storm,FALSE,8,away +270807008,2007,2,2007-08-07,8,Minnesota Lynx,TRUE,14,home +270807019,2007,2,2007-08-07,5,Indiana Fever,TRUE,19,away +270807019,2007,2,2007-08-07,19,Chicago Sky,FALSE,5,home +270807018,2007,2,2007-08-07,13,Sacramento Monarchs,TRUE,18,away +270807018,2007,2,2007-08-07,18,Connecticut Sun,FALSE,13,home +270807017,2007,2,2007-08-07,16,Washington Mystics,TRUE,17,away +270807017,2007,2,2007-08-07,17,San Antonio Silver Stars,FALSE,16,home +270805005,2007,2,2007-08-05,13,Sacramento Monarchs,FALSE,5,away +270805005,2007,2,2007-08-05,5,Indiana Fever,TRUE,13,home +270805016,2007,2,2007-08-05,19,Chicago Sky,FALSE,16,away +270805016,2007,2,2007-08-05,16,Washington Mystics,TRUE,19,home +270804014,2007,2,2007-08-04,11,Phoenix Mercury,FALSE,14,away +270804014,2007,2,2007-08-04,14,Seattle Storm,TRUE,11,home +270804008,2007,2,2007-08-04,4,Houston Comets,TRUE,8,away +270804008,2007,2,2007-08-04,8,Minnesota Lynx,FALSE,4,home +270804017,2007,2,2007-08-04,6,Los Angeles Sparks,FALSE,17,away +270804017,2007,2,2007-08-04,17,San Antonio Silver Stars,TRUE,6,home +270804018,2007,2,2007-08-04,5,Indiana Fever,FALSE,18,away +270804018,2007,2,2007-08-04,18,Connecticut Sun,TRUE,5,home +270803013,2007,2,2007-08-03,14,Seattle Storm,FALSE,13,away +270803013,2007,2,2007-08-03,13,Sacramento Monarchs,TRUE,14,home +270803004,2007,2,2007-08-03,6,Los Angeles Sparks,FALSE,4,away +270803004,2007,2,2007-08-03,4,Houston Comets,TRUE,6,home +270803019,2007,2,2007-08-03,3,Detroit Shock,TRUE,19,away +270803019,2007,2,2007-08-03,19,Chicago Sky,FALSE,3,home +270803016,2007,2,2007-08-03,9,New York Liberty,FALSE,16,away +270803016,2007,2,2007-08-03,16,Washington Mystics,TRUE,9,home +270802017,2007,2,2007-08-02,11,Phoenix Mercury,TRUE,17,away +270802017,2007,2,2007-08-02,17,San Antonio Silver Stars,FALSE,11,home +270802009,2007,2,2007-08-02,8,Minnesota Lynx,FALSE,9,away +270802009,2007,2,2007-08-02,9,New York Liberty,TRUE,8,home +270731014,2007,2,2007-07-31,13,Sacramento Monarchs,TRUE,14,away +270731014,2007,2,2007-07-31,14,Seattle Storm,FALSE,13,home +270731004,2007,2,2007-07-31,11,Phoenix Mercury,TRUE,4,away +270731004,2007,2,2007-07-31,4,Houston Comets,FALSE,11,home +270731017,2007,2,2007-07-31,3,Detroit Shock,TRUE,17,away +270731017,2007,2,2007-07-31,17,San Antonio Silver Stars,FALSE,3,home +270731009,2007,2,2007-07-31,6,Los Angeles Sparks,TRUE,9,away +270731009,2007,2,2007-07-31,9,New York Liberty,FALSE,6,home +270731005,2007,2,2007-07-31,16,Washington Mystics,FALSE,5,away +270731005,2007,2,2007-07-31,5,Indiana Fever,TRUE,16,home +270731018,2007,2,2007-07-31,19,Chicago Sky,FALSE,18,away +270731018,2007,2,2007-07-31,18,Connecticut Sun,TRUE,19,home +270729013,2007,2,2007-07-29,8,Minnesota Lynx,TRUE,13,away +270729013,2007,2,2007-07-29,13,Sacramento Monarchs,FALSE,8,home +270729014,2007,2,2007-07-29,17,San Antonio Silver Stars,TRUE,14,away +270729014,2007,2,2007-07-29,14,Seattle Storm,FALSE,17,home +270729011,2007,2,2007-07-29,5,Indiana Fever,FALSE,11,away +270729011,2007,2,2007-07-29,11,Phoenix Mercury,TRUE,5,home +270729003,2007,2,2007-07-29,6,Los Angeles Sparks,FALSE,3,away +270729003,2007,2,2007-07-29,3,Detroit Shock,TRUE,6,home +270729019,2007,2,2007-07-29,4,Houston Comets,FALSE,19,away +270729019,2007,2,2007-07-29,19,Chicago Sky,TRUE,4,home +270729009,2007,2,2007-07-29,18,Connecticut Sun,TRUE,9,away +270729009,2007,2,2007-07-29,9,New York Liberty,FALSE,18,home +270728016,2007,2,2007-07-28,3,Detroit Shock,TRUE,16,away +270728016,2007,2,2007-07-28,16,Washington Mystics,FALSE,3,home +270727014,2007,2,2007-07-27,5,Indiana Fever,FALSE,14,away +270727014,2007,2,2007-07-27,14,Seattle Storm,TRUE,5,home +270727019,2007,2,2007-07-27,11,Phoenix Mercury,TRUE,19,away +270727019,2007,2,2007-07-27,19,Chicago Sky,FALSE,11,home +270727008,2007,2,2007-07-27,6,Los Angeles Sparks,FALSE,8,away +270727008,2007,2,2007-07-27,8,Minnesota Lynx,TRUE,6,home +270727017,2007,2,2007-07-27,4,Houston Comets,TRUE,17,away +270727017,2007,2,2007-07-27,17,San Antonio Silver Stars,FALSE,4,home +270726003,2007,2,2007-07-26,19,Chicago Sky,TRUE,3,away +270726003,2007,2,2007-07-26,3,Detroit Shock,FALSE,19,home +270726018,2007,2,2007-07-26,9,New York Liberty,FALSE,18,away +270726018,2007,2,2007-07-26,18,Connecticut Sun,TRUE,9,home +270726013,2007,2,2007-07-26,5,Indiana Fever,FALSE,13,away +270726013,2007,2,2007-07-26,13,Sacramento Monarchs,TRUE,5,home +270725008,2007,2,2007-07-25,11,Phoenix Mercury,TRUE,8,away +270725008,2007,2,2007-07-25,8,Minnesota Lynx,FALSE,11,home +270724013,2007,2,2007-07-24,6,Los Angeles Sparks,FALSE,13,away +270724013,2007,2,2007-07-24,13,Sacramento Monarchs,TRUE,6,home +270724018,2007,2,2007-07-24,3,Detroit Shock,TRUE,18,away +270724018,2007,2,2007-07-24,18,Connecticut Sun,FALSE,3,home +270724005,2007,2,2007-07-24,17,San Antonio Silver Stars,TRUE,5,away +270724005,2007,2,2007-07-24,5,Indiana Fever,FALSE,17,home +270724016,2007,2,2007-07-24,14,Seattle Storm,FALSE,16,away +270724016,2007,2,2007-07-24,16,Washington Mystics,TRUE,14,home +270722011,2007,2,2007-07-22,8,Minnesota Lynx,FALSE,11,away +270722011,2007,2,2007-07-22,11,Phoenix Mercury,TRUE,8,home +270722019,2007,2,2007-07-22,17,San Antonio Silver Stars,FALSE,19,away +270722019,2007,2,2007-07-22,19,Chicago Sky,TRUE,17,home +270722009,2007,2,2007-07-22,14,Seattle Storm,TRUE,9,away +270722009,2007,2,2007-07-22,9,New York Liberty,FALSE,14,home +270722018,2007,2,2007-07-22,4,Houston Comets,FALSE,18,away +270722018,2007,2,2007-07-22,18,Connecticut Sun,TRUE,4,home +270721019,2007,2,2007-07-21,5,Indiana Fever,FALSE,19,away +270721019,2007,2,2007-07-21,19,Chicago Sky,TRUE,5,home +270721003,2007,2,2007-07-21,16,Washington Mystics,FALSE,3,away +270721003,2007,2,2007-07-21,3,Detroit Shock,TRUE,16,home +270720011,2007,2,2007-07-20,6,Los Angeles Sparks,TRUE,11,away +270720011,2007,2,2007-07-20,11,Phoenix Mercury,FALSE,6,home +270720008,2007,2,2007-07-20,16,Washington Mystics,TRUE,8,away +270720008,2007,2,2007-07-20,8,Minnesota Lynx,FALSE,16,home +270720017,2007,2,2007-07-20,13,Sacramento Monarchs,FALSE,17,away +270720017,2007,2,2007-07-20,17,San Antonio Silver Stars,TRUE,13,home +270720009,2007,2,2007-07-20,4,Houston Comets,TRUE,9,away +270720009,2007,2,2007-07-20,9,New York Liberty,FALSE,4,home +270720005,2007,2,2007-07-20,3,Detroit Shock,TRUE,5,away +270720005,2007,2,2007-07-20,5,Indiana Fever,FALSE,3,home +270720018,2007,2,2007-07-20,14,Seattle Storm,FALSE,18,away +270720018,2007,2,2007-07-20,18,Connecticut Sun,TRUE,14,home +270718005,2007,2,2007-07-18,19,Chicago Sky,FALSE,5,away +270718005,2007,2,2007-07-18,5,Indiana Fever,TRUE,19,home +270718003,2007,2,2007-07-18,9,New York Liberty,FALSE,3,away +270718003,2007,2,2007-07-18,3,Detroit Shock,TRUE,9,home +270718016,2007,2,2007-07-18,4,Houston Comets,FALSE,16,away +270718016,2007,2,2007-07-18,16,Washington Mystics,TRUE,4,home +270717006,2007,2,2007-07-17,17,San Antonio Silver Stars,TRUE,6,away +270717006,2007,2,2007-07-17,6,Los Angeles Sparks,FALSE,17,home +270717011,2007,2,2007-07-17,14,Seattle Storm,FALSE,11,away +270717011,2007,2,2007-07-17,11,Phoenix Mercury,TRUE,14,home +270717018,2007,2,2007-07-17,8,Minnesota Lynx,FALSE,18,away +270717018,2007,2,2007-07-17,18,Connecticut Sun,TRUE,8,home +270715098,2007,2,2007-07-15,99,WEST,FALSE,98,away +270715098,2007,2,2007-07-15,98,EAST,TRUE,99,home +270712013,2007,2,2007-07-12,18,Connecticut Sun,TRUE,13,away +270712013,2007,2,2007-07-12,13,Sacramento Monarchs,FALSE,18,home +270712019,2007,2,2007-07-12,3,Detroit Shock,TRUE,19,away +270712019,2007,2,2007-07-12,19,Chicago Sky,FALSE,3,home +270712005,2007,2,2007-07-12,9,New York Liberty,FALSE,5,away +270712005,2007,2,2007-07-12,5,Indiana Fever,TRUE,9,home +270712004,2007,2,2007-07-12,8,Minnesota Lynx,FALSE,4,away +270712004,2007,2,2007-07-12,4,Houston Comets,TRUE,8,home +270711011,2007,2,2007-07-11,17,San Antonio Silver Stars,TRUE,11,away +270711011,2007,2,2007-07-11,11,Phoenix Mercury,FALSE,17,home +270711014,2007,2,2007-07-11,18,Connecticut Sun,TRUE,14,away +270711014,2007,2,2007-07-11,14,Seattle Storm,FALSE,18,home +270710004,2007,2,2007-07-10,5,Indiana Fever,TRUE,4,away +270710004,2007,2,2007-07-10,4,Houston Comets,FALSE,5,home +270710003,2007,2,2007-07-10,19,Chicago Sky,FALSE,3,away +270710003,2007,2,2007-07-10,3,Detroit Shock,TRUE,19,home +270710016,2007,2,2007-07-10,8,Minnesota Lynx,FALSE,16,away +270710016,2007,2,2007-07-10,16,Washington Mystics,TRUE,8,home +270710006,2007,2,2007-07-10,14,Seattle Storm,TRUE,6,away +270710006,2007,2,2007-07-10,6,Los Angeles Sparks,FALSE,14,home +270708003,2007,2,2007-07-08,11,Phoenix Mercury,FALSE,3,away +270708003,2007,2,2007-07-08,3,Detroit Shock,TRUE,11,home +270708005,2007,2,2007-07-08,19,Chicago Sky,FALSE,5,away +270708005,2007,2,2007-07-08,5,Indiana Fever,TRUE,19,home +270708008,2007,2,2007-07-08,4,Houston Comets,TRUE,8,away +270708008,2007,2,2007-07-08,8,Minnesota Lynx,FALSE,4,home +270708009,2007,2,2007-07-08,13,Sacramento Monarchs,FALSE,9,away +270708009,2007,2,2007-07-08,9,New York Liberty,TRUE,13,home +270707006,2007,2,2007-07-07,18,Connecticut Sun,TRUE,6,away +270707006,2007,2,2007-07-07,6,Los Angeles Sparks,FALSE,18,home +270707017,2007,2,2007-07-07,14,Seattle Storm,FALSE,17,away +270707017,2007,2,2007-07-07,17,San Antonio Silver Stars,TRUE,14,home +270707019,2007,2,2007-07-07,16,Washington Mystics,TRUE,19,away +270707019,2007,2,2007-07-07,19,Chicago Sky,FALSE,16,home +270706011,2007,2,2007-07-06,18,Connecticut Sun,FALSE,11,away +270706011,2007,2,2007-07-06,11,Phoenix Mercury,TRUE,18,home +270706004,2007,2,2007-07-06,14,Seattle Storm,TRUE,4,away +270706004,2007,2,2007-07-06,4,Houston Comets,FALSE,14,home +270706008,2007,2,2007-07-06,13,Sacramento Monarchs,TRUE,8,away +270706008,2007,2,2007-07-06,8,Minnesota Lynx,FALSE,13,home +270706003,2007,2,2007-07-06,9,New York Liberty,TRUE,3,away +270706003,2007,2,2007-07-06,3,Detroit Shock,FALSE,9,home +270705006,2007,2,2007-07-05,5,Indiana Fever,TRUE,6,away +270705006,2007,2,2007-07-05,6,Los Angeles Sparks,FALSE,5,home +270703014,2007,2,2007-07-03,6,Los Angeles Sparks,FALSE,14,away +270703014,2007,2,2007-07-03,14,Seattle Storm,TRUE,6,home +270703008,2007,2,2007-07-03,11,Phoenix Mercury,TRUE,8,away +270703008,2007,2,2007-07-03,8,Minnesota Lynx,FALSE,11,home +270703016,2007,2,2007-07-03,17,San Antonio Silver Stars,TRUE,16,away +270703016,2007,2,2007-07-03,16,Washington Mystics,FALSE,17,home +270701006,2007,2,2007-07-01,19,Chicago Sky,TRUE,6,away +270701006,2007,2,2007-07-01,6,Los Angeles Sparks,FALSE,19,home +270701013,2007,2,2007-07-01,8,Minnesota Lynx,FALSE,13,away +270701013,2007,2,2007-07-01,13,Sacramento Monarchs,TRUE,8,home +270701014,2007,2,2007-07-01,9,New York Liberty,FALSE,14,away +270701014,2007,2,2007-07-01,14,Seattle Storm,TRUE,9,home +270701003,2007,2,2007-07-01,17,San Antonio Silver Stars,TRUE,3,away +270701003,2007,2,2007-07-01,3,Detroit Shock,FALSE,17,home +270701016,2007,2,2007-07-01,5,Indiana Fever,TRUE,16,away +270701016,2007,2,2007-07-01,16,Washington Mystics,FALSE,5,home +270630004,2007,2,2007-06-30,11,Phoenix Mercury,TRUE,4,away +270630004,2007,2,2007-06-30,4,Houston Comets,FALSE,11,home +270629006,2007,2,2007-06-29,9,New York Liberty,TRUE,6,away +270629006,2007,2,2007-06-29,6,Los Angeles Sparks,FALSE,9,home +270629013,2007,2,2007-06-29,19,Chicago Sky,TRUE,13,away +270629013,2007,2,2007-06-29,13,Sacramento Monarchs,FALSE,19,home +270629017,2007,2,2007-06-29,8,Minnesota Lynx,TRUE,17,away +270629017,2007,2,2007-06-29,17,San Antonio Silver Stars,FALSE,8,home +270629016,2007,2,2007-06-29,3,Detroit Shock,FALSE,16,away +270629016,2007,2,2007-06-29,16,Washington Mystics,TRUE,3,home +270629018,2007,2,2007-06-29,5,Indiana Fever,FALSE,18,away +270629018,2007,2,2007-06-29,18,Connecticut Sun,TRUE,5,home +270628004,2007,2,2007-06-28,14,Seattle Storm,FALSE,4,away +270628004,2007,2,2007-06-28,4,Houston Comets,TRUE,14,home +270627006,2007,2,2007-06-27,13,Sacramento Monarchs,FALSE,6,away +270627006,2007,2,2007-06-27,6,Los Angeles Sparks,TRUE,13,home +270627003,2007,2,2007-06-27,18,Connecticut Sun,FALSE,3,away +270627003,2007,2,2007-06-27,3,Detroit Shock,TRUE,18,home +270626013,2007,2,2007-06-26,9,New York Liberty,FALSE,13,away +270626013,2007,2,2007-06-26,13,Sacramento Monarchs,TRUE,9,home +270626014,2007,2,2007-06-26,19,Chicago Sky,FALSE,14,away +270626014,2007,2,2007-06-26,14,Seattle Storm,TRUE,19,home +270626004,2007,2,2007-06-26,17,San Antonio Silver Stars,FALSE,4,away +270626004,2007,2,2007-06-26,4,Houston Comets,TRUE,17,home +270626018,2007,2,2007-06-26,16,Washington Mystics,TRUE,18,away +270626018,2007,2,2007-06-26,18,Connecticut Sun,FALSE,16,home +270624006,2007,2,2007-06-24,14,Seattle Storm,TRUE,6,away +270624006,2007,2,2007-06-24,6,Los Angeles Sparks,FALSE,14,home +270624011,2007,2,2007-06-24,4,Houston Comets,FALSE,11,away +270624011,2007,2,2007-06-24,11,Phoenix Mercury,TRUE,4,home +270624009,2007,2,2007-06-24,5,Indiana Fever,TRUE,9,away +270624009,2007,2,2007-06-24,9,New York Liberty,FALSE,5,home +270623013,2007,2,2007-06-23,3,Detroit Shock,FALSE,13,away +270623013,2007,2,2007-06-23,13,Sacramento Monarchs,TRUE,3,home +270623019,2007,2,2007-06-23,16,Washington Mystics,TRUE,19,away +270623019,2007,2,2007-06-23,19,Chicago Sky,FALSE,16,home +270623018,2007,2,2007-06-23,17,San Antonio Silver Stars,TRUE,18,away +270623018,2007,2,2007-06-23,18,Connecticut Sun,FALSE,17,home +270622006,2007,2,2007-06-22,13,Sacramento Monarchs,FALSE,6,away +270622006,2007,2,2007-06-22,6,Los Angeles Sparks,TRUE,13,home +270622011,2007,2,2007-06-22,3,Detroit Shock,TRUE,11,away +270622011,2007,2,2007-06-22,11,Phoenix Mercury,FALSE,3,home +270622004,2007,2,2007-06-22,16,Washington Mystics,FALSE,4,away +270622004,2007,2,2007-06-22,4,Houston Comets,TRUE,16,home +270622008,2007,2,2007-06-22,14,Seattle Storm,FALSE,8,away +270622008,2007,2,2007-06-22,8,Minnesota Lynx,TRUE,14,home +270622009,2007,2,2007-06-22,17,San Antonio Silver Stars,TRUE,9,away +270622009,2007,2,2007-06-22,9,New York Liberty,FALSE,17,home +270622005,2007,2,2007-06-22,18,Connecticut Sun,TRUE,5,away +270622005,2007,2,2007-06-22,5,Indiana Fever,FALSE,18,home +270620011,2007,2,2007-06-20,16,Washington Mystics,TRUE,11,away +270620011,2007,2,2007-06-20,11,Phoenix Mercury,FALSE,16,home +270620014,2007,2,2007-06-20,3,Detroit Shock,TRUE,14,away +270620014,2007,2,2007-06-20,14,Seattle Storm,FALSE,3,home +270620004,2007,2,2007-06-20,6,Los Angeles Sparks,FALSE,4,away +270620004,2007,2,2007-06-20,4,Houston Comets,TRUE,6,home +270620017,2007,2,2007-06-20,8,Minnesota Lynx,FALSE,17,away +270620017,2007,2,2007-06-20,17,San Antonio Silver Stars,TRUE,8,home +270620018,2007,2,2007-06-20,9,New York Liberty,TRUE,18,away +270620018,2007,2,2007-06-20,18,Connecticut Sun,FALSE,9,home +270619019,2007,2,2007-06-19,13,Sacramento Monarchs,TRUE,19,away +270619019,2007,2,2007-06-19,19,Chicago Sky,FALSE,13,home +270618006,2007,2,2007-06-18,3,Detroit Shock,TRUE,6,away +270618006,2007,2,2007-06-18,6,Los Angeles Sparks,FALSE,3,home +270617018,2007,2,2007-06-17,19,Chicago Sky,TRUE,18,away +270617018,2007,2,2007-06-17,18,Connecticut Sun,FALSE,19,home +270616013,2007,2,2007-06-16,4,Houston Comets,FALSE,13,away +270616013,2007,2,2007-06-16,13,Sacramento Monarchs,TRUE,4,home +270616008,2007,2,2007-06-16,6,Los Angeles Sparks,FALSE,8,away +270616008,2007,2,2007-06-16,8,Minnesota Lynx,TRUE,6,home +270616017,2007,2,2007-06-16,9,New York Liberty,FALSE,17,away +270616017,2007,2,2007-06-16,17,San Antonio Silver Stars,TRUE,9,home +270616003,2007,2,2007-06-16,5,Indiana Fever,TRUE,3,away +270616003,2007,2,2007-06-16,3,Detroit Shock,FALSE,5,home +270615014,2007,2,2007-06-15,4,Houston Comets,FALSE,14,away +270615014,2007,2,2007-06-15,14,Seattle Storm,TRUE,4,home +270615019,2007,2,2007-06-15,9,New York Liberty,FALSE,19,away +270615019,2007,2,2007-06-15,19,Chicago Sky,TRUE,9,home +270615003,2007,2,2007-06-15,18,Connecticut Sun,FALSE,3,away +270615003,2007,2,2007-06-15,3,Detroit Shock,TRUE,18,home +270615005,2007,2,2007-06-15,11,Phoenix Mercury,TRUE,5,away +270615005,2007,2,2007-06-15,5,Indiana Fever,FALSE,11,home +270615016,2007,2,2007-06-15,6,Los Angeles Sparks,TRUE,16,away +270615016,2007,2,2007-06-15,16,Washington Mystics,FALSE,6,home +270613006,2007,2,2007-06-13,4,Houston Comets,FALSE,6,away +270613006,2007,2,2007-06-13,6,Los Angeles Sparks,TRUE,4,home +270613008,2007,2,2007-06-13,18,Connecticut Sun,FALSE,8,away +270613008,2007,2,2007-06-13,8,Minnesota Lynx,TRUE,18,home +270613005,2007,2,2007-06-13,14,Seattle Storm,FALSE,5,away +270613005,2007,2,2007-06-13,5,Indiana Fever,TRUE,14,home +270613016,2007,2,2007-06-13,11,Phoenix Mercury,FALSE,16,away +270613016,2007,2,2007-06-13,16,Washington Mystics,TRUE,11,home +270612019,2007,2,2007-06-12,14,Seattle Storm,TRUE,19,away +270612019,2007,2,2007-06-12,19,Chicago Sky,FALSE,14,home +270612009,2007,2,2007-06-12,16,Washington Mystics,FALSE,9,away +270612009,2007,2,2007-06-12,9,New York Liberty,TRUE,16,home +270611004,2007,2,2007-06-11,13,Sacramento Monarchs,TRUE,4,away +270611004,2007,2,2007-06-11,4,Houston Comets,FALSE,13,home +270610005,2007,2,2007-06-10,9,New York Liberty,FALSE,5,away +270610005,2007,2,2007-06-10,5,Indiana Fever,TRUE,9,home +270610018,2007,2,2007-06-10,3,Detroit Shock,TRUE,18,away +270610018,2007,2,2007-06-10,18,Connecticut Sun,FALSE,3,home +270609013,2007,2,2007-06-09,11,Phoenix Mercury,TRUE,13,away +270609013,2007,2,2007-06-09,13,Sacramento Monarchs,FALSE,11,home +270609014,2007,2,2007-06-09,8,Minnesota Lynx,FALSE,14,away +270609014,2007,2,2007-06-09,14,Seattle Storm,TRUE,8,home +270609017,2007,2,2007-06-09,19,Chicago Sky,TRUE,17,away +270609017,2007,2,2007-06-09,17,San Antonio Silver Stars,FALSE,19,home +270608006,2007,2,2007-06-08,8,Minnesota Lynx,FALSE,6,away +270608006,2007,2,2007-06-08,6,Los Angeles Sparks,TRUE,8,home +270608004,2007,2,2007-06-08,18,Connecticut Sun,TRUE,4,away +270608004,2007,2,2007-06-08,4,Houston Comets,FALSE,18,home +270608009,2007,2,2007-06-08,3,Detroit Shock,TRUE,9,away +270608009,2007,2,2007-06-08,9,New York Liberty,FALSE,3,home +270608016,2007,2,2007-06-08,5,Indiana Fever,TRUE,16,away +270608016,2007,2,2007-06-08,16,Washington Mystics,FALSE,5,home +270607011,2007,2,2007-06-07,19,Chicago Sky,FALSE,11,away +270607011,2007,2,2007-06-07,11,Phoenix Mercury,TRUE,19,home +270607013,2007,2,2007-06-07,14,Seattle Storm,FALSE,13,away +270607013,2007,2,2007-06-07,13,Sacramento Monarchs,TRUE,14,home +270606005,2007,2,2007-06-06,4,Houston Comets,FALSE,5,away +270606005,2007,2,2007-06-06,5,Indiana Fever,TRUE,4,home +270605011,2007,2,2007-06-05,8,Minnesota Lynx,TRUE,11,away +270605011,2007,2,2007-06-05,11,Phoenix Mercury,FALSE,8,home +270605013,2007,2,2007-06-05,17,San Antonio Silver Stars,FALSE,13,away +270605013,2007,2,2007-06-05,13,Sacramento Monarchs,TRUE,17,home +270605009,2007,2,2007-06-05,5,Indiana Fever,FALSE,9,away +270605009,2007,2,2007-06-05,9,New York Liberty,TRUE,5,home +270603005,2007,2,2007-06-03,16,Washington Mystics,FALSE,5,away +270603005,2007,2,2007-06-03,5,Indiana Fever,TRUE,16,home +270603019,2007,2,2007-06-03,8,Minnesota Lynx,FALSE,19,away +270603019,2007,2,2007-06-03,19,Chicago Sky,TRUE,8,home +270603009,2007,2,2007-06-03,11,Phoenix Mercury,FALSE,9,away +270603009,2007,2,2007-06-03,9,New York Liberty,TRUE,11,home +270602013,2007,2,2007-06-02,6,Los Angeles Sparks,FALSE,13,away +270602013,2007,2,2007-06-02,13,Sacramento Monarchs,TRUE,6,home +270602014,2007,2,2007-06-02,17,San Antonio Silver Stars,TRUE,14,away +270602014,2007,2,2007-06-02,14,Seattle Storm,FALSE,17,home +270602004,2007,2,2007-06-02,3,Detroit Shock,TRUE,4,away +270602004,2007,2,2007-06-02,4,Houston Comets,FALSE,3,home +270602018,2007,2,2007-06-02,11,Phoenix Mercury,FALSE,18,away +270602018,2007,2,2007-06-02,18,Connecticut Sun,TRUE,11,home +270601008,2007,2,2007-06-01,9,New York Liberty,TRUE,8,away +270601008,2007,2,2007-06-01,8,Minnesota Lynx,FALSE,9,home +270601016,2007,2,2007-06-01,19,Chicago Sky,TRUE,16,away +270601016,2007,2,2007-06-01,16,Washington Mystics,FALSE,19,home +270531017,2007,2,2007-05-31,11,Phoenix Mercury,TRUE,17,away +270531017,2007,2,2007-05-31,17,San Antonio Silver Stars,FALSE,11,home +270531019,2007,2,2007-05-31,18,Connecticut Sun,TRUE,19,away +270531019,2007,2,2007-05-31,19,Chicago Sky,FALSE,18,home +270530003,2007,2,2007-05-30,16,Washington Mystics,FALSE,3,away +270530003,2007,2,2007-05-30,3,Detroit Shock,TRUE,16,home +270529011,2007,2,2007-05-29,13,Sacramento Monarchs,FALSE,11,away +270529011,2007,2,2007-05-29,11,Phoenix Mercury,TRUE,13,home +270529004,2007,2,2007-05-29,17,San Antonio Silver Stars,TRUE,4,away +270529004,2007,2,2007-05-29,4,Houston Comets,FALSE,17,home +270529008,2007,2,2007-05-29,5,Indiana Fever,TRUE,8,away +270529008,2007,2,2007-05-29,8,Minnesota Lynx,FALSE,5,home +270526018,2007,2,2007-05-26,6,Los Angeles Sparks,TRUE,18,away +270526018,2007,2,2007-05-26,18,Connecticut Sun,FALSE,6,home +270525011,2007,2,2007-05-25,4,Houston Comets,FALSE,11,away +270525011,2007,2,2007-05-25,11,Phoenix Mercury,TRUE,4,home +270525008,2007,2,2007-05-25,19,Chicago Sky,TRUE,8,away +270525008,2007,2,2007-05-25,8,Minnesota Lynx,FALSE,19,home +270525017,2007,2,2007-05-25,14,Seattle Storm,FALSE,17,away +270525017,2007,2,2007-05-25,17,San Antonio Silver Stars,TRUE,14,home +270524005,2007,2,2007-05-24,6,Los Angeles Sparks,FALSE,5,away +270524005,2007,2,2007-05-24,5,Indiana Fever,TRUE,6,home +270524009,2007,2,2007-05-24,16,Washington Mystics,FALSE,9,away +270524009,2007,2,2007-05-24,9,New York Liberty,TRUE,16,home +270523014,2007,2,2007-05-23,11,Phoenix Mercury,FALSE,14,away +270523014,2007,2,2007-05-23,14,Seattle Storm,TRUE,11,home +270523017,2007,2,2007-05-23,18,Connecticut Sun,FALSE,17,away +270523017,2007,2,2007-05-23,17,San Antonio Silver Stars,TRUE,18,home +270522019,2007,2,2007-05-22,6,Los Angeles Sparks,TRUE,19,away +270522019,2007,2,2007-05-22,19,Chicago Sky,FALSE,6,home +270522003,2007,2,2007-05-22,8,Minnesota Lynx,FALSE,3,away +270522003,2007,2,2007-05-22,3,Detroit Shock,TRUE,8,home +270522016,2007,2,2007-05-22,13,Sacramento Monarchs,TRUE,16,away +270522016,2007,2,2007-05-22,16,Washington Mystics,FALSE,13,home +270520008,2007,2,2007-05-20,13,Sacramento Monarchs,TRUE,8,away +270520008,2007,2,2007-05-20,8,Minnesota Lynx,FALSE,13,home +270520009,2007,2,2007-05-20,19,Chicago Sky,FALSE,9,away +270520009,2007,2,2007-05-20,9,New York Liberty,TRUE,19,home +270519011,2007,2,2007-05-19,17,San Antonio Silver Stars,FALSE,11,away +270519011,2007,2,2007-05-19,11,Phoenix Mercury,TRUE,17,home +270519014,2007,2,2007-05-19,4,Houston Comets,FALSE,14,away +270519014,2007,2,2007-05-19,14,Seattle Storm,TRUE,4,home +270519005,2007,2,2007-05-19,8,Minnesota Lynx,FALSE,5,away +270519005,2007,2,2007-05-19,5,Indiana Fever,TRUE,8,home +270519016,2007,2,2007-05-19,18,Connecticut Sun,TRUE,16,away +270519016,2007,2,2007-05-19,16,Washington Mystics,FALSE,18,home +270519003,2007,2,2007-05-19,13,Sacramento Monarchs,FALSE,3,away +270519003,2007,2,2007-05-19,3,Detroit Shock,TRUE,13,home +281005003,2008,3,2008-10-05,17,San Antonio Silver Stars,FALSE,3,away +281005003,2008,3,2008-10-05,3,Detroit Shock,TRUE,17,home +281003017,2008,3,2008-10-03,3,Detroit Shock,TRUE,17,away +281003017,2008,3,2008-10-03,17,San Antonio Silver Stars,FALSE,3,home +281001017,2008,3,2008-10-01,3,Detroit Shock,TRUE,17,away +281001017,2008,3,2008-10-01,17,San Antonio Silver Stars,FALSE,3,home +280929003,2008,3,2008-09-29,9,New York Liberty,FALSE,3,away +280929003,2008,3,2008-09-29,3,Detroit Shock,TRUE,9,home +280928017,2008,3,2008-09-28,6,Los Angeles Sparks,FALSE,17,away +280928017,2008,3,2008-09-28,17,San Antonio Silver Stars,TRUE,6,home +280928003,2008,3,2008-09-28,9,New York Liberty,FALSE,3,away +280928003,2008,3,2008-09-28,3,Detroit Shock,TRUE,9,home +280927017,2008,3,2008-09-27,6,Los Angeles Sparks,FALSE,17,away +280927017,2008,3,2008-09-27,17,San Antonio Silver Stars,TRUE,6,home +280926009,2008,3,2008-09-26,3,Detroit Shock,FALSE,9,away +280926009,2008,3,2008-09-26,9,New York Liberty,TRUE,3,home +280925006,2008,3,2008-09-25,17,San Antonio Silver Stars,FALSE,6,away +280925006,2008,3,2008-09-25,6,Los Angeles Sparks,TRUE,17,home +280923014,2008,3,2008-09-23,6,Los Angeles Sparks,TRUE,14,away +280923014,2008,3,2008-09-23,14,Seattle Storm,FALSE,6,home +280923003,2008,3,2008-09-23,5,Indiana Fever,FALSE,3,away +280923003,2008,3,2008-09-23,3,Detroit Shock,TRUE,5,home +280922017,2008,3,2008-09-22,13,Sacramento Monarchs,FALSE,17,away +280922017,2008,3,2008-09-22,17,San Antonio Silver Stars,TRUE,13,home +280922018,2008,3,2008-09-22,9,New York Liberty,TRUE,18,away +280922018,2008,3,2008-09-22,18,Connecticut Sun,FALSE,9,home +280921014,2008,3,2008-09-21,6,Los Angeles Sparks,FALSE,14,away +280921014,2008,3,2008-09-21,14,Seattle Storm,TRUE,6,home +280921003,2008,3,2008-09-21,5,Indiana Fever,TRUE,3,away +280921003,2008,3,2008-09-21,3,Detroit Shock,FALSE,5,home +280920017,2008,3,2008-09-20,13,Sacramento Monarchs,TRUE,17,away +280920017,2008,3,2008-09-20,17,San Antonio Silver Stars,FALSE,13,home +280920018,2008,3,2008-09-20,9,New York Liberty,FALSE,18,away +280920018,2008,3,2008-09-20,18,Connecticut Sun,TRUE,9,home +280919006,2008,3,2008-09-19,14,Seattle Storm,FALSE,6,away +280919006,2008,3,2008-09-19,6,Los Angeles Sparks,TRUE,14,home +280919005,2008,3,2008-09-19,3,Detroit Shock,TRUE,5,away +280919005,2008,3,2008-09-19,5,Indiana Fever,FALSE,3,home +280918013,2008,3,2008-09-18,17,San Antonio Silver Stars,TRUE,13,away +280918013,2008,3,2008-09-18,13,Sacramento Monarchs,FALSE,17,home +280918009,2008,3,2008-09-18,18,Connecticut Sun,FALSE,9,away +280918009,2008,3,2008-09-18,9,New York Liberty,TRUE,18,home +280914006,2008,2,2008-09-14,14,Seattle Storm,FALSE,6,away +280914006,2008,2,2008-09-14,6,Los Angeles Sparks,TRUE,14,home +280914009,2008,2,2008-09-14,3,Detroit Shock,TRUE,9,away +280914009,2008,2,2008-09-14,9,New York Liberty,FALSE,3,home +280914016,2008,2,2008-09-14,8,Minnesota Lynx,TRUE,16,away +280914016,2008,2,2008-09-14,16,Washington Mystics,FALSE,8,home +280914019,2008,2,2008-09-14,4,Houston Comets,TRUE,19,away +280914019,2008,2,2008-09-14,19,Chicago Sky,FALSE,4,home +280914005,2008,2,2008-09-14,11,Phoenix Mercury,FALSE,5,away +280914005,2008,2,2008-09-14,5,Indiana Fever,TRUE,11,home +280913017,2008,2,2008-09-13,13,Sacramento Monarchs,FALSE,17,away +280913017,2008,2,2008-09-13,17,San Antonio Silver Stars,TRUE,13,home +280913018,2008,2,2008-09-13,16,Washington Mystics,FALSE,18,away +280913018,2008,2,2008-09-13,18,Connecticut Sun,TRUE,16,home +280912014,2008,2,2008-09-12,20,Atlanta Dream,FALSE,14,away +280912014,2008,2,2008-09-12,14,Seattle Storm,TRUE,20,home +280912019,2008,2,2008-09-12,9,New York Liberty,TRUE,19,away +280912019,2008,2,2008-09-12,19,Chicago Sky,FALSE,9,home +280912008,2008,2,2008-09-12,11,Phoenix Mercury,TRUE,8,away +280912008,2008,2,2008-09-12,8,Minnesota Lynx,FALSE,11,home +280911006,2008,2,2008-09-11,20,Atlanta Dream,TRUE,6,away +280911006,2008,2,2008-09-11,6,Los Angeles Sparks,FALSE,20,home +280911017,2008,2,2008-09-11,18,Connecticut Sun,FALSE,17,away +280911017,2008,2,2008-09-11,17,San Antonio Silver Stars,TRUE,18,home +280911003,2008,2,2008-09-11,16,Washington Mystics,FALSE,3,away +280911003,2008,2,2008-09-11,3,Detroit Shock,TRUE,16,home +280911005,2008,2,2008-09-11,9,New York Liberty,FALSE,5,away +280911005,2008,2,2008-09-11,5,Indiana Fever,TRUE,9,home +280909013,2008,2,2008-09-09,14,Seattle Storm,FALSE,13,away +280909013,2008,2,2008-09-09,13,Sacramento Monarchs,TRUE,14,home +280909004,2008,2,2008-09-09,18,Connecticut Sun,FALSE,4,away +280909004,2008,2,2008-09-09,4,Houston Comets,TRUE,18,home +280909008,2008,2,2008-09-09,5,Indiana Fever,FALSE,8,away +280909008,2008,2,2008-09-09,8,Minnesota Lynx,TRUE,5,home +280909019,2008,2,2008-09-09,16,Washington Mystics,FALSE,19,away +280909019,2008,2,2008-09-09,19,Chicago Sky,TRUE,16,home +280909009,2008,2,2008-09-09,17,San Antonio Silver Stars,TRUE,9,away +280909009,2008,2,2008-09-09,9,New York Liberty,FALSE,17,home +280909003,2008,2,2008-09-09,11,Phoenix Mercury,FALSE,3,away +280909003,2008,2,2008-09-09,3,Detroit Shock,TRUE,11,home +280908020,2008,2,2008-09-08,5,Indiana Fever,TRUE,20,away +280908020,2008,2,2008-09-08,20,Atlanta Dream,FALSE,5,home +280907011,2008,2,2008-09-07,4,Houston Comets,FALSE,11,away +280907011,2008,2,2008-09-07,11,Phoenix Mercury,TRUE,4,home +280907013,2008,2,2008-09-07,8,Minnesota Lynx,FALSE,13,away +280907013,2008,2,2008-09-07,13,Sacramento Monarchs,TRUE,8,home +280907009,2008,2,2008-09-07,19,Chicago Sky,FALSE,9,away +280907009,2008,2,2008-09-07,9,New York Liberty,TRUE,19,home +280907018,2008,2,2008-09-07,17,San Antonio Silver Stars,TRUE,18,away +280907018,2008,2,2008-09-07,18,Connecticut Sun,FALSE,17,home +280906014,2008,2,2008-09-06,8,Minnesota Lynx,FALSE,14,away +280906014,2008,2,2008-09-06,14,Seattle Storm,TRUE,8,home +280906004,2008,2,2008-09-06,6,Los Angeles Sparks,TRUE,4,away +280906004,2008,2,2008-09-06,4,Houston Comets,FALSE,6,home +280906016,2008,2,2008-09-06,3,Detroit Shock,TRUE,16,away +280906016,2008,2,2008-09-06,16,Washington Mystics,FALSE,3,home +280905011,2008,2,2008-09-05,13,Sacramento Monarchs,FALSE,11,away +280905011,2008,2,2008-09-05,11,Phoenix Mercury,TRUE,13,home +280905017,2008,2,2008-09-05,6,Los Angeles Sparks,FALSE,17,away +280905017,2008,2,2008-09-05,17,San Antonio Silver Stars,TRUE,6,home +280905003,2008,2,2008-09-05,5,Indiana Fever,FALSE,3,away +280905003,2008,2,2008-09-05,3,Detroit Shock,TRUE,5,home +280905009,2008,2,2008-09-05,20,Atlanta Dream,FALSE,9,away +280905009,2008,2,2008-09-05,9,New York Liberty,TRUE,20,home +280905018,2008,2,2008-09-05,19,Chicago Sky,FALSE,18,away +280905018,2008,2,2008-09-05,18,Connecticut Sun,TRUE,19,home +280904019,2008,2,2008-09-04,14,Seattle Storm,TRUE,19,away +280904019,2008,2,2008-09-04,19,Chicago Sky,FALSE,14,home +280903011,2008,2,2008-09-03,8,Minnesota Lynx,FALSE,11,away +280903011,2008,2,2008-09-03,11,Phoenix Mercury,TRUE,8,home +280902004,2008,2,2008-09-02,9,New York Liberty,TRUE,4,away +280902004,2008,2,2008-09-02,4,Houston Comets,FALSE,9,home +280902016,2008,2,2008-09-02,5,Indiana Fever,TRUE,16,away +280902016,2008,2,2008-09-02,16,Washington Mystics,FALSE,5,home +280902020,2008,2,2008-09-02,14,Seattle Storm,TRUE,20,away +280902020,2008,2,2008-09-02,20,Atlanta Dream,FALSE,14,home +280901006,2008,2,2008-09-01,8,Minnesota Lynx,FALSE,6,away +280901006,2008,2,2008-09-01,6,Los Angeles Sparks,TRUE,8,home +280831019,2008,2,2008-08-31,3,Detroit Shock,FALSE,19,away +280831019,2008,2,2008-08-31,19,Chicago Sky,TRUE,3,home +280831018,2008,2,2008-08-31,14,Seattle Storm,FALSE,18,away +280831018,2008,2,2008-08-31,18,Connecticut Sun,TRUE,14,home +280830006,2008,2,2008-08-30,17,San Antonio Silver Stars,FALSE,6,away +280830006,2008,2,2008-08-30,6,Los Angeles Sparks,TRUE,17,home +280830013,2008,2,2008-08-30,4,Houston Comets,FALSE,13,away +280830013,2008,2,2008-08-30,13,Sacramento Monarchs,TRUE,4,home +280830008,2008,2,2008-08-30,16,Washington Mystics,FALSE,8,away +280830008,2008,2,2008-08-30,8,Minnesota Lynx,TRUE,16,home +280830005,2008,2,2008-08-30,20,Atlanta Dream,FALSE,5,away +280830005,2008,2,2008-08-30,5,Indiana Fever,TRUE,20,home +280829003,2008,2,2008-08-29,9,New York Liberty,FALSE,3,away +280829003,2008,2,2008-08-29,3,Detroit Shock,TRUE,9,home +280829020,2008,2,2008-08-29,18,Connecticut Sun,TRUE,20,away +280829020,2008,2,2008-08-29,20,Atlanta Dream,FALSE,18,home +280829016,2008,2,2008-08-29,19,Chicago Sky,TRUE,16,away +280829016,2008,2,2008-08-29,16,Washington Mystics,FALSE,19,home +280828006,2008,2,2008-08-28,13,Sacramento Monarchs,FALSE,6,away +280828006,2008,2,2008-08-28,6,Los Angeles Sparks,TRUE,13,home +280828011,2008,2,2008-08-28,17,San Antonio Silver Stars,TRUE,11,away +280828011,2008,2,2008-08-28,11,Phoenix Mercury,FALSE,17,home +280828014,2008,2,2008-08-28,4,Houston Comets,FALSE,14,away +280828014,2008,2,2008-08-28,14,Seattle Storm,TRUE,4,home +280828009,2008,2,2008-08-28,19,Chicago Sky,TRUE,9,away +280828009,2008,2,2008-08-28,9,New York Liberty,FALSE,19,home +280828005,2008,2,2008-08-28,18,Connecticut Sun,TRUE,5,away +280828005,2008,2,2008-08-28,5,Indiana Fever,FALSE,18,home +280727011,2008,2,2008-07-27,5,Indiana Fever,TRUE,11,away +280727011,2008,2,2008-07-27,11,Phoenix Mercury,FALSE,5,home +280727014,2008,2,2008-07-27,13,Sacramento Monarchs,FALSE,14,away +280727014,2008,2,2008-07-27,14,Seattle Storm,TRUE,13,home +280727003,2008,2,2008-07-27,17,San Antonio Silver Stars,TRUE,3,away +280727003,2008,2,2008-07-27,3,Detroit Shock,FALSE,17,home +280727008,2008,2,2008-07-27,6,Los Angeles Sparks,TRUE,8,away +280727008,2008,2,2008-07-27,8,Minnesota Lynx,FALSE,6,home +280727016,2008,2,2008-07-27,18,Connecticut Sun,TRUE,16,away +280727016,2008,2,2008-07-27,16,Washington Mystics,FALSE,18,home +280727020,2008,2,2008-07-27,9,New York Liberty,TRUE,20,away +280727020,2008,2,2008-07-27,20,Atlanta Dream,FALSE,9,home +280726013,2008,2,2008-07-26,5,Indiana Fever,FALSE,13,away +280726013,2008,2,2008-07-26,13,Sacramento Monarchs,TRUE,5,home +280726004,2008,2,2008-07-26,19,Chicago Sky,FALSE,4,away +280726004,2008,2,2008-07-26,4,Houston Comets,TRUE,19,home +280725011,2008,2,2008-07-25,14,Seattle Storm,FALSE,11,away +280725011,2008,2,2008-07-25,11,Phoenix Mercury,TRUE,14,home +280725008,2008,2,2008-07-25,17,San Antonio Silver Stars,FALSE,8,away +280725008,2008,2,2008-07-25,8,Minnesota Lynx,TRUE,17,home +280725009,2008,2,2008-07-25,6,Los Angeles Sparks,FALSE,9,away +280725009,2008,2,2008-07-25,9,New York Liberty,TRUE,6,home +280725020,2008,2,2008-07-25,16,Washington Mystics,TRUE,20,away +280725020,2008,2,2008-07-25,20,Atlanta Dream,FALSE,16,home +280724004,2008,2,2008-07-24,3,Detroit Shock,FALSE,4,away +280724004,2008,2,2008-07-24,4,Houston Comets,TRUE,3,home +280724005,2008,2,2008-07-24,8,Minnesota Lynx,TRUE,5,away +280724005,2008,2,2008-07-24,5,Indiana Fever,FALSE,8,home +280724018,2008,2,2008-07-24,6,Los Angeles Sparks,FALSE,18,away +280724018,2008,2,2008-07-24,18,Connecticut Sun,TRUE,6,home +280724013,2008,2,2008-07-24,11,Phoenix Mercury,FALSE,13,away +280724013,2008,2,2008-07-24,13,Sacramento Monarchs,TRUE,11,home +280724017,2008,2,2008-07-24,19,Chicago Sky,FALSE,17,away +280724017,2008,2,2008-07-24,17,San Antonio Silver Stars,TRUE,19,home +280723016,2008,2,2008-07-23,9,New York Liberty,TRUE,16,away +280723016,2008,2,2008-07-23,16,Washington Mystics,FALSE,9,home +280722004,2008,2,2008-07-22,11,Phoenix Mercury,FALSE,4,away +280722004,2008,2,2008-07-22,4,Houston Comets,TRUE,11,home +280722019,2008,2,2008-07-22,5,Indiana Fever,FALSE,19,away +280722019,2008,2,2008-07-22,19,Chicago Sky,TRUE,5,home +280722003,2008,2,2008-07-22,6,Los Angeles Sparks,TRUE,3,away +280722003,2008,2,2008-07-22,3,Detroit Shock,FALSE,6,home +280722008,2008,2,2008-07-22,14,Seattle Storm,TRUE,8,away +280722008,2008,2,2008-07-22,8,Minnesota Lynx,FALSE,14,home +280722020,2008,2,2008-07-22,13,Sacramento Monarchs,TRUE,20,away +280722020,2008,2,2008-07-22,20,Atlanta Dream,FALSE,13,home +280720003,2008,2,2008-07-20,13,Sacramento Monarchs,TRUE,3,away +280720003,2008,2,2008-07-20,3,Detroit Shock,FALSE,13,home +280720016,2008,2,2008-07-20,14,Seattle Storm,FALSE,16,away +280720016,2008,2,2008-07-20,16,Washington Mystics,TRUE,14,home +280720018,2008,2,2008-07-20,19,Chicago Sky,FALSE,18,away +280720018,2008,2,2008-07-20,18,Connecticut Sun,TRUE,19,home +280719011,2008,2,2008-07-19,20,Atlanta Dream,FALSE,11,away +280719011,2008,2,2008-07-19,11,Phoenix Mercury,TRUE,20,home +280719004,2008,2,2008-07-19,6,Los Angeles Sparks,FALSE,4,away +280719004,2008,2,2008-07-19,4,Houston Comets,TRUE,6,home +280719017,2008,2,2008-07-19,8,Minnesota Lynx,TRUE,17,away +280719017,2008,2,2008-07-19,17,San Antonio Silver Stars,FALSE,8,home +280719009,2008,2,2008-07-19,5,Indiana Fever,TRUE,9,away +280719009,2008,2,2008-07-19,9,New York Liberty,FALSE,5,home +280718013,2008,2,2008-07-18,20,Atlanta Dream,FALSE,13,away +280718013,2008,2,2008-07-18,13,Sacramento Monarchs,TRUE,20,home +280718019,2008,2,2008-07-18,18,Connecticut Sun,FALSE,19,away +280718019,2008,2,2008-07-18,19,Chicago Sky,TRUE,18,home +280718005,2008,2,2008-07-18,14,Seattle Storm,TRUE,5,away +280718005,2008,2,2008-07-18,5,Indiana Fever,FALSE,14,home +280718016,2008,2,2008-07-18,3,Detroit Shock,TRUE,16,away +280718016,2008,2,2008-07-18,16,Washington Mystics,FALSE,3,home +280717011,2008,2,2008-07-17,6,Los Angeles Sparks,FALSE,11,away +280717011,2008,2,2008-07-17,11,Phoenix Mercury,TRUE,6,home +280717009,2008,2,2008-07-17,16,Washington Mystics,FALSE,9,away +280717009,2008,2,2008-07-17,9,New York Liberty,TRUE,16,home +280717004,2008,2,2008-07-17,8,Minnesota Lynx,FALSE,4,away +280717004,2008,2,2008-07-17,4,Houston Comets,TRUE,8,home +280716005,2008,2,2008-07-16,20,Atlanta Dream,TRUE,5,away +280716005,2008,2,2008-07-16,5,Indiana Fever,FALSE,20,home +280716003,2008,2,2008-07-16,19,Chicago Sky,FALSE,3,away +280716003,2008,2,2008-07-16,3,Detroit Shock,TRUE,19,home +280715011,2008,2,2008-07-15,17,San Antonio Silver Stars,TRUE,11,away +280715011,2008,2,2008-07-15,11,Phoenix Mercury,FALSE,17,home +280715018,2008,2,2008-07-15,9,New York Liberty,TRUE,18,away +280715018,2008,2,2008-07-15,18,Connecticut Sun,FALSE,9,home +280714006,2008,2,2008-07-14,17,San Antonio Silver Stars,FALSE,6,away +280714006,2008,2,2008-07-14,6,Los Angeles Sparks,TRUE,17,home +280713019,2008,2,2008-07-13,20,Atlanta Dream,FALSE,19,away +280713019,2008,2,2008-07-13,19,Chicago Sky,TRUE,20,home +280713016,2008,2,2008-07-13,18,Connecticut Sun,FALSE,16,away +280713016,2008,2,2008-07-13,16,Washington Mystics,TRUE,18,home +280712013,2008,2,2008-07-12,11,Phoenix Mercury,FALSE,13,away +280712013,2008,2,2008-07-12,13,Sacramento Monarchs,TRUE,11,home +280712014,2008,2,2008-07-12,6,Los Angeles Sparks,FALSE,14,away +280712014,2008,2,2008-07-12,14,Seattle Storm,TRUE,6,home +280712008,2008,2,2008-07-12,4,Houston Comets,FALSE,8,away +280712008,2008,2,2008-07-12,8,Minnesota Lynx,TRUE,4,home +280712009,2008,2,2008-07-12,3,Detroit Shock,FALSE,9,away +280712009,2008,2,2008-07-12,9,New York Liberty,TRUE,3,home +280712005,2008,2,2008-07-12,19,Chicago Sky,FALSE,5,away +280712005,2008,2,2008-07-12,5,Indiana Fever,TRUE,19,home +280711017,2008,2,2008-07-11,20,Atlanta Dream,FALSE,17,away +280711017,2008,2,2008-07-11,17,San Antonio Silver Stars,TRUE,20,home +280711003,2008,2,2008-07-11,16,Washington Mystics,FALSE,3,away +280711003,2008,2,2008-07-11,3,Detroit Shock,TRUE,16,home +280710013,2008,2,2008-07-10,6,Los Angeles Sparks,FALSE,13,away +280710013,2008,2,2008-07-10,13,Sacramento Monarchs,TRUE,6,home +280710019,2008,2,2008-07-10,17,San Antonio Silver Stars,TRUE,19,away +280710019,2008,2,2008-07-10,19,Chicago Sky,FALSE,17,home +280710014,2008,2,2008-07-10,11,Phoenix Mercury,FALSE,14,away +280710014,2008,2,2008-07-10,14,Seattle Storm,TRUE,11,home +280709006,2008,2,2008-07-09,4,Houston Comets,FALSE,6,away +280709006,2008,2,2008-07-09,6,Los Angeles Sparks,TRUE,4,home +280709008,2008,2,2008-07-09,20,Atlanta Dream,TRUE,8,away +280709008,2008,2,2008-07-09,8,Minnesota Lynx,FALSE,20,home +280708013,2008,2,2008-07-08,14,Seattle Storm,TRUE,13,away +280708013,2008,2,2008-07-08,13,Sacramento Monarchs,FALSE,14,home +280708017,2008,2,2008-07-08,9,New York Liberty,FALSE,17,away +280708017,2008,2,2008-07-08,17,San Antonio Silver Stars,TRUE,9,home +280708003,2008,2,2008-07-08,18,Connecticut Sun,FALSE,3,away +280708003,2008,2,2008-07-08,3,Detroit Shock,TRUE,18,home +280708016,2008,2,2008-07-08,5,Indiana Fever,FALSE,16,away +280708016,2008,2,2008-07-08,16,Washington Mystics,TRUE,5,home +280708011,2008,2,2008-07-08,4,Houston Comets,FALSE,11,away +280708011,2008,2,2008-07-08,11,Phoenix Mercury,TRUE,4,home +280706006,2008,2,2008-07-06,11,Phoenix Mercury,FALSE,6,away +280706006,2008,2,2008-07-06,6,Los Angeles Sparks,TRUE,11,home +280706016,2008,2,2008-07-06,17,San Antonio Silver Stars,TRUE,16,away +280706016,2008,2,2008-07-06,16,Washington Mystics,FALSE,17,home +280705011,2008,2,2008-07-05,9,New York Liberty,TRUE,11,away +280705011,2008,2,2008-07-05,11,Phoenix Mercury,FALSE,9,home +280705014,2008,2,2008-07-05,8,Minnesota Lynx,FALSE,14,away +280705014,2008,2,2008-07-05,14,Seattle Storm,TRUE,8,home +280705020,2008,2,2008-07-05,19,Chicago Sky,FALSE,20,away +280705020,2008,2,2008-07-05,20,Atlanta Dream,TRUE,19,home +280705005,2008,2,2008-07-05,18,Connecticut Sun,FALSE,5,away +280705005,2008,2,2008-07-05,5,Indiana Fever,TRUE,18,home +280705004,2008,2,2008-07-05,13,Sacramento Monarchs,FALSE,4,away +280705004,2008,2,2008-07-05,4,Houston Comets,TRUE,13,home +280703006,2008,2,2008-07-03,8,Minnesota Lynx,TRUE,6,away +280703006,2008,2,2008-07-03,6,Los Angeles Sparks,FALSE,8,home +280703014,2008,2,2008-07-03,9,New York Liberty,FALSE,14,away +280703014,2008,2,2008-07-03,14,Seattle Storm,TRUE,9,home +280703017,2008,2,2008-07-03,13,Sacramento Monarchs,FALSE,17,away +280703017,2008,2,2008-07-03,17,San Antonio Silver Stars,TRUE,13,home +280703020,2008,2,2008-07-03,4,Houston Comets,TRUE,20,away +280703020,2008,2,2008-07-03,20,Atlanta Dream,FALSE,4,home +280702005,2008,2,2008-07-02,19,Chicago Sky,FALSE,5,away +280702005,2008,2,2008-07-02,5,Indiana Fever,TRUE,19,home +280701013,2008,2,2008-07-01,16,Washington Mystics,FALSE,13,away +280701013,2008,2,2008-07-01,13,Sacramento Monarchs,TRUE,16,home +280701008,2008,2,2008-07-01,19,Chicago Sky,TRUE,8,away +280701008,2008,2,2008-07-01,8,Minnesota Lynx,FALSE,19,home +280701017,2008,2,2008-07-01,3,Detroit Shock,FALSE,17,away +280701017,2008,2,2008-07-01,17,San Antonio Silver Stars,TRUE,3,home +280701018,2008,2,2008-07-01,4,Houston Comets,FALSE,18,away +280701018,2008,2,2008-07-01,18,Connecticut Sun,TRUE,4,home +280701020,2008,2,2008-07-01,11,Phoenix Mercury,TRUE,20,away +280701020,2008,2,2008-07-01,20,Atlanta Dream,FALSE,11,home +280701006,2008,2,2008-07-01,9,New York Liberty,TRUE,6,away +280701006,2008,2,2008-07-01,6,Los Angeles Sparks,FALSE,9,home +280629014,2008,2,2008-06-29,16,Washington Mystics,FALSE,14,away +280629014,2008,2,2008-06-29,14,Seattle Storm,TRUE,16,home +280629003,2008,2,2008-06-29,20,Atlanta Dream,FALSE,3,away +280629003,2008,2,2008-06-29,3,Detroit Shock,TRUE,20,home +280629018,2008,2,2008-06-29,11,Phoenix Mercury,TRUE,18,away +280629018,2008,2,2008-06-29,18,Connecticut Sun,FALSE,11,home +280628013,2008,2,2008-06-28,9,New York Liberty,FALSE,13,away +280628013,2008,2,2008-06-28,13,Sacramento Monarchs,TRUE,9,home +280628004,2008,2,2008-06-28,5,Indiana Fever,FALSE,4,away +280628004,2008,2,2008-06-28,4,Houston Comets,TRUE,5,home +280628017,2008,2,2008-06-28,8,Minnesota Lynx,FALSE,17,away +280628017,2008,2,2008-06-28,17,San Antonio Silver Stars,TRUE,8,home +280628019,2008,2,2008-06-28,3,Detroit Shock,FALSE,19,away +280628019,2008,2,2008-06-28,19,Chicago Sky,TRUE,3,home +280627018,2008,2,2008-06-27,20,Atlanta Dream,FALSE,18,away +280627018,2008,2,2008-06-27,18,Connecticut Sun,TRUE,20,home +280626006,2008,2,2008-06-26,16,Washington Mystics,TRUE,6,away +280626006,2008,2,2008-06-26,6,Los Angeles Sparks,FALSE,16,home +280626019,2008,2,2008-06-26,11,Phoenix Mercury,TRUE,19,away +280626019,2008,2,2008-06-26,19,Chicago Sky,FALSE,11,home +280626004,2008,2,2008-06-26,17,San Antonio Silver Stars,FALSE,4,away +280626004,2008,2,2008-06-26,4,Houston Comets,TRUE,17,home +280626008,2008,2,2008-06-26,13,Sacramento Monarchs,FALSE,8,away +280626008,2008,2,2008-06-26,8,Minnesota Lynx,TRUE,13,home +280626003,2008,2,2008-06-26,18,Connecticut Sun,FALSE,3,away +280626003,2008,2,2008-06-26,3,Detroit Shock,TRUE,18,home +280626009,2008,2,2008-06-26,5,Indiana Fever,FALSE,9,away +280626009,2008,2,2008-06-26,9,New York Liberty,TRUE,5,home +280624006,2008,2,2008-06-24,14,Seattle Storm,FALSE,6,away +280624006,2008,2,2008-06-24,6,Los Angeles Sparks,TRUE,14,home +280624017,2008,2,2008-06-24,4,Houston Comets,TRUE,17,away +280624017,2008,2,2008-06-24,17,San Antonio Silver Stars,FALSE,4,home +280624008,2008,2,2008-06-24,9,New York Liberty,FALSE,8,away +280624008,2008,2,2008-06-24,8,Minnesota Lynx,TRUE,9,home +280624005,2008,2,2008-06-24,13,Sacramento Monarchs,FALSE,5,away +280624005,2008,2,2008-06-24,5,Indiana Fever,TRUE,13,home +280624016,2008,2,2008-06-24,11,Phoenix Mercury,TRUE,16,away +280624016,2008,2,2008-06-24,16,Washington Mystics,FALSE,11,home +280624018,2008,2,2008-06-24,3,Detroit Shock,FALSE,18,away +280624018,2008,2,2008-06-24,18,Connecticut Sun,TRUE,3,home +280622006,2008,2,2008-06-22,5,Indiana Fever,FALSE,6,away +280622006,2008,2,2008-06-22,6,Los Angeles Sparks,TRUE,5,home +280622013,2008,2,2008-06-22,19,Chicago Sky,FALSE,13,away +280622013,2008,2,2008-06-22,13,Sacramento Monarchs,TRUE,19,home +280622009,2008,2,2008-06-22,11,Phoenix Mercury,FALSE,9,away +280622009,2008,2,2008-06-22,9,New York Liberty,TRUE,11,home +280622020,2008,2,2008-06-22,3,Detroit Shock,TRUE,20,away +280622020,2008,2,2008-06-22,20,Atlanta Dream,FALSE,3,home +280621008,2008,2,2008-06-21,4,Houston Comets,TRUE,8,away +280621008,2008,2,2008-06-21,8,Minnesota Lynx,FALSE,4,home +280620011,2008,2,2008-06-20,19,Chicago Sky,FALSE,11,away +280620011,2008,2,2008-06-20,11,Phoenix Mercury,TRUE,19,home +280620013,2008,2,2008-06-20,18,Connecticut Sun,TRUE,13,away +280620013,2008,2,2008-06-20,13,Sacramento Monarchs,FALSE,18,home +280620014,2008,2,2008-06-20,5,Indiana Fever,FALSE,14,away +280620014,2008,2,2008-06-20,14,Seattle Storm,TRUE,5,home +280620017,2008,2,2008-06-20,6,Los Angeles Sparks,FALSE,17,away +280620017,2008,2,2008-06-20,17,San Antonio Silver Stars,TRUE,6,home +280620003,2008,2,2008-06-20,8,Minnesota Lynx,FALSE,3,away +280620003,2008,2,2008-06-20,3,Detroit Shock,TRUE,8,home +280620016,2008,2,2008-06-20,20,Atlanta Dream,FALSE,16,away +280620016,2008,2,2008-06-20,16,Washington Mystics,TRUE,20,home +280618006,2008,2,2008-06-18,19,Chicago Sky,FALSE,6,away +280618006,2008,2,2008-06-18,6,Los Angeles Sparks,TRUE,19,home +280618011,2008,2,2008-06-18,18,Connecticut Sun,FALSE,11,away +280618011,2008,2,2008-06-18,11,Phoenix Mercury,TRUE,18,home +280618004,2008,2,2008-06-18,16,Washington Mystics,TRUE,4,away +280618004,2008,2,2008-06-18,4,Houston Comets,FALSE,16,home +280618005,2008,2,2008-06-18,9,New York Liberty,FALSE,5,away +280618005,2008,2,2008-06-18,5,Indiana Fever,TRUE,9,home +280618020,2008,2,2008-06-18,17,San Antonio Silver Stars,TRUE,20,away +280618020,2008,2,2008-06-18,20,Atlanta Dream,FALSE,17,home +280616014,2008,2,2008-06-16,18,Connecticut Sun,TRUE,14,away +280616014,2008,2,2008-06-16,14,Seattle Storm,FALSE,18,home +280616004,2008,2,2008-06-16,20,Atlanta Dream,FALSE,4,away +280616004,2008,2,2008-06-16,4,Houston Comets,TRUE,20,home +280615005,2008,2,2008-06-15,17,San Antonio Silver Stars,TRUE,5,away +280615005,2008,2,2008-06-15,5,Indiana Fever,FALSE,17,home +280614013,2008,2,2008-06-14,6,Los Angeles Sparks,TRUE,13,away +280614013,2008,2,2008-06-14,13,Sacramento Monarchs,FALSE,6,home +280614004,2008,2,2008-06-14,14,Seattle Storm,FALSE,4,away +280614004,2008,2,2008-06-14,4,Houston Comets,TRUE,14,home +280614009,2008,2,2008-06-14,8,Minnesota Lynx,FALSE,9,away +280614009,2008,2,2008-06-14,9,New York Liberty,TRUE,8,home +280614011,2008,2,2008-06-14,3,Detroit Shock,TRUE,11,away +280614011,2008,2,2008-06-14,11,Phoenix Mercury,FALSE,3,home +280613006,2008,2,2008-06-13,18,Connecticut Sun,FALSE,6,away +280613006,2008,2,2008-06-13,6,Los Angeles Sparks,TRUE,18,home +280613019,2008,2,2008-06-13,16,Washington Mystics,TRUE,19,away +280613019,2008,2,2008-06-13,19,Chicago Sky,FALSE,16,home +280613017,2008,2,2008-06-13,14,Seattle Storm,FALSE,17,away +280613017,2008,2,2008-06-13,17,San Antonio Silver Stars,TRUE,14,home +280613020,2008,2,2008-06-13,5,Indiana Fever,TRUE,20,away +280613020,2008,2,2008-06-13,20,Atlanta Dream,FALSE,5,home +280612008,2008,2,2008-06-12,13,Sacramento Monarchs,TRUE,8,away +280612008,2008,2,2008-06-12,8,Minnesota Lynx,FALSE,13,home +280611006,2008,2,2008-06-11,3,Detroit Shock,FALSE,6,away +280611006,2008,2,2008-06-11,6,Los Angeles Sparks,TRUE,3,home +280611014,2008,2,2008-06-11,11,Phoenix Mercury,FALSE,14,away +280611014,2008,2,2008-06-11,14,Seattle Storm,TRUE,11,home +280611017,2008,2,2008-06-11,5,Indiana Fever,FALSE,17,away +280611017,2008,2,2008-06-11,17,San Antonio Silver Stars,TRUE,5,home +280611016,2008,2,2008-06-11,13,Sacramento Monarchs,TRUE,16,away +280611016,2008,2,2008-06-11,16,Washington Mystics,FALSE,13,home +280611020,2008,2,2008-06-11,9,New York Liberty,TRUE,20,away +280611020,2008,2,2008-06-11,20,Atlanta Dream,FALSE,9,home +280610008,2008,2,2008-06-10,18,Connecticut Sun,TRUE,8,away +280610008,2008,2,2008-06-10,8,Minnesota Lynx,FALSE,18,home +280608008,2008,2,2008-06-08,17,San Antonio Silver Stars,FALSE,8,away +280608008,2008,2,2008-06-08,8,Minnesota Lynx,TRUE,17,home +280608009,2008,2,2008-06-08,13,Sacramento Monarchs,TRUE,9,away +280608009,2008,2,2008-06-08,9,New York Liberty,FALSE,13,home +280608018,2008,2,2008-06-08,16,Washington Mystics,FALSE,18,away +280608018,2008,2,2008-06-08,18,Connecticut Sun,TRUE,16,home +280607014,2008,2,2008-06-07,3,Detroit Shock,FALSE,14,away +280607014,2008,2,2008-06-07,14,Seattle Storm,TRUE,3,home +280607019,2008,2,2008-06-07,20,Atlanta Dream,FALSE,19,away +280607019,2008,2,2008-06-07,19,Chicago Sky,TRUE,20,home +280607005,2008,2,2008-06-07,4,Houston Comets,FALSE,5,away +280607005,2008,2,2008-06-07,5,Indiana Fever,TRUE,4,home +280606006,2008,2,2008-06-06,11,Phoenix Mercury,TRUE,6,away +280606006,2008,2,2008-06-06,6,Los Angeles Sparks,FALSE,11,home +280606013,2008,2,2008-06-06,3,Detroit Shock,TRUE,13,away +280606013,2008,2,2008-06-06,13,Sacramento Monarchs,FALSE,3,home +280606017,2008,2,2008-06-06,16,Washington Mystics,FALSE,17,away +280606017,2008,2,2008-06-06,17,San Antonio Silver Stars,TRUE,16,home +280606009,2008,2,2008-06-06,4,Houston Comets,FALSE,9,away +280606009,2008,2,2008-06-06,9,New York Liberty,TRUE,4,home +280606020,2008,2,2008-06-06,19,Chicago Sky,TRUE,20,away +280606020,2008,2,2008-06-06,20,Atlanta Dream,FALSE,19,home +280606018,2008,2,2008-06-06,8,Minnesota Lynx,FALSE,18,away +280606018,2008,2,2008-06-06,18,Connecticut Sun,TRUE,8,home +280604003,2008,2,2008-06-04,14,Seattle Storm,FALSE,3,away +280604003,2008,2,2008-06-04,3,Detroit Shock,TRUE,14,home +280603011,2008,2,2008-06-03,16,Washington Mystics,FALSE,11,away +280603011,2008,2,2008-06-03,11,Phoenix Mercury,TRUE,16,home +280603004,2008,2,2008-06-03,17,San Antonio Silver Stars,FALSE,4,away +280603004,2008,2,2008-06-03,4,Houston Comets,TRUE,17,home +280603019,2008,2,2008-06-03,6,Los Angeles Sparks,TRUE,19,away +280603019,2008,2,2008-06-03,19,Chicago Sky,FALSE,6,home +280603009,2008,2,2008-06-03,14,Seattle Storm,FALSE,9,away +280603009,2008,2,2008-06-03,9,New York Liberty,TRUE,14,home +280603020,2008,2,2008-06-03,8,Minnesota Lynx,TRUE,20,away +280603020,2008,2,2008-06-03,20,Atlanta Dream,FALSE,8,home +280601014,2008,2,2008-06-01,4,Houston Comets,FALSE,14,away +280601014,2008,2,2008-06-01,14,Seattle Storm,TRUE,4,home +280601019,2008,2,2008-06-01,18,Connecticut Sun,TRUE,19,away +280601019,2008,2,2008-06-01,19,Chicago Sky,FALSE,18,home +280531008,2008,2,2008-05-31,11,Phoenix Mercury,FALSE,8,away +280531008,2008,2,2008-05-31,8,Minnesota Lynx,TRUE,11,home +280531005,2008,2,2008-05-31,3,Detroit Shock,TRUE,5,away +280531005,2008,2,2008-05-31,5,Indiana Fever,FALSE,3,home +280531016,2008,2,2008-05-31,6,Los Angeles Sparks,TRUE,16,away +280531016,2008,2,2008-05-31,16,Washington Mystics,FALSE,6,home +280530013,2008,2,2008-05-30,4,Houston Comets,FALSE,13,away +280530013,2008,2,2008-05-30,13,Sacramento Monarchs,TRUE,4,home +280530014,2008,2,2008-05-30,17,San Antonio Silver Stars,FALSE,14,away +280530014,2008,2,2008-05-30,14,Seattle Storm,TRUE,17,home +280530018,2008,2,2008-05-30,9,New York Liberty,FALSE,18,away +280530018,2008,2,2008-05-30,18,Connecticut Sun,TRUE,9,home +280529019,2008,2,2008-05-29,8,Minnesota Lynx,TRUE,19,away +280529019,2008,2,2008-05-29,19,Chicago Sky,FALSE,8,home +280529005,2008,2,2008-05-29,6,Los Angeles Sparks,FALSE,5,away +280529005,2008,2,2008-05-29,5,Indiana Fever,TRUE,6,home +280527004,2008,2,2008-05-27,8,Minnesota Lynx,TRUE,4,away +280527004,2008,2,2008-05-27,4,Houston Comets,FALSE,8,home +280527016,2008,2,2008-05-27,20,Atlanta Dream,FALSE,16,away +280527016,2008,2,2008-05-27,16,Washington Mystics,TRUE,20,home +280527018,2008,2,2008-05-27,5,Indiana Fever,TRUE,18,away +280527018,2008,2,2008-05-27,18,Connecticut Sun,FALSE,5,home +280525003,2008,2,2008-05-25,9,New York Liberty,FALSE,3,away +280525003,2008,2,2008-05-25,3,Detroit Shock,TRUE,9,home +280525016,2008,2,2008-05-25,4,Houston Comets,FALSE,16,away +280525016,2008,2,2008-05-25,16,Washington Mystics,TRUE,4,home +280525020,2008,2,2008-05-25,6,Los Angeles Sparks,TRUE,20,away +280525020,2008,2,2008-05-25,20,Atlanta Dream,FALSE,6,home +280524018,2008,2,2008-05-24,13,Sacramento Monarchs,FALSE,18,away +280524018,2008,2,2008-05-24,18,Connecticut Sun,TRUE,13,home +280524017,2008,2,2008-05-24,14,Seattle Storm,FALSE,17,away +280524017,2008,2,2008-05-24,17,San Antonio Silver Stars,TRUE,14,home +280522011,2008,2,2008-05-22,14,Seattle Storm,TRUE,11,away +280522011,2008,2,2008-05-22,11,Phoenix Mercury,FALSE,14,home +280522019,2008,2,2008-05-22,13,Sacramento Monarchs,FALSE,19,away +280522019,2008,2,2008-05-22,19,Chicago Sky,TRUE,13,home +280522009,2008,2,2008-05-22,16,Washington Mystics,FALSE,9,away +280522009,2008,2,2008-05-22,9,New York Liberty,TRUE,16,home +280521003,2008,2,2008-05-21,5,Indiana Fever,FALSE,3,away +280521003,2008,2,2008-05-21,3,Detroit Shock,TRUE,5,home +280520014,2008,2,2008-05-20,13,Sacramento Monarchs,FALSE,14,away +280520014,2008,2,2008-05-20,14,Seattle Storm,TRUE,13,home +280520017,2008,2,2008-05-20,11,Phoenix Mercury,FALSE,17,away +280520017,2008,2,2008-05-20,17,San Antonio Silver Stars,TRUE,11,home +280518008,2008,2,2008-05-18,3,Detroit Shock,FALSE,8,away +280518008,2008,2,2008-05-18,8,Minnesota Lynx,TRUE,3,home +280518009,2008,2,2008-05-18,18,Connecticut Sun,TRUE,9,away +280518009,2008,2,2008-05-18,9,New York Liberty,FALSE,18,home +280517013,2008,2,2008-05-17,17,San Antonio Silver Stars,FALSE,13,away +280517013,2008,2,2008-05-17,13,Sacramento Monarchs,TRUE,17,home +280517014,2008,2,2008-05-17,19,Chicago Sky,FALSE,14,away +280517014,2008,2,2008-05-17,14,Seattle Storm,TRUE,19,home +280517005,2008,2,2008-05-17,16,Washington Mystics,FALSE,5,away +280517005,2008,2,2008-05-17,5,Indiana Fever,TRUE,16,home +280517018,2008,2,2008-05-17,20,Atlanta Dream,FALSE,18,away +280517018,2008,2,2008-05-17,18,Connecticut Sun,TRUE,20,home +280517003,2008,2,2008-05-17,4,Houston Comets,FALSE,3,away +280517003,2008,2,2008-05-17,3,Detroit Shock,TRUE,4,home +280517011,2008,2,2008-05-17,6,Los Angeles Sparks,TRUE,11,away +280517011,2008,2,2008-05-17,11,Phoenix Mercury,FALSE,6,home +291009011,2009,3,2009-10-09,5,Indiana Fever,FALSE,11,away +291009011,2009,3,2009-10-09,11,Phoenix Mercury,TRUE,5,home +291007005,2009,3,2009-10-07,11,Phoenix Mercury,TRUE,5,away +291007005,2009,3,2009-10-07,5,Indiana Fever,FALSE,11,home +291004005,2009,3,2009-10-04,11,Phoenix Mercury,FALSE,5,away +291004005,2009,3,2009-10-04,5,Indiana Fever,TRUE,11,home +291001011,2009,3,2009-10-01,5,Indiana Fever,TRUE,11,away +291001011,2009,3,2009-10-01,11,Phoenix Mercury,FALSE,5,home +290929011,2009,3,2009-09-29,5,Indiana Fever,FALSE,11,away +290929011,2009,3,2009-09-29,11,Phoenix Mercury,TRUE,5,home +290926011,2009,3,2009-09-26,6,Los Angeles Sparks,FALSE,11,away +290926011,2009,3,2009-09-26,11,Phoenix Mercury,TRUE,6,home +290926005,2009,3,2009-09-26,3,Detroit Shock,FALSE,5,away +290926005,2009,3,2009-09-26,5,Indiana Fever,TRUE,3,home +290925011,2009,3,2009-09-25,6,Los Angeles Sparks,TRUE,11,away +290925011,2009,3,2009-09-25,11,Phoenix Mercury,FALSE,6,home +290925005,2009,3,2009-09-25,3,Detroit Shock,FALSE,5,away +290925005,2009,3,2009-09-25,5,Indiana Fever,TRUE,3,home +290923006,2009,3,2009-09-23,11,Phoenix Mercury,TRUE,6,away +290923006,2009,3,2009-09-23,6,Los Angeles Sparks,FALSE,11,home +290923003,2009,3,2009-09-23,5,Indiana Fever,FALSE,3,away +290923003,2009,3,2009-09-23,3,Detroit Shock,TRUE,5,home +290921011,2009,3,2009-09-21,17,San Antonio Silver Stars,FALSE,11,away +290921011,2009,3,2009-09-21,11,Phoenix Mercury,TRUE,17,home +290920014,2009,3,2009-09-20,6,Los Angeles Sparks,TRUE,14,away +290920014,2009,3,2009-09-20,14,Seattle Storm,FALSE,6,home +290919011,2009,3,2009-09-19,17,San Antonio Silver Stars,FALSE,11,away +290919011,2009,3,2009-09-19,11,Phoenix Mercury,TRUE,17,home +290919005,2009,3,2009-09-19,16,Washington Mystics,FALSE,5,away +290919005,2009,3,2009-09-19,5,Indiana Fever,TRUE,16,home +290918014,2009,3,2009-09-18,6,Los Angeles Sparks,FALSE,14,away +290918014,2009,3,2009-09-18,14,Seattle Storm,TRUE,6,home +290918020,2009,3,2009-09-18,3,Detroit Shock,TRUE,20,away +290918020,2009,3,2009-09-18,20,Atlanta Dream,FALSE,3,home +290917017,2009,3,2009-09-17,11,Phoenix Mercury,FALSE,17,away +290917017,2009,3,2009-09-17,17,San Antonio Silver Stars,TRUE,11,home +290917016,2009,3,2009-09-17,5,Indiana Fever,TRUE,16,away +290917016,2009,3,2009-09-17,16,Washington Mystics,FALSE,5,home +290916006,2009,3,2009-09-16,14,Seattle Storm,FALSE,6,away +290916006,2009,3,2009-09-16,6,Los Angeles Sparks,TRUE,14,home +290916003,2009,3,2009-09-16,20,Atlanta Dream,FALSE,3,away +290916003,2009,3,2009-09-16,3,Detroit Shock,TRUE,20,home +290913013,2009,2,2009-09-13,8,Minnesota Lynx,FALSE,13,away +290913013,2009,2,2009-09-13,13,Sacramento Monarchs,TRUE,8,home +290913009,2009,2,2009-09-13,16,Washington Mystics,FALSE,9,away +290913009,2009,2,2009-09-13,9,New York Liberty,TRUE,16,home +290913011,2009,2,2009-09-13,6,Los Angeles Sparks,TRUE,11,away +290913011,2009,2,2009-09-13,11,Phoenix Mercury,FALSE,6,home +290913018,2009,2,2009-09-13,5,Indiana Fever,FALSE,18,away +290913018,2009,2,2009-09-13,18,Connecticut Sun,TRUE,5,home +290912017,2009,2,2009-09-12,14,Seattle Storm,TRUE,17,away +290912017,2009,2,2009-09-12,17,San Antonio Silver Stars,FALSE,14,home +290912019,2009,2,2009-09-12,3,Detroit Shock,TRUE,19,away +290912019,2009,2,2009-09-12,19,Chicago Sky,FALSE,3,home +290912016,2009,2,2009-09-12,20,Atlanta Dream,FALSE,16,away +290912016,2009,2,2009-09-12,16,Washington Mystics,TRUE,20,home +290911006,2009,2,2009-09-11,8,Minnesota Lynx,FALSE,6,away +290911006,2009,2,2009-09-11,6,Los Angeles Sparks,TRUE,8,home +290911020,2009,2,2009-09-11,18,Connecticut Sun,FALSE,20,away +290911020,2009,2,2009-09-11,20,Atlanta Dream,TRUE,18,home +290910013,2009,2,2009-09-10,17,San Antonio Silver Stars,TRUE,13,away +290910013,2009,2,2009-09-10,13,Sacramento Monarchs,FALSE,17,home +290910014,2009,2,2009-09-10,11,Phoenix Mercury,TRUE,14,away +290910014,2009,2,2009-09-10,14,Seattle Storm,FALSE,11,home +290910019,2009,2,2009-09-10,5,Indiana Fever,FALSE,19,away +290910019,2009,2,2009-09-10,19,Chicago Sky,TRUE,5,home +290910003,2009,2,2009-09-10,9,New York Liberty,FALSE,3,away +290910003,2009,2,2009-09-10,3,Detroit Shock,TRUE,9,home +290909008,2009,2,2009-09-09,3,Detroit Shock,FALSE,8,away +290909008,2009,2,2009-09-09,8,Minnesota Lynx,TRUE,3,home +290908006,2009,2,2009-09-08,17,San Antonio Silver Stars,FALSE,6,away +290908006,2009,2,2009-09-08,6,Los Angeles Sparks,TRUE,17,home +290908009,2009,2,2009-09-08,5,Indiana Fever,TRUE,9,away +290908009,2009,2,2009-09-08,9,New York Liberty,FALSE,5,home +290906003,2009,2,2009-09-06,19,Chicago Sky,FALSE,3,away +290906003,2009,2,2009-09-06,3,Detroit Shock,TRUE,19,home +290906005,2009,2,2009-09-06,16,Washington Mystics,FALSE,5,away +290906005,2009,2,2009-09-06,5,Indiana Fever,TRUE,16,home +290905011,2009,2,2009-09-05,20,Atlanta Dream,FALSE,11,away +290905011,2009,2,2009-09-05,11,Phoenix Mercury,TRUE,20,home +290905008,2009,2,2009-09-05,14,Seattle Storm,FALSE,8,away +290905008,2009,2,2009-09-05,8,Minnesota Lynx,TRUE,14,home +290905017,2009,2,2009-09-05,6,Los Angeles Sparks,FALSE,17,away +290905017,2009,2,2009-09-05,17,San Antonio Silver Stars,TRUE,6,home +290904013,2009,2,2009-09-04,20,Atlanta Dream,TRUE,13,away +290904013,2009,2,2009-09-04,13,Sacramento Monarchs,FALSE,20,home +290904019,2009,2,2009-09-04,16,Washington Mystics,FALSE,19,away +290904019,2009,2,2009-09-04,19,Chicago Sky,TRUE,16,home +290904003,2009,2,2009-09-04,5,Indiana Fever,FALSE,3,away +290904003,2009,2,2009-09-04,3,Detroit Shock,TRUE,5,home +290904018,2009,2,2009-09-04,9,New York Liberty,FALSE,18,away +290904018,2009,2,2009-09-04,18,Connecticut Sun,TRUE,9,home +290903016,2009,2,2009-09-03,14,Seattle Storm,FALSE,16,away +290903016,2009,2,2009-09-03,16,Washington Mystics,TRUE,14,home +290902005,2009,2,2009-09-02,11,Phoenix Mercury,TRUE,5,away +290902005,2009,2,2009-09-02,5,Indiana Fever,FALSE,11,home +290901006,2009,2,2009-09-01,20,Atlanta Dream,TRUE,6,away +290901006,2009,2,2009-09-01,6,Los Angeles Sparks,FALSE,20,home +290901013,2009,2,2009-09-01,18,Connecticut Sun,FALSE,13,away +290901013,2009,2,2009-09-01,13,Sacramento Monarchs,TRUE,18,home +290901017,2009,2,2009-09-01,8,Minnesota Lynx,FALSE,17,away +290901017,2009,2,2009-09-01,17,San Antonio Silver Stars,TRUE,8,home +290901003,2009,2,2009-09-01,11,Phoenix Mercury,FALSE,3,away +290901003,2009,2,2009-09-01,3,Detroit Shock,TRUE,11,home +290901009,2009,2,2009-09-01,14,Seattle Storm,TRUE,9,away +290901009,2009,2,2009-09-01,9,New York Liberty,FALSE,14,home +290830006,2009,2,2009-08-30,18,Connecticut Sun,FALSE,6,away +290830006,2009,2,2009-08-30,6,Los Angeles Sparks,TRUE,18,home +290830009,2009,2,2009-08-30,19,Chicago Sky,FALSE,9,away +290830009,2009,2,2009-08-30,9,New York Liberty,TRUE,19,home +290830016,2009,2,2009-08-30,8,Minnesota Lynx,FALSE,16,away +290830016,2009,2,2009-08-30,16,Washington Mystics,TRUE,8,home +290829011,2009,2,2009-08-29,18,Connecticut Sun,FALSE,11,away +290829011,2009,2,2009-08-29,11,Phoenix Mercury,TRUE,18,home +290829014,2009,2,2009-08-29,20,Atlanta Dream,FALSE,14,away +290829014,2009,2,2009-08-29,14,Seattle Storm,TRUE,20,home +290829005,2009,2,2009-08-29,13,Sacramento Monarchs,TRUE,5,away +290829005,2009,2,2009-08-29,5,Indiana Fever,FALSE,13,home +290829017,2009,2,2009-08-29,3,Detroit Shock,FALSE,17,away +290829017,2009,2,2009-08-29,17,San Antonio Silver Stars,TRUE,3,home +290828019,2009,2,2009-08-28,9,New York Liberty,FALSE,19,away +290828019,2009,2,2009-08-28,19,Chicago Sky,TRUE,9,home +290828008,2009,2,2009-08-28,13,Sacramento Monarchs,FALSE,8,away +290828008,2009,2,2009-08-28,8,Minnesota Lynx,TRUE,13,home +290827006,2009,2,2009-08-27,11,Phoenix Mercury,TRUE,6,away +290827006,2009,2,2009-08-27,6,Los Angeles Sparks,FALSE,11,home +290827014,2009,2,2009-08-27,18,Connecticut Sun,FALSE,14,away +290827014,2009,2,2009-08-27,14,Seattle Storm,TRUE,18,home +290827003,2009,2,2009-08-27,20,Atlanta Dream,FALSE,3,away +290827003,2009,2,2009-08-27,3,Detroit Shock,TRUE,20,home +290827005,2009,2,2009-08-27,17,San Antonio Silver Stars,FALSE,5,away +290827005,2009,2,2009-08-27,5,Indiana Fever,TRUE,17,home +290825006,2009,2,2009-08-25,19,Chicago Sky,FALSE,6,away +290825006,2009,2,2009-08-25,6,Los Angeles Sparks,TRUE,19,home +290825014,2009,2,2009-08-25,16,Washington Mystics,FALSE,14,away +290825014,2009,2,2009-08-25,14,Seattle Storm,TRUE,16,home +290825020,2009,2,2009-08-25,13,Sacramento Monarchs,FALSE,20,away +290825020,2009,2,2009-08-25,20,Atlanta Dream,TRUE,13,home +290825018,2009,2,2009-08-25,3,Detroit Shock,TRUE,18,away +290825018,2009,2,2009-08-25,18,Connecticut Sun,FALSE,3,home +290823003,2009,2,2009-08-23,17,San Antonio Silver Stars,FALSE,3,away +290823003,2009,2,2009-08-23,3,Detroit Shock,TRUE,17,home +290823009,2009,2,2009-08-23,8,Minnesota Lynx,FALSE,9,away +290823009,2009,2,2009-08-23,9,New York Liberty,TRUE,8,home +290823020,2009,2,2009-08-23,6,Los Angeles Sparks,TRUE,20,away +290823020,2009,2,2009-08-23,20,Atlanta Dream,FALSE,6,home +290822013,2009,2,2009-08-22,16,Washington Mystics,FALSE,13,away +290822013,2009,2,2009-08-22,13,Sacramento Monarchs,TRUE,16,home +290822014,2009,2,2009-08-22,5,Indiana Fever,FALSE,14,away +290822014,2009,2,2009-08-22,14,Seattle Storm,TRUE,5,home +290822019,2009,2,2009-08-22,3,Detroit Shock,TRUE,19,away +290822019,2009,2,2009-08-22,19,Chicago Sky,FALSE,3,home +290822018,2009,2,2009-08-22,8,Minnesota Lynx,FALSE,18,away +290822018,2009,2,2009-08-22,18,Connecticut Sun,TRUE,8,home +290821011,2009,2,2009-08-21,16,Washington Mystics,TRUE,11,away +290821011,2009,2,2009-08-21,11,Phoenix Mercury,FALSE,16,home +290821017,2009,2,2009-08-21,6,Los Angeles Sparks,TRUE,17,away +290821017,2009,2,2009-08-21,17,San Antonio Silver Stars,FALSE,6,home +290821009,2009,2,2009-08-21,18,Connecticut Sun,FALSE,9,away +290821009,2009,2,2009-08-21,9,New York Liberty,TRUE,18,home +290820013,2009,2,2009-08-20,5,Indiana Fever,FALSE,13,away +290820013,2009,2,2009-08-20,13,Sacramento Monarchs,TRUE,5,home +290820020,2009,2,2009-08-20,17,San Antonio Silver Stars,FALSE,20,away +290820020,2009,2,2009-08-20,20,Atlanta Dream,TRUE,17,home +290819006,2009,2,2009-08-19,8,Minnesota Lynx,FALSE,6,away +290819006,2009,2,2009-08-19,6,Los Angeles Sparks,TRUE,8,home +290819018,2009,2,2009-08-19,9,New York Liberty,FALSE,18,away +290819018,2009,2,2009-08-19,18,Connecticut Sun,TRUE,9,home +290818006,2009,2,2009-08-18,16,Washington Mystics,FALSE,6,away +290818006,2009,2,2009-08-18,6,Los Angeles Sparks,TRUE,16,home +290818019,2009,2,2009-08-18,11,Phoenix Mercury,TRUE,19,away +290818019,2009,2,2009-08-18,19,Chicago Sky,FALSE,11,home +290818003,2009,2,2009-08-18,14,Seattle Storm,TRUE,3,away +290818003,2009,2,2009-08-18,3,Detroit Shock,FALSE,14,home +290816016,2009,2,2009-08-16,9,New York Liberty,TRUE,16,away +290816016,2009,2,2009-08-16,16,Washington Mystics,FALSE,9,home +290815013,2009,2,2009-08-15,6,Los Angeles Sparks,TRUE,13,away +290815013,2009,2,2009-08-15,13,Sacramento Monarchs,FALSE,6,home +290815017,2009,2,2009-08-15,11,Phoenix Mercury,FALSE,17,away +290815017,2009,2,2009-08-15,17,San Antonio Silver Stars,TRUE,11,home +290815019,2009,2,2009-08-15,8,Minnesota Lynx,FALSE,19,away +290815019,2009,2,2009-08-15,19,Chicago Sky,TRUE,8,home +290815005,2009,2,2009-08-15,3,Detroit Shock,FALSE,5,away +290815005,2009,2,2009-08-15,5,Indiana Fever,TRUE,3,home +290815020,2009,2,2009-08-15,14,Seattle Storm,FALSE,20,away +290815020,2009,2,2009-08-15,20,Atlanta Dream,TRUE,14,home +290814006,2009,2,2009-08-14,13,Sacramento Monarchs,TRUE,6,away +290814006,2009,2,2009-08-14,6,Los Angeles Sparks,FALSE,13,home +290814009,2009,2,2009-08-14,19,Chicago Sky,TRUE,9,away +290814009,2009,2,2009-08-14,9,New York Liberty,FALSE,19,home +290814016,2009,2,2009-08-14,18,Connecticut Sun,FALSE,16,away +290814016,2009,2,2009-08-14,16,Washington Mystics,TRUE,18,home +290813011,2009,2,2009-08-13,17,San Antonio Silver Stars,FALSE,11,away +290813011,2009,2,2009-08-13,11,Phoenix Mercury,TRUE,17,home +290813008,2009,2,2009-08-13,5,Indiana Fever,TRUE,8,away +290813008,2009,2,2009-08-13,8,Minnesota Lynx,FALSE,5,home +290813020,2009,2,2009-08-13,3,Detroit Shock,FALSE,20,away +290813020,2009,2,2009-08-13,20,Atlanta Dream,TRUE,3,home +290813018,2009,2,2009-08-13,14,Seattle Storm,FALSE,18,away +290813018,2009,2,2009-08-13,18,Connecticut Sun,TRUE,14,home +290811006,2009,2,2009-08-11,9,New York Liberty,TRUE,6,away +290811006,2009,2,2009-08-11,6,Los Angeles Sparks,FALSE,9,home +290811017,2009,2,2009-08-11,13,Sacramento Monarchs,TRUE,17,away +290811017,2009,2,2009-08-11,17,San Antonio Silver Stars,FALSE,13,home +290811016,2009,2,2009-08-11,3,Detroit Shock,TRUE,16,away +290811016,2009,2,2009-08-11,16,Washington Mystics,FALSE,3,home +290810006,2009,2,2009-08-10,5,Indiana Fever,FALSE,6,away +290810006,2009,2,2009-08-10,6,Los Angeles Sparks,TRUE,5,home +290809003,2009,2,2009-08-09,19,Chicago Sky,FALSE,3,away +290809003,2009,2,2009-08-09,3,Detroit Shock,TRUE,19,home +290809008,2009,2,2009-08-09,17,San Antonio Silver Stars,TRUE,8,away +290809008,2009,2,2009-08-09,8,Minnesota Lynx,FALSE,17,home +290809018,2009,2,2009-08-09,16,Washington Mystics,FALSE,18,away +290809018,2009,2,2009-08-09,18,Connecticut Sun,TRUE,16,home +290808011,2009,2,2009-08-08,5,Indiana Fever,TRUE,11,away +290808011,2009,2,2009-08-08,11,Phoenix Mercury,FALSE,5,home +290808014,2009,2,2009-08-08,9,New York Liberty,FALSE,14,away +290808014,2009,2,2009-08-08,14,Seattle Storm,TRUE,9,home +290808020,2009,2,2009-08-08,19,Chicago Sky,TRUE,20,away +290808020,2009,2,2009-08-08,20,Atlanta Dream,FALSE,19,home +290807013,2009,2,2009-08-07,9,New York Liberty,TRUE,13,away +290807013,2009,2,2009-08-07,13,Sacramento Monarchs,FALSE,9,home +290807008,2009,2,2009-08-07,18,Connecticut Sun,FALSE,8,away +290807008,2009,2,2009-08-07,8,Minnesota Lynx,TRUE,18,home +290807016,2009,2,2009-08-07,3,Detroit Shock,FALSE,16,away +290807016,2009,2,2009-08-07,16,Washington Mystics,TRUE,3,home +290806006,2009,2,2009-08-06,14,Seattle Storm,FALSE,6,away +290806006,2009,2,2009-08-06,6,Los Angeles Sparks,TRUE,14,home +290806017,2009,2,2009-08-06,20,Atlanta Dream,TRUE,17,away +290806017,2009,2,2009-08-06,17,San Antonio Silver Stars,FALSE,20,home +290805005,2009,2,2009-08-05,19,Chicago Sky,FALSE,5,away +290805005,2009,2,2009-08-05,5,Indiana Fever,TRUE,19,home +290804014,2009,2,2009-08-04,11,Phoenix Mercury,TRUE,14,away +290804014,2009,2,2009-08-04,14,Seattle Storm,FALSE,11,home +290804003,2009,2,2009-08-04,9,New York Liberty,FALSE,3,away +290804003,2009,2,2009-08-04,3,Detroit Shock,TRUE,9,home +290804006,2009,2,2009-08-04,17,San Antonio Silver Stars,TRUE,6,away +290804006,2009,2,2009-08-04,6,Los Angeles Sparks,FALSE,17,home +290802003,2009,2,2009-08-02,18,Connecticut Sun,TRUE,3,away +290802003,2009,2,2009-08-02,3,Detroit Shock,FALSE,18,home +290802016,2009,2,2009-08-02,5,Indiana Fever,TRUE,16,away +290802016,2009,2,2009-08-02,16,Washington Mystics,FALSE,5,home +290801013,2009,2,2009-08-01,6,Los Angeles Sparks,TRUE,13,away +290801013,2009,2,2009-08-01,13,Sacramento Monarchs,FALSE,6,home +290801014,2009,2,2009-08-01,17,San Antonio Silver Stars,FALSE,14,away +290801014,2009,2,2009-08-01,14,Seattle Storm,TRUE,17,home +290801008,2009,2,2009-08-01,11,Phoenix Mercury,TRUE,8,away +290801008,2009,2,2009-08-01,8,Minnesota Lynx,FALSE,11,home +290801019,2009,2,2009-08-01,18,Connecticut Sun,FALSE,19,away +290801019,2009,2,2009-08-01,19,Chicago Sky,TRUE,18,home +290801020,2009,2,2009-08-01,9,New York Liberty,FALSE,20,away +290801020,2009,2,2009-08-01,20,Atlanta Dream,TRUE,9,home +290731003,2009,2,2009-07-31,8,Minnesota Lynx,FALSE,3,away +290731003,2009,2,2009-07-31,3,Detroit Shock,TRUE,8,home +290730009,2009,2,2009-07-30,16,Washington Mystics,TRUE,9,away +290730009,2009,2,2009-07-30,9,New York Liberty,FALSE,16,home +290730020,2009,2,2009-07-30,11,Phoenix Mercury,FALSE,20,away +290730020,2009,2,2009-07-30,20,Atlanta Dream,TRUE,11,home +290730005,2009,2,2009-07-30,18,Connecticut Sun,FALSE,5,away +290730005,2009,2,2009-07-30,5,Indiana Fever,TRUE,18,home +290730013,2009,2,2009-07-30,17,San Antonio Silver Stars,FALSE,13,away +290730013,2009,2,2009-07-30,13,Sacramento Monarchs,TRUE,17,home +290729019,2009,2,2009-07-29,6,Los Angeles Sparks,FALSE,19,away +290729019,2009,2,2009-07-29,19,Chicago Sky,TRUE,6,home +290728008,2009,2,2009-07-28,6,Los Angeles Sparks,TRUE,8,away +290728008,2009,2,2009-07-28,8,Minnesota Lynx,FALSE,6,home +290728017,2009,2,2009-07-28,14,Seattle Storm,FALSE,17,away +290728017,2009,2,2009-07-28,17,San Antonio Silver Stars,TRUE,14,home +290728018,2009,2,2009-07-28,11,Phoenix Mercury,TRUE,18,away +290728018,2009,2,2009-07-28,18,Connecticut Sun,FALSE,11,home +290728005,2009,2,2009-07-28,16,Washington Mystics,FALSE,5,away +290728005,2009,2,2009-07-28,5,Indiana Fever,TRUE,16,home +290726009,2009,2,2009-07-26,11,Phoenix Mercury,TRUE,9,away +290726009,2009,2,2009-07-26,9,New York Liberty,FALSE,11,home +290726016,2009,2,2009-07-26,13,Sacramento Monarchs,FALSE,16,away +290726016,2009,2,2009-07-26,16,Washington Mystics,TRUE,13,home +290725098,2009,2,2009-07-25,99,WEST,TRUE,98,away +290725098,2009,2,2009-07-25,98,EAST,FALSE,99,home +290723009,2009,2,2009-07-23,13,Sacramento Monarchs,TRUE,9,away +290723009,2009,2,2009-07-23,9,New York Liberty,FALSE,13,home +290723016,2009,2,2009-07-23,19,Chicago Sky,FALSE,16,away +290723016,2009,2,2009-07-23,16,Washington Mystics,TRUE,19,home +290723017,2009,2,2009-07-23,5,Indiana Fever,FALSE,17,away +290723017,2009,2,2009-07-23,17,San Antonio Silver Stars,TRUE,5,home +290722011,2009,2,2009-07-22,8,Minnesota Lynx,TRUE,11,away +290722011,2009,2,2009-07-22,11,Phoenix Mercury,FALSE,8,home +290722014,2009,2,2009-07-22,6,Los Angeles Sparks,FALSE,14,away +290722014,2009,2,2009-07-22,14,Seattle Storm,TRUE,6,home +290722018,2009,2,2009-07-22,13,Sacramento Monarchs,FALSE,18,away +290722018,2009,2,2009-07-22,18,Connecticut Sun,TRUE,13,home +290722019,2009,2,2009-07-22,9,New York Liberty,TRUE,19,away +290722019,2009,2,2009-07-22,19,Chicago Sky,FALSE,9,home +290722003,2009,2,2009-07-22,20,Atlanta Dream,TRUE,3,away +290722003,2009,2,2009-07-22,3,Detroit Shock,FALSE,20,home +290721016,2009,2,2009-07-21,5,Indiana Fever,TRUE,16,away +290721016,2009,2,2009-07-21,16,Washington Mystics,FALSE,5,home +290719013,2009,2,2009-07-19,3,Detroit Shock,TRUE,13,away +290719013,2009,2,2009-07-19,13,Sacramento Monarchs,FALSE,3,home +290719014,2009,2,2009-07-19,8,Minnesota Lynx,FALSE,14,away +290719014,2009,2,2009-07-19,14,Seattle Storm,TRUE,8,home +290719019,2009,2,2009-07-19,17,San Antonio Silver Stars,FALSE,19,away +290719019,2009,2,2009-07-19,19,Chicago Sky,TRUE,17,home +290719009,2009,2,2009-07-19,20,Atlanta Dream,FALSE,9,away +290719009,2009,2,2009-07-19,9,New York Liberty,TRUE,20,home +290719018,2009,2,2009-07-19,5,Indiana Fever,FALSE,18,away +290719018,2009,2,2009-07-19,18,Connecticut Sun,TRUE,5,home +290718011,2009,2,2009-07-18,3,Detroit Shock,FALSE,11,away +290718011,2009,2,2009-07-18,11,Phoenix Mercury,TRUE,3,home +290718016,2009,2,2009-07-18,9,New York Liberty,FALSE,16,away +290718016,2009,2,2009-07-18,16,Washington Mystics,TRUE,9,home +290717013,2009,2,2009-07-17,14,Seattle Storm,TRUE,13,away +290717013,2009,2,2009-07-17,13,Sacramento Monarchs,FALSE,14,home +290717017,2009,2,2009-07-17,18,Connecticut Sun,TRUE,17,away +290717017,2009,2,2009-07-17,17,San Antonio Silver Stars,FALSE,18,home +290717005,2009,2,2009-07-17,20,Atlanta Dream,FALSE,5,away +290717005,2009,2,2009-07-17,5,Indiana Fever,TRUE,20,home +290715014,2009,2,2009-07-15,3,Detroit Shock,TRUE,14,away +290715014,2009,2,2009-07-15,14,Seattle Storm,FALSE,3,home +290715011,2009,2,2009-07-15,13,Sacramento Monarchs,FALSE,11,away +290715011,2009,2,2009-07-15,11,Phoenix Mercury,TRUE,13,home +290715005,2009,2,2009-07-15,19,Chicago Sky,FALSE,5,away +290715005,2009,2,2009-07-15,5,Indiana Fever,TRUE,19,home +290715008,2009,2,2009-07-15,20,Atlanta Dream,TRUE,8,away +290715008,2009,2,2009-07-15,8,Minnesota Lynx,FALSE,20,home +290715016,2009,2,2009-07-15,17,San Antonio Silver Stars,TRUE,16,away +290715016,2009,2,2009-07-15,16,Washington Mystics,FALSE,17,home +290714018,2009,2,2009-07-14,6,Los Angeles Sparks,FALSE,18,away +290714018,2009,2,2009-07-14,18,Connecticut Sun,TRUE,6,home +290712014,2009,2,2009-07-12,19,Chicago Sky,TRUE,14,away +290712014,2009,2,2009-07-12,14,Seattle Storm,FALSE,19,home +290712017,2009,2,2009-07-12,8,Minnesota Lynx,TRUE,17,away +290712017,2009,2,2009-07-12,17,San Antonio Silver Stars,FALSE,8,home +290711013,2009,2,2009-07-11,11,Phoenix Mercury,TRUE,13,away +290711013,2009,2,2009-07-11,13,Sacramento Monarchs,FALSE,11,home +290711009,2009,2,2009-07-11,20,Atlanta Dream,FALSE,9,away +290711009,2009,2,2009-07-11,9,New York Liberty,TRUE,20,home +290711016,2009,2,2009-07-11,6,Los Angeles Sparks,FALSE,16,away +290711016,2009,2,2009-07-11,16,Washington Mystics,TRUE,6,home +290711018,2009,2,2009-07-11,3,Detroit Shock,TRUE,18,away +290711018,2009,2,2009-07-11,18,Connecticut Sun,FALSE,3,home +290710019,2009,2,2009-07-10,5,Indiana Fever,TRUE,19,away +290710019,2009,2,2009-07-10,19,Chicago Sky,FALSE,5,home +290710008,2009,2,2009-07-10,17,San Antonio Silver Stars,TRUE,8,away +290710008,2009,2,2009-07-10,8,Minnesota Lynx,FALSE,17,home +290709014,2009,2,2009-07-09,13,Sacramento Monarchs,FALSE,14,away +290709014,2009,2,2009-07-09,14,Seattle Storm,TRUE,13,home +290709009,2009,2,2009-07-09,6,Los Angeles Sparks,TRUE,9,away +290709009,2009,2,2009-07-09,9,New York Liberty,FALSE,6,home +290708011,2009,2,2009-07-08,19,Chicago Sky,FALSE,11,away +290708011,2009,2,2009-07-08,11,Phoenix Mercury,TRUE,19,home +290707013,2009,2,2009-07-07,19,Chicago Sky,FALSE,13,away +290707013,2009,2,2009-07-07,13,Sacramento Monarchs,TRUE,19,home +290707008,2009,2,2009-07-07,16,Washington Mystics,FALSE,8,away +290707008,2009,2,2009-07-07,8,Minnesota Lynx,TRUE,16,home +290707020,2009,2,2009-07-07,18,Connecticut Sun,FALSE,20,away +290707020,2009,2,2009-07-07,20,Atlanta Dream,TRUE,18,home +290707014,2009,2,2009-07-07,17,San Antonio Silver Stars,FALSE,14,away +290707014,2009,2,2009-07-07,14,Seattle Storm,TRUE,17,home +290705006,2009,2,2009-07-05,11,Phoenix Mercury,TRUE,6,away +290705006,2009,2,2009-07-05,6,Los Angeles Sparks,FALSE,11,home +290705003,2009,2,2009-07-05,18,Connecticut Sun,TRUE,3,away +290705003,2009,2,2009-07-05,3,Detroit Shock,FALSE,18,home +290705005,2009,2,2009-07-05,20,Atlanta Dream,FALSE,5,away +290705005,2009,2,2009-07-05,5,Indiana Fever,TRUE,20,home +290703017,2009,2,2009-07-03,19,Chicago Sky,FALSE,17,away +290703017,2009,2,2009-07-03,17,San Antonio Silver Stars,TRUE,19,home +290703020,2009,2,2009-07-03,16,Washington Mystics,FALSE,20,away +290703020,2009,2,2009-07-03,20,Atlanta Dream,TRUE,16,home +290702008,2009,2,2009-07-02,13,Sacramento Monarchs,TRUE,8,away +290702008,2009,2,2009-07-02,8,Minnesota Lynx,FALSE,13,home +290702009,2009,2,2009-07-02,3,Detroit Shock,FALSE,9,away +290702009,2009,2,2009-07-02,9,New York Liberty,TRUE,3,home +290702005,2009,2,2009-07-02,18,Connecticut Sun,FALSE,5,away +290702005,2009,2,2009-07-02,5,Indiana Fever,TRUE,18,home +290701011,2009,2,2009-07-01,14,Seattle Storm,FALSE,11,away +290701011,2009,2,2009-07-01,11,Phoenix Mercury,TRUE,14,home +290630017,2009,2,2009-06-30,16,Washington Mystics,TRUE,17,away +290630017,2009,2,2009-06-30,17,San Antonio Silver Stars,FALSE,16,home +290630019,2009,2,2009-06-30,13,Sacramento Monarchs,FALSE,19,away +290630019,2009,2,2009-06-30,19,Chicago Sky,TRUE,13,home +290630020,2009,2,2009-06-30,8,Minnesota Lynx,TRUE,20,away +290630020,2009,2,2009-06-30,20,Atlanta Dream,FALSE,8,home +290628006,2009,2,2009-06-28,14,Seattle Storm,FALSE,6,away +290628006,2009,2,2009-06-28,6,Los Angeles Sparks,TRUE,14,home +290628003,2009,2,2009-06-28,13,Sacramento Monarchs,FALSE,3,away +290628003,2009,2,2009-06-28,3,Detroit Shock,TRUE,13,home +290627008,2009,2,2009-06-27,11,Phoenix Mercury,FALSE,8,away +290627008,2009,2,2009-06-27,8,Minnesota Lynx,TRUE,11,home +290627019,2009,2,2009-06-27,16,Washington Mystics,FALSE,19,away +290627019,2009,2,2009-06-27,19,Chicago Sky,TRUE,16,home +290627005,2009,2,2009-06-27,9,New York Liberty,FALSE,5,away +290627005,2009,2,2009-06-27,5,Indiana Fever,TRUE,9,home +290627018,2009,2,2009-06-27,20,Atlanta Dream,FALSE,18,away +290627018,2009,2,2009-06-27,18,Connecticut Sun,TRUE,20,home +290626014,2009,2,2009-06-26,6,Los Angeles Sparks,FALSE,14,away +290626014,2009,2,2009-06-26,14,Seattle Storm,TRUE,6,home +290626017,2009,2,2009-06-26,13,Sacramento Monarchs,FALSE,17,away +290626017,2009,2,2009-06-26,17,San Antonio Silver Stars,TRUE,13,home +290626009,2009,2,2009-06-26,5,Indiana Fever,TRUE,9,away +290626009,2009,2,2009-06-26,9,New York Liberty,FALSE,5,home +290626020,2009,2,2009-06-26,3,Detroit Shock,FALSE,20,away +290626020,2009,2,2009-06-26,20,Atlanta Dream,TRUE,3,home +290625016,2009,2,2009-06-25,11,Phoenix Mercury,TRUE,16,away +290625016,2009,2,2009-06-25,16,Washington Mystics,FALSE,11,home +290623008,2009,2,2009-06-23,9,New York Liberty,FALSE,8,away +290623008,2009,2,2009-06-23,8,Minnesota Lynx,TRUE,9,home +290623017,2009,2,2009-06-23,11,Phoenix Mercury,FALSE,17,away +290623017,2009,2,2009-06-23,17,San Antonio Silver Stars,TRUE,11,home +290623020,2009,2,2009-06-23,19,Chicago Sky,TRUE,20,away +290623020,2009,2,2009-06-23,20,Atlanta Dream,FALSE,19,home +290621006,2009,2,2009-06-21,13,Sacramento Monarchs,FALSE,6,away +290621006,2009,2,2009-06-21,6,Los Angeles Sparks,TRUE,13,home +290621011,2009,2,2009-06-21,14,Seattle Storm,TRUE,11,away +290621011,2009,2,2009-06-21,11,Phoenix Mercury,FALSE,14,home +290621005,2009,2,2009-06-21,3,Detroit Shock,FALSE,5,away +290621005,2009,2,2009-06-21,5,Indiana Fever,TRUE,3,home +290621018,2009,2,2009-06-21,17,San Antonio Silver Stars,FALSE,18,away +290621018,2009,2,2009-06-21,18,Connecticut Sun,TRUE,17,home +290621020,2009,2,2009-06-21,9,New York Liberty,TRUE,20,away +290621020,2009,2,2009-06-21,20,Atlanta Dream,FALSE,9,home +290620016,2009,2,2009-06-20,19,Chicago Sky,FALSE,16,away +290620016,2009,2,2009-06-20,16,Washington Mystics,TRUE,19,home +290619011,2009,2,2009-06-19,6,Los Angeles Sparks,FALSE,11,away +290619011,2009,2,2009-06-19,11,Phoenix Mercury,TRUE,6,home +290619014,2009,2,2009-06-19,8,Minnesota Lynx,FALSE,14,away +290619014,2009,2,2009-06-19,14,Seattle Storm,TRUE,8,home +290619003,2009,2,2009-06-19,5,Indiana Fever,TRUE,3,away +290619003,2009,2,2009-06-19,3,Detroit Shock,FALSE,5,home +290619009,2009,2,2009-06-19,17,San Antonio Silver Stars,FALSE,9,away +290619009,2009,2,2009-06-19,9,New York Liberty,TRUE,17,home +290619020,2009,2,2009-06-19,16,Washington Mystics,FALSE,20,away +290619020,2009,2,2009-06-19,20,Atlanta Dream,TRUE,16,home +290619018,2009,2,2009-06-19,19,Chicago Sky,FALSE,18,away +290619018,2009,2,2009-06-19,18,Connecticut Sun,TRUE,19,home +290617011,2009,2,2009-06-17,8,Minnesota Lynx,FALSE,11,away +290617011,2009,2,2009-06-17,11,Phoenix Mercury,TRUE,8,home +290616013,2009,2,2009-06-16,8,Minnesota Lynx,TRUE,13,away +290616013,2009,2,2009-06-16,13,Sacramento Monarchs,FALSE,8,home +290616019,2009,2,2009-06-16,18,Connecticut Sun,FALSE,19,away +290616019,2009,2,2009-06-16,19,Chicago Sky,TRUE,18,home +290614019,2009,2,2009-06-14,14,Seattle Storm,FALSE,19,away +290614019,2009,2,2009-06-14,19,Chicago Sky,TRUE,14,home +290614018,2009,2,2009-06-14,20,Atlanta Dream,TRUE,18,away +290614018,2009,2,2009-06-14,18,Connecticut Sun,FALSE,20,home +290613011,2009,2,2009-06-13,13,Sacramento Monarchs,FALSE,11,away +290613011,2009,2,2009-06-13,11,Phoenix Mercury,TRUE,13,home +290613017,2009,2,2009-06-13,9,New York Liberty,FALSE,17,away +290613017,2009,2,2009-06-13,17,San Antonio Silver Stars,TRUE,9,home +290612013,2009,2,2009-06-12,11,Phoenix Mercury,FALSE,13,away +290612013,2009,2,2009-06-12,13,Sacramento Monarchs,TRUE,11,home +290612019,2009,2,2009-06-12,20,Atlanta Dream,FALSE,19,away +290612019,2009,2,2009-06-12,19,Chicago Sky,TRUE,20,home +290612008,2009,2,2009-06-12,14,Seattle Storm,TRUE,8,away +290612008,2009,2,2009-06-12,8,Minnesota Lynx,FALSE,14,home +290612005,2009,2,2009-06-12,6,Los Angeles Sparks,FALSE,5,away +290612005,2009,2,2009-06-12,5,Indiana Fever,TRUE,6,home +290610011,2009,2,2009-06-10,9,New York Liberty,FALSE,11,away +290610011,2009,2,2009-06-10,11,Phoenix Mercury,TRUE,9,home +290610008,2009,2,2009-06-10,6,Los Angeles Sparks,FALSE,8,away +290610008,2009,2,2009-06-10,8,Minnesota Lynx,TRUE,6,home +290610003,2009,2,2009-06-10,16,Washington Mystics,TRUE,3,away +290610003,2009,2,2009-06-10,3,Detroit Shock,FALSE,16,home +290609005,2009,2,2009-06-09,14,Seattle Storm,FALSE,5,away +290609005,2009,2,2009-06-09,5,Indiana Fever,TRUE,14,home +290608003,2009,2,2009-06-08,6,Los Angeles Sparks,FALSE,3,away +290608003,2009,2,2009-06-08,3,Detroit Shock,TRUE,6,home +290607014,2009,2,2009-06-07,13,Sacramento Monarchs,FALSE,14,away +290607014,2009,2,2009-06-07,14,Seattle Storm,TRUE,13,home +290607005,2009,2,2009-06-07,8,Minnesota Lynx,TRUE,5,away +290607005,2009,2,2009-06-07,5,Indiana Fever,FALSE,8,home +290607009,2009,2,2009-06-07,18,Connecticut Sun,TRUE,9,away +290607009,2009,2,2009-06-07,9,New York Liberty,FALSE,18,home +290607016,2009,2,2009-06-07,20,Atlanta Dream,FALSE,16,away +290607016,2009,2,2009-06-07,16,Washington Mystics,TRUE,20,home +290606011,2009,2,2009-06-06,17,San Antonio Silver Stars,FALSE,11,away +290606011,2009,2,2009-06-06,11,Phoenix Mercury,TRUE,17,home +290606008,2009,2,2009-06-06,19,Chicago Sky,FALSE,8,away +290606008,2009,2,2009-06-06,8,Minnesota Lynx,TRUE,19,home +290606020,2009,2,2009-06-06,5,Indiana Fever,FALSE,20,away +290606020,2009,2,2009-06-06,20,Atlanta Dream,TRUE,5,home +290606013,2009,2,2009-06-06,14,Seattle Storm,TRUE,13,away +290606013,2009,2,2009-06-06,13,Sacramento Monarchs,FALSE,14,home +290606018,2009,2,2009-06-06,16,Washington Mystics,TRUE,18,away +290606018,2009,2,2009-06-06,18,Connecticut Sun,FALSE,16,home +290606006,2009,2,2009-06-06,3,Detroit Shock,FALSE,6,away +290606006,2009,2,2009-06-06,6,Los Angeles Sparks,TRUE,3,home +300916020,2010,3,2010-09-16,14,Seattle Storm,TRUE,20,away +300916020,2010,3,2010-09-16,20,Atlanta Dream,FALSE,14,home +300914014,2010,3,2010-09-14,20,Atlanta Dream,FALSE,14,away +300914014,2010,3,2010-09-14,14,Seattle Storm,TRUE,20,home +300912014,2010,3,2010-09-12,20,Atlanta Dream,FALSE,14,away +300912014,2010,3,2010-09-12,14,Seattle Storm,TRUE,20,home +300907020,2010,3,2010-09-07,9,New York Liberty,FALSE,20,away +300907020,2010,3,2010-09-07,20,Atlanta Dream,TRUE,9,home +300905009,2010,3,2010-09-05,20,Atlanta Dream,TRUE,9,away +300905009,2010,3,2010-09-05,9,New York Liberty,FALSE,20,home +300905011,2010,3,2010-09-05,14,Seattle Storm,TRUE,11,away +300905011,2010,3,2010-09-05,11,Phoenix Mercury,FALSE,14,home +300902014,2010,3,2010-09-02,11,Phoenix Mercury,FALSE,14,away +300902014,2010,3,2010-09-02,14,Seattle Storm,TRUE,11,home +300901009,2010,3,2010-09-01,5,Indiana Fever,FALSE,9,away +300901009,2010,3,2010-09-01,9,New York Liberty,TRUE,5,home +300829005,2010,3,2010-08-29,9,New York Liberty,FALSE,5,away +300829005,2010,3,2010-08-29,5,Indiana Fever,TRUE,9,home +300828006,2010,3,2010-08-28,14,Seattle Storm,TRUE,6,away +300828006,2010,3,2010-08-28,6,Los Angeles Sparks,FALSE,14,home +300828017,2010,3,2010-08-28,11,Phoenix Mercury,TRUE,17,away +300828017,2010,3,2010-08-28,17,San Antonio Silver Stars,FALSE,11,home +300827020,2010,3,2010-08-27,16,Washington Mystics,FALSE,20,away +300827020,2010,3,2010-08-27,20,Atlanta Dream,TRUE,16,home +300826011,2010,3,2010-08-26,17,San Antonio Silver Stars,FALSE,11,away +300826011,2010,3,2010-08-26,11,Phoenix Mercury,TRUE,17,home +300826009,2010,3,2010-08-26,5,Indiana Fever,FALSE,9,away +300826009,2010,3,2010-08-26,9,New York Liberty,TRUE,5,home +300825014,2010,3,2010-08-25,6,Los Angeles Sparks,FALSE,14,away +300825014,2010,3,2010-08-25,14,Seattle Storm,TRUE,6,home +300825016,2010,3,2010-08-25,20,Atlanta Dream,TRUE,16,away +300825016,2010,3,2010-08-25,16,Washington Mystics,FALSE,20,home +300822005,2010,2,2010-08-22,8,Minnesota Lynx,TRUE,5,away +300822005,2010,2,2010-08-22,5,Indiana Fever,FALSE,8,home +300822009,2010,2,2010-08-22,18,Connecticut Sun,FALSE,9,away +300822009,2010,2,2010-08-22,9,New York Liberty,TRUE,18,home +300822017,2010,2,2010-08-22,11,Phoenix Mercury,FALSE,17,away +300822017,2010,2,2010-08-22,17,San Antonio Silver Stars,TRUE,11,home +300822020,2010,2,2010-08-22,16,Washington Mystics,TRUE,20,away +300822020,2010,2,2010-08-22,20,Atlanta Dream,FALSE,16,home +300821014,2010,2,2010-08-21,6,Los Angeles Sparks,FALSE,14,away +300821014,2010,2,2010-08-21,14,Seattle Storm,TRUE,6,home +300821003,2010,2,2010-08-21,19,Chicago Sky,FALSE,3,away +300821003,2010,2,2010-08-21,3,Tulsa Shock,TRUE,19,home +300820006,2010,2,2010-08-20,8,Minnesota Lynx,FALSE,6,away +300820006,2010,2,2010-08-20,6,Los Angeles Sparks,TRUE,8,home +300820011,2010,2,2010-08-20,14,Seattle Storm,TRUE,11,away +300820011,2010,2,2010-08-20,11,Phoenix Mercury,FALSE,14,home +300820019,2010,2,2010-08-20,18,Connecticut Sun,TRUE,19,away +300820019,2010,2,2010-08-20,19,Chicago Sky,FALSE,18,home +300820017,2010,2,2010-08-20,5,Indiana Fever,FALSE,17,away +300820017,2010,2,2010-08-20,17,San Antonio Silver Stars,TRUE,5,home +300820016,2010,2,2010-08-20,9,New York Liberty,FALSE,16,away +300820016,2010,2,2010-08-20,16,Washington Mystics,TRUE,9,home +300819009,2010,2,2010-08-19,3,Tulsa Shock,FALSE,9,away +300819009,2010,2,2010-08-19,9,New York Liberty,TRUE,3,home +300817006,2010,2,2010-08-17,11,Phoenix Mercury,TRUE,6,away +300817006,2010,2,2010-08-17,6,Los Angeles Sparks,FALSE,11,home +300817014,2010,2,2010-08-17,8,Minnesota Lynx,FALSE,14,away +300817014,2010,2,2010-08-17,14,Seattle Storm,TRUE,8,home +300817017,2010,2,2010-08-17,16,Washington Mystics,TRUE,17,away +300817017,2010,2,2010-08-17,17,San Antonio Silver Stars,FALSE,16,home +300817009,2010,2,2010-08-17,5,Indiana Fever,FALSE,9,away +300817009,2010,2,2010-08-17,9,New York Liberty,TRUE,5,home +300817018,2010,2,2010-08-17,3,Tulsa Shock,FALSE,18,away +300817018,2010,2,2010-08-17,18,Connecticut Sun,TRUE,3,home +300817020,2010,2,2010-08-17,19,Chicago Sky,TRUE,20,away +300817020,2010,2,2010-08-17,20,Atlanta Dream,FALSE,19,home +300815008,2010,2,2010-08-15,17,San Antonio Silver Stars,FALSE,8,away +300815008,2010,2,2010-08-15,8,Minnesota Lynx,TRUE,17,home +300815018,2010,2,2010-08-15,5,Indiana Fever,TRUE,18,away +300815018,2010,2,2010-08-15,18,Connecticut Sun,FALSE,5,home +300815016,2010,2,2010-08-15,14,Seattle Storm,FALSE,16,away +300815016,2010,2,2010-08-15,16,Washington Mystics,TRUE,14,home +300814003,2010,2,2010-08-14,6,Los Angeles Sparks,TRUE,3,away +300814003,2010,2,2010-08-14,3,Tulsa Shock,FALSE,6,home +300814019,2010,2,2010-08-14,20,Atlanta Dream,TRUE,19,away +300814019,2010,2,2010-08-14,19,Chicago Sky,FALSE,20,home +300814009,2010,2,2010-08-14,11,Phoenix Mercury,FALSE,9,away +300814009,2010,2,2010-08-14,9,New York Liberty,TRUE,11,home +300813017,2010,2,2010-08-13,3,Tulsa Shock,FALSE,17,away +300813017,2010,2,2010-08-13,17,San Antonio Silver Stars,TRUE,3,home +300813018,2010,2,2010-08-13,14,Seattle Storm,FALSE,18,away +300813018,2010,2,2010-08-13,18,Connecticut Sun,TRUE,14,home +300813005,2010,2,2010-08-13,11,Phoenix Mercury,FALSE,5,away +300813005,2010,2,2010-08-13,5,Indiana Fever,TRUE,11,home +300813016,2010,2,2010-08-13,8,Minnesota Lynx,FALSE,16,away +300813016,2010,2,2010-08-13,16,Washington Mystics,TRUE,8,home +300813020,2010,2,2010-08-13,9,New York Liberty,TRUE,20,away +300813020,2010,2,2010-08-13,20,Atlanta Dream,FALSE,9,home +300812008,2010,2,2010-08-12,6,Los Angeles Sparks,TRUE,8,away +300812008,2010,2,2010-08-12,8,Minnesota Lynx,FALSE,6,home +300810006,2010,2,2010-08-10,5,Indiana Fever,TRUE,6,away +300810006,2010,2,2010-08-10,6,Los Angeles Sparks,FALSE,5,home +300810017,2010,2,2010-08-10,8,Minnesota Lynx,TRUE,17,away +300810017,2010,2,2010-08-10,17,San Antonio Silver Stars,FALSE,8,home +300810019,2010,2,2010-08-10,11,Phoenix Mercury,FALSE,19,away +300810019,2010,2,2010-08-10,19,Chicago Sky,TRUE,11,home +300810016,2010,2,2010-08-10,18,Connecticut Sun,FALSE,16,away +300810016,2010,2,2010-08-10,16,Washington Mystics,TRUE,18,home +300810020,2010,2,2010-08-10,14,Seattle Storm,TRUE,20,away +300810020,2010,2,2010-08-10,20,Atlanta Dream,FALSE,14,home +300808006,2010,2,2010-08-08,17,San Antonio Silver Stars,TRUE,6,away +300808006,2010,2,2010-08-08,6,Los Angeles Sparks,FALSE,17,home +300808008,2010,2,2010-08-08,9,New York Liberty,TRUE,8,away +300808008,2010,2,2010-08-08,8,Minnesota Lynx,FALSE,9,home +300808011,2010,2,2010-08-08,5,Indiana Fever,TRUE,11,away +300808011,2010,2,2010-08-08,11,Phoenix Mercury,FALSE,5,home +300808018,2010,2,2010-08-08,16,Washington Mystics,FALSE,18,away +300808018,2010,2,2010-08-08,18,Connecticut Sun,TRUE,16,home +300807014,2010,2,2010-08-07,3,Tulsa Shock,FALSE,14,away +300807014,2010,2,2010-08-07,14,Seattle Storm,TRUE,3,home +300807019,2010,2,2010-08-07,8,Minnesota Lynx,TRUE,19,away +300807019,2010,2,2010-08-07,19,Chicago Sky,FALSE,8,home +300806006,2010,2,2010-08-06,3,Tulsa Shock,FALSE,6,away +300806006,2010,2,2010-08-06,6,Los Angeles Sparks,TRUE,3,home +300806011,2010,2,2010-08-06,17,San Antonio Silver Stars,FALSE,11,away +300806011,2010,2,2010-08-06,11,Phoenix Mercury,TRUE,17,home +300806009,2010,2,2010-08-06,16,Washington Mystics,FALSE,9,away +300806009,2010,2,2010-08-06,9,New York Liberty,TRUE,16,home +300806005,2010,2,2010-08-06,20,Atlanta Dream,FALSE,5,away +300806005,2010,2,2010-08-06,5,Indiana Fever,TRUE,20,home +300805014,2010,2,2010-08-05,18,Connecticut Sun,FALSE,14,away +300805014,2010,2,2010-08-05,14,Seattle Storm,TRUE,18,home +300804006,2010,2,2010-08-04,19,Chicago Sky,FALSE,6,away +300804006,2010,2,2010-08-04,6,Los Angeles Sparks,TRUE,19,home +300803003,2010,2,2010-08-03,14,Seattle Storm,FALSE,3,away +300803003,2010,2,2010-08-03,3,Tulsa Shock,TRUE,14,home +300803008,2010,2,2010-08-03,18,Connecticut Sun,FALSE,8,away +300803008,2010,2,2010-08-03,8,Minnesota Lynx,TRUE,18,home +300803017,2010,2,2010-08-03,11,Phoenix Mercury,TRUE,17,away +300803017,2010,2,2010-08-03,17,San Antonio Silver Stars,FALSE,11,home +300803020,2010,2,2010-08-03,16,Washington Mystics,TRUE,20,away +300803020,2010,2,2010-08-03,20,Atlanta Dream,FALSE,16,home +300803005,2010,2,2010-08-03,9,New York Liberty,TRUE,5,away +300803005,2010,2,2010-08-03,5,Indiana Fever,FALSE,9,home +300801008,2010,2,2010-08-01,14,Seattle Storm,FALSE,8,away +300801008,2010,2,2010-08-01,8,Minnesota Lynx,TRUE,14,home +300801011,2010,2,2010-08-01,19,Chicago Sky,FALSE,11,away +300801011,2010,2,2010-08-01,11,Phoenix Mercury,TRUE,19,home +300801009,2010,2,2010-08-01,18,Connecticut Sun,FALSE,9,away +300801009,2010,2,2010-08-01,9,New York Liberty,TRUE,18,home +300801016,2010,2,2010-08-01,3,Tulsa Shock,FALSE,16,away +300801016,2010,2,2010-08-01,16,Washington Mystics,TRUE,3,home +300801020,2010,2,2010-08-01,5,Indiana Fever,FALSE,20,away +300801020,2010,2,2010-08-01,20,Atlanta Dream,TRUE,5,home +300730014,2010,2,2010-07-30,19,Chicago Sky,FALSE,14,away +300730014,2010,2,2010-07-30,14,Seattle Storm,TRUE,19,home +300730003,2010,2,2010-07-30,17,San Antonio Silver Stars,TRUE,3,away +300730003,2010,2,2010-07-30,3,Tulsa Shock,FALSE,17,home +300730009,2010,2,2010-07-30,6,Los Angeles Sparks,FALSE,9,away +300730009,2010,2,2010-07-30,9,New York Liberty,TRUE,6,home +300730018,2010,2,2010-07-30,20,Atlanta Dream,TRUE,18,away +300730018,2010,2,2010-07-30,18,Connecticut Sun,FALSE,20,home +300730005,2010,2,2010-07-30,16,Washington Mystics,TRUE,5,away +300730005,2010,2,2010-07-30,5,Indiana Fever,FALSE,16,home +300729011,2010,2,2010-07-29,8,Minnesota Lynx,FALSE,11,away +300729011,2010,2,2010-07-29,11,Phoenix Mercury,TRUE,8,home +300729016,2010,2,2010-07-29,17,San Antonio Silver Stars,TRUE,16,away +300729016,2010,2,2010-07-29,16,Washington Mystics,FALSE,17,home +300727014,2010,2,2010-07-27,11,Phoenix Mercury,FALSE,14,away +300727014,2010,2,2010-07-27,14,Seattle Storm,TRUE,11,home +300727008,2010,2,2010-07-27,6,Los Angeles Sparks,TRUE,8,away +300727008,2010,2,2010-07-27,8,Minnesota Lynx,FALSE,6,home +300727009,2010,2,2010-07-27,17,San Antonio Silver Stars,FALSE,9,away +300727009,2010,2,2010-07-27,9,New York Liberty,TRUE,17,home +300727018,2010,2,2010-07-27,16,Washington Mystics,FALSE,18,away +300727018,2010,2,2010-07-27,18,Connecticut Sun,TRUE,16,home +300727005,2010,2,2010-07-27,19,Chicago Sky,FALSE,5,away +300727005,2010,2,2010-07-27,5,Indiana Fever,TRUE,19,home +300727003,2010,2,2010-07-27,20,Atlanta Dream,TRUE,3,away +300727003,2010,2,2010-07-27,3,Tulsa Shock,FALSE,20,home +300725014,2010,2,2010-07-25,3,Tulsa Shock,FALSE,14,away +300725014,2010,2,2010-07-25,14,Seattle Storm,TRUE,3,home +300725020,2010,2,2010-07-25,9,New York Liberty,FALSE,20,away +300725020,2010,2,2010-07-25,20,Atlanta Dream,TRUE,9,home +300724008,2010,2,2010-07-24,11,Phoenix Mercury,TRUE,8,away +300724008,2010,2,2010-07-24,8,Minnesota Lynx,FALSE,11,home +300724017,2010,2,2010-07-24,19,Chicago Sky,TRUE,17,away +300724017,2010,2,2010-07-24,17,San Antonio Silver Stars,FALSE,19,home +300724016,2010,2,2010-07-24,5,Indiana Fever,TRUE,16,away +300724016,2010,2,2010-07-24,16,Washington Mystics,FALSE,5,home +300724018,2010,2,2010-07-24,6,Los Angeles Sparks,TRUE,18,away +300724018,2010,2,2010-07-24,18,Connecticut Sun,FALSE,6,home +300723019,2010,2,2010-07-23,9,New York Liberty,TRUE,19,away +300723019,2010,2,2010-07-23,19,Chicago Sky,FALSE,9,home +300722003,2010,2,2010-07-22,11,Phoenix Mercury,TRUE,3,away +300722003,2010,2,2010-07-22,3,Tulsa Shock,FALSE,11,home +300722008,2010,2,2010-07-22,17,San Antonio Silver Stars,TRUE,8,away +300722008,2010,2,2010-07-22,8,Minnesota Lynx,FALSE,17,home +300722005,2010,2,2010-07-22,6,Los Angeles Sparks,FALSE,5,away +300722005,2010,2,2010-07-22,5,Indiana Fever,TRUE,6,home +300721016,2010,2,2010-07-21,20,Atlanta Dream,FALSE,16,away +300721016,2010,2,2010-07-21,16,Washington Mystics,TRUE,20,home +300720018,2010,2,2010-07-20,9,New York Liberty,TRUE,18,away +300720018,2010,2,2010-07-20,18,Connecticut Sun,FALSE,9,home +300720006,2010,2,2010-07-20,3,Tulsa Shock,FALSE,6,away +300720006,2010,2,2010-07-20,6,Los Angeles Sparks,TRUE,3,home +300720017,2010,2,2010-07-20,14,Seattle Storm,TRUE,17,away +300720017,2010,2,2010-07-20,17,San Antonio Silver Stars,FALSE,14,home +300718009,2010,2,2010-07-18,5,Indiana Fever,TRUE,9,away +300718009,2010,2,2010-07-18,9,New York Liberty,FALSE,5,home +300718016,2010,2,2010-07-18,19,Chicago Sky,TRUE,16,away +300718016,2010,2,2010-07-18,16,Washington Mystics,FALSE,19,home +300718017,2010,2,2010-07-18,6,Los Angeles Sparks,FALSE,17,away +300718017,2010,2,2010-07-18,17,San Antonio Silver Stars,TRUE,6,home +300717011,2010,2,2010-07-17,3,Tulsa Shock,FALSE,11,away +300717011,2010,2,2010-07-17,11,Phoenix Mercury,TRUE,3,home +300717018,2010,2,2010-07-17,20,Atlanta Dream,FALSE,18,away +300717018,2010,2,2010-07-17,18,Connecticut Sun,TRUE,20,home +300717008,2010,2,2010-07-17,14,Seattle Storm,TRUE,8,away +300717008,2010,2,2010-07-17,8,Minnesota Lynx,FALSE,14,home +300716019,2010,2,2010-07-16,6,Los Angeles Sparks,FALSE,19,away +300716019,2010,2,2010-07-16,19,Chicago Sky,TRUE,6,home +300716017,2010,2,2010-07-16,3,Tulsa Shock,TRUE,17,away +300716017,2010,2,2010-07-16,17,San Antonio Silver Stars,FALSE,3,home +300716005,2010,2,2010-07-16,20,Atlanta Dream,FALSE,5,away +300716005,2010,2,2010-07-16,5,Indiana Fever,TRUE,20,home +300715009,2010,2,2010-07-15,16,Washington Mystics,FALSE,9,away +300715009,2010,2,2010-07-15,9,New York Liberty,TRUE,16,home +300714011,2010,2,2010-07-14,14,Seattle Storm,TRUE,11,away +300714011,2010,2,2010-07-14,11,Phoenix Mercury,FALSE,14,home +300714005,2010,2,2010-07-14,18,Connecticut Sun,TRUE,5,away +300714005,2010,2,2010-07-14,5,Indiana Fever,FALSE,18,home +300714008,2010,2,2010-07-14,20,Atlanta Dream,FALSE,8,away +300714008,2010,2,2010-07-14,8,Minnesota Lynx,TRUE,20,home +300714019,2010,2,2010-07-14,17,San Antonio Silver Stars,FALSE,19,away +300714019,2010,2,2010-07-14,19,Chicago Sky,TRUE,17,home +300713003,2010,2,2010-07-13,6,Los Angeles Sparks,TRUE,3,away +300713003,2010,2,2010-07-13,3,Tulsa Shock,FALSE,6,home +300711009,2010,2,2010-07-11,19,Chicago Sky,FALSE,9,away +300711009,2010,2,2010-07-11,9,New York Liberty,TRUE,19,home +300710096,2010,2,2010-07-10,97,Team Usa,TRUE,96,away +300710096,2010,2,2010-07-10,96,Team WNBA,FALSE,97,home +300708008,2010,2,2010-07-08,17,San Antonio Silver Stars,FALSE,8,away +300708008,2010,2,2010-07-08,8,Minnesota Lynx,TRUE,17,home +300708005,2010,2,2010-07-08,3,Tulsa Shock,FALSE,5,away +300708005,2010,2,2010-07-08,5,Indiana Fever,TRUE,3,home +300707020,2010,2,2010-07-07,18,Connecticut Sun,FALSE,20,away +300707020,2010,2,2010-07-07,20,Atlanta Dream,TRUE,18,home +300706006,2010,2,2010-07-06,11,Phoenix Mercury,TRUE,6,away +300706006,2010,2,2010-07-06,6,Los Angeles Sparks,FALSE,11,home +300706017,2010,2,2010-07-06,18,Connecticut Sun,FALSE,17,away +300706017,2010,2,2010-07-06,17,San Antonio Silver Stars,TRUE,18,home +300706019,2010,2,2010-07-06,5,Indiana Fever,TRUE,19,away +300706019,2010,2,2010-07-06,19,Chicago Sky,FALSE,5,home +300706014,2010,2,2010-07-06,9,New York Liberty,FALSE,14,away +300706014,2010,2,2010-07-06,14,Seattle Storm,TRUE,9,home +300703011,2010,2,2010-07-03,9,New York Liberty,FALSE,11,away +300703011,2010,2,2010-07-03,11,Phoenix Mercury,TRUE,9,home +300703003,2010,2,2010-07-03,16,Washington Mystics,TRUE,3,away +300703003,2010,2,2010-07-03,3,Tulsa Shock,FALSE,16,home +300703020,2010,2,2010-07-03,19,Chicago Sky,TRUE,20,away +300703020,2010,2,2010-07-03,20,Atlanta Dream,FALSE,19,home +300703006,2010,2,2010-07-03,14,Seattle Storm,TRUE,6,away +300703006,2010,2,2010-07-03,6,Los Angeles Sparks,FALSE,14,home +300701006,2010,2,2010-07-01,17,San Antonio Silver Stars,FALSE,6,away +300701006,2010,2,2010-07-01,6,Los Angeles Sparks,TRUE,17,home +300701011,2010,2,2010-07-01,16,Washington Mystics,TRUE,11,away +300701011,2010,2,2010-07-01,11,Phoenix Mercury,FALSE,16,home +300701019,2010,2,2010-07-01,18,Connecticut Sun,FALSE,19,away +300701019,2010,2,2010-07-01,19,Chicago Sky,TRUE,18,home +300701020,2010,2,2010-07-01,8,Minnesota Lynx,FALSE,20,away +300701020,2010,2,2010-07-01,20,Atlanta Dream,TRUE,8,home +300629006,2010,2,2010-06-29,9,New York Liberty,TRUE,6,away +300629006,2010,2,2010-06-29,6,Los Angeles Sparks,FALSE,9,home +300629014,2010,2,2010-06-29,17,San Antonio Silver Stars,FALSE,14,away +300629014,2010,2,2010-06-29,14,Seattle Storm,TRUE,17,home +300629003,2010,2,2010-06-29,18,Connecticut Sun,TRUE,3,away +300629003,2010,2,2010-06-29,3,Tulsa Shock,FALSE,18,home +300629016,2010,2,2010-06-29,5,Indiana Fever,FALSE,16,away +300629016,2010,2,2010-06-29,16,Washington Mystics,TRUE,5,home +300629020,2010,2,2010-06-29,11,Phoenix Mercury,FALSE,20,away +300629020,2010,2,2010-06-29,20,Atlanta Dream,TRUE,11,home +300627019,2010,2,2010-06-27,5,Indiana Fever,TRUE,19,away +300627019,2010,2,2010-06-27,19,Chicago Sky,FALSE,5,home +300627003,2010,2,2010-06-27,14,Seattle Storm,TRUE,3,away +300627003,2010,2,2010-06-27,3,Tulsa Shock,FALSE,14,home +300627009,2010,2,2010-06-27,18,Connecticut Sun,FALSE,9,away +300627009,2010,2,2010-06-27,9,New York Liberty,TRUE,18,home +300627016,2010,2,2010-06-27,11,Phoenix Mercury,FALSE,16,away +300627016,2010,2,2010-06-27,16,Washington Mystics,TRUE,11,home +300627020,2010,2,2010-06-27,6,Los Angeles Sparks,FALSE,20,away +300627020,2010,2,2010-06-27,20,Atlanta Dream,TRUE,6,home +300626017,2010,2,2010-06-26,8,Minnesota Lynx,FALSE,17,away +300626017,2010,2,2010-06-26,17,San Antonio Silver Stars,TRUE,8,home +300625014,2010,2,2010-06-25,5,Indiana Fever,FALSE,14,away +300625014,2010,2,2010-06-25,14,Seattle Storm,TRUE,5,home +300625019,2010,2,2010-06-25,16,Washington Mystics,FALSE,19,away +300625019,2010,2,2010-06-25,19,Chicago Sky,TRUE,16,home +300625003,2010,2,2010-06-25,9,New York Liberty,TRUE,3,away +300625003,2010,2,2010-06-25,3,Tulsa Shock,FALSE,9,home +300625018,2010,2,2010-06-25,11,Phoenix Mercury,FALSE,18,away +300625018,2010,2,2010-06-25,18,Connecticut Sun,TRUE,11,home +300624016,2010,2,2010-06-24,6,Los Angeles Sparks,FALSE,16,away +300624016,2010,2,2010-06-24,16,Washington Mystics,TRUE,6,home +300623020,2010,2,2010-06-23,3,Tulsa Shock,FALSE,20,away +300623020,2010,2,2010-06-23,20,Atlanta Dream,TRUE,3,home +300622009,2010,2,2010-06-22,8,Minnesota Lynx,TRUE,9,away +300622009,2010,2,2010-06-22,9,New York Liberty,FALSE,8,home +300622018,2010,2,2010-06-22,19,Chicago Sky,TRUE,18,away +300622018,2010,2,2010-06-22,18,Connecticut Sun,FALSE,19,home +300620014,2010,2,2010-06-20,17,San Antonio Silver Stars,FALSE,14,away +300620014,2010,2,2010-06-20,14,Seattle Storm,TRUE,17,home +300620011,2010,2,2010-06-20,18,Connecticut Sun,TRUE,11,away +300620011,2010,2,2010-06-20,11,Phoenix Mercury,FALSE,18,home +300619003,2010,2,2010-06-19,8,Minnesota Lynx,TRUE,3,away +300619003,2010,2,2010-06-19,3,Tulsa Shock,FALSE,8,home +300619005,2010,2,2010-06-19,20,Atlanta Dream,FALSE,5,away +300619005,2010,2,2010-06-19,5,Indiana Fever,TRUE,20,home +300619016,2010,2,2010-06-19,19,Chicago Sky,FALSE,16,away +300619016,2010,2,2010-06-19,16,Washington Mystics,TRUE,19,home +300618006,2010,2,2010-06-18,18,Connecticut Sun,TRUE,6,away +300618006,2010,2,2010-06-18,6,Los Angeles Sparks,FALSE,18,home +300618011,2010,2,2010-06-18,17,San Antonio Silver Stars,TRUE,11,away +300618011,2010,2,2010-06-18,11,Phoenix Mercury,FALSE,17,home +300618008,2010,2,2010-06-18,3,Tulsa Shock,FALSE,8,away +300618008,2010,2,2010-06-18,8,Minnesota Lynx,TRUE,3,home +300618009,2010,2,2010-06-18,14,Seattle Storm,TRUE,9,away +300618009,2010,2,2010-06-18,9,New York Liberty,FALSE,14,home +300617005,2010,2,2010-06-17,14,Seattle Storm,FALSE,5,away +300617005,2010,2,2010-06-17,5,Indiana Fever,TRUE,14,home +300615019,2010,2,2010-06-15,20,Atlanta Dream,TRUE,19,away +300615019,2010,2,2010-06-15,19,Chicago Sky,FALSE,20,home +300613005,2010,2,2010-06-13,18,Connecticut Sun,FALSE,5,away +300613005,2010,2,2010-06-13,5,Indiana Fever,TRUE,18,home +300613006,2010,2,2010-06-13,8,Minnesota Lynx,FALSE,6,away +300613006,2010,2,2010-06-13,6,Los Angeles Sparks,TRUE,8,home +300613020,2010,2,2010-06-13,17,San Antonio Silver Stars,FALSE,20,away +300613020,2010,2,2010-06-13,20,Atlanta Dream,TRUE,17,home +300612011,2010,2,2010-06-12,3,Tulsa Shock,FALSE,11,away +300612011,2010,2,2010-06-12,11,Phoenix Mercury,TRUE,3,home +300612016,2010,2,2010-06-12,9,New York Liberty,FALSE,16,away +300612016,2010,2,2010-06-12,16,Washington Mystics,TRUE,9,home +300611014,2010,2,2010-06-11,6,Los Angeles Sparks,FALSE,14,away +300611014,2010,2,2010-06-11,14,Seattle Storm,TRUE,6,home +300611019,2010,2,2010-06-11,16,Washington Mystics,TRUE,19,away +300611019,2010,2,2010-06-11,19,Chicago Sky,FALSE,16,home +300611017,2010,2,2010-06-11,3,Tulsa Shock,FALSE,17,away +300611017,2010,2,2010-06-11,17,San Antonio Silver Stars,TRUE,3,home +300611009,2010,2,2010-06-11,20,Atlanta Dream,FALSE,9,away +300611009,2010,2,2010-06-11,9,New York Liberty,TRUE,20,home +300611018,2010,2,2010-06-11,5,Indiana Fever,FALSE,18,away +300611018,2010,2,2010-06-11,18,Connecticut Sun,TRUE,5,home +300610011,2010,2,2010-06-10,8,Minnesota Lynx,FALSE,11,away +300610011,2010,2,2010-06-10,11,Phoenix Mercury,TRUE,8,home +300608006,2010,2,2010-06-08,11,Phoenix Mercury,FALSE,6,away +300608006,2010,2,2010-06-08,6,Los Angeles Sparks,TRUE,11,home +300608019,2010,2,2010-06-08,9,New York Liberty,TRUE,19,away +300608019,2010,2,2010-06-08,19,Chicago Sky,FALSE,9,home +300606014,2010,2,2010-06-06,11,Phoenix Mercury,FALSE,14,away +300606014,2010,2,2010-06-06,14,Seattle Storm,TRUE,11,home +300606008,2010,2,2010-06-06,5,Indiana Fever,TRUE,8,away +300606008,2010,2,2010-06-06,8,Minnesota Lynx,FALSE,5,home +300606018,2010,2,2010-06-06,17,San Antonio Silver Stars,FALSE,18,away +300606018,2010,2,2010-06-06,18,Connecticut Sun,TRUE,17,home +300605006,2010,2,2010-06-05,14,Seattle Storm,TRUE,6,away +300605006,2010,2,2010-06-05,6,Los Angeles Sparks,FALSE,14,home +300605019,2010,2,2010-06-05,3,Tulsa Shock,FALSE,19,away +300605019,2010,2,2010-06-05,19,Chicago Sky,TRUE,3,home +300605005,2010,2,2010-06-05,9,New York Liberty,FALSE,5,away +300605005,2010,2,2010-06-05,5,Indiana Fever,TRUE,9,home +300605016,2010,2,2010-06-05,20,Atlanta Dream,TRUE,16,away +300605016,2010,2,2010-06-05,16,Washington Mystics,FALSE,20,home +300604011,2010,2,2010-06-04,6,Los Angeles Sparks,FALSE,11,away +300604011,2010,2,2010-06-04,11,Phoenix Mercury,TRUE,6,home +300604003,2010,2,2010-06-04,8,Minnesota Lynx,FALSE,3,away +300604003,2010,2,2010-06-04,3,Tulsa Shock,TRUE,8,home +300604018,2010,2,2010-06-04,9,New York Liberty,FALSE,18,away +300604018,2010,2,2010-06-04,18,Connecticut Sun,TRUE,9,home +300604020,2010,2,2010-06-04,19,Chicago Sky,TRUE,20,away +300604020,2010,2,2010-06-04,20,Atlanta Dream,FALSE,19,home +300603005,2010,2,2010-06-03,17,San Antonio Silver Stars,FALSE,5,away +300603005,2010,2,2010-06-03,5,Indiana Fever,TRUE,17,home +300601014,2010,2,2010-06-01,20,Atlanta Dream,FALSE,14,away +300601014,2010,2,2010-06-01,14,Seattle Storm,TRUE,20,home +300601008,2010,2,2010-06-01,11,Phoenix Mercury,FALSE,8,away +300601008,2010,2,2010-06-01,8,Minnesota Lynx,TRUE,11,home +300530006,2010,2,2010-05-30,20,Atlanta Dream,TRUE,6,away +300530006,2010,2,2010-05-30,6,Los Angeles Sparks,FALSE,20,home +300530016,2010,2,2010-05-30,18,Connecticut Sun,FALSE,16,away +300530016,2010,2,2010-05-30,16,Washington Mystics,TRUE,18,home +300530017,2010,2,2010-05-30,14,Seattle Storm,TRUE,17,away +300530017,2010,2,2010-05-30,17,San Antonio Silver Stars,FALSE,14,home +300529003,2010,2,2010-05-29,5,Indiana Fever,FALSE,3,away +300529003,2010,2,2010-05-29,3,Tulsa Shock,TRUE,5,home +300529008,2010,2,2010-05-29,19,Chicago Sky,TRUE,8,away +300529008,2010,2,2010-05-29,8,Minnesota Lynx,FALSE,19,home +300528006,2010,2,2010-05-28,16,Washington Mystics,FALSE,6,away +300528006,2010,2,2010-05-28,6,Los Angeles Sparks,TRUE,16,home +300528011,2010,2,2010-05-28,20,Atlanta Dream,TRUE,11,away +300528011,2010,2,2010-05-28,11,Phoenix Mercury,FALSE,20,home +300528017,2010,2,2010-05-28,9,New York Liberty,TRUE,17,away +300528017,2010,2,2010-05-28,17,San Antonio Silver Stars,FALSE,9,home +300527019,2010,2,2010-05-27,14,Seattle Storm,FALSE,19,away +300527019,2010,2,2010-05-27,19,Chicago Sky,TRUE,14,home +300527018,2010,2,2010-05-27,8,Minnesota Lynx,FALSE,18,away +300527018,2010,2,2010-05-27,18,Connecticut Sun,TRUE,8,home +300525014,2010,2,2010-05-25,16,Washington Mystics,FALSE,14,away +300525014,2010,2,2010-05-25,14,Seattle Storm,TRUE,16,home +300525003,2010,2,2010-05-25,11,Phoenix Mercury,TRUE,3,away +300525003,2010,2,2010-05-25,3,Tulsa Shock,FALSE,11,home +300523008,2010,2,2010-05-23,3,Tulsa Shock,TRUE,8,away +300523008,2010,2,2010-05-23,8,Minnesota Lynx,FALSE,3,home +300523005,2010,2,2010-05-23,19,Chicago Sky,FALSE,5,away +300523005,2010,2,2010-05-23,5,Indiana Fever,TRUE,19,home +300523009,2010,2,2010-05-23,20,Atlanta Dream,TRUE,9,away +300523009,2010,2,2010-05-23,9,New York Liberty,FALSE,20,home +300523018,2010,2,2010-05-23,16,Washington Mystics,FALSE,18,away +300523018,2010,2,2010-05-23,18,Connecticut Sun,TRUE,16,home +300522011,2010,2,2010-05-22,14,Seattle Storm,TRUE,11,away +300522011,2010,2,2010-05-22,11,Phoenix Mercury,FALSE,14,home +300522017,2010,2,2010-05-22,6,Los Angeles Sparks,FALSE,17,away +300522017,2010,2,2010-05-22,17,San Antonio Silver Stars,TRUE,6,home +300522019,2010,2,2010-05-22,5,Indiana Fever,TRUE,19,away +300522019,2010,2,2010-05-22,19,Chicago Sky,FALSE,5,home +300521016,2010,2,2010-05-21,9,New York Liberty,FALSE,16,away +300521016,2010,2,2010-05-21,16,Washington Mystics,TRUE,9,home +300521020,2010,2,2010-05-21,18,Connecticut Sun,FALSE,20,away +300521020,2010,2,2010-05-21,20,Atlanta Dream,TRUE,18,home +300520003,2010,2,2010-05-20,17,San Antonio Silver Stars,TRUE,3,away +300520003,2010,2,2010-05-20,3,Tulsa Shock,FALSE,17,home +300519014,2010,2,2010-05-19,8,Minnesota Lynx,FALSE,14,away +300519014,2010,2,2010-05-19,14,Seattle Storm,TRUE,8,home +300516014,2010,2,2010-05-16,6,Los Angeles Sparks,FALSE,14,away +300516014,2010,2,2010-05-16,14,Seattle Storm,TRUE,6,home +300516008,2010,2,2010-05-16,16,Washington Mystics,TRUE,8,away +300516008,2010,2,2010-05-16,8,Minnesota Lynx,FALSE,16,home +300516020,2010,2,2010-05-16,5,Indiana Fever,FALSE,20,away +300516020,2010,2,2010-05-16,20,Atlanta Dream,TRUE,5,home +300516009,2010,2,2010-05-16,19,Chicago Sky,FALSE,9,away +300516009,2010,2,2010-05-16,9,New York Liberty,TRUE,19,home +300515003,2010,2,2010-05-15,8,Minnesota Lynx,TRUE,3,away +300515003,2010,2,2010-05-15,3,Tulsa Shock,FALSE,8,home +300515017,2010,2,2010-05-15,20,Atlanta Dream,TRUE,17,away +300515017,2010,2,2010-05-15,17,San Antonio Silver Stars,FALSE,20,home +300515005,2010,2,2010-05-15,16,Washington Mystics,TRUE,5,away +300515005,2010,2,2010-05-15,5,Indiana Fever,FALSE,16,home +300515018,2010,2,2010-05-15,19,Chicago Sky,FALSE,18,away +300515018,2010,2,2010-05-15,18,Connecticut Sun,TRUE,19,home +300515011,2010,2,2010-05-15,6,Los Angeles Sparks,FALSE,11,away +300515011,2010,2,2010-05-15,11,Phoenix Mercury,TRUE,6,home +311007020,2011,3,2011-10-07,8,Minnesota Lynx,TRUE,20,away +311007020,2011,3,2011-10-07,20,Atlanta Dream,FALSE,8,home +311005008,2011,3,2011-10-05,20,Atlanta Dream,FALSE,8,away +311005008,2011,3,2011-10-05,8,Minnesota Lynx,TRUE,20,home +311002008,2011,3,2011-10-02,20,Atlanta Dream,FALSE,8,away +311002008,2011,3,2011-10-02,8,Minnesota Lynx,TRUE,20,home +310927005,2011,3,2011-09-27,20,Atlanta Dream,TRUE,5,away +310927005,2011,3,2011-09-27,5,Indiana Fever,FALSE,20,home +310925011,2011,3,2011-09-25,8,Minnesota Lynx,TRUE,11,away +310925011,2011,3,2011-09-25,11,Phoenix Mercury,FALSE,8,home +310925020,2011,3,2011-09-25,5,Indiana Fever,FALSE,20,away +310925020,2011,3,2011-09-25,20,Atlanta Dream,TRUE,5,home +310922008,2011,3,2011-09-22,11,Phoenix Mercury,FALSE,8,away +310922008,2011,3,2011-09-22,8,Minnesota Lynx,TRUE,11,home +310922005,2011,3,2011-09-22,20,Atlanta Dream,FALSE,5,away +310922005,2011,3,2011-09-22,5,Indiana Fever,TRUE,20,home +310920008,2011,3,2011-09-20,17,San Antonio Silver Stars,FALSE,8,away +310920008,2011,3,2011-09-20,8,Minnesota Lynx,TRUE,17,home +310919014,2011,3,2011-09-19,11,Phoenix Mercury,TRUE,14,away +310919014,2011,3,2011-09-19,14,Seattle Storm,FALSE,11,home +310919005,2011,3,2011-09-19,9,New York Liberty,FALSE,5,away +310919005,2011,3,2011-09-19,5,Indiana Fever,TRUE,9,home +310918017,2011,3,2011-09-18,8,Minnesota Lynx,FALSE,17,away +310918017,2011,3,2011-09-18,17,San Antonio Silver Stars,TRUE,8,home +310918020,2011,3,2011-09-18,18,Connecticut Sun,FALSE,20,away +310918020,2011,3,2011-09-18,20,Atlanta Dream,TRUE,18,home +310917011,2011,3,2011-09-17,14,Seattle Storm,FALSE,11,away +310917011,2011,3,2011-09-17,11,Phoenix Mercury,TRUE,14,home +310917009,2011,3,2011-09-17,5,Indiana Fever,FALSE,9,away +310917009,2011,3,2011-09-17,9,New York Liberty,TRUE,5,home +310916008,2011,3,2011-09-16,17,San Antonio Silver Stars,FALSE,8,away +310916008,2011,3,2011-09-16,8,Minnesota Lynx,TRUE,17,home +310916018,2011,3,2011-09-16,20,Atlanta Dream,TRUE,18,away +310916018,2011,3,2011-09-16,18,Connecticut Sun,FALSE,20,home +310915014,2011,3,2011-09-15,11,Phoenix Mercury,FALSE,14,away +310915014,2011,3,2011-09-15,14,Seattle Storm,TRUE,11,home +310915005,2011,3,2011-09-15,9,New York Liberty,FALSE,5,away +310915005,2011,3,2011-09-15,5,Indiana Fever,TRUE,9,home +310911014,2011,2,2011-09-11,19,Chicago Sky,FALSE,14,away +310911014,2011,2,2011-09-11,14,Seattle Storm,TRUE,19,home +310911003,2011,2,2011-09-11,17,San Antonio Silver Stars,TRUE,3,away +310911003,2011,2,2011-09-11,3,Tulsa Shock,FALSE,17,home +310911011,2011,2,2011-09-11,8,Minnesota Lynx,TRUE,11,away +310911011,2011,2,2011-09-11,11,Phoenix Mercury,FALSE,8,home +310911005,2011,2,2011-09-11,20,Atlanta Dream,TRUE,5,away +310911005,2011,2,2011-09-11,5,Indiana Fever,FALSE,20,home +310911018,2011,2,2011-09-11,9,New York Liberty,FALSE,18,away +310911018,2011,2,2011-09-11,18,Connecticut Sun,TRUE,9,home +310910006,2011,2,2011-09-10,19,Chicago Sky,FALSE,6,away +310910006,2011,2,2011-09-10,6,Los Angeles Sparks,TRUE,19,home +310910017,2011,2,2011-09-10,16,Washington Mystics,FALSE,17,away +310910017,2011,2,2011-09-10,17,San Antonio Silver Stars,TRUE,16,home +310909006,2011,2,2011-09-09,3,Tulsa Shock,FALSE,6,away +310909006,2011,2,2011-09-09,6,Los Angeles Sparks,TRUE,3,home +310909014,2011,2,2011-09-09,11,Phoenix Mercury,FALSE,14,away +310909014,2011,2,2011-09-09,14,Seattle Storm,TRUE,11,home +310909009,2011,2,2011-09-09,5,Indiana Fever,FALSE,9,away +310909009,2011,2,2011-09-09,9,New York Liberty,TRUE,5,home +310908011,2011,2,2011-09-08,3,Tulsa Shock,FALSE,11,away +310908011,2011,2,2011-09-08,11,Phoenix Mercury,TRUE,3,home +310908008,2011,2,2011-09-08,19,Chicago Sky,FALSE,8,away +310908008,2011,2,2011-09-08,8,Minnesota Lynx,TRUE,19,home +310907005,2011,2,2011-09-07,16,Washington Mystics,FALSE,5,away +310907005,2011,2,2011-09-07,5,Indiana Fever,TRUE,16,home +310906006,2011,2,2011-09-06,17,San Antonio Silver Stars,TRUE,6,away +310906006,2011,2,2011-09-06,6,Los Angeles Sparks,FALSE,17,home +310906020,2011,2,2011-09-06,18,Connecticut Sun,FALSE,20,away +310906020,2011,2,2011-09-06,20,Atlanta Dream,TRUE,18,home +310904019,2011,2,2011-09-04,5,Indiana Fever,TRUE,19,away +310904019,2011,2,2011-09-04,19,Chicago Sky,FALSE,5,home +310904009,2011,2,2011-09-04,8,Minnesota Lynx,TRUE,9,away +310904009,2011,2,2011-09-04,9,New York Liberty,FALSE,8,home +310904016,2011,2,2011-09-04,18,Connecticut Sun,TRUE,16,away +310904016,2011,2,2011-09-04,16,Washington Mystics,FALSE,18,home +310904020,2011,2,2011-09-04,3,Tulsa Shock,FALSE,20,away +310904020,2011,2,2011-09-04,20,Atlanta Dream,TRUE,3,home +310903011,2011,2,2011-09-03,6,Los Angeles Sparks,FALSE,11,away +310903011,2011,2,2011-09-03,11,Phoenix Mercury,TRUE,6,home +310903017,2011,2,2011-09-03,14,Seattle Storm,TRUE,17,away +310903017,2011,2,2011-09-03,17,San Antonio Silver Stars,FALSE,14,home +310902003,2011,2,2011-09-02,14,Seattle Storm,TRUE,3,away +310902003,2011,2,2011-09-02,3,Tulsa Shock,FALSE,14,home +310902008,2011,2,2011-09-02,9,New York Liberty,TRUE,8,away +310902008,2011,2,2011-09-02,8,Minnesota Lynx,FALSE,9,home +310902018,2011,2,2011-09-02,5,Indiana Fever,FALSE,18,away +310902018,2011,2,2011-09-02,18,Connecticut Sun,TRUE,5,home +310902020,2011,2,2011-09-02,16,Washington Mystics,FALSE,20,away +310902020,2011,2,2011-09-02,20,Atlanta Dream,TRUE,16,home +310901017,2011,2,2011-09-01,11,Phoenix Mercury,FALSE,17,away +310901017,2011,2,2011-09-01,17,San Antonio Silver Stars,TRUE,11,home +310901016,2011,2,2011-09-01,20,Atlanta Dream,FALSE,16,away +310901016,2011,2,2011-09-01,16,Washington Mystics,TRUE,20,home +310830006,2011,2,2011-08-30,14,Seattle Storm,FALSE,6,away +310830006,2011,2,2011-08-30,6,Los Angeles Sparks,TRUE,14,home +310830003,2011,2,2011-08-30,11,Phoenix Mercury,TRUE,3,away +310830003,2011,2,2011-08-30,3,Tulsa Shock,FALSE,11,home +310830008,2011,2,2011-08-30,16,Washington Mystics,FALSE,8,away +310830008,2011,2,2011-08-30,8,Minnesota Lynx,TRUE,16,home +310830017,2011,2,2011-08-30,18,Connecticut Sun,FALSE,17,away +310830017,2011,2,2011-08-30,17,San Antonio Silver Stars,TRUE,18,home +310830020,2011,2,2011-08-30,5,Indiana Fever,FALSE,20,away +310830020,2011,2,2011-08-30,20,Atlanta Dream,TRUE,5,home +310830009,2011,2,2011-08-30,19,Chicago Sky,FALSE,9,away +310830009,2011,2,2011-08-30,9,New York Liberty,TRUE,19,home +310828014,2011,2,2011-08-28,6,Los Angeles Sparks,FALSE,14,away +310828014,2011,2,2011-08-28,14,Seattle Storm,TRUE,6,home +310828019,2011,2,2011-08-28,9,New York Liberty,FALSE,19,away +310828019,2011,2,2011-08-28,19,Chicago Sky,TRUE,9,home +310828003,2011,2,2011-08-28,18,Connecticut Sun,FALSE,3,away +310828003,2011,2,2011-08-28,3,Tulsa Shock,TRUE,18,home +310828016,2011,2,2011-08-28,11,Phoenix Mercury,TRUE,16,away +310828016,2011,2,2011-08-28,16,Washington Mystics,FALSE,11,home +310828017,2011,2,2011-08-28,8,Minnesota Lynx,TRUE,17,away +310828017,2011,2,2011-08-28,17,San Antonio Silver Stars,FALSE,8,home +310827005,2011,2,2011-08-27,20,Atlanta Dream,TRUE,5,away +310827005,2011,2,2011-08-27,5,Indiana Fever,FALSE,20,home +310826006,2011,2,2011-08-26,3,Tulsa Shock,TRUE,6,away +310826006,2011,2,2011-08-26,6,Los Angeles Sparks,FALSE,3,home +310826019,2011,2,2011-08-26,16,Washington Mystics,FALSE,19,away +310826019,2011,2,2011-08-26,19,Chicago Sky,TRUE,16,home +310826008,2011,2,2011-08-26,17,San Antonio Silver Stars,FALSE,8,away +310826008,2011,2,2011-08-26,8,Minnesota Lynx,TRUE,17,home +310826018,2011,2,2011-08-26,11,Phoenix Mercury,FALSE,18,away +310826018,2011,2,2011-08-26,18,Connecticut Sun,TRUE,11,home +310825014,2011,2,2011-08-25,3,Tulsa Shock,FALSE,14,away +310825014,2011,2,2011-08-25,14,Seattle Storm,TRUE,3,home +310823011,2011,2,2011-08-23,9,New York Liberty,TRUE,11,away +310823011,2011,2,2011-08-23,11,Phoenix Mercury,FALSE,9,home +310823014,2011,2,2011-08-23,17,San Antonio Silver Stars,FALSE,14,away +310823014,2011,2,2011-08-23,14,Seattle Storm,TRUE,17,home +310823003,2011,2,2011-08-23,8,Minnesota Lynx,TRUE,3,away +310823003,2011,2,2011-08-23,3,Tulsa Shock,FALSE,8,home +310823019,2011,2,2011-08-23,20,Atlanta Dream,TRUE,19,away +310823019,2011,2,2011-08-23,19,Chicago Sky,FALSE,20,home +310823016,2011,2,2011-08-23,6,Los Angeles Sparks,TRUE,16,away +310823016,2011,2,2011-08-23,16,Washington Mystics,FALSE,6,home +310821003,2011,2,2011-08-21,6,Los Angeles Sparks,TRUE,3,away +310821003,2011,2,2011-08-21,3,Tulsa Shock,FALSE,6,home +310821005,2011,2,2011-08-21,16,Washington Mystics,FALSE,5,away +310821005,2011,2,2011-08-21,5,Indiana Fever,TRUE,16,home +310821018,2011,2,2011-08-21,20,Atlanta Dream,FALSE,18,away +310821018,2011,2,2011-08-21,18,Connecticut Sun,TRUE,20,home +310820011,2011,2,2011-08-20,17,San Antonio Silver Stars,FALSE,11,away +310820011,2011,2,2011-08-20,11,Phoenix Mercury,TRUE,17,home +310820014,2011,2,2011-08-20,9,New York Liberty,FALSE,14,away +310820014,2011,2,2011-08-20,14,Seattle Storm,TRUE,9,home +310820008,2011,2,2011-08-20,6,Los Angeles Sparks,FALSE,8,away +310820008,2011,2,2011-08-20,8,Minnesota Lynx,TRUE,6,home +310820016,2011,2,2011-08-20,19,Chicago Sky,TRUE,16,away +310820016,2011,2,2011-08-20,16,Washington Mystics,FALSE,19,home +310819020,2011,2,2011-08-19,18,Connecticut Sun,FALSE,20,away +310819020,2011,2,2011-08-19,20,Atlanta Dream,TRUE,18,home +310818006,2011,2,2011-08-18,5,Indiana Fever,FALSE,6,away +310818006,2011,2,2011-08-18,6,Los Angeles Sparks,TRUE,5,home +310818009,2011,2,2011-08-18,18,Connecticut Sun,FALSE,9,away +310818009,2011,2,2011-08-18,9,New York Liberty,TRUE,18,home +310818016,2011,2,2011-08-18,8,Minnesota Lynx,TRUE,16,away +310818016,2011,2,2011-08-18,16,Washington Mystics,FALSE,8,home +310816006,2011,2,2011-08-16,20,Atlanta Dream,TRUE,6,away +310816006,2011,2,2011-08-16,6,Los Angeles Sparks,FALSE,20,home +310816011,2011,2,2011-08-16,14,Seattle Storm,FALSE,11,away +310816011,2011,2,2011-08-16,11,Phoenix Mercury,TRUE,14,home +310816017,2011,2,2011-08-16,5,Indiana Fever,TRUE,17,away +310816017,2011,2,2011-08-16,17,San Antonio Silver Stars,FALSE,5,home +310816018,2011,2,2011-08-16,8,Minnesota Lynx,FALSE,18,away +310816018,2011,2,2011-08-16,18,Connecticut Sun,TRUE,8,home +310816009,2011,2,2011-08-16,16,Washington Mystics,FALSE,9,away +310816009,2011,2,2011-08-16,9,New York Liberty,TRUE,16,home +310814008,2011,2,2011-08-14,3,Tulsa Shock,FALSE,8,away +310814008,2011,2,2011-08-14,8,Minnesota Lynx,TRUE,3,home +310814017,2011,2,2011-08-14,19,Chicago Sky,TRUE,17,away +310814017,2011,2,2011-08-14,17,San Antonio Silver Stars,FALSE,19,home +310813014,2011,2,2011-08-13,20,Atlanta Dream,TRUE,14,away +310813014,2011,2,2011-08-13,14,Seattle Storm,FALSE,20,home +310813005,2011,2,2011-08-13,9,New York Liberty,FALSE,5,away +310813005,2011,2,2011-08-13,5,Indiana Fever,TRUE,9,home +310813018,2011,2,2011-08-13,16,Washington Mystics,FALSE,18,away +310813018,2011,2,2011-08-13,18,Connecticut Sun,TRUE,16,home +310812006,2011,2,2011-08-12,11,Phoenix Mercury,FALSE,6,away +310812006,2011,2,2011-08-12,6,Los Angeles Sparks,TRUE,11,home +310812019,2011,2,2011-08-12,8,Minnesota Lynx,TRUE,19,away +310812019,2011,2,2011-08-12,19,Chicago Sky,FALSE,8,home +310812016,2011,2,2011-08-12,9,New York Liberty,FALSE,16,away +310812016,2011,2,2011-08-12,16,Washington Mystics,TRUE,9,home +310811011,2011,2,2011-08-11,20,Atlanta Dream,FALSE,11,away +310811011,2011,2,2011-08-11,11,Phoenix Mercury,TRUE,20,home +310811014,2011,2,2011-08-11,3,Tulsa Shock,FALSE,14,away +310811014,2011,2,2011-08-11,14,Seattle Storm,TRUE,3,home +310811018,2011,2,2011-08-11,17,San Antonio Silver Stars,TRUE,18,away +310811018,2011,2,2011-08-11,18,Connecticut Sun,FALSE,17,home +310809006,2011,2,2011-08-09,3,Tulsa Shock,FALSE,6,away +310809006,2011,2,2011-08-09,6,Los Angeles Sparks,TRUE,3,home +310809011,2011,2,2011-08-09,8,Minnesota Lynx,FALSE,11,away +310809011,2011,2,2011-08-09,11,Phoenix Mercury,TRUE,8,home +310809009,2011,2,2011-08-09,14,Seattle Storm,FALSE,9,away +310809009,2011,2,2011-08-09,9,New York Liberty,TRUE,14,home +310809018,2011,2,2011-08-09,19,Chicago Sky,FALSE,18,away +310809018,2011,2,2011-08-09,18,Connecticut Sun,TRUE,19,home +310809005,2011,2,2011-08-09,17,San Antonio Silver Stars,FALSE,5,away +310809005,2011,2,2011-08-09,5,Indiana Fever,TRUE,17,home +310809016,2011,2,2011-08-09,20,Atlanta Dream,TRUE,16,away +310809016,2011,2,2011-08-09,16,Washington Mystics,FALSE,20,home +310807006,2011,2,2011-08-07,8,Minnesota Lynx,TRUE,6,away +310807006,2011,2,2011-08-07,6,Los Angeles Sparks,FALSE,8,home +310807019,2011,2,2011-08-07,5,Indiana Fever,FALSE,19,away +310807019,2011,2,2011-08-07,19,Chicago Sky,TRUE,5,home +310807011,2011,2,2011-08-07,18,Connecticut Sun,TRUE,11,away +310807011,2011,2,2011-08-07,11,Phoenix Mercury,FALSE,18,home +310807020,2011,2,2011-08-07,14,Seattle Storm,FALSE,20,away +310807020,2011,2,2011-08-07,20,Atlanta Dream,TRUE,14,home +310806017,2011,2,2011-08-06,3,Tulsa Shock,FALSE,17,away +310806017,2011,2,2011-08-06,17,San Antonio Silver Stars,TRUE,3,home +310806016,2011,2,2011-08-06,9,New York Liberty,FALSE,16,away +310806016,2011,2,2011-08-06,16,Washington Mystics,TRUE,9,home +310805014,2011,2,2011-08-05,18,Connecticut Sun,FALSE,14,away +310805014,2011,2,2011-08-05,14,Seattle Storm,TRUE,18,home +310805003,2011,2,2011-08-05,5,Indiana Fever,TRUE,3,away +310805003,2011,2,2011-08-05,3,Tulsa Shock,FALSE,5,home +310804008,2011,2,2011-08-04,17,San Antonio Silver Stars,FALSE,8,away +310804008,2011,2,2011-08-04,8,Minnesota Lynx,TRUE,17,home +310804009,2011,2,2011-08-04,19,Chicago Sky,FALSE,9,away +310804009,2011,2,2011-08-04,9,New York Liberty,TRUE,19,home +310803006,2011,2,2011-08-03,18,Connecticut Sun,TRUE,6,away +310803006,2011,2,2011-08-03,6,Los Angeles Sparks,FALSE,18,home +310802014,2011,2,2011-08-02,17,San Antonio Silver Stars,FALSE,14,away +310802014,2011,2,2011-08-02,14,Seattle Storm,TRUE,17,home +310802008,2011,2,2011-08-02,11,Phoenix Mercury,FALSE,8,away +310802008,2011,2,2011-08-02,8,Minnesota Lynx,TRUE,11,home +310802020,2011,2,2011-08-02,9,New York Liberty,TRUE,20,away +310802020,2011,2,2011-08-02,20,Atlanta Dream,FALSE,9,home +310731005,2011,2,2011-07-31,6,Los Angeles Sparks,FALSE,5,away +310731005,2011,2,2011-07-31,5,Indiana Fever,TRUE,6,home +310731018,2011,2,2011-07-31,20,Atlanta Dream,FALSE,18,away +310731018,2011,2,2011-07-31,18,Connecticut Sun,TRUE,20,home +310731017,2011,2,2011-07-31,8,Minnesota Lynx,TRUE,17,away +310731017,2011,2,2011-07-31,17,San Antonio Silver Stars,FALSE,8,home +310730003,2011,2,2011-07-30,14,Seattle Storm,TRUE,3,away +310730003,2011,2,2011-07-30,3,Tulsa Shock,FALSE,14,home +310730019,2011,2,2011-07-30,6,Los Angeles Sparks,TRUE,19,away +310730019,2011,2,2011-07-30,19,Chicago Sky,FALSE,6,home +310730009,2011,2,2011-07-30,11,Phoenix Mercury,TRUE,9,away +310730009,2011,2,2011-07-30,9,New York Liberty,FALSE,11,home +310729008,2011,2,2011-07-29,14,Seattle Storm,FALSE,8,away +310729008,2011,2,2011-07-29,8,Minnesota Lynx,TRUE,14,home +310729016,2011,2,2011-07-29,5,Indiana Fever,TRUE,16,away +310729016,2011,2,2011-07-29,16,Washington Mystics,FALSE,5,home +310728003,2011,2,2011-07-28,19,Chicago Sky,TRUE,3,away +310728003,2011,2,2011-07-28,3,Tulsa Shock,FALSE,19,home +310728018,2011,2,2011-07-28,5,Indiana Fever,TRUE,18,away +310728018,2011,2,2011-07-28,18,Connecticut Sun,FALSE,5,home +310728009,2011,2,2011-07-28,16,Washington Mystics,FALSE,9,away +310728009,2011,2,2011-07-28,9,New York Liberty,TRUE,16,home +310728020,2011,2,2011-07-28,6,Los Angeles Sparks,FALSE,20,away +310728020,2011,2,2011-07-28,20,Atlanta Dream,TRUE,6,home +310728017,2011,2,2011-07-28,11,Phoenix Mercury,FALSE,17,away +310728017,2011,2,2011-07-28,17,San Antonio Silver Stars,TRUE,11,home +310726011,2011,2,2011-07-26,14,Seattle Storm,TRUE,11,away +310726011,2011,2,2011-07-26,11,Phoenix Mercury,FALSE,14,home +310726003,2011,2,2011-07-26,20,Atlanta Dream,TRUE,3,away +310726003,2011,2,2011-07-26,3,Tulsa Shock,FALSE,20,home +310726008,2011,2,2011-07-26,6,Los Angeles Sparks,FALSE,8,away +310726008,2011,2,2011-07-26,8,Minnesota Lynx,TRUE,6,home +310726019,2011,2,2011-07-26,18,Connecticut Sun,TRUE,19,away +310726019,2011,2,2011-07-26,19,Chicago Sky,FALSE,18,home +310726016,2011,2,2011-07-26,17,San Antonio Silver Stars,TRUE,16,away +310726016,2011,2,2011-07-26,16,Washington Mystics,FALSE,17,home +310723099,2011,2,2011-07-23,98,EAST,TRUE,99,away +310723099,2011,2,2011-07-23,99,WEST,FALSE,98,home +310721014,2011,2,2011-07-21,17,San Antonio Silver Stars,FALSE,14,away +310721014,2011,2,2011-07-21,14,Seattle Storm,TRUE,17,home +310721005,2011,2,2011-07-21,19,Chicago Sky,FALSE,5,away +310721005,2011,2,2011-07-21,5,Indiana Fever,TRUE,19,home +310720011,2011,2,2011-07-20,8,Minnesota Lynx,TRUE,11,away +310720011,2011,2,2011-07-20,11,Phoenix Mercury,FALSE,8,home +310720016,2011,2,2011-07-20,20,Atlanta Dream,TRUE,16,away +310720016,2011,2,2011-07-20,16,Washington Mystics,FALSE,20,home +310719018,2011,2,2011-07-19,9,New York Liberty,FALSE,18,away +310719018,2011,2,2011-07-19,18,Connecticut Sun,TRUE,9,home +310719019,2011,2,2011-07-19,14,Seattle Storm,FALSE,19,away +310719019,2011,2,2011-07-19,19,Chicago Sky,TRUE,14,home +310719020,2011,2,2011-07-19,5,Indiana Fever,FALSE,20,away +310719020,2011,2,2011-07-19,20,Atlanta Dream,TRUE,5,home +310718006,2011,2,2011-07-18,17,San Antonio Silver Stars,TRUE,6,away +310718006,2011,2,2011-07-18,6,Los Angeles Sparks,FALSE,17,home +310717006,2011,2,2011-07-17,16,Washington Mystics,TRUE,6,away +310717006,2011,2,2011-07-17,6,Los Angeles Sparks,FALSE,16,home +310717018,2011,2,2011-07-17,5,Indiana Fever,FALSE,18,away +310717018,2011,2,2011-07-17,18,Connecticut Sun,TRUE,5,home +310717009,2011,2,2011-07-17,3,Tulsa Shock,FALSE,9,away +310717009,2011,2,2011-07-17,9,New York Liberty,TRUE,3,home +310716008,2011,2,2011-07-16,14,Seattle Storm,FALSE,8,away +310716008,2011,2,2011-07-16,8,Minnesota Lynx,TRUE,14,home +310716020,2011,2,2011-07-16,19,Chicago Sky,FALSE,20,away +310716020,2011,2,2011-07-16,20,Atlanta Dream,TRUE,19,home +310715011,2011,2,2011-07-15,16,Washington Mystics,FALSE,11,away +310715011,2011,2,2011-07-15,11,Phoenix Mercury,TRUE,16,home +310715003,2011,2,2011-07-15,6,Los Angeles Sparks,TRUE,3,away +310715003,2011,2,2011-07-15,3,Tulsa Shock,FALSE,6,home +310715005,2011,2,2011-07-15,8,Minnesota Lynx,TRUE,5,away +310715005,2011,2,2011-07-15,5,Indiana Fever,FALSE,8,home +310715009,2011,2,2011-07-15,18,Connecticut Sun,TRUE,9,away +310715009,2011,2,2011-07-15,9,New York Liberty,FALSE,18,home +310714017,2011,2,2011-07-14,14,Seattle Storm,FALSE,17,away +310714017,2011,2,2011-07-14,17,San Antonio Silver Stars,TRUE,14,home +310713005,2011,2,2011-07-13,18,Connecticut Sun,FALSE,5,away +310713005,2011,2,2011-07-13,5,Indiana Fever,TRUE,18,home +310713008,2011,2,2011-07-13,11,Phoenix Mercury,TRUE,8,away +310713008,2011,2,2011-07-13,8,Minnesota Lynx,FALSE,11,home +310713019,2011,2,2011-07-13,3,Tulsa Shock,FALSE,19,away +310713019,2011,2,2011-07-13,19,Chicago Sky,TRUE,3,home +310713009,2011,2,2011-07-13,20,Atlanta Dream,FALSE,9,away +310713009,2011,2,2011-07-13,9,New York Liberty,TRUE,20,home +310712017,2011,2,2011-07-12,6,Los Angeles Sparks,TRUE,17,away +310712017,2011,2,2011-07-12,17,San Antonio Silver Stars,FALSE,6,home +310712014,2011,2,2011-07-12,16,Washington Mystics,FALSE,14,away +310712014,2011,2,2011-07-12,14,Seattle Storm,TRUE,16,home +310710011,2011,2,2011-07-10,3,Tulsa Shock,FALSE,11,away +310710011,2011,2,2011-07-10,11,Phoenix Mercury,TRUE,3,home +310710009,2011,2,2011-07-10,19,Chicago Sky,FALSE,9,away +310710009,2011,2,2011-07-10,9,New York Liberty,TRUE,19,home +310709014,2011,2,2011-07-09,6,Los Angeles Sparks,FALSE,14,away +310709014,2011,2,2011-07-09,14,Seattle Storm,TRUE,6,home +310709008,2011,2,2011-07-09,18,Connecticut Sun,FALSE,8,away +310709008,2011,2,2011-07-09,8,Minnesota Lynx,TRUE,18,home +310709019,2011,2,2011-07-09,20,Atlanta Dream,FALSE,19,away +310709019,2011,2,2011-07-09,19,Chicago Sky,TRUE,20,home +310709005,2011,2,2011-07-09,16,Washington Mystics,FALSE,5,away +310709005,2011,2,2011-07-09,5,Indiana Fever,TRUE,16,home +310708003,2011,2,2011-07-08,11,Phoenix Mercury,TRUE,3,away +310708003,2011,2,2011-07-08,3,Tulsa Shock,FALSE,11,home +310708017,2011,2,2011-07-08,9,New York Liberty,TRUE,17,away +310708017,2011,2,2011-07-08,17,San Antonio Silver Stars,FALSE,9,home +310705011,2011,2,2011-07-05,6,Los Angeles Sparks,FALSE,11,away +310705011,2011,2,2011-07-05,11,Phoenix Mercury,TRUE,6,home +310705019,2011,2,2011-07-05,16,Washington Mystics,FALSE,19,away +310705019,2011,2,2011-07-05,19,Chicago Sky,TRUE,16,home +310705005,2011,2,2011-07-05,14,Seattle Storm,FALSE,5,away +310705005,2011,2,2011-07-05,5,Indiana Fever,TRUE,14,home +310703016,2011,2,2011-07-03,14,Seattle Storm,TRUE,16,away +310703016,2011,2,2011-07-03,16,Washington Mystics,FALSE,14,home +310701011,2011,2,2011-07-01,19,Chicago Sky,FALSE,11,away +310701011,2011,2,2011-07-01,11,Phoenix Mercury,TRUE,19,home +310701018,2011,2,2011-07-01,14,Seattle Storm,FALSE,18,away +310701018,2011,2,2011-07-01,18,Connecticut Sun,TRUE,14,home +310701009,2011,2,2011-07-01,17,San Antonio Silver Stars,FALSE,9,away +310701009,2011,2,2011-07-01,9,New York Liberty,TRUE,17,home +310630003,2011,2,2011-06-30,8,Minnesota Lynx,TRUE,3,away +310630003,2011,2,2011-06-30,3,Tulsa Shock,FALSE,8,home +310630020,2011,2,2011-06-30,9,New York Liberty,FALSE,20,away +310630020,2011,2,2011-06-30,20,Atlanta Dream,TRUE,9,home +310628018,2011,2,2011-06-28,6,Los Angeles Sparks,FALSE,18,away +310628018,2011,2,2011-06-28,18,Connecticut Sun,TRUE,6,home +310628019,2011,2,2011-06-28,17,San Antonio Silver Stars,TRUE,19,away +310628019,2011,2,2011-06-28,19,Chicago Sky,FALSE,17,home +310628005,2011,2,2011-06-28,11,Phoenix Mercury,FALSE,5,away +310628005,2011,2,2011-06-28,5,Indiana Fever,TRUE,11,home +310626008,2011,2,2011-06-26,5,Indiana Fever,TRUE,8,away +310626008,2011,2,2011-06-26,8,Minnesota Lynx,FALSE,5,home +310626009,2011,2,2011-06-26,6,Los Angeles Sparks,FALSE,9,away +310626009,2011,2,2011-06-26,9,New York Liberty,TRUE,6,home +310626016,2011,2,2011-06-26,3,Tulsa Shock,FALSE,16,away +310626016,2011,2,2011-06-26,16,Washington Mystics,TRUE,3,home +310626020,2011,2,2011-06-26,17,San Antonio Silver Stars,TRUE,20,away +310626020,2011,2,2011-06-26,20,Atlanta Dream,FALSE,17,home +310625019,2011,2,2011-06-25,11,Phoenix Mercury,TRUE,19,away +310625019,2011,2,2011-06-25,19,Chicago Sky,FALSE,11,home +310625005,2011,2,2011-06-25,18,Connecticut Sun,FALSE,5,away +310625005,2011,2,2011-06-25,5,Indiana Fever,TRUE,18,home +310624014,2011,2,2011-06-24,8,Minnesota Lynx,FALSE,14,away +310624014,2011,2,2011-06-24,14,Seattle Storm,TRUE,8,home +310624017,2011,2,2011-06-24,6,Los Angeles Sparks,FALSE,17,away +310624017,2011,2,2011-06-24,17,San Antonio Silver Stars,TRUE,6,home +310624020,2011,2,2011-06-24,11,Phoenix Mercury,TRUE,20,away +310624020,2011,2,2011-06-24,20,Atlanta Dream,FALSE,11,home +310623019,2011,2,2011-06-23,18,Connecticut Sun,FALSE,19,away +310623019,2011,2,2011-06-23,19,Chicago Sky,TRUE,18,home +310623003,2011,2,2011-06-23,9,New York Liberty,TRUE,3,away +310623003,2011,2,2011-06-23,3,Tulsa Shock,FALSE,9,home +310621006,2011,2,2011-06-21,9,New York Liberty,FALSE,6,away +310621006,2011,2,2011-06-21,6,Los Angeles Sparks,TRUE,9,home +310621003,2011,2,2011-06-21,14,Seattle Storm,TRUE,3,away +310621003,2011,2,2011-06-21,3,Tulsa Shock,FALSE,14,home +310621017,2011,2,2011-06-21,11,Phoenix Mercury,TRUE,17,away +310621017,2011,2,2011-06-21,17,San Antonio Silver Stars,FALSE,11,home +310621016,2011,2,2011-06-21,5,Indiana Fever,TRUE,16,away +310621016,2011,2,2011-06-21,16,Washington Mystics,FALSE,5,home +310621020,2011,2,2011-06-21,19,Chicago Sky,FALSE,20,away +310621020,2011,2,2011-06-21,20,Atlanta Dream,TRUE,19,home +310619006,2011,2,2011-06-19,14,Seattle Storm,FALSE,6,away +310619006,2011,2,2011-06-19,6,Los Angeles Sparks,TRUE,14,home +310619011,2011,2,2011-06-19,5,Indiana Fever,FALSE,11,away +310619011,2011,2,2011-06-19,11,Phoenix Mercury,TRUE,5,home +310619020,2011,2,2011-06-19,8,Minnesota Lynx,TRUE,20,away +310619020,2011,2,2011-06-19,20,Atlanta Dream,FALSE,8,home +310619018,2011,2,2011-06-19,19,Chicago Sky,FALSE,18,away +310619018,2011,2,2011-06-19,18,Connecticut Sun,TRUE,19,home +310618003,2011,2,2011-06-18,16,Washington Mystics,FALSE,3,away +310618003,2011,2,2011-06-18,3,Tulsa Shock,TRUE,16,home +310617011,2011,2,2011-06-17,17,San Antonio Silver Stars,TRUE,11,away +310617011,2011,2,2011-06-17,11,Phoenix Mercury,FALSE,17,home +310617014,2011,2,2011-06-17,5,Indiana Fever,FALSE,14,away +310617014,2011,2,2011-06-17,14,Seattle Storm,TRUE,5,home +310617019,2011,2,2011-06-17,9,New York Liberty,FALSE,19,away +310617019,2011,2,2011-06-17,19,Chicago Sky,TRUE,9,home +310617008,2011,2,2011-06-17,20,Atlanta Dream,FALSE,8,away +310617008,2011,2,2011-06-17,8,Minnesota Lynx,TRUE,20,home +310616016,2011,2,2011-06-16,18,Connecticut Sun,TRUE,16,away +310616016,2011,2,2011-06-16,16,Washington Mystics,FALSE,18,home +310614005,2011,2,2011-06-14,3,Tulsa Shock,FALSE,5,away +310614005,2011,2,2011-06-14,5,Indiana Fever,TRUE,3,home +310614009,2011,2,2011-06-14,20,Atlanta Dream,TRUE,9,away +310614009,2011,2,2011-06-14,9,New York Liberty,FALSE,20,home +310612018,2011,2,2011-06-12,3,Tulsa Shock,FALSE,18,away +310612018,2011,2,2011-06-12,18,Connecticut Sun,TRUE,3,home +310611017,2011,2,2011-06-11,20,Atlanta Dream,FALSE,17,away +310611017,2011,2,2011-06-11,17,San Antonio Silver Stars,TRUE,20,home +310611009,2011,2,2011-06-11,5,Indiana Fever,TRUE,9,away +310611009,2011,2,2011-06-11,9,New York Liberty,FALSE,5,home +310611016,2011,2,2011-06-11,19,Chicago Sky,TRUE,16,away +310611016,2011,2,2011-06-11,16,Washington Mystics,FALSE,19,home +310610006,2011,2,2011-06-10,11,Phoenix Mercury,FALSE,6,away +310610006,2011,2,2011-06-10,6,Los Angeles Sparks,TRUE,11,home +310610019,2011,2,2011-06-10,18,Connecticut Sun,FALSE,19,away +310610019,2011,2,2011-06-10,19,Chicago Sky,TRUE,18,home +310610003,2011,2,2011-06-10,17,San Antonio Silver Stars,TRUE,3,away +310610003,2011,2,2011-06-10,3,Tulsa Shock,FALSE,17,home +310610005,2011,2,2011-06-10,9,New York Liberty,TRUE,5,away +310610005,2011,2,2011-06-10,5,Indiana Fever,FALSE,9,home +310609014,2011,2,2011-06-09,8,Minnesota Lynx,TRUE,14,away +310609014,2011,2,2011-06-09,14,Seattle Storm,FALSE,8,home +310609020,2011,2,2011-06-09,16,Washington Mystics,TRUE,20,away +310609020,2011,2,2011-06-09,20,Atlanta Dream,FALSE,16,home +310607008,2011,2,2011-06-07,3,Tulsa Shock,FALSE,8,away +310607008,2011,2,2011-06-07,8,Minnesota Lynx,TRUE,3,home +310605008,2011,2,2011-06-05,6,Los Angeles Sparks,FALSE,8,away +310605008,2011,2,2011-06-05,8,Minnesota Lynx,TRUE,6,home +310605020,2011,2,2011-06-05,9,New York Liberty,TRUE,20,away +310605020,2011,2,2011-06-05,20,Atlanta Dream,FALSE,9,home +310604017,2011,2,2011-06-04,3,Tulsa Shock,FALSE,17,away +310604017,2011,2,2011-06-04,17,San Antonio Silver Stars,TRUE,3,home +310604005,2011,2,2011-06-04,19,Chicago Sky,FALSE,5,away +310604005,2011,2,2011-06-04,5,Indiana Fever,TRUE,19,home +310604018,2011,2,2011-06-04,16,Washington Mystics,FALSE,18,away +310604018,2011,2,2011-06-04,18,Connecticut Sun,TRUE,16,home +400182104,2011,2,2011-06-04,19,Chicago Sky,FALSE,5,away +400182104,2011,2,2011-06-04,5,Indiana Fever,TRUE,19,home +310604014,2011,2,2011-06-04,11,Phoenix Mercury,FALSE,14,away +310604014,2011,2,2011-06-04,14,Seattle Storm,TRUE,11,home +310603006,2011,2,2011-06-03,8,Minnesota Lynx,FALSE,6,away +310603006,2011,2,2011-06-03,6,Los Angeles Sparks,TRUE,8,home +400425932,2012,3,2012-10-21,8,Minnesota Lynx,FALSE,5,away +400425932,2012,3,2012-10-21,5,Indiana Fever,TRUE,8,home +400425931,2012,3,2012-10-19,8,Minnesota Lynx,FALSE,5,away +400425931,2012,3,2012-10-19,5,Indiana Fever,TRUE,8,home +400425930,2012,3,2012-10-17,5,Indiana Fever,FALSE,8,away +400425930,2012,3,2012-10-17,8,Minnesota Lynx,TRUE,5,home +400425929,2012,3,2012-10-14,5,Indiana Fever,TRUE,8,away +400425929,2012,3,2012-10-14,8,Minnesota Lynx,FALSE,5,home +400421428,2012,3,2012-10-11,5,Indiana Fever,TRUE,18,away +400421428,2012,3,2012-10-11,18,Connecticut Sun,FALSE,5,home +400421427,2012,3,2012-10-08,18,Connecticut Sun,FALSE,5,away +400421427,2012,3,2012-10-08,5,Indiana Fever,TRUE,18,home +400421430,2012,3,2012-10-07,8,Minnesota Lynx,TRUE,6,away +400421430,2012,3,2012-10-07,6,Los Angeles Sparks,FALSE,8,home +400421426,2012,3,2012-10-05,5,Indiana Fever,FALSE,18,away +400421426,2012,3,2012-10-05,18,Connecticut Sun,TRUE,5,home +400421429,2012,3,2012-10-04,6,Los Angeles Sparks,FALSE,8,away +400421429,2012,3,2012-10-04,8,Minnesota Lynx,TRUE,6,home +400407866,2012,3,2012-10-02,14,Seattle Storm,FALSE,8,away +400407866,2012,3,2012-10-02,8,Minnesota Lynx,TRUE,14,home +400409186,2012,3,2012-10-02,20,Atlanta Dream,FALSE,5,away +400409186,2012,3,2012-10-02,5,Indiana Fever,TRUE,20,home +400407864,2012,3,2012-09-30,8,Minnesota Lynx,FALSE,14,away +400407864,2012,3,2012-09-30,14,Seattle Storm,TRUE,8,home +400409185,2012,3,2012-09-30,5,Indiana Fever,TRUE,20,away +400409185,2012,3,2012-09-30,20,Atlanta Dream,FALSE,5,home +400409182,2012,3,2012-09-29,18,Connecticut Sun,TRUE,9,away +400409182,2012,3,2012-09-29,9,New York Liberty,FALSE,18,home +400407863,2012,3,2012-09-29,6,Los Angeles Sparks,TRUE,17,away +400407863,2012,3,2012-09-29,17,San Antonio Silver Stars,FALSE,6,home +400407862,2012,3,2012-09-28,14,Seattle Storm,FALSE,8,away +400407862,2012,3,2012-09-28,8,Minnesota Lynx,TRUE,14,home +400409184,2012,3,2012-09-28,20,Atlanta Dream,TRUE,5,away +400409184,2012,3,2012-09-28,5,Indiana Fever,FALSE,20,home +400407861,2012,3,2012-09-27,17,San Antonio Silver Stars,FALSE,6,away +400407861,2012,3,2012-09-27,6,Los Angeles Sparks,TRUE,17,home +400409181,2012,3,2012-09-27,9,New York Liberty,FALSE,18,away +400409181,2012,3,2012-09-27,18,Connecticut Sun,TRUE,9,home +320923005,2012,2,2012-09-23,3,Tulsa Shock,FALSE,5,away +320923005,2012,2,2012-09-23,5,Indiana Fever,TRUE,3,home +320923018,2012,2,2012-09-23,20,Atlanta Dream,FALSE,18,away +320923018,2012,2,2012-09-23,18,Connecticut Sun,TRUE,20,home +320923011,2012,2,2012-09-23,14,Seattle Storm,TRUE,11,away +320923011,2012,2,2012-09-23,11,Phoenix Mercury,FALSE,14,home +320923017,2012,2,2012-09-23,8,Minnesota Lynx,FALSE,17,away +320923017,2012,2,2012-09-23,17,San Antonio Silver Stars,TRUE,8,home +320922019,2012,2,2012-09-22,16,Washington Mystics,FALSE,19,away +320922019,2012,2,2012-09-22,19,Chicago Sky,TRUE,16,home +320922009,2012,2,2012-09-22,3,Tulsa Shock,FALSE,9,away +320922009,2012,2,2012-09-22,9,New York Liberty,TRUE,3,home +320921011,2012,2,2012-09-21,8,Minnesota Lynx,TRUE,11,away +320921011,2012,2,2012-09-21,11,Phoenix Mercury,FALSE,8,home +320921014,2012,2,2012-09-21,17,San Antonio Silver Stars,FALSE,14,away +320921014,2012,2,2012-09-21,14,Seattle Storm,TRUE,17,home +320921016,2012,2,2012-09-21,5,Indiana Fever,TRUE,16,away +320921016,2012,2,2012-09-21,16,Washington Mystics,FALSE,5,home +320920006,2012,2,2012-09-20,8,Minnesota Lynx,FALSE,6,away +320920006,2012,2,2012-09-20,6,Los Angeles Sparks,TRUE,8,home +320920003,2012,2,2012-09-20,9,New York Liberty,FALSE,3,away +320920003,2012,2,2012-09-20,3,Tulsa Shock,TRUE,9,home +320920019,2012,2,2012-09-20,20,Atlanta Dream,TRUE,19,away +320920019,2012,2,2012-09-20,19,Chicago Sky,FALSE,20,home +320919018,2012,2,2012-09-19,5,Indiana Fever,FALSE,18,away +320919018,2012,2,2012-09-19,18,Connecticut Sun,TRUE,5,home +320918006,2012,2,2012-09-18,11,Phoenix Mercury,FALSE,6,away +320918006,2012,2,2012-09-18,6,Los Angeles Sparks,TRUE,11,home +320918014,2012,2,2012-09-18,19,Chicago Sky,FALSE,14,away +320918014,2012,2,2012-09-18,14,Seattle Storm,TRUE,19,home +320918017,2012,2,2012-09-18,9,New York Liberty,FALSE,17,away +320918017,2012,2,2012-09-18,17,San Antonio Silver Stars,TRUE,9,home +320917008,2012,2,2012-09-17,5,Indiana Fever,FALSE,8,away +320917008,2012,2,2012-09-17,8,Minnesota Lynx,TRUE,5,home +320916011,2012,2,2012-09-16,19,Chicago Sky,TRUE,11,away +320916011,2012,2,2012-09-16,11,Phoenix Mercury,FALSE,19,home +320916016,2012,2,2012-09-16,9,New York Liberty,TRUE,16,away +320916016,2012,2,2012-09-16,16,Washington Mystics,FALSE,9,home +320916017,2012,2,2012-09-16,3,Tulsa Shock,TRUE,17,away +320916017,2012,2,2012-09-16,17,San Antonio Silver Stars,FALSE,3,home +320914006,2012,2,2012-09-14,18,Connecticut Sun,FALSE,6,away +320914006,2012,2,2012-09-14,6,Los Angeles Sparks,TRUE,18,home +320914011,2012,2,2012-09-14,3,Tulsa Shock,TRUE,11,away +320914011,2012,2,2012-09-14,11,Phoenix Mercury,FALSE,3,home +320914017,2012,2,2012-09-14,14,Seattle Storm,FALSE,17,away +320914017,2012,2,2012-09-14,17,San Antonio Silver Stars,TRUE,14,home +320914005,2012,2,2012-09-14,8,Minnesota Lynx,TRUE,5,away +320914005,2012,2,2012-09-14,5,Indiana Fever,FALSE,8,home +320914016,2012,2,2012-09-14,20,Atlanta Dream,TRUE,16,away +320914016,2012,2,2012-09-14,16,Washington Mystics,FALSE,20,home +320913006,2012,2,2012-09-13,19,Chicago Sky,FALSE,6,away +320913006,2012,2,2012-09-13,6,Los Angeles Sparks,TRUE,19,home +320912011,2012,2,2012-09-12,18,Connecticut Sun,TRUE,11,away +320912011,2012,2,2012-09-12,11,Phoenix Mercury,FALSE,18,home +320912003,2012,2,2012-09-12,17,San Antonio Silver Stars,TRUE,3,away +320912003,2012,2,2012-09-12,3,Tulsa Shock,FALSE,17,home +320912005,2012,2,2012-09-12,14,Seattle Storm,FALSE,5,away +320912005,2012,2,2012-09-12,5,Indiana Fever,TRUE,14,home +320912009,2012,2,2012-09-12,16,Washington Mystics,FALSE,9,away +320912009,2012,2,2012-09-12,9,New York Liberty,TRUE,16,home +320911019,2012,2,2012-09-11,8,Minnesota Lynx,FALSE,19,away +320911019,2012,2,2012-09-11,19,Chicago Sky,TRUE,8,home +320911020,2012,2,2012-09-11,14,Seattle Storm,FALSE,20,away +320911020,2012,2,2012-09-11,20,Atlanta Dream,TRUE,14,home +320909005,2012,2,2012-09-09,11,Phoenix Mercury,FALSE,5,away +320909005,2012,2,2012-09-09,5,Indiana Fever,TRUE,11,home +320909018,2012,2,2012-09-09,19,Chicago Sky,FALSE,18,away +320909018,2012,2,2012-09-09,18,Connecticut Sun,TRUE,19,home +320909009,2012,2,2012-09-09,6,Los Angeles Sparks,FALSE,9,away +320909009,2012,2,2012-09-09,9,New York Liberty,TRUE,6,home +320909017,2012,2,2012-09-09,8,Minnesota Lynx,TRUE,17,away +320909017,2012,2,2012-09-09,17,San Antonio Silver Stars,FALSE,8,home +320909020,2012,2,2012-09-09,16,Washington Mystics,FALSE,20,away +320909020,2012,2,2012-09-09,20,Atlanta Dream,TRUE,16,home +320908003,2012,2,2012-09-08,14,Seattle Storm,TRUE,3,away +320908003,2012,2,2012-09-08,3,Tulsa Shock,FALSE,14,home +320907008,2012,2,2012-09-07,20,Atlanta Dream,FALSE,8,away +320907008,2012,2,2012-09-07,8,Minnesota Lynx,TRUE,20,home +320907017,2012,2,2012-09-07,5,Indiana Fever,TRUE,17,away +320907017,2012,2,2012-09-07,17,San Antonio Silver Stars,FALSE,5,home +320907009,2012,2,2012-09-07,19,Chicago Sky,TRUE,9,away +320907009,2012,2,2012-09-07,9,New York Liberty,FALSE,19,home +320907016,2012,2,2012-09-07,6,Los Angeles Sparks,TRUE,16,away +320907016,2012,2,2012-09-07,16,Washington Mystics,FALSE,6,home +320907018,2012,2,2012-09-07,11,Phoenix Mercury,TRUE,18,away +320907018,2012,2,2012-09-07,18,Connecticut Sun,FALSE,11,home +320906014,2012,2,2012-09-06,3,Tulsa Shock,FALSE,14,away +320906014,2012,2,2012-09-06,14,Seattle Storm,TRUE,3,home +320905009,2012,2,2012-09-05,11,Phoenix Mercury,FALSE,9,away +320905009,2012,2,2012-09-05,9,New York Liberty,TRUE,11,home +320905020,2012,2,2012-09-05,5,Indiana Fever,FALSE,20,away +320905020,2012,2,2012-09-05,20,Atlanta Dream,TRUE,5,home +320904008,2012,2,2012-09-04,6,Los Angeles Sparks,FALSE,8,away +320904008,2012,2,2012-09-04,8,Minnesota Lynx,TRUE,6,home +320904016,2012,2,2012-09-04,18,Connecticut Sun,TRUE,16,away +320904016,2012,2,2012-09-04,16,Washington Mystics,FALSE,18,home +320902019,2012,2,2012-09-02,6,Los Angeles Sparks,FALSE,19,away +320902019,2012,2,2012-09-02,19,Chicago Sky,TRUE,6,home +320902020,2012,2,2012-09-02,18,Connecticut Sun,FALSE,20,away +320902020,2012,2,2012-09-02,20,Atlanta Dream,TRUE,18,home +320901011,2012,2,2012-09-01,17,San Antonio Silver Stars,FALSE,11,away +320901011,2012,2,2012-09-01,11,Phoenix Mercury,TRUE,17,home +320901005,2012,2,2012-09-01,19,Chicago Sky,FALSE,5,away +320901005,2012,2,2012-09-01,5,Indiana Fever,TRUE,19,home +320901009,2012,2,2012-09-01,16,Washington Mystics,FALSE,9,away +320901009,2012,2,2012-09-01,9,New York Liberty,TRUE,16,home +320831008,2012,2,2012-08-31,3,Tulsa Shock,FALSE,8,away +320831008,2012,2,2012-08-31,8,Minnesota Lynx,TRUE,3,home +320830014,2012,2,2012-08-30,11,Phoenix Mercury,TRUE,14,away +320830014,2012,2,2012-08-30,14,Seattle Storm,FALSE,11,home +320830003,2012,2,2012-08-30,6,Los Angeles Sparks,FALSE,3,away +320830003,2012,2,2012-08-30,3,Tulsa Shock,TRUE,6,home +320830017,2012,2,2012-08-30,18,Connecticut Sun,TRUE,17,away +320830017,2012,2,2012-08-30,17,San Antonio Silver Stars,FALSE,18,home +320830009,2012,2,2012-08-30,5,Indiana Fever,TRUE,9,away +320830009,2012,2,2012-08-30,9,New York Liberty,FALSE,5,home +320830020,2012,2,2012-08-30,16,Washington Mystics,FALSE,20,away +320830020,2012,2,2012-08-30,20,Atlanta Dream,TRUE,16,home +320828008,2012,2,2012-08-28,17,San Antonio Silver Stars,FALSE,8,away +320828008,2012,2,2012-08-28,8,Minnesota Lynx,TRUE,17,home +320828019,2012,2,2012-08-28,18,Connecticut Sun,TRUE,19,away +320828019,2012,2,2012-08-28,19,Chicago Sky,FALSE,18,home +320828005,2012,2,2012-08-28,16,Washington Mystics,FALSE,5,away +320828005,2012,2,2012-08-28,5,Indiana Fever,TRUE,16,home +320828020,2012,2,2012-08-28,3,Tulsa Shock,TRUE,20,away +320828020,2012,2,2012-08-28,20,Atlanta Dream,FALSE,3,home +320826014,2012,2,2012-08-26,9,New York Liberty,FALSE,14,away +320826014,2012,2,2012-08-26,14,Seattle Storm,TRUE,9,home +320826018,2012,2,2012-08-26,19,Chicago Sky,TRUE,18,away +320826018,2012,2,2012-08-26,18,Connecticut Sun,FALSE,19,home +320825006,2012,2,2012-08-25,9,New York Liberty,FALSE,6,away +320825006,2012,2,2012-08-25,6,Los Angeles Sparks,TRUE,9,home +320825011,2012,2,2012-08-25,5,Indiana Fever,TRUE,11,away +320825011,2012,2,2012-08-25,11,Phoenix Mercury,FALSE,5,home +320825017,2012,2,2012-08-25,3,Tulsa Shock,FALSE,17,away +320825017,2012,2,2012-08-25,17,San Antonio Silver Stars,TRUE,3,home +320825020,2012,2,2012-08-25,8,Minnesota Lynx,TRUE,20,away +320825020,2012,2,2012-08-25,20,Atlanta Dream,FALSE,8,home +320824003,2012,2,2012-08-24,19,Chicago Sky,FALSE,3,away +320824003,2012,2,2012-08-24,3,Tulsa Shock,TRUE,19,home +320824016,2012,2,2012-08-24,20,Atlanta Dream,TRUE,16,away +320824016,2012,2,2012-08-24,16,Washington Mystics,FALSE,20,home +320823006,2012,2,2012-08-23,17,San Antonio Silver Stars,FALSE,6,away +320823006,2012,2,2012-08-23,6,Los Angeles Sparks,TRUE,17,home +320823011,2012,2,2012-08-23,9,New York Liberty,TRUE,11,away +320823011,2012,2,2012-08-23,11,Phoenix Mercury,FALSE,9,home +320823014,2012,2,2012-08-23,5,Indiana Fever,TRUE,14,away +320823014,2012,2,2012-08-23,14,Seattle Storm,FALSE,5,home +320822020,2012,2,2012-08-22,19,Chicago Sky,FALSE,20,away +320822020,2012,2,2012-08-22,20,Atlanta Dream,TRUE,19,home +320821006,2012,2,2012-08-21,5,Indiana Fever,FALSE,6,away +320821006,2012,2,2012-08-21,6,Los Angeles Sparks,TRUE,5,home +320821014,2012,2,2012-08-21,8,Minnesota Lynx,TRUE,14,away +320821014,2012,2,2012-08-21,14,Seattle Storm,FALSE,8,home +320821017,2012,2,2012-08-21,16,Washington Mystics,FALSE,17,away +320821017,2012,2,2012-08-21,17,San Antonio Silver Stars,TRUE,16,home +320821019,2012,2,2012-08-21,9,New York Liberty,TRUE,19,away +320821019,2012,2,2012-08-21,19,Chicago Sky,FALSE,9,home +320821018,2012,2,2012-08-21,3,Tulsa Shock,FALSE,18,away +320821018,2012,2,2012-08-21,18,Connecticut Sun,TRUE,3,home +320819008,2012,2,2012-08-19,3,Tulsa Shock,FALSE,8,away +320819008,2012,2,2012-08-19,8,Minnesota Lynx,TRUE,3,home +320819011,2012,2,2012-08-19,17,San Antonio Silver Stars,TRUE,11,away +320819011,2012,2,2012-08-19,11,Phoenix Mercury,FALSE,17,home +320819016,2012,2,2012-08-19,19,Chicago Sky,FALSE,16,away +320819016,2012,2,2012-08-19,16,Washington Mystics,TRUE,19,home +320818014,2012,2,2012-08-18,6,Los Angeles Sparks,TRUE,14,away +320818014,2012,2,2012-08-18,14,Seattle Storm,FALSE,6,home +320818005,2012,2,2012-08-18,20,Atlanta Dream,FALSE,5,away +320818005,2012,2,2012-08-18,5,Indiana Fever,TRUE,20,home +320818018,2012,2,2012-08-18,9,New York Liberty,FALSE,18,away +320818018,2012,2,2012-08-18,18,Connecticut Sun,TRUE,9,home +320817019,2012,2,2012-08-17,20,Atlanta Dream,TRUE,19,away +320817019,2012,2,2012-08-17,19,Chicago Sky,FALSE,20,home +320817003,2012,2,2012-08-17,17,San Antonio Silver Stars,TRUE,3,away +320817003,2012,2,2012-08-17,3,Tulsa Shock,FALSE,17,home +320817008,2012,2,2012-08-17,16,Washington Mystics,FALSE,8,away +320817008,2012,2,2012-08-17,8,Minnesota Lynx,TRUE,16,home +320816014,2012,2,2012-08-16,11,Phoenix Mercury,FALSE,14,away +320816014,2012,2,2012-08-16,14,Seattle Storm,TRUE,11,home +320816005,2012,2,2012-08-16,16,Washington Mystics,FALSE,5,away +320816005,2012,2,2012-08-16,5,Indiana Fever,TRUE,16,home +320816009,2012,2,2012-08-16,18,Connecticut Sun,FALSE,9,away +320816009,2012,2,2012-08-16,9,New York Liberty,TRUE,18,home +320713011,2012,2,2012-07-13,14,Seattle Storm,TRUE,11,away +320713011,2012,2,2012-07-13,11,Phoenix Mercury,FALSE,14,home +320713019,2012,2,2012-07-13,18,Connecticut Sun,TRUE,19,away +320713019,2012,2,2012-07-13,19,Chicago Sky,FALSE,18,home +320713017,2012,2,2012-07-13,20,Atlanta Dream,FALSE,17,away +320713017,2012,2,2012-07-13,17,San Antonio Silver Stars,TRUE,20,home +320713009,2012,2,2012-07-13,16,Washington Mystics,TRUE,9,away +320713009,2012,2,2012-07-13,9,New York Liberty,FALSE,16,home +320712005,2012,2,2012-07-12,6,Los Angeles Sparks,TRUE,5,away +320712005,2012,2,2012-07-12,5,Indiana Fever,FALSE,6,home +320712008,2012,2,2012-07-12,3,Tulsa Shock,FALSE,8,away +320712008,2012,2,2012-07-12,8,Minnesota Lynx,TRUE,3,home +320711018,2012,2,2012-07-11,16,Washington Mystics,FALSE,18,away +320711018,2012,2,2012-07-11,18,Connecticut Sun,TRUE,16,home +320711014,2012,2,2012-07-11,20,Atlanta Dream,TRUE,14,away +320711014,2012,2,2012-07-11,14,Seattle Storm,FALSE,20,home +320711019,2012,2,2012-07-11,17,San Antonio Silver Stars,TRUE,19,away +320711019,2012,2,2012-07-11,19,Chicago Sky,FALSE,17,home +320710011,2012,2,2012-07-10,6,Los Angeles Sparks,TRUE,11,away +320710011,2012,2,2012-07-10,11,Phoenix Mercury,FALSE,6,home +320710003,2012,2,2012-07-10,8,Minnesota Lynx,TRUE,3,away +320710003,2012,2,2012-07-10,3,Tulsa Shock,FALSE,8,home +320710005,2012,2,2012-07-10,9,New York Liberty,FALSE,5,away +320710005,2012,2,2012-07-10,5,Indiana Fever,TRUE,9,home +320710016,2012,2,2012-07-10,18,Connecticut Sun,TRUE,16,away +320710016,2012,2,2012-07-10,16,Washington Mystics,FALSE,18,home +320708014,2012,2,2012-07-08,11,Phoenix Mercury,FALSE,14,away +320708014,2012,2,2012-07-08,14,Seattle Storm,TRUE,11,home +320708006,2012,2,2012-07-08,20,Atlanta Dream,FALSE,6,away +320708006,2012,2,2012-07-08,6,Los Angeles Sparks,TRUE,20,home +320708003,2012,2,2012-07-08,16,Washington Mystics,FALSE,3,away +320708003,2012,2,2012-07-08,3,Tulsa Shock,TRUE,16,home +320708009,2012,2,2012-07-08,17,San Antonio Silver Stars,TRUE,9,away +320708009,2012,2,2012-07-08,9,New York Liberty,FALSE,17,home +320707006,2012,2,2012-07-07,14,Seattle Storm,FALSE,6,away +320707006,2012,2,2012-07-07,6,Los Angeles Sparks,TRUE,14,home +320707011,2012,2,2012-07-07,20,Atlanta Dream,TRUE,11,away +320707011,2012,2,2012-07-07,11,Phoenix Mercury,FALSE,20,home +320707008,2012,2,2012-07-07,18,Connecticut Sun,TRUE,8,away +320707008,2012,2,2012-07-07,8,Minnesota Lynx,FALSE,18,home +320707005,2012,2,2012-07-07,19,Chicago Sky,FALSE,5,away +320707005,2012,2,2012-07-07,5,Indiana Fever,TRUE,19,home +320706019,2012,2,2012-07-06,9,New York Liberty,TRUE,19,away +320706019,2012,2,2012-07-06,19,Chicago Sky,FALSE,9,home +320706003,2012,2,2012-07-06,18,Connecticut Sun,TRUE,3,away +320706003,2012,2,2012-07-06,3,Tulsa Shock,FALSE,18,home +320706016,2012,2,2012-07-06,17,San Antonio Silver Stars,TRUE,16,away +320706016,2012,2,2012-07-06,16,Washington Mystics,FALSE,17,home +320705005,2012,2,2012-07-05,17,San Antonio Silver Stars,TRUE,5,away +320705005,2012,2,2012-07-05,5,Indiana Fever,FALSE,17,home +320705006,2012,2,2012-07-05,8,Minnesota Lynx,FALSE,6,away +320705006,2012,2,2012-07-05,6,Los Angeles Sparks,TRUE,8,home +320703017,2012,2,2012-07-03,11,Phoenix Mercury,FALSE,17,away +320703017,2012,2,2012-07-03,17,San Antonio Silver Stars,TRUE,11,home +320701019,2012,2,2012-07-01,20,Atlanta Dream,FALSE,19,away +320701019,2012,2,2012-07-01,19,Chicago Sky,TRUE,20,home +320701018,2012,2,2012-07-01,14,Seattle Storm,TRUE,18,away +320701018,2012,2,2012-07-01,18,Connecticut Sun,FALSE,14,home +320701016,2012,2,2012-07-01,11,Phoenix Mercury,FALSE,16,away +320701016,2012,2,2012-07-01,16,Washington Mystics,TRUE,11,home +320701017,2012,2,2012-07-01,8,Minnesota Lynx,FALSE,17,away +320701017,2012,2,2012-07-01,17,San Antonio Silver Stars,TRUE,8,home +320630009,2012,2,2012-06-30,14,Seattle Storm,FALSE,9,away +320630009,2012,2,2012-06-30,9,New York Liberty,TRUE,14,home +320629019,2012,2,2012-06-29,11,Phoenix Mercury,TRUE,19,away +320629019,2012,2,2012-06-29,19,Chicago Sky,FALSE,11,home +320629003,2012,2,2012-06-29,20,Atlanta Dream,TRUE,3,away +320629003,2012,2,2012-06-29,3,Tulsa Shock,FALSE,20,home +320629016,2012,2,2012-06-29,18,Connecticut Sun,TRUE,16,away +320629016,2012,2,2012-06-29,16,Washington Mystics,FALSE,18,home +320628017,2012,2,2012-06-28,6,Los Angeles Sparks,FALSE,17,away +320628017,2012,2,2012-06-28,17,San Antonio Silver Stars,TRUE,6,home +320627008,2012,2,2012-06-27,11,Phoenix Mercury,FALSE,8,away +320627008,2012,2,2012-06-27,8,Minnesota Lynx,TRUE,11,home +320627019,2012,2,2012-06-27,5,Indiana Fever,TRUE,19,away +320627019,2012,2,2012-06-27,19,Chicago Sky,FALSE,5,home +320626003,2012,2,2012-06-26,6,Los Angeles Sparks,FALSE,3,away +320626003,2012,2,2012-06-26,3,Tulsa Shock,TRUE,6,home +320626016,2012,2,2012-06-26,14,Seattle Storm,TRUE,16,away +320626016,2012,2,2012-06-26,16,Washington Mystics,FALSE,14,home +320626020,2012,2,2012-06-26,5,Indiana Fever,FALSE,20,away +320626020,2012,2,2012-06-26,20,Atlanta Dream,TRUE,5,home +320624006,2012,2,2012-06-24,17,San Antonio Silver Stars,TRUE,6,away +320624006,2012,2,2012-06-24,6,Los Angeles Sparks,FALSE,17,home +320624014,2012,2,2012-06-24,16,Washington Mystics,FALSE,14,away +320624014,2012,2,2012-06-24,14,Seattle Storm,TRUE,16,home +320624009,2012,2,2012-06-24,20,Atlanta Dream,TRUE,9,away +320624009,2012,2,2012-06-24,9,New York Liberty,FALSE,20,home +320623011,2012,2,2012-06-23,6,Los Angeles Sparks,TRUE,11,away +320623011,2012,2,2012-06-23,11,Phoenix Mercury,FALSE,6,home +320623003,2012,2,2012-06-23,5,Indiana Fever,TRUE,3,away +320623003,2012,2,2012-06-23,3,Tulsa Shock,FALSE,5,home +320623008,2012,2,2012-06-23,19,Chicago Sky,FALSE,8,away +320623008,2012,2,2012-06-23,8,Minnesota Lynx,TRUE,19,home +320622014,2012,2,2012-06-22,17,San Antonio Silver Stars,FALSE,14,away +320622014,2012,2,2012-06-22,14,Seattle Storm,TRUE,17,home +320621008,2012,2,2012-06-21,9,New York Liberty,FALSE,8,away +320621008,2012,2,2012-06-21,8,Minnesota Lynx,TRUE,9,home +320621005,2012,2,2012-06-21,18,Connecticut Sun,FALSE,5,away +320621005,2012,2,2012-06-21,5,Indiana Fever,TRUE,18,home +320620006,2012,2,2012-06-20,3,Tulsa Shock,FALSE,6,away +320620006,2012,2,2012-06-20,6,Los Angeles Sparks,TRUE,3,home +320620011,2012,2,2012-06-20,16,Washington Mystics,FALSE,11,away +320620011,2012,2,2012-06-20,11,Phoenix Mercury,TRUE,16,home +320619018,2012,2,2012-06-19,5,Indiana Fever,FALSE,18,away +320619018,2012,2,2012-06-19,18,Connecticut Sun,TRUE,5,home +320619020,2012,2,2012-06-19,9,New York Liberty,TRUE,20,away +320619020,2012,2,2012-06-19,20,Atlanta Dream,FALSE,9,home +320618006,2012,2,2012-06-18,16,Washington Mystics,FALSE,6,away +320618006,2012,2,2012-06-18,6,Los Angeles Sparks,TRUE,16,home +320617014,2012,2,2012-06-17,8,Minnesota Lynx,FALSE,14,away +320617014,2012,2,2012-06-17,14,Seattle Storm,TRUE,8,home +320617003,2012,2,2012-06-17,11,Phoenix Mercury,FALSE,3,away +320617003,2012,2,2012-06-17,3,Tulsa Shock,TRUE,11,home +320617020,2012,2,2012-06-17,18,Connecticut Sun,TRUE,20,away +320617020,2012,2,2012-06-17,20,Atlanta Dream,FALSE,18,home +320616017,2012,2,2012-06-16,6,Los Angeles Sparks,FALSE,17,away +320616017,2012,2,2012-06-16,17,San Antonio Silver Stars,TRUE,6,home +320616005,2012,2,2012-06-16,19,Chicago Sky,FALSE,5,away +320616005,2012,2,2012-06-16,5,Indiana Fever,TRUE,19,home +320615011,2012,2,2012-06-15,8,Minnesota Lynx,TRUE,11,away +320615011,2012,2,2012-06-15,11,Phoenix Mercury,FALSE,8,home +320615003,2012,2,2012-06-15,14,Seattle Storm,TRUE,3,away +320615003,2012,2,2012-06-15,3,Tulsa Shock,FALSE,14,home +320615020,2012,2,2012-06-15,6,Los Angeles Sparks,FALSE,20,away +320615020,2012,2,2012-06-15,20,Atlanta Dream,TRUE,6,home +320615016,2012,2,2012-06-15,5,Indiana Fever,FALSE,16,away +320615016,2012,2,2012-06-15,16,Washington Mystics,TRUE,5,home +320615018,2012,2,2012-06-15,9,New York Liberty,FALSE,18,away +320615018,2012,2,2012-06-15,18,Connecticut Sun,TRUE,9,home +320613018,2012,2,2012-06-13,6,Los Angeles Sparks,TRUE,18,away +320613018,2012,2,2012-06-13,18,Connecticut Sun,FALSE,6,home +320613019,2012,2,2012-06-13,14,Seattle Storm,FALSE,19,away +320613019,2012,2,2012-06-13,19,Chicago Sky,TRUE,14,home +320610018,2012,2,2012-06-10,20,Atlanta Dream,FALSE,18,away +320610018,2012,2,2012-06-10,18,Connecticut Sun,TRUE,20,home +320610009,2012,2,2012-06-10,19,Chicago Sky,TRUE,9,away +320610009,2012,2,2012-06-10,9,New York Liberty,FALSE,19,home +320609003,2012,2,2012-06-09,8,Minnesota Lynx,TRUE,3,away +320609003,2012,2,2012-06-09,3,Tulsa Shock,FALSE,8,home +320609017,2012,2,2012-06-09,14,Seattle Storm,FALSE,17,away +320609017,2012,2,2012-06-09,17,San Antonio Silver Stars,TRUE,14,home +320608006,2012,2,2012-06-08,11,Phoenix Mercury,FALSE,6,away +320608006,2012,2,2012-06-08,6,Los Angeles Sparks,TRUE,11,home +320608019,2012,2,2012-06-08,3,Tulsa Shock,FALSE,19,away +320608019,2012,2,2012-06-08,19,Chicago Sky,TRUE,3,home +320608020,2012,2,2012-06-08,17,San Antonio Silver Stars,FALSE,20,away +320608020,2012,2,2012-06-08,20,Atlanta Dream,TRUE,17,home +320608005,2012,2,2012-06-08,18,Connecticut Sun,TRUE,5,away +320608005,2012,2,2012-06-08,5,Indiana Fever,FALSE,18,home +320608016,2012,2,2012-06-08,9,New York Liberty,TRUE,16,away +320608016,2012,2,2012-06-08,16,Washington Mystics,FALSE,9,home +320606008,2012,2,2012-06-06,14,Seattle Storm,FALSE,8,away +320606008,2012,2,2012-06-06,8,Minnesota Lynx,TRUE,14,home +320605009,2012,2,2012-06-05,20,Atlanta Dream,FALSE,9,away +320605009,2012,2,2012-06-05,9,New York Liberty,TRUE,20,home +320603006,2012,2,2012-06-03,14,Seattle Storm,FALSE,6,away +320603006,2012,2,2012-06-03,6,Los Angeles Sparks,TRUE,14,home +320603008,2012,2,2012-06-03,17,San Antonio Silver Stars,FALSE,8,away +320603008,2012,2,2012-06-03,8,Minnesota Lynx,TRUE,17,home +320603009,2012,2,2012-06-03,5,Indiana Fever,FALSE,9,away +320603009,2012,2,2012-06-03,9,New York Liberty,TRUE,5,home +320603011,2012,2,2012-06-03,3,Tulsa Shock,FALSE,11,away +320603011,2012,2,2012-06-03,11,Phoenix Mercury,TRUE,3,home +320603018,2012,2,2012-06-03,16,Washington Mystics,FALSE,18,away +320603018,2012,2,2012-06-03,18,Connecticut Sun,TRUE,16,home +320602005,2012,2,2012-06-02,9,New York Liberty,FALSE,5,away +320602005,2012,2,2012-06-02,5,Indiana Fever,TRUE,9,home +320602020,2012,2,2012-06-02,19,Chicago Sky,TRUE,20,away +320602020,2012,2,2012-06-02,20,Atlanta Dream,FALSE,19,home +320601014,2012,2,2012-06-01,3,Tulsa Shock,FALSE,14,away +320601014,2012,2,2012-06-01,14,Seattle Storm,TRUE,3,home +320601019,2012,2,2012-06-01,16,Washington Mystics,FALSE,19,away +320601019,2012,2,2012-06-01,19,Chicago Sky,TRUE,16,home +320601017,2012,2,2012-06-01,11,Phoenix Mercury,FALSE,17,away +320601017,2012,2,2012-06-01,17,San Antonio Silver Stars,TRUE,11,home +320601018,2012,2,2012-06-01,8,Minnesota Lynx,TRUE,18,away +320601018,2012,2,2012-06-01,18,Connecticut Sun,FALSE,8,home +320531020,2012,2,2012-05-31,11,Phoenix Mercury,FALSE,20,away +320531020,2012,2,2012-05-31,20,Atlanta Dream,TRUE,11,home +320530017,2012,2,2012-05-30,19,Chicago Sky,TRUE,17,away +320530017,2012,2,2012-05-30,17,San Antonio Silver Stars,FALSE,19,home +320530016,2012,2,2012-05-30,8,Minnesota Lynx,TRUE,16,away +320530016,2012,2,2012-05-30,16,Washington Mystics,FALSE,8,home +320529006,2012,2,2012-05-29,3,Tulsa Shock,FALSE,6,away +320529006,2012,2,2012-05-29,6,Los Angeles Sparks,TRUE,3,home +320527008,2012,2,2012-05-27,14,Seattle Storm,FALSE,8,away +320527008,2012,2,2012-05-27,8,Minnesota Lynx,TRUE,14,home +320527020,2012,2,2012-05-27,5,Indiana Fever,TRUE,20,away +320527020,2012,2,2012-05-27,20,Atlanta Dream,FALSE,5,home +320526011,2012,2,2012-05-26,6,Los Angeles Sparks,TRUE,11,away +320526011,2012,2,2012-05-26,11,Phoenix Mercury,FALSE,6,home +320526016,2012,2,2012-05-26,3,Tulsa Shock,FALSE,16,away +320526016,2012,2,2012-05-26,16,Washington Mystics,TRUE,3,home +320525019,2012,2,2012-05-25,5,Indiana Fever,TRUE,19,away +320525019,2012,2,2012-05-25,19,Chicago Sky,FALSE,5,home +320525020,2012,2,2012-05-25,9,New York Liberty,FALSE,20,away +320525020,2012,2,2012-05-25,20,Atlanta Dream,TRUE,9,home +320525018,2012,2,2012-05-25,17,San Antonio Silver Stars,FALSE,18,away +320525018,2012,2,2012-05-25,18,Connecticut Sun,TRUE,17,home +320524008,2012,2,2012-05-24,6,Los Angeles Sparks,FALSE,8,away +320524008,2012,2,2012-05-24,8,Minnesota Lynx,TRUE,6,home +320522006,2012,2,2012-05-22,14,Seattle Storm,FALSE,6,away +320522006,2012,2,2012-05-22,6,Los Angeles Sparks,TRUE,14,home +320522003,2012,2,2012-05-22,11,Phoenix Mercury,TRUE,3,away +320522003,2012,2,2012-05-22,3,Tulsa Shock,FALSE,11,home +320522009,2012,2,2012-05-22,8,Minnesota Lynx,TRUE,9,away +320522009,2012,2,2012-05-22,9,New York Liberty,FALSE,8,home +320520018,2012,2,2012-05-20,9,New York Liberty,FALSE,18,away +320520018,2012,2,2012-05-20,18,Connecticut Sun,TRUE,9,home +320520008,2012,2,2012-05-20,11,Phoenix Mercury,FALSE,8,away +320520008,2012,2,2012-05-20,8,Minnesota Lynx,TRUE,11,home +320519003,2012,2,2012-05-19,17,San Antonio Silver Stars,TRUE,3,away +320519003,2012,2,2012-05-19,3,Tulsa Shock,FALSE,17,home +320519005,2012,2,2012-05-19,20,Atlanta Dream,FALSE,5,away +320519005,2012,2,2012-05-19,5,Indiana Fever,TRUE,20,home +320519016,2012,2,2012-05-19,19,Chicago Sky,TRUE,16,away +320519016,2012,2,2012-05-19,16,Washington Mystics,FALSE,19,home +320519009,2012,2,2012-05-19,18,Connecticut Sun,TRUE,9,away +320519009,2012,2,2012-05-19,9,New York Liberty,FALSE,18,home +320518014,2012,2,2012-05-18,6,Los Angeles Sparks,TRUE,14,away +320518014,2012,2,2012-05-18,14,Seattle Storm,FALSE,6,home +400505696,2013,3,2013-10-10,8,Minnesota Lynx,TRUE,20,away +400505696,2013,3,2013-10-10,20,Atlanta Dream,FALSE,8,home +400505695,2013,3,2013-10-08,20,Atlanta Dream,FALSE,8,away +400505695,2013,3,2013-10-08,8,Minnesota Lynx,TRUE,20,home +400505694,2013,3,2013-10-06,20,Atlanta Dream,FALSE,8,away +400505694,2013,3,2013-10-06,8,Minnesota Lynx,TRUE,20,home +400499747,2013,3,2013-09-29,8,Minnesota Lynx,TRUE,11,away +400499747,2013,3,2013-09-29,11,Phoenix Mercury,FALSE,8,home +400499744,2013,3,2013-09-29,20,Atlanta Dream,TRUE,5,away +400499744,2013,3,2013-09-29,5,Indiana Fever,FALSE,20,home +400499746,2013,3,2013-09-26,11,Phoenix Mercury,FALSE,8,away +400499746,2013,3,2013-09-26,8,Minnesota Lynx,TRUE,11,home +400499743,2013,3,2013-09-26,5,Indiana Fever,FALSE,20,away +400499743,2013,3,2013-09-26,20,Atlanta Dream,TRUE,5,home +400496779,2013,3,2013-09-23,11,Phoenix Mercury,TRUE,6,away +400496779,2013,3,2013-09-23,6,Los Angeles Sparks,FALSE,11,home +400496776,2013,3,2013-09-23,16,Washington Mystics,FALSE,20,away +400496776,2013,3,2013-09-23,20,Atlanta Dream,TRUE,16,home +400496784,2013,3,2013-09-22,8,Minnesota Lynx,TRUE,14,away +400496784,2013,3,2013-09-22,14,Seattle Storm,FALSE,8,home +400496781,2013,3,2013-09-22,19,Chicago Sky,FALSE,5,away +400496781,2013,3,2013-09-22,5,Indiana Fever,TRUE,19,home +400496778,2013,3,2013-09-21,6,Los Angeles Sparks,TRUE,11,away +400496778,2013,3,2013-09-21,11,Phoenix Mercury,FALSE,6,home +400496775,2013,3,2013-09-21,20,Atlanta Dream,TRUE,16,away +400496775,2013,3,2013-09-21,16,Washington Mystics,FALSE,20,home +400496783,2013,3,2013-09-20,14,Seattle Storm,FALSE,8,away +400496783,2013,3,2013-09-20,8,Minnesota Lynx,TRUE,14,home +400496780,2013,3,2013-09-20,5,Indiana Fever,TRUE,19,away +400496780,2013,3,2013-09-20,19,Chicago Sky,FALSE,5,home +400496777,2013,3,2013-09-19,11,Phoenix Mercury,TRUE,6,away +400496777,2013,3,2013-09-19,6,Los Angeles Sparks,FALSE,11,home +400496774,2013,3,2013-09-19,16,Washington Mystics,TRUE,20,away +400496774,2013,3,2013-09-19,20,Atlanta Dream,FALSE,16,home +400445899,2013,2,2013-09-15,20,Atlanta Dream,FALSE,17,away +400445899,2013,2,2013-09-15,17,San Antonio Silver Stars,TRUE,20,home +400445898,2013,2,2013-09-15,9,New York Liberty,FALSE,16,away +400445898,2013,2,2013-09-15,16,Washington Mystics,TRUE,9,home +400445900,2013,2,2013-09-15,11,Phoenix Mercury,FALSE,6,away +400445900,2013,2,2013-09-15,6,Los Angeles Sparks,TRUE,11,home +400445897,2013,2,2013-09-15,5,Indiana Fever,FALSE,18,away +400445897,2013,2,2013-09-15,18,Connecticut Sun,TRUE,5,home +400445896,2013,2,2013-09-14,3,Tulsa Shock,FALSE,14,away +400445896,2013,2,2013-09-14,14,Seattle Storm,TRUE,3,home +400445895,2013,2,2013-09-14,19,Chicago Sky,FALSE,8,away +400445895,2013,2,2013-09-14,8,Minnesota Lynx,TRUE,19,home +400445894,2013,2,2013-09-13,17,San Antonio Silver Stars,FALSE,11,away +400445894,2013,2,2013-09-13,11,Phoenix Mercury,TRUE,17,home +400445893,2013,2,2013-09-13,20,Atlanta Dream,FALSE,19,away +400445893,2013,2,2013-09-13,19,Chicago Sky,TRUE,20,home +400445891,2013,2,2013-09-13,9,New York Liberty,FALSE,5,away +400445891,2013,2,2013-09-13,5,Indiana Fever,TRUE,9,home +400445892,2013,2,2013-09-13,18,Connecticut Sun,FALSE,16,away +400445892,2013,2,2013-09-13,16,Washington Mystics,TRUE,18,home +400445890,2013,2,2013-09-12,8,Minnesota Lynx,FALSE,6,away +400445890,2013,2,2013-09-12,6,Los Angeles Sparks,TRUE,8,home +400445889,2013,2,2013-09-12,14,Seattle Storm,TRUE,3,away +400445889,2013,2,2013-09-12,3,Tulsa Shock,FALSE,14,home +400445888,2013,2,2013-09-11,11,Phoenix Mercury,FALSE,19,away +400445888,2013,2,2013-09-11,19,Chicago Sky,TRUE,11,home +400445887,2013,2,2013-09-11,20,Atlanta Dream,FALSE,18,away +400445887,2013,2,2013-09-11,18,Connecticut Sun,TRUE,20,home +400445886,2013,2,2013-09-10,8,Minnesota Lynx,TRUE,14,away +400445886,2013,2,2013-09-10,14,Seattle Storm,FALSE,8,home +400445883,2013,2,2013-09-10,16,Washington Mystics,TRUE,5,away +400445883,2013,2,2013-09-10,5,Indiana Fever,FALSE,16,home +400445885,2013,2,2013-09-10,11,Phoenix Mercury,TRUE,9,away +400445885,2013,2,2013-09-10,9,New York Liberty,FALSE,11,home +400445880,2013,2,2013-09-08,3,Tulsa Shock,TRUE,17,away +400445880,2013,2,2013-09-08,17,San Antonio Silver Stars,FALSE,3,home +400445876,2013,2,2013-09-08,19,Chicago Sky,TRUE,16,away +400445876,2013,2,2013-09-08,16,Washington Mystics,FALSE,19,home +400445850,2013,2,2013-09-08,11,Phoenix Mercury,TRUE,20,away +400445850,2013,2,2013-09-08,20,Atlanta Dream,FALSE,11,home +400445844,2013,2,2013-09-07,8,Minnesota Lynx,TRUE,14,away +400445844,2013,2,2013-09-07,14,Seattle Storm,FALSE,8,home +400445838,2013,2,2013-09-07,18,Connecticut Sun,FALSE,5,away +400445838,2013,2,2013-09-07,5,Indiana Fever,TRUE,18,home +400445833,2013,2,2013-09-06,17,San Antonio Silver Stars,FALSE,11,away +400445833,2013,2,2013-09-06,11,Phoenix Mercury,TRUE,17,home +400445827,2013,2,2013-09-06,5,Indiana Fever,TRUE,19,away +400445827,2013,2,2013-09-06,19,Chicago Sky,FALSE,5,home +400445820,2013,2,2013-09-06,6,Los Angeles Sparks,TRUE,3,away +400445820,2013,2,2013-09-06,3,Tulsa Shock,FALSE,6,home +400445814,2013,2,2013-09-06,20,Atlanta Dream,TRUE,9,away +400445814,2013,2,2013-09-06,9,New York Liberty,FALSE,20,home +400445808,2013,2,2013-09-06,16,Washington Mystics,FALSE,18,away +400445808,2013,2,2013-09-06,18,Connecticut Sun,TRUE,16,home +400445803,2013,2,2013-09-04,6,Los Angeles Sparks,FALSE,8,away +400445803,2013,2,2013-09-04,8,Minnesota Lynx,TRUE,6,home +400445800,2013,2,2013-09-04,5,Indiana Fever,FALSE,20,away +400445800,2013,2,2013-09-04,20,Atlanta Dream,TRUE,5,home +400445793,2013,2,2013-09-02,6,Los Angeles Sparks,FALSE,20,away +400445793,2013,2,2013-09-02,20,Atlanta Dream,TRUE,6,home +400445786,2013,2,2013-09-01,9,New York Liberty,FALSE,3,away +400445786,2013,2,2013-09-01,3,Tulsa Shock,TRUE,9,home +400445778,2013,2,2013-08-31,18,Connecticut Sun,FALSE,11,away +400445778,2013,2,2013-08-31,11,Phoenix Mercury,TRUE,18,home +400445768,2013,2,2013-08-31,20,Atlanta Dream,FALSE,19,away +400445768,2013,2,2013-08-31,19,Chicago Sky,TRUE,20,home +400445770,2013,2,2013-08-31,14,Seattle Storm,FALSE,8,away +400445770,2013,2,2013-08-31,8,Minnesota Lynx,TRUE,14,home +400445774,2013,2,2013-08-31,6,Los Angeles Sparks,TRUE,17,away +400445774,2013,2,2013-08-31,17,San Antonio Silver Stars,FALSE,6,home +400445763,2013,2,2013-08-30,17,San Antonio Silver Stars,TRUE,3,away +400445763,2013,2,2013-08-30,3,Tulsa Shock,FALSE,17,home +400445758,2013,2,2013-08-30,5,Indiana Fever,TRUE,9,away +400445758,2013,2,2013-08-30,9,New York Liberty,FALSE,5,home +400445755,2013,2,2013-08-29,18,Connecticut Sun,FALSE,14,away +400445755,2013,2,2013-08-29,14,Seattle Storm,TRUE,18,home +400445730,2013,2,2013-08-28,16,Washington Mystics,TRUE,20,away +400445730,2013,2,2013-08-28,20,Atlanta Dream,FALSE,16,home +400445725,2013,2,2013-08-27,18,Connecticut Sun,FALSE,6,away +400445725,2013,2,2013-08-27,6,Los Angeles Sparks,TRUE,18,home +400445719,2013,2,2013-08-27,14,Seattle Storm,TRUE,17,away +400445719,2013,2,2013-08-27,17,San Antonio Silver Stars,FALSE,14,home +400445713,2013,2,2013-08-27,8,Minnesota Lynx,TRUE,9,away +400445713,2013,2,2013-08-27,9,New York Liberty,FALSE,8,home +400445708,2013,2,2013-08-25,3,Tulsa Shock,FALSE,6,away +400445708,2013,2,2013-08-25,6,Los Angeles Sparks,TRUE,3,home +400445704,2013,2,2013-08-25,9,New York Liberty,TRUE,18,away +400445704,2013,2,2013-08-25,18,Connecticut Sun,FALSE,9,home +400445702,2013,2,2013-08-25,14,Seattle Storm,FALSE,17,away +400445702,2013,2,2013-08-25,17,San Antonio Silver Stars,TRUE,14,home +400445873,2013,2,2013-08-24,5,Indiana Fever,FALSE,8,away +400445873,2013,2,2013-08-24,8,Minnesota Lynx,TRUE,5,home +400445874,2013,2,2013-08-24,19,Chicago Sky,TRUE,20,away +400445874,2013,2,2013-08-24,20,Atlanta Dream,FALSE,19,home +400445872,2013,2,2013-08-23,14,Seattle Storm,TRUE,11,away +400445872,2013,2,2013-08-23,11,Phoenix Mercury,FALSE,14,home +400445871,2013,2,2013-08-23,9,New York Liberty,FALSE,19,away +400445871,2013,2,2013-08-23,19,Chicago Sky,TRUE,9,home +400445870,2013,2,2013-08-23,17,San Antonio Silver Stars,FALSE,3,away +400445870,2013,2,2013-08-23,3,Tulsa Shock,TRUE,17,home +400445869,2013,2,2013-08-23,20,Atlanta Dream,FALSE,16,away +400445869,2013,2,2013-08-23,16,Washington Mystics,TRUE,20,home +400445868,2013,2,2013-08-22,8,Minnesota Lynx,TRUE,18,away +400445868,2013,2,2013-08-22,18,Connecticut Sun,FALSE,8,home +400445867,2013,2,2013-08-21,17,San Antonio Silver Stars,FALSE,5,away +400445867,2013,2,2013-08-21,5,Indiana Fever,TRUE,17,home +400445866,2013,2,2013-08-20,6,Los Angeles Sparks,FALSE,14,away +400445866,2013,2,2013-08-20,14,Seattle Storm,TRUE,6,home +400445865,2013,2,2013-08-20,11,Phoenix Mercury,TRUE,3,away +400445865,2013,2,2013-08-20,3,Tulsa Shock,FALSE,11,home +400445863,2013,2,2013-08-20,8,Minnesota Lynx,FALSE,20,away +400445863,2013,2,2013-08-20,20,Atlanta Dream,TRUE,8,home +400445864,2013,2,2013-08-20,19,Chicago Sky,TRUE,16,away +400445864,2013,2,2013-08-20,16,Washington Mystics,FALSE,19,home +400445862,2013,2,2013-08-18,9,New York Liberty,FALSE,8,away +400445862,2013,2,2013-08-18,8,Minnesota Lynx,TRUE,9,home +400445861,2013,2,2013-08-18,18,Connecticut Sun,FALSE,19,away +400445861,2013,2,2013-08-18,19,Chicago Sky,TRUE,18,home +400445860,2013,2,2013-08-18,16,Washington Mystics,FALSE,20,away +400445860,2013,2,2013-08-18,20,Atlanta Dream,TRUE,16,home +400445859,2013,2,2013-08-17,5,Indiana Fever,FALSE,14,away +400445859,2013,2,2013-08-17,14,Seattle Storm,TRUE,5,home +400445858,2013,2,2013-08-17,11,Phoenix Mercury,FALSE,17,away +400445858,2013,2,2013-08-17,17,San Antonio Silver Stars,TRUE,11,home +400445857,2013,2,2013-08-16,5,Indiana Fever,FALSE,6,away +400445857,2013,2,2013-08-16,6,Los Angeles Sparks,TRUE,5,home +400445856,2013,2,2013-08-16,3,Tulsa Shock,TRUE,8,away +400445856,2013,2,2013-08-16,8,Minnesota Lynx,FALSE,3,home +400445754,2013,2,2013-08-16,18,Connecticut Sun,FALSE,20,away +400445754,2013,2,2013-08-16,20,Atlanta Dream,TRUE,18,home +400445855,2013,2,2013-08-16,16,Washington Mystics,TRUE,9,away +400445855,2013,2,2013-08-16,9,New York Liberty,FALSE,16,home +400445753,2013,2,2013-08-15,19,Chicago Sky,TRUE,14,away +400445753,2013,2,2013-08-15,14,Seattle Storm,FALSE,19,home +400445752,2013,2,2013-08-14,5,Indiana Fever,FALSE,11,away +400445752,2013,2,2013-08-14,11,Phoenix Mercury,TRUE,5,home +400445751,2013,2,2013-08-14,20,Atlanta Dream,FALSE,18,away +400445751,2013,2,2013-08-14,18,Connecticut Sun,TRUE,20,home +400445750,2013,2,2013-08-13,19,Chicago Sky,FALSE,6,away +400445750,2013,2,2013-08-13,6,Los Angeles Sparks,TRUE,19,home +400445749,2013,2,2013-08-11,17,San Antonio Silver Stars,FALSE,14,away +400445749,2013,2,2013-08-11,14,Seattle Storm,TRUE,17,home +400445746,2013,2,2013-08-11,3,Tulsa Shock,FALSE,11,away +400445746,2013,2,2013-08-11,11,Phoenix Mercury,TRUE,3,home +400445747,2013,2,2013-08-11,8,Minnesota Lynx,FALSE,19,away +400445747,2013,2,2013-08-11,19,Chicago Sky,TRUE,8,home +400445748,2013,2,2013-08-11,9,New York Liberty,TRUE,20,away +400445748,2013,2,2013-08-11,20,Atlanta Dream,FALSE,9,home +400445745,2013,2,2013-08-11,18,Connecticut Sun,FALSE,16,away +400445745,2013,2,2013-08-11,16,Washington Mystics,TRUE,18,home +400445744,2013,2,2013-08-10,20,Atlanta Dream,FALSE,5,away +400445744,2013,2,2013-08-10,5,Indiana Fever,TRUE,20,home +400445743,2013,2,2013-08-10,6,Los Angeles Sparks,TRUE,9,away +400445743,2013,2,2013-08-10,9,New York Liberty,FALSE,6,home +400445741,2013,2,2013-08-09,3,Tulsa Shock,FALSE,11,away +400445741,2013,2,2013-08-09,11,Phoenix Mercury,TRUE,3,home +400445742,2013,2,2013-08-09,17,San Antonio Silver Stars,TRUE,14,away +400445742,2013,2,2013-08-09,14,Seattle Storm,FALSE,17,home +400445740,2013,2,2013-08-09,19,Chicago Sky,TRUE,18,away +400445740,2013,2,2013-08-09,18,Connecticut Sun,FALSE,19,home +400445739,2013,2,2013-08-08,16,Washington Mystics,TRUE,8,away +400445739,2013,2,2013-08-08,8,Minnesota Lynx,FALSE,16,home +400445738,2013,2,2013-08-08,6,Los Angeles Sparks,TRUE,5,away +400445738,2013,2,2013-08-08,5,Indiana Fever,FALSE,6,home +400445737,2013,2,2013-08-06,14,Seattle Storm,TRUE,11,away +400445737,2013,2,2013-08-06,11,Phoenix Mercury,FALSE,14,home +400445735,2013,2,2013-08-06,5,Indiana Fever,TRUE,19,away +400445735,2013,2,2013-08-06,19,Chicago Sky,FALSE,5,home +400445736,2013,2,2013-08-06,8,Minnesota Lynx,TRUE,17,away +400445736,2013,2,2013-08-06,17,San Antonio Silver Stars,FALSE,8,home +400445878,2013,2,2013-08-06,6,Los Angeles Sparks,TRUE,18,away +400445878,2013,2,2013-08-06,18,Connecticut Sun,FALSE,6,home +400445875,2013,2,2013-08-06,16,Washington Mystics,FALSE,9,away +400445875,2013,2,2013-08-06,9,New York Liberty,TRUE,16,home +400445851,2013,2,2013-08-04,14,Seattle Storm,FALSE,8,away +400445851,2013,2,2013-08-04,8,Minnesota Lynx,TRUE,14,home +400445848,2013,2,2013-08-04,3,Tulsa Shock,FALSE,17,away +400445848,2013,2,2013-08-04,17,San Antonio Silver Stars,TRUE,3,home +400445846,2013,2,2013-08-04,6,Los Angeles Sparks,TRUE,16,away +400445846,2013,2,2013-08-04,16,Washington Mystics,FALSE,6,home +400445842,2013,2,2013-08-03,20,Atlanta Dream,FALSE,11,away +400445842,2013,2,2013-08-03,11,Phoenix Mercury,TRUE,20,home +400445840,2013,2,2013-08-03,19,Chicago Sky,FALSE,5,away +400445840,2013,2,2013-08-03,5,Indiana Fever,TRUE,19,home +400445837,2013,2,2013-08-03,18,Connecticut Sun,TRUE,9,away +400445837,2013,2,2013-08-03,9,New York Liberty,FALSE,18,home +400445834,2013,2,2013-08-02,16,Washington Mystics,FALSE,19,away +400445834,2013,2,2013-08-02,19,Chicago Sky,TRUE,16,home +400445829,2013,2,2013-08-02,17,San Antonio Silver Stars,FALSE,8,away +400445829,2013,2,2013-08-02,8,Minnesota Lynx,TRUE,17,home +400445830,2013,2,2013-08-02,6,Los Angeles Sparks,FALSE,3,away +400445830,2013,2,2013-08-02,3,Tulsa Shock,TRUE,6,home +400445825,2013,2,2013-08-01,11,Phoenix Mercury,FALSE,14,away +400445825,2013,2,2013-08-01,14,Seattle Storm,TRUE,11,home +400445822,2013,2,2013-08-01,5,Indiana Fever,FALSE,18,away +400445822,2013,2,2013-08-01,18,Connecticut Sun,TRUE,5,home +400445821,2013,2,2013-07-31,9,New York Liberty,TRUE,16,away +400445821,2013,2,2013-07-31,16,Washington Mystics,FALSE,9,home +400470769,2013,2,2013-07-27,99,WEST,TRUE,98,away +400470769,2013,2,2013-07-27,98,EAST,FALSE,99,home +400445817,2013,2,2013-07-25,14,Seattle Storm,TRUE,6,away +400445817,2013,2,2013-07-25,6,Los Angeles Sparks,FALSE,14,home +400445811,2013,2,2013-07-25,9,New York Liberty,FALSE,17,away +400445811,2013,2,2013-07-25,17,San Antonio Silver Stars,TRUE,9,home +400445812,2013,2,2013-07-25,5,Indiana Fever,TRUE,3,away +400445812,2013,2,2013-07-25,3,Tulsa Shock,FALSE,5,home +400445806,2013,2,2013-07-24,18,Connecticut Sun,FALSE,20,away +400445806,2013,2,2013-07-24,20,Atlanta Dream,TRUE,18,home +400445804,2013,2,2013-07-24,11,Phoenix Mercury,FALSE,8,away +400445804,2013,2,2013-07-24,8,Minnesota Lynx,TRUE,11,home +400445802,2013,2,2013-07-24,19,Chicago Sky,FALSE,16,away +400445802,2013,2,2013-07-24,16,Washington Mystics,TRUE,19,home +400445799,2013,2,2013-07-23,9,New York Liberty,TRUE,5,away +400445799,2013,2,2013-07-23,5,Indiana Fever,FALSE,9,home +400445796,2013,2,2013-07-21,8,Minnesota Lynx,TRUE,11,away +400445796,2013,2,2013-07-21,11,Phoenix Mercury,FALSE,8,home +400445791,2013,2,2013-07-21,20,Atlanta Dream,FALSE,3,away +400445791,2013,2,2013-07-21,3,Tulsa Shock,TRUE,20,home +400445789,2013,2,2013-07-21,5,Indiana Fever,TRUE,16,away +400445789,2013,2,2013-07-21,16,Washington Mystics,FALSE,5,home +400445785,2013,2,2013-07-20,6,Los Angeles Sparks,TRUE,14,away +400445785,2013,2,2013-07-20,14,Seattle Storm,FALSE,6,home +400445779,2013,2,2013-07-20,9,New York Liberty,FALSE,19,away +400445779,2013,2,2013-07-20,19,Chicago Sky,TRUE,9,home +400445782,2013,2,2013-07-20,18,Connecticut Sun,FALSE,17,away +400445782,2013,2,2013-07-20,17,San Antonio Silver Stars,TRUE,18,home +400445773,2013,2,2013-07-19,8,Minnesota Lynx,TRUE,17,away +400445773,2013,2,2013-07-19,17,San Antonio Silver Stars,FALSE,8,home +400445775,2013,2,2013-07-19,18,Connecticut Sun,FALSE,3,away +400445775,2013,2,2013-07-19,3,Tulsa Shock,TRUE,18,home +400445765,2013,2,2013-07-19,16,Washington Mystics,FALSE,5,away +400445765,2013,2,2013-07-19,5,Indiana Fever,TRUE,16,home +400445761,2013,2,2013-07-18,11,Phoenix Mercury,TRUE,6,away +400445761,2013,2,2013-07-18,6,Los Angeles Sparks,FALSE,11,home +400445732,2013,2,2013-07-18,19,Chicago Sky,TRUE,9,away +400445732,2013,2,2013-07-18,9,New York Liberty,FALSE,19,home +400445727,2013,2,2013-07-17,20,Atlanta Dream,FALSE,6,away +400445727,2013,2,2013-07-17,6,Los Angeles Sparks,TRUE,20,home +400445724,2013,2,2013-07-17,3,Tulsa Shock,TRUE,14,away +400445724,2013,2,2013-07-17,14,Seattle Storm,FALSE,3,home +400445720,2013,2,2013-07-16,17,San Antonio Silver Stars,FALSE,16,away +400445720,2013,2,2013-07-16,16,Washington Mystics,TRUE,17,home +400445716,2013,2,2013-07-14,20,Atlanta Dream,FALSE,14,away +400445716,2013,2,2013-07-14,14,Seattle Storm,TRUE,20,home +400445712,2013,2,2013-07-14,6,Los Angeles Sparks,TRUE,11,away +400445712,2013,2,2013-07-14,11,Phoenix Mercury,FALSE,6,home +400445710,2013,2,2013-07-14,17,San Antonio Silver Stars,FALSE,18,away +400445710,2013,2,2013-07-14,18,Connecticut Sun,TRUE,17,home +400445706,2013,2,2013-07-13,8,Minnesota Lynx,TRUE,3,away +400445706,2013,2,2013-07-13,3,Tulsa Shock,FALSE,8,home +400445700,2013,2,2013-07-13,5,Indiana Fever,TRUE,9,away +400445700,2013,2,2013-07-13,9,New York Liberty,FALSE,5,home +400445881,2013,2,2013-07-12,16,Washington Mystics,TRUE,17,away +400445881,2013,2,2013-07-12,17,San Antonio Silver Stars,FALSE,16,home +400445877,2013,2,2013-07-12,19,Chicago Sky,TRUE,18,away +400445877,2013,2,2013-07-12,18,Connecticut Sun,FALSE,19,home +400445853,2013,2,2013-07-11,6,Los Angeles Sparks,TRUE,3,away +400445853,2013,2,2013-07-11,3,Tulsa Shock,FALSE,6,home +400445849,2013,2,2013-07-11,8,Minnesota Lynx,TRUE,5,away +400445849,2013,2,2013-07-11,5,Indiana Fever,FALSE,8,home +400445845,2013,2,2013-07-10,17,San Antonio Silver Stars,TRUE,11,away +400445845,2013,2,2013-07-10,11,Phoenix Mercury,FALSE,17,home +400445839,2013,2,2013-07-10,16,Washington Mystics,FALSE,19,away +400445839,2013,2,2013-07-10,19,Chicago Sky,TRUE,16,home +400445836,2013,2,2013-07-09,20,Atlanta Dream,FALSE,8,away +400445836,2013,2,2013-07-09,8,Minnesota Lynx,TRUE,20,home +400445832,2013,2,2013-07-09,14,Seattle Storm,FALSE,9,away +400445832,2013,2,2013-07-09,9,New York Liberty,TRUE,14,home +400445828,2013,2,2013-07-07,11,Phoenix Mercury,FALSE,8,away +400445828,2013,2,2013-07-07,8,Minnesota Lynx,TRUE,11,home +400445824,2013,2,2013-07-07,19,Chicago Sky,TRUE,9,away +400445824,2013,2,2013-07-07,9,New York Liberty,FALSE,19,home +400445816,2013,2,2013-07-06,18,Connecticut Sun,FALSE,5,away +400445816,2013,2,2013-07-06,5,Indiana Fever,TRUE,18,home +400445819,2013,2,2013-07-06,14,Seattle Storm,FALSE,16,away +400445819,2013,2,2013-07-06,16,Washington Mystics,TRUE,14,home +400445813,2013,2,2013-07-06,17,San Antonio Silver Stars,FALSE,6,away +400445813,2013,2,2013-07-06,6,Los Angeles Sparks,TRUE,17,home +400445809,2013,2,2013-07-04,9,New York Liberty,FALSE,6,away +400445809,2013,2,2013-07-04,6,Los Angeles Sparks,TRUE,9,home +400445805,2013,2,2013-07-02,8,Minnesota Lynx,FALSE,6,away +400445805,2013,2,2013-07-02,6,Los Angeles Sparks,TRUE,8,home +400445801,2013,2,2013-07-02,9,New York Liberty,FALSE,11,away +400445801,2013,2,2013-07-02,11,Phoenix Mercury,TRUE,9,home +400445795,2013,2,2013-07-02,14,Seattle Storm,TRUE,19,away +400445795,2013,2,2013-07-02,19,Chicago Sky,FALSE,14,home +400445798,2013,2,2013-07-02,3,Tulsa Shock,FALSE,18,away +400445798,2013,2,2013-07-02,18,Connecticut Sun,TRUE,3,home +400445784,2013,2,2013-06-30,14,Seattle Storm,FALSE,5,away +400445784,2013,2,2013-06-30,5,Indiana Fever,TRUE,14,home +400445781,2013,2,2013-06-30,3,Tulsa Shock,FALSE,16,away +400445781,2013,2,2013-06-30,16,Washington Mystics,TRUE,3,home +400445776,2013,2,2013-06-30,17,San Antonio Silver Stars,FALSE,20,away +400445776,2013,2,2013-06-30,20,Atlanta Dream,TRUE,17,home +400445772,2013,2,2013-06-29,6,Los Angeles Sparks,FALSE,19,away +400445772,2013,2,2013-06-29,19,Chicago Sky,TRUE,6,home +400445771,2013,2,2013-06-29,11,Phoenix Mercury,TRUE,18,away +400445771,2013,2,2013-06-29,18,Connecticut Sun,FALSE,11,home +400445769,2013,2,2013-06-28,9,New York Liberty,TRUE,14,away +400445769,2013,2,2013-06-28,14,Seattle Storm,FALSE,9,home +400445767,2013,2,2013-06-28,6,Los Angeles Sparks,FALSE,8,away +400445767,2013,2,2013-06-28,8,Minnesota Lynx,TRUE,6,home +400445762,2013,2,2013-06-28,16,Washington Mystics,FALSE,20,away +400445762,2013,2,2013-06-28,20,Atlanta Dream,TRUE,16,home +400445759,2013,2,2013-06-28,3,Tulsa Shock,FALSE,5,away +400445759,2013,2,2013-06-28,5,Indiana Fever,TRUE,3,home +400445757,2013,2,2013-06-27,11,Phoenix Mercury,TRUE,16,away +400445757,2013,2,2013-06-27,16,Washington Mystics,FALSE,11,home +400445733,2013,2,2013-06-26,9,New York Liberty,FALSE,19,away +400445733,2013,2,2013-06-26,19,Chicago Sky,TRUE,9,home +400445729,2013,2,2013-06-25,11,Phoenix Mercury,TRUE,17,away +400445729,2013,2,2013-06-25,17,San Antonio Silver Stars,FALSE,11,home +400445723,2013,2,2013-06-25,5,Indiana Fever,FALSE,20,away +400445723,2013,2,2013-06-25,20,Atlanta Dream,TRUE,5,home +400445721,2013,2,2013-06-23,16,Washington Mystics,FALSE,6,away +400445721,2013,2,2013-06-23,6,Los Angeles Sparks,TRUE,16,home +400445717,2013,2,2013-06-23,3,Tulsa Shock,FALSE,8,away +400445717,2013,2,2013-06-23,8,Minnesota Lynx,TRUE,3,home +400445709,2013,2,2013-06-23,20,Atlanta Dream,TRUE,18,away +400445709,2013,2,2013-06-23,18,Connecticut Sun,FALSE,20,home +400445714,2013,2,2013-06-23,17,San Antonio Silver Stars,TRUE,9,away +400445714,2013,2,2013-06-23,9,New York Liberty,FALSE,17,home +400445703,2013,2,2013-06-22,14,Seattle Storm,FALSE,3,away +400445703,2013,2,2013-06-22,3,Tulsa Shock,TRUE,14,home +400445701,2013,2,2013-06-22,19,Chicago Sky,TRUE,5,away +400445701,2013,2,2013-06-22,5,Indiana Fever,FALSE,19,home +400445699,2013,2,2013-06-21,8,Minnesota Lynx,FALSE,6,away +400445699,2013,2,2013-06-21,6,Los Angeles Sparks,TRUE,8,home +400445698,2013,2,2013-06-21,16,Washington Mystics,FALSE,11,away +400445698,2013,2,2013-06-21,11,Phoenix Mercury,TRUE,16,home +400445697,2013,2,2013-06-21,14,Seattle Storm,TRUE,17,away +400445697,2013,2,2013-06-21,17,San Antonio Silver Stars,FALSE,14,home +400445884,2013,2,2013-06-20,19,Chicago Sky,FALSE,3,away +400445884,2013,2,2013-06-20,3,Tulsa Shock,TRUE,19,home +400445882,2013,2,2013-06-19,8,Minnesota Lynx,TRUE,11,away +400445882,2013,2,2013-06-19,11,Phoenix Mercury,FALSE,8,home +400445879,2013,2,2013-06-18,16,Washington Mystics,FALSE,14,away +400445879,2013,2,2013-06-18,14,Seattle Storm,TRUE,16,home +400445854,2013,2,2013-06-16,14,Seattle Storm,TRUE,18,away +400445854,2013,2,2013-06-16,18,Connecticut Sun,FALSE,14,home +400445852,2013,2,2013-06-16,11,Phoenix Mercury,TRUE,3,away +400445852,2013,2,2013-06-16,3,Tulsa Shock,FALSE,11,home +400445847,2013,2,2013-06-16,19,Chicago Sky,FALSE,20,away +400445847,2013,2,2013-06-16,20,Atlanta Dream,TRUE,19,home +400445843,2013,2,2013-06-16,5,Indiana Fever,FALSE,16,away +400445843,2013,2,2013-06-16,16,Washington Mystics,TRUE,5,home +400445841,2013,2,2013-06-15,17,San Antonio Silver Stars,FALSE,6,away +400445841,2013,2,2013-06-15,6,Los Angeles Sparks,TRUE,17,home +400445835,2013,2,2013-06-14,6,Los Angeles Sparks,FALSE,11,away +400445835,2013,2,2013-06-14,11,Phoenix Mercury,TRUE,6,home +400445831,2013,2,2013-06-14,8,Minnesota Lynx,TRUE,3,away +400445831,2013,2,2013-06-14,3,Tulsa Shock,FALSE,8,home +400445823,2013,2,2013-06-14,14,Seattle Storm,FALSE,20,away +400445823,2013,2,2013-06-14,20,Atlanta Dream,TRUE,14,home +400445826,2013,2,2013-06-14,18,Connecticut Sun,FALSE,9,away +400445826,2013,2,2013-06-14,9,New York Liberty,TRUE,18,home +400445818,2013,2,2013-06-12,18,Connecticut Sun,TRUE,5,away +400445818,2013,2,2013-06-12,5,Indiana Fever,FALSE,18,home +400445815,2013,2,2013-06-11,17,San Antonio Silver Stars,FALSE,8,away +400445815,2013,2,2013-06-11,8,Minnesota Lynx,TRUE,17,home +400445810,2013,2,2013-06-09,17,San Antonio Silver Stars,FALSE,19,away +400445810,2013,2,2013-06-09,19,Chicago Sky,TRUE,17,home +400445807,2013,2,2013-06-09,20,Atlanta Dream,FALSE,9,away +400445807,2013,2,2013-06-09,9,New York Liberty,TRUE,20,home +400445797,2013,2,2013-06-08,3,Tulsa Shock,FALSE,6,away +400445797,2013,2,2013-06-08,6,Los Angeles Sparks,TRUE,3,home +400445794,2013,2,2013-06-08,8,Minnesota Lynx,FALSE,16,away +400445794,2013,2,2013-06-08,16,Washington Mystics,TRUE,8,home +400445792,2013,2,2013-06-08,11,Phoenix Mercury,TRUE,5,away +400445792,2013,2,2013-06-08,5,Indiana Fever,FALSE,11,home +400445790,2013,2,2013-06-07,3,Tulsa Shock,TRUE,14,away +400445790,2013,2,2013-06-07,14,Seattle Storm,FALSE,3,home +400445788,2013,2,2013-06-07,19,Chicago Sky,FALSE,17,away +400445788,2013,2,2013-06-07,17,San Antonio Silver Stars,TRUE,19,home +400445787,2013,2,2013-06-07,9,New York Liberty,FALSE,20,away +400445787,2013,2,2013-06-07,20,Atlanta Dream,TRUE,9,home +400445783,2013,2,2013-06-07,16,Washington Mystics,TRUE,18,away +400445783,2013,2,2013-06-07,18,Connecticut Sun,FALSE,16,home +400445780,2013,2,2013-06-06,11,Phoenix Mercury,FALSE,8,away +400445780,2013,2,2013-06-06,8,Minnesota Lynx,TRUE,11,home +400445777,2013,2,2013-06-05,5,Indiana Fever,FALSE,9,away +400445777,2013,2,2013-06-05,9,New York Liberty,TRUE,5,home +400445766,2013,2,2013-06-02,11,Phoenix Mercury,FALSE,14,away +400445766,2013,2,2013-06-02,14,Seattle Storm,TRUE,11,home +400445764,2013,2,2013-06-02,3,Tulsa Shock,FALSE,19,away +400445764,2013,2,2013-06-02,19,Chicago Sky,TRUE,3,home +400445760,2013,2,2013-06-02,20,Atlanta Dream,TRUE,16,away +400445760,2013,2,2013-06-02,16,Washington Mystics,FALSE,20,home +400445734,2013,2,2013-06-01,18,Connecticut Sun,FALSE,8,away +400445734,2013,2,2013-06-01,8,Minnesota Lynx,TRUE,18,home +400445756,2013,2,2013-06-01,6,Los Angeles Sparks,FALSE,17,away +400445756,2013,2,2013-06-01,17,San Antonio Silver Stars,TRUE,6,home +400445731,2013,2,2013-05-31,18,Connecticut Sun,FALSE,19,away +400445731,2013,2,2013-05-31,19,Chicago Sky,TRUE,18,home +400445728,2013,2,2013-05-31,3,Tulsa Shock,FALSE,9,away +400445728,2013,2,2013-05-31,9,New York Liberty,TRUE,3,home +400445726,2013,2,2013-05-31,20,Atlanta Dream,TRUE,5,away +400445726,2013,2,2013-05-31,5,Indiana Fever,FALSE,20,home +400445722,2013,2,2013-05-27,19,Chicago Sky,TRUE,11,away +400445722,2013,2,2013-05-27,11,Phoenix Mercury,FALSE,19,home +400445718,2013,2,2013-05-27,16,Washington Mystics,TRUE,3,away +400445718,2013,2,2013-05-27,3,Tulsa Shock,FALSE,16,home +400445715,2013,2,2013-05-26,14,Seattle Storm,FALSE,6,away +400445715,2013,2,2013-05-26,6,Los Angeles Sparks,TRUE,14,home +400445707,2013,2,2013-05-25,3,Tulsa Shock,FALSE,20,away +400445707,2013,2,2013-05-25,20,Atlanta Dream,TRUE,3,home +400445711,2013,2,2013-05-25,9,New York Liberty,FALSE,18,away +400445711,2013,2,2013-05-25,18,Connecticut Sun,TRUE,9,home +400445705,2013,2,2013-05-24,5,Indiana Fever,TRUE,17,away +400445705,2013,2,2013-05-24,17,San Antonio Silver Stars,FALSE,5,home +400582775,2014,3,2014-09-12,11,Phoenix Mercury,TRUE,19,away +400582775,2014,3,2014-09-12,19,Chicago Sky,FALSE,11,home +400582774,2014,3,2014-09-09,19,Chicago Sky,FALSE,11,away +400582774,2014,3,2014-09-09,11,Phoenix Mercury,TRUE,19,home +400582773,2014,3,2014-09-07,19,Chicago Sky,FALSE,11,away +400582773,2014,3,2014-09-07,11,Phoenix Mercury,TRUE,19,home +400581823,2014,3,2014-09-03,19,Chicago Sky,TRUE,5,away +400581823,2014,3,2014-09-03,5,Indiana Fever,FALSE,19,home +400581629,2014,3,2014-09-02,8,Minnesota Lynx,FALSE,11,away +400581629,2014,3,2014-09-02,11,Phoenix Mercury,TRUE,8,home +400581822,2014,3,2014-09-01,5,Indiana Fever,FALSE,19,away +400581822,2014,3,2014-09-01,19,Chicago Sky,TRUE,5,home +400581628,2014,3,2014-08-31,11,Phoenix Mercury,FALSE,8,away +400581628,2014,3,2014-08-31,8,Minnesota Lynx,TRUE,11,home +400581821,2014,3,2014-08-30,19,Chicago Sky,FALSE,5,away +400581821,2014,3,2014-08-30,5,Indiana Fever,TRUE,19,home +400581627,2014,3,2014-08-29,8,Minnesota Lynx,FALSE,11,away +400581627,2014,3,2014-08-29,11,Phoenix Mercury,TRUE,8,home +400580069,2014,3,2014-08-26,19,Chicago Sky,TRUE,20,away +400580069,2014,3,2014-08-26,20,Atlanta Dream,FALSE,19,home +400578291,2014,3,2014-08-24,11,Phoenix Mercury,TRUE,6,away +400578291,2014,3,2014-08-24,6,Los Angeles Sparks,FALSE,11,home +400580068,2014,3,2014-08-24,20,Atlanta Dream,TRUE,19,away +400580068,2014,3,2014-08-24,19,Chicago Sky,FALSE,20,home +400578288,2014,3,2014-08-23,8,Minnesota Lynx,TRUE,17,away +400578288,2014,3,2014-08-23,17,San Antonio Stars,FALSE,8,home +400580071,2014,3,2014-08-23,5,Indiana Fever,TRUE,16,away +400580071,2014,3,2014-08-23,16,Washington Mystics,FALSE,5,home +400578290,2014,3,2014-08-22,6,Los Angeles Sparks,FALSE,11,away +400578290,2014,3,2014-08-22,11,Phoenix Mercury,TRUE,6,home +400580067,2014,3,2014-08-22,19,Chicago Sky,TRUE,20,away +400580067,2014,3,2014-08-22,20,Atlanta Dream,FALSE,19,home +400578287,2014,3,2014-08-21,17,San Antonio Stars,FALSE,8,away +400578287,2014,3,2014-08-21,8,Minnesota Lynx,TRUE,17,home +400580070,2014,3,2014-08-21,16,Washington Mystics,FALSE,5,away +400580070,2014,3,2014-08-21,5,Indiana Fever,TRUE,16,home +400539664,2014,2,2014-08-17,11,Phoenix Mercury,TRUE,14,away +400539664,2014,2,2014-08-17,14,Seattle Storm,FALSE,11,home +400539661,2014,2,2014-08-17,17,San Antonio Stars,TRUE,19,away +400539661,2014,2,2014-08-17,19,Chicago Sky,FALSE,17,home +400539662,2014,2,2014-08-17,5,Indiana Fever,FALSE,9,away +400539662,2014,2,2014-08-17,9,New York Liberty,TRUE,5,home +400539660,2014,2,2014-08-17,20,Atlanta Dream,FALSE,18,away +400539660,2014,2,2014-08-17,18,Connecticut Sun,TRUE,20,home +400539659,2014,2,2014-08-16,6,Los Angeles Sparks,FALSE,11,away +400539659,2014,2,2014-08-16,11,Phoenix Mercury,TRUE,6,home +400544875,2014,2,2014-08-16,3,Tulsa Shock,FALSE,8,away +400544875,2014,2,2014-08-16,8,Minnesota Lynx,TRUE,3,home +400539657,2014,2,2014-08-16,19,Chicago Sky,FALSE,5,away +400539657,2014,2,2014-08-16,5,Indiana Fever,TRUE,19,home +400539658,2014,2,2014-08-16,9,New York Liberty,TRUE,16,away +400539658,2014,2,2014-08-16,16,Washington Mystics,FALSE,9,home +400539656,2014,2,2014-08-15,14,Seattle Storm,FALSE,6,away +400539656,2014,2,2014-08-15,6,Los Angeles Sparks,TRUE,14,home +400539655,2014,2,2014-08-15,8,Minnesota Lynx,FALSE,17,away +400539655,2014,2,2014-08-15,17,San Antonio Stars,TRUE,8,home +400539654,2014,2,2014-08-15,3,Tulsa Shock,FALSE,20,away +400539654,2014,2,2014-08-15,20,Atlanta Dream,TRUE,3,home +400539653,2014,2,2014-08-15,16,Washington Mystics,TRUE,18,away +400539653,2014,2,2014-08-15,18,Connecticut Sun,FALSE,16,home +400539652,2014,2,2014-08-14,9,New York Liberty,FALSE,5,away +400539652,2014,2,2014-08-14,5,Indiana Fever,TRUE,9,home +400539651,2014,2,2014-08-13,11,Phoenix Mercury,FALSE,20,away +400539651,2014,2,2014-08-13,20,Atlanta Dream,TRUE,11,home +400539650,2014,2,2014-08-13,19,Chicago Sky,TRUE,16,away +400539650,2014,2,2014-08-13,16,Washington Mystics,FALSE,19,home +400539649,2014,2,2014-08-12,6,Los Angeles Sparks,TRUE,8,away +400539649,2014,2,2014-08-12,8,Minnesota Lynx,FALSE,6,home +400539648,2014,2,2014-08-12,11,Phoenix Mercury,TRUE,9,away +400539648,2014,2,2014-08-12,9,New York Liberty,FALSE,11,home +400539647,2014,2,2014-08-10,3,Tulsa Shock,FALSE,14,away +400539647,2014,2,2014-08-10,14,Seattle Storm,TRUE,3,home +400539646,2014,2,2014-08-10,20,Atlanta Dream,FALSE,19,away +400539646,2014,2,2014-08-10,19,Chicago Sky,TRUE,20,home +400539645,2014,2,2014-08-10,6,Los Angeles Sparks,FALSE,17,away +400539645,2014,2,2014-08-10,17,San Antonio Stars,TRUE,6,home +400539643,2014,2,2014-08-10,16,Washington Mystics,FALSE,18,away +400539643,2014,2,2014-08-10,18,Connecticut Sun,TRUE,16,home +400539644,2014,2,2014-08-10,5,Indiana Fever,TRUE,9,away +400539644,2014,2,2014-08-10,9,New York Liberty,FALSE,5,home +400539642,2014,2,2014-08-09,8,Minnesota Lynx,FALSE,11,away +400539642,2014,2,2014-08-09,11,Phoenix Mercury,TRUE,8,home +400539641,2014,2,2014-08-08,20,Atlanta Dream,FALSE,6,away +400539641,2014,2,2014-08-08,6,Los Angeles Sparks,TRUE,20,home +400539640,2014,2,2014-08-08,17,San Antonio Stars,FALSE,3,away +400539640,2014,2,2014-08-08,3,Tulsa Shock,TRUE,17,home +400539639,2014,2,2014-08-08,18,Connecticut Sun,FALSE,9,away +400539639,2014,2,2014-08-08,9,New York Liberty,TRUE,18,home +400539638,2014,2,2014-08-08,16,Washington Mystics,TRUE,5,away +400539638,2014,2,2014-08-08,5,Indiana Fever,FALSE,16,home +400539637,2014,2,2014-08-07,20,Atlanta Dream,FALSE,14,away +400539637,2014,2,2014-08-07,14,Seattle Storm,TRUE,20,home +400539635,2014,2,2014-08-07,19,Chicago Sky,FALSE,8,away +400539635,2014,2,2014-08-07,8,Minnesota Lynx,TRUE,19,home +400539636,2014,2,2014-08-07,11,Phoenix Mercury,TRUE,17,away +400539636,2014,2,2014-08-07,17,San Antonio Stars,FALSE,11,home +400539634,2014,2,2014-08-05,3,Tulsa Shock,TRUE,6,away +400539634,2014,2,2014-08-05,6,Los Angeles Sparks,FALSE,3,home +400539633,2014,2,2014-08-05,20,Atlanta Dream,FALSE,11,away +400539633,2014,2,2014-08-05,11,Phoenix Mercury,TRUE,20,home +400539630,2014,2,2014-08-05,19,Chicago Sky,TRUE,18,away +400539630,2014,2,2014-08-05,18,Connecticut Sun,FALSE,19,home +400539631,2014,2,2014-08-05,8,Minnesota Lynx,TRUE,5,away +400539631,2014,2,2014-08-05,5,Indiana Fever,FALSE,8,home +400539632,2014,2,2014-08-05,9,New York Liberty,FALSE,16,away +400539632,2014,2,2014-08-05,16,Washington Mystics,TRUE,9,home +400539629,2014,2,2014-08-03,17,San Antonio Stars,FALSE,14,away +400539629,2014,2,2014-08-03,14,Seattle Storm,TRUE,17,home +400539628,2014,2,2014-08-03,16,Washington Mystics,FALSE,19,away +400539628,2014,2,2014-08-03,19,Chicago Sky,TRUE,16,home +400539627,2014,2,2014-08-03,18,Connecticut Sun,FALSE,6,away +400539627,2014,2,2014-08-03,6,Los Angeles Sparks,TRUE,18,home +400539626,2014,2,2014-08-03,9,New York Liberty,TRUE,20,away +400539626,2014,2,2014-08-03,20,Atlanta Dream,FALSE,9,home +400539625,2014,2,2014-08-02,5,Indiana Fever,FALSE,11,away +400539625,2014,2,2014-08-02,11,Phoenix Mercury,TRUE,5,home +400539624,2014,2,2014-08-02,8,Minnesota Lynx,TRUE,3,away +400539624,2014,2,2014-08-02,3,Tulsa Shock,FALSE,8,home +400539623,2014,2,2014-08-01,18,Connecticut Sun,TRUE,17,away +400539623,2014,2,2014-08-01,17,San Antonio Stars,FALSE,18,home +400539622,2014,2,2014-07-31,5,Indiana Fever,TRUE,14,away +400539622,2014,2,2014-07-31,14,Seattle Storm,FALSE,5,home +400539619,2014,2,2014-07-31,9,New York Liberty,FALSE,19,away +400539619,2014,2,2014-07-31,19,Chicago Sky,TRUE,9,home +400539620,2014,2,2014-07-31,11,Phoenix Mercury,FALSE,8,away +400539620,2014,2,2014-07-31,8,Minnesota Lynx,TRUE,11,home +400539621,2014,2,2014-07-31,20,Atlanta Dream,TRUE,3,away +400539621,2014,2,2014-07-31,3,Tulsa Shock,FALSE,20,home +400539618,2014,2,2014-07-29,6,Los Angeles Sparks,FALSE,11,away +400539618,2014,2,2014-07-29,11,Phoenix Mercury,TRUE,6,home +400539616,2014,2,2014-07-29,19,Chicago Sky,FALSE,17,away +400539616,2014,2,2014-07-29,17,San Antonio Stars,TRUE,19,home +400539617,2014,2,2014-07-29,14,Seattle Storm,FALSE,3,away +400539617,2014,2,2014-07-29,3,Tulsa Shock,TRUE,14,home +400539615,2014,2,2014-07-29,16,Washington Mystics,FALSE,9,away +400539615,2014,2,2014-07-29,9,New York Liberty,TRUE,16,home +400539614,2014,2,2014-07-29,18,Connecticut Sun,FALSE,20,away +400539614,2014,2,2014-07-29,20,Atlanta Dream,TRUE,18,home +400539613,2014,2,2014-07-28,5,Indiana Fever,FALSE,6,away +400539613,2014,2,2014-07-28,6,Los Angeles Sparks,TRUE,5,home +400539612,2014,2,2014-07-27,19,Chicago Sky,FALSE,3,away +400539612,2014,2,2014-07-27,3,Tulsa Shock,TRUE,19,home +400539611,2014,2,2014-07-27,20,Atlanta Dream,FALSE,16,away +400539611,2014,2,2014-07-27,16,Washington Mystics,TRUE,20,home +400539610,2014,2,2014-07-27,8,Minnesota Lynx,TRUE,18,away +400539610,2014,2,2014-07-27,18,Connecticut Sun,FALSE,8,home +400539608,2014,2,2014-07-26,9,New York Liberty,FALSE,11,away +400539608,2014,2,2014-07-26,11,Phoenix Mercury,TRUE,9,home +400539607,2014,2,2014-07-26,5,Indiana Fever,TRUE,17,away +400539607,2014,2,2014-07-26,17,San Antonio Stars,FALSE,5,home +400539609,2014,2,2014-07-26,6,Los Angeles Sparks,TRUE,14,away +400539609,2014,2,2014-07-26,14,Seattle Storm,FALSE,6,home +400539606,2014,2,2014-07-25,17,San Antonio Stars,FALSE,8,away +400539606,2014,2,2014-07-25,8,Minnesota Lynx,TRUE,17,home +400539605,2014,2,2014-07-25,19,Chicago Sky,TRUE,20,away +400539605,2014,2,2014-07-25,20,Atlanta Dream,FALSE,19,home +400539604,2014,2,2014-07-25,3,Tulsa Shock,FALSE,16,away +400539604,2014,2,2014-07-25,16,Washington Mystics,TRUE,3,home +400539603,2014,2,2014-07-24,11,Phoenix Mercury,TRUE,6,away +400539603,2014,2,2014-07-24,6,Los Angeles Sparks,FALSE,11,home +400539602,2014,2,2014-07-24,9,New York Liberty,TRUE,14,away +400539602,2014,2,2014-07-24,14,Seattle Storm,FALSE,9,home +400539601,2014,2,2014-07-23,9,New York Liberty,TRUE,6,away +400539601,2014,2,2014-07-23,6,Los Angeles Sparks,FALSE,9,home +400539600,2014,2,2014-07-23,18,Connecticut Sun,FALSE,16,away +400539600,2014,2,2014-07-23,16,Washington Mystics,TRUE,18,home +400539598,2014,2,2014-07-22,11,Phoenix Mercury,TRUE,14,away +400539598,2014,2,2014-07-22,14,Seattle Storm,FALSE,11,home +400539596,2014,2,2014-07-22,5,Indiana Fever,FALSE,19,away +400539596,2014,2,2014-07-22,19,Chicago Sky,TRUE,5,home +400539597,2014,2,2014-07-22,3,Tulsa Shock,FALSE,17,away +400539597,2014,2,2014-07-22,17,San Antonio Stars,TRUE,3,home +400539599,2014,2,2014-07-22,20,Atlanta Dream,FALSE,8,away +400539599,2014,2,2014-07-22,8,Minnesota Lynx,TRUE,20,home +400562214,2014,2,2014-07-19,98,EAST,TRUE,99,away +400562214,2014,2,2014-07-19,99,WEST,FALSE,98,home +400539595,2014,2,2014-07-17,16,Washington Mystics,TRUE,6,away +400539595,2014,2,2014-07-17,6,Los Angeles Sparks,FALSE,16,home +400539594,2014,2,2014-07-17,18,Connecticut Sun,FALSE,11,away +400539594,2014,2,2014-07-17,11,Phoenix Mercury,TRUE,18,home +400539593,2014,2,2014-07-17,19,Chicago Sky,FALSE,5,away +400539593,2014,2,2014-07-17,5,Indiana Fever,TRUE,19,home +400539592,2014,2,2014-07-17,17,San Antonio Stars,FALSE,3,away +400539592,2014,2,2014-07-17,3,Tulsa Shock,TRUE,17,home +400539591,2014,2,2014-07-16,3,Tulsa Shock,FALSE,8,away +400539591,2014,2,2014-07-16,8,Minnesota Lynx,TRUE,3,home +400539590,2014,2,2014-07-16,20,Atlanta Dream,FALSE,9,away +400539590,2014,2,2014-07-16,9,New York Liberty,TRUE,20,home +400539589,2014,2,2014-07-15,16,Washington Mystics,FALSE,11,away +400539589,2014,2,2014-07-15,11,Phoenix Mercury,TRUE,16,home +400539588,2014,2,2014-07-15,6,Los Angeles Sparks,TRUE,5,away +400539588,2014,2,2014-07-15,5,Indiana Fever,FALSE,6,home +400539587,2014,2,2014-07-15,18,Connecticut Sun,TRUE,14,away +400539587,2014,2,2014-07-15,14,Seattle Storm,FALSE,18,home +400539585,2014,2,2014-07-13,17,San Antonio Stars,FALSE,11,away +400539585,2014,2,2014-07-13,11,Phoenix Mercury,TRUE,17,home +400539586,2014,2,2014-07-13,19,Chicago Sky,FALSE,20,away +400539586,2014,2,2014-07-13,20,Atlanta Dream,TRUE,19,home +400539584,2014,2,2014-07-13,14,Seattle Storm,FALSE,8,away +400539584,2014,2,2014-07-13,8,Minnesota Lynx,TRUE,14,home +400539583,2014,2,2014-07-13,6,Los Angeles Sparks,TRUE,18,away +400539583,2014,2,2014-07-13,18,Connecticut Sun,FALSE,6,home +400539582,2014,2,2014-07-12,16,Washington Mystics,TRUE,3,away +400539582,2014,2,2014-07-12,3,Tulsa Shock,FALSE,16,home +400539581,2014,2,2014-07-12,20,Atlanta Dream,TRUE,5,away +400539581,2014,2,2014-07-12,5,Indiana Fever,FALSE,20,home +400539580,2014,2,2014-07-11,11,Phoenix Mercury,TRUE,19,away +400539580,2014,2,2014-07-11,19,Chicago Sky,FALSE,11,home +400539579,2014,2,2014-07-11,14,Seattle Storm,TRUE,17,away +400539579,2014,2,2014-07-11,17,San Antonio Stars,FALSE,14,home +400539578,2014,2,2014-07-11,6,Los Angeles Sparks,TRUE,9,away +400539578,2014,2,2014-07-11,9,New York Liberty,FALSE,6,home +400539577,2014,2,2014-07-10,8,Minnesota Lynx,TRUE,3,away +400539577,2014,2,2014-07-10,3,Tulsa Shock,FALSE,8,home +400539576,2014,2,2014-07-10,18,Connecticut Sun,FALSE,5,away +400539576,2014,2,2014-07-10,5,Indiana Fever,TRUE,18,home +400539575,2014,2,2014-07-09,9,New York Liberty,FALSE,17,away +400539575,2014,2,2014-07-09,17,San Antonio Stars,TRUE,9,home +400539574,2014,2,2014-07-09,14,Seattle Storm,FALSE,11,away +400539574,2014,2,2014-07-09,11,Phoenix Mercury,TRUE,14,home +400539573,2014,2,2014-07-09,16,Washington Mystics,TRUE,19,away +400539573,2014,2,2014-07-09,19,Chicago Sky,FALSE,16,home +400539572,2014,2,2014-07-08,6,Los Angeles Sparks,FALSE,8,away +400539572,2014,2,2014-07-08,8,Minnesota Lynx,TRUE,6,home +400539571,2014,2,2014-07-08,5,Indiana Fever,TRUE,3,away +400539571,2014,2,2014-07-08,3,Tulsa Shock,FALSE,5,home +400539570,2014,2,2014-07-08,18,Connecticut Sun,FALSE,20,away +400539570,2014,2,2014-07-08,20,Atlanta Dream,TRUE,18,home +400539569,2014,2,2014-07-06,11,Phoenix Mercury,TRUE,6,away +400539569,2014,2,2014-07-06,6,Los Angeles Sparks,FALSE,11,home +400539568,2014,2,2014-07-06,8,Minnesota Lynx,FALSE,9,away +400539568,2014,2,2014-07-06,9,New York Liberty,TRUE,8,home +400539567,2014,2,2014-07-05,19,Chicago Sky,FALSE,14,away +400539567,2014,2,2014-07-05,14,Seattle Storm,TRUE,19,home +400539566,2014,2,2014-07-05,18,Connecticut Sun,TRUE,3,away +400539566,2014,2,2014-07-05,3,Tulsa Shock,FALSE,18,home +400539565,2014,2,2014-07-05,16,Washington Mystics,FALSE,20,away +400539565,2014,2,2014-07-05,20,Atlanta Dream,TRUE,16,home +400539564,2014,2,2014-07-05,17,San Antonio Stars,TRUE,5,away +400539564,2014,2,2014-07-05,5,Indiana Fever,FALSE,17,home +400539563,2014,2,2014-07-03,6,Los Angeles Sparks,TRUE,14,away +400539563,2014,2,2014-07-03,14,Seattle Storm,FALSE,6,home +400539562,2014,2,2014-07-03,17,San Antonio Stars,FALSE,8,away +400539562,2014,2,2014-07-03,8,Minnesota Lynx,TRUE,17,home +400539561,2014,2,2014-07-03,3,Tulsa Shock,TRUE,18,away +400539561,2014,2,2014-07-03,18,Connecticut Sun,FALSE,3,home +400539560,2014,2,2014-07-02,19,Chicago Sky,FALSE,11,away +400539560,2014,2,2014-07-02,11,Phoenix Mercury,TRUE,19,home +400539559,2014,2,2014-07-02,5,Indiana Fever,TRUE,16,away +400539559,2014,2,2014-07-02,16,Washington Mystics,FALSE,5,home +400539558,2014,2,2014-07-01,19,Chicago Sky,TRUE,6,away +400539558,2014,2,2014-07-01,6,Los Angeles Sparks,FALSE,19,home +400539557,2014,2,2014-07-01,5,Indiana Fever,TRUE,20,away +400539557,2014,2,2014-07-01,20,Atlanta Dream,FALSE,5,home +400539555,2014,2,2014-07-01,17,San Antonio Stars,TRUE,18,away +400539555,2014,2,2014-07-01,18,Connecticut Sun,FALSE,17,home +400539556,2014,2,2014-07-01,3,Tulsa Shock,FALSE,9,away +400539556,2014,2,2014-07-01,9,New York Liberty,TRUE,3,home +400539554,2014,2,2014-06-29,14,Seattle Storm,FALSE,8,away +400539554,2014,2,2014-06-29,8,Minnesota Lynx,TRUE,14,home +400539553,2014,2,2014-06-29,20,Atlanta Dream,TRUE,5,away +400539553,2014,2,2014-06-29,5,Indiana Fever,FALSE,20,home +400539552,2014,2,2014-06-29,11,Phoenix Mercury,TRUE,3,away +400539552,2014,2,2014-06-29,3,Tulsa Shock,FALSE,11,home +400539551,2014,2,2014-06-29,17,San Antonio Stars,TRUE,16,away +400539551,2014,2,2014-06-29,16,Washington Mystics,FALSE,17,home +400539550,2014,2,2014-06-29,18,Connecticut Sun,FALSE,9,away +400539550,2014,2,2014-06-29,9,New York Liberty,TRUE,18,home +400539549,2014,2,2014-06-28,6,Los Angeles Sparks,TRUE,3,away +400539549,2014,2,2014-06-28,3,Tulsa Shock,FALSE,6,home +400539548,2014,2,2014-06-27,8,Minnesota Lynx,FALSE,14,away +400539548,2014,2,2014-06-27,14,Seattle Storm,TRUE,8,home +400539547,2014,2,2014-06-27,19,Chicago Sky,TRUE,9,away +400539547,2014,2,2014-06-27,9,New York Liberty,FALSE,19,home +400539545,2014,2,2014-06-27,11,Phoenix Mercury,TRUE,5,away +400539545,2014,2,2014-06-27,5,Indiana Fever,FALSE,11,home +400539546,2014,2,2014-06-27,18,Connecticut Sun,FALSE,16,away +400539546,2014,2,2014-06-27,16,Washington Mystics,TRUE,18,home +400539544,2014,2,2014-06-26,20,Atlanta Dream,TRUE,17,away +400539544,2014,2,2014-06-26,17,San Antonio Stars,FALSE,20,home +400539542,2014,2,2014-06-25,19,Chicago Sky,FALSE,18,away +400539542,2014,2,2014-06-25,18,Connecticut Sun,TRUE,19,home +400539543,2014,2,2014-06-25,3,Tulsa Shock,TRUE,5,away +400539543,2014,2,2014-06-25,5,Indiana Fever,FALSE,3,home +400539541,2014,2,2014-06-24,14,Seattle Storm,FALSE,6,away +400539541,2014,2,2014-06-24,6,Los Angeles Sparks,TRUE,14,home +400539540,2014,2,2014-06-24,16,Washington Mystics,TRUE,17,away +400539540,2014,2,2014-06-24,17,San Antonio Stars,FALSE,16,home +400539539,2014,2,2014-06-22,16,Washington Mystics,FALSE,14,away +400539539,2014,2,2014-06-22,14,Seattle Storm,TRUE,16,home +400539538,2014,2,2014-06-22,5,Indiana Fever,FALSE,8,away +400539538,2014,2,2014-06-22,8,Minnesota Lynx,TRUE,5,home +400539537,2014,2,2014-06-22,17,San Antonio Stars,TRUE,6,away +400539537,2014,2,2014-06-22,6,Los Angeles Sparks,FALSE,17,home +400539536,2014,2,2014-06-22,20,Atlanta Dream,FALSE,9,away +400539536,2014,2,2014-06-22,9,New York Liberty,TRUE,20,home +400539535,2014,2,2014-06-22,3,Tulsa Shock,TRUE,19,away +400539535,2014,2,2014-06-22,19,Chicago Sky,FALSE,3,home +400539534,2014,2,2014-06-20,3,Tulsa Shock,FALSE,11,away +400539534,2014,2,2014-06-20,11,Phoenix Mercury,TRUE,3,home +400539533,2014,2,2014-06-20,5,Indiana Fever,TRUE,19,away +400539533,2014,2,2014-06-20,19,Chicago Sky,FALSE,5,home +400539532,2014,2,2014-06-20,16,Washington Mystics,FALSE,8,away +400539532,2014,2,2014-06-20,8,Minnesota Lynx,TRUE,16,home +400539531,2014,2,2014-06-20,9,New York Liberty,FALSE,20,away +400539531,2014,2,2014-06-20,20,Atlanta Dream,TRUE,9,home +400539530,2014,2,2014-06-19,3,Tulsa Shock,FALSE,6,away +400539530,2014,2,2014-06-19,6,Los Angeles Sparks,TRUE,3,home +400539529,2014,2,2014-06-19,17,San Antonio Stars,TRUE,14,away +400539529,2014,2,2014-06-19,14,Seattle Storm,FALSE,17,home +400539528,2014,2,2014-06-18,8,Minnesota Lynx,FALSE,11,away +400539528,2014,2,2014-06-18,11,Phoenix Mercury,TRUE,8,home +400539527,2014,2,2014-06-18,9,New York Liberty,FALSE,19,away +400539527,2014,2,2014-06-18,19,Chicago Sky,TRUE,9,home +400539526,2014,2,2014-06-18,16,Washington Mystics,FALSE,20,away +400539526,2014,2,2014-06-18,20,Atlanta Dream,TRUE,16,home +400539525,2014,2,2014-06-17,8,Minnesota Lynx,TRUE,6,away +400539525,2014,2,2014-06-17,6,Los Angeles Sparks,FALSE,8,home +400539524,2014,2,2014-06-17,5,Indiana Fever,FALSE,18,away +400539524,2014,2,2014-06-17,18,Connecticut Sun,TRUE,5,home +400539523,2014,2,2014-06-15,14,Seattle Storm,FALSE,3,away +400539523,2014,2,2014-06-15,3,Tulsa Shock,TRUE,14,home +400539522,2014,2,2014-06-15,20,Atlanta Dream,TRUE,16,away +400539522,2014,2,2014-06-15,16,Washington Mystics,FALSE,20,home +400539520,2014,2,2014-06-15,11,Phoenix Mercury,TRUE,8,away +400539520,2014,2,2014-06-15,8,Minnesota Lynx,FALSE,11,home +400539521,2014,2,2014-06-15,9,New York Liberty,FALSE,18,away +400539521,2014,2,2014-06-15,18,Connecticut Sun,TRUE,9,home +400539519,2014,2,2014-06-14,6,Los Angeles Sparks,FALSE,17,away +400539519,2014,2,2014-06-14,17,San Antonio Stars,TRUE,6,home +400539517,2014,2,2014-06-13,14,Seattle Storm,TRUE,17,away +400539517,2014,2,2014-06-13,17,San Antonio Stars,FALSE,14,home +400539518,2014,2,2014-06-13,6,Los Angeles Sparks,FALSE,3,away +400539518,2014,2,2014-06-13,3,Tulsa Shock,TRUE,6,home +400539515,2014,2,2014-06-13,8,Minnesota Lynx,FALSE,20,away +400539515,2014,2,2014-06-13,20,Atlanta Dream,TRUE,8,home +400539516,2014,2,2014-06-13,18,Connecticut Sun,TRUE,9,away +400539516,2014,2,2014-06-13,9,New York Liberty,FALSE,18,home +400539514,2014,2,2014-06-13,19,Chicago Sky,FALSE,16,away +400539514,2014,2,2014-06-13,16,Washington Mystics,TRUE,19,home +400539513,2014,2,2014-06-12,11,Phoenix Mercury,FALSE,18,away +400539513,2014,2,2014-06-12,18,Connecticut Sun,TRUE,11,home +400539512,2014,2,2014-06-11,14,Seattle Storm,FALSE,5,away +400539512,2014,2,2014-06-11,5,Indiana Fever,TRUE,14,home +400539511,2014,2,2014-06-10,14,Seattle Storm,TRUE,19,away +400539511,2014,2,2014-06-10,19,Chicago Sky,FALSE,14,home +400539510,2014,2,2014-06-10,11,Phoenix Mercury,TRUE,16,away +400539510,2014,2,2014-06-10,16,Washington Mystics,FALSE,11,home +400539509,2014,2,2014-06-10,9,New York Liberty,FALSE,3,away +400539509,2014,2,2014-06-10,3,Tulsa Shock,TRUE,9,home +400539508,2014,2,2014-06-08,8,Minnesota Lynx,TRUE,6,away +400539508,2014,2,2014-06-08,6,Los Angeles Sparks,FALSE,8,home +400539507,2014,2,2014-06-08,16,Washington Mystics,FALSE,9,away +400539507,2014,2,2014-06-08,9,New York Liberty,TRUE,16,home +400539506,2014,2,2014-06-07,11,Phoenix Mercury,TRUE,17,away +400539506,2014,2,2014-06-07,17,San Antonio Stars,FALSE,11,home +400539504,2014,2,2014-06-07,19,Chicago Sky,FALSE,20,away +400539504,2014,2,2014-06-07,20,Atlanta Dream,TRUE,19,home +400539505,2014,2,2014-06-07,5,Indiana Fever,FALSE,18,away +400539505,2014,2,2014-06-07,18,Connecticut Sun,TRUE,5,home +400539503,2014,2,2014-06-06,8,Minnesota Lynx,FALSE,14,away +400539503,2014,2,2014-06-06,14,Seattle Storm,TRUE,8,home +400539502,2014,2,2014-06-06,6,Los Angeles Sparks,TRUE,19,away +400539502,2014,2,2014-06-06,19,Chicago Sky,FALSE,6,home +400539501,2014,2,2014-06-06,11,Phoenix Mercury,FALSE,3,away +400539501,2014,2,2014-06-06,3,Tulsa Shock,TRUE,11,home +400539500,2014,2,2014-06-06,5,Indiana Fever,TRUE,16,away +400539500,2014,2,2014-06-06,16,Washington Mystics,FALSE,5,home +400539498,2014,2,2014-06-05,16,Washington Mystics,TRUE,18,away +400539498,2014,2,2014-06-05,18,Connecticut Sun,FALSE,16,home +400539499,2014,2,2014-06-05,17,San Antonio Stars,TRUE,9,away +400539499,2014,2,2014-06-05,9,New York Liberty,FALSE,17,home +400539497,2014,2,2014-06-03,14,Seattle Storm,FALSE,11,away +400539497,2014,2,2014-06-03,11,Phoenix Mercury,TRUE,14,home +400539496,2014,2,2014-06-03,6,Los Angeles Sparks,FALSE,20,away +400539496,2014,2,2014-06-03,20,Atlanta Dream,TRUE,6,home +400539495,2014,2,2014-06-01,3,Tulsa Shock,FALSE,14,away +400539495,2014,2,2014-06-01,14,Seattle Storm,TRUE,3,home +400539494,2014,2,2014-06-01,8,Minnesota Lynx,TRUE,17,away +400539494,2014,2,2014-06-01,17,San Antonio Stars,FALSE,8,home +400539493,2014,2,2014-06-01,6,Los Angeles Sparks,FALSE,16,away +400539493,2014,2,2014-06-01,16,Washington Mystics,TRUE,6,home +400539492,2014,2,2014-06-01,20,Atlanta Dream,FALSE,18,away +400539492,2014,2,2014-06-01,18,Connecticut Sun,TRUE,20,home +400539491,2014,2,2014-05-31,9,New York Liberty,FALSE,5,away +400539491,2014,2,2014-05-31,5,Indiana Fever,TRUE,9,home +400539490,2014,2,2014-05-30,3,Tulsa Shock,FALSE,11,away +400539490,2014,2,2014-05-30,11,Phoenix Mercury,TRUE,3,home +400539489,2014,2,2014-05-30,18,Connecticut Sun,FALSE,19,away +400539489,2014,2,2014-05-30,19,Chicago Sky,TRUE,18,home +400539488,2014,2,2014-05-30,17,San Antonio Stars,FALSE,8,away +400539488,2014,2,2014-05-30,8,Minnesota Lynx,TRUE,17,home +400539487,2014,2,2014-05-30,14,Seattle Storm,FALSE,20,away +400539487,2014,2,2014-05-30,20,Atlanta Dream,TRUE,14,home +400539486,2014,2,2014-05-30,9,New York Liberty,FALSE,16,away +400539486,2014,2,2014-05-30,16,Washington Mystics,TRUE,9,home +400539485,2014,2,2014-05-29,18,Connecticut Sun,FALSE,5,away +400539485,2014,2,2014-05-29,5,Indiana Fever,TRUE,18,home +400539484,2014,2,2014-05-28,3,Tulsa Shock,FALSE,17,away +400539484,2014,2,2014-05-28,17,San Antonio Stars,TRUE,3,home +400539483,2014,2,2014-05-27,14,Seattle Storm,FALSE,9,away +400539483,2014,2,2014-05-27,9,New York Liberty,TRUE,14,home +400539482,2014,2,2014-05-26,8,Minnesota Lynx,TRUE,19,away +400539482,2014,2,2014-05-26,19,Chicago Sky,FALSE,8,home +400539481,2014,2,2014-05-25,5,Indiana Fever,TRUE,20,away +400539481,2014,2,2014-05-25,20,Atlanta Dream,FALSE,5,home +400539480,2014,2,2014-05-25,17,San Antonio Stars,FALSE,6,away +400539480,2014,2,2014-05-25,6,Los Angeles Sparks,TRUE,17,home +400539478,2014,2,2014-05-24,20,Atlanta Dream,FALSE,19,away +400539478,2014,2,2014-05-24,19,Chicago Sky,TRUE,20,home +400539479,2014,2,2014-05-24,9,New York Liberty,FALSE,8,away +400539479,2014,2,2014-05-24,8,Minnesota Lynx,TRUE,9,home +400539477,2014,2,2014-05-24,14,Seattle Storm,TRUE,16,away +400539477,2014,2,2014-05-24,16,Washington Mystics,FALSE,14,home +400539476,2014,2,2014-05-23,17,San Antonio Stars,TRUE,11,away +400539476,2014,2,2014-05-23,11,Phoenix Mercury,FALSE,17,home +400539475,2014,2,2014-05-23,8,Minnesota Lynx,TRUE,3,away +400539475,2014,2,2014-05-23,3,Tulsa Shock,FALSE,8,home +400539473,2014,2,2014-05-23,14,Seattle Storm,FALSE,18,away +400539473,2014,2,2014-05-23,18,Connecticut Sun,TRUE,14,home +400539474,2014,2,2014-05-23,16,Washington Mystics,TRUE,5,away +400539474,2014,2,2014-05-23,5,Indiana Fever,FALSE,16,home +400539472,2014,2,2014-05-21,18,Connecticut Sun,FALSE,19,away +400539472,2014,2,2014-05-21,19,Chicago Sky,TRUE,18,home +400539471,2014,2,2014-05-18,11,Phoenix Mercury,TRUE,6,away +400539471,2014,2,2014-05-18,6,Los Angeles Sparks,FALSE,11,home +400539470,2014,2,2014-05-18,18,Connecticut Sun,FALSE,8,away +400539470,2014,2,2014-05-18,8,Minnesota Lynx,TRUE,18,home +400539469,2014,2,2014-05-17,14,Seattle Storm,FALSE,11,away +400539469,2014,2,2014-05-17,11,Phoenix Mercury,TRUE,14,home +400539467,2014,2,2014-05-17,19,Chicago Sky,TRUE,9,away +400539467,2014,2,2014-05-17,9,New York Liberty,FALSE,19,home +400539468,2014,2,2014-05-17,3,Tulsa Shock,FALSE,17,away +400539468,2014,2,2014-05-17,17,San Antonio Stars,TRUE,3,home +400539466,2014,2,2014-05-17,20,Atlanta Dream,TRUE,5,away +400539466,2014,2,2014-05-17,5,Indiana Fever,FALSE,20,home +400539465,2014,2,2014-05-16,6,Los Angeles Sparks,TRUE,14,away +400539465,2014,2,2014-05-16,14,Seattle Storm,FALSE,6,home +400539464,2014,2,2014-05-16,5,Indiana Fever,FALSE,19,away +400539464,2014,2,2014-05-16,19,Chicago Sky,TRUE,5,home +400539463,2014,2,2014-05-16,17,San Antonio Stars,FALSE,20,away +400539463,2014,2,2014-05-16,20,Atlanta Dream,TRUE,17,home +400539461,2014,2,2014-05-16,9,New York Liberty,TRUE,18,away +400539461,2014,2,2014-05-16,18,Connecticut Sun,FALSE,9,home +400539462,2014,2,2014-05-16,8,Minnesota Lynx,TRUE,16,away +400539462,2014,2,2014-05-16,16,Washington Mystics,FALSE,8,home +400847199,2015,3,2015-10-14,5,Indiana Fever,FALSE,8,away +400847199,2015,3,2015-10-14,8,Minnesota Lynx,TRUE,5,home +400847198,2015,3,2015-10-11,8,Minnesota Lynx,FALSE,5,away +400847198,2015,3,2015-10-11,5,Indiana Fever,TRUE,8,home +400847197,2015,3,2015-10-09,8,Minnesota Lynx,TRUE,5,away +400847197,2015,3,2015-10-09,5,Indiana Fever,FALSE,8,home +400847196,2015,3,2015-10-06,5,Indiana Fever,FALSE,8,away +400847196,2015,3,2015-10-06,8,Minnesota Lynx,TRUE,5,home +400847195,2015,3,2015-10-04,5,Indiana Fever,TRUE,8,away +400847195,2015,3,2015-10-04,8,Minnesota Lynx,FALSE,5,home +400844307,2015,3,2015-09-29,5,Indiana Fever,TRUE,9,away +400844307,2015,3,2015-09-29,9,New York Liberty,FALSE,5,home +400844349,2015,3,2015-09-27,8,Minnesota Lynx,TRUE,11,away +400844349,2015,3,2015-09-27,11,Phoenix Mercury,FALSE,8,home +400844306,2015,3,2015-09-27,9,New York Liberty,FALSE,5,away +400844306,2015,3,2015-09-27,5,Indiana Fever,TRUE,9,home +400844348,2015,3,2015-09-24,11,Phoenix Mercury,FALSE,8,away +400844348,2015,3,2015-09-24,8,Minnesota Lynx,TRUE,11,home +400844305,2015,3,2015-09-23,5,Indiana Fever,FALSE,9,away +400844305,2015,3,2015-09-23,9,New York Liberty,TRUE,5,home +400838812,2015,3,2015-09-22,6,Los Angeles Sparks,FALSE,8,away +400838812,2015,3,2015-09-22,8,Minnesota Lynx,TRUE,6,home +400839632,2015,3,2015-09-22,16,Washington Mystics,FALSE,9,away +400839632,2015,3,2015-09-22,9,New York Liberty,TRUE,16,home +400839635,2015,3,2015-09-21,5,Indiana Fever,TRUE,19,away +400839635,2015,3,2015-09-21,19,Chicago Sky,FALSE,5,home +400838811,2015,3,2015-09-20,8,Minnesota Lynx,FALSE,6,away +400838811,2015,3,2015-09-20,6,Los Angeles Sparks,TRUE,8,home +400839631,2015,3,2015-09-20,9,New York Liberty,TRUE,16,away +400839631,2015,3,2015-09-20,16,Washington Mystics,FALSE,9,home +400839119,2015,3,2015-09-19,11,Phoenix Mercury,TRUE,3,away +400839119,2015,3,2015-09-19,3,Tulsa Shock,FALSE,11,home +400839634,2015,3,2015-09-19,19,Chicago Sky,FALSE,5,away +400839634,2015,3,2015-09-19,5,Indiana Fever,TRUE,19,home +400838810,2015,3,2015-09-18,6,Los Angeles Sparks,FALSE,8,away +400838810,2015,3,2015-09-18,8,Minnesota Lynx,TRUE,6,home +400839630,2015,3,2015-09-18,16,Washington Mystics,TRUE,9,away +400839630,2015,3,2015-09-18,9,New York Liberty,FALSE,16,home +400839118,2015,3,2015-09-17,3,Tulsa Shock,FALSE,11,away +400839118,2015,3,2015-09-17,11,Phoenix Mercury,TRUE,3,home +400839633,2015,3,2015-09-17,5,Indiana Fever,FALSE,19,away +400839633,2015,3,2015-09-17,19,Chicago Sky,TRUE,5,home +400610839,2015,2,2015-09-13,17,San Antonio Stars,TRUE,14,away +400610839,2015,2,2015-09-13,14,Seattle Storm,FALSE,17,home +400610838,2015,2,2015-09-13,9,New York Liberty,FALSE,5,away +400610838,2015,2,2015-09-13,5,Indiana Fever,TRUE,9,home +400610837,2015,2,2015-09-13,11,Phoenix Mercury,FALSE,3,away +400610837,2015,2,2015-09-13,3,Tulsa Shock,TRUE,11,home +400610836,2015,2,2015-09-13,20,Atlanta Dream,TRUE,16,away +400610836,2015,2,2015-09-13,16,Washington Mystics,FALSE,20,home +400610835,2015,2,2015-09-13,19,Chicago Sky,FALSE,18,away +400610835,2015,2,2015-09-13,18,Connecticut Sun,TRUE,19,home +400610833,2015,2,2015-09-11,6,Los Angeles Sparks,FALSE,11,away +400610833,2015,2,2015-09-11,11,Phoenix Mercury,TRUE,6,home +400610834,2015,2,2015-09-11,8,Minnesota Lynx,FALSE,14,away +400610834,2015,2,2015-09-11,14,Seattle Storm,TRUE,8,home +400610832,2015,2,2015-09-11,3,Tulsa Shock,FALSE,19,away +400610832,2015,2,2015-09-11,19,Chicago Sky,TRUE,3,home +400610830,2015,2,2015-09-11,16,Washington Mystics,TRUE,9,away +400610830,2015,2,2015-09-11,9,New York Liberty,FALSE,16,home +400610831,2015,2,2015-09-11,5,Indiana Fever,TRUE,20,away +400610831,2015,2,2015-09-11,20,Atlanta Dream,FALSE,5,home +400610828,2015,2,2015-09-09,18,Connecticut Sun,FALSE,9,away +400610828,2015,2,2015-09-09,9,New York Liberty,TRUE,18,home +400610829,2015,2,2015-09-09,6,Los Angeles Sparks,FALSE,20,away +400610829,2015,2,2015-09-09,20,Atlanta Dream,TRUE,6,home +400610826,2015,2,2015-09-08,14,Seattle Storm,FALSE,8,away +400610826,2015,2,2015-09-08,8,Minnesota Lynx,TRUE,14,home +400610827,2015,2,2015-09-08,17,San Antonio Stars,FALSE,3,away +400610827,2015,2,2015-09-08,3,Tulsa Shock,TRUE,17,home +400610825,2015,2,2015-09-08,5,Indiana Fever,FALSE,16,away +400610825,2015,2,2015-09-08,16,Washington Mystics,TRUE,5,home +400610824,2015,2,2015-09-06,9,New York Liberty,TRUE,8,away +400610824,2015,2,2015-09-06,8,Minnesota Lynx,FALSE,9,home +400610823,2015,2,2015-09-06,14,Seattle Storm,FALSE,19,away +400610823,2015,2,2015-09-06,19,Chicago Sky,TRUE,14,home +400610822,2015,2,2015-09-06,3,Tulsa Shock,FALSE,6,away +400610822,2015,2,2015-09-06,6,Los Angeles Sparks,TRUE,3,home +400610821,2015,2,2015-09-06,16,Washington Mystics,FALSE,20,away +400610821,2015,2,2015-09-06,20,Atlanta Dream,TRUE,16,home +400610820,2015,2,2015-09-05,11,Phoenix Mercury,TRUE,17,away +400610820,2015,2,2015-09-05,17,San Antonio Stars,FALSE,11,home +400610818,2015,2,2015-09-04,5,Indiana Fever,FALSE,8,away +400610818,2015,2,2015-09-04,8,Minnesota Lynx,TRUE,5,home +400610819,2015,2,2015-09-04,18,Connecticut Sun,TRUE,17,away +400610819,2015,2,2015-09-04,17,San Antonio Stars,FALSE,18,home +400610817,2015,2,2015-09-03,16,Washington Mystics,FALSE,6,away +400610817,2015,2,2015-09-03,6,Los Angeles Sparks,TRUE,16,home +400610816,2015,2,2015-09-03,3,Tulsa Shock,TRUE,14,away +400610816,2015,2,2015-09-03,14,Seattle Storm,FALSE,3,home +400610815,2015,2,2015-09-03,19,Chicago Sky,TRUE,9,away +400610815,2015,2,2015-09-03,9,New York Liberty,FALSE,19,home +400610814,2015,2,2015-09-02,16,Washington Mystics,FALSE,11,away +400610814,2015,2,2015-09-02,11,Phoenix Mercury,TRUE,16,home +400610812,2015,2,2015-09-01,20,Atlanta Dream,FALSE,9,away +400610812,2015,2,2015-09-01,9,New York Liberty,TRUE,20,home +400610813,2015,2,2015-09-01,18,Connecticut Sun,FALSE,5,away +400610813,2015,2,2015-09-01,5,Indiana Fever,TRUE,18,home +400610811,2015,2,2015-08-30,16,Washington Mystics,FALSE,14,away +400610811,2015,2,2015-08-30,14,Seattle Storm,TRUE,16,home +400610808,2015,2,2015-08-30,17,San Antonio Stars,FALSE,6,away +400610808,2015,2,2015-08-30,6,Los Angeles Sparks,TRUE,17,home +400610809,2015,2,2015-08-30,18,Connecticut Sun,TRUE,19,away +400610809,2015,2,2015-08-30,19,Chicago Sky,FALSE,18,home +400610810,2015,2,2015-08-30,11,Phoenix Mercury,FALSE,8,away +400610810,2015,2,2015-08-30,8,Minnesota Lynx,TRUE,11,home +400610807,2015,2,2015-08-30,5,Indiana Fever,FALSE,3,away +400610807,2015,2,2015-08-30,3,Tulsa Shock,TRUE,5,home +400610805,2015,2,2015-08-29,9,New York Liberty,TRUE,18,away +400610805,2015,2,2015-08-29,18,Connecticut Sun,FALSE,9,home +400610806,2015,2,2015-08-29,19,Chicago Sky,TRUE,20,away +400610806,2015,2,2015-08-29,20,Atlanta Dream,FALSE,19,home +400610804,2015,2,2015-08-28,17,San Antonio Stars,FALSE,14,away +400610804,2015,2,2015-08-28,14,Seattle Storm,TRUE,17,home +400610803,2015,2,2015-08-28,6,Los Angeles Sparks,FALSE,3,away +400610803,2015,2,2015-08-28,3,Tulsa Shock,TRUE,6,home +400610802,2015,2,2015-08-28,8,Minnesota Lynx,FALSE,9,away +400610802,2015,2,2015-08-28,9,New York Liberty,TRUE,8,home +400610800,2015,2,2015-08-28,11,Phoenix Mercury,FALSE,16,away +400610800,2015,2,2015-08-28,16,Washington Mystics,TRUE,11,home +400610801,2015,2,2015-08-28,20,Atlanta Dream,TRUE,5,away +400610801,2015,2,2015-08-28,5,Indiana Fever,FALSE,20,home +400610799,2015,2,2015-08-27,11,Phoenix Mercury,TRUE,18,away +400610799,2015,2,2015-08-27,18,Connecticut Sun,FALSE,11,home +400610798,2015,2,2015-08-26,6,Los Angeles Sparks,TRUE,5,away +400610798,2015,2,2015-08-26,5,Indiana Fever,FALSE,6,home +400610797,2015,2,2015-08-25,18,Connecticut Sun,FALSE,20,away +400610797,2015,2,2015-08-25,20,Atlanta Dream,TRUE,18,home +400610794,2015,2,2015-08-23,20,Atlanta Dream,TRUE,18,away +400610794,2015,2,2015-08-23,18,Connecticut Sun,FALSE,20,home +400610795,2015,2,2015-08-23,9,New York Liberty,FALSE,5,away +400610795,2015,2,2015-08-23,5,Indiana Fever,TRUE,9,home +400610796,2015,2,2015-08-23,8,Minnesota Lynx,FALSE,11,away +400610796,2015,2,2015-08-23,11,Phoenix Mercury,TRUE,8,home +400610793,2015,2,2015-08-23,6,Los Angeles Sparks,TRUE,17,away +400610793,2015,2,2015-08-23,17,San Antonio Stars,FALSE,6,home +400610792,2015,2,2015-08-23,19,Chicago Sky,TRUE,16,away +400610792,2015,2,2015-08-23,16,Washington Mystics,FALSE,19,home +400610790,2015,2,2015-08-21,6,Los Angeles Sparks,TRUE,11,away +400610790,2015,2,2015-08-21,11,Phoenix Mercury,FALSE,6,home +400610791,2015,2,2015-08-21,5,Indiana Fever,TRUE,14,away +400610791,2015,2,2015-08-21,14,Seattle Storm,FALSE,5,home +400610789,2015,2,2015-08-21,16,Washington Mystics,FALSE,19,away +400610789,2015,2,2015-08-21,19,Chicago Sky,TRUE,16,home +400610787,2015,2,2015-08-21,18,Connecticut Sun,FALSE,3,away +400610787,2015,2,2015-08-21,3,Tulsa Shock,TRUE,18,home +400610788,2015,2,2015-08-21,8,Minnesota Lynx,TRUE,17,away +400610788,2015,2,2015-08-21,17,San Antonio Stars,FALSE,8,home +400610786,2015,2,2015-08-21,20,Atlanta Dream,FALSE,9,away +400610786,2015,2,2015-08-21,9,New York Liberty,TRUE,20,home +400610784,2015,2,2015-08-19,16,Washington Mystics,TRUE,8,away +400610784,2015,2,2015-08-19,8,Minnesota Lynx,FALSE,16,home +400610785,2015,2,2015-08-19,9,New York Liberty,TRUE,17,away +400610785,2015,2,2015-08-19,17,San Antonio Stars,FALSE,9,home +400610783,2015,2,2015-08-18,5,Indiana Fever,TRUE,6,away +400610783,2015,2,2015-08-18,6,Los Angeles Sparks,FALSE,5,home +400610782,2015,2,2015-08-18,11,Phoenix Mercury,FALSE,3,away +400610782,2015,2,2015-08-18,3,Tulsa Shock,TRUE,11,home +400610781,2015,2,2015-08-16,17,San Antonio Stars,FALSE,14,away +400610781,2015,2,2015-08-16,14,Seattle Storm,TRUE,17,home +400610780,2015,2,2015-08-16,5,Indiana Fever,TRUE,11,away +400610780,2015,2,2015-08-16,11,Phoenix Mercury,FALSE,5,home +400610779,2015,2,2015-08-16,19,Chicago Sky,FALSE,6,away +400610779,2015,2,2015-08-16,6,Los Angeles Sparks,TRUE,19,home +400610778,2015,2,2015-08-16,8,Minnesota Lynx,FALSE,16,away +400610778,2015,2,2015-08-16,16,Washington Mystics,TRUE,8,home +400610777,2015,2,2015-08-16,18,Connecticut Sun,FALSE,20,away +400610777,2015,2,2015-08-16,20,Atlanta Dream,TRUE,18,home +400610776,2015,2,2015-08-15,3,Tulsa Shock,TRUE,9,away +400610776,2015,2,2015-08-15,9,New York Liberty,FALSE,3,home +400610775,2015,2,2015-08-14,19,Chicago Sky,TRUE,14,away +400610775,2015,2,2015-08-14,14,Seattle Storm,FALSE,19,home +400610774,2015,2,2015-08-14,8,Minnesota Lynx,TRUE,20,away +400610774,2015,2,2015-08-14,20,Atlanta Dream,FALSE,8,home +400610773,2015,2,2015-08-14,9,New York Liberty,TRUE,18,away +400610773,2015,2,2015-08-14,18,Connecticut Sun,FALSE,9,home +400610772,2015,2,2015-08-12,14,Seattle Storm,FALSE,11,away +400610772,2015,2,2015-08-12,11,Phoenix Mercury,TRUE,14,home +400610771,2015,2,2015-08-12,3,Tulsa Shock,FALSE,18,away +400610771,2015,2,2015-08-12,18,Connecticut Sun,TRUE,3,home +400610770,2015,2,2015-08-11,14,Seattle Storm,TRUE,6,away +400610770,2015,2,2015-08-11,6,Los Angeles Sparks,FALSE,14,home +400610769,2015,2,2015-08-11,17,San Antonio Stars,FALSE,8,away +400610769,2015,2,2015-08-11,8,Minnesota Lynx,TRUE,17,home +400610767,2015,2,2015-08-11,19,Chicago Sky,FALSE,9,away +400610767,2015,2,2015-08-11,9,New York Liberty,TRUE,19,home +400610768,2015,2,2015-08-11,5,Indiana Fever,TRUE,16,away +400610768,2015,2,2015-08-11,16,Washington Mystics,FALSE,5,home +400610766,2015,2,2015-08-09,6,Los Angeles Sparks,FALSE,8,away +400610766,2015,2,2015-08-09,8,Minnesota Lynx,TRUE,6,home +400610765,2015,2,2015-08-09,20,Atlanta Dream,TRUE,3,away +400610765,2015,2,2015-08-09,3,Tulsa Shock,FALSE,20,home +400610764,2015,2,2015-08-09,18,Connecticut Sun,FALSE,16,away +400610764,2015,2,2015-08-09,16,Washington Mystics,TRUE,18,home +400610763,2015,2,2015-08-09,11,Phoenix Mercury,FALSE,19,away +400610763,2015,2,2015-08-09,19,Chicago Sky,TRUE,11,home +400610762,2015,2,2015-08-08,14,Seattle Storm,FALSE,17,away +400610762,2015,2,2015-08-08,17,San Antonio Stars,TRUE,14,home +400610761,2015,2,2015-08-07,8,Minnesota Lynx,FALSE,11,away +400610761,2015,2,2015-08-07,11,Phoenix Mercury,TRUE,8,home +400610760,2015,2,2015-08-07,9,New York Liberty,TRUE,19,away +400610760,2015,2,2015-08-07,19,Chicago Sky,FALSE,9,home +400610758,2015,2,2015-08-07,16,Washington Mystics,FALSE,18,away +400610758,2015,2,2015-08-07,18,Connecticut Sun,TRUE,16,home +400610759,2015,2,2015-08-07,20,Atlanta Dream,FALSE,5,away +400610759,2015,2,2015-08-07,5,Indiana Fever,TRUE,20,home +400610757,2015,2,2015-08-06,3,Tulsa Shock,FALSE,6,away +400610757,2015,2,2015-08-06,6,Los Angeles Sparks,TRUE,3,home +400610756,2015,2,2015-08-05,17,San Antonio Stars,FALSE,16,away +400610756,2015,2,2015-08-05,16,Washington Mystics,TRUE,17,home +400610754,2015,2,2015-08-04,3,Tulsa Shock,FALSE,11,away +400610754,2015,2,2015-08-04,11,Phoenix Mercury,TRUE,3,home +400610755,2015,2,2015-08-04,8,Minnesota Lynx,FALSE,6,away +400610755,2015,2,2015-08-04,6,Los Angeles Sparks,TRUE,8,home +400610753,2015,2,2015-08-04,5,Indiana Fever,FALSE,19,away +400610753,2015,2,2015-08-04,19,Chicago Sky,TRUE,5,home +400610752,2015,2,2015-08-04,17,San Antonio Stars,FALSE,18,away +400610752,2015,2,2015-08-04,18,Connecticut Sun,TRUE,17,home +400610750,2015,2,2015-08-02,18,Connecticut Sun,FALSE,5,away +400610750,2015,2,2015-08-02,5,Indiana Fever,TRUE,18,home +400610751,2015,2,2015-08-02,16,Washington Mystics,FALSE,19,away +400610751,2015,2,2015-08-02,19,Chicago Sky,TRUE,16,home +400610749,2015,2,2015-08-02,6,Los Angeles Sparks,TRUE,17,away +400610749,2015,2,2015-08-02,17,San Antonio Stars,FALSE,6,home +400610747,2015,2,2015-08-02,14,Seattle Storm,FALSE,9,away +400610747,2015,2,2015-08-02,9,New York Liberty,TRUE,14,home +400610748,2015,2,2015-08-02,11,Phoenix Mercury,TRUE,20,away +400610748,2015,2,2015-08-02,20,Atlanta Dream,FALSE,11,home +400610746,2015,2,2015-08-01,8,Minnesota Lynx,TRUE,3,away +400610746,2015,2,2015-08-01,3,Tulsa Shock,FALSE,8,home +400610745,2015,2,2015-07-31,6,Los Angeles Sparks,TRUE,19,away +400610745,2015,2,2015-07-31,19,Chicago Sky,FALSE,6,home +400610743,2015,2,2015-07-31,20,Atlanta Dream,FALSE,8,away +400610743,2015,2,2015-07-31,8,Minnesota Lynx,TRUE,20,home +400610744,2015,2,2015-07-31,16,Washington Mystics,TRUE,17,away +400610744,2015,2,2015-07-31,17,San Antonio Stars,FALSE,16,home +400610742,2015,2,2015-07-31,14,Seattle Storm,FALSE,18,away +400610742,2015,2,2015-07-31,18,Connecticut Sun,TRUE,14,home +400610741,2015,2,2015-07-30,11,Phoenix Mercury,TRUE,3,away +400610741,2015,2,2015-07-30,3,Tulsa Shock,FALSE,11,home +400610739,2015,2,2015-07-29,6,Los Angeles Sparks,FALSE,8,away +400610739,2015,2,2015-07-29,8,Minnesota Lynx,TRUE,6,home +400610740,2015,2,2015-07-29,20,Atlanta Dream,FALSE,17,away +400610740,2015,2,2015-07-29,17,San Antonio Stars,TRUE,20,home +400610738,2015,2,2015-07-29,9,New York Liberty,FALSE,5,away +400610738,2015,2,2015-07-29,5,Indiana Fever,TRUE,9,home +400610737,2015,2,2015-07-29,14,Seattle Storm,FALSE,16,away +400610737,2015,2,2015-07-29,16,Washington Mystics,TRUE,14,home +400610736,2015,2,2015-07-28,19,Chicago Sky,FALSE,11,away +400610736,2015,2,2015-07-28,11,Phoenix Mercury,TRUE,19,home +400821141,2015,2,2015-07-28,5,Indiana Fever,TRUE,18,away +400821141,2015,2,2015-07-28,18,Connecticut Sun,FALSE,5,home +400765572,2015,2,2015-07-25,99,WEST,TRUE,98,away +400765572,2015,2,2015-07-25,98,EAST,FALSE,99,home +400610735,2015,2,2015-07-22,9,New York Liberty,TRUE,6,away +400610735,2015,2,2015-07-22,6,Los Angeles Sparks,FALSE,9,home +400610734,2015,2,2015-07-22,18,Connecticut Sun,TRUE,8,away +400610734,2015,2,2015-07-22,8,Minnesota Lynx,FALSE,18,home +400610732,2015,2,2015-07-21,11,Phoenix Mercury,FALSE,6,away +400610732,2015,2,2015-07-21,6,Los Angeles Sparks,TRUE,11,home +400610733,2015,2,2015-07-21,9,New York Liberty,TRUE,14,away +400610733,2015,2,2015-07-21,14,Seattle Storm,FALSE,9,home +400610731,2015,2,2015-07-21,20,Atlanta Dream,FALSE,19,away +400610731,2015,2,2015-07-21,19,Chicago Sky,TRUE,20,home +400610729,2015,2,2015-07-21,16,Washington Mystics,TRUE,3,away +400610729,2015,2,2015-07-21,3,Tulsa Shock,FALSE,16,home +400610730,2015,2,2015-07-21,5,Indiana Fever,FALSE,17,away +400610730,2015,2,2015-07-21,17,San Antonio Stars,TRUE,5,home +400610728,2015,2,2015-07-19,18,Connecticut Sun,FALSE,16,away +400610728,2015,2,2015-07-19,16,Washington Mystics,TRUE,18,home +400610727,2015,2,2015-07-19,17,San Antonio Stars,FALSE,19,away +400610727,2015,2,2015-07-19,19,Chicago Sky,TRUE,17,home +400610726,2015,2,2015-07-19,8,Minnesota Lynx,TRUE,3,away +400610726,2015,2,2015-07-19,3,Tulsa Shock,FALSE,8,home +400610725,2015,2,2015-07-18,9,New York Liberty,TRUE,11,away +400610725,2015,2,2015-07-18,11,Phoenix Mercury,FALSE,9,home +400610724,2015,2,2015-07-18,20,Atlanta Dream,FALSE,14,away +400610724,2015,2,2015-07-18,14,Seattle Storm,TRUE,20,home +400610721,2015,2,2015-07-17,19,Chicago Sky,FALSE,8,away +400610721,2015,2,2015-07-17,8,Minnesota Lynx,TRUE,19,home +400610722,2015,2,2015-07-17,3,Tulsa Shock,FALSE,17,away +400610722,2015,2,2015-07-17,17,San Antonio Stars,TRUE,3,home +400610720,2015,2,2015-07-17,5,Indiana Fever,FALSE,16,away +400610720,2015,2,2015-07-17,16,Washington Mystics,TRUE,5,home +400610719,2015,2,2015-07-16,18,Connecticut Sun,FALSE,9,away +400610719,2015,2,2015-07-16,9,New York Liberty,TRUE,18,home +400610718,2015,2,2015-07-16,20,Atlanta Dream,TRUE,6,away +400610718,2015,2,2015-07-16,6,Los Angeles Sparks,FALSE,20,home +400610717,2015,2,2015-07-15,3,Tulsa Shock,FALSE,5,away +400610717,2015,2,2015-07-15,5,Indiana Fever,TRUE,3,home +400610716,2015,2,2015-07-15,6,Los Angeles Sparks,FALSE,14,away +400610716,2015,2,2015-07-15,14,Seattle Storm,TRUE,6,home +400610715,2015,2,2015-07-15,16,Washington Mystics,FALSE,19,away +400610715,2015,2,2015-07-15,19,Chicago Sky,TRUE,16,home +400610714,2015,2,2015-07-15,17,San Antonio Stars,FALSE,9,away +400610714,2015,2,2015-07-15,9,New York Liberty,TRUE,17,home +400610713,2015,2,2015-07-14,20,Atlanta Dream,FALSE,11,away +400610713,2015,2,2015-07-14,11,Phoenix Mercury,TRUE,20,home +400610712,2015,2,2015-07-14,8,Minnesota Lynx,TRUE,18,away +400610712,2015,2,2015-07-14,18,Connecticut Sun,FALSE,8,home +400610711,2015,2,2015-07-12,17,San Antonio Stars,FALSE,8,away +400610711,2015,2,2015-07-12,8,Minnesota Lynx,TRUE,17,home +400610709,2015,2,2015-07-12,18,Connecticut Sun,FALSE,19,away +400610709,2015,2,2015-07-12,19,Chicago Sky,TRUE,18,home +400610710,2015,2,2015-07-12,14,Seattle Storm,FALSE,11,away +400610710,2015,2,2015-07-12,11,Phoenix Mercury,TRUE,14,home +400610708,2015,2,2015-07-12,9,New York Liberty,FALSE,20,away +400610708,2015,2,2015-07-12,20,Atlanta Dream,TRUE,9,home +400610707,2015,2,2015-07-11,6,Los Angeles Sparks,FALSE,3,away +400610707,2015,2,2015-07-11,3,Tulsa Shock,TRUE,6,home +400610706,2015,2,2015-07-10,11,Phoenix Mercury,TRUE,14,away +400610706,2015,2,2015-07-10,14,Seattle Storm,FALSE,11,home +400610705,2015,2,2015-07-10,8,Minnesota Lynx,FALSE,19,away +400610705,2015,2,2015-07-10,19,Chicago Sky,TRUE,8,home +400610704,2015,2,2015-07-10,17,San Antonio Stars,FALSE,5,away +400610704,2015,2,2015-07-10,5,Indiana Fever,TRUE,17,home +400610703,2015,2,2015-07-09,9,New York Liberty,TRUE,16,away +400610703,2015,2,2015-07-09,16,Washington Mystics,FALSE,9,home +400610702,2015,2,2015-07-08,6,Los Angeles Sparks,FALSE,17,away +400610702,2015,2,2015-07-08,17,San Antonio Stars,TRUE,6,home +400610701,2015,2,2015-07-08,14,Seattle Storm,FALSE,5,away +400610701,2015,2,2015-07-08,5,Indiana Fever,TRUE,14,home +400610700,2015,2,2015-07-07,3,Tulsa Shock,TRUE,20,away +400610700,2015,2,2015-07-07,20,Atlanta Dream,FALSE,3,home +400610699,2015,2,2015-07-05,11,Phoenix Mercury,TRUE,6,away +400610699,2015,2,2015-07-05,6,Los Angeles Sparks,FALSE,11,home +400610698,2015,2,2015-07-05,14,Seattle Storm,FALSE,20,away +400610698,2015,2,2015-07-05,20,Atlanta Dream,TRUE,14,home +400610697,2015,2,2015-07-03,3,Tulsa Shock,FALSE,6,away +400610697,2015,2,2015-07-03,6,Los Angeles Sparks,TRUE,3,home +400610696,2015,2,2015-07-03,14,Seattle Storm,FALSE,8,away +400610696,2015,2,2015-07-03,8,Minnesota Lynx,TRUE,14,home +400610695,2015,2,2015-07-02,17,San Antonio Stars,FALSE,6,away +400610695,2015,2,2015-07-02,6,Los Angeles Sparks,TRUE,17,home +400610694,2015,2,2015-07-02,3,Tulsa Shock,FALSE,11,away +400610694,2015,2,2015-07-02,11,Phoenix Mercury,TRUE,3,home +400610692,2015,2,2015-07-02,19,Chicago Sky,TRUE,18,away +400610692,2015,2,2015-07-02,18,Connecticut Sun,FALSE,19,home +400610693,2015,2,2015-07-02,16,Washington Mystics,FALSE,5,away +400610693,2015,2,2015-07-02,5,Indiana Fever,TRUE,16,home +400610690,2015,2,2015-06-30,17,San Antonio Stars,FALSE,11,away +400610690,2015,2,2015-06-30,11,Phoenix Mercury,TRUE,17,home +400610691,2015,2,2015-06-30,3,Tulsa Shock,FALSE,14,away +400610691,2015,2,2015-06-30,14,Seattle Storm,TRUE,3,home +400610689,2015,2,2015-06-30,9,New York Liberty,TRUE,19,away +400610689,2015,2,2015-06-30,19,Chicago Sky,FALSE,9,home +400610688,2015,2,2015-06-30,5,Indiana Fever,TRUE,18,away +400610688,2015,2,2015-06-30,18,Connecticut Sun,FALSE,5,home +400610687,2015,2,2015-06-28,14,Seattle Storm,FALSE,3,away +400610687,2015,2,2015-06-28,3,Tulsa Shock,TRUE,14,home +400610686,2015,2,2015-06-28,19,Chicago Sky,FALSE,16,away +400610686,2015,2,2015-06-28,16,Washington Mystics,TRUE,19,home +400610685,2015,2,2015-06-28,6,Los Angeles Sparks,FALSE,9,away +400610685,2015,2,2015-06-28,9,New York Liberty,TRUE,6,home +400610683,2015,2,2015-06-27,11,Phoenix Mercury,FALSE,8,away +400610683,2015,2,2015-06-27,8,Minnesota Lynx,TRUE,11,home +400610684,2015,2,2015-06-27,14,Seattle Storm,FALSE,17,away +400610684,2015,2,2015-06-27,17,San Antonio Stars,TRUE,14,home +400610682,2015,2,2015-06-26,9,New York Liberty,FALSE,3,away +400610682,2015,2,2015-06-26,3,Tulsa Shock,TRUE,9,home +400610681,2015,2,2015-06-26,16,Washington Mystics,FALSE,20,away +400610681,2015,2,2015-06-26,20,Atlanta Dream,TRUE,16,home +400610679,2015,2,2015-06-26,6,Los Angeles Sparks,FALSE,18,away +400610679,2015,2,2015-06-26,18,Connecticut Sun,TRUE,6,home +400610680,2015,2,2015-06-26,19,Chicago Sky,TRUE,5,away +400610680,2015,2,2015-06-26,5,Indiana Fever,FALSE,19,home +400610678,2015,2,2015-06-25,8,Minnesota Lynx,TRUE,14,away +400610678,2015,2,2015-06-25,14,Seattle Storm,FALSE,8,home +400610677,2015,2,2015-06-25,11,Phoenix Mercury,FALSE,17,away +400610677,2015,2,2015-06-25,17,San Antonio Stars,TRUE,11,home +400610676,2015,2,2015-06-24,20,Atlanta Dream,FALSE,19,away +400610676,2015,2,2015-06-24,19,Chicago Sky,TRUE,20,home +400610675,2015,2,2015-06-23,6,Los Angeles Sparks,FALSE,16,away +400610675,2015,2,2015-06-23,16,Washington Mystics,TRUE,6,home +400610674,2015,2,2015-06-21,11,Phoenix Mercury,TRUE,14,away +400610674,2015,2,2015-06-21,14,Seattle Storm,FALSE,11,home +400610673,2015,2,2015-06-21,3,Tulsa Shock,TRUE,8,away +400610673,2015,2,2015-06-21,8,Minnesota Lynx,FALSE,3,home +400610672,2015,2,2015-06-21,18,Connecticut Sun,TRUE,6,away +400610672,2015,2,2015-06-21,6,Los Angeles Sparks,FALSE,18,home +400610671,2015,2,2015-06-21,9,New York Liberty,TRUE,20,away +400610671,2015,2,2015-06-21,20,Atlanta Dream,FALSE,9,home +400610670,2015,2,2015-06-20,19,Chicago Sky,TRUE,17,away +400610670,2015,2,2015-06-20,17,San Antonio Stars,FALSE,19,home +400610669,2015,2,2015-06-20,16,Washington Mystics,TRUE,5,away +400610669,2015,2,2015-06-20,5,Indiana Fever,FALSE,16,home +400610668,2015,2,2015-06-19,18,Connecticut Sun,TRUE,11,away +400610668,2015,2,2015-06-19,11,Phoenix Mercury,FALSE,18,home +400610667,2015,2,2015-06-19,8,Minnesota Lynx,TRUE,17,away +400610667,2015,2,2015-06-19,17,San Antonio Stars,FALSE,8,home +400610665,2015,2,2015-06-19,5,Indiana Fever,TRUE,9,away +400610665,2015,2,2015-06-19,9,New York Liberty,FALSE,5,home +400610666,2015,2,2015-06-19,19,Chicago Sky,FALSE,20,away +400610666,2015,2,2015-06-19,20,Atlanta Dream,TRUE,19,home +400610664,2015,2,2015-06-19,3,Tulsa Shock,TRUE,16,away +400610664,2015,2,2015-06-19,16,Washington Mystics,FALSE,3,home +400610663,2015,2,2015-06-16,8,Minnesota Lynx,TRUE,6,away +400610663,2015,2,2015-06-16,6,Los Angeles Sparks,FALSE,8,home +400610662,2015,2,2015-06-16,18,Connecticut Sun,TRUE,14,away +400610662,2015,2,2015-06-16,14,Seattle Storm,FALSE,18,home +400610661,2015,2,2015-06-16,17,San Antonio Stars,FALSE,3,away +400610661,2015,2,2015-06-16,3,Tulsa Shock,TRUE,17,home +400610660,2015,2,2015-06-16,5,Indiana Fever,TRUE,20,away +400610660,2015,2,2015-06-16,20,Atlanta Dream,FALSE,5,home +400610659,2015,2,2015-06-14,16,Washington Mystics,TRUE,9,away +400610659,2015,2,2015-06-14,9,New York Liberty,FALSE,16,home +400610658,2015,2,2015-06-14,14,Seattle Storm,TRUE,6,away +400610658,2015,2,2015-06-14,6,Los Angeles Sparks,FALSE,14,home +400610657,2015,2,2015-06-14,3,Tulsa Shock,TRUE,17,away +400610657,2015,2,2015-06-14,17,San Antonio Stars,FALSE,3,home +400610655,2015,2,2015-06-14,20,Atlanta Dream,FALSE,18,away +400610655,2015,2,2015-06-14,18,Connecticut Sun,TRUE,20,home +400610656,2015,2,2015-06-14,8,Minnesota Lynx,FALSE,11,away +400610656,2015,2,2015-06-14,11,Phoenix Mercury,TRUE,8,home +400610654,2015,2,2015-06-14,19,Chicago Sky,TRUE,5,away +400610654,2015,2,2015-06-14,5,Indiana Fever,FALSE,19,home +400610652,2015,2,2015-06-12,20,Atlanta Dream,TRUE,16,away +400610652,2015,2,2015-06-12,16,Washington Mystics,FALSE,20,home +400610653,2015,2,2015-06-12,11,Phoenix Mercury,FALSE,5,away +400610653,2015,2,2015-06-12,5,Indiana Fever,TRUE,11,home +400610651,2015,2,2015-06-11,14,Seattle Storm,FALSE,8,away +400610651,2015,2,2015-06-11,8,Minnesota Lynx,TRUE,14,home +400610648,2015,2,2015-06-11,19,Chicago Sky,FALSE,18,away +400610648,2015,2,2015-06-11,18,Connecticut Sun,TRUE,19,home +400610649,2015,2,2015-06-11,11,Phoenix Mercury,FALSE,9,away +400610649,2015,2,2015-06-11,9,New York Liberty,TRUE,11,home +400610650,2015,2,2015-06-11,17,San Antonio Stars,FALSE,20,away +400610650,2015,2,2015-06-11,20,Atlanta Dream,TRUE,17,home +400610647,2015,2,2015-06-09,14,Seattle Storm,FALSE,3,away +400610647,2015,2,2015-06-09,3,Tulsa Shock,TRUE,14,home +400610646,2015,2,2015-06-09,5,Indiana Fever,FALSE,9,away +400610646,2015,2,2015-06-09,9,New York Liberty,TRUE,5,home +400610645,2015,2,2015-06-07,18,Connecticut Sun,TRUE,20,away +400610645,2015,2,2015-06-07,20,Atlanta Dream,FALSE,18,home +400610644,2015,2,2015-06-06,6,Los Angeles Sparks,FALSE,14,away +400610644,2015,2,2015-06-06,14,Seattle Storm,TRUE,6,home +400610643,2015,2,2015-06-06,19,Chicago Sky,FALSE,3,away +400610643,2015,2,2015-06-06,3,Tulsa Shock,TRUE,19,home +400610641,2015,2,2015-06-06,9,New York Liberty,FALSE,16,away +400610641,2015,2,2015-06-06,16,Washington Mystics,TRUE,9,home +400610642,2015,2,2015-06-06,8,Minnesota Lynx,TRUE,5,away +400610642,2015,2,2015-06-06,5,Indiana Fever,FALSE,8,home +400610640,2015,2,2015-06-05,17,San Antonio Stars,FALSE,11,away +400610640,2015,2,2015-06-05,11,Phoenix Mercury,TRUE,17,home +400610639,2015,2,2015-06-05,5,Indiana Fever,FALSE,19,away +400610639,2015,2,2015-06-05,19,Chicago Sky,TRUE,5,home +400610638,2015,2,2015-06-05,3,Tulsa Shock,FALSE,8,away +400610638,2015,2,2015-06-05,8,Minnesota Lynx,TRUE,3,home +400610637,2015,2,2015-06-05,20,Atlanta Dream,FALSE,9,away +400610637,2015,2,2015-06-05,9,New York Liberty,TRUE,20,home +400610636,2015,2,2015-06-05,16,Washington Mystics,TRUE,18,away +400610636,2015,2,2015-06-05,18,Connecticut Sun,FALSE,16,home +400920464,2016,3,2016-10-20,6,Los Angeles Sparks,TRUE,8,away +400920464,2016,3,2016-10-20,8,Minnesota Lynx,FALSE,6,home +400920463,2016,3,2016-10-16,8,Minnesota Lynx,TRUE,6,away +400920463,2016,3,2016-10-16,6,Los Angeles Sparks,FALSE,8,home +400920462,2016,3,2016-10-14,8,Minnesota Lynx,FALSE,6,away +400920462,2016,3,2016-10-14,6,Los Angeles Sparks,TRUE,8,home +400920461,2016,3,2016-10-11,6,Los Angeles Sparks,FALSE,8,away +400920461,2016,3,2016-10-11,8,Minnesota Lynx,TRUE,6,home +400920400,2016,3,2016-10-09,6,Los Angeles Sparks,TRUE,8,away +400920400,2016,3,2016-10-09,8,Minnesota Lynx,FALSE,6,home +400910460,2016,3,2016-10-04,6,Los Angeles Sparks,TRUE,19,away +400910460,2016,3,2016-10-04,19,Chicago Sky,FALSE,6,home +400910454,2016,3,2016-10-02,8,Minnesota Lynx,TRUE,11,away +400910454,2016,3,2016-10-02,11,Phoenix Mercury,FALSE,8,home +400910459,2016,3,2016-10-02,6,Los Angeles Sparks,FALSE,19,away +400910459,2016,3,2016-10-02,19,Chicago Sky,TRUE,6,home +400910458,2016,3,2016-09-30,19,Chicago Sky,FALSE,6,away +400910458,2016,3,2016-09-30,6,Los Angeles Sparks,TRUE,19,home +400910453,2016,3,2016-09-30,11,Phoenix Mercury,FALSE,8,away +400910453,2016,3,2016-09-30,8,Minnesota Lynx,TRUE,11,home +400910457,2016,3,2016-09-28,19,Chicago Sky,FALSE,6,away +400910457,2016,3,2016-09-28,6,Los Angeles Sparks,TRUE,19,home +400910452,2016,3,2016-09-28,11,Phoenix Mercury,FALSE,8,away +400910452,2016,3,2016-09-28,8,Minnesota Lynx,TRUE,11,home +400910451,2016,3,2016-09-25,20,Atlanta Dream,FALSE,19,away +400910451,2016,3,2016-09-25,19,Chicago Sky,TRUE,20,home +400910450,2016,3,2016-09-24,11,Phoenix Mercury,TRUE,9,away +400910450,2016,3,2016-09-24,9,New York Liberty,FALSE,11,home +400910431,2016,3,2016-09-21,14,Seattle Storm,FALSE,20,away +400910431,2016,3,2016-09-21,20,Atlanta Dream,TRUE,14,home +400910430,2016,3,2016-09-21,11,Phoenix Mercury,TRUE,5,away +400910430,2016,3,2016-09-21,5,Indiana Fever,FALSE,11,home +400864525,2016,2,2016-09-18,19,Chicago Sky,FALSE,14,away +400864525,2016,2,2016-09-18,14,Seattle Storm,TRUE,19,home +400864524,2016,2,2016-09-18,11,Phoenix Mercury,TRUE,17,away +400864524,2016,2,2016-09-18,17,San Antonio Stars,FALSE,11,home +400864522,2016,2,2016-09-18,18,Connecticut Sun,TRUE,16,away +400864522,2016,2,2016-09-18,16,Washington Mystics,FALSE,18,home +400864523,2016,2,2016-09-18,3,Dallas Wings,FALSE,5,away +400864523,2016,2,2016-09-18,5,Indiana Fever,TRUE,3,home +400864521,2016,2,2016-09-17,20,Atlanta Dream,FALSE,8,away +400864521,2016,2,2016-09-17,8,Minnesota Lynx,TRUE,20,home +400864520,2016,2,2016-09-16,17,San Antonio Stars,FALSE,6,away +400864520,2016,2,2016-09-16,6,Los Angeles Sparks,TRUE,17,home +400864519,2016,2,2016-09-16,9,New York Liberty,FALSE,19,away +400864519,2016,2,2016-09-16,19,Chicago Sky,TRUE,9,home +400864517,2016,2,2016-09-16,3,Dallas Wings,FALSE,18,away +400864517,2016,2,2016-09-16,18,Connecticut Sun,TRUE,3,home +400864518,2016,2,2016-09-16,8,Minnesota Lynx,TRUE,5,away +400864518,2016,2,2016-09-16,5,Indiana Fever,FALSE,8,home +400864516,2016,2,2016-09-15,14,Seattle Storm,FALSE,11,away +400864516,2016,2,2016-09-15,11,Phoenix Mercury,TRUE,14,home +400864515,2016,2,2016-09-15,16,Washington Mystics,FALSE,20,away +400864515,2016,2,2016-09-15,20,Atlanta Dream,TRUE,16,home +400864514,2016,2,2016-09-13,11,Phoenix Mercury,FALSE,6,away +400864514,2016,2,2016-09-13,6,Los Angeles Sparks,TRUE,11,home +400864513,2016,2,2016-09-13,8,Minnesota Lynx,FALSE,19,away +400864513,2016,2,2016-09-13,19,Chicago Sky,TRUE,8,home +400864510,2016,2,2016-09-13,5,Indiana Fever,FALSE,18,away +400864510,2016,2,2016-09-13,18,Connecticut Sun,TRUE,5,home +400864511,2016,2,2016-09-13,16,Washington Mystics,TRUE,9,away +400864511,2016,2,2016-09-13,9,New York Liberty,FALSE,16,home +400864512,2016,2,2016-09-13,17,San Antonio Stars,TRUE,20,away +400864512,2016,2,2016-09-13,20,Atlanta Dream,FALSE,17,home +400864509,2016,2,2016-09-11,6,Los Angeles Sparks,FALSE,14,away +400864509,2016,2,2016-09-11,14,Seattle Storm,TRUE,6,home +400864508,2016,2,2016-09-11,20,Atlanta Dream,FALSE,11,away +400864508,2016,2,2016-09-11,11,Phoenix Mercury,TRUE,20,home +400864426,2016,2,2016-09-11,9,New York Liberty,FALSE,3,away +400864426,2016,2,2016-09-11,3,Dallas Wings,TRUE,9,home +400864427,2016,2,2016-09-11,8,Minnesota Lynx,TRUE,17,away +400864427,2016,2,2016-09-11,17,San Antonio Stars,FALSE,8,home +400864425,2016,2,2016-09-11,5,Indiana Fever,TRUE,16,away +400864425,2016,2,2016-09-11,16,Washington Mystics,FALSE,5,home +400864424,2016,2,2016-09-11,19,Chicago Sky,TRUE,18,away +400864424,2016,2,2016-09-11,18,Connecticut Sun,FALSE,19,home +400864423,2016,2,2016-09-09,3,Dallas Wings,TRUE,17,away +400864423,2016,2,2016-09-09,17,San Antonio Stars,FALSE,3,home +400864422,2016,2,2016-09-09,18,Connecticut Sun,FALSE,9,away +400864422,2016,2,2016-09-09,9,New York Liberty,TRUE,18,home +400864420,2016,2,2016-09-09,14,Seattle Storm,TRUE,16,away +400864420,2016,2,2016-09-09,16,Washington Mystics,FALSE,14,home +400864421,2016,2,2016-09-09,19,Chicago Sky,FALSE,5,away +400864421,2016,2,2016-09-09,5,Indiana Fever,TRUE,19,home +400864419,2016,2,2016-09-08,20,Atlanta Dream,TRUE,6,away +400864419,2016,2,2016-09-08,6,Los Angeles Sparks,FALSE,20,home +400864417,2016,2,2016-09-07,14,Seattle Storm,TRUE,9,away +400864417,2016,2,2016-09-07,9,New York Liberty,FALSE,14,home +400864418,2016,2,2016-09-07,19,Chicago Sky,FALSE,16,away +400864418,2016,2,2016-09-07,16,Washington Mystics,TRUE,19,home +400864416,2016,2,2016-09-06,8,Minnesota Lynx,TRUE,6,away +400864416,2016,2,2016-09-06,6,Los Angeles Sparks,FALSE,8,home +400864415,2016,2,2016-09-06,5,Indiana Fever,TRUE,17,away +400864415,2016,2,2016-09-06,17,San Antonio Stars,FALSE,5,home +400864414,2016,2,2016-09-06,11,Phoenix Mercury,FALSE,20,away +400864414,2016,2,2016-09-06,20,Atlanta Dream,TRUE,11,home +400864412,2016,2,2016-09-04,5,Indiana Fever,FALSE,6,away +400864412,2016,2,2016-09-04,6,Los Angeles Sparks,TRUE,5,home +400864413,2016,2,2016-09-04,18,Connecticut Sun,FALSE,8,away +400864413,2016,2,2016-09-04,8,Minnesota Lynx,TRUE,18,home +400864410,2016,2,2016-09-04,17,San Antonio Stars,FALSE,19,away +400864410,2016,2,2016-09-04,19,Chicago Sky,TRUE,17,home +400864411,2016,2,2016-09-04,14,Seattle Storm,TRUE,20,away +400864411,2016,2,2016-09-04,20,Atlanta Dream,FALSE,14,home +400864409,2016,2,2016-09-04,16,Washington Mystics,TRUE,3,away +400864409,2016,2,2016-09-04,3,Dallas Wings,FALSE,16,home +400864408,2016,2,2016-09-03,11,Phoenix Mercury,FALSE,9,away +400864408,2016,2,2016-09-03,9,New York Liberty,TRUE,11,home +400864346,2016,2,2016-09-02,14,Seattle Storm,FALSE,19,away +400864346,2016,2,2016-09-02,19,Chicago Sky,TRUE,14,home +400864347,2016,2,2016-09-02,6,Los Angeles Sparks,TRUE,3,away +400864347,2016,2,2016-09-02,3,Dallas Wings,FALSE,6,home +400864345,2016,2,2016-09-02,16,Washington Mystics,FALSE,8,away +400864345,2016,2,2016-09-02,8,Minnesota Lynx,TRUE,16,home +400864344,2016,2,2016-09-02,11,Phoenix Mercury,FALSE,18,away +400864344,2016,2,2016-09-02,18,Connecticut Sun,TRUE,11,home +400864343,2016,2,2016-09-01,6,Los Angeles Sparks,TRUE,17,away +400864343,2016,2,2016-09-01,17,San Antonio Stars,FALSE,6,home +400864342,2016,2,2016-09-01,9,New York Liberty,FALSE,5,away +400864342,2016,2,2016-09-01,5,Indiana Fever,TRUE,9,home +400864440,2016,2,2016-08-31,3,Dallas Wings,FALSE,14,away +400864440,2016,2,2016-08-31,14,Seattle Storm,TRUE,3,home +400864433,2016,2,2016-08-30,17,San Antonio Stars,FALSE,18,away +400864433,2016,2,2016-08-30,18,Connecticut Sun,TRUE,17,home +400864436,2016,2,2016-08-30,11,Phoenix Mercury,TRUE,5,away +400864436,2016,2,2016-08-30,5,Indiana Fever,FALSE,11,home +400864428,2016,2,2016-08-28,6,Los Angeles Sparks,FALSE,11,away +400864428,2016,2,2016-08-28,11,Phoenix Mercury,TRUE,6,home +400864394,2016,2,2016-08-28,14,Seattle Storm,FALSE,8,away +400864394,2016,2,2016-08-28,8,Minnesota Lynx,TRUE,14,home +400864535,2016,2,2016-08-28,17,San Antonio Stars,TRUE,16,away +400864535,2016,2,2016-08-28,16,Washington Mystics,FALSE,17,home +400864391,2016,2,2016-08-28,19,Chicago Sky,TRUE,3,away +400864391,2016,2,2016-08-28,3,Dallas Wings,FALSE,19,home +400864386,2016,2,2016-08-28,18,Connecticut Sun,FALSE,20,away +400864386,2016,2,2016-08-28,20,Atlanta Dream,TRUE,18,home +400864379,2016,2,2016-08-27,16,Washington Mystics,TRUE,5,away +400864379,2016,2,2016-08-27,5,Indiana Fever,FALSE,16,home +400864372,2016,2,2016-08-26,3,Dallas Wings,FALSE,11,away +400864372,2016,2,2016-08-26,11,Phoenix Mercury,TRUE,3,home +400864376,2016,2,2016-08-26,6,Los Angeles Sparks,FALSE,14,away +400864376,2016,2,2016-08-26,14,Seattle Storm,TRUE,6,home +400864369,2016,2,2016-08-26,20,Atlanta Dream,FALSE,19,away +400864369,2016,2,2016-08-26,19,Chicago Sky,TRUE,20,home +400864367,2016,2,2016-08-26,9,New York Liberty,TRUE,17,away +400864367,2016,2,2016-08-26,17,San Antonio Stars,FALSE,9,home +400864364,2016,2,2016-08-26,8,Minnesota Lynx,FALSE,18,away +400864364,2016,2,2016-08-26,18,Connecticut Sun,TRUE,8,home +400864495,2016,2,2016-07-22,18,Connecticut Sun,TRUE,19,away +400864495,2016,2,2016-07-22,19,Chicago Sky,FALSE,18,home +400864493,2016,2,2016-07-22,14,Seattle Storm,FALSE,8,away +400864493,2016,2,2016-07-22,8,Minnesota Lynx,TRUE,14,home +400864492,2016,2,2016-07-22,3,Dallas Wings,FALSE,20,away +400864492,2016,2,2016-07-22,20,Atlanta Dream,TRUE,3,home +400864491,2016,2,2016-07-22,6,Los Angeles Sparks,TRUE,16,away +400864491,2016,2,2016-07-22,16,Washington Mystics,FALSE,6,home +400864490,2016,2,2016-07-21,5,Indiana Fever,TRUE,9,away +400864490,2016,2,2016-07-21,9,New York Liberty,FALSE,5,home +400864488,2016,2,2016-07-20,17,San Antonio Stars,FALSE,14,away +400864488,2016,2,2016-07-20,14,Seattle Storm,TRUE,17,home +400864486,2016,2,2016-07-20,20,Atlanta Dream,FALSE,8,away +400864486,2016,2,2016-07-20,8,Minnesota Lynx,TRUE,20,home +400864485,2016,2,2016-07-20,18,Connecticut Sun,TRUE,3,away +400864485,2016,2,2016-07-20,3,Dallas Wings,FALSE,18,home +400864483,2016,2,2016-07-20,9,New York Liberty,TRUE,16,away +400864483,2016,2,2016-07-20,16,Washington Mystics,FALSE,9,home +400864481,2016,2,2016-07-19,19,Chicago Sky,TRUE,11,away +400864481,2016,2,2016-07-19,11,Phoenix Mercury,FALSE,19,home +400864480,2016,2,2016-07-19,6,Los Angeles Sparks,FALSE,5,away +400864480,2016,2,2016-07-19,5,Indiana Fever,TRUE,6,home +400864478,2016,2,2016-07-17,19,Chicago Sky,TRUE,14,away +400864478,2016,2,2016-07-17,14,Seattle Storm,FALSE,19,home +400864476,2016,2,2016-07-17,8,Minnesota Lynx,TRUE,3,away +400864476,2016,2,2016-07-17,3,Dallas Wings,FALSE,8,home +400864470,2016,2,2016-07-17,18,Connecticut Sun,FALSE,9,away +400864470,2016,2,2016-07-17,9,New York Liberty,TRUE,18,home +400864473,2016,2,2016-07-17,6,Los Angeles Sparks,FALSE,20,away +400864473,2016,2,2016-07-17,20,Atlanta Dream,TRUE,6,home +400864468,2016,2,2016-07-16,17,San Antonio Stars,FALSE,11,away +400864468,2016,2,2016-07-16,11,Phoenix Mercury,TRUE,17,home +400864462,2016,2,2016-07-15,16,Washington Mystics,FALSE,14,away +400864462,2016,2,2016-07-15,14,Seattle Storm,TRUE,16,home +400864460,2016,2,2016-07-15,3,Dallas Wings,FALSE,19,away +400864460,2016,2,2016-07-15,19,Chicago Sky,TRUE,3,home +400864457,2016,2,2016-07-15,9,New York Liberty,FALSE,8,away +400864457,2016,2,2016-07-15,8,Minnesota Lynx,TRUE,9,home +400864454,2016,2,2016-07-15,6,Los Angeles Sparks,TRUE,18,away +400864454,2016,2,2016-07-15,18,Connecticut Sun,FALSE,6,home +400864456,2016,2,2016-07-15,20,Atlanta Dream,FALSE,5,away +400864456,2016,2,2016-07-15,5,Indiana Fever,TRUE,20,home +400864451,2016,2,2016-07-13,16,Washington Mystics,FALSE,11,away +400864451,2016,2,2016-07-13,11,Phoenix Mercury,TRUE,16,home +400864449,2016,2,2016-07-13,6,Los Angeles Sparks,TRUE,19,away +400864449,2016,2,2016-07-13,19,Chicago Sky,FALSE,6,home +400864446,2016,2,2016-07-13,18,Connecticut Sun,TRUE,5,away +400864446,2016,2,2016-07-13,5,Indiana Fever,FALSE,18,home +400864443,2016,2,2016-07-13,20,Atlanta Dream,FALSE,9,away +400864443,2016,2,2016-07-13,9,New York Liberty,TRUE,20,home +400864438,2016,2,2016-07-12,8,Minnesota Lynx,TRUE,17,away +400864438,2016,2,2016-07-12,17,San Antonio Stars,FALSE,8,home +400864434,2016,2,2016-07-10,16,Washington Mystics,FALSE,6,away +400864434,2016,2,2016-07-10,6,Los Angeles Sparks,TRUE,16,home +400864435,2016,2,2016-07-10,5,Indiana Fever,TRUE,14,away +400864435,2016,2,2016-07-10,14,Seattle Storm,FALSE,5,home +400864431,2016,2,2016-07-10,11,Phoenix Mercury,FALSE,19,away +400864431,2016,2,2016-07-10,19,Chicago Sky,TRUE,11,home +400864407,2016,2,2016-07-10,17,San Antonio Stars,FALSE,9,away +400864407,2016,2,2016-07-10,9,New York Liberty,TRUE,17,home +400864404,2016,2,2016-07-10,20,Atlanta Dream,TRUE,18,away +400864404,2016,2,2016-07-10,18,Connecticut Sun,FALSE,20,home +400864402,2016,2,2016-07-09,3,Dallas Wings,FALSE,8,away +400864402,2016,2,2016-07-09,8,Minnesota Lynx,TRUE,3,home +400864399,2016,2,2016-07-08,5,Indiana Fever,TRUE,11,away +400864399,2016,2,2016-07-08,11,Phoenix Mercury,FALSE,5,home +400864395,2016,2,2016-07-08,14,Seattle Storm,TRUE,17,away +400864395,2016,2,2016-07-08,17,San Antonio Stars,FALSE,14,home +400864398,2016,2,2016-07-08,9,New York Liberty,TRUE,19,away +400864398,2016,2,2016-07-08,19,Chicago Sky,FALSE,9,home +400864392,2016,2,2016-07-08,3,Dallas Wings,FALSE,20,away +400864392,2016,2,2016-07-08,20,Atlanta Dream,TRUE,3,home +400864385,2016,2,2016-07-07,8,Minnesota Lynx,FALSE,18,away +400864385,2016,2,2016-07-07,18,Connecticut Sun,TRUE,8,home +400864383,2016,2,2016-07-06,5,Indiana Fever,FALSE,6,away +400864383,2016,2,2016-07-06,6,Los Angeles Sparks,TRUE,5,home +400864380,2016,2,2016-07-06,16,Washington Mystics,FALSE,17,away +400864380,2016,2,2016-07-06,17,San Antonio Stars,TRUE,16,home +400864377,2016,2,2016-07-06,14,Seattle Storm,FALSE,9,away +400864377,2016,2,2016-07-06,9,New York Liberty,TRUE,14,home +400864375,2016,2,2016-07-05,11,Phoenix Mercury,FALSE,3,away +400864375,2016,2,2016-07-05,3,Dallas Wings,TRUE,11,home +400864371,2016,2,2016-07-05,19,Chicago Sky,FALSE,8,away +400864371,2016,2,2016-07-05,8,Minnesota Lynx,TRUE,19,home +400864368,2016,2,2016-07-05,14,Seattle Storm,FALSE,20,away +400864368,2016,2,2016-07-05,20,Atlanta Dream,TRUE,14,home +400864366,2016,2,2016-07-03,11,Phoenix Mercury,TRUE,20,away +400864366,2016,2,2016-07-03,20,Atlanta Dream,FALSE,11,home +400864365,2016,2,2016-07-03,9,New York Liberty,FALSE,6,away +400864365,2016,2,2016-07-03,6,Los Angeles Sparks,TRUE,9,home +400864363,2016,2,2016-07-02,18,Connecticut Sun,TRUE,3,away +400864363,2016,2,2016-07-02,3,Dallas Wings,FALSE,18,home +400864360,2016,2,2016-07-02,17,San Antonio Stars,FALSE,8,away +400864360,2016,2,2016-07-02,8,Minnesota Lynx,TRUE,17,home +400864358,2016,2,2016-07-01,9,New York Liberty,TRUE,11,away +400864358,2016,2,2016-07-01,11,Phoenix Mercury,FALSE,9,home +400864356,2016,2,2016-07-01,16,Washington Mystics,FALSE,19,away +400864356,2016,2,2016-07-01,19,Chicago Sky,TRUE,16,home +400864355,2016,2,2016-07-01,17,San Antonio Stars,TRUE,5,away +400864355,2016,2,2016-07-01,5,Indiana Fever,FALSE,17,home +400864554,2016,2,2016-06-30,3,Dallas Wings,TRUE,14,away +400864554,2016,2,2016-06-30,14,Seattle Storm,FALSE,3,home +400864553,2016,2,2016-06-30,20,Atlanta Dream,FALSE,6,away +400864553,2016,2,2016-06-30,6,Los Angeles Sparks,TRUE,20,home +400864552,2016,2,2016-06-29,18,Connecticut Sun,FALSE,11,away +400864552,2016,2,2016-06-29,11,Phoenix Mercury,TRUE,18,home +400864551,2016,2,2016-06-29,9,New York Liberty,TRUE,8,away +400864551,2016,2,2016-06-29,8,Minnesota Lynx,FALSE,9,home +400864550,2016,2,2016-06-29,5,Indiana Fever,TRUE,19,away +400864550,2016,2,2016-06-29,19,Chicago Sky,FALSE,5,home +400864549,2016,2,2016-06-29,17,San Antonio Stars,FALSE,16,away +400864549,2016,2,2016-06-29,16,Washington Mystics,TRUE,17,home +400864547,2016,2,2016-06-28,20,Atlanta Dream,FALSE,14,away +400864547,2016,2,2016-06-28,14,Seattle Storm,TRUE,20,home +400864548,2016,2,2016-06-28,3,Dallas Wings,FALSE,6,away +400864548,2016,2,2016-06-28,6,Los Angeles Sparks,TRUE,3,home +400864546,2016,2,2016-06-26,18,Connecticut Sun,FALSE,6,away +400864546,2016,2,2016-06-26,6,Los Angeles Sparks,TRUE,18,home +400864545,2016,2,2016-06-26,8,Minnesota Lynx,FALSE,16,away +400864545,2016,2,2016-06-26,16,Washington Mystics,TRUE,8,home +400864544,2016,2,2016-06-26,11,Phoenix Mercury,TRUE,9,away +400864544,2016,2,2016-06-26,9,New York Liberty,FALSE,11,home +400864543,2016,2,2016-06-25,5,Indiana Fever,TRUE,3,away +400864543,2016,2,2016-06-25,3,Dallas Wings,FALSE,5,home +400864542,2016,2,2016-06-25,20,Atlanta Dream,FALSE,17,away +400864542,2016,2,2016-06-25,17,San Antonio Stars,TRUE,20,home +400864541,2016,2,2016-06-24,18,Connecticut Sun,FALSE,14,away +400864541,2016,2,2016-06-24,14,Seattle Storm,TRUE,18,home +400864540,2016,2,2016-06-24,6,Los Angeles Sparks,TRUE,8,away +400864540,2016,2,2016-06-24,8,Minnesota Lynx,FALSE,6,home +400864539,2016,2,2016-06-24,19,Chicago Sky,FALSE,9,away +400864539,2016,2,2016-06-24,9,New York Liberty,TRUE,19,home +400864538,2016,2,2016-06-24,11,Phoenix Mercury,TRUE,16,away +400864538,2016,2,2016-06-24,16,Washington Mystics,FALSE,11,home +400864537,2016,2,2016-06-23,17,San Antonio Stars,FALSE,3,away +400864537,2016,2,2016-06-23,3,Dallas Wings,TRUE,17,home +400864536,2016,2,2016-06-22,5,Indiana Fever,FALSE,16,away +400864536,2016,2,2016-06-22,16,Washington Mystics,TRUE,5,home +400864534,2016,2,2016-06-22,9,New York Liberty,TRUE,20,away +400864534,2016,2,2016-06-22,20,Atlanta Dream,FALSE,9,home +400864532,2016,2,2016-06-21,17,San Antonio Stars,FALSE,19,away +400864532,2016,2,2016-06-21,19,Chicago Sky,TRUE,17,home +400864533,2016,2,2016-06-21,11,Phoenix Mercury,FALSE,3,away +400864533,2016,2,2016-06-21,3,Dallas Wings,TRUE,11,home +400864531,2016,2,2016-06-21,8,Minnesota Lynx,TRUE,6,away +400864531,2016,2,2016-06-21,6,Los Angeles Sparks,FALSE,8,home +400864530,2016,2,2016-06-19,8,Minnesota Lynx,TRUE,14,away +400864530,2016,2,2016-06-19,14,Seattle Storm,FALSE,8,home +400864529,2016,2,2016-06-19,9,New York Liberty,TRUE,5,away +400864529,2016,2,2016-06-19,5,Indiana Fever,FALSE,9,home +400864528,2016,2,2016-06-19,17,San Antonio Stars,FALSE,18,away +400864528,2016,2,2016-06-19,18,Connecticut Sun,TRUE,17,home +400864507,2016,2,2016-06-18,3,Dallas Wings,TRUE,11,away +400864507,2016,2,2016-06-18,11,Phoenix Mercury,FALSE,3,home +400864506,2016,2,2016-06-18,20,Atlanta Dream,FALSE,16,away +400864506,2016,2,2016-06-18,16,Washington Mystics,TRUE,20,home +400864505,2016,2,2016-06-17,11,Phoenix Mercury,FALSE,6,away +400864505,2016,2,2016-06-17,6,Los Angeles Sparks,TRUE,11,home +400864504,2016,2,2016-06-17,5,Indiana Fever,TRUE,17,away +400864504,2016,2,2016-06-17,17,San Antonio Stars,FALSE,5,home +400864503,2016,2,2016-06-17,19,Chicago Sky,FALSE,20,away +400864503,2016,2,2016-06-17,20,Atlanta Dream,TRUE,19,home +400864502,2016,2,2016-06-16,14,Seattle Storm,FALSE,3,away +400864502,2016,2,2016-06-16,3,Dallas Wings,TRUE,14,home +400864501,2016,2,2016-06-16,9,New York Liberty,TRUE,18,away +400864501,2016,2,2016-06-16,18,Connecticut Sun,FALSE,9,home +400864500,2016,2,2016-06-14,19,Chicago Sky,FALSE,6,away +400864500,2016,2,2016-06-14,6,Los Angeles Sparks,TRUE,19,home +400864498,2016,2,2016-06-14,5,Indiana Fever,FALSE,8,away +400864498,2016,2,2016-06-14,8,Minnesota Lynx,TRUE,5,home +400864499,2016,2,2016-06-14,14,Seattle Storm,FALSE,17,away +400864499,2016,2,2016-06-14,17,San Antonio Stars,TRUE,14,home +400864496,2016,2,2016-06-14,16,Washington Mystics,TRUE,18,away +400864496,2016,2,2016-06-14,18,Connecticut Sun,FALSE,16,home +400864497,2016,2,2016-06-14,3,Dallas Wings,FALSE,9,away +400864497,2016,2,2016-06-14,9,New York Liberty,TRUE,3,home +400864489,2016,2,2016-06-12,19,Chicago Sky,FALSE,11,away +400864489,2016,2,2016-06-12,11,Phoenix Mercury,TRUE,19,home +400864494,2016,2,2016-06-12,14,Seattle Storm,TRUE,5,away +400864494,2016,2,2016-06-12,5,Indiana Fever,FALSE,14,home +400864487,2016,2,2016-06-12,18,Connecticut Sun,FALSE,20,away +400864487,2016,2,2016-06-12,20,Atlanta Dream,TRUE,18,home +400864484,2016,2,2016-06-11,6,Los Angeles Sparks,TRUE,3,away +400864484,2016,2,2016-06-11,3,Dallas Wings,FALSE,6,home +400864482,2016,2,2016-06-11,9,New York Liberty,TRUE,17,away +400864482,2016,2,2016-06-11,17,San Antonio Stars,FALSE,9,home +400864479,2016,2,2016-06-11,8,Minnesota Lynx,TRUE,16,away +400864479,2016,2,2016-06-11,16,Washington Mystics,FALSE,8,home +400864477,2016,2,2016-06-10,8,Minnesota Lynx,TRUE,20,away +400864477,2016,2,2016-06-10,20,Atlanta Dream,FALSE,8,home +400864471,2016,2,2016-06-10,14,Seattle Storm,FALSE,18,away +400864471,2016,2,2016-06-10,18,Connecticut Sun,TRUE,14,home +400864475,2016,2,2016-06-10,19,Chicago Sky,TRUE,5,away +400864475,2016,2,2016-06-10,5,Indiana Fever,FALSE,19,home +400864467,2016,2,2016-06-09,17,San Antonio Stars,FALSE,11,away +400864467,2016,2,2016-06-09,11,Phoenix Mercury,TRUE,17,home +400864464,2016,2,2016-06-08,16,Washington Mystics,TRUE,3,away +400864464,2016,2,2016-06-08,3,Dallas Wings,FALSE,16,home +400864461,2016,2,2016-06-07,9,New York Liberty,FALSE,6,away +400864461,2016,2,2016-06-07,6,Los Angeles Sparks,TRUE,9,home +400864453,2016,2,2016-06-07,11,Phoenix Mercury,FALSE,8,away +400864453,2016,2,2016-06-07,8,Minnesota Lynx,TRUE,11,home +400864448,2016,2,2016-06-05,9,New York Liberty,TRUE,14,away +400864448,2016,2,2016-06-05,14,Seattle Storm,FALSE,9,home +400864441,2016,2,2016-06-05,5,Indiana Fever,TRUE,18,away +400864441,2016,2,2016-06-05,18,Connecticut Sun,FALSE,5,home +400864445,2016,2,2016-06-05,16,Washington Mystics,TRUE,20,away +400864445,2016,2,2016-06-05,20,Atlanta Dream,FALSE,16,home +400864406,2016,2,2016-06-04,3,Dallas Wings,FALSE,8,away +400864406,2016,2,2016-06-04,8,Minnesota Lynx,TRUE,3,home +400864430,2016,2,2016-06-04,6,Los Angeles Sparks,TRUE,17,away +400864430,2016,2,2016-06-04,17,San Antonio Stars,FALSE,6,home +400864401,2016,2,2016-06-03,11,Phoenix Mercury,FALSE,14,away +400864401,2016,2,2016-06-03,14,Seattle Storm,TRUE,11,home +400864396,2016,2,2016-06-03,16,Washington Mystics,FALSE,19,away +400864396,2016,2,2016-06-03,19,Chicago Sky,TRUE,16,home +400864390,2016,2,2016-06-03,5,Indiana Fever,FALSE,9,away +400864390,2016,2,2016-06-03,9,New York Liberty,TRUE,5,home +400864388,2016,2,2016-06-03,20,Atlanta Dream,TRUE,18,away +400864388,2016,2,2016-06-03,18,Connecticut Sun,FALSE,20,home +400864382,2016,2,2016-06-02,17,San Antonio Stars,FALSE,6,away +400864382,2016,2,2016-06-02,6,Los Angeles Sparks,TRUE,17,home +400864362,2016,2,2016-06-01,19,Chicago Sky,TRUE,16,away +400864362,2016,2,2016-06-01,16,Washington Mystics,FALSE,19,home +400864374,2016,2,2016-06-01,14,Seattle Storm,FALSE,5,away +400864374,2016,2,2016-06-01,5,Indiana Fever,TRUE,14,home +400864474,2016,2,2016-05-31,18,Connecticut Sun,FALSE,11,away +400864474,2016,2,2016-05-31,11,Phoenix Mercury,TRUE,18,home +400864472,2016,2,2016-05-31,8,Minnesota Lynx,TRUE,9,away +400864472,2016,2,2016-05-31,9,New York Liberty,FALSE,8,home +400864469,2016,2,2016-05-29,16,Washington Mystics,FALSE,11,away +400864469,2016,2,2016-05-29,11,Phoenix Mercury,TRUE,16,home +400864466,2016,2,2016-05-29,19,Chicago Sky,TRUE,3,away +400864466,2016,2,2016-05-29,3,Dallas Wings,FALSE,19,home +400864465,2016,2,2016-05-29,5,Indiana Fever,FALSE,20,away +400864465,2016,2,2016-05-29,20,Atlanta Dream,TRUE,5,home +400864463,2016,2,2016-05-28,18,Connecticut Sun,FALSE,14,away +400864463,2016,2,2016-05-28,14,Seattle Storm,TRUE,18,home +400864459,2016,2,2016-05-27,20,Atlanta Dream,TRUE,3,away +400864459,2016,2,2016-05-27,3,Dallas Wings,FALSE,20,home +400864455,2016,2,2016-05-27,5,Indiana Fever,FALSE,8,away +400864455,2016,2,2016-05-27,8,Minnesota Lynx,TRUE,5,home +400864458,2016,2,2016-05-27,19,Chicago Sky,FALSE,17,away +400864458,2016,2,2016-05-27,17,San Antonio Stars,TRUE,19,home +400864452,2016,2,2016-05-26,16,Washington Mystics,TRUE,14,away +400864452,2016,2,2016-05-26,14,Seattle Storm,FALSE,16,home +400864450,2016,2,2016-05-26,6,Los Angeles Sparks,TRUE,18,away +400864450,2016,2,2016-05-26,18,Connecticut Sun,FALSE,6,home +400864447,2016,2,2016-05-25,8,Minnesota Lynx,TRUE,11,away +400864447,2016,2,2016-05-25,11,Phoenix Mercury,FALSE,8,home +400864444,2016,2,2016-05-24,6,Los Angeles Sparks,TRUE,19,away +400864444,2016,2,2016-05-24,19,Chicago Sky,FALSE,6,home +400864442,2016,2,2016-05-24,20,Atlanta Dream,TRUE,9,away +400864442,2016,2,2016-05-24,9,New York Liberty,FALSE,20,home +400864439,2016,2,2016-05-22,8,Minnesota Lynx,TRUE,14,away +400864439,2016,2,2016-05-22,14,Seattle Storm,FALSE,8,home +400864437,2016,2,2016-05-22,19,Chicago Sky,FALSE,20,away +400864437,2016,2,2016-05-22,20,Atlanta Dream,TRUE,19,home +400864432,2016,2,2016-05-21,17,San Antonio Stars,FALSE,3,away +400864432,2016,2,2016-05-21,3,Dallas Wings,TRUE,17,home +400864429,2016,2,2016-05-21,16,Washington Mystics,TRUE,18,away +400864429,2016,2,2016-05-21,18,Connecticut Sun,FALSE,16,home +400864405,2016,2,2016-05-21,6,Los Angeles Sparks,TRUE,9,away +400864405,2016,2,2016-05-21,9,New York Liberty,FALSE,6,home +400864403,2016,2,2016-05-20,14,Seattle Storm,TRUE,11,away +400864403,2016,2,2016-05-20,11,Phoenix Mercury,FALSE,14,home +400864397,2016,2,2016-05-20,6,Los Angeles Sparks,TRUE,16,away +400864397,2016,2,2016-05-20,16,Washington Mystics,FALSE,6,home +400864400,2016,2,2016-05-20,20,Atlanta Dream,FALSE,5,away +400864400,2016,2,2016-05-20,5,Indiana Fever,TRUE,20,home +400864393,2016,2,2016-05-19,18,Connecticut Sun,TRUE,17,away +400864393,2016,2,2016-05-19,17,San Antonio Stars,FALSE,18,home +400864387,2016,2,2016-05-18,3,Dallas Wings,TRUE,16,away +400864387,2016,2,2016-05-18,16,Washington Mystics,FALSE,3,home +400864389,2016,2,2016-05-18,11,Phoenix Mercury,FALSE,5,away +400864389,2016,2,2016-05-18,5,Indiana Fever,TRUE,11,home +400864384,2016,2,2016-05-18,8,Minnesota Lynx,TRUE,19,away +400864384,2016,2,2016-05-18,19,Chicago Sky,FALSE,8,home +400864378,2016,2,2016-05-15,14,Seattle Storm,FALSE,6,away +400864378,2016,2,2016-05-15,6,Los Angeles Sparks,TRUE,14,home +400864381,2016,2,2016-05-15,3,Dallas Wings,FALSE,9,away +400864381,2016,2,2016-05-15,9,New York Liberty,TRUE,3,home +400864370,2016,2,2016-05-14,18,Connecticut Sun,FALSE,19,away +400864370,2016,2,2016-05-14,19,Chicago Sky,TRUE,18,home +400864373,2016,2,2016-05-14,20,Atlanta Dream,TRUE,17,away +400864373,2016,2,2016-05-14,17,San Antonio Stars,FALSE,20,home +400864361,2016,2,2016-05-14,11,Phoenix Mercury,FALSE,8,away +400864361,2016,2,2016-05-14,8,Minnesota Lynx,TRUE,11,home +400864359,2016,2,2016-05-14,9,New York Liberty,TRUE,16,away +400864359,2016,2,2016-05-14,16,Washington Mystics,FALSE,9,home +400864357,2016,2,2016-05-14,3,Dallas Wings,TRUE,5,away +400864357,2016,2,2016-05-14,5,Indiana Fever,FALSE,3,home +400981432,2017,3,2017-10-04,6,Los Angeles Sparks,FALSE,8,away +400981432,2017,3,2017-10-04,8,Minnesota Lynx,TRUE,6,home +400981431,2017,3,2017-10-01,8,Minnesota Lynx,TRUE,6,away +400981431,2017,3,2017-10-01,6,Los Angeles Sparks,FALSE,8,home +400981430,2017,3,2017-09-29,8,Minnesota Lynx,FALSE,6,away +400981430,2017,3,2017-09-29,6,Los Angeles Sparks,TRUE,8,home +400981429,2017,3,2017-09-26,6,Los Angeles Sparks,FALSE,8,away +400981429,2017,3,2017-09-26,8,Minnesota Lynx,TRUE,6,home +400981428,2017,3,2017-09-24,6,Los Angeles Sparks,TRUE,8,away +400981428,2017,3,2017-09-24,8,Minnesota Lynx,FALSE,6,home +400981101,2017,3,2017-09-17,6,Los Angeles Sparks,TRUE,11,away +400981101,2017,3,2017-09-17,11,Phoenix Mercury,FALSE,6,home +400981096,2017,3,2017-09-17,8,Minnesota Lynx,TRUE,16,away +400981096,2017,3,2017-09-17,16,Washington Mystics,FALSE,8,home +400981100,2017,3,2017-09-14,11,Phoenix Mercury,FALSE,6,away +400981100,2017,3,2017-09-14,6,Los Angeles Sparks,TRUE,11,home +400981095,2017,3,2017-09-14,16,Washington Mystics,FALSE,8,away +400981095,2017,3,2017-09-14,8,Minnesota Lynx,TRUE,16,home +400981099,2017,3,2017-09-12,11,Phoenix Mercury,FALSE,6,away +400981099,2017,3,2017-09-12,6,Los Angeles Sparks,TRUE,11,home +400981094,2017,3,2017-09-12,16,Washington Mystics,FALSE,8,away +400981094,2017,3,2017-09-12,8,Minnesota Lynx,TRUE,16,home +400981093,2017,3,2017-09-10,16,Washington Mystics,TRUE,9,away +400981093,2017,3,2017-09-10,9,New York Liberty,FALSE,16,home +400981092,2017,3,2017-09-10,11,Phoenix Mercury,TRUE,18,away +400981092,2017,3,2017-09-10,18,Connecticut Sun,FALSE,11,home +400981091,2017,3,2017-09-06,14,Seattle Storm,FALSE,11,away +400981091,2017,3,2017-09-06,11,Phoenix Mercury,TRUE,14,home +400981090,2017,3,2017-09-06,3,Dallas Wings,FALSE,16,away +400981090,2017,3,2017-09-06,16,Washington Mystics,TRUE,3,home +400927594,2017,2,2017-09-03,14,Seattle Storm,TRUE,19,away +400927594,2017,2,2017-09-03,19,Chicago Sky,FALSE,14,home +400927592,2017,2,2017-09-03,18,Connecticut Sun,FALSE,6,away +400927592,2017,2,2017-09-03,6,Los Angeles Sparks,TRUE,18,home +400927593,2017,2,2017-09-03,20,Atlanta Dream,FALSE,11,away +400927593,2017,2,2017-09-03,11,Phoenix Mercury,TRUE,20,home +400927595,2017,2,2017-09-03,16,Washington Mystics,FALSE,8,away +400927595,2017,2,2017-09-03,8,Minnesota Lynx,TRUE,16,home +400927591,2017,2,2017-09-03,9,New York Liberty,TRUE,3,away +400927591,2017,2,2017-09-03,3,Dallas Wings,FALSE,9,home +400927590,2017,2,2017-09-02,17,San Antonio Stars,TRUE,5,away +400927590,2017,2,2017-09-02,5,Indiana Fever,FALSE,17,home +400927589,2017,2,2017-09-01,20,Atlanta Dream,FALSE,6,away +400927589,2017,2,2017-09-01,6,Los Angeles Sparks,TRUE,20,home +400927588,2017,2,2017-09-01,18,Connecticut Sun,FALSE,11,away +400927588,2017,2,2017-09-01,11,Phoenix Mercury,TRUE,18,home +400927587,2017,2,2017-09-01,19,Chicago Sky,FALSE,8,away +400927587,2017,2,2017-09-01,8,Minnesota Lynx,TRUE,19,home +400927586,2017,2,2017-09-01,17,San Antonio Stars,FALSE,9,away +400927586,2017,2,2017-09-01,9,New York Liberty,TRUE,17,home +400927585,2017,2,2017-09-01,14,Seattle Storm,FALSE,16,away +400927585,2017,2,2017-09-01,16,Washington Mystics,TRUE,14,home +400927584,2017,2,2017-08-30,3,Dallas Wings,TRUE,19,away +400927584,2017,2,2017-08-30,19,Chicago Sky,FALSE,3,home +400927583,2017,2,2017-08-30,8,Minnesota Lynx,TRUE,5,away +400927583,2017,2,2017-08-30,5,Indiana Fever,FALSE,8,home +400973288,2017,2,2017-08-29,18,Connecticut Sun,TRUE,16,away +400973288,2017,2,2017-08-29,16,Washington Mystics,FALSE,18,home +400927582,2017,2,2017-08-27,11,Phoenix Mercury,TRUE,14,away +400927582,2017,2,2017-08-27,14,Seattle Storm,FALSE,11,home +400927581,2017,2,2017-08-27,8,Minnesota Lynx,FALSE,6,away +400927581,2017,2,2017-08-27,6,Los Angeles Sparks,TRUE,8,home +400927580,2017,2,2017-08-27,19,Chicago Sky,FALSE,9,away +400927580,2017,2,2017-08-27,9,New York Liberty,TRUE,19,home +400927579,2017,2,2017-08-26,3,Dallas Wings,TRUE,16,away +400927579,2017,2,2017-08-26,16,Washington Mystics,FALSE,3,home +400927578,2017,2,2017-08-26,5,Indiana Fever,FALSE,20,away +400927578,2017,2,2017-08-26,20,Atlanta Dream,TRUE,5,home +400927576,2017,2,2017-08-25,16,Washington Mystics,FALSE,9,away +400927576,2017,2,2017-08-25,9,New York Liberty,TRUE,16,home +400927575,2017,2,2017-08-25,19,Chicago Sky,TRUE,18,away +400927575,2017,2,2017-08-25,18,Connecticut Sun,FALSE,19,home +400927577,2017,2,2017-08-25,8,Minnesota Lynx,TRUE,17,away +400927577,2017,2,2017-08-25,17,San Antonio Stars,FALSE,8,home +400927574,2017,2,2017-08-24,6,Los Angeles Sparks,TRUE,11,away +400927574,2017,2,2017-08-24,11,Phoenix Mercury,FALSE,6,home +400927571,2017,2,2017-08-23,3,Dallas Wings,FALSE,18,away +400927571,2017,2,2017-08-23,18,Connecticut Sun,TRUE,3,home +400927572,2017,2,2017-08-23,14,Seattle Storm,FALSE,20,away +400927572,2017,2,2017-08-23,20,Atlanta Dream,TRUE,14,home +400927573,2017,2,2017-08-23,9,New York Liberty,TRUE,5,away +400927573,2017,2,2017-08-23,5,Indiana Fever,FALSE,9,home +400927570,2017,2,2017-08-22,17,San Antonio Stars,FALSE,6,away +400927570,2017,2,2017-08-22,6,Los Angeles Sparks,TRUE,17,home +400927569,2017,2,2017-08-22,11,Phoenix Mercury,FALSE,8,away +400927569,2017,2,2017-08-22,8,Minnesota Lynx,TRUE,11,home +400927568,2017,2,2017-08-20,14,Seattle Storm,TRUE,19,away +400927568,2017,2,2017-08-20,19,Chicago Sky,FALSE,14,home +400927567,2017,2,2017-08-20,16,Washington Mystics,TRUE,5,away +400927567,2017,2,2017-08-20,5,Indiana Fever,FALSE,16,home +400927565,2017,2,2017-08-20,11,Phoenix Mercury,FALSE,18,away +400927565,2017,2,2017-08-20,18,Connecticut Sun,TRUE,11,home +400927566,2017,2,2017-08-20,8,Minnesota Lynx,FALSE,9,away +400927566,2017,2,2017-08-20,9,New York Liberty,TRUE,8,home +400927564,2017,2,2017-08-19,20,Atlanta Dream,FALSE,3,away +400927564,2017,2,2017-08-19,3,Dallas Wings,TRUE,20,home +400927563,2017,2,2017-08-18,17,San Antonio Stars,FALSE,14,away +400927563,2017,2,2017-08-18,14,Seattle Storm,TRUE,17,home +400927562,2017,2,2017-08-18,6,Los Angeles Sparks,TRUE,19,away +400927562,2017,2,2017-08-18,19,Chicago Sky,FALSE,6,home +400927561,2017,2,2017-08-18,5,Indiana Fever,FALSE,8,away +400927561,2017,2,2017-08-18,8,Minnesota Lynx,TRUE,5,home +400927559,2017,2,2017-08-18,9,New York Liberty,TRUE,18,away +400927559,2017,2,2017-08-18,18,Connecticut Sun,FALSE,9,home +400927560,2017,2,2017-08-18,11,Phoenix Mercury,TRUE,16,away +400927560,2017,2,2017-08-18,16,Washington Mystics,FALSE,11,home +400927558,2017,2,2017-08-16,8,Minnesota Lynx,FALSE,14,away +400927558,2017,2,2017-08-16,14,Seattle Storm,TRUE,8,home +400927557,2017,2,2017-08-16,6,Los Angeles Sparks,TRUE,16,away +400927557,2017,2,2017-08-16,16,Washington Mystics,FALSE,6,home +400927556,2017,2,2017-08-15,18,Connecticut Sun,TRUE,20,away +400927556,2017,2,2017-08-15,20,Atlanta Dream,FALSE,18,home +400927555,2017,2,2017-08-13,6,Los Angeles Sparks,FALSE,9,away +400927555,2017,2,2017-08-13,9,New York Liberty,TRUE,6,home +400927554,2017,2,2017-08-12,14,Seattle Storm,TRUE,11,away +400927554,2017,2,2017-08-12,11,Phoenix Mercury,FALSE,14,home +400927553,2017,2,2017-08-12,20,Atlanta Dream,FALSE,17,away +400927553,2017,2,2017-08-12,17,San Antonio Stars,TRUE,20,home +400927552,2017,2,2017-08-12,5,Indiana Fever,FALSE,16,away +400927552,2017,2,2017-08-12,16,Washington Mystics,TRUE,5,home +400927551,2017,2,2017-08-12,3,Dallas Wings,FALSE,18,away +400927551,2017,2,2017-08-12,18,Connecticut Sun,TRUE,3,home +400927550,2017,2,2017-08-11,6,Los Angeles Sparks,TRUE,8,away +400927550,2017,2,2017-08-11,8,Minnesota Lynx,FALSE,6,home +400927549,2017,2,2017-08-11,9,New York Liberty,TRUE,20,away +400927549,2017,2,2017-08-11,20,Atlanta Dream,FALSE,9,home +400927547,2017,2,2017-08-10,17,San Antonio Stars,FALSE,19,away +400927547,2017,2,2017-08-10,19,Chicago Sky,TRUE,17,home +400927548,2017,2,2017-08-10,11,Phoenix Mercury,TRUE,3,away +400927548,2017,2,2017-08-10,3,Dallas Wings,FALSE,11,home +400927544,2017,2,2017-08-08,5,Indiana Fever,FALSE,9,away +400927544,2017,2,2017-08-08,9,New York Liberty,TRUE,5,home +400927545,2017,2,2017-08-08,14,Seattle Storm,FALSE,18,away +400927545,2017,2,2017-08-08,18,Connecticut Sun,TRUE,14,home +400927546,2017,2,2017-08-08,8,Minnesota Lynx,TRUE,20,away +400927546,2017,2,2017-08-08,20,Atlanta Dream,FALSE,8,home +400927543,2017,2,2017-08-06,8,Minnesota Lynx,FALSE,5,away +400927543,2017,2,2017-08-06,5,Indiana Fever,TRUE,8,home +400927542,2017,2,2017-08-06,6,Los Angeles Sparks,FALSE,3,away +400927542,2017,2,2017-08-06,3,Dallas Wings,TRUE,6,home +400927541,2017,2,2017-08-06,11,Phoenix Mercury,FALSE,16,away +400927541,2017,2,2017-08-06,16,Washington Mystics,TRUE,11,home +400927539,2017,2,2017-08-05,20,Atlanta Dream,FALSE,19,away +400927539,2017,2,2017-08-05,19,Chicago Sky,TRUE,20,home +400927540,2017,2,2017-08-05,14,Seattle Storm,FALSE,17,away +400927540,2017,2,2017-08-05,17,San Antonio Stars,TRUE,14,home +400927538,2017,2,2017-08-04,9,New York Liberty,FALSE,6,away +400927538,2017,2,2017-08-04,6,Los Angeles Sparks,TRUE,9,home +400927536,2017,2,2017-08-04,14,Seattle Storm,FALSE,3,away +400927536,2017,2,2017-08-04,3,Dallas Wings,TRUE,14,home +400927537,2017,2,2017-08-04,16,Washington Mystics,FALSE,17,away +400927537,2017,2,2017-08-04,17,San Antonio Stars,TRUE,16,home +400927534,2017,2,2017-08-04,11,Phoenix Mercury,FALSE,18,away +400927534,2017,2,2017-08-04,18,Connecticut Sun,TRUE,11,home +400927535,2017,2,2017-08-04,19,Chicago Sky,TRUE,5,away +400927535,2017,2,2017-08-04,5,Indiana Fever,FALSE,19,home +400927533,2017,2,2017-08-03,20,Atlanta Dream,FALSE,8,away +400927533,2017,2,2017-08-03,8,Minnesota Lynx,TRUE,20,home +400927532,2017,2,2017-08-01,9,New York Liberty,FALSE,17,away +400927532,2017,2,2017-08-01,17,San Antonio Stars,TRUE,9,home +400927531,2017,2,2017-07-30,14,Seattle Storm,FALSE,8,away +400927531,2017,2,2017-07-30,8,Minnesota Lynx,TRUE,14,home +400927529,2017,2,2017-07-30,17,San Antonio Stars,FALSE,11,away +400927529,2017,2,2017-07-30,11,Phoenix Mercury,TRUE,17,home +400927530,2017,2,2017-07-30,9,New York Liberty,TRUE,19,away +400927530,2017,2,2017-07-30,19,Chicago Sky,FALSE,9,home +400927528,2017,2,2017-07-30,3,Dallas Wings,FALSE,6,away +400927528,2017,2,2017-07-30,6,Los Angeles Sparks,TRUE,3,home +400927526,2017,2,2017-07-30,5,Indiana Fever,FALSE,18,away +400927526,2017,2,2017-07-30,18,Connecticut Sun,TRUE,5,home +400927527,2017,2,2017-07-30,16,Washington Mystics,TRUE,20,away +400927527,2017,2,2017-07-30,20,Atlanta Dream,FALSE,16,home +400927525,2017,2,2017-07-28,3,Dallas Wings,FALSE,14,away +400927525,2017,2,2017-07-28,14,Seattle Storm,TRUE,3,home +400927524,2017,2,2017-07-28,11,Phoenix Mercury,TRUE,19,away +400927524,2017,2,2017-07-28,19,Chicago Sky,FALSE,11,home +400927523,2017,2,2017-07-28,6,Los Angeles Sparks,TRUE,17,away +400927523,2017,2,2017-07-28,17,San Antonio Stars,FALSE,6,home +400927522,2017,2,2017-07-28,8,Minnesota Lynx,TRUE,20,away +400927522,2017,2,2017-07-28,20,Atlanta Dream,FALSE,8,home +400927521,2017,2,2017-07-28,9,New York Liberty,TRUE,5,away +400927521,2017,2,2017-07-28,5,Indiana Fever,FALSE,9,home +400927519,2017,2,2017-07-25,14,Seattle Storm,FALSE,6,away +400927519,2017,2,2017-07-25,6,Los Angeles Sparks,TRUE,14,home +400927517,2017,2,2017-07-25,9,New York Liberty,FALSE,8,away +400927517,2017,2,2017-07-25,8,Minnesota Lynx,TRUE,9,home +400927518,2017,2,2017-07-25,5,Indiana Fever,FALSE,3,away +400927518,2017,2,2017-07-25,3,Dallas Wings,TRUE,5,home +400927515,2017,2,2017-07-25,19,Chicago Sky,FALSE,18,away +400927515,2017,2,2017-07-25,18,Connecticut Sun,TRUE,19,home +400927516,2017,2,2017-07-25,11,Phoenix Mercury,FALSE,20,away +400927516,2017,2,2017-07-25,20,Atlanta Dream,TRUE,11,home +400927514,2017,2,2017-07-25,16,Washington Mystics,TRUE,17,away +400927514,2017,2,2017-07-25,17,San Antonio Stars,FALSE,16,home +400968106,2017,2,2017-07-22,98,EAST,FALSE,99,away +400968106,2017,2,2017-07-22,99,WEST,TRUE,98,home +400927513,2017,2,2017-07-20,5,Indiana Fever,FALSE,17,away +400927513,2017,2,2017-07-20,17,San Antonio Stars,TRUE,5,home +400927512,2017,2,2017-07-20,19,Chicago Sky,TRUE,6,away +400927512,2017,2,2017-07-20,6,Los Angeles Sparks,FALSE,19,home +400927511,2017,2,2017-07-19,5,Indiana Fever,TRUE,11,away +400927511,2017,2,2017-07-19,11,Phoenix Mercury,FALSE,5,home +400927510,2017,2,2017-07-19,3,Dallas Wings,FALSE,8,away +400927510,2017,2,2017-07-19,8,Minnesota Lynx,TRUE,3,home +400927509,2017,2,2017-07-19,20,Atlanta Dream,FALSE,16,away +400927509,2017,2,2017-07-19,16,Washington Mystics,TRUE,20,home +400927508,2017,2,2017-07-19,18,Connecticut Sun,FALSE,9,away +400927508,2017,2,2017-07-19,9,New York Liberty,TRUE,18,home +400927507,2017,2,2017-07-18,19,Chicago Sky,TRUE,14,away +400927507,2017,2,2017-07-18,14,Seattle Storm,FALSE,19,home +400927506,2017,2,2017-07-18,17,San Antonio Stars,FALSE,20,away +400927506,2017,2,2017-07-18,20,Atlanta Dream,TRUE,17,home +400927505,2017,2,2017-07-17,5,Indiana Fever,FALSE,6,away +400927505,2017,2,2017-07-17,6,Los Angeles Sparks,TRUE,5,home +400927504,2017,2,2017-07-16,11,Phoenix Mercury,FALSE,8,away +400927504,2017,2,2017-07-16,8,Minnesota Lynx,TRUE,11,home +400927503,2017,2,2017-07-16,19,Chicago Sky,FALSE,3,away +400927503,2017,2,2017-07-16,3,Dallas Wings,TRUE,19,home +400927501,2017,2,2017-07-16,17,San Antonio Stars,FALSE,18,away +400927501,2017,2,2017-07-16,18,Connecticut Sun,TRUE,17,home +400927502,2017,2,2017-07-16,16,Washington Mystics,FALSE,9,away +400927502,2017,2,2017-07-16,9,New York Liberty,TRUE,16,home +400927500,2017,2,2017-07-15,20,Atlanta Dream,FALSE,14,away +400927500,2017,2,2017-07-15,14,Seattle Storm,TRUE,20,home +400927499,2017,2,2017-07-14,8,Minnesota Lynx,TRUE,11,away +400927499,2017,2,2017-07-14,11,Phoenix Mercury,FALSE,8,home +400927498,2017,2,2017-07-14,19,Chicago Sky,TRUE,9,away +400927498,2017,2,2017-07-14,9,New York Liberty,FALSE,19,home +400927497,2017,2,2017-07-14,16,Washington Mystics,TRUE,5,away +400927497,2017,2,2017-07-14,5,Indiana Fever,FALSE,16,home +400927496,2017,2,2017-07-13,18,Connecticut Sun,FALSE,6,away +400927496,2017,2,2017-07-13,6,Los Angeles Sparks,TRUE,18,home +400927495,2017,2,2017-07-12,20,Atlanta Dream,FALSE,11,away +400927495,2017,2,2017-07-12,11,Phoenix Mercury,TRUE,20,home +400927494,2017,2,2017-07-12,18,Connecticut Sun,TRUE,14,away +400927494,2017,2,2017-07-12,14,Seattle Storm,FALSE,18,home +400927493,2017,2,2017-07-12,3,Dallas Wings,FALSE,19,away +400927493,2017,2,2017-07-12,19,Chicago Sky,TRUE,3,home +400927492,2017,2,2017-07-12,17,San Antonio Stars,TRUE,5,away +400927492,2017,2,2017-07-12,5,Indiana Fever,FALSE,17,home +400927491,2017,2,2017-07-09,9,New York Liberty,FALSE,11,away +400927491,2017,2,2017-07-09,11,Phoenix Mercury,TRUE,9,home +400927490,2017,2,2017-07-09,3,Dallas Wings,FALSE,20,away +400927490,2017,2,2017-07-09,20,Atlanta Dream,TRUE,3,home +400927489,2017,2,2017-07-08,6,Los Angeles Sparks,FALSE,14,away +400927489,2017,2,2017-07-08,14,Seattle Storm,TRUE,6,home +400927488,2017,2,2017-07-08,8,Minnesota Lynx,FALSE,19,away +400927488,2017,2,2017-07-08,19,Chicago Sky,TRUE,8,home +400927487,2017,2,2017-07-08,16,Washington Mystics,FALSE,18,away +400927487,2017,2,2017-07-08,18,Connecticut Sun,TRUE,16,home +400927486,2017,2,2017-07-07,11,Phoenix Mercury,TRUE,17,away +400927486,2017,2,2017-07-07,17,San Antonio Stars,FALSE,11,home +400927485,2017,2,2017-07-07,5,Indiana Fever,FALSE,20,away +400927485,2017,2,2017-07-07,20,Atlanta Dream,TRUE,5,home +400927484,2017,2,2017-07-06,9,New York Liberty,TRUE,14,away +400927484,2017,2,2017-07-06,14,Seattle Storm,FALSE,9,home +400927483,2017,2,2017-07-06,6,Los Angeles Sparks,FALSE,8,away +400927483,2017,2,2017-07-06,8,Minnesota Lynx,TRUE,6,home +400927482,2017,2,2017-07-05,16,Washington Mystics,FALSE,11,away +400927482,2017,2,2017-07-05,11,Phoenix Mercury,TRUE,16,home +400927480,2017,2,2017-07-05,20,Atlanta Dream,FALSE,3,away +400927480,2017,2,2017-07-05,3,Dallas Wings,TRUE,20,home +400927481,2017,2,2017-07-05,18,Connecticut Sun,TRUE,17,away +400927481,2017,2,2017-07-05,17,San Antonio Stars,FALSE,18,home +400927479,2017,2,2017-07-02,9,New York Liberty,FALSE,20,away +400927479,2017,2,2017-07-02,20,Atlanta Dream,TRUE,9,home +400927478,2017,2,2017-07-02,16,Washington Mystics,FALSE,6,away +400927478,2017,2,2017-07-02,6,Los Angeles Sparks,TRUE,16,home +400927477,2017,2,2017-07-01,14,Seattle Storm,TRUE,3,away +400927477,2017,2,2017-07-01,3,Dallas Wings,FALSE,14,home +400927476,2017,2,2017-07-01,18,Connecticut Sun,TRUE,5,away +400927476,2017,2,2017-07-01,5,Indiana Fever,FALSE,18,home +400927475,2017,2,2017-06-30,8,Minnesota Lynx,TRUE,11,away +400927475,2017,2,2017-06-30,11,Phoenix Mercury,FALSE,8,home +400927474,2017,2,2017-06-30,19,Chicago Sky,FALSE,17,away +400927474,2017,2,2017-06-30,17,San Antonio Stars,TRUE,19,home +400927473,2017,2,2017-06-30,6,Los Angeles Sparks,TRUE,20,away +400927473,2017,2,2017-06-30,20,Atlanta Dream,FALSE,6,home +400927472,2017,2,2017-06-29,14,Seattle Storm,FALSE,18,away +400927472,2017,2,2017-06-29,18,Connecticut Sun,TRUE,14,home +400927471,2017,2,2017-06-29,9,New York Liberty,FALSE,16,away +400927471,2017,2,2017-06-29,16,Washington Mystics,TRUE,9,home +400927470,2017,2,2017-06-28,5,Indiana Fever,TRUE,19,away +400927470,2017,2,2017-06-28,19,Chicago Sky,FALSE,5,home +400927469,2017,2,2017-06-27,6,Los Angeles Sparks,TRUE,18,away +400927469,2017,2,2017-06-27,18,Connecticut Sun,FALSE,6,home +400927468,2017,2,2017-06-27,14,Seattle Storm,FALSE,16,away +400927468,2017,2,2017-06-27,16,Washington Mystics,TRUE,14,home +400927467,2017,2,2017-06-25,17,San Antonio Stars,FALSE,8,away +400927467,2017,2,2017-06-25,8,Minnesota Lynx,TRUE,17,home +400927466,2017,2,2017-06-25,16,Washington Mystics,TRUE,19,away +400927466,2017,2,2017-06-25,19,Chicago Sky,FALSE,16,home +400927465,2017,2,2017-06-25,18,Connecticut Sun,FALSE,3,away +400927465,2017,2,2017-06-25,3,Dallas Wings,TRUE,18,home +400927464,2017,2,2017-06-24,6,Los Angeles Sparks,TRUE,5,away +400927464,2017,2,2017-06-24,5,Indiana Fever,FALSE,6,home +400927463,2017,2,2017-06-23,11,Phoenix Mercury,TRUE,14,away +400927463,2017,2,2017-06-23,14,Seattle Storm,FALSE,11,home +400927461,2017,2,2017-06-23,16,Washington Mystics,FALSE,8,away +400927461,2017,2,2017-06-23,8,Minnesota Lynx,TRUE,16,home +400927462,2017,2,2017-06-23,3,Dallas Wings,TRUE,17,away +400927462,2017,2,2017-06-23,17,San Antonio Stars,FALSE,3,home +400927459,2017,2,2017-06-23,18,Connecticut Sun,TRUE,9,away +400927459,2017,2,2017-06-23,9,New York Liberty,FALSE,18,home +400927460,2017,2,2017-06-23,19,Chicago Sky,TRUE,20,away +400927460,2017,2,2017-06-23,20,Atlanta Dream,FALSE,19,home +400927458,2017,2,2017-06-21,17,San Antonio Stars,FALSE,3,away +400927458,2017,2,2017-06-21,3,Dallas Wings,TRUE,17,home +400927457,2017,2,2017-06-18,17,San Antonio Stars,FALSE,14,away +400927457,2017,2,2017-06-18,14,Seattle Storm,TRUE,17,home +400927456,2017,2,2017-06-18,5,Indiana Fever,TRUE,19,away +400927456,2017,2,2017-06-18,19,Chicago Sky,FALSE,5,home +400927455,2017,2,2017-06-18,11,Phoenix Mercury,FALSE,6,away +400927455,2017,2,2017-06-18,6,Los Angeles Sparks,TRUE,11,home +400927454,2017,2,2017-06-18,3,Dallas Wings,TRUE,16,away +400927454,2017,2,2017-06-18,16,Washington Mystics,FALSE,3,home +400927453,2017,2,2017-06-17,18,Connecticut Sun,TRUE,8,away +400927453,2017,2,2017-06-17,8,Minnesota Lynx,FALSE,18,home +400927452,2017,2,2017-06-16,19,Chicago Sky,FALSE,11,away +400927452,2017,2,2017-06-16,11,Phoenix Mercury,TRUE,19,home +400927451,2017,2,2017-06-16,9,New York Liberty,TRUE,3,away +400927451,2017,2,2017-06-16,3,Dallas Wings,FALSE,9,home +400927450,2017,2,2017-06-15,17,San Antonio Stars,FALSE,6,away +400927450,2017,2,2017-06-15,6,Los Angeles Sparks,TRUE,17,home +400927449,2017,2,2017-06-15,20,Atlanta Dream,FALSE,5,away +400927449,2017,2,2017-06-15,5,Indiana Fever,TRUE,20,home +400927448,2017,2,2017-06-14,9,New York Liberty,FALSE,18,away +400927448,2017,2,2017-06-14,18,Connecticut Sun,TRUE,9,home +400927446,2017,2,2017-06-13,20,Atlanta Dream,TRUE,14,away +400927446,2017,2,2017-06-13,14,Seattle Storm,FALSE,20,home +400927447,2017,2,2017-06-13,3,Dallas Wings,FALSE,6,away +400927447,2017,2,2017-06-13,6,Los Angeles Sparks,TRUE,3,home +400927445,2017,2,2017-06-11,8,Minnesota Lynx,TRUE,3,away +400927445,2017,2,2017-06-11,3,Dallas Wings,FALSE,8,home +400927443,2017,2,2017-06-11,14,Seattle Storm,FALSE,9,away +400927443,2017,2,2017-06-11,9,New York Liberty,TRUE,14,home +400927444,2017,2,2017-06-11,5,Indiana Fever,FALSE,16,away +400927444,2017,2,2017-06-11,16,Washington Mystics,TRUE,5,home +400927442,2017,2,2017-06-10,6,Los Angeles Sparks,TRUE,11,away +400927442,2017,2,2017-06-10,11,Phoenix Mercury,FALSE,6,home +400927441,2017,2,2017-06-10,19,Chicago Sky,TRUE,17,away +400927441,2017,2,2017-06-10,17,San Antonio Stars,FALSE,19,home +400927440,2017,2,2017-06-10,20,Atlanta Dream,FALSE,18,away +400927440,2017,2,2017-06-10,18,Connecticut Sun,TRUE,20,home +400927439,2017,2,2017-06-09,6,Los Angeles Sparks,FALSE,3,away +400927439,2017,2,2017-06-09,3,Dallas Wings,TRUE,6,home +400927437,2017,2,2017-06-09,8,Minnesota Lynx,TRUE,16,away +400927437,2017,2,2017-06-09,16,Washington Mystics,FALSE,8,home +400927438,2017,2,2017-06-09,14,Seattle Storm,FALSE,5,away +400927438,2017,2,2017-06-09,5,Indiana Fever,TRUE,14,home +400927436,2017,2,2017-06-07,11,Phoenix Mercury,TRUE,5,away +400927436,2017,2,2017-06-07,5,Indiana Fever,FALSE,11,home +400927435,2017,2,2017-06-07,20,Atlanta Dream,FALSE,9,away +400927435,2017,2,2017-06-07,9,New York Liberty,TRUE,20,home +400927434,2017,2,2017-06-06,19,Chicago Sky,FALSE,6,away +400927434,2017,2,2017-06-06,6,Los Angeles Sparks,TRUE,19,home +400927432,2017,2,2017-06-06,16,Washington Mystics,TRUE,3,away +400927432,2017,2,2017-06-06,3,Dallas Wings,FALSE,16,home +400927433,2017,2,2017-06-06,14,Seattle Storm,TRUE,17,away +400927433,2017,2,2017-06-06,17,San Antonio Stars,FALSE,14,home +400927430,2017,2,2017-06-04,11,Phoenix Mercury,FALSE,9,away +400927430,2017,2,2017-06-04,9,New York Liberty,TRUE,11,home +400927431,2017,2,2017-06-04,20,Atlanta Dream,FALSE,16,away +400927431,2017,2,2017-06-04,16,Washington Mystics,TRUE,20,home +400927429,2017,2,2017-06-03,8,Minnesota Lynx,TRUE,14,away +400927429,2017,2,2017-06-03,14,Seattle Storm,FALSE,8,home +400927428,2017,2,2017-06-03,18,Connecticut Sun,TRUE,17,away +400927428,2017,2,2017-06-03,17,San Antonio Stars,FALSE,18,home +400927427,2017,2,2017-06-03,3,Dallas Wings,FALSE,5,away +400927427,2017,2,2017-06-03,5,Indiana Fever,TRUE,3,home +400927426,2017,2,2017-06-02,3,Dallas Wings,FALSE,9,away +400927426,2017,2,2017-06-02,9,New York Liberty,TRUE,3,home +400927425,2017,2,2017-06-01,11,Phoenix Mercury,TRUE,19,away +400927425,2017,2,2017-06-01,19,Chicago Sky,FALSE,11,home +400927423,2017,2,2017-05-31,18,Connecticut Sun,FALSE,16,away +400927423,2017,2,2017-05-31,16,Washington Mystics,TRUE,18,home +400927424,2017,2,2017-05-31,17,San Antonio Stars,FALSE,20,away +400927424,2017,2,2017-05-31,20,Atlanta Dream,TRUE,17,home +400927422,2017,2,2017-05-30,5,Indiana Fever,FALSE,3,away +400927422,2017,2,2017-05-30,3,Dallas Wings,TRUE,5,home +400927421,2017,2,2017-05-30,6,Los Angeles Sparks,TRUE,9,away +400927421,2017,2,2017-05-30,9,New York Liberty,FALSE,6,home +400927419,2017,2,2017-05-28,5,Indiana Fever,FALSE,14,away +400927419,2017,2,2017-05-28,14,Seattle Storm,TRUE,5,home +400927420,2017,2,2017-05-28,17,San Antonio Stars,FALSE,8,away +400927420,2017,2,2017-05-28,8,Minnesota Lynx,TRUE,17,home +400927418,2017,2,2017-05-28,18,Connecticut Sun,TRUE,19,away +400927418,2017,2,2017-05-28,19,Chicago Sky,FALSE,18,home +400927417,2017,2,2017-05-27,3,Dallas Wings,FALSE,11,away +400927417,2017,2,2017-05-27,11,Phoenix Mercury,TRUE,3,home +400927416,2017,2,2017-05-27,6,Los Angeles Sparks,FALSE,20,away +400927416,2017,2,2017-05-27,20,Atlanta Dream,TRUE,6,home +400927415,2017,2,2017-05-26,9,New York Liberty,FALSE,14,away +400927415,2017,2,2017-05-26,14,Seattle Storm,TRUE,9,home +400927413,2017,2,2017-05-26,8,Minnesota Lynx,TRUE,18,away +400927413,2017,2,2017-05-26,18,Connecticut Sun,FALSE,8,home +400927414,2017,2,2017-05-26,19,Chicago Sky,FALSE,16,away +400927414,2017,2,2017-05-26,16,Washington Mystics,TRUE,19,home +400927412,2017,2,2017-05-25,3,Dallas Wings,TRUE,17,away +400927412,2017,2,2017-05-25,17,San Antonio Stars,FALSE,3,home +400927411,2017,2,2017-05-24,6,Los Angeles Sparks,FALSE,5,away +400927411,2017,2,2017-05-24,5,Indiana Fever,TRUE,6,home +400927410,2017,2,2017-05-24,16,Washington Mystics,TRUE,19,away +400927410,2017,2,2017-05-24,19,Chicago Sky,FALSE,16,home +400927409,2017,2,2017-05-23,9,New York Liberty,TRUE,11,away +400927409,2017,2,2017-05-23,11,Phoenix Mercury,FALSE,9,home +400927408,2017,2,2017-05-23,18,Connecticut Sun,FALSE,8,away +400927408,2017,2,2017-05-23,8,Minnesota Lynx,TRUE,18,home +400927407,2017,2,2017-05-21,16,Washington Mystics,FALSE,14,away +400927407,2017,2,2017-05-21,14,Seattle Storm,TRUE,16,home +400927406,2017,2,2017-05-21,19,Chicago Sky,TRUE,20,away +400927406,2017,2,2017-05-21,20,Atlanta Dream,FALSE,19,home +400927405,2017,2,2017-05-20,8,Minnesota Lynx,TRUE,3,away +400927405,2017,2,2017-05-20,3,Dallas Wings,FALSE,8,home +400927404,2017,2,2017-05-20,18,Connecticut Sun,FALSE,5,away +400927404,2017,2,2017-05-20,5,Indiana Fever,TRUE,18,home +400927403,2017,2,2017-05-19,16,Washington Mystics,FALSE,6,away +400927403,2017,2,2017-05-19,6,Los Angeles Sparks,TRUE,16,home +400927402,2017,2,2017-05-19,20,Atlanta Dream,TRUE,19,away +400927402,2017,2,2017-05-19,19,Chicago Sky,FALSE,20,home +400927401,2017,2,2017-05-19,11,Phoenix Mercury,TRUE,17,away +400927401,2017,2,2017-05-19,17,San Antonio Stars,FALSE,11,home +400927400,2017,2,2017-05-18,8,Minnesota Lynx,TRUE,9,away +400927400,2017,2,2017-05-18,9,New York Liberty,FALSE,8,home +400927399,2017,2,2017-05-17,5,Indiana Fever,FALSE,11,away +400927399,2017,2,2017-05-17,11,Phoenix Mercury,TRUE,5,home +400927397,2017,2,2017-05-14,5,Indiana Fever,FALSE,14,away +400927397,2017,2,2017-05-14,14,Seattle Storm,TRUE,5,home +400927398,2017,2,2017-05-14,19,Chicago Sky,FALSE,8,away +400927398,2017,2,2017-05-14,8,Minnesota Lynx,TRUE,19,home +400927396,2017,2,2017-05-14,3,Dallas Wings,TRUE,11,away +400927396,2017,2,2017-05-14,11,Phoenix Mercury,FALSE,3,home +400927395,2017,2,2017-05-14,17,San Antonio Stars,FALSE,16,away +400927395,2017,2,2017-05-14,16,Washington Mystics,TRUE,17,home +400927394,2017,2,2017-05-13,20,Atlanta Dream,TRUE,18,away +400927394,2017,2,2017-05-13,18,Connecticut Sun,FALSE,20,home +400927393,2017,2,2017-05-13,14,Seattle Storm,FALSE,6,away +400927393,2017,2,2017-05-13,6,Los Angeles Sparks,TRUE,14,home +400927392,2017,2,2017-05-13,17,San Antonio Stars,FALSE,9,away +400927392,2017,2,2017-05-13,9,New York Liberty,TRUE,17,home +401079695,2018,3,2018-09-12,14,Seattle Storm,TRUE,16,away +401079695,2018,3,2018-09-12,16,Washington Mystics,FALSE,14,home +401079694,2018,3,2018-09-09,16,Washington Mystics,FALSE,14,away +401079694,2018,3,2018-09-09,14,Seattle Storm,TRUE,16,home +401079693,2018,3,2018-09-07,16,Washington Mystics,FALSE,14,away +401079693,2018,3,2018-09-07,14,Seattle Storm,TRUE,16,home +401074464,2018,3,2018-09-04,11,Phoenix Mercury,FALSE,14,away +401074464,2018,3,2018-09-04,14,Seattle Storm,TRUE,11,home +401074465,2018,3,2018-09-04,16,Washington Mystics,TRUE,20,away +401074465,2018,3,2018-09-04,20,Atlanta Dream,FALSE,16,home +401074463,2018,3,2018-09-02,14,Seattle Storm,FALSE,11,away +401074463,2018,3,2018-09-02,11,Phoenix Mercury,TRUE,14,home +401074462,2018,3,2018-09-02,20,Atlanta Dream,FALSE,16,away +401074462,2018,3,2018-09-02,16,Washington Mystics,TRUE,20,home +401074461,2018,3,2018-08-31,14,Seattle Storm,FALSE,11,away +401074461,2018,3,2018-08-31,11,Phoenix Mercury,TRUE,14,home +401074473,2018,3,2018-08-31,20,Atlanta Dream,TRUE,16,away +401074473,2018,3,2018-08-31,16,Washington Mystics,FALSE,20,home +401074458,2018,3,2018-08-28,11,Phoenix Mercury,FALSE,14,away +401074458,2018,3,2018-08-28,14,Seattle Storm,TRUE,11,home +401074460,2018,3,2018-08-28,16,Washington Mystics,FALSE,20,away +401074460,2018,3,2018-08-28,20,Atlanta Dream,TRUE,16,home +401074457,2018,3,2018-08-26,11,Phoenix Mercury,FALSE,14,away +401074457,2018,3,2018-08-26,14,Seattle Storm,TRUE,11,home +401074459,2018,3,2018-08-26,16,Washington Mystics,TRUE,20,away +401074459,2018,3,2018-08-26,20,Atlanta Dream,FALSE,16,home +401074456,2018,3,2018-08-23,11,Phoenix Mercury,TRUE,18,away +401074456,2018,3,2018-08-23,18,Connecticut Sun,FALSE,11,home +401074455,2018,3,2018-08-23,6,Los Angeles Sparks,FALSE,16,away +401074455,2018,3,2018-08-23,16,Washington Mystics,TRUE,6,home +401074454,2018,3,2018-08-21,8,Minnesota Lynx,FALSE,6,away +401074454,2018,3,2018-08-21,6,Los Angeles Sparks,TRUE,8,home +401074453,2018,3,2018-08-21,3,Dallas Wings,FALSE,11,away +401074453,2018,3,2018-08-21,11,Phoenix Mercury,TRUE,3,home +401018983,2018,2,2018-08-19,3,Dallas Wings,FALSE,14,away +401018983,2018,2,2018-08-19,14,Seattle Storm,TRUE,3,home +401018984,2018,2,2018-08-19,16,Washington Mystics,FALSE,8,away +401018984,2018,2,2018-08-19,8,Minnesota Lynx,TRUE,16,home +401018980,2018,2,2018-08-19,20,Atlanta Dream,TRUE,17,away +401018980,2018,2,2018-08-19,17,Las Vegas Aces,FALSE,20,home +401018981,2018,2,2018-08-19,9,New York Liberty,FALSE,11,away +401018981,2018,2,2018-08-19,11,Phoenix Mercury,TRUE,9,home +401018982,2018,2,2018-08-19,5,Indiana Fever,TRUE,19,away +401018982,2018,2,2018-08-19,19,Chicago Sky,FALSE,5,home +401018979,2018,2,2018-08-19,6,Los Angeles Sparks,FALSE,18,away +401018979,2018,2,2018-08-19,18,Connecticut Sun,TRUE,6,home +401018978,2018,2,2018-08-18,19,Chicago Sky,TRUE,5,away +401018978,2018,2,2018-08-18,5,Indiana Fever,FALSE,19,home +401018976,2018,2,2018-08-17,20,Atlanta Dream,FALSE,11,away +401018976,2018,2,2018-08-17,11,Phoenix Mercury,TRUE,20,home +401018977,2018,2,2018-08-17,9,New York Liberty,FALSE,14,away +401018977,2018,2,2018-08-17,14,Seattle Storm,TRUE,9,home +401018975,2018,2,2018-08-17,17,Las Vegas Aces,FALSE,3,away +401018975,2018,2,2018-08-17,3,Dallas Wings,TRUE,17,home +401018973,2018,2,2018-08-17,8,Minnesota Lynx,FALSE,18,away +401018973,2018,2,2018-08-17,18,Connecticut Sun,TRUE,8,home +401018974,2018,2,2018-08-17,6,Los Angeles Sparks,FALSE,16,away +401018974,2018,2,2018-08-17,16,Washington Mystics,TRUE,6,home +401018972,2018,2,2018-08-15,9,New York Liberty,FALSE,17,away +401018972,2018,2,2018-08-15,17,Las Vegas Aces,TRUE,9,home +401018971,2018,2,2018-08-15,16,Washington Mystics,TRUE,5,away +401018971,2018,2,2018-08-15,5,Indiana Fever,FALSE,16,home +401018970,2018,2,2018-08-14,9,New York Liberty,FALSE,6,away +401018970,2018,2,2018-08-14,6,Los Angeles Sparks,TRUE,9,home +401018969,2018,2,2018-08-14,19,Chicago Sky,TRUE,8,away +401018969,2018,2,2018-08-14,8,Minnesota Lynx,FALSE,19,home +401018968,2018,2,2018-08-14,3,Dallas Wings,FALSE,18,away +401018968,2018,2,2018-08-14,18,Connecticut Sun,TRUE,3,home +401018966,2018,2,2018-08-12,6,Los Angeles Sparks,FALSE,11,away +401018966,2018,2,2018-08-12,11,Phoenix Mercury,TRUE,6,home +401018967,2018,2,2018-08-12,14,Seattle Storm,TRUE,8,away +401018967,2018,2,2018-08-12,8,Minnesota Lynx,FALSE,14,home +401018964,2018,2,2018-08-12,19,Chicago Sky,FALSE,18,away +401018964,2018,2,2018-08-12,18,Connecticut Sun,TRUE,19,home +401018965,2018,2,2018-08-12,3,Dallas Wings,FALSE,16,away +401018965,2018,2,2018-08-12,16,Washington Mystics,TRUE,3,home +401018963,2018,2,2018-08-12,20,Atlanta Dream,TRUE,9,away +401018963,2018,2,2018-08-12,9,New York Liberty,FALSE,20,home +401018962,2018,2,2018-08-11,5,Indiana Fever,FALSE,17,away +401018962,2018,2,2018-08-11,17,Las Vegas Aces,TRUE,5,home +401018961,2018,2,2018-08-11,3,Dallas Wings,FALSE,20,away +401018961,2018,2,2018-08-11,20,Atlanta Dream,TRUE,3,home +401018960,2018,2,2018-08-10,5,Indiana Fever,FALSE,11,away +401018960,2018,2,2018-08-10,11,Phoenix Mercury,TRUE,5,home +401018959,2018,2,2018-08-10,18,Connecticut Sun,FALSE,19,away +401018959,2018,2,2018-08-10,19,Chicago Sky,TRUE,18,home +401018958,2018,2,2018-08-09,8,Minnesota Lynx,TRUE,17,away +401018958,2018,2,2018-08-09,17,Las Vegas Aces,FALSE,8,home +401018957,2018,2,2018-08-09,6,Los Angeles Sparks,FALSE,20,away +401018957,2018,2,2018-08-09,20,Atlanta Dream,TRUE,6,home +401018956,2018,2,2018-08-09,14,Seattle Storm,FALSE,16,away +401018956,2018,2,2018-08-09,16,Washington Mystics,TRUE,14,home +401018955,2018,2,2018-08-08,18,Connecticut Sun,TRUE,3,away +401018955,2018,2,2018-08-08,3,Dallas Wings,FALSE,18,home +401018954,2018,2,2018-08-08,6,Los Angeles Sparks,TRUE,9,away +401018954,2018,2,2018-08-08,9,New York Liberty,FALSE,6,home +401018953,2018,2,2018-08-07,16,Washington Mystics,TRUE,11,away +401018953,2018,2,2018-08-07,11,Phoenix Mercury,FALSE,16,home +401018952,2018,2,2018-08-07,8,Minnesota Lynx,TRUE,19,away +401018952,2018,2,2018-08-07,19,Chicago Sky,FALSE,8,home +401018950,2018,2,2018-08-07,17,Las Vegas Aces,FALSE,20,away +401018950,2018,2,2018-08-07,20,Atlanta Dream,TRUE,17,home +401018951,2018,2,2018-08-07,14,Seattle Storm,TRUE,5,away +401018951,2018,2,2018-08-07,5,Indiana Fever,FALSE,14,home +401018949,2018,2,2018-08-06,14,Seattle Storm,TRUE,9,away +401018949,2018,2,2018-08-06,9,New York Liberty,FALSE,14,home +401018947,2018,2,2018-08-05,11,Phoenix Mercury,FALSE,6,away +401018947,2018,2,2018-08-05,6,Los Angeles Sparks,TRUE,11,home +401018948,2018,2,2018-08-05,20,Atlanta Dream,TRUE,8,away +401018948,2018,2,2018-08-05,8,Minnesota Lynx,FALSE,20,home +401018946,2018,2,2018-08-05,16,Washington Mystics,TRUE,3,away +401018946,2018,2,2018-08-05,3,Dallas Wings,FALSE,16,home +401018945,2018,2,2018-08-05,17,Las Vegas Aces,FALSE,18,away +401018945,2018,2,2018-08-05,18,Connecticut Sun,TRUE,17,home +401018944,2018,2,2018-08-04,5,Indiana Fever,TRUE,9,away +401018944,2018,2,2018-08-04,9,New York Liberty,FALSE,5,home +401018943,2018,2,2018-08-03,8,Minnesota Lynx,FALSE,14,away +401018943,2018,2,2018-08-03,14,Seattle Storm,TRUE,8,home +401018941,2018,2,2018-08-03,19,Chicago Sky,FALSE,20,away +401018941,2018,2,2018-08-03,20,Atlanta Dream,TRUE,19,home +401018940,2018,2,2018-08-02,8,Minnesota Lynx,FALSE,6,away +401018940,2018,2,2018-08-02,6,Los Angeles Sparks,TRUE,8,home +401018939,2018,2,2018-08-02,3,Dallas Wings,FALSE,5,away +401018939,2018,2,2018-08-02,5,Indiana Fever,TRUE,3,home +401018938,2018,2,2018-08-01,11,Phoenix Mercury,TRUE,17,away +401018938,2018,2,2018-08-01,17,Las Vegas Aces,FALSE,11,home +401018937,2018,2,2018-08-01,9,New York Liberty,FALSE,18,away +401018937,2018,2,2018-08-01,18,Connecticut Sun,TRUE,9,home +401018936,2018,2,2018-07-31,14,Seattle Storm,TRUE,11,away +401018936,2018,2,2018-07-31,11,Phoenix Mercury,FALSE,14,home +401018935,2018,2,2018-07-31,19,Chicago Sky,TRUE,3,away +401018935,2018,2,2018-07-31,3,Dallas Wings,FALSE,19,home +401018934,2018,2,2018-07-31,16,Washington Mystics,TRUE,20,away +401018934,2018,2,2018-07-31,20,Atlanta Dream,FALSE,16,home +401066195,2018,2,2018-07-28,111720,Team Parker,TRUE,111719,away +401066195,2018,2,2018-07-28,111719,Team Delle Donne,FALSE,111720,home +401018933,2018,2,2018-07-25,19,Chicago Sky,TRUE,11,away +401018933,2018,2,2018-07-25,11,Phoenix Mercury,FALSE,19,home +401018932,2018,2,2018-07-24,20,Atlanta Dream,TRUE,6,away +401018932,2018,2,2018-07-24,6,Los Angeles Sparks,FALSE,20,home +401018931,2018,2,2018-07-24,9,New York Liberty,FALSE,8,away +401018931,2018,2,2018-07-24,8,Minnesota Lynx,TRUE,9,home +401018929,2018,2,2018-07-24,16,Washington Mystics,FALSE,18,away +401018929,2018,2,2018-07-24,18,Connecticut Sun,TRUE,16,home +401018930,2018,2,2018-07-24,14,Seattle Storm,TRUE,5,away +401018930,2018,2,2018-07-24,5,Indiana Fever,FALSE,14,home +401018927,2018,2,2018-07-22,5,Indiana Fever,FALSE,17,away +401018927,2018,2,2018-07-22,17,Las Vegas Aces,TRUE,5,home +401018928,2018,2,2018-07-22,6,Los Angeles Sparks,TRUE,19,away +401018928,2018,2,2018-07-22,19,Chicago Sky,FALSE,6,home +401018926,2018,2,2018-07-22,18,Connecticut Sun,TRUE,3,away +401018926,2018,2,2018-07-22,3,Dallas Wings,FALSE,18,home +401018925,2018,2,2018-07-22,14,Seattle Storm,FALSE,20,away +401018925,2018,2,2018-07-22,20,Atlanta Dream,TRUE,14,home +401018924,2018,2,2018-07-21,8,Minnesota Lynx,TRUE,11,away +401018924,2018,2,2018-07-21,11,Phoenix Mercury,FALSE,8,home +401018923,2018,2,2018-07-21,16,Washington Mystics,TRUE,9,away +401018923,2018,2,2018-07-21,9,New York Liberty,FALSE,16,home +401018922,2018,2,2018-07-20,5,Indiana Fever,TRUE,6,away +401018922,2018,2,2018-07-20,6,Los Angeles Sparks,FALSE,5,home +401018921,2018,2,2018-07-20,3,Dallas Wings,FALSE,19,away +401018921,2018,2,2018-07-20,19,Chicago Sky,TRUE,3,home +401018920,2018,2,2018-07-20,14,Seattle Storm,TRUE,18,away +401018920,2018,2,2018-07-20,18,Connecticut Sun,FALSE,14,home +401018919,2018,2,2018-07-19,17,Las Vegas Aces,TRUE,11,away +401018919,2018,2,2018-07-19,11,Phoenix Mercury,FALSE,17,home +401018918,2018,2,2018-07-19,16,Washington Mystics,FALSE,3,away +401018918,2018,2,2018-07-19,3,Dallas Wings,TRUE,16,home +401018917,2018,2,2018-07-19,9,New York Liberty,FALSE,20,away +401018917,2018,2,2018-07-19,20,Atlanta Dream,TRUE,9,home +401018916,2018,2,2018-07-18,5,Indiana Fever,FALSE,8,away +401018916,2018,2,2018-07-18,8,Minnesota Lynx,TRUE,5,home +401018915,2018,2,2018-07-18,14,Seattle Storm,TRUE,19,away +401018915,2018,2,2018-07-18,19,Chicago Sky,FALSE,14,home +401018914,2018,2,2018-07-17,20,Atlanta Dream,TRUE,18,away +401018914,2018,2,2018-07-17,18,Connecticut Sun,FALSE,20,home +401018913,2018,2,2018-07-17,9,New York Liberty,FALSE,3,away +401018913,2018,2,2018-07-17,3,Dallas Wings,TRUE,9,home +401018912,2018,2,2018-07-15,18,Connecticut Sun,TRUE,8,away +401018912,2018,2,2018-07-15,8,Minnesota Lynx,FALSE,18,home +401018911,2018,2,2018-07-15,6,Los Angeles Sparks,TRUE,17,away +401018911,2018,2,2018-07-15,17,Las Vegas Aces,FALSE,6,home +401018910,2018,2,2018-07-15,11,Phoenix Mercury,TRUE,5,away +401018910,2018,2,2018-07-15,5,Indiana Fever,FALSE,11,home +401018908,2018,2,2018-07-15,16,Washington Mystics,FALSE,20,away +401018908,2018,2,2018-07-15,20,Atlanta Dream,TRUE,16,home +401018909,2018,2,2018-07-15,19,Chicago Sky,FALSE,9,away +401018909,2018,2,2018-07-15,9,New York Liberty,TRUE,19,home +401018907,2018,2,2018-07-14,3,Dallas Wings,FALSE,14,away +401018907,2018,2,2018-07-14,14,Seattle Storm,TRUE,3,home +401018906,2018,2,2018-07-13,17,Las Vegas Aces,TRUE,8,away +401018906,2018,2,2018-07-13,8,Minnesota Lynx,FALSE,17,home +401018903,2018,2,2018-07-13,5,Indiana Fever,FALSE,20,away +401018903,2018,2,2018-07-13,20,Atlanta Dream,TRUE,5,home +401018904,2018,2,2018-07-13,11,Phoenix Mercury,FALSE,18,away +401018904,2018,2,2018-07-13,18,Connecticut Sun,TRUE,11,home +401018905,2018,2,2018-07-13,19,Chicago Sky,FALSE,16,away +401018905,2018,2,2018-07-13,16,Washington Mystics,TRUE,19,home +401018902,2018,2,2018-07-12,3,Dallas Wings,TRUE,6,away +401018902,2018,2,2018-07-12,6,Los Angeles Sparks,FALSE,3,home +401018901,2018,2,2018-07-11,8,Minnesota Lynx,TRUE,5,away +401018901,2018,2,2018-07-11,5,Indiana Fever,FALSE,8,home +401018899,2018,2,2018-07-11,9,New York Liberty,TRUE,18,away +401018899,2018,2,2018-07-11,18,Connecticut Sun,FALSE,9,home +401018900,2018,2,2018-07-11,20,Atlanta Dream,TRUE,16,away +401018900,2018,2,2018-07-11,16,Washington Mystics,FALSE,20,home +401018898,2018,2,2018-07-10,17,Las Vegas Aces,TRUE,19,away +401018898,2018,2,2018-07-10,19,Chicago Sky,FALSE,17,home +401018897,2018,2,2018-07-10,11,Phoenix Mercury,FALSE,3,away +401018897,2018,2,2018-07-10,3,Dallas Wings,TRUE,11,home +401018896,2018,2,2018-07-10,6,Los Angeles Sparks,TRUE,14,away +401018896,2018,2,2018-07-10,14,Seattle Storm,FALSE,6,home +401018895,2018,2,2018-07-08,16,Washington Mystics,FALSE,14,away +401018895,2018,2,2018-07-08,14,Seattle Storm,TRUE,16,home +401018893,2018,2,2018-07-08,11,Phoenix Mercury,FALSE,20,away +401018893,2018,2,2018-07-08,20,Atlanta Dream,TRUE,11,home +401018894,2018,2,2018-07-08,3,Dallas Wings,TRUE,9,away +401018894,2018,2,2018-07-08,9,New York Liberty,FALSE,3,home +401018892,2018,2,2018-07-07,18,Connecticut Sun,FALSE,17,away +401018892,2018,2,2018-07-07,17,Las Vegas Aces,TRUE,18,home +401018891,2018,2,2018-07-07,8,Minnesota Lynx,FALSE,19,away +401018891,2018,2,2018-07-07,19,Chicago Sky,TRUE,8,home +401018890,2018,2,2018-07-07,16,Washington Mystics,TRUE,6,away +401018890,2018,2,2018-07-07,6,Los Angeles Sparks,FALSE,16,home +401018889,2018,2,2018-07-06,14,Seattle Storm,TRUE,20,away +401018889,2018,2,2018-07-06,20,Atlanta Dream,FALSE,14,home +401018887,2018,2,2018-07-05,19,Chicago Sky,FALSE,17,away +401018887,2018,2,2018-07-05,17,Las Vegas Aces,TRUE,19,home +401018888,2018,2,2018-07-05,18,Connecticut Sun,FALSE,11,away +401018888,2018,2,2018-07-05,11,Phoenix Mercury,TRUE,18,home +401018885,2018,2,2018-07-05,5,Indiana Fever,FALSE,3,away +401018885,2018,2,2018-07-05,3,Dallas Wings,TRUE,5,home +401018886,2018,2,2018-07-05,6,Los Angeles Sparks,FALSE,8,away +401018886,2018,2,2018-07-05,8,Minnesota Lynx,TRUE,6,home +401018884,2018,2,2018-07-05,9,New York Liberty,FALSE,16,away +401018884,2018,2,2018-07-05,16,Washington Mystics,TRUE,9,home +401018883,2018,2,2018-07-03,18,Connecticut Sun,TRUE,6,away +401018883,2018,2,2018-07-03,6,Los Angeles Sparks,FALSE,18,home +401018881,2018,2,2018-07-03,19,Chicago Sky,FALSE,3,away +401018881,2018,2,2018-07-03,3,Dallas Wings,TRUE,19,home +401018882,2018,2,2018-07-03,5,Indiana Fever,TRUE,8,away +401018882,2018,2,2018-07-03,8,Minnesota Lynx,FALSE,5,home +401018880,2018,2,2018-07-03,14,Seattle Storm,TRUE,9,away +401018880,2018,2,2018-07-03,9,New York Liberty,FALSE,14,home +401018879,2018,2,2018-07-01,18,Connecticut Sun,FALSE,14,away +401018879,2018,2,2018-07-01,14,Seattle Storm,TRUE,18,home +401018878,2018,2,2018-07-01,9,New York Liberty,TRUE,19,away +401018878,2018,2,2018-07-01,19,Chicago Sky,FALSE,9,home +401018876,2018,2,2018-07-01,17,Las Vegas Aces,FALSE,6,away +401018876,2018,2,2018-07-01,6,Los Angeles Sparks,TRUE,17,home +401018877,2018,2,2018-07-01,20,Atlanta Dream,TRUE,5,away +401018877,2018,2,2018-07-01,5,Indiana Fever,FALSE,20,home +401018875,2018,2,2018-07-01,8,Minnesota Lynx,TRUE,3,away +401018875,2018,2,2018-07-01,3,Dallas Wings,FALSE,8,home +401018874,2018,2,2018-06-30,11,Phoenix Mercury,TRUE,16,away +401018874,2018,2,2018-06-30,16,Washington Mystics,FALSE,11,home +401018873,2018,2,2018-06-29,6,Los Angeles Sparks,FALSE,17,away +401018873,2018,2,2018-06-29,17,Las Vegas Aces,TRUE,6,home +401018872,2018,2,2018-06-29,20,Atlanta Dream,FALSE,8,away +401018872,2018,2,2018-06-29,8,Minnesota Lynx,TRUE,20,home +401018871,2018,2,2018-06-29,19,Chicago Sky,TRUE,9,away +401018871,2018,2,2018-06-29,9,New York Liberty,FALSE,19,home +401018870,2018,2,2018-06-29,11,Phoenix Mercury,TRUE,5,away +401018870,2018,2,2018-06-29,5,Indiana Fever,FALSE,11,home +401018869,2018,2,2018-06-28,6,Los Angeles Sparks,FALSE,14,away +401018869,2018,2,2018-06-28,14,Seattle Storm,TRUE,6,home +401018868,2018,2,2018-06-28,9,New York Liberty,FALSE,16,away +401018868,2018,2,2018-06-28,16,Washington Mystics,TRUE,9,home +401018867,2018,2,2018-06-27,3,Dallas Wings,TRUE,17,away +401018867,2018,2,2018-06-27,17,Las Vegas Aces,FALSE,3,home +401018866,2018,2,2018-06-27,5,Indiana Fever,FALSE,18,away +401018866,2018,2,2018-06-27,18,Connecticut Sun,TRUE,5,home +401018865,2018,2,2018-06-27,20,Atlanta Dream,FALSE,19,away +401018865,2018,2,2018-06-27,19,Chicago Sky,TRUE,20,home +401018864,2018,2,2018-06-26,3,Dallas Wings,FALSE,6,away +401018864,2018,2,2018-06-26,6,Los Angeles Sparks,TRUE,3,home +401018863,2018,2,2018-06-26,14,Seattle Storm,FALSE,8,away +401018863,2018,2,2018-06-26,8,Minnesota Lynx,TRUE,14,home +401018861,2018,2,2018-06-26,11,Phoenix Mercury,TRUE,9,away +401018861,2018,2,2018-06-26,9,New York Liberty,FALSE,11,home +401018862,2018,2,2018-06-26,18,Connecticut Sun,FALSE,16,away +401018862,2018,2,2018-06-26,16,Washington Mystics,TRUE,18,home +401018858,2018,2,2018-06-24,18,Connecticut Sun,TRUE,5,away +401018858,2018,2,2018-06-24,5,Indiana Fever,FALSE,18,home +401018859,2018,2,2018-06-24,8,Minnesota Lynx,TRUE,17,away +401018859,2018,2,2018-06-24,17,Las Vegas Aces,FALSE,8,home +401018860,2018,2,2018-06-24,11,Phoenix Mercury,FALSE,19,away +401018860,2018,2,2018-06-24,19,Chicago Sky,TRUE,11,home +401018857,2018,2,2018-06-24,9,New York Liberty,FALSE,6,away +401018857,2018,2,2018-06-24,6,Los Angeles Sparks,TRUE,9,home +401018856,2018,2,2018-06-24,14,Seattle Storm,TRUE,3,away +401018856,2018,2,2018-06-24,3,Dallas Wings,FALSE,14,home +401018853,2018,2,2018-06-22,9,New York Liberty,FALSE,17,away +401018853,2018,2,2018-06-22,17,Las Vegas Aces,TRUE,9,home +401018854,2018,2,2018-06-22,8,Minnesota Lynx,TRUE,11,away +401018854,2018,2,2018-06-22,11,Phoenix Mercury,FALSE,8,home +401018855,2018,2,2018-06-22,5,Indiana Fever,FALSE,14,away +401018855,2018,2,2018-06-22,14,Seattle Storm,TRUE,5,home +401018852,2018,2,2018-06-22,16,Washington Mystics,TRUE,19,away +401018852,2018,2,2018-06-22,19,Chicago Sky,FALSE,16,home +401018851,2018,2,2018-06-22,6,Los Angeles Sparks,FALSE,3,away +401018851,2018,2,2018-06-22,3,Dallas Wings,TRUE,6,home +401018850,2018,2,2018-06-22,18,Connecticut Sun,FALSE,20,away +401018850,2018,2,2018-06-22,20,Atlanta Dream,TRUE,18,home +401018849,2018,2,2018-06-19,5,Indiana Fever,FALSE,6,away +401018849,2018,2,2018-06-19,6,Los Angeles Sparks,TRUE,5,home +401018848,2018,2,2018-06-19,17,Las Vegas Aces,TRUE,14,away +401018848,2018,2,2018-06-19,14,Seattle Storm,FALSE,17,home +401018847,2018,2,2018-06-19,3,Dallas Wings,FALSE,8,away +401018847,2018,2,2018-06-19,8,Minnesota Lynx,TRUE,3,home +401018845,2018,2,2018-06-19,20,Atlanta Dream,FALSE,9,away +401018845,2018,2,2018-06-19,9,New York Liberty,TRUE,20,home +401018846,2018,2,2018-06-19,19,Chicago Sky,FALSE,16,away +401018846,2018,2,2018-06-19,16,Washington Mystics,TRUE,19,home +401018844,2018,2,2018-06-17,11,Phoenix Mercury,TRUE,17,away +401018844,2018,2,2018-06-17,17,Las Vegas Aces,FALSE,11,home +401018843,2018,2,2018-06-17,6,Los Angeles Sparks,TRUE,19,away +401018843,2018,2,2018-06-17,19,Chicago Sky,FALSE,6,home +401018842,2018,2,2018-06-16,18,Connecticut Sun,FALSE,11,away +401018842,2018,2,2018-06-16,11,Phoenix Mercury,TRUE,18,home +401018841,2018,2,2018-06-16,9,New York Liberty,FALSE,8,away +401018841,2018,2,2018-06-16,8,Minnesota Lynx,TRUE,9,home +401018840,2018,2,2018-06-16,20,Atlanta Dream,FALSE,5,away +401018840,2018,2,2018-06-16,5,Indiana Fever,TRUE,20,home +401018839,2018,2,2018-06-15,18,Connecticut Sun,FALSE,14,away +401018839,2018,2,2018-06-15,14,Seattle Storm,TRUE,18,home +401018838,2018,2,2018-06-15,17,Las Vegas Aces,FALSE,3,away +401018838,2018,2,2018-06-15,3,Dallas Wings,TRUE,17,home +401018837,2018,2,2018-06-15,6,Los Angeles Sparks,TRUE,16,away +401018837,2018,2,2018-06-15,16,Washington Mystics,FALSE,6,home +401018836,2018,2,2018-06-14,5,Indiana Fever,FALSE,20,away +401018836,2018,2,2018-06-14,20,Atlanta Dream,TRUE,5,home +401018834,2018,2,2018-06-13,16,Washington Mystics,TRUE,18,away +401018834,2018,2,2018-06-13,18,Connecticut Sun,FALSE,16,home +401018835,2018,2,2018-06-13,17,Las Vegas Aces,TRUE,9,away +401018835,2018,2,2018-06-13,9,New York Liberty,FALSE,17,home +401018833,2018,2,2018-06-12,20,Atlanta Dream,FALSE,6,away +401018833,2018,2,2018-06-12,6,Los Angeles Sparks,TRUE,20,home +401018832,2018,2,2018-06-12,19,Chicago Sky,FALSE,14,away +401018832,2018,2,2018-06-12,14,Seattle Storm,TRUE,19,home +401018831,2018,2,2018-06-12,11,Phoenix Mercury,TRUE,3,away +401018831,2018,2,2018-06-12,3,Dallas Wings,FALSE,11,home +401018830,2018,2,2018-06-12,17,Las Vegas Aces,TRUE,5,away +401018830,2018,2,2018-06-12,5,Indiana Fever,FALSE,17,home +401018829,2018,2,2018-06-10,20,Atlanta Dream,TRUE,14,away +401018829,2018,2,2018-06-10,14,Seattle Storm,FALSE,20,home +401018828,2018,2,2018-06-10,17,Las Vegas Aces,FALSE,11,away +401018828,2018,2,2018-06-10,11,Phoenix Mercury,TRUE,17,home +401018827,2018,2,2018-06-10,19,Chicago Sky,FALSE,6,away +401018827,2018,2,2018-06-10,6,Los Angeles Sparks,TRUE,19,home +401018826,2018,2,2018-06-10,5,Indiana Fever,FALSE,9,away +401018826,2018,2,2018-06-10,9,New York Liberty,TRUE,5,home +401018825,2018,2,2018-06-09,8,Minnesota Lynx,FALSE,18,away +401018825,2018,2,2018-06-09,18,Connecticut Sun,TRUE,8,home +401018823,2018,2,2018-06-08,19,Chicago Sky,FALSE,11,away +401018823,2018,2,2018-06-08,11,Phoenix Mercury,TRUE,19,home +401018822,2018,2,2018-06-08,3,Dallas Wings,TRUE,5,away +401018822,2018,2,2018-06-08,5,Indiana Fever,FALSE,3,home +401018824,2018,2,2018-06-08,20,Atlanta Dream,TRUE,17,away +401018824,2018,2,2018-06-08,17,Las Vegas Aces,FALSE,20,home +401018821,2018,2,2018-06-07,14,Seattle Storm,TRUE,6,away +401018821,2018,2,2018-06-07,6,Los Angeles Sparks,FALSE,14,home +401018819,2018,2,2018-06-07,18,Connecticut Sun,TRUE,9,away +401018819,2018,2,2018-06-07,9,New York Liberty,FALSE,18,home +401018820,2018,2,2018-06-07,8,Minnesota Lynx,TRUE,16,away +401018820,2018,2,2018-06-07,16,Washington Mystics,FALSE,8,home +401018818,2018,2,2018-06-05,18,Connecticut Sun,FALSE,20,away +401018818,2018,2,2018-06-05,20,Atlanta Dream,TRUE,18,home +401018817,2018,2,2018-06-05,11,Phoenix Mercury,TRUE,9,away +401018817,2018,2,2018-06-05,9,New York Liberty,FALSE,11,home +401018816,2018,2,2018-06-03,17,Las Vegas Aces,FALSE,19,away +401018816,2018,2,2018-06-03,19,Chicago Sky,TRUE,17,home +401018815,2018,2,2018-06-03,8,Minnesota Lynx,FALSE,6,away +401018815,2018,2,2018-06-03,6,Los Angeles Sparks,TRUE,8,home +401018813,2018,2,2018-06-03,11,Phoenix Mercury,TRUE,20,away +401018813,2018,2,2018-06-03,20,Atlanta Dream,FALSE,11,home +401018814,2018,2,2018-06-03,18,Connecticut Sun,TRUE,16,away +401018814,2018,2,2018-06-03,16,Washington Mystics,FALSE,18,home +401018812,2018,2,2018-06-02,14,Seattle Storm,FALSE,3,away +401018812,2018,2,2018-06-02,3,Dallas Wings,TRUE,14,home +401018811,2018,2,2018-06-02,9,New York Liberty,TRUE,5,away +401018811,2018,2,2018-06-02,5,Indiana Fever,FALSE,9,home +401018810,2018,2,2018-06-01,16,Washington Mystics,FALSE,17,away +401018810,2018,2,2018-06-01,17,Las Vegas Aces,TRUE,16,home +401018809,2018,2,2018-06-01,18,Connecticut Sun,TRUE,19,away +401018809,2018,2,2018-06-01,19,Chicago Sky,FALSE,18,home +401018808,2018,2,2018-06-01,11,Phoenix Mercury,TRUE,8,away +401018808,2018,2,2018-06-01,8,Minnesota Lynx,FALSE,11,home +401018807,2018,2,2018-05-31,17,Las Vegas Aces,FALSE,14,away +401018807,2018,2,2018-05-31,14,Seattle Storm,TRUE,17,home +401018806,2018,2,2018-05-30,16,Washington Mystics,TRUE,11,away +401018806,2018,2,2018-05-30,11,Phoenix Mercury,FALSE,16,home +401018805,2018,2,2018-05-29,16,Washington Mystics,FALSE,14,away +401018805,2018,2,2018-05-29,14,Seattle Storm,TRUE,16,home +401018803,2018,2,2018-05-29,8,Minnesota Lynx,FALSE,20,away +401018803,2018,2,2018-05-29,20,Atlanta Dream,TRUE,8,home +401018804,2018,2,2018-05-29,3,Dallas Wings,FALSE,9,away +401018804,2018,2,2018-05-29,9,New York Liberty,TRUE,3,home +401018802,2018,2,2018-05-27,14,Seattle Storm,TRUE,17,away +401018802,2018,2,2018-05-27,17,Las Vegas Aces,FALSE,14,home +401018801,2018,2,2018-05-27,11,Phoenix Mercury,FALSE,6,away +401018801,2018,2,2018-05-27,6,Los Angeles Sparks,TRUE,11,home +401018800,2018,2,2018-05-27,8,Minnesota Lynx,FALSE,16,away +401018800,2018,2,2018-05-27,16,Washington Mystics,TRUE,8,home +401018799,2018,2,2018-05-26,5,Indiana Fever,FALSE,18,away +401018799,2018,2,2018-05-26,18,Connecticut Sun,TRUE,5,home +401018798,2018,2,2018-05-26,3,Dallas Wings,TRUE,20,away +401018798,2018,2,2018-05-26,20,Atlanta Dream,FALSE,3,home +401018797,2018,2,2018-05-25,19,Chicago Sky,FALSE,14,away +401018797,2018,2,2018-05-25,14,Seattle Storm,TRUE,19,home +401018796,2018,2,2018-05-25,8,Minnesota Lynx,TRUE,9,away +401018796,2018,2,2018-05-25,9,New York Liberty,FALSE,8,home +401018794,2018,2,2018-05-24,6,Los Angeles Sparks,FALSE,18,away +401018794,2018,2,2018-05-24,18,Connecticut Sun,TRUE,6,home +401018795,2018,2,2018-05-24,16,Washington Mystics,TRUE,5,away +401018795,2018,2,2018-05-24,5,Indiana Fever,FALSE,16,home +401018793,2018,2,2018-05-23,14,Seattle Storm,TRUE,11,away +401018793,2018,2,2018-05-23,11,Phoenix Mercury,FALSE,14,home +401018792,2018,2,2018-05-23,3,Dallas Wings,FALSE,8,away +401018792,2018,2,2018-05-23,8,Minnesota Lynx,TRUE,3,home +401018791,2018,2,2018-05-23,20,Atlanta Dream,TRUE,19,away +401018791,2018,2,2018-05-23,19,Chicago Sky,FALSE,20,home +401018789,2018,2,2018-05-22,6,Los Angeles Sparks,TRUE,5,away +401018789,2018,2,2018-05-22,5,Indiana Fever,FALSE,6,home +401018790,2018,2,2018-05-22,17,Las Vegas Aces,FALSE,16,away +401018790,2018,2,2018-05-22,16,Washington Mystics,TRUE,17,home +401018788,2018,2,2018-05-20,11,Phoenix Mercury,TRUE,14,away +401018788,2018,2,2018-05-20,14,Seattle Storm,FALSE,11,home +401018787,2018,2,2018-05-20,9,New York Liberty,FALSE,19,away +401018787,2018,2,2018-05-20,19,Chicago Sky,TRUE,9,home +401018786,2018,2,2018-05-20,6,Los Angeles Sparks,TRUE,8,away +401018786,2018,2,2018-05-20,8,Minnesota Lynx,FALSE,6,home +401018785,2018,2,2018-05-20,20,Atlanta Dream,FALSE,3,away +401018785,2018,2,2018-05-20,3,Dallas Wings,TRUE,20,home +401018783,2018,2,2018-05-20,17,Las Vegas Aces,FALSE,18,away +401018783,2018,2,2018-05-20,18,Connecticut Sun,TRUE,17,home +401018784,2018,2,2018-05-20,5,Indiana Fever,FALSE,16,away +401018784,2018,2,2018-05-20,16,Washington Mystics,TRUE,5,home +401018782,2018,2,2018-05-19,19,Chicago Sky,TRUE,5,away +401018782,2018,2,2018-05-19,5,Indiana Fever,FALSE,19,home +401018781,2018,2,2018-05-18,3,Dallas Wings,FALSE,11,away +401018781,2018,2,2018-05-18,11,Phoenix Mercury,TRUE,3,home +401165811,2019,3,2019-10-10,18,Connecticut Sun,FALSE,16,away +401165811,2019,3,2019-10-10,16,Washington Mystics,TRUE,18,home +401165810,2019,3,2019-10-08,16,Washington Mystics,FALSE,18,away +401165810,2019,3,2019-10-08,18,Connecticut Sun,TRUE,16,home +401165809,2019,3,2019-10-06,16,Washington Mystics,TRUE,18,away +401165809,2019,3,2019-10-06,18,Connecticut Sun,FALSE,16,home +401165808,2019,3,2019-10-01,18,Connecticut Sun,TRUE,16,away +401165808,2019,3,2019-10-01,16,Washington Mystics,FALSE,18,home +401165807,2019,3,2019-09-29,18,Connecticut Sun,FALSE,16,away +401165807,2019,3,2019-09-29,16,Washington Mystics,TRUE,18,home +401165888,2019,3,2019-09-24,16,Washington Mystics,TRUE,17,away +401165888,2019,3,2019-09-24,17,Las Vegas Aces,FALSE,16,home +401165892,2019,3,2019-09-22,18,Connecticut Sun,TRUE,6,away +401165892,2019,3,2019-09-22,6,Los Angeles Sparks,FALSE,18,home +401165887,2019,3,2019-09-22,16,Washington Mystics,FALSE,17,away +401165887,2019,3,2019-09-22,17,Las Vegas Aces,TRUE,16,home +401165798,2019,3,2019-09-19,17,Las Vegas Aces,FALSE,16,away +401165798,2019,3,2019-09-19,16,Washington Mystics,TRUE,17,home +401165803,2019,3,2019-09-19,6,Los Angeles Sparks,FALSE,18,away +401165803,2019,3,2019-09-19,18,Connecticut Sun,TRUE,6,home +401165797,2019,3,2019-09-17,17,Las Vegas Aces,FALSE,16,away +401165797,2019,3,2019-09-17,16,Washington Mystics,TRUE,17,home +401165802,2019,3,2019-09-17,6,Los Angeles Sparks,FALSE,18,away +401165802,2019,3,2019-09-17,18,Connecticut Sun,TRUE,6,home +401165796,2019,3,2019-09-15,19,Chicago Sky,FALSE,17,away +401165796,2019,3,2019-09-15,17,Las Vegas Aces,TRUE,19,home +401165795,2019,3,2019-09-15,14,Seattle Storm,FALSE,6,away +401165795,2019,3,2019-09-15,6,Los Angeles Sparks,TRUE,14,home +401165794,2019,3,2019-09-11,8,Minnesota Lynx,FALSE,14,away +401165794,2019,3,2019-09-11,14,Seattle Storm,TRUE,8,home +401165793,2019,3,2019-09-11,11,Phoenix Mercury,FALSE,19,away +401165793,2019,3,2019-09-11,19,Chicago Sky,TRUE,11,home +401105111,2019,2,2019-09-08,9,New York Liberty,TRUE,20,away +401105111,2019,2,2019-09-08,20,Atlanta Dream,FALSE,9,home +401105112,2019,2,2019-09-08,18,Connecticut Sun,FALSE,5,away +401105112,2019,2,2019-09-08,5,Indiana Fever,TRUE,18,home +401105113,2019,2,2019-09-08,19,Chicago Sky,FALSE,16,away +401105113,2019,2,2019-09-08,16,Washington Mystics,TRUE,19,home +401105114,2019,2,2019-09-08,14,Seattle Storm,TRUE,3,away +401105114,2019,2,2019-09-08,3,Dallas Wings,FALSE,14,home +401105115,2019,2,2019-09-08,17,Las Vegas Aces,TRUE,11,away +401105115,2019,2,2019-09-08,11,Phoenix Mercury,FALSE,17,home +401105116,2019,2,2019-09-08,8,Minnesota Lynx,FALSE,6,away +401105116,2019,2,2019-09-08,6,Los Angeles Sparks,TRUE,8,home +401105110,2019,2,2019-09-06,8,Minnesota Lynx,TRUE,11,away +401105110,2019,2,2019-09-06,11,Phoenix Mercury,FALSE,8,home +401105108,2019,2,2019-09-06,19,Chicago Sky,TRUE,18,away +401105108,2019,2,2019-09-06,18,Connecticut Sun,FALSE,19,home +401105107,2019,2,2019-09-06,3,Dallas Wings,FALSE,16,away +401105107,2019,2,2019-09-06,16,Washington Mystics,TRUE,3,home +401105109,2019,2,2019-09-06,5,Indiana Fever,TRUE,9,away +401105109,2019,2,2019-09-06,9,New York Liberty,FALSE,5,home +401105106,2019,2,2019-09-05,14,Seattle Storm,FALSE,6,away +401105106,2019,2,2019-09-05,6,Los Angeles Sparks,TRUE,14,home +401105105,2019,2,2019-09-05,17,Las Vegas Aces,FALSE,20,away +401105105,2019,2,2019-09-05,20,Atlanta Dream,TRUE,17,home +401105104,2019,2,2019-09-04,3,Dallas Wings,FALSE,18,away +401105104,2019,2,2019-09-04,18,Connecticut Sun,TRUE,3,home +401105103,2019,2,2019-09-03,20,Atlanta Dream,FALSE,6,away +401105103,2019,2,2019-09-03,6,Los Angeles Sparks,TRUE,20,home +401105102,2019,2,2019-09-03,14,Seattle Storm,TRUE,11,away +401105102,2019,2,2019-09-03,11,Phoenix Mercury,FALSE,14,home +401105101,2019,2,2019-09-03,16,Washington Mystics,TRUE,9,away +401105101,2019,2,2019-09-03,9,New York Liberty,FALSE,16,home +401105099,2019,2,2019-09-01,5,Indiana Fever,FALSE,8,away +401105099,2019,2,2019-09-01,8,Minnesota Lynx,TRUE,5,home +401105100,2019,2,2019-09-01,20,Atlanta Dream,FALSE,14,away +401105100,2019,2,2019-09-01,14,Seattle Storm,TRUE,20,home +401105098,2019,2,2019-09-01,11,Phoenix Mercury,FALSE,19,away +401105098,2019,2,2019-09-01,19,Chicago Sky,TRUE,11,home +401105097,2019,2,2019-08-31,6,Los Angeles Sparks,FALSE,17,away +401105097,2019,2,2019-08-31,17,Las Vegas Aces,TRUE,6,home +401105096,2019,2,2019-08-31,16,Washington Mystics,TRUE,3,away +401105096,2019,2,2019-08-31,3,Dallas Wings,FALSE,16,home +401105095,2019,2,2019-08-30,18,Connecticut Sun,TRUE,9,away +401105095,2019,2,2019-08-30,9,New York Liberty,FALSE,18,home +401105093,2019,2,2019-08-29,3,Dallas Wings,TRUE,19,away +401105093,2019,2,2019-08-29,19,Chicago Sky,FALSE,3,home +401105092,2019,2,2019-08-29,6,Los Angeles Sparks,TRUE,5,away +401105092,2019,2,2019-08-29,5,Indiana Fever,FALSE,6,home +401105094,2019,2,2019-08-29,11,Phoenix Mercury,TRUE,20,away +401105094,2019,2,2019-08-29,20,Atlanta Dream,FALSE,11,home +401105091,2019,2,2019-08-27,18,Connecticut Sun,TRUE,14,away +401105091,2019,2,2019-08-27,14,Seattle Storm,FALSE,18,home +401105090,2019,2,2019-08-27,19,Chicago Sky,FALSE,8,away +401105090,2019,2,2019-08-27,8,Minnesota Lynx,TRUE,19,home +401105087,2019,2,2019-08-27,17,Las Vegas Aces,FALSE,5,away +401105087,2019,2,2019-08-27,5,Indiana Fever,TRUE,17,home +401105088,2019,2,2019-08-27,11,Phoenix Mercury,TRUE,9,away +401105088,2019,2,2019-08-27,9,New York Liberty,FALSE,11,home +401105089,2019,2,2019-08-27,6,Los Angeles Sparks,FALSE,16,away +401105089,2019,2,2019-08-27,16,Washington Mystics,TRUE,6,home +401105085,2019,2,2019-08-25,17,Las Vegas Aces,FALSE,8,away +401105085,2019,2,2019-08-25,8,Minnesota Lynx,TRUE,17,home +401105086,2019,2,2019-08-25,5,Indiana Fever,TRUE,14,away +401105086,2019,2,2019-08-25,14,Seattle Storm,FALSE,5,home +401105084,2019,2,2019-08-25,19,Chicago Sky,TRUE,11,away +401105084,2019,2,2019-08-25,11,Phoenix Mercury,FALSE,19,home +401105083,2019,2,2019-08-25,18,Connecticut Sun,FALSE,6,away +401105083,2019,2,2019-08-25,6,Los Angeles Sparks,TRUE,18,home +401105082,2019,2,2019-08-25,20,Atlanta Dream,TRUE,3,away +401105082,2019,2,2019-08-25,3,Dallas Wings,FALSE,20,home +401105081,2019,2,2019-08-25,9,New York Liberty,FALSE,16,away +401105081,2019,2,2019-08-25,16,Washington Mystics,TRUE,9,home +401105080,2019,2,2019-08-23,16,Washington Mystics,FALSE,19,away +401105080,2019,2,2019-08-23,19,Chicago Sky,TRUE,16,home +401105078,2019,2,2019-08-23,17,Las Vegas Aces,FALSE,18,away +401105078,2019,2,2019-08-23,18,Connecticut Sun,TRUE,17,home +401105079,2019,2,2019-08-23,20,Atlanta Dream,TRUE,9,away +401105079,2019,2,2019-08-23,9,New York Liberty,FALSE,20,home +401105077,2019,2,2019-08-22,5,Indiana Fever,FALSE,6,away +401105077,2019,2,2019-08-22,6,Los Angeles Sparks,TRUE,5,home +401105076,2019,2,2019-08-22,3,Dallas Wings,FALSE,8,away +401105076,2019,2,2019-08-22,8,Minnesota Lynx,TRUE,3,home +401105075,2019,2,2019-08-20,8,Minnesota Lynx,FALSE,6,away +401105075,2019,2,2019-08-20,6,Los Angeles Sparks,TRUE,8,home +401105074,2019,2,2019-08-20,11,Phoenix Mercury,FALSE,17,away +401105074,2019,2,2019-08-20,17,Las Vegas Aces,TRUE,11,home +401105072,2019,2,2019-08-20,19,Chicago Sky,TRUE,20,away +401105072,2019,2,2019-08-20,20,Atlanta Dream,FALSE,19,home +401105073,2019,2,2019-08-20,9,New York Liberty,TRUE,5,away +401105073,2019,2,2019-08-20,5,Indiana Fever,FALSE,9,home +401105071,2019,2,2019-08-18,8,Minnesota Lynx,FALSE,14,away +401105071,2019,2,2019-08-18,14,Seattle Storm,TRUE,8,home +401105069,2019,2,2019-08-18,17,Las Vegas Aces,TRUE,19,away +401105069,2019,2,2019-08-18,19,Chicago Sky,FALSE,17,home +401105070,2019,2,2019-08-18,9,New York Liberty,FALSE,11,away +401105070,2019,2,2019-08-18,11,Phoenix Mercury,TRUE,9,home +401105067,2019,2,2019-08-18,3,Dallas Wings,FALSE,18,away +401105067,2019,2,2019-08-18,18,Connecticut Sun,TRUE,3,home +401105068,2019,2,2019-08-18,5,Indiana Fever,FALSE,16,away +401105068,2019,2,2019-08-18,16,Washington Mystics,TRUE,5,home +401105066,2019,2,2019-08-16,20,Atlanta Dream,FALSE,11,away +401105066,2019,2,2019-08-16,11,Phoenix Mercury,TRUE,20,home +401105063,2019,2,2019-08-16,6,Los Angeles Sparks,FALSE,19,away +401105063,2019,2,2019-08-16,19,Chicago Sky,TRUE,6,home +401105064,2019,2,2019-08-16,9,New York Liberty,FALSE,3,away +401105064,2019,2,2019-08-16,3,Dallas Wings,TRUE,9,home +401105065,2019,2,2019-08-16,16,Washington Mystics,TRUE,8,away +401105065,2019,2,2019-08-16,8,Minnesota Lynx,FALSE,16,home +401105062,2019,2,2019-08-16,14,Seattle Storm,FALSE,18,away +401105062,2019,2,2019-08-16,18,Connecticut Sun,TRUE,14,home +401105061,2019,2,2019-08-14,18,Connecticut Sun,TRUE,11,away +401105061,2019,2,2019-08-14,11,Phoenix Mercury,FALSE,18,home +401105059,2019,2,2019-08-14,14,Seattle Storm,FALSE,16,away +401105059,2019,2,2019-08-14,16,Washington Mystics,TRUE,14,home +401105060,2019,2,2019-08-14,6,Los Angeles Sparks,FALSE,3,away +401105060,2019,2,2019-08-14,3,Dallas Wings,TRUE,6,home +401105058,2019,2,2019-08-13,20,Atlanta Dream,FALSE,17,away +401105058,2019,2,2019-08-13,17,Las Vegas Aces,TRUE,20,home +401105057,2019,2,2019-08-13,8,Minnesota Lynx,TRUE,9,away +401105057,2019,2,2019-08-13,9,New York Liberty,FALSE,8,home +401105056,2019,2,2019-08-11,18,Connecticut Sun,FALSE,17,away +401105056,2019,2,2019-08-11,17,Las Vegas Aces,TRUE,18,home +401105055,2019,2,2019-08-11,19,Chicago Sky,FALSE,6,away +401105055,2019,2,2019-08-11,6,Los Angeles Sparks,TRUE,19,home +401105053,2019,2,2019-08-11,14,Seattle Storm,TRUE,9,away +401105053,2019,2,2019-08-11,9,New York Liberty,FALSE,14,home +401105054,2019,2,2019-08-11,8,Minnesota Lynx,FALSE,16,away +401105054,2019,2,2019-08-11,16,Washington Mystics,TRUE,8,home +401105052,2019,2,2019-08-10,3,Dallas Wings,TRUE,11,away +401105052,2019,2,2019-08-10,11,Phoenix Mercury,FALSE,3,home +401105051,2019,2,2019-08-10,20,Atlanta Dream,FALSE,5,away +401105051,2019,2,2019-08-10,5,Indiana Fever,TRUE,20,home +401105050,2019,2,2019-08-09,19,Chicago Sky,TRUE,17,away +401105050,2019,2,2019-08-09,17,Las Vegas Aces,FALSE,19,home +401105049,2019,2,2019-08-09,18,Connecticut Sun,FALSE,8,away +401105049,2019,2,2019-08-09,8,Minnesota Lynx,TRUE,18,home +401105047,2019,2,2019-08-08,11,Phoenix Mercury,FALSE,6,away +401105047,2019,2,2019-08-08,6,Los Angeles Sparks,TRUE,11,home +401105048,2019,2,2019-08-08,3,Dallas Wings,FALSE,14,away +401105048,2019,2,2019-08-08,14,Seattle Storm,TRUE,3,home +401105046,2019,2,2019-08-08,5,Indiana Fever,FALSE,16,away +401105046,2019,2,2019-08-08,16,Washington Mystics,TRUE,5,home +401105045,2019,2,2019-08-07,9,New York Liberty,FALSE,19,away +401105045,2019,2,2019-08-07,19,Chicago Sky,TRUE,9,home +401105044,2019,2,2019-08-06,8,Minnesota Lynx,TRUE,20,away +401105044,2019,2,2019-08-06,20,Atlanta Dream,FALSE,8,home +401156333,2019,2,2019-08-05,16,Washington Mystics,TRUE,17,away +401156333,2019,2,2019-08-05,17,Las Vegas Aces,FALSE,16,home +401105043,2019,2,2019-08-04,16,Washington Mystics,FALSE,11,away +401105043,2019,2,2019-08-04,11,Phoenix Mercury,TRUE,16,home +401105042,2019,2,2019-08-04,14,Seattle Storm,FALSE,6,away +401105042,2019,2,2019-08-04,6,Los Angeles Sparks,TRUE,14,home +401105041,2019,2,2019-08-04,18,Connecticut Sun,TRUE,9,away +401105041,2019,2,2019-08-04,9,New York Liberty,FALSE,18,home +401105040,2019,2,2019-08-03,17,Las Vegas Aces,TRUE,3,away +401105040,2019,2,2019-08-03,3,Dallas Wings,FALSE,17,home +401105038,2019,2,2019-08-03,19,Chicago Sky,TRUE,20,away +401105038,2019,2,2019-08-03,20,Atlanta Dream,FALSE,19,home +401105039,2019,2,2019-08-03,8,Minnesota Lynx,FALSE,5,away +401105039,2019,2,2019-08-03,5,Indiana Fever,TRUE,8,home +401105037,2019,2,2019-08-02,16,Washington Mystics,TRUE,14,away +401105037,2019,2,2019-08-02,14,Seattle Storm,FALSE,16,home +401105036,2019,2,2019-08-01,17,Las Vegas Aces,FALSE,6,away +401105036,2019,2,2019-08-01,6,Los Angeles Sparks,TRUE,17,home +401105035,2019,2,2019-08-01,9,New York Liberty,FALSE,3,away +401105035,2019,2,2019-08-01,3,Dallas Wings,TRUE,9,home +401105034,2019,2,2019-08-01,11,Phoenix Mercury,FALSE,18,away +401105034,2019,2,2019-08-01,18,Connecticut Sun,TRUE,11,home +401105033,2019,2,2019-07-31,20,Atlanta Dream,FALSE,5,away +401105033,2019,2,2019-07-31,5,Indiana Fever,TRUE,20,home +401105032,2019,2,2019-07-30,3,Dallas Wings,FALSE,17,away +401105032,2019,2,2019-07-30,17,Las Vegas Aces,TRUE,3,home +401105030,2019,2,2019-07-30,19,Chicago Sky,FALSE,18,away +401105030,2019,2,2019-07-30,18,Connecticut Sun,TRUE,19,home +401105031,2019,2,2019-07-30,11,Phoenix Mercury,FALSE,16,away +401105031,2019,2,2019-07-30,16,Washington Mystics,TRUE,11,home +401151757,2019,2,2019-07-27,111719,Team Delle Donne,FALSE,112530,away +401151757,2019,2,2019-07-27,112530,Team Wilson,TRUE,111719,home +401105029,2019,2,2019-07-24,16,Washington Mystics,TRUE,8,away +401105029,2019,2,2019-07-24,8,Minnesota Lynx,FALSE,16,home +401105028,2019,2,2019-07-24,9,New York Liberty,FALSE,18,away +401105028,2019,2,2019-07-24,18,Connecticut Sun,TRUE,9,home +401105026,2019,2,2019-07-23,14,Seattle Storm,FALSE,17,away +401105026,2019,2,2019-07-23,17,Las Vegas Aces,TRUE,14,home +401105027,2019,2,2019-07-23,5,Indiana Fever,FALSE,11,away +401105027,2019,2,2019-07-23,11,Phoenix Mercury,TRUE,5,home +401105025,2019,2,2019-07-23,6,Los Angeles Sparks,TRUE,20,away +401105025,2019,2,2019-07-23,20,Atlanta Dream,FALSE,6,home +401105023,2019,2,2019-07-21,5,Indiana Fever,FALSE,19,away +401105023,2019,2,2019-07-21,19,Chicago Sky,TRUE,5,home +401105024,2019,2,2019-07-21,8,Minnesota Lynx,FALSE,17,away +401105024,2019,2,2019-07-21,17,Las Vegas Aces,TRUE,8,home +401105022,2019,2,2019-07-21,20,Atlanta Dream,FALSE,16,away +401105022,2019,2,2019-07-21,16,Washington Mystics,TRUE,20,home +401105021,2019,2,2019-07-20,11,Phoenix Mercury,TRUE,3,away +401105021,2019,2,2019-07-20,3,Dallas Wings,FALSE,11,home +401105020,2019,2,2019-07-20,6,Los Angeles Sparks,FALSE,9,away +401105020,2019,2,2019-07-20,9,New York Liberty,TRUE,6,home +401105019,2019,2,2019-07-19,17,Las Vegas Aces,FALSE,14,away +401105019,2019,2,2019-07-19,14,Seattle Storm,TRUE,17,home +401105018,2019,2,2019-07-19,20,Atlanta Dream,FALSE,18,away +401105018,2019,2,2019-07-19,18,Connecticut Sun,TRUE,20,home +401105017,2019,2,2019-07-19,16,Washington Mystics,TRUE,5,away +401105017,2019,2,2019-07-19,5,Indiana Fever,FALSE,16,home +401105016,2019,2,2019-07-18,3,Dallas Wings,FALSE,6,away +401105016,2019,2,2019-07-18,6,Los Angeles Sparks,TRUE,3,home +401105015,2019,2,2019-07-17,14,Seattle Storm,TRUE,8,away +401105015,2019,2,2019-07-17,8,Minnesota Lynx,FALSE,14,home +401105014,2019,2,2019-07-17,3,Dallas Wings,FALSE,11,away +401105014,2019,2,2019-07-17,11,Phoenix Mercury,TRUE,3,home +401105013,2019,2,2019-07-17,20,Atlanta Dream,FALSE,19,away +401105013,2019,2,2019-07-17,19,Chicago Sky,TRUE,20,home +401105011,2019,2,2019-07-14,11,Phoenix Mercury,FALSE,8,away +401105011,2019,2,2019-07-14,8,Minnesota Lynx,TRUE,11,home +401105012,2019,2,2019-07-14,9,New York Liberty,FALSE,14,away +401105012,2019,2,2019-07-14,14,Seattle Storm,TRUE,9,home +401105009,2019,2,2019-07-14,18,Connecticut Sun,TRUE,5,away +401105009,2019,2,2019-07-14,5,Indiana Fever,FALSE,18,home +401105010,2019,2,2019-07-14,19,Chicago Sky,TRUE,3,away +401105010,2019,2,2019-07-14,3,Dallas Wings,FALSE,19,home +401105008,2019,2,2019-07-14,6,Los Angeles Sparks,TRUE,20,away +401105008,2019,2,2019-07-14,20,Atlanta Dream,FALSE,6,home +401105007,2019,2,2019-07-13,17,Las Vegas Aces,TRUE,16,away +401105007,2019,2,2019-07-13,16,Washington Mystics,FALSE,17,home +401105006,2019,2,2019-07-12,3,Dallas Wings,FALSE,14,away +401105006,2019,2,2019-07-12,14,Seattle Storm,TRUE,3,home +401105004,2019,2,2019-07-12,11,Phoenix Mercury,FALSE,18,away +401105004,2019,2,2019-07-12,18,Connecticut Sun,TRUE,11,home +401105005,2019,2,2019-07-12,9,New York Liberty,FALSE,19,away +401105005,2019,2,2019-07-12,19,Chicago Sky,TRUE,9,home +401105003,2019,2,2019-07-12,8,Minnesota Lynx,FALSE,20,away +401105003,2019,2,2019-07-12,20,Atlanta Dream,TRUE,8,home +401105002,2019,2,2019-07-12,6,Los Angeles Sparks,TRUE,5,away +401105002,2019,2,2019-07-12,5,Indiana Fever,FALSE,6,home +401105001,2019,2,2019-07-10,8,Minnesota Lynx,TRUE,19,away +401105001,2019,2,2019-07-10,19,Chicago Sky,FALSE,8,home +401105000,2019,2,2019-07-10,17,Las Vegas Aces,TRUE,5,away +401105000,2019,2,2019-07-10,5,Indiana Fever,FALSE,17,home +401104999,2019,2,2019-07-10,11,Phoenix Mercury,TRUE,16,away +401104999,2019,2,2019-07-10,16,Washington Mystics,FALSE,11,home +401104998,2019,2,2019-07-10,18,Connecticut Sun,FALSE,20,away +401104998,2019,2,2019-07-10,20,Atlanta Dream,TRUE,18,home +401104997,2019,2,2019-07-09,6,Los Angeles Sparks,FALSE,3,away +401104997,2019,2,2019-07-09,3,Dallas Wings,TRUE,6,home +401104995,2019,2,2019-07-07,3,Dallas Wings,FALSE,19,away +401104995,2019,2,2019-07-07,19,Chicago Sky,TRUE,3,home +401104996,2019,2,2019-07-07,20,Atlanta Dream,FALSE,11,away +401104996,2019,2,2019-07-07,11,Phoenix Mercury,TRUE,20,home +401104994,2019,2,2019-07-07,16,Washington Mystics,FALSE,6,away +401104994,2019,2,2019-07-07,6,Los Angeles Sparks,TRUE,16,home +401104993,2019,2,2019-07-07,17,Las Vegas Aces,TRUE,9,away +401104993,2019,2,2019-07-07,9,New York Liberty,FALSE,17,home +401104992,2019,2,2019-07-06,8,Minnesota Lynx,TRUE,18,away +401104992,2019,2,2019-07-06,18,Connecticut Sun,FALSE,8,home +401104989,2019,2,2019-07-05,9,New York Liberty,TRUE,11,away +401104989,2019,2,2019-07-05,11,Phoenix Mercury,FALSE,9,home +401104990,2019,2,2019-07-05,20,Atlanta Dream,TRUE,14,away +401104990,2019,2,2019-07-05,14,Seattle Storm,FALSE,20,home +401104988,2019,2,2019-07-05,5,Indiana Fever,TRUE,3,away +401104988,2019,2,2019-07-05,3,Dallas Wings,FALSE,5,home +401104987,2019,2,2019-07-03,9,New York Liberty,TRUE,14,away +401104987,2019,2,2019-07-03,14,Seattle Storm,FALSE,9,home +401104986,2019,2,2019-07-02,20,Atlanta Dream,FALSE,8,away +401104986,2019,2,2019-07-02,8,Minnesota Lynx,TRUE,20,home +401104985,2019,2,2019-07-02,19,Chicago Sky,FALSE,17,away +401104985,2019,2,2019-07-02,17,Las Vegas Aces,TRUE,19,home +401104984,2019,2,2019-06-30,11,Phoenix Mercury,TRUE,14,away +401104984,2019,2,2019-06-30,14,Seattle Storm,FALSE,11,home +401104983,2019,2,2019-06-30,19,Chicago Sky,FALSE,6,away +401104983,2019,2,2019-06-30,6,Los Angeles Sparks,TRUE,19,home +401104982,2019,2,2019-06-30,8,Minnesota Lynx,FALSE,3,away +401104982,2019,2,2019-06-30,3,Dallas Wings,TRUE,8,home +401104981,2019,2,2019-06-30,9,New York Liberty,TRUE,20,away +401104981,2019,2,2019-06-30,20,Atlanta Dream,FALSE,9,home +401104980,2019,2,2019-06-29,5,Indiana Fever,FALSE,17,away +401104980,2019,2,2019-06-29,17,Las Vegas Aces,TRUE,5,home +401104979,2019,2,2019-06-29,18,Connecticut Sun,FALSE,16,away +401104979,2019,2,2019-06-29,16,Washington Mystics,TRUE,18,home +401104977,2019,2,2019-06-28,5,Indiana Fever,FALSE,11,away +401104977,2019,2,2019-06-28,11,Phoenix Mercury,TRUE,5,home +401104978,2019,2,2019-06-28,19,Chicago Sky,FALSE,14,away +401104978,2019,2,2019-06-28,14,Seattle Storm,TRUE,19,home +401104976,2019,2,2019-06-28,3,Dallas Wings,FALSE,9,away +401104976,2019,2,2019-06-28,9,New York Liberty,TRUE,3,home +401104975,2019,2,2019-06-27,17,Las Vegas Aces,FALSE,6,away +401104975,2019,2,2019-06-27,6,Los Angeles Sparks,TRUE,17,home +401104974,2019,2,2019-06-26,18,Connecticut Sun,FALSE,3,away +401104974,2019,2,2019-06-26,3,Dallas Wings,TRUE,18,home +401104973,2019,2,2019-06-26,16,Washington Mystics,TRUE,19,away +401104973,2019,2,2019-06-26,19,Chicago Sky,FALSE,16,home +401104972,2019,2,2019-06-25,14,Seattle Storm,FALSE,17,away +401104972,2019,2,2019-06-25,17,Las Vegas Aces,TRUE,14,home +401104971,2019,2,2019-06-25,8,Minnesota Lynx,TRUE,5,away +401104971,2019,2,2019-06-25,5,Indiana Fever,FALSE,8,home +401104970,2019,2,2019-06-23,5,Indiana Fever,FALSE,14,away +401104970,2019,2,2019-06-23,14,Seattle Storm,TRUE,5,home +401104968,2019,2,2019-06-23,18,Connecticut Sun,FALSE,19,away +401104968,2019,2,2019-06-23,19,Chicago Sky,TRUE,18,home +401104969,2019,2,2019-06-23,6,Los Angeles Sparks,FALSE,11,away +401104969,2019,2,2019-06-23,11,Phoenix Mercury,TRUE,6,home +401104967,2019,2,2019-06-23,16,Washington Mystics,TRUE,20,away +401104967,2019,2,2019-06-23,20,Atlanta Dream,FALSE,16,home +401104966,2019,2,2019-06-22,3,Dallas Wings,FALSE,17,away +401104966,2019,2,2019-06-22,17,Las Vegas Aces,TRUE,3,home +401104965,2019,2,2019-06-22,9,New York Liberty,FALSE,8,away +401104965,2019,2,2019-06-22,8,Minnesota Lynx,TRUE,9,home +401104964,2019,2,2019-06-21,6,Los Angeles Sparks,FALSE,14,away +401104964,2019,2,2019-06-21,14,Seattle Storm,TRUE,6,home +401104963,2019,2,2019-06-21,5,Indiana Fever,TRUE,19,away +401104963,2019,2,2019-06-21,19,Chicago Sky,FALSE,5,home +401104962,2019,2,2019-06-21,20,Atlanta Dream,FALSE,18,away +401104962,2019,2,2019-06-21,18,Connecticut Sun,TRUE,20,home +401104961,2019,2,2019-06-20,16,Washington Mystics,TRUE,17,away +401104961,2019,2,2019-06-20,17,Las Vegas Aces,FALSE,16,home +401104960,2019,2,2019-06-20,11,Phoenix Mercury,FALSE,3,away +401104960,2019,2,2019-06-20,3,Dallas Wings,TRUE,11,home +401104959,2019,2,2019-06-19,19,Chicago Sky,TRUE,9,away +401104959,2019,2,2019-06-19,9,New York Liberty,FALSE,19,home +401104958,2019,2,2019-06-19,5,Indiana Fever,FALSE,20,away +401104958,2019,2,2019-06-19,20,Atlanta Dream,TRUE,5,home +401104957,2019,2,2019-06-18,16,Washington Mystics,TRUE,6,away +401104957,2019,2,2019-06-18,6,Los Angeles Sparks,FALSE,16,home +401104956,2019,2,2019-06-16,17,Las Vegas Aces,TRUE,8,away +401104956,2019,2,2019-06-16,8,Minnesota Lynx,FALSE,17,home +401104955,2019,2,2019-06-16,14,Seattle Storm,FALSE,18,away +401104955,2019,2,2019-06-16,18,Connecticut Sun,TRUE,14,home +401104954,2019,2,2019-06-15,9,New York Liberty,TRUE,6,away +401104954,2019,2,2019-06-15,6,Los Angeles Sparks,FALSE,9,home +401104953,2019,2,2019-06-15,20,Atlanta Dream,FALSE,3,away +401104953,2019,2,2019-06-15,3,Dallas Wings,TRUE,20,home +401104952,2019,2,2019-06-15,19,Chicago Sky,TRUE,5,away +401104952,2019,2,2019-06-15,5,Indiana Fever,FALSE,19,home +401104951,2019,2,2019-06-14,9,New York Liberty,FALSE,17,away +401104951,2019,2,2019-06-14,17,Las Vegas Aces,TRUE,9,home +401104950,2019,2,2019-06-14,6,Los Angeles Sparks,TRUE,11,away +401104950,2019,2,2019-06-14,11,Phoenix Mercury,FALSE,6,home +401104949,2019,2,2019-06-14,18,Connecticut Sun,TRUE,8,away +401104949,2019,2,2019-06-14,8,Minnesota Lynx,FALSE,18,home +401104948,2019,2,2019-06-14,14,Seattle Storm,TRUE,16,away +401104948,2019,2,2019-06-14,16,Washington Mystics,FALSE,14,home +401104947,2019,2,2019-06-13,5,Indiana Fever,TRUE,3,away +401104947,2019,2,2019-06-13,3,Dallas Wings,FALSE,5,home +401104946,2019,2,2019-06-12,8,Minnesota Lynx,FALSE,9,away +401104946,2019,2,2019-06-12,9,New York Liberty,TRUE,8,home +401104945,2019,2,2019-06-11,11,Phoenix Mercury,FALSE,19,away +401104945,2019,2,2019-06-11,19,Chicago Sky,TRUE,11,home +401104943,2019,2,2019-06-11,16,Washington Mystics,FALSE,18,away +401104943,2019,2,2019-06-11,18,Connecticut Sun,TRUE,16,home +401104944,2019,2,2019-06-11,14,Seattle Storm,TRUE,5,away +401104944,2019,2,2019-06-11,5,Indiana Fever,FALSE,14,home +401104942,2019,2,2019-06-09,14,Seattle Storm,FALSE,19,away +401104942,2019,2,2019-06-09,19,Chicago Sky,TRUE,14,home +401104941,2019,2,2019-06-09,11,Phoenix Mercury,TRUE,5,away +401104941,2019,2,2019-06-09,5,Indiana Fever,FALSE,11,home +401104938,2019,2,2019-06-09,18,Connecticut Sun,TRUE,20,away +401104938,2019,2,2019-06-09,20,Atlanta Dream,FALSE,18,home +401104939,2019,2,2019-06-09,17,Las Vegas Aces,FALSE,9,away +401104939,2019,2,2019-06-09,9,New York Liberty,TRUE,17,home +401104940,2019,2,2019-06-09,3,Dallas Wings,FALSE,16,away +401104940,2019,2,2019-06-09,16,Washington Mystics,TRUE,3,home +401104937,2019,2,2019-06-08,6,Los Angeles Sparks,TRUE,8,away +401104937,2019,2,2019-06-08,8,Minnesota Lynx,FALSE,6,home +401104936,2019,2,2019-06-07,16,Washington Mystics,TRUE,9,away +401104936,2019,2,2019-06-07,9,New York Liberty,FALSE,16,home +401104935,2019,2,2019-06-07,3,Dallas Wings,FALSE,5,away +401104935,2019,2,2019-06-07,5,Indiana Fever,TRUE,3,home +401104934,2019,2,2019-06-06,11,Phoenix Mercury,FALSE,8,away +401104934,2019,2,2019-06-06,8,Minnesota Lynx,TRUE,11,home +401104932,2019,2,2019-06-06,17,Las Vegas Aces,TRUE,20,away +401104932,2019,2,2019-06-06,20,Atlanta Dream,FALSE,17,home +401104933,2019,2,2019-06-06,6,Los Angeles Sparks,FALSE,18,away +401104933,2019,2,2019-06-06,18,Connecticut Sun,TRUE,6,home +401104931,2019,2,2019-06-05,19,Chicago Sky,FALSE,16,away +401104931,2019,2,2019-06-05,16,Washington Mystics,TRUE,19,home +401104930,2019,2,2019-06-04,8,Minnesota Lynx,FALSE,14,away +401104930,2019,2,2019-06-04,14,Seattle Storm,TRUE,8,home +401104929,2019,2,2019-06-04,6,Los Angeles Sparks,TRUE,9,away +401104929,2019,2,2019-06-04,9,New York Liberty,FALSE,6,home +401104928,2019,2,2019-06-02,18,Connecticut Sun,TRUE,17,away +401104928,2019,2,2019-06-02,17,Las Vegas Aces,FALSE,18,home +401104926,2019,2,2019-06-01,14,Seattle Storm,FALSE,19,away +401104926,2019,2,2019-06-01,19,Chicago Sky,TRUE,14,home +401104927,2019,2,2019-06-01,8,Minnesota Lynx,TRUE,3,away +401104927,2019,2,2019-06-01,3,Dallas Wings,FALSE,8,home +401104924,2019,2,2019-06-01,9,New York Liberty,FALSE,5,away +401104924,2019,2,2019-06-01,5,Indiana Fever,TRUE,9,home +401104925,2019,2,2019-06-01,20,Atlanta Dream,FALSE,16,away +401104925,2019,2,2019-06-01,16,Washington Mystics,TRUE,20,home +401104923,2019,2,2019-05-31,18,Connecticut Sun,FALSE,6,away +401104923,2019,2,2019-05-31,6,Los Angeles Sparks,TRUE,18,home +401104922,2019,2,2019-05-31,17,Las Vegas Aces,FALSE,11,away +401104922,2019,2,2019-05-31,11,Phoenix Mercury,TRUE,17,home +401104921,2019,2,2019-05-31,14,Seattle Storm,TRUE,20,away +401104921,2019,2,2019-05-31,20,Atlanta Dream,FALSE,14,home +401104920,2019,2,2019-05-29,14,Seattle Storm,FALSE,8,away +401104920,2019,2,2019-05-29,8,Minnesota Lynx,TRUE,14,home +401104919,2019,2,2019-05-28,5,Indiana Fever,FALSE,18,away +401104919,2019,2,2019-05-28,18,Connecticut Sun,TRUE,5,home +401104918,2019,2,2019-05-26,6,Los Angeles Sparks,FALSE,17,away +401104918,2019,2,2019-05-26,17,Las Vegas Aces,TRUE,6,home +401104917,2019,2,2019-05-25,19,Chicago Sky,FALSE,8,away +401104917,2019,2,2019-05-25,8,Minnesota Lynx,TRUE,19,home +401104916,2019,2,2019-05-25,16,Washington Mystics,FALSE,18,away +401104916,2019,2,2019-05-25,18,Connecticut Sun,TRUE,16,home +401104915,2019,2,2019-05-25,11,Phoenix Mercury,FALSE,14,away +401104915,2019,2,2019-05-25,14,Seattle Storm,TRUE,11,home +401104914,2019,2,2019-05-24,5,Indiana Fever,TRUE,9,away +401104914,2019,2,2019-05-24,9,New York Liberty,FALSE,5,home +401104913,2019,2,2019-05-24,3,Dallas Wings,FALSE,20,away +401104913,2019,2,2019-05-24,20,Atlanta Dream,TRUE,3,home +401244185,2020,3,2020-10-06,17,Las Vegas Aces,FALSE,14,away +401244185,2020,3,2020-10-06,14,Seattle Storm,TRUE,17,home +401244184,2020,3,2020-10-04,14,Seattle Storm,TRUE,17,away +401244184,2020,3,2020-10-04,17,Las Vegas Aces,FALSE,14,home +401244183,2020,3,2020-10-02,14,Seattle Storm,TRUE,17,away +401244183,2020,3,2020-10-02,17,Las Vegas Aces,FALSE,14,home +401248413,2020,3,2020-09-29,18,Connecticut Sun,FALSE,17,away +401248413,2020,3,2020-09-29,17,Las Vegas Aces,TRUE,18,home +401244180,2020,3,2020-09-27,14,Seattle Storm,TRUE,8,away +401244180,2020,3,2020-09-27,8,Minnesota Lynx,FALSE,14,home +401244179,2020,3,2020-09-27,17,Las Vegas Aces,TRUE,18,away +401244179,2020,3,2020-09-27,18,Connecticut Sun,FALSE,17,home +401244177,2020,3,2020-09-24,17,Las Vegas Aces,FALSE,18,away +401244177,2020,3,2020-09-24,18,Connecticut Sun,TRUE,17,home +401244178,2020,3,2020-09-24,8,Minnesota Lynx,FALSE,14,away +401244178,2020,3,2020-09-24,14,Seattle Storm,TRUE,8,home +401244175,2020,3,2020-09-22,8,Minnesota Lynx,FALSE,14,away +401244175,2020,3,2020-09-22,14,Seattle Storm,TRUE,8,home +401244176,2020,3,2020-09-22,18,Connecticut Sun,FALSE,17,away +401244176,2020,3,2020-09-22,17,Las Vegas Aces,TRUE,18,home +401244173,2020,3,2020-09-20,18,Connecticut Sun,TRUE,17,away +401244173,2020,3,2020-09-20,17,Las Vegas Aces,FALSE,18,home +401244172,2020,3,2020-09-17,18,Connecticut Sun,TRUE,6,away +401244172,2020,3,2020-09-17,6,Los Angeles Sparks,FALSE,18,home +401244171,2020,3,2020-09-17,11,Phoenix Mercury,FALSE,8,away +401244171,2020,3,2020-09-17,8,Minnesota Lynx,TRUE,11,home +401244170,2020,3,2020-09-15,16,Washington Mystics,FALSE,11,away +401244170,2020,3,2020-09-15,11,Phoenix Mercury,TRUE,16,home +401244169,2020,3,2020-09-15,18,Connecticut Sun,TRUE,19,away +401244169,2020,3,2020-09-15,19,Chicago Sky,FALSE,18,home +401241311,2020,2,2020-09-13,16,Washington Mystics,TRUE,20,away +401241311,2020,2,2020-09-13,20,Atlanta Dream,FALSE,16,home +401241310,2020,2,2020-09-13,17,Las Vegas Aces,TRUE,14,away +401241310,2020,2,2020-09-13,14,Seattle Storm,FALSE,17,home +401241309,2020,2,2020-09-13,3,Dallas Wings,TRUE,9,away +401241309,2020,2,2020-09-13,9,New York Liberty,FALSE,3,home +401230818,2020,2,2020-09-12,8,Minnesota Lynx,TRUE,5,away +401230818,2020,2,2020-09-12,5,Indiana Fever,FALSE,8,home +401230819,2020,2,2020-09-12,17,Las Vegas Aces,TRUE,6,away +401230819,2020,2,2020-09-12,6,Los Angeles Sparks,FALSE,17,home +401230817,2020,2,2020-09-12,16,Washington Mystics,TRUE,9,away +401230817,2020,2,2020-09-12,9,New York Liberty,FALSE,16,home +401230869,2020,2,2020-09-11,14,Seattle Storm,TRUE,11,away +401230869,2020,2,2020-09-11,11,Phoenix Mercury,FALSE,14,home +401230868,2020,2,2020-09-11,19,Chicago Sky,TRUE,3,away +401230868,2020,2,2020-09-11,3,Dallas Wings,FALSE,19,home +401230867,2020,2,2020-09-11,20,Atlanta Dream,TRUE,18,away +401230867,2020,2,2020-09-11,18,Connecticut Sun,FALSE,20,home +401230866,2020,2,2020-09-10,16,Washington Mystics,TRUE,6,away +401230866,2020,2,2020-09-10,6,Los Angeles Sparks,FALSE,16,home +401230865,2020,2,2020-09-10,17,Las Vegas Aces,TRUE,8,away +401230865,2020,2,2020-09-10,8,Minnesota Lynx,FALSE,17,home +401230864,2020,2,2020-09-10,9,New York Liberty,FALSE,5,away +401230864,2020,2,2020-09-10,5,Indiana Fever,TRUE,9,home +401230816,2020,2,2020-09-09,3,Dallas Wings,FALSE,14,away +401230816,2020,2,2020-09-09,14,Seattle Storm,TRUE,3,home +401230863,2020,2,2020-09-09,20,Atlanta Dream,TRUE,19,away +401230863,2020,2,2020-09-09,19,Chicago Sky,FALSE,20,home +401230862,2020,2,2020-09-09,11,Phoenix Mercury,TRUE,18,away +401230862,2020,2,2020-09-09,18,Connecticut Sun,FALSE,11,home +401230861,2020,2,2020-09-08,5,Indiana Fever,FALSE,17,away +401230861,2020,2,2020-09-08,17,Las Vegas Aces,TRUE,5,home +401230860,2020,2,2020-09-08,8,Minnesota Lynx,FALSE,16,away +401230860,2020,2,2020-09-08,16,Washington Mystics,TRUE,8,home +401230859,2020,2,2020-09-08,6,Los Angeles Sparks,TRUE,9,away +401230859,2020,2,2020-09-08,9,New York Liberty,FALSE,6,home +401241308,2020,2,2020-09-07,18,Connecticut Sun,TRUE,11,away +401241308,2020,2,2020-09-07,11,Phoenix Mercury,FALSE,18,home +401230858,2020,2,2020-09-06,19,Chicago Sky,FALSE,6,away +401230858,2020,2,2020-09-06,6,Los Angeles Sparks,TRUE,19,home +401230857,2020,2,2020-09-06,14,Seattle Storm,TRUE,8,away +401230857,2020,2,2020-09-06,8,Minnesota Lynx,FALSE,14,home +401230856,2020,2,2020-09-06,3,Dallas Wings,TRUE,16,away +401230856,2020,2,2020-09-06,16,Washington Mystics,FALSE,3,home +401230815,2020,2,2020-09-05,9,New York Liberty,FALSE,11,away +401230815,2020,2,2020-09-05,11,Phoenix Mercury,TRUE,9,home +401230814,2020,2,2020-09-05,17,Las Vegas Aces,TRUE,20,away +401230814,2020,2,2020-09-05,20,Atlanta Dream,FALSE,17,home +401230855,2020,2,2020-09-05,18,Connecticut Sun,TRUE,5,away +401230855,2020,2,2020-09-05,5,Indiana Fever,FALSE,18,home +401230813,2020,2,2020-09-04,14,Seattle Storm,TRUE,6,away +401230813,2020,2,2020-09-04,6,Los Angeles Sparks,FALSE,14,home +401230854,2020,2,2020-09-04,8,Minnesota Lynx,TRUE,3,away +401230854,2020,2,2020-09-04,3,Dallas Wings,FALSE,8,home +401230853,2020,2,2020-09-04,19,Chicago Sky,FALSE,16,away +401230853,2020,2,2020-09-04,16,Washington Mystics,TRUE,19,home +401230812,2020,2,2020-09-03,5,Indiana Fever,FALSE,11,away +401230812,2020,2,2020-09-03,11,Phoenix Mercury,TRUE,5,home +401230811,2020,2,2020-09-03,17,Las Vegas Aces,TRUE,18,away +401230811,2020,2,2020-09-03,18,Connecticut Sun,FALSE,17,home +401230810,2020,2,2020-09-03,20,Atlanta Dream,TRUE,9,away +401230810,2020,2,2020-09-03,9,New York Liberty,FALSE,20,home +401230852,2020,2,2020-09-02,16,Washington Mystics,FALSE,14,away +401230852,2020,2,2020-09-02,14,Seattle Storm,TRUE,16,home +401230809,2020,2,2020-09-02,6,Los Angeles Sparks,TRUE,3,away +401230809,2020,2,2020-09-02,3,Dallas Wings,FALSE,6,home +401230851,2020,2,2020-09-02,8,Minnesota Lynx,TRUE,19,away +401230851,2020,2,2020-09-02,19,Chicago Sky,FALSE,8,home +401230850,2020,2,2020-09-01,11,Phoenix Mercury,TRUE,17,away +401230850,2020,2,2020-09-01,17,Las Vegas Aces,FALSE,11,home +401230849,2020,2,2020-09-01,5,Indiana Fever,FALSE,20,away +401230849,2020,2,2020-09-01,20,Atlanta Dream,TRUE,5,home +401230848,2020,2,2020-09-01,18,Connecticut Sun,TRUE,9,away +401230848,2020,2,2020-09-01,9,New York Liberty,FALSE,18,home +401241307,2020,2,2020-08-31,6,Los Angeles Sparks,FALSE,8,away +401241307,2020,2,2020-08-31,8,Minnesota Lynx,TRUE,6,home +401241306,2020,2,2020-08-31,19,Chicago Sky,TRUE,5,away +401241306,2020,2,2020-08-31,5,Indiana Fever,FALSE,19,home +401230808,2020,2,2020-08-30,20,Atlanta Dream,FALSE,6,away +401230808,2020,2,2020-08-30,6,Los Angeles Sparks,TRUE,20,home +401230847,2020,2,2020-08-30,11,Phoenix Mercury,TRUE,8,away +401230847,2020,2,2020-08-30,8,Minnesota Lynx,FALSE,11,home +401230846,2020,2,2020-08-30,18,Connecticut Sun,TRUE,16,away +401230846,2020,2,2020-08-30,16,Washington Mystics,FALSE,18,home +401230805,2020,2,2020-08-29,3,Dallas Wings,TRUE,5,away +401230805,2020,2,2020-08-29,5,Indiana Fever,FALSE,3,home +401230806,2020,2,2020-08-29,14,Seattle Storm,TRUE,19,away +401230806,2020,2,2020-08-29,19,Chicago Sky,FALSE,14,home +401230807,2020,2,2020-08-29,9,New York Liberty,FALSE,17,away +401230807,2020,2,2020-08-29,17,Las Vegas Aces,TRUE,9,home +401230845,2020,2,2020-08-28,16,Washington Mystics,FALSE,11,away +401230845,2020,2,2020-08-28,11,Phoenix Mercury,TRUE,16,home +401230844,2020,2,2020-08-28,6,Los Angeles Sparks,TRUE,18,away +401230844,2020,2,2020-08-28,18,Connecticut Sun,FALSE,6,home +401230843,2020,2,2020-08-28,8,Minnesota Lynx,TRUE,20,away +401230843,2020,2,2020-08-28,20,Atlanta Dream,FALSE,8,home +401230839,2020,2,2020-08-25,5,Indiana Fever,FALSE,14,away +401230839,2020,2,2020-08-25,14,Seattle Storm,TRUE,5,home +401230838,2020,2,2020-08-25,17,Las Vegas Aces,TRUE,3,away +401230838,2020,2,2020-08-25,3,Dallas Wings,FALSE,17,home +401230837,2020,2,2020-08-25,9,New York Liberty,TRUE,19,away +401230837,2020,2,2020-08-25,19,Chicago Sky,FALSE,9,home +401230836,2020,2,2020-08-23,11,Phoenix Mercury,TRUE,16,away +401230836,2020,2,2020-08-23,16,Washington Mystics,FALSE,11,home +401230835,2020,2,2020-08-23,3,Dallas Wings,FALSE,6,away +401230835,2020,2,2020-08-23,6,Los Angeles Sparks,TRUE,3,home +401230834,2020,2,2020-08-23,20,Atlanta Dream,TRUE,8,away +401230834,2020,2,2020-08-23,8,Minnesota Lynx,FALSE,20,home +401230833,2020,2,2020-08-22,9,New York Liberty,FALSE,18,away +401230833,2020,2,2020-08-22,18,Connecticut Sun,TRUE,9,home +401230832,2020,2,2020-08-22,5,Indiana Fever,FALSE,19,away +401230832,2020,2,2020-08-22,19,Chicago Sky,TRUE,5,home +401230801,2020,2,2020-08-22,14,Seattle Storm,FALSE,17,away +401230801,2020,2,2020-08-22,17,Las Vegas Aces,TRUE,14,home +401230831,2020,2,2020-08-21,8,Minnesota Lynx,TRUE,11,away +401230831,2020,2,2020-08-21,11,Phoenix Mercury,FALSE,8,home +401230830,2020,2,2020-08-21,16,Washington Mystics,FALSE,3,away +401230830,2020,2,2020-08-21,3,Dallas Wings,TRUE,16,home +401230829,2020,2,2020-08-21,6,Los Angeles Sparks,TRUE,20,away +401230829,2020,2,2020-08-21,20,Atlanta Dream,FALSE,6,home +401230800,2020,2,2020-08-20,18,Connecticut Sun,FALSE,17,away +401230800,2020,2,2020-08-20,17,Las Vegas Aces,TRUE,18,home +401230828,2020,2,2020-08-20,14,Seattle Storm,FALSE,5,away +401230828,2020,2,2020-08-20,5,Indiana Fever,TRUE,14,home +401230799,2020,2,2020-08-20,19,Chicago Sky,TRUE,9,away +401230799,2020,2,2020-08-20,9,New York Liberty,FALSE,19,home +401230827,2020,2,2020-08-19,11,Phoenix Mercury,FALSE,6,away +401230827,2020,2,2020-08-19,6,Los Angeles Sparks,TRUE,11,home +401230826,2020,2,2020-08-19,3,Dallas Wings,FALSE,8,away +401230826,2020,2,2020-08-19,8,Minnesota Lynx,TRUE,3,home +401230798,2020,2,2020-08-19,20,Atlanta Dream,FALSE,16,away +401230798,2020,2,2020-08-19,16,Washington Mystics,TRUE,20,home +401230825,2020,2,2020-08-18,9,New York Liberty,FALSE,14,away +401230825,2020,2,2020-08-18,14,Seattle Storm,TRUE,9,home +401230824,2020,2,2020-08-18,17,Las Vegas Aces,FALSE,19,away +401230824,2020,2,2020-08-18,19,Chicago Sky,TRUE,17,home +401230823,2020,2,2020-08-18,5,Indiana Fever,FALSE,18,away +401230823,2020,2,2020-08-18,18,Connecticut Sun,TRUE,5,home +401230820,2020,2,2020-08-16,19,Chicago Sky,TRUE,20,away +401230820,2020,2,2020-08-16,20,Atlanta Dream,FALSE,19,home +401230821,2020,2,2020-08-16,14,Seattle Storm,TRUE,18,away +401230821,2020,2,2020-08-16,18,Connecticut Sun,FALSE,14,home +401230822,2020,2,2020-08-16,3,Dallas Wings,TRUE,11,away +401230822,2020,2,2020-08-16,11,Phoenix Mercury,FALSE,3,home +401230796,2020,2,2020-08-15,9,New York Liberty,FALSE,8,away +401230796,2020,2,2020-08-15,8,Minnesota Lynx,TRUE,9,home +401230795,2020,2,2020-08-15,6,Los Angeles Sparks,TRUE,5,away +401230795,2020,2,2020-08-15,5,Indiana Fever,FALSE,6,home +401230797,2020,2,2020-08-15,16,Washington Mystics,FALSE,17,away +401230797,2020,2,2020-08-15,17,Las Vegas Aces,TRUE,16,home +401230794,2020,2,2020-08-14,20,Atlanta Dream,FALSE,11,away +401230794,2020,2,2020-08-14,11,Phoenix Mercury,TRUE,20,home +401230793,2020,2,2020-08-14,14,Seattle Storm,TRUE,3,away +401230793,2020,2,2020-08-14,3,Dallas Wings,FALSE,14,home +401230792,2020,2,2020-08-14,18,Connecticut Sun,TRUE,19,away +401230792,2020,2,2020-08-14,19,Chicago Sky,FALSE,18,home +401230791,2020,2,2020-08-13,8,Minnesota Lynx,FALSE,17,away +401230791,2020,2,2020-08-13,17,Las Vegas Aces,TRUE,8,home +401230790,2020,2,2020-08-13,6,Los Angeles Sparks,TRUE,16,away +401230790,2020,2,2020-08-13,16,Washington Mystics,FALSE,6,home +401230789,2020,2,2020-08-13,5,Indiana Fever,TRUE,9,away +401230789,2020,2,2020-08-13,9,New York Liberty,FALSE,5,home +401230788,2020,2,2020-08-12,20,Atlanta Dream,FALSE,14,away +401230788,2020,2,2020-08-12,14,Seattle Storm,TRUE,20,home +401230787,2020,2,2020-08-12,11,Phoenix Mercury,FALSE,19,away +401230787,2020,2,2020-08-12,19,Chicago Sky,TRUE,11,home +401230786,2020,2,2020-08-12,3,Dallas Wings,FALSE,18,away +401230786,2020,2,2020-08-12,18,Connecticut Sun,TRUE,3,home +401230785,2020,2,2020-08-11,9,New York Liberty,FALSE,6,away +401230785,2020,2,2020-08-11,6,Los Angeles Sparks,TRUE,9,home +401230783,2020,2,2020-08-11,16,Washington Mystics,FALSE,8,away +401230783,2020,2,2020-08-11,8,Minnesota Lynx,TRUE,16,home +401230784,2020,2,2020-08-11,17,Las Vegas Aces,TRUE,5,away +401230784,2020,2,2020-08-11,5,Indiana Fever,FALSE,17,home +401230782,2020,2,2020-08-10,19,Chicago Sky,FALSE,14,away +401230782,2020,2,2020-08-10,14,Seattle Storm,TRUE,19,home +401230781,2020,2,2020-08-10,11,Phoenix Mercury,TRUE,3,away +401230781,2020,2,2020-08-10,3,Dallas Wings,FALSE,11,home +401230780,2020,2,2020-08-10,18,Connecticut Sun,TRUE,20,away +401230780,2020,2,2020-08-10,20,Atlanta Dream,FALSE,18,home +401230778,2020,2,2020-08-09,16,Washington Mystics,FALSE,5,away +401230778,2020,2,2020-08-09,5,Indiana Fever,TRUE,16,home +401230777,2020,2,2020-08-09,17,Las Vegas Aces,TRUE,9,away +401230777,2020,2,2020-08-09,9,New York Liberty,FALSE,17,home +401230779,2020,2,2020-08-09,8,Minnesota Lynx,FALSE,6,away +401230779,2020,2,2020-08-09,6,Los Angeles Sparks,TRUE,8,home +401230776,2020,2,2020-08-08,19,Chicago Sky,TRUE,18,away +401230776,2020,2,2020-08-08,18,Connecticut Sun,FALSE,19,home +401230775,2020,2,2020-08-08,11,Phoenix Mercury,FALSE,14,away +401230775,2020,2,2020-08-08,14,Seattle Storm,TRUE,11,home +401230774,2020,2,2020-08-08,20,Atlanta Dream,FALSE,3,away +401230774,2020,2,2020-08-08,3,Dallas Wings,TRUE,20,home +401230773,2020,2,2020-08-07,6,Los Angeles Sparks,FALSE,17,away +401230773,2020,2,2020-08-07,17,Las Vegas Aces,TRUE,6,home +401230772,2020,2,2020-08-07,9,New York Liberty,TRUE,16,away +401230772,2020,2,2020-08-07,16,Washington Mystics,FALSE,9,home +401230771,2020,2,2020-08-07,5,Indiana Fever,FALSE,8,away +401230771,2020,2,2020-08-07,8,Minnesota Lynx,TRUE,5,home +401230770,2020,2,2020-08-06,19,Chicago Sky,FALSE,11,away +401230770,2020,2,2020-08-06,11,Phoenix Mercury,TRUE,19,home +401230769,2020,2,2020-08-06,18,Connecticut Sun,TRUE,3,away +401230769,2020,2,2020-08-06,3,Dallas Wings,FALSE,18,home +401230768,2020,2,2020-08-06,14,Seattle Storm,TRUE,20,away +401230768,2020,2,2020-08-06,20,Atlanta Dream,FALSE,14,home +401230767,2020,2,2020-08-05,5,Indiana Fever,FALSE,6,away +401230767,2020,2,2020-08-05,6,Los Angeles Sparks,TRUE,5,home +401230766,2020,2,2020-08-05,17,Las Vegas Aces,TRUE,16,away +401230766,2020,2,2020-08-05,16,Washington Mystics,FALSE,17,home +401230765,2020,2,2020-08-05,8,Minnesota Lynx,TRUE,9,away +401230765,2020,2,2020-08-05,9,New York Liberty,FALSE,8,home +401230764,2020,2,2020-08-04,18,Connecticut Sun,FALSE,14,away +401230764,2020,2,2020-08-04,14,Seattle Storm,TRUE,18,home +401230763,2020,2,2020-08-04,11,Phoenix Mercury,TRUE,20,away +401230763,2020,2,2020-08-04,20,Atlanta Dream,FALSE,11,home +401230762,2020,2,2020-08-04,3,Dallas Wings,FALSE,19,away +401230762,2020,2,2020-08-04,19,Chicago Sky,TRUE,3,home +401230761,2020,2,2020-08-02,3,Dallas Wings,FALSE,17,away +401230761,2020,2,2020-08-02,17,Las Vegas Aces,TRUE,3,home +401230760,2020,2,2020-08-02,20,Atlanta Dream,FALSE,5,away +401230760,2020,2,2020-08-02,5,Indiana Fever,TRUE,20,home +401230759,2020,2,2020-08-02,11,Phoenix Mercury,TRUE,9,away +401230759,2020,2,2020-08-02,9,New York Liberty,FALSE,11,home +401230758,2020,2,2020-08-01,6,Los Angeles Sparks,FALSE,14,away +401230758,2020,2,2020-08-01,14,Seattle Storm,TRUE,6,home +401230757,2020,2,2020-08-01,16,Washington Mystics,FALSE,19,away +401230757,2020,2,2020-08-01,19,Chicago Sky,TRUE,16,home +401230756,2020,2,2020-08-01,8,Minnesota Lynx,TRUE,18,away +401230756,2020,2,2020-08-01,18,Connecticut Sun,FALSE,8,home +401230755,2020,2,2020-07-31,17,Las Vegas Aces,FALSE,11,away +401230755,2020,2,2020-07-31,11,Phoenix Mercury,TRUE,17,home +401230754,2020,2,2020-07-31,5,Indiana Fever,FALSE,3,away +401230754,2020,2,2020-07-31,3,Dallas Wings,TRUE,5,home +401230753,2020,2,2020-07-31,9,New York Liberty,FALSE,20,away +401230753,2020,2,2020-07-31,20,Atlanta Dream,TRUE,9,home +401230472,2020,2,2020-07-30,18,Connecticut Sun,FALSE,6,away +401230472,2020,2,2020-07-30,6,Los Angeles Sparks,TRUE,18,home +401230471,2020,2,2020-07-30,19,Chicago Sky,FALSE,8,away +401230471,2020,2,2020-07-30,8,Minnesota Lynx,TRUE,19,home +401230470,2020,2,2020-07-30,14,Seattle Storm,FALSE,16,away +401230470,2020,2,2020-07-30,16,Washington Mystics,TRUE,14,home +401230469,2020,2,2020-07-29,20,Atlanta Dream,FALSE,17,away +401230469,2020,2,2020-07-29,17,Las Vegas Aces,TRUE,20,home +401230468,2020,2,2020-07-29,9,New York Liberty,FALSE,3,away +401230468,2020,2,2020-07-29,3,Dallas Wings,TRUE,9,home +401230467,2020,2,2020-07-29,11,Phoenix Mercury,FALSE,5,away +401230467,2020,2,2020-07-29,5,Indiana Fever,TRUE,11,home +401230466,2020,2,2020-07-28,8,Minnesota Lynx,FALSE,14,away +401230466,2020,2,2020-07-28,14,Seattle Storm,TRUE,8,home +401230465,2020,2,2020-07-28,6,Los Angeles Sparks,FALSE,19,away +401230465,2020,2,2020-07-28,19,Chicago Sky,TRUE,6,home +401230464,2020,2,2020-07-28,16,Washington Mystics,TRUE,18,away +401230464,2020,2,2020-07-28,18,Connecticut Sun,FALSE,16,home +401230463,2020,2,2020-07-26,3,Dallas Wings,FALSE,20,away +401230463,2020,2,2020-07-26,20,Atlanta Dream,TRUE,3,home +401230462,2020,2,2020-07-26,19,Chicago Sky,TRUE,17,away +401230462,2020,2,2020-07-26,17,Las Vegas Aces,FALSE,19,home +401230461,2020,2,2020-07-26,18,Connecticut Sun,FALSE,8,away +401230461,2020,2,2020-07-26,8,Minnesota Lynx,TRUE,18,home +401230735,2020,2,2020-07-25,5,Indiana Fever,FALSE,16,away +401230735,2020,2,2020-07-25,16,Washington Mystics,TRUE,5,home +401230734,2020,2,2020-07-25,6,Los Angeles Sparks,TRUE,11,away +401230734,2020,2,2020-07-25,11,Phoenix Mercury,FALSE,6,home +401230733,2020,2,2020-07-25,14,Seattle Storm,TRUE,9,away +401230733,2020,2,2020-07-25,9,New York Liberty,FALSE,14,home +401370398,2021,3,2021-10-17,11,Phoenix Mercury,FALSE,19,away +401370398,2021,3,2021-10-17,19,Chicago Sky,TRUE,11,home +401370397,2021,3,2021-10-15,11,Phoenix Mercury,FALSE,19,away +401370397,2021,3,2021-10-15,19,Chicago Sky,TRUE,11,home +401370396,2021,3,2021-10-13,19,Chicago Sky,FALSE,11,away +401370396,2021,3,2021-10-13,11,Phoenix Mercury,TRUE,19,home +401370395,2021,3,2021-10-10,19,Chicago Sky,TRUE,11,away +401370395,2021,3,2021-10-10,11,Phoenix Mercury,FALSE,19,home +401370442,2021,3,2021-10-08,11,Phoenix Mercury,TRUE,17,away +401370442,2021,3,2021-10-08,17,Las Vegas Aces,FALSE,11,home +401370440,2021,3,2021-10-06,17,Las Vegas Aces,TRUE,11,away +401370440,2021,3,2021-10-06,11,Phoenix Mercury,FALSE,17,home +401370441,2021,3,2021-10-06,18,Connecticut Sun,FALSE,19,away +401370441,2021,3,2021-10-06,19,Chicago Sky,TRUE,18,home +401370438,2021,3,2021-10-03,17,Las Vegas Aces,FALSE,11,away +401370438,2021,3,2021-10-03,11,Phoenix Mercury,TRUE,17,home +401370439,2021,3,2021-10-03,18,Connecticut Sun,FALSE,19,away +401370439,2021,3,2021-10-03,19,Chicago Sky,TRUE,18,home +401370437,2021,3,2021-09-30,11,Phoenix Mercury,TRUE,17,away +401370437,2021,3,2021-09-30,17,Las Vegas Aces,FALSE,11,home +401370436,2021,3,2021-09-30,19,Chicago Sky,FALSE,18,away +401370436,2021,3,2021-09-30,18,Connecticut Sun,TRUE,19,home +401370435,2021,3,2021-09-28,11,Phoenix Mercury,FALSE,17,away +401370435,2021,3,2021-09-28,17,Las Vegas Aces,TRUE,11,home +401370434,2021,3,2021-09-28,19,Chicago Sky,TRUE,18,away +401370434,2021,3,2021-09-28,18,Connecticut Sun,FALSE,19,home +401370432,2021,3,2021-09-26,19,Chicago Sky,TRUE,8,away +401370432,2021,3,2021-09-26,8,Minnesota Lynx,FALSE,19,home +401370433,2021,3,2021-09-26,11,Phoenix Mercury,TRUE,14,away +401370433,2021,3,2021-09-26,14,Seattle Storm,FALSE,11,home +401370431,2021,3,2021-09-23,9,New York Liberty,FALSE,11,away +401370431,2021,3,2021-09-23,11,Phoenix Mercury,TRUE,9,home +401370430,2021,3,2021-09-23,3,Dallas Wings,FALSE,19,away +401370430,2021,3,2021-09-23,19,Chicago Sky,TRUE,3,home +401320756,2021,2,2021-09-19,5,Indiana Fever,FALSE,19,away +401320756,2021,2,2021-09-19,19,Chicago Sky,TRUE,5,home +401320755,2021,2,2021-09-19,6,Los Angeles Sparks,FALSE,3,away +401320755,2021,2,2021-09-19,3,Dallas Wings,TRUE,6,home +401320753,2021,2,2021-09-19,17,Las Vegas Aces,TRUE,11,away +401320753,2021,2,2021-09-19,11,Phoenix Mercury,FALSE,17,home +401320754,2021,2,2021-09-19,8,Minnesota Lynx,TRUE,16,away +401320754,2021,2,2021-09-19,16,Washington Mystics,FALSE,8,home +401320752,2021,2,2021-09-19,20,Atlanta Dream,FALSE,18,away +401320752,2021,2,2021-09-19,18,Connecticut Sun,TRUE,20,home +401320751,2021,2,2021-09-17,11,Phoenix Mercury,FALSE,14,away +401320751,2021,2,2021-09-17,14,Seattle Storm,TRUE,11,home +401320750,2021,2,2021-09-17,17,Las Vegas Aces,TRUE,19,away +401320750,2021,2,2021-09-17,19,Chicago Sky,FALSE,17,home +401320748,2021,2,2021-09-17,8,Minnesota Lynx,TRUE,5,away +401320748,2021,2,2021-09-17,5,Indiana Fever,FALSE,8,home +401320749,2021,2,2021-09-17,16,Washington Mystics,FALSE,9,away +401320749,2021,2,2021-09-17,9,New York Liberty,TRUE,16,home +401320747,2021,2,2021-09-16,6,Los Angeles Sparks,TRUE,20,away +401320747,2021,2,2021-09-16,20,Atlanta Dream,FALSE,6,home +401320746,2021,2,2021-09-15,9,New York Liberty,FALSE,18,away +401320746,2021,2,2021-09-15,18,Connecticut Sun,TRUE,9,home +401320745,2021,2,2021-09-14,5,Indiana Fever,FALSE,20,away +401320745,2021,2,2021-09-14,20,Atlanta Dream,TRUE,5,home +401320744,2021,2,2021-09-13,3,Dallas Wings,FALSE,17,away +401320744,2021,2,2021-09-13,17,Las Vegas Aces,TRUE,3,home +401320743,2021,2,2021-09-12,14,Seattle Storm,FALSE,6,away +401320743,2021,2,2021-09-12,6,Los Angeles Sparks,TRUE,14,home +401320742,2021,2,2021-09-12,5,Indiana Fever,FALSE,8,away +401320742,2021,2,2021-09-12,8,Minnesota Lynx,TRUE,5,home +401320741,2021,2,2021-09-12,16,Washington Mystics,TRUE,19,away +401320741,2021,2,2021-09-12,19,Chicago Sky,FALSE,16,home +401320740,2021,2,2021-09-11,18,Connecticut Sun,TRUE,11,away +401320740,2021,2,2021-09-11,11,Phoenix Mercury,FALSE,18,home +401320739,2021,2,2021-09-11,9,New York Liberty,FALSE,3,away +401320739,2021,2,2021-09-11,3,Dallas Wings,TRUE,9,home +401320738,2021,2,2021-09-10,5,Indiana Fever,FALSE,8,away +401320738,2021,2,2021-09-10,8,Minnesota Lynx,TRUE,5,home +401320737,2021,2,2021-09-10,20,Atlanta Dream,FALSE,16,away +401320737,2021,2,2021-09-10,16,Washington Mystics,TRUE,20,home +401320736,2021,2,2021-09-09,18,Connecticut Sun,TRUE,6,away +401320736,2021,2,2021-09-09,6,Los Angeles Sparks,FALSE,18,home +401320735,2021,2,2021-09-08,8,Minnesota Lynx,FALSE,17,away +401320735,2021,2,2021-09-08,17,Las Vegas Aces,TRUE,8,home +401320734,2021,2,2021-09-08,11,Phoenix Mercury,TRUE,20,away +401320734,2021,2,2021-09-08,20,Atlanta Dream,FALSE,11,home +401320733,2021,2,2021-09-07,16,Washington Mystics,FALSE,14,away +401320733,2021,2,2021-09-07,14,Seattle Storm,TRUE,16,home +401320732,2021,2,2021-09-07,18,Connecticut Sun,TRUE,3,away +401320732,2021,2,2021-09-07,3,Dallas Wings,FALSE,18,home +401320731,2021,2,2021-09-06,11,Phoenix Mercury,TRUE,5,away +401320731,2021,2,2021-09-06,5,Indiana Fever,FALSE,11,home +401320730,2021,2,2021-09-05,20,Atlanta Dream,TRUE,3,away +401320730,2021,2,2021-09-05,3,Dallas Wings,FALSE,20,home +401320729,2021,2,2021-09-05,17,Las Vegas Aces,FALSE,19,away +401320729,2021,2,2021-09-05,19,Chicago Sky,TRUE,17,home +401320728,2021,2,2021-09-04,16,Washington Mystics,FALSE,8,away +401320728,2021,2,2021-09-04,8,Minnesota Lynx,TRUE,16,home +401320727,2021,2,2021-09-04,11,Phoenix Mercury,TRUE,5,away +401320727,2021,2,2021-09-04,5,Indiana Fever,FALSE,11,home +401320725,2021,2,2021-09-02,19,Chicago Sky,FALSE,17,away +401320725,2021,2,2021-09-02,17,Las Vegas Aces,TRUE,19,home +401320726,2021,2,2021-09-02,9,New York Liberty,FALSE,14,away +401320726,2021,2,2021-09-02,14,Seattle Storm,TRUE,9,home +401320723,2021,2,2021-09-02,20,Atlanta Dream,FALSE,3,away +401320723,2021,2,2021-09-02,3,Dallas Wings,TRUE,20,home +401320724,2021,2,2021-09-02,6,Los Angeles Sparks,FALSE,8,away +401320724,2021,2,2021-09-02,8,Minnesota Lynx,TRUE,6,home +401320722,2021,2,2021-08-31,19,Chicago Sky,FALSE,11,away +401320722,2021,2,2021-08-31,11,Phoenix Mercury,TRUE,19,home +401320721,2021,2,2021-08-31,9,New York Liberty,FALSE,8,away +401320721,2021,2,2021-08-31,8,Minnesota Lynx,TRUE,9,home +401320719,2021,2,2021-08-31,6,Los Angeles Sparks,FALSE,5,away +401320719,2021,2,2021-08-31,5,Indiana Fever,TRUE,6,home +401320720,2021,2,2021-08-31,18,Connecticut Sun,TRUE,16,away +401320720,2021,2,2021-08-31,16,Washington Mystics,FALSE,18,home +401320718,2021,2,2021-08-29,19,Chicago Sky,TRUE,14,away +401320718,2021,2,2021-08-29,14,Seattle Storm,FALSE,19,home +401320716,2021,2,2021-08-28,6,Los Angeles Sparks,FALSE,18,away +401320716,2021,2,2021-08-28,18,Connecticut Sun,TRUE,6,home +401320717,2021,2,2021-08-28,3,Dallas Wings,FALSE,16,away +401320717,2021,2,2021-08-28,16,Washington Mystics,TRUE,3,home +401320715,2021,2,2021-08-28,17,Las Vegas Aces,TRUE,5,away +401320715,2021,2,2021-08-28,5,Indiana Fever,FALSE,17,home +401320714,2021,2,2021-08-27,19,Chicago Sky,TRUE,14,away +401320714,2021,2,2021-08-27,14,Seattle Storm,FALSE,19,home +401320713,2021,2,2021-08-27,11,Phoenix Mercury,TRUE,9,away +401320713,2021,2,2021-08-27,9,New York Liberty,FALSE,11,home +401320710,2021,2,2021-08-26,17,Las Vegas Aces,TRUE,20,away +401320710,2021,2,2021-08-26,20,Atlanta Dream,FALSE,17,home +401320711,2021,2,2021-08-26,6,Los Angeles Sparks,FALSE,18,away +401320711,2021,2,2021-08-26,18,Connecticut Sun,TRUE,6,home +401320712,2021,2,2021-08-26,3,Dallas Wings,TRUE,16,away +401320712,2021,2,2021-08-26,16,Washington Mystics,FALSE,3,home +401320709,2021,2,2021-08-25,11,Phoenix Mercury,TRUE,9,away +401320709,2021,2,2021-08-25,9,New York Liberty,FALSE,11,home +401320705,2021,2,2021-08-24,14,Seattle Storm,FALSE,8,away +401320705,2021,2,2021-08-24,8,Minnesota Lynx,TRUE,14,home +401320706,2021,2,2021-08-24,19,Chicago Sky,TRUE,20,away +401320706,2021,2,2021-08-24,20,Atlanta Dream,FALSE,19,home +401320707,2021,2,2021-08-24,17,Las Vegas Aces,FALSE,18,away +401320707,2021,2,2021-08-24,18,Connecticut Sun,TRUE,17,home +401320708,2021,2,2021-08-24,6,Los Angeles Sparks,FALSE,16,away +401320708,2021,2,2021-08-24,16,Washington Mystics,TRUE,6,home +401320704,2021,2,2021-08-22,14,Seattle Storm,TRUE,16,away +401320704,2021,2,2021-08-22,16,Washington Mystics,FALSE,14,home +401320703,2021,2,2021-08-22,6,Los Angeles Sparks,TRUE,9,away +401320703,2021,2,2021-08-22,9,New York Liberty,FALSE,6,home +401320702,2021,2,2021-08-21,8,Minnesota Lynx,TRUE,19,away +401320702,2021,2,2021-08-21,19,Chicago Sky,FALSE,8,home +401320701,2021,2,2021-08-21,11,Phoenix Mercury,TRUE,20,away +401320701,2021,2,2021-08-21,20,Atlanta Dream,FALSE,11,home +401320700,2021,2,2021-08-20,5,Indiana Fever,TRUE,3,away +401320700,2021,2,2021-08-20,3,Dallas Wings,FALSE,5,home +401320699,2021,2,2021-08-20,14,Seattle Storm,TRUE,9,away +401320699,2021,2,2021-08-20,9,New York Liberty,FALSE,14,home +401320698,2021,2,2021-08-19,20,Atlanta Dream,FALSE,6,away +401320698,2021,2,2021-08-19,6,Los Angeles Sparks,TRUE,20,home +401320697,2021,2,2021-08-19,16,Washington Mystics,FALSE,11,away +401320697,2021,2,2021-08-19,11,Phoenix Mercury,TRUE,16,home +401320696,2021,2,2021-08-19,8,Minnesota Lynx,FALSE,18,away +401320696,2021,2,2021-08-19,18,Connecticut Sun,TRUE,8,home +401320695,2021,2,2021-08-18,14,Seattle Storm,FALSE,9,away +401320695,2021,2,2021-08-18,9,New York Liberty,TRUE,14,home +401320694,2021,2,2021-08-17,20,Atlanta Dream,FALSE,6,away +401320694,2021,2,2021-08-17,6,Los Angeles Sparks,TRUE,20,home +401320692,2021,2,2021-08-17,16,Washington Mystics,FALSE,17,away +401320692,2021,2,2021-08-17,17,Las Vegas Aces,TRUE,16,home +401320693,2021,2,2021-08-17,5,Indiana Fever,FALSE,11,away +401320693,2021,2,2021-08-17,11,Phoenix Mercury,TRUE,5,home +401320691,2021,2,2021-08-17,3,Dallas Wings,TRUE,19,away +401320691,2021,2,2021-08-17,19,Chicago Sky,FALSE,3,home +401320690,2021,2,2021-08-17,8,Minnesota Lynx,FALSE,18,away +401320690,2021,2,2021-08-17,18,Connecticut Sun,TRUE,8,home +401320689,2021,2,2021-08-15,5,Indiana Fever,FALSE,6,away +401320689,2021,2,2021-08-15,6,Los Angeles Sparks,TRUE,5,home +401320688,2021,2,2021-08-15,9,New York Liberty,FALSE,8,away +401320688,2021,2,2021-08-15,8,Minnesota Lynx,TRUE,9,home +401320686,2021,2,2021-08-15,16,Washington Mystics,FALSE,17,away +401320686,2021,2,2021-08-15,17,Las Vegas Aces,TRUE,16,home +401320687,2021,2,2021-08-15,20,Atlanta Dream,FALSE,11,away +401320687,2021,2,2021-08-15,11,Phoenix Mercury,TRUE,20,home +401320684,2021,2,2021-08-15,14,Seattle Storm,FALSE,19,away +401320684,2021,2,2021-08-15,19,Chicago Sky,TRUE,14,home +401320685,2021,2,2021-08-15,18,Connecticut Sun,TRUE,3,away +401320685,2021,2,2021-08-15,3,Dallas Wings,FALSE,18,home +401353913,2021,2,2021-08-12,18,Connecticut Sun,FALSE,14,away +401353913,2021,2,2021-08-12,14,Seattle Storm,TRUE,18,home +401341447,2021,2,2021-07-14,97,Team Usa,FALSE,96,away +401341447,2021,2,2021-07-14,96,Team WNBA,TRUE,97,home +401320683,2021,2,2021-07-11,8,Minnesota Lynx,TRUE,6,away +401320683,2021,2,2021-07-11,6,Los Angeles Sparks,FALSE,8,home +401320682,2021,2,2021-07-11,11,Phoenix Mercury,FALSE,14,away +401320682,2021,2,2021-07-11,14,Seattle Storm,TRUE,11,home +401320681,2021,2,2021-07-11,5,Indiana Fever,TRUE,20,away +401320681,2021,2,2021-07-11,20,Atlanta Dream,FALSE,5,home +401320680,2021,2,2021-07-11,18,Connecticut Sun,TRUE,9,away +401320680,2021,2,2021-07-11,9,New York Liberty,FALSE,18,home +401320679,2021,2,2021-07-11,17,Las Vegas Aces,TRUE,3,away +401320679,2021,2,2021-07-11,3,Dallas Wings,FALSE,17,home +401320678,2021,2,2021-07-10,16,Washington Mystics,TRUE,19,away +401320678,2021,2,2021-07-10,19,Chicago Sky,FALSE,16,home +401320677,2021,2,2021-07-09,8,Minnesota Lynx,TRUE,17,away +401320677,2021,2,2021-07-09,17,Las Vegas Aces,FALSE,8,home +401320676,2021,2,2021-07-09,14,Seattle Storm,FALSE,11,away +401320676,2021,2,2021-07-09,11,Phoenix Mercury,TRUE,14,home +401320674,2021,2,2021-07-09,20,Atlanta Dream,FALSE,18,away +401320674,2021,2,2021-07-09,18,Connecticut Sun,TRUE,20,home +401320675,2021,2,2021-07-09,9,New York Liberty,FALSE,5,away +401320675,2021,2,2021-07-09,5,Indiana Fever,TRUE,9,home +401320672,2021,2,2021-07-07,11,Phoenix Mercury,TRUE,17,away +401320672,2021,2,2021-07-07,17,Las Vegas Aces,FALSE,11,home +401320673,2021,2,2021-07-07,6,Los Angeles Sparks,FALSE,14,away +401320673,2021,2,2021-07-07,14,Seattle Storm,TRUE,6,home +401320671,2021,2,2021-07-07,3,Dallas Wings,FALSE,8,away +401320671,2021,2,2021-07-07,8,Minnesota Lynx,TRUE,3,home +401320670,2021,2,2021-07-05,3,Dallas Wings,FALSE,9,away +401320670,2021,2,2021-07-05,9,New York Liberty,TRUE,3,home +401320669,2021,2,2021-07-04,14,Seattle Storm,TRUE,6,away +401320669,2021,2,2021-07-04,6,Los Angeles Sparks,FALSE,14,home +401320668,2021,2,2021-07-04,20,Atlanta Dream,FALSE,17,away +401320668,2021,2,2021-07-04,17,Las Vegas Aces,TRUE,20,home +401320664,2021,2,2021-07-03,8,Minnesota Lynx,TRUE,11,away +401320664,2021,2,2021-07-03,11,Phoenix Mercury,FALSE,8,home +401320666,2021,2,2021-07-03,18,Connecticut Sun,FALSE,5,away +401320666,2021,2,2021-07-03,5,Indiana Fever,TRUE,18,home +401320667,2021,2,2021-07-03,16,Washington Mystics,FALSE,9,away +401320667,2021,2,2021-07-03,9,New York Liberty,TRUE,16,home +401320663,2021,2,2021-07-02,17,Las Vegas Aces,TRUE,6,away +401320663,2021,2,2021-07-02,6,Los Angeles Sparks,FALSE,17,home +401320665,2021,2,2021-07-02,20,Atlanta Dream,FALSE,14,away +401320665,2021,2,2021-07-02,14,Seattle Storm,TRUE,20,home +401320662,2021,2,2021-07-02,19,Chicago Sky,FALSE,3,away +401320662,2021,2,2021-07-02,3,Dallas Wings,TRUE,19,home +401320661,2021,2,2021-07-01,18,Connecticut Sun,TRUE,5,away +401320661,2021,2,2021-07-01,5,Indiana Fever,FALSE,18,home +401320660,2021,2,2021-06-30,17,Las Vegas Aces,TRUE,6,away +401320660,2021,2,2021-06-30,6,Los Angeles Sparks,FALSE,17,home +401320659,2021,2,2021-06-30,8,Minnesota Lynx,TRUE,11,away +401320659,2021,2,2021-06-30,11,Phoenix Mercury,FALSE,8,home +401320658,2021,2,2021-06-30,19,Chicago Sky,TRUE,3,away +401320658,2021,2,2021-06-30,3,Dallas Wings,FALSE,19,home +401320656,2021,2,2021-06-29,9,New York Liberty,FALSE,20,away +401320656,2021,2,2021-06-29,20,Atlanta Dream,TRUE,9,home +401320657,2021,2,2021-06-29,18,Connecticut Sun,TRUE,16,away +401320657,2021,2,2021-06-29,16,Washington Mystics,FALSE,18,home +401320653,2021,2,2021-06-27,6,Los Angeles Sparks,FALSE,11,away +401320653,2021,2,2021-06-27,11,Phoenix Mercury,TRUE,6,home +401320655,2021,2,2021-06-27,14,Seattle Storm,FALSE,17,away +401320655,2021,2,2021-06-27,17,Las Vegas Aces,TRUE,14,home +401320654,2021,2,2021-06-27,19,Chicago Sky,FALSE,18,away +401320654,2021,2,2021-06-27,18,Connecticut Sun,TRUE,19,home +401320652,2021,2,2021-06-26,9,New York Liberty,TRUE,20,away +401320652,2021,2,2021-06-26,20,Atlanta Dream,FALSE,9,home +401320651,2021,2,2021-06-26,16,Washington Mystics,FALSE,3,away +401320651,2021,2,2021-06-26,3,Dallas Wings,TRUE,16,home +401320650,2021,2,2021-06-25,17,Las Vegas Aces,FALSE,8,away +401320650,2021,2,2021-06-25,8,Minnesota Lynx,TRUE,17,home +401320649,2021,2,2021-06-24,16,Washington Mystics,FALSE,6,away +401320649,2021,2,2021-06-24,6,Los Angeles Sparks,TRUE,16,home +401320647,2021,2,2021-06-24,3,Dallas Wings,TRUE,5,away +401320647,2021,2,2021-06-24,5,Indiana Fever,FALSE,3,home +401320648,2021,2,2021-06-24,19,Chicago Sky,TRUE,9,away +401320648,2021,2,2021-06-24,9,New York Liberty,FALSE,19,home +401320646,2021,2,2021-06-23,8,Minnesota Lynx,TRUE,20,away +401320646,2021,2,2021-06-23,20,Atlanta Dream,FALSE,8,home +401320645,2021,2,2021-06-22,16,Washington Mystics,TRUE,14,away +401320645,2021,2,2021-06-22,14,Seattle Storm,FALSE,16,home +401320643,2021,2,2021-06-22,3,Dallas Wings,FALSE,18,away +401320643,2021,2,2021-06-22,18,Connecticut Sun,TRUE,3,home +401320644,2021,2,2021-06-22,19,Chicago Sky,TRUE,9,away +401320644,2021,2,2021-06-22,9,New York Liberty,FALSE,19,home +401320642,2021,2,2021-06-20,9,New York Liberty,TRUE,6,away +401320642,2021,2,2021-06-20,6,Los Angeles Sparks,FALSE,9,home +401320641,2021,2,2021-06-19,8,Minnesota Lynx,FALSE,3,away +401320641,2021,2,2021-06-19,3,Dallas Wings,TRUE,8,home +401320640,2021,2,2021-06-19,5,Indiana Fever,FALSE,16,away +401320640,2021,2,2021-06-19,16,Washington Mystics,TRUE,5,home +401320639,2021,2,2021-06-19,18,Connecticut Sun,FALSE,19,away +401320639,2021,2,2021-06-19,19,Chicago Sky,TRUE,18,home +401320638,2021,2,2021-06-18,11,Phoenix Mercury,TRUE,6,away +401320638,2021,2,2021-06-18,6,Los Angeles Sparks,FALSE,11,home +401320637,2021,2,2021-06-17,9,New York Liberty,FALSE,17,away +401320637,2021,2,2021-06-17,17,Las Vegas Aces,TRUE,9,home +401320635,2021,2,2021-06-17,18,Connecticut Sun,FALSE,19,away +401320635,2021,2,2021-06-17,19,Chicago Sky,TRUE,18,home +401320636,2021,2,2021-06-17,8,Minnesota Lynx,TRUE,3,away +401320636,2021,2,2021-06-17,3,Dallas Wings,FALSE,8,home +401320633,2021,2,2021-06-17,14,Seattle Storm,TRUE,5,away +401320633,2021,2,2021-06-17,5,Indiana Fever,FALSE,14,home +401320634,2021,2,2021-06-17,20,Atlanta Dream,FALSE,16,away +401320634,2021,2,2021-06-17,16,Washington Mystics,TRUE,20,home +401320632,2021,2,2021-06-16,11,Phoenix Mercury,FALSE,6,away +401320632,2021,2,2021-06-16,6,Los Angeles Sparks,TRUE,11,home +401320631,2021,2,2021-06-15,9,New York Liberty,FALSE,17,away +401320631,2021,2,2021-06-15,17,Las Vegas Aces,TRUE,9,home +401320630,2021,2,2021-06-15,19,Chicago Sky,TRUE,8,away +401320630,2021,2,2021-06-15,8,Minnesota Lynx,FALSE,19,home +401320629,2021,2,2021-06-15,14,Seattle Storm,TRUE,5,away +401320629,2021,2,2021-06-15,5,Indiana Fever,FALSE,14,home +401320627,2021,2,2021-06-13,3,Dallas Wings,FALSE,17,away +401320627,2021,2,2021-06-13,17,Las Vegas Aces,TRUE,3,home +401320628,2021,2,2021-06-13,9,New York Liberty,TRUE,11,away +401320628,2021,2,2021-06-13,11,Phoenix Mercury,FALSE,9,home +401320626,2021,2,2021-06-13,16,Washington Mystics,FALSE,20,away +401320626,2021,2,2021-06-13,20,Atlanta Dream,TRUE,16,home +401320625,2021,2,2021-06-13,14,Seattle Storm,TRUE,18,away +401320625,2021,2,2021-06-13,18,Connecticut Sun,FALSE,14,home +401320624,2021,2,2021-06-12,6,Los Angeles Sparks,FALSE,8,away +401320624,2021,2,2021-06-12,8,Minnesota Lynx,TRUE,6,home +401320623,2021,2,2021-06-12,19,Chicago Sky,TRUE,5,away +401320623,2021,2,2021-06-12,5,Indiana Fever,FALSE,19,home +401320622,2021,2,2021-06-11,3,Dallas Wings,TRUE,11,away +401320622,2021,2,2021-06-11,11,Phoenix Mercury,FALSE,3,home +401320621,2021,2,2021-06-11,14,Seattle Storm,TRUE,20,away +401320621,2021,2,2021-06-11,20,Atlanta Dream,FALSE,14,home +401320620,2021,2,2021-06-10,6,Los Angeles Sparks,FALSE,16,away +401320620,2021,2,2021-06-10,16,Washington Mystics,TRUE,6,home +401320618,2021,2,2021-06-09,5,Indiana Fever,FALSE,19,away +401320618,2021,2,2021-06-09,19,Chicago Sky,TRUE,5,home +401320617,2021,2,2021-06-09,14,Seattle Storm,TRUE,20,away +401320617,2021,2,2021-06-09,20,Atlanta Dream,FALSE,14,home +401320619,2021,2,2021-06-08,3,Dallas Wings,TRUE,11,away +401320619,2021,2,2021-06-08,11,Phoenix Mercury,FALSE,3,home +401320616,2021,2,2021-06-08,8,Minnesota Lynx,FALSE,16,away +401320616,2021,2,2021-06-08,16,Washington Mystics,TRUE,8,home +401320614,2021,2,2021-06-06,20,Atlanta Dream,FALSE,8,away +401320614,2021,2,2021-06-06,8,Minnesota Lynx,TRUE,20,home +401320615,2021,2,2021-06-06,3,Dallas Wings,TRUE,14,away +401320615,2021,2,2021-06-06,14,Seattle Storm,FALSE,3,home +401320613,2021,2,2021-06-05,9,New York Liberty,FALSE,18,away +401320613,2021,2,2021-06-05,18,Connecticut Sun,TRUE,9,home +401320612,2021,2,2021-06-05,19,Chicago Sky,FALSE,6,away +401320612,2021,2,2021-06-05,6,Los Angeles Sparks,TRUE,19,home +401320611,2021,2,2021-06-05,17,Las Vegas Aces,TRUE,16,away +401320611,2021,2,2021-06-05,16,Washington Mystics,FALSE,17,home +401320610,2021,2,2021-06-04,3,Dallas Wings,FALSE,14,away +401320610,2021,2,2021-06-04,14,Seattle Storm,TRUE,3,home +401320609,2021,2,2021-06-04,20,Atlanta Dream,FALSE,8,away +401320609,2021,2,2021-06-04,8,Minnesota Lynx,TRUE,20,home +401320608,2021,2,2021-06-03,5,Indiana Fever,FALSE,6,away +401320608,2021,2,2021-06-03,6,Los Angeles Sparks,TRUE,5,home +401320607,2021,2,2021-06-03,19,Chicago Sky,FALSE,11,away +401320607,2021,2,2021-06-03,11,Phoenix Mercury,TRUE,19,home +401320606,2021,2,2021-06-03,17,Las Vegas Aces,TRUE,9,away +401320606,2021,2,2021-06-03,9,New York Liberty,FALSE,17,home +401320605,2021,2,2021-06-01,5,Indiana Fever,FALSE,14,away +401320605,2021,2,2021-06-01,14,Seattle Storm,TRUE,5,home +401320603,2021,2,2021-06-01,11,Phoenix Mercury,TRUE,19,away +401320603,2021,2,2021-06-01,19,Chicago Sky,FALSE,11,home +401320604,2021,2,2021-06-01,6,Los Angeles Sparks,FALSE,3,away +401320604,2021,2,2021-06-01,3,Dallas Wings,TRUE,6,home +401320602,2021,2,2021-06-01,17,Las Vegas Aces,FALSE,18,away +401320602,2021,2,2021-06-01,18,Connecticut Sun,TRUE,17,home +401320601,2021,2,2021-05-30,18,Connecticut Sun,FALSE,8,away +401320601,2021,2,2021-05-30,8,Minnesota Lynx,TRUE,18,home +401320599,2021,2,2021-05-30,6,Los Angeles Sparks,TRUE,19,away +401320599,2021,2,2021-05-30,19,Chicago Sky,FALSE,6,home +401320600,2021,2,2021-05-30,5,Indiana Fever,FALSE,17,away +401320600,2021,2,2021-05-30,17,Las Vegas Aces,TRUE,5,home +401320598,2021,2,2021-05-29,11,Phoenix Mercury,TRUE,3,away +401320598,2021,2,2021-05-29,3,Dallas Wings,FALSE,11,home +401320597,2021,2,2021-05-29,20,Atlanta Dream,TRUE,9,away +401320597,2021,2,2021-05-29,9,New York Liberty,FALSE,20,home +401320596,2021,2,2021-05-28,5,Indiana Fever,FALSE,17,away +401320596,2021,2,2021-05-28,17,Las Vegas Aces,TRUE,5,home +401320595,2021,2,2021-05-28,8,Minnesota Lynx,FALSE,14,away +401320595,2021,2,2021-05-28,14,Seattle Storm,TRUE,8,home +401320594,2021,2,2021-05-28,6,Los Angeles Sparks,TRUE,19,away +401320594,2021,2,2021-05-28,19,Chicago Sky,FALSE,6,home +401320593,2021,2,2021-05-28,16,Washington Mystics,FALSE,18,away +401320593,2021,2,2021-05-28,18,Connecticut Sun,TRUE,16,home +401320592,2021,2,2021-05-27,3,Dallas Wings,FALSE,20,away +401320592,2021,2,2021-05-27,20,Atlanta Dream,TRUE,3,home +401320591,2021,2,2021-05-26,17,Las Vegas Aces,TRUE,11,away +401320591,2021,2,2021-05-26,11,Phoenix Mercury,FALSE,17,home +401320590,2021,2,2021-05-25,18,Connecticut Sun,FALSE,14,away +401320590,2021,2,2021-05-25,14,Seattle Storm,TRUE,18,home +401320589,2021,2,2021-05-25,20,Atlanta Dream,TRUE,19,away +401320589,2021,2,2021-05-25,19,Chicago Sky,FALSE,20,home +401320587,2021,2,2021-05-25,16,Washington Mystics,TRUE,5,away +401320587,2021,2,2021-05-25,5,Indiana Fever,FALSE,16,home +401320588,2021,2,2021-05-24,3,Dallas Wings,FALSE,9,away +401320588,2021,2,2021-05-24,9,New York Liberty,TRUE,3,home +401320586,2021,2,2021-05-23,18,Connecticut Sun,TRUE,17,away +401320586,2021,2,2021-05-23,17,Las Vegas Aces,FALSE,18,home +401320584,2021,2,2021-05-23,9,New York Liberty,TRUE,19,away +401320584,2021,2,2021-05-23,19,Chicago Sky,FALSE,9,home +401320585,2021,2,2021-05-23,16,Washington Mystics,FALSE,5,away +401320585,2021,2,2021-05-23,5,Indiana Fever,TRUE,16,home +401320583,2021,2,2021-05-22,14,Seattle Storm,TRUE,3,away +401320583,2021,2,2021-05-22,3,Dallas Wings,FALSE,14,home +401320582,2021,2,2021-05-21,6,Los Angeles Sparks,FALSE,17,away +401320582,2021,2,2021-05-21,17,Las Vegas Aces,TRUE,6,home +401320581,2021,2,2021-05-21,18,Connecticut Sun,TRUE,11,away +401320581,2021,2,2021-05-21,11,Phoenix Mercury,FALSE,18,home +401320579,2021,2,2021-05-21,20,Atlanta Dream,TRUE,5,away +401320579,2021,2,2021-05-21,5,Indiana Fever,FALSE,20,home +401320580,2021,2,2021-05-21,9,New York Liberty,FALSE,16,away +401320580,2021,2,2021-05-21,16,Washington Mystics,TRUE,9,home +401320578,2021,2,2021-05-20,14,Seattle Storm,TRUE,8,away +401320578,2021,2,2021-05-20,8,Minnesota Lynx,FALSE,14,home +401320576,2021,2,2021-05-19,19,Chicago Sky,TRUE,20,away +401320576,2021,2,2021-05-19,20,Atlanta Dream,FALSE,19,home +401320577,2021,2,2021-05-19,5,Indiana Fever,FALSE,18,away +401320577,2021,2,2021-05-19,18,Connecticut Sun,TRUE,5,home +401320575,2021,2,2021-05-18,17,Las Vegas Aces,TRUE,14,away +401320575,2021,2,2021-05-18,14,Seattle Storm,FALSE,17,home +401320574,2021,2,2021-05-18,11,Phoenix Mercury,TRUE,16,away +401320574,2021,2,2021-05-18,16,Washington Mystics,FALSE,11,home +401320573,2021,2,2021-05-18,8,Minnesota Lynx,FALSE,9,away +401320573,2021,2,2021-05-18,9,New York Liberty,TRUE,8,home +401320572,2021,2,2021-05-16,11,Phoenix Mercury,FALSE,18,away +401320572,2021,2,2021-05-16,18,Connecticut Sun,TRUE,11,home +401320571,2021,2,2021-05-16,9,New York Liberty,TRUE,5,away +401320571,2021,2,2021-05-16,5,Indiana Fever,FALSE,9,home +401320570,2021,2,2021-05-15,17,Las Vegas Aces,FALSE,14,away +401320570,2021,2,2021-05-15,14,Seattle Storm,TRUE,17,home +401320569,2021,2,2021-05-15,19,Chicago Sky,TRUE,16,away +401320569,2021,2,2021-05-15,16,Washington Mystics,FALSE,19,home +401320568,2021,2,2021-05-14,3,Dallas Wings,TRUE,6,away +401320568,2021,2,2021-05-14,6,Los Angeles Sparks,FALSE,3,home +401320567,2021,2,2021-05-14,11,Phoenix Mercury,TRUE,8,away +401320567,2021,2,2021-05-14,8,Minnesota Lynx,FALSE,11,home +401320566,2021,2,2021-05-14,18,Connecticut Sun,TRUE,20,away +401320566,2021,2,2021-05-14,20,Atlanta Dream,FALSE,18,home +401320565,2021,2,2021-05-14,5,Indiana Fever,FALSE,9,away +401320565,2021,2,2021-05-14,9,New York Liberty,TRUE,5,home +401455684,2022,3,2022-09-18,17,Las Vegas Aces,TRUE,18,away +401455684,2022,3,2022-09-18,18,Connecticut Sun,FALSE,17,home +401455683,2022,3,2022-09-15,17,Las Vegas Aces,FALSE,18,away +401455683,2022,3,2022-09-15,18,Connecticut Sun,TRUE,17,home +401455682,2022,3,2022-09-13,18,Connecticut Sun,FALSE,17,away +401455682,2022,3,2022-09-13,17,Las Vegas Aces,TRUE,18,home +401455681,2022,3,2022-09-11,18,Connecticut Sun,FALSE,17,away +401455681,2022,3,2022-09-11,17,Las Vegas Aces,TRUE,18,home +401455679,2022,3,2022-09-08,18,Connecticut Sun,TRUE,19,away +401455679,2022,3,2022-09-08,19,Chicago Sky,FALSE,18,home +401455678,2022,3,2022-09-06,17,Las Vegas Aces,TRUE,14,away +401455678,2022,3,2022-09-06,14,Seattle Storm,FALSE,17,home +401455677,2022,3,2022-09-06,19,Chicago Sky,FALSE,18,away +401455677,2022,3,2022-09-06,18,Connecticut Sun,TRUE,19,home +401455676,2022,3,2022-09-04,17,Las Vegas Aces,TRUE,14,away +401455676,2022,3,2022-09-04,14,Seattle Storm,FALSE,17,home +401455675,2022,3,2022-09-04,19,Chicago Sky,TRUE,18,away +401455675,2022,3,2022-09-04,18,Connecticut Sun,FALSE,19,home +401455674,2022,3,2022-08-31,14,Seattle Storm,FALSE,17,away +401455674,2022,3,2022-08-31,17,Las Vegas Aces,TRUE,14,home +401455671,2022,3,2022-08-31,18,Connecticut Sun,FALSE,19,away +401455671,2022,3,2022-08-31,19,Chicago Sky,TRUE,18,home +401455661,2022,3,2022-08-28,18,Connecticut Sun,TRUE,19,away +401455661,2022,3,2022-08-28,19,Chicago Sky,FALSE,18,home +401455660,2022,3,2022-08-28,14,Seattle Storm,TRUE,17,away +401455660,2022,3,2022-08-28,17,Las Vegas Aces,FALSE,14,home +401455659,2022,3,2022-08-24,18,Connecticut Sun,TRUE,3,away +401455659,2022,3,2022-08-24,3,Dallas Wings,FALSE,18,home +401455657,2022,3,2022-08-23,19,Chicago Sky,TRUE,9,away +401455657,2022,3,2022-08-23,9,New York Liberty,FALSE,19,home +401455654,2022,3,2022-08-21,16,Washington Mystics,FALSE,14,away +401455654,2022,3,2022-08-21,14,Seattle Storm,TRUE,16,home +401455653,2022,3,2022-08-21,3,Dallas Wings,TRUE,18,away +401455653,2022,3,2022-08-21,18,Connecticut Sun,FALSE,3,home +401455652,2022,3,2022-08-20,11,Phoenix Mercury,FALSE,17,away +401455652,2022,3,2022-08-20,17,Las Vegas Aces,TRUE,11,home +401455651,2022,3,2022-08-20,9,New York Liberty,FALSE,19,away +401455651,2022,3,2022-08-20,19,Chicago Sky,TRUE,9,home +401455650,2022,3,2022-08-18,16,Washington Mystics,FALSE,14,away +401455650,2022,3,2022-08-18,14,Seattle Storm,TRUE,16,home +401455629,2022,3,2022-08-18,3,Dallas Wings,FALSE,18,away +401455629,2022,3,2022-08-18,18,Connecticut Sun,TRUE,3,home +401455628,2022,3,2022-08-17,11,Phoenix Mercury,FALSE,17,away +401455628,2022,3,2022-08-17,17,Las Vegas Aces,TRUE,11,home +401455627,2022,3,2022-08-17,9,New York Liberty,TRUE,19,away +401455627,2022,3,2022-08-17,19,Chicago Sky,FALSE,9,home +401391865,2022,2,2022-08-14,3,Dallas Wings,TRUE,6,away +401391865,2022,2,2022-08-14,6,Los Angeles Sparks,FALSE,3,home +401391863,2022,2,2022-08-14,19,Chicago Sky,TRUE,11,away +401391863,2022,2,2022-08-14,11,Phoenix Mercury,FALSE,19,home +401391862,2022,2,2022-08-14,5,Indiana Fever,FALSE,16,away +401391862,2022,2,2022-08-14,16,Washington Mystics,TRUE,5,home +401391864,2022,2,2022-08-14,14,Seattle Storm,FALSE,17,away +401391864,2022,2,2022-08-14,17,Las Vegas Aces,TRUE,14,home +401391861,2022,2,2022-08-14,20,Atlanta Dream,FALSE,9,away +401391861,2022,2,2022-08-14,9,New York Liberty,TRUE,20,home +401391860,2022,2,2022-08-14,8,Minnesota Lynx,FALSE,18,away +401391860,2022,2,2022-08-14,18,Connecticut Sun,TRUE,8,home +401391859,2022,2,2022-08-12,3,Dallas Wings,FALSE,11,away +401391859,2022,2,2022-08-12,11,Phoenix Mercury,TRUE,3,home +401391858,2022,2,2022-08-12,14,Seattle Storm,TRUE,8,away +401391858,2022,2,2022-08-12,8,Minnesota Lynx,FALSE,14,home +401391857,2022,2,2022-08-12,9,New York Liberty,TRUE,20,away +401391857,2022,2,2022-08-12,20,Atlanta Dream,FALSE,9,home +401391856,2022,2,2022-08-12,16,Washington Mystics,TRUE,5,away +401391856,2022,2,2022-08-12,5,Indiana Fever,FALSE,16,home +401391855,2022,2,2022-08-11,18,Connecticut Sun,TRUE,6,away +401391855,2022,2,2022-08-11,6,Los Angeles Sparks,FALSE,18,home +401391854,2022,2,2022-08-11,19,Chicago Sky,FALSE,17,away +401391854,2022,2,2022-08-11,17,Las Vegas Aces,TRUE,19,home +401391853,2022,2,2022-08-10,8,Minnesota Lynx,TRUE,11,away +401391853,2022,2,2022-08-10,11,Phoenix Mercury,FALSE,8,home +401391852,2022,2,2022-08-10,9,New York Liberty,TRUE,3,away +401391852,2022,2,2022-08-10,3,Dallas Wings,FALSE,9,home +401391851,2022,2,2022-08-09,18,Connecticut Sun,TRUE,6,away +401391851,2022,2,2022-08-09,6,Los Angeles Sparks,FALSE,18,home +401391850,2022,2,2022-08-09,20,Atlanta Dream,FALSE,17,away +401391850,2022,2,2022-08-09,17,Las Vegas Aces,TRUE,20,home +401391849,2022,2,2022-08-09,14,Seattle Storm,TRUE,19,away +401391849,2022,2,2022-08-09,19,Chicago Sky,FALSE,14,home +401391848,2022,2,2022-08-08,9,New York Liberty,FALSE,3,away +401391848,2022,2,2022-08-08,3,Dallas Wings,TRUE,9,home +401391847,2022,2,2022-08-07,20,Atlanta Dream,FALSE,8,away +401391847,2022,2,2022-08-07,8,Minnesota Lynx,TRUE,20,home +401391845,2022,2,2022-08-07,6,Los Angeles Sparks,TRUE,16,away +401391845,2022,2,2022-08-07,16,Washington Mystics,FALSE,6,home +401391846,2022,2,2022-08-07,17,Las Vegas Aces,TRUE,14,away +401391846,2022,2,2022-08-07,14,Seattle Storm,FALSE,17,home +401391844,2022,2,2022-08-07,18,Connecticut Sun,FALSE,19,away +401391844,2022,2,2022-08-07,19,Chicago Sky,TRUE,18,home +401391843,2022,2,2022-08-06,9,New York Liberty,FALSE,11,away +401391843,2022,2,2022-08-06,11,Phoenix Mercury,TRUE,9,home +401391842,2022,2,2022-08-06,5,Indiana Fever,FALSE,3,away +401391842,2022,2,2022-08-06,3,Dallas Wings,TRUE,5,home +401391841,2022,2,2022-08-05,16,Washington Mystics,FALSE,19,away +401391841,2022,2,2022-08-05,19,Chicago Sky,TRUE,16,home +401391840,2022,2,2022-08-05,6,Los Angeles Sparks,FALSE,20,away +401391840,2022,2,2022-08-05,20,Atlanta Dream,TRUE,6,home +401391839,2022,2,2022-08-04,17,Las Vegas Aces,FALSE,3,away +401391839,2022,2,2022-08-04,3,Dallas Wings,TRUE,17,home +401391838,2022,2,2022-08-04,11,Phoenix Mercury,FALSE,18,away +401391838,2022,2,2022-08-04,18,Connecticut Sun,TRUE,11,home +401391837,2022,2,2022-08-03,8,Minnesota Lynx,FALSE,14,away +401391837,2022,2,2022-08-03,14,Seattle Storm,TRUE,8,home +401391835,2022,2,2022-08-03,5,Indiana Fever,FALSE,20,away +401391835,2022,2,2022-08-03,20,Atlanta Dream,TRUE,5,home +401391836,2022,2,2022-08-03,6,Los Angeles Sparks,FALSE,9,away +401391836,2022,2,2022-08-03,9,New York Liberty,TRUE,6,home +401391834,2022,2,2022-08-02,3,Dallas Wings,TRUE,19,away +401391834,2022,2,2022-08-02,19,Chicago Sky,FALSE,3,home +401391831,2022,2,2022-08-02,11,Phoenix Mercury,FALSE,18,away +401391831,2022,2,2022-08-02,18,Connecticut Sun,TRUE,11,home +401391832,2022,2,2022-08-02,6,Los Angeles Sparks,FALSE,9,away +401391832,2022,2,2022-08-02,9,New York Liberty,TRUE,6,home +401391833,2022,2,2022-08-02,17,Las Vegas Aces,FALSE,16,away +401391833,2022,2,2022-08-02,16,Washington Mystics,TRUE,17,home +401391830,2022,2,2022-07-31,8,Minnesota Lynx,TRUE,6,away +401391830,2022,2,2022-07-31,6,Los Angeles Sparks,FALSE,8,home +401391828,2022,2,2022-07-31,17,Las Vegas Aces,TRUE,5,away +401391828,2022,2,2022-07-31,5,Indiana Fever,FALSE,17,home +401391829,2022,2,2022-07-31,14,Seattle Storm,FALSE,16,away +401391829,2022,2,2022-07-31,16,Washington Mystics,TRUE,14,home +401391827,2022,2,2022-07-31,11,Phoenix Mercury,FALSE,9,away +401391827,2022,2,2022-07-31,9,New York Liberty,TRUE,11,home +401391826,2022,2,2022-07-31,19,Chicago Sky,TRUE,18,away +401391826,2022,2,2022-07-31,18,Connecticut Sun,FALSE,19,home +401391825,2022,2,2022-07-30,3,Dallas Wings,TRUE,20,away +401391825,2022,2,2022-07-30,20,Atlanta Dream,FALSE,3,home +401391824,2022,2,2022-07-30,14,Seattle Storm,TRUE,16,away +401391824,2022,2,2022-07-30,16,Washington Mystics,FALSE,14,home +401391823,2022,2,2022-07-29,9,New York Liberty,FALSE,19,away +401391823,2022,2,2022-07-29,19,Chicago Sky,TRUE,9,home +401391822,2022,2,2022-07-29,17,Las Vegas Aces,TRUE,5,away +401391822,2022,2,2022-07-29,5,Indiana Fever,FALSE,17,home +401391821,2022,2,2022-07-28,6,Los Angeles Sparks,FALSE,11,away +401391821,2022,2,2022-07-28,11,Phoenix Mercury,TRUE,6,home +401391820,2022,2,2022-07-28,16,Washington Mystics,TRUE,3,away +401391820,2022,2,2022-07-28,3,Dallas Wings,FALSE,16,home +401391818,2022,2,2022-07-28,8,Minnesota Lynx,TRUE,20,away +401391818,2022,2,2022-07-28,20,Atlanta Dream,FALSE,8,home +401391819,2022,2,2022-07-28,14,Seattle Storm,FALSE,18,away +401391819,2022,2,2022-07-28,18,Connecticut Sun,TRUE,14,home +401430112,2022,2,2022-07-26,17,Las Vegas Aces,TRUE,19,away +401430112,2022,2,2022-07-26,19,Chicago Sky,FALSE,17,home +401391817,2022,2,2022-07-24,18,Connecticut Sun,TRUE,8,away +401391817,2022,2,2022-07-24,8,Minnesota Lynx,FALSE,18,home +401391816,2022,2,2022-07-24,20,Atlanta Dream,FALSE,14,away +401391816,2022,2,2022-07-24,14,Seattle Storm,TRUE,20,home +401391815,2022,2,2022-07-24,3,Dallas Wings,TRUE,5,away +401391815,2022,2,2022-07-24,5,Indiana Fever,FALSE,3,home +401391814,2022,2,2022-07-23,6,Los Angeles Sparks,FALSE,17,away +401391814,2022,2,2022-07-23,17,Las Vegas Aces,TRUE,6,home +401391813,2022,2,2022-07-23,19,Chicago Sky,FALSE,9,away +401391813,2022,2,2022-07-23,9,New York Liberty,TRUE,19,home +401391812,2022,2,2022-07-22,14,Seattle Storm,FALSE,11,away +401391812,2022,2,2022-07-22,11,Phoenix Mercury,TRUE,14,home +401391810,2022,2,2022-07-22,18,Connecticut Sun,TRUE,8,away +401391810,2022,2,2022-07-22,8,Minnesota Lynx,FALSE,18,home +401391811,2022,2,2022-07-22,3,Dallas Wings,FALSE,19,away +401391811,2022,2,2022-07-22,19,Chicago Sky,TRUE,3,home +401391809,2022,2,2022-07-21,5,Indiana Fever,FALSE,17,away +401391809,2022,2,2022-07-21,17,Las Vegas Aces,TRUE,5,home +401391808,2022,2,2022-07-21,20,Atlanta Dream,FALSE,6,away +401391808,2022,2,2022-07-21,6,Los Angeles Sparks,TRUE,20,home +401391807,2022,2,2022-07-21,9,New York Liberty,FALSE,16,away +401391807,2022,2,2022-07-21,16,Washington Mystics,TRUE,9,home +401391806,2022,2,2022-07-20,14,Seattle Storm,FALSE,19,away +401391806,2022,2,2022-07-20,19,Chicago Sky,TRUE,14,home +401391805,2022,2,2022-07-19,5,Indiana Fever,FALSE,6,away +401391805,2022,2,2022-07-19,6,Los Angeles Sparks,TRUE,5,home +401391804,2022,2,2022-07-19,20,Atlanta Dream,TRUE,17,away +401391804,2022,2,2022-07-19,17,Las Vegas Aces,FALSE,20,home +401391803,2022,2,2022-07-19,9,New York Liberty,FALSE,18,away +401391803,2022,2,2022-07-19,18,Connecticut Sun,TRUE,9,home +401391801,2022,2,2022-07-17,20,Atlanta Dream,TRUE,11,away +401391801,2022,2,2022-07-17,11,Phoenix Mercury,FALSE,20,home +401391802,2022,2,2022-07-17,5,Indiana Fever,FALSE,14,away +401391802,2022,2,2022-07-17,14,Seattle Storm,TRUE,5,home +401391800,2022,2,2022-07-17,8,Minnesota Lynx,FALSE,16,away +401391800,2022,2,2022-07-17,16,Washington Mystics,TRUE,8,home +401391799,2022,2,2022-07-17,17,Las Vegas Aces,TRUE,18,away +401391799,2022,2,2022-07-17,18,Connecticut Sun,FALSE,17,home +401391798,2022,2,2022-07-16,19,Chicago Sky,TRUE,3,away +401391798,2022,2,2022-07-16,3,Dallas Wings,FALSE,19,home +401391797,2022,2,2022-07-15,18,Connecticut Sun,TRUE,20,away +401391797,2022,2,2022-07-15,20,Atlanta Dream,FALSE,18,home +401391796,2022,2,2022-07-15,8,Minnesota Lynx,TRUE,5,away +401391796,2022,2,2022-07-15,5,Indiana Fever,FALSE,8,home +401391795,2022,2,2022-07-14,19,Chicago Sky,TRUE,6,away +401391795,2022,2,2022-07-14,6,Los Angeles Sparks,FALSE,19,home +401391794,2022,2,2022-07-14,16,Washington Mystics,FALSE,11,away +401391794,2022,2,2022-07-14,11,Phoenix Mercury,TRUE,16,home +401391793,2022,2,2022-07-14,3,Dallas Wings,TRUE,8,away +401391793,2022,2,2022-07-14,8,Minnesota Lynx,FALSE,3,home +401391792,2022,2,2022-07-14,17,Las Vegas Aces,TRUE,9,away +401391792,2022,2,2022-07-14,9,New York Liberty,FALSE,17,home +401391791,2022,2,2022-07-13,18,Connecticut Sun,TRUE,5,away +401391791,2022,2,2022-07-13,5,Indiana Fever,FALSE,18,home +401391790,2022,2,2022-07-12,16,Washington Mystics,TRUE,6,away +401391790,2022,2,2022-07-12,6,Los Angeles Sparks,FALSE,16,home +401391788,2022,2,2022-07-12,20,Atlanta Dream,FALSE,19,away +401391788,2022,2,2022-07-12,19,Chicago Sky,TRUE,20,home +401391789,2022,2,2022-07-12,11,Phoenix Mercury,FALSE,8,away +401391789,2022,2,2022-07-12,8,Minnesota Lynx,TRUE,11,home +401391787,2022,2,2022-07-12,17,Las Vegas Aces,TRUE,9,away +401391787,2022,2,2022-07-12,9,New York Liberty,FALSE,17,home +401391786,2022,2,2022-07-12,3,Dallas Wings,FALSE,14,away +401391786,2022,2,2022-07-12,14,Seattle Storm,TRUE,3,home +401455978,2022,2,2022-07-10,126287,Team Stewart,FALSE,112530,away +401455978,2022,2,2022-07-10,112530,Team Wilson,TRUE,126287,home +401391785,2022,2,2022-07-07,14,Seattle Storm,TRUE,6,away +401391785,2022,2,2022-07-07,6,Los Angeles Sparks,FALSE,14,home +401391784,2022,2,2022-07-07,9,New York Liberty,FALSE,11,away +401391784,2022,2,2022-07-07,11,Phoenix Mercury,TRUE,9,home +401391783,2022,2,2022-07-07,19,Chicago Sky,TRUE,5,away +401391783,2022,2,2022-07-07,5,Indiana Fever,FALSE,19,home +401391782,2022,2,2022-07-06,9,New York Liberty,TRUE,17,away +401391782,2022,2,2022-07-06,17,Las Vegas Aces,FALSE,9,home +401391781,2022,2,2022-07-06,16,Washington Mystics,TRUE,20,away +401391781,2022,2,2022-07-06,20,Atlanta Dream,FALSE,16,home +401391780,2022,2,2022-07-06,19,Chicago Sky,FALSE,8,away +401391780,2022,2,2022-07-06,8,Minnesota Lynx,TRUE,19,home +401391779,2022,2,2022-07-05,18,Connecticut Sun,FALSE,3,away +401391779,2022,2,2022-07-05,3,Dallas Wings,TRUE,18,home +401391778,2022,2,2022-07-05,14,Seattle Storm,TRUE,5,away +401391778,2022,2,2022-07-05,5,Indiana Fever,FALSE,14,home +401391777,2022,2,2022-07-04,11,Phoenix Mercury,FALSE,6,away +401391777,2022,2,2022-07-04,6,Los Angeles Sparks,TRUE,11,home +401391775,2022,2,2022-07-03,17,Las Vegas Aces,FALSE,8,away +401391775,2022,2,2022-07-03,8,Minnesota Lynx,TRUE,17,home +401391776,2022,2,2022-07-03,9,New York Liberty,FALSE,6,away +401391776,2022,2,2022-07-03,6,Los Angeles Sparks,TRUE,9,home +401391774,2022,2,2022-07-03,14,Seattle Storm,FALSE,20,away +401391774,2022,2,2022-07-03,20,Atlanta Dream,TRUE,14,home +401391773,2022,2,2022-07-03,16,Washington Mystics,FALSE,18,away +401391773,2022,2,2022-07-03,18,Connecticut Sun,TRUE,16,home +401391772,2022,2,2022-07-02,11,Phoenix Mercury,FALSE,19,away +401391772,2022,2,2022-07-02,19,Chicago Sky,TRUE,11,home +401391771,2022,2,2022-07-01,5,Indiana Fever,FALSE,14,away +401391771,2022,2,2022-07-01,14,Seattle Storm,TRUE,5,home +401391769,2022,2,2022-07-01,6,Los Angeles Sparks,TRUE,3,away +401391769,2022,2,2022-07-01,3,Dallas Wings,FALSE,6,home +401391770,2022,2,2022-07-01,17,Las Vegas Aces,TRUE,8,away +401391770,2022,2,2022-07-01,8,Minnesota Lynx,FALSE,17,home +401391768,2022,2,2022-06-30,20,Atlanta Dream,TRUE,9,away +401391768,2022,2,2022-06-30,9,New York Liberty,FALSE,20,home +401391766,2022,2,2022-06-29,5,Indiana Fever,FALSE,11,away +401391766,2022,2,2022-06-29,11,Phoenix Mercury,TRUE,5,home +401391767,2022,2,2022-06-29,17,Las Vegas Aces,FALSE,14,away +401391767,2022,2,2022-06-29,14,Seattle Storm,TRUE,17,home +401391765,2022,2,2022-06-29,18,Connecticut Sun,FALSE,19,away +401391765,2022,2,2022-06-29,19,Chicago Sky,TRUE,18,home +401391764,2022,2,2022-06-28,3,Dallas Wings,FALSE,8,away +401391764,2022,2,2022-06-28,8,Minnesota Lynx,TRUE,3,home +401391763,2022,2,2022-06-28,20,Atlanta Dream,FALSE,16,away +401391763,2022,2,2022-06-28,16,Washington Mystics,TRUE,20,home +401391762,2022,2,2022-06-27,17,Las Vegas Aces,TRUE,6,away +401391762,2022,2,2022-06-27,6,Los Angeles Sparks,FALSE,17,home +401391761,2022,2,2022-06-27,5,Indiana Fever,FALSE,11,away +401391761,2022,2,2022-06-27,11,Phoenix Mercury,TRUE,5,home +401391760,2022,2,2022-06-26,8,Minnesota Lynx,FALSE,19,away +401391760,2022,2,2022-06-26,19,Chicago Sky,TRUE,8,home +401391759,2022,2,2022-06-26,18,Connecticut Sun,TRUE,20,away +401391759,2022,2,2022-06-26,20,Atlanta Dream,FALSE,18,home +401391758,2022,2,2022-06-25,16,Washington Mystics,TRUE,17,away +401391758,2022,2,2022-06-25,17,Las Vegas Aces,FALSE,16,home +401391757,2022,2,2022-06-25,6,Los Angeles Sparks,TRUE,14,away +401391757,2022,2,2022-06-25,14,Seattle Storm,FALSE,6,home +401391756,2022,2,2022-06-25,11,Phoenix Mercury,TRUE,3,away +401391756,2022,2,2022-06-25,3,Dallas Wings,FALSE,11,home +401391755,2022,2,2022-06-24,9,New York Liberty,TRUE,20,away +401391755,2022,2,2022-06-24,20,Atlanta Dream,FALSE,9,home +401391754,2022,2,2022-06-23,19,Chicago Sky,TRUE,6,away +401391754,2022,2,2022-06-23,6,Los Angeles Sparks,FALSE,19,home +401391753,2022,2,2022-06-23,16,Washington Mystics,FALSE,14,away +401391753,2022,2,2022-06-23,14,Seattle Storm,TRUE,16,home +401391751,2022,2,2022-06-23,5,Indiana Fever,FALSE,3,away +401391751,2022,2,2022-06-23,3,Dallas Wings,TRUE,5,home +401391752,2022,2,2022-06-23,11,Phoenix Mercury,FALSE,8,away +401391752,2022,2,2022-06-23,8,Minnesota Lynx,TRUE,11,home +401391750,2022,2,2022-06-22,9,New York Liberty,TRUE,18,away +401391750,2022,2,2022-06-22,18,Connecticut Sun,FALSE,9,home +401391749,2022,2,2022-06-21,16,Washington Mystics,FALSE,6,away +401391749,2022,2,2022-06-21,6,Los Angeles Sparks,TRUE,16,home +401391747,2022,2,2022-06-21,19,Chicago Sky,TRUE,17,away +401391747,2022,2,2022-06-21,17,Las Vegas Aces,FALSE,19,home +401391748,2022,2,2022-06-21,8,Minnesota Lynx,TRUE,11,away +401391748,2022,2,2022-06-21,11,Phoenix Mercury,FALSE,8,home +401391746,2022,2,2022-06-21,3,Dallas Wings,FALSE,20,away +401391746,2022,2,2022-06-21,20,Atlanta Dream,TRUE,3,home +401391745,2022,2,2022-06-19,8,Minnesota Lynx,FALSE,17,away +401391745,2022,2,2022-06-19,17,Las Vegas Aces,TRUE,8,home +401391744,2022,2,2022-06-19,6,Los Angeles Sparks,FALSE,3,away +401391744,2022,2,2022-06-19,3,Dallas Wings,TRUE,6,home +401391742,2022,2,2022-06-19,19,Chicago Sky,FALSE,5,away +401391742,2022,2,2022-06-19,5,Indiana Fever,TRUE,19,home +401391743,2022,2,2022-06-19,18,Connecticut Sun,FALSE,16,away +401391743,2022,2,2022-06-19,16,Washington Mystics,TRUE,18,home +401391741,2022,2,2022-06-19,14,Seattle Storm,TRUE,9,away +401391741,2022,2,2022-06-19,9,New York Liberty,FALSE,14,home +401391739,2022,2,2022-06-17,11,Phoenix Mercury,FALSE,3,away +401391739,2022,2,2022-06-17,3,Dallas Wings,TRUE,11,home +401391740,2022,2,2022-06-17,20,Atlanta Dream,FALSE,19,away +401391740,2022,2,2022-06-17,19,Chicago Sky,TRUE,20,home +401391738,2022,2,2022-06-17,14,Seattle Storm,FALSE,18,away +401391738,2022,2,2022-06-17,18,Connecticut Sun,TRUE,14,home +401391737,2022,2,2022-06-16,16,Washington Mystics,FALSE,9,away +401391737,2022,2,2022-06-16,9,New York Liberty,TRUE,16,home +401391735,2022,2,2022-06-15,20,Atlanta Dream,FALSE,18,away +401391735,2022,2,2022-06-15,18,Connecticut Sun,TRUE,20,home +401391736,2022,2,2022-06-15,11,Phoenix Mercury,TRUE,5,away +401391736,2022,2,2022-06-15,5,Indiana Fever,FALSE,11,home +401391734,2022,2,2022-06-15,17,Las Vegas Aces,TRUE,3,away +401391734,2022,2,2022-06-15,3,Dallas Wings,FALSE,17,home +401391733,2022,2,2022-06-14,14,Seattle Storm,TRUE,8,away +401391733,2022,2,2022-06-14,8,Minnesota Lynx,FALSE,14,home +401391732,2022,2,2022-06-14,11,Phoenix Mercury,FALSE,16,away +401391732,2022,2,2022-06-14,16,Washington Mystics,TRUE,11,home +401391731,2022,2,2022-06-12,5,Indiana Fever,TRUE,8,away +401391731,2022,2,2022-06-12,8,Minnesota Lynx,FALSE,5,home +401391730,2022,2,2022-06-12,11,Phoenix Mercury,TRUE,16,away +401391730,2022,2,2022-06-12,16,Washington Mystics,FALSE,11,home +401391729,2022,2,2022-06-12,14,Seattle Storm,TRUE,3,away +401391729,2022,2,2022-06-12,3,Dallas Wings,FALSE,14,home +401391728,2022,2,2022-06-12,19,Chicago Sky,TRUE,9,away +401391728,2022,2,2022-06-12,9,New York Liberty,FALSE,19,home +401391727,2022,2,2022-06-11,17,Las Vegas Aces,TRUE,6,away +401391727,2022,2,2022-06-11,6,Los Angeles Sparks,FALSE,17,home +401391726,2022,2,2022-06-10,20,Atlanta Dream,FALSE,11,away +401391726,2022,2,2022-06-10,11,Phoenix Mercury,TRUE,20,home +401391724,2022,2,2022-06-10,14,Seattle Storm,TRUE,3,away +401391724,2022,2,2022-06-10,3,Dallas Wings,FALSE,14,home +401391725,2022,2,2022-06-10,16,Washington Mystics,TRUE,8,away +401391725,2022,2,2022-06-10,8,Minnesota Lynx,FALSE,16,home +401391722,2022,2,2022-06-10,19,Chicago Sky,TRUE,18,away +401391722,2022,2,2022-06-10,18,Connecticut Sun,FALSE,19,home +401391723,2022,2,2022-06-10,9,New York Liberty,TRUE,5,away +401391723,2022,2,2022-06-10,5,Indiana Fever,FALSE,9,home +401391721,2022,2,2022-06-08,19,Chicago Sky,FALSE,16,away +401391721,2022,2,2022-06-08,16,Washington Mystics,TRUE,19,home +401391720,2022,2,2022-06-08,5,Indiana Fever,FALSE,18,away +401391720,2022,2,2022-06-08,18,Connecticut Sun,TRUE,5,home +401391719,2022,2,2022-06-07,20,Atlanta Dream,FALSE,14,away +401391719,2022,2,2022-06-07,14,Seattle Storm,TRUE,20,home +401391718,2022,2,2022-06-07,8,Minnesota Lynx,FALSE,9,away +401391718,2022,2,2022-06-07,9,New York Liberty,TRUE,8,home +401391714,2022,2,2022-06-05,16,Washington Mystics,FALSE,19,away +401391714,2022,2,2022-06-05,19,Chicago Sky,TRUE,16,home +401391715,2022,2,2022-06-05,3,Dallas Wings,FALSE,17,away +401391715,2022,2,2022-06-05,17,Las Vegas Aces,TRUE,3,home +401391716,2022,2,2022-06-05,6,Los Angeles Sparks,FALSE,11,away +401391716,2022,2,2022-06-05,11,Phoenix Mercury,TRUE,6,home +401391717,2022,2,2022-06-05,18,Connecticut Sun,TRUE,14,away +401391717,2022,2,2022-06-05,14,Seattle Storm,FALSE,18,home +401391713,2022,2,2022-06-05,5,Indiana Fever,FALSE,20,away +401391713,2022,2,2022-06-05,20,Atlanta Dream,TRUE,5,home +401391712,2022,2,2022-06-05,8,Minnesota Lynx,TRUE,9,away +401391712,2022,2,2022-06-05,9,New York Liberty,FALSE,8,home +401391710,2022,2,2022-06-03,18,Connecticut Sun,TRUE,11,away +401391710,2022,2,2022-06-03,11,Phoenix Mercury,FALSE,18,home +401391711,2022,2,2022-06-03,3,Dallas Wings,TRUE,14,away +401391711,2022,2,2022-06-03,14,Seattle Storm,FALSE,3,home +401391709,2022,2,2022-06-03,19,Chicago Sky,TRUE,20,away +401391709,2022,2,2022-06-03,20,Atlanta Dream,FALSE,19,home +401391708,2022,2,2022-06-03,9,New York Liberty,TRUE,16,away +401391708,2022,2,2022-06-03,16,Washington Mystics,FALSE,9,home +401391707,2022,2,2022-06-02,18,Connecticut Sun,TRUE,17,away +401391707,2022,2,2022-06-02,17,Las Vegas Aces,FALSE,18,home +401391705,2022,2,2022-06-01,8,Minnesota Lynx,FALSE,20,away +401391705,2022,2,2022-06-01,20,Atlanta Dream,TRUE,8,home +401391706,2022,2,2022-06-01,5,Indiana Fever,FALSE,9,away +401391706,2022,2,2022-06-01,9,New York Liberty,TRUE,5,home +401391704,2022,2,2022-05-31,3,Dallas Wings,FALSE,6,away +401391704,2022,2,2022-05-31,6,Los Angeles Sparks,TRUE,3,home +401391703,2022,2,2022-05-31,18,Connecticut Sun,FALSE,17,away +401391703,2022,2,2022-05-31,17,Las Vegas Aces,TRUE,18,home +401391701,2022,2,2022-05-31,16,Washington Mystics,TRUE,5,away +401391701,2022,2,2022-05-31,5,Indiana Fever,FALSE,16,home +401391702,2022,2,2022-05-31,11,Phoenix Mercury,FALSE,19,away +401391702,2022,2,2022-05-31,19,Chicago Sky,TRUE,11,home +401391700,2022,2,2022-05-29,6,Los Angeles Sparks,TRUE,8,away +401391700,2022,2,2022-05-29,8,Minnesota Lynx,FALSE,6,home +401391699,2022,2,2022-05-29,9,New York Liberty,FALSE,14,away +401391699,2022,2,2022-05-29,14,Seattle Storm,TRUE,9,home +401391698,2022,2,2022-05-29,11,Phoenix Mercury,FALSE,20,away +401391698,2022,2,2022-05-29,20,Atlanta Dream,TRUE,11,home +401391697,2022,2,2022-05-28,16,Washington Mystics,FALSE,18,away +401391697,2022,2,2022-05-28,18,Connecticut Sun,TRUE,16,home +401391696,2022,2,2022-05-28,17,Las Vegas Aces,TRUE,19,away +401391696,2022,2,2022-05-28,19,Chicago Sky,FALSE,17,home +401391695,2022,2,2022-05-27,9,New York Liberty,FALSE,14,away +401391695,2022,2,2022-05-27,14,Seattle Storm,TRUE,9,home +401391694,2022,2,2022-05-27,6,Los Angeles Sparks,FALSE,5,away +401391694,2022,2,2022-05-27,5,Indiana Fever,TRUE,6,home +401391693,2022,2,2022-05-26,3,Dallas Wings,FALSE,18,away +401391693,2022,2,2022-05-26,18,Connecticut Sun,TRUE,3,home +401391692,2022,2,2022-05-25,11,Phoenix Mercury,FALSE,6,away +401391692,2022,2,2022-05-25,6,Los Angeles Sparks,TRUE,11,home +401391690,2022,2,2022-05-24,5,Indiana Fever,FALSE,19,away +401391690,2022,2,2022-05-24,19,Chicago Sky,TRUE,5,home +401391691,2022,2,2022-05-24,9,New York Liberty,FALSE,8,away +401391691,2022,2,2022-05-24,8,Minnesota Lynx,TRUE,9,home +401391688,2022,2,2022-05-24,3,Dallas Wings,TRUE,18,away +401391688,2022,2,2022-05-24,18,Connecticut Sun,FALSE,3,home +401391689,2022,2,2022-05-24,20,Atlanta Dream,FALSE,16,away +401391689,2022,2,2022-05-24,16,Washington Mystics,TRUE,20,home +401391687,2022,2,2022-05-23,6,Los Angeles Sparks,FALSE,17,away +401391687,2022,2,2022-05-23,17,Las Vegas Aces,TRUE,6,home +401391686,2022,2,2022-05-22,19,Chicago Sky,TRUE,16,away +401391686,2022,2,2022-05-22,16,Washington Mystics,FALSE,19,home +401391685,2022,2,2022-05-22,18,Connecticut Sun,TRUE,5,away +401391685,2022,2,2022-05-22,5,Indiana Fever,FALSE,18,home +401391684,2022,2,2022-05-21,8,Minnesota Lynx,FALSE,3,away +401391684,2022,2,2022-05-21,3,Dallas Wings,TRUE,8,home +401391683,2022,2,2022-05-21,11,Phoenix Mercury,FALSE,17,away +401391683,2022,2,2022-05-21,17,Las Vegas Aces,TRUE,11,home +401391682,2022,2,2022-05-20,6,Los Angeles Sparks,FALSE,14,away +401391682,2022,2,2022-05-20,14,Seattle Storm,TRUE,6,home +401391681,2022,2,2022-05-20,16,Washington Mystics,TRUE,20,away +401391681,2022,2,2022-05-20,20,Atlanta Dream,FALSE,16,home +401391680,2022,2,2022-05-20,5,Indiana Fever,FALSE,18,away +401391680,2022,2,2022-05-20,18,Connecticut Sun,TRUE,5,home +401391678,2022,2,2022-05-19,8,Minnesota Lynx,FALSE,17,away +401391678,2022,2,2022-05-19,17,Las Vegas Aces,TRUE,8,home +401391679,2022,2,2022-05-19,3,Dallas Wings,TRUE,11,away +401391679,2022,2,2022-05-19,11,Phoenix Mercury,FALSE,3,home +401391677,2022,2,2022-05-18,19,Chicago Sky,FALSE,14,away +401391677,2022,2,2022-05-18,14,Seattle Storm,TRUE,19,home +401391676,2022,2,2022-05-17,8,Minnesota Lynx,TRUE,6,away +401391676,2022,2,2022-05-17,6,Los Angeles Sparks,FALSE,8,home +401391675,2022,2,2022-05-17,11,Phoenix Mercury,FALSE,17,away +401391675,2022,2,2022-05-17,17,Las Vegas Aces,TRUE,11,home +401391674,2022,2,2022-05-17,16,Washington Mystics,TRUE,3,away +401391674,2022,2,2022-05-17,3,Dallas Wings,FALSE,16,home +401391672,2022,2,2022-05-17,18,Connecticut Sun,TRUE,9,away +401391672,2022,2,2022-05-17,9,New York Liberty,FALSE,18,home +401391673,2022,2,2022-05-17,20,Atlanta Dream,TRUE,5,away +401391673,2022,2,2022-05-17,5,Indiana Fever,FALSE,20,home +401391671,2022,2,2022-05-15,20,Atlanta Dream,TRUE,5,away +401391671,2022,2,2022-05-15,5,Indiana Fever,FALSE,20,home +401391670,2022,2,2022-05-15,3,Dallas Wings,TRUE,9,away +401391670,2022,2,2022-05-15,9,New York Liberty,FALSE,3,home +401391669,2022,2,2022-05-14,19,Chicago Sky,TRUE,8,away +401391669,2022,2,2022-05-14,8,Minnesota Lynx,FALSE,19,home +401391668,2022,2,2022-05-14,6,Los Angeles Sparks,FALSE,18,away +401391668,2022,2,2022-05-14,18,Connecticut Sun,TRUE,6,home +401391667,2022,2,2022-05-14,11,Phoenix Mercury,TRUE,14,away +401391667,2022,2,2022-05-14,14,Seattle Storm,FALSE,11,home +401391666,2022,2,2022-05-13,5,Indiana Fever,TRUE,9,away +401391666,2022,2,2022-05-13,9,New York Liberty,FALSE,5,home +401391665,2022,2,2022-05-13,17,Las Vegas Aces,TRUE,20,away +401391665,2022,2,2022-05-13,20,Atlanta Dream,FALSE,17,home +401391664,2022,2,2022-05-13,3,Dallas Wings,TRUE,16,away +401391664,2022,2,2022-05-13,16,Washington Mystics,FALSE,3,home +401391663,2022,2,2022-05-11,14,Seattle Storm,FALSE,11,away +401391663,2022,2,2022-05-11,11,Phoenix Mercury,TRUE,14,home +401391662,2022,2,2022-05-11,9,New York Liberty,FALSE,19,away +401391662,2022,2,2022-05-11,19,Chicago Sky,TRUE,9,home +401391661,2022,2,2022-05-11,6,Los Angeles Sparks,FALSE,20,away +401391661,2022,2,2022-05-11,20,Atlanta Dream,TRUE,6,home +401391659,2022,2,2022-05-10,17,Las Vegas Aces,FALSE,16,away +401391659,2022,2,2022-05-10,16,Washington Mystics,TRUE,17,home +401391660,2022,2,2022-05-10,8,Minnesota Lynx,FALSE,5,away +401391660,2022,2,2022-05-10,5,Indiana Fever,TRUE,8,home +401391657,2022,2,2022-05-08,14,Seattle Storm,FALSE,17,away +401391657,2022,2,2022-05-08,17,Las Vegas Aces,TRUE,14,home +401391658,2022,2,2022-05-08,16,Washington Mystics,TRUE,8,away +401391658,2022,2,2022-05-08,8,Minnesota Lynx,FALSE,16,home +401391656,2022,2,2022-05-08,6,Los Angeles Sparks,TRUE,5,away +401391656,2022,2,2022-05-08,5,Indiana Fever,FALSE,6,home +401391655,2022,2,2022-05-07,20,Atlanta Dream,TRUE,3,away +401391655,2022,2,2022-05-07,3,Dallas Wings,FALSE,20,home +401391654,2022,2,2022-05-07,18,Connecticut Sun,FALSE,9,away +401391654,2022,2,2022-05-07,9,New York Liberty,TRUE,18,home +401391652,2022,2,2022-05-06,17,Las Vegas Aces,TRUE,11,away +401391652,2022,2,2022-05-06,11,Phoenix Mercury,FALSE,17,home +401391653,2022,2,2022-05-06,8,Minnesota Lynx,FALSE,14,away +401391653,2022,2,2022-05-06,14,Seattle Storm,TRUE,8,home +401391651,2022,2,2022-05-06,6,Los Angeles Sparks,TRUE,19,away +401391651,2022,2,2022-05-06,19,Chicago Sky,FALSE,6,home +401391650,2022,2,2022-05-06,5,Indiana Fever,FALSE,16,away +401391650,2022,2,2022-05-06,16,Washington Mystics,TRUE,5,home diff --git a/data/d3_wsoc2022.csv b/data/d3_wsoc2022.csv new file mode 100644 index 0000000..dda60c3 --- /dev/null +++ b/data/d3_wsoc2022.csv @@ -0,0 +1,3754 @@ +away_team,away_score,home_team,home_score,date +Misericordia,2,Susquehanna,0,2022-09-01 +Catholic,1,Johns Hopkins,6,2022-09-01 +Messiah,3,Stevens,2,2022-09-01 +Capital,2,Case Western Reserve,4,2022-09-01 +Calvin,2,Heidelberg,0,2022-09-01 +St. Norbert,1,Loras,6,2022-09-01 +William Smith,8,St. Joseph (Conn.),0,2022-09-01 +UW-La Crosse,1,Cal Lutheran,0,2022-09-01 +UW-Whitewater,0,Mary Hardin-Baylor,3,2022-09-01 +Emory,5,Berry,0,2022-09-01 +Alvernia,0,Montclair State,1,2022-09-01 +Piedmont,0,Pacific Lutheran,3,2022-09-01 +Wartburg,1,St. Olaf,0,2022-09-01 +SUNY Delhi,0,Cortland State,8,2022-09-01 +Lesley,1,Wentworth,2,2022-09-01 +Monmouth,2,Rockford,1,2022-09-01 +Fitchburg State,3,Dean,0,2022-09-01 +FDU-Florham,2,Ramapo,1,2022-09-01 +St. Thomas (Texas),2,Howard Payne,1,2022-09-01 +Smith,1,Mass-Boston,1,2022-09-01 +Sul Ross State,1,Belhaven,3,2022-09-01 +UW-River Falls,3,Finlandia,0,2022-09-01 +MCLA,1,Nichols,5,2022-09-01 +Augsburg,2,UW-Superior,1,2022-09-01 +Stockton,1,St. Joseph's (L.I.),0,2022-09-01 +Oglethorpe,6,Agnes Scott,1,2022-09-01 +St. Catherine,2,UW-Stevens Point,0,2022-09-01 +Lawrence,0,Concordia (Wis.),3,2022-09-01 +Albion,3,Manchester,0,2022-09-01 +Rochester,2,Geneseo State,0,2022-09-01 +Knox,0,Transylvania,2,2022-09-01 +Northwestern (Minn.),1,Bethel,4,2022-09-01 +Ursinus,1,Eastern,0,2022-09-01 +Curry,4,Rhode Island College,1,2022-09-01 +Penn State-Altoona,1,Lycoming,3,2022-09-01 +Potsdam State,3,SUNY Canton,0,2022-09-01 +DePauw,1,Otterbein,1,2022-09-01 +Southern Virginia,2,Bridgewater (Va.),1,2022-09-01 +Lebanon Valley,1,Moravian,1,2022-09-01 +Johnson and Wales,1,Babson,3,2022-09-01 +Averett,1,Pfeiffer,0,2022-09-01 +Brockport State,0,Alfred,1,2022-09-01 +Plymouth State,3,New England College,1,2022-09-01 +Immaculata,2,Cedar Crest,5,2022-09-01 +Oswego State,7,Cazenovia,0,2022-09-01 +Randolph,1,Eastern Mennonite,1,2022-09-01 +Penn State-Abington,7,Gwynedd-Mercy,0,2022-09-01 +Rutgers-Newark,0,Union,2,2022-09-01 +Buffalo State,8,Pitt-Bradford,1,2022-09-01 +Farmingdale State,0,Salisbury,1,2022-09-01 +Plattsburgh State,2,Castleton,0,2022-09-01 +Keuka,2,Hilbert,2,2022-09-01 +Clarks Summit,2,Wells,2,2022-09-01 +Simmons,0,Wellesley,2,2022-09-01 +Neumann,0,DeSales,5,2022-09-01 +William Paterson,2,Centenary (N.J.),2,2022-09-01 +Ithaca,3,Elmira,0,2022-09-01 +Earlham,0,Adrian,0,2022-09-01 +Waynesburg,0,Lancaster Bible,2,2022-09-01 +UW-Platteville,3,Edgewood,1,2022-09-01 +Ferrum,0,Mary Baldwin,1,2022-09-01 +Endicott,3,Lasell,0,2022-09-01 +King's,3,Penn College,2,2022-09-01 +Bryn Mawr,1,Cabrini,2,2022-09-01 +Bluffton,0,Oberlin,5,2022-09-01 +Roger Williams,2,Framingham State,0,2022-09-01 +Vassar,1,Mount St. Vincent,2,2022-09-01 +Grove City,3,Pitt-Greensburg,2,2022-09-01 +Westminster (Pa.),2,John Carroll,2,2022-09-01 +Colby-Sawyer,2,Maine Maritime,2,2022-09-01 +Anna Maria,0,Bard,1,2022-09-01 +Asbury,0,Hanover,6,2022-09-01 +Worcester State,1,Wheaton (Mass.),4,2022-09-01 +Bryn Athyn,0,Albright,1,2022-09-01 +Elmhurst,0,Dominican,6,2022-09-01 +Luther,1,Carleton,2,2022-09-01 +UW-Oshkosh,15,Ripon,0,2022-09-01 +Lakeland,12,Mount Mary,0,2022-09-01 +UW-Stout,1,Hamline,2,2022-09-01 +St. Mary's (Ind.),1,Concordia-Chicago,1,2022-09-01 +Mount Aloysius,0,Dickinson,6,2022-09-01 +St. Lawrence,3,Hartwick,1,2022-09-01 +Augustana,2,Central,1,2022-09-01 +Minnesota-Morris,0,Saint Mary's (Minn.),3,2022-09-01 +Northland,0,Macalester,5,2022-09-01 +Dubuque,0,Grinnell,0,2022-09-01 +Kalamazoo,1,Ohio Wesleyan,1,2022-09-01 +Houghton,6,Alfred State,0,2022-09-01 +Berea,0,Spalding,5,2022-09-01 +Regis (Mass.),0,Emerson,5,2022-09-01 +Guilford,5,Brevard,0,2022-09-01 +Ohio Northern,2,Wittenberg,0,2022-09-01 +Buena Vista,0,Bethany Lutheran,4,2022-09-01 +Illinois Wesleyan,1,Simpson,1,2022-09-01 +Lake Forest,4,Wisconsin Lutheran,0,2022-09-01 +Birmingham-Southern,1,Huntingdon,1,2022-09-01 +Marian,0,Beloit,1,2022-09-01 +LeTourneau,1,University of Dallas,3,2022-09-01 +Centre,5,Mount St. Joseph,1,2022-09-01 +Muskingum,3,Washington and Jefferson,3,2022-09-01 +Southern Maine,2,Clark,0,2022-09-01 +Rose-Hulman,1,Webster,2,2022-09-01 +Widener,1,Penn State-Harrisburg,1,2022-09-01 +Drew,5,Manhattanville,1,2022-09-01 +Keene State,0,Bridgewater State,0,2022-09-01 +Mitchell,0,Albertus Magnus,2,2022-09-01 +NVU-Johnson,1,Norwich,5,2022-09-01 +Western New England,0,Western Connecticut,2,2022-09-01 +Washington College,1,Stevenson,0,2022-09-01 +Oneonta State,2,RPI,0,2022-09-01 +Suffolk,0,Elms,0,2022-09-01 +Mary Washington,0,Randolph-Macon,1,2022-09-01 +SUNY Poly,0,Utica,6,2022-09-01 +Brandeis,1,MIT,2,2022-09-01 +Mount Union,3,Hiram,1,2022-09-01 +Hood,2,St. Mary's (Md.),2,2022-09-01 +New Paltz State,3,Sage,0,2022-09-01 +Gettysburg,0,Goucher,2,2022-09-01 +York (Pa.),1,Franklin and Marshall,2,2022-09-01 +Roanoke,2,Greensboro,0,2022-09-01 +Chatham,2,Juniata,1,2022-09-01 +Marymount,0,Shenandoah,2,2022-09-01 +Marywood,7,Keystone,0,2022-09-01 +Trine,2,Franklin,0,2022-09-01 +Wooster,2,Marietta,2,2022-09-01 +Muhlenberg,0,Elizabethtown,1,2022-09-01 +St. Joseph's (Maine),0,University of New England,4,2022-09-01 +Cairn,0,Delaware Valley,1,2022-09-01 +St. John Fisher,3,Allegheny,0,2022-09-01 +Swarthmore,2,Arcadia,1,2022-09-01 +Wilkes,0,Penn State-Berks,2,2022-09-01 +Hendrix,1,Austin,0,2022-09-01 +MSOE,3,Texas-Dallas,2,2022-09-01 +Gustavus Adolphus,2,Chapman,1,2022-09-01 +Mount St. Mary,0,New York University,9,2022-09-01 +Thomas,0,Gordon,7,2022-09-01 +La Roche,2,Geneva,2,2022-09-01 +Covenant,0,Sewanee,1,2022-09-01 +Chicago,0,Pomona-Pitzer,3,2022-09-01 +SUNY-Cobleskill,0,Morrisville State,1,2022-09-01 +Salem State,0,WPI,4,2022-09-01 +Benedictine,0,North Park,2,2022-09-01 +Millikin,5,Illinois College,0,2022-09-01 +Aurora,0,North Central (Ill.),1,2022-09-01 +Greenville,0,Washington U.,2,2022-09-01 +Carthage,1,Illinois Tech,2,2022-09-01 +McMurry,1,Texas Lutheran,1,2022-09-01 +St. Scholastica,0,Hardin-Simmons,2,2022-09-01 +Centenary (La.),0,East Texas Baptist,2,2022-09-01 +Lewis and Clark,0,Whittier,1,2022-09-01 +Whitworth,0,La Verne,3,2022-09-01 +Saint Benedict,0,Christopher Newport,1,2022-09-02 +Lynchburg,1,Rowan,1,2022-09-02 +McDaniel,0,Virginia Wesleyan,1,2022-09-02 +UW-Eau Claire,0,Wartburg,2,2022-09-02 +Yeshiva,0,New Jersey City,10,2022-09-02 +Alverno,0,SUNY-Maritime,7,2022-09-02 +Schreiner,3,University of the Ozarks,1,2022-09-02 +Sweet Briar,2,Trinity (D.C.),3,2022-09-02 +Denison,1,RIT,2,2022-09-02 +Kenyon,1,Nazareth,1,2022-09-02 +North Carolina Wesleyan,2,Bob Jones,5,2022-09-02 +Wilson,0,St. Vincent,3,2022-09-02 +Mass-Boston,1,Coast Guard,2,2022-09-02 +Franciscan,1,Penn State-Behrend,4,2022-09-02 +Bethany,1,La Roche,1,2022-09-02 +Wheaton (Ill.),0,Hope,2,2022-09-02 +Notre Dame (Md.),6,Gallaudet,2,2022-09-02 +MSOE,0,Southwestern,0,2022-09-02 +Fredonia State,0,Baldwin Wallace,1,2022-09-02 +Concordia-Moorhead,0,Nebraska Wesleyan,1,2022-09-02 +Mary Washington,0,Messiah,2,2022-09-03 +Trinity (Texas),4,Fontbonne,1,2022-09-03 +Illinois Tech,0,Calvin,1,2022-09-03 +UW-La Crosse,1,Chapman,0,2022-09-03 +St. Scholastica,2,Mary Hardin-Baylor,3,2022-09-03 +Emory,0,Pacific Lutheran,1,2022-09-03 +Montclair State,2,Gordon,1,2022-09-03 +TCNJ,2,Salisbury,3,2022-09-03 +Piedmont,0,Puget Sound,5,2022-09-03 +Washington and Lee,0,Stevens,0,2022-09-03 +Rochester,1,Cortland State,1,2022-09-03 +Buena Vista,1,Finlandia,0,2022-09-03 +Mount Holyoke,0,Westfield State,3,2022-09-03 +Worcester State,0,Clark,4,2022-09-03 +Eastern,0,Goucher,1,2022-09-03 +Regis (Mass.),1,Curry,0,2022-09-03 +Mount Aloysius,0,Grove City,7,2022-09-03 +Sage,0,Plattsburgh State,3,2022-09-03 +Maine-Farmington,0,Plymouth State,6,2022-09-03 +Colby-Sawyer,0,St. Lawrence,1,2022-09-03 +CCNY,3,Albertus Magnus,3,2022-09-03 +Emmanuel,10,MCLA,0,2022-09-03 +Potsdam State,0,Clarkson,2,2022-09-03 +Suffolk,1,Framingham State,0,2022-09-03 +Salve Regina,0,Johnson and Wales,2,2022-09-03 +Mitchell,0,Anna Maria,3,2022-09-03 +Keene State,0,Western New England,3,2022-09-03 +Bob Jones,4,Meredith,0,2022-09-03 +Arcadia,0,Haverford,1,2022-09-03 +St. Joseph's (Bklyn.),0,John Jay,4,2022-09-03 +Castleton,0,Skidmore,4,2022-09-03 +Penn College,1,Wilkes,6,2022-09-03 +Mount St. Vincent,2,New Jersey City,0,2022-09-03 +Elmhurst,0,Alma,2,2022-09-03 +Millikin,1,Kalamazoo,1,2022-09-03 +Lewis and Clark,0,La Verne,2,2022-09-03 +Hiram,1,Geneva,0,2022-09-03 +SUNY Poly,4,Clarks Summit,0,2022-09-03 +Maine-Presque Isle,1,Simmons,1,2022-09-03 +Washington and Jefferson,0,John Carroll,0,2022-09-03 +Wilson,0,Pitt-Greensburg,3,2022-09-03 +Husson,3,Elms,1,2022-09-03 +WPI,2,Western Connecticut,0,2022-09-03 +SUNY Canton,0,Oswego State,7,2022-09-03 +Norwich,1,Eastern Nazarene,0,2022-09-03 +Kenyon,0,RIT,2,2022-09-03 +RPI,0,New Paltz State,0,2022-09-03 +Heidelberg,1,Wittenberg,1,2022-09-03 +Methodist,2,Eastern Mennonite,0,2022-09-03 +DeSales,1,Dickinson,3,2022-09-03 +Roger Williams,0,Babson,5,2022-09-03 +Swarthmore,3,Marywood,1,2022-09-03 +Immaculata,2,Cairn,3,2022-09-03 +Brooklyn,1,Rutgers-Newark,9,2022-09-03 +Medaille,0,Thiel,4,2022-09-03 +Lancaster Bible,0,Elmira,1,2022-09-03 +Sarah Lawrence,0,Ramapo,3,2022-09-03 +Belhaven,1,Berry,3,2022-09-03 +Southern Virginia,1,Shenandoah,3,2022-09-03 +Lakeland,0,Northland,1,2022-09-03 +Webster,2,Monmouth,0,2022-09-03 +Chicago,4,Claremont-Mudd-Scripps,2,2022-09-03 +Whitworth,2,Whittier,3,2022-09-03 +Concordia (Texas),0,Pomona-Pitzer,4,2022-09-03 +Randolph-Macon,1,St. Mary's (Md.),0,2022-09-03 +Denison,0,Nazareth,1,2022-09-03 +Covenant,3,Asbury,1,2022-09-03 +Springfield,2,University of New England,0,2022-09-03 +Massachusetts Maritime,1,Dean,1,2022-09-03 +Utica,0,Union,1,2022-09-03 +Miss. U. for Women,5,Agnes Scott,0,2022-09-03 +Augsburg,1,UW-Stout,0,2022-09-03 +Lake Forest,0,Concordia (Wis.),4,2022-09-03 +Simpson,1,St. Catherine,4,2022-09-03 +Hanover,2,Ohio Northern,3,2022-09-03 +Penn State-Altoona,0,Ohio Wesleyan,3,2022-09-03 +Albright,0,Stockton,2,2022-09-03 +UW-Platteville,3,Northwestern (Minn.),0,2022-09-03 +Bethany,7,Hilbert,5,2022-09-03 +Eastern Connecticut,1,Wentworth,1,2022-09-03 +Texas Lutheran,1,Howard Payne,2,2022-09-03 +Martin Luther,4,Maranatha Baptist,0,2022-09-03 +UW-Oshkosh,6,Bethel,0,2022-09-03 +Neumann,0,King's,4,2022-09-03 +Buffalo State,0,Keuka,1,2022-09-03 +Coe,0,Grinnell,1,2022-09-03 +Oneonta State,1,Alfred,0,2022-09-03 +Salem State,0,Mass-Dartmouth,1,2022-09-03 +Smith,3,Bard,0,2022-09-03 +Fitchburg State,2,St. Joseph (Conn.),3,2022-09-03 +Thomas,1,New England College,1,2022-09-03 +North Central (Ill.),7,Benedictine,0,2022-09-03 +Lawrence,0,Macalester,2,2022-09-03 +Augustana,0,Greenville,1,2022-09-03 +Marian,4,Ripon,0,2022-09-03 +Maryville (Tenn.),1,Adrian,0,2022-09-03 +William Peace,3,Ferrum,0,2022-09-03 +Juniata,0,Westminster (Pa.),2,2022-09-03 +MIT,3,Bridgewater State,0,2022-09-03 +Bridgewater (Va.),3,Catholic,0,2022-09-03 +Franciscan,3,Fredonia State,2,2022-09-03 +Scranton,5,Kean,0,2022-09-03 +Warren Wilson,0,Guilford,6,2022-09-03 +Rose-Hulman,0,Centre,1,2022-09-03 +FDU-Florham,1,William Paterson,0,2022-09-03 +UW-River Falls,3,Bethany Lutheran,2,2022-09-03 +Blackburn,6,Mount Mary,0,2022-09-03 +Lynchburg,2,Rutgers-Camden,0,2022-09-03 +Manhattanville,0,Delaware Valley,2,2022-09-03 +Central,1,St. Mary's (Ind.),0,2022-09-03 +Houghton,0,Penn State-Harrisburg,0,2022-09-03 +Manchester,0,DePauw,2,2022-09-03 +Mount St. Joseph,0,Sewanee,1,2022-09-03 +St. Thomas (Texas),2,Centenary (La.),1,2022-09-03 +Eureka,0,Earlham,5,2022-09-03 +Austin,0,LeTourneau,2,2022-09-03 +Oberlin,1,Wilmington,0,2022-09-03 +Elizabethtown,0,Gettysburg,1,2022-09-03 +Waynesburg,2,Mount Union,2,2022-09-03 +Penn State-Berks,0,Moravian,1,2022-09-03 +Westminster (Mo.),0,Concordia-Moorhead,1,2022-09-03 +Emerson,0,UC Santa Cruz,0,2022-09-03 +Baldwin Wallace,3,Penn State-Behrend,2,2022-09-03 +Gustavus Adolphus,2,Cal Lutheran,1,2022-09-03 +UW-Whitewater,0,Hardin-Simmons,0,2022-09-03 +Chatham,1,Misericordia,5,2022-09-04 +Roanoke,0,Johns Hopkins,11,2022-09-04 +Christopher Newport,0,McDaniel,0,2022-09-04 +Otterbein,0,Case Western Reserve,4,2022-09-04 +Trinity (Texas),0,Washington U.,0,2022-09-04 +Carnegie Mellon,0,William Smith,2,2022-09-04 +Loras,1,Dominican,1,2022-09-04 +Farmingdale State,0,Rowan,1,2022-09-04 +Saint Benedict,0,Virginia Wesleyan,1,2022-09-04 +Montclair State,2,Endicott,1,2022-09-04 +TCNJ,5,St. Mary's (Md.),0,2022-09-04 +Washington and Lee,4,Arcadia,3,2022-09-04 +Yeshiva,0,SUNY-Old Westbury,9,2022-09-04 +Maine-Farmington,1,Norwich,0,2022-09-04 +Skidmore,0,Plattsburgh State,1,2022-09-04 +Maryville (Tenn.),2,Mount St. Joseph,1,2022-09-04 +McMurry,0,Occidental,1,2022-09-04 +Eureka,1,Defiance,0,2022-09-04 +Wheaton (Mass.),0,Geneseo State,2,2022-09-04 +Stevens,2,Haverford,2,2022-09-04 +Colby-Sawyer,1,Clarkson,3,2022-09-04 +Ursinus,4,Stevenson,0,2022-09-04 +University of New England,6,Mount Holyoke,0,2022-09-04 +Potsdam State,0,St. Lawrence,7,2022-09-04 +Centenary (N.J.),1,Drew,10,2022-09-04 +North Park,0,Aurora,0,2022-09-04 +Schreiner,0,Hendrix,1,2022-09-04 +Lewis and Clark,0,Caltech,0,2022-09-04 +Husson,1,Western New England,4,2022-09-04 +Carleton,3,Claremont-Mudd-Scripps,2,2022-09-04 +Southern Maine,4,St. Joseph's (Maine),1,2022-09-04 +Brandeis,2,Lasell,0,2022-09-04 +Ohio Wesleyan,1,Westminster (Pa.),0,2022-09-04 +Maine Maritime,0,Curry,2,2022-09-04 +Franklin,4,Berea,1,2022-09-04 +New York University,0,Vassar,0,2022-09-04 +Randolph-Macon,3,Salisbury,1,2022-09-04 +Lebanon Valley,0,Muhlenberg,0,2022-09-04 +SUNY-Cobleskill,5,Wells,2,2022-09-04 +Methodist,2,Averett,2,2022-09-04 +St. John Fisher,0,Brockport State,0,2022-09-04 +Millikin,0,Albion,0,2022-09-04 +Lawrence,0,Saint Mary's (Minn.),2,2022-09-04 +Huntingdon,0,Rhodes,1,2022-09-04 +UW-Eau Claire,5,Coe,0,2022-09-04 +Allegheny,0,Wooster,6,2022-09-04 +Adrian,1,Sewanee,0,2022-09-04 +Edgewood,2,Cornell,0,2022-09-04 +Widener,2,Bryn Mawr,1,2022-09-04 +Carthage,2,Alma,2,2022-09-04 +Olivet,2,Muskingum,2,2022-09-04 +Kean,1,Albright,1,2022-09-04 +Illinois Wesleyan,5,Knox,1,2022-09-04 +Beloit,4,Wisconsin Lutheran,0,2022-09-04 +UW-Stevens Point,0,St. Olaf,1,2022-09-04 +Delaware Valley,1,Susquehanna,8,2022-09-04 +Ithaca,4,Mount St. Mary,1,2022-09-04 +Lakeland,1,Finlandia,0,2022-09-04 +Westminster (Mo.),0,Nebraska Wesleyan,2,2022-09-04 +Hamline,0,UW-Superior,0,2022-09-04 +Bluffton,2,Hiram,2,2022-09-04 +Franklin and Marshall,3,Rutgers-Newark,0,2022-09-04 +Scranton,1,Stockton,0,2022-09-04 +Augsburg,8,Minnesota-Morris,0,2022-09-04 +Rhode Island College,0,Salve Regina,2,2022-09-04 +Marymount,0,Washington College,4,2022-09-04 +Penn State-Harrisburg,1,York (Pa.),4,2022-09-04 +Penn State-Altoona,0,Juniata,0,2022-09-04 +Emory,0,Puget Sound,1,2022-09-05 +Maine-Presque Isle,2,Massachusetts Maritime,0,2022-09-05 +Carleton,1,La Verne,3,2022-09-05 +Anderson,2,Webster,1,2022-09-05 +UW-Oshkosh,0,Macalester,0,2022-09-05 +Concordia (Texas),1,Cal Lutheran,3,2022-09-05 +Central,1,Hope,1,2022-09-05 +Trine,1,Centre,3,2022-09-05 +Bethel,1,Dubuque,1,2022-09-05 +Blackburn,0,Rockford,6,2022-09-05 +Swarthmore,3,Bridgewater (Va.),0,2022-09-05 +Fontbonne,1,Washington U.,1,2022-09-05 +Lycoming,4,Mount Aloysius,0,2022-09-05 +Buena Vista,0,UW-River Falls,2,2022-09-05 +Concordia-Chicago,0,Lake Forest,1,2022-09-05 +Penn College,1,Geneva,3,2022-09-05 +King's,1,Alvernia,1,2022-09-05 +Illinois College,1,Principia,1,2022-09-05 +Saint Mary's (Minn.),0,Wartburg,1,2022-09-06 +Hamilton,1,Williams,0,2022-09-06 +Mass-Boston,0,Middlebury,1,2022-09-06 +Pfeiffer,1,Bob Jones,5,2022-09-06 +Buffalo State,3,Cazenovia,1,2022-09-06 +SUNY Canton,2,Keystone,3,2022-09-06 +Yeshiva,0,Farmingdale State,10,2022-09-06 +Sweet Briar,0,Salem,8,2022-09-06 +Oswego State,1,Houghton,0,2022-09-06 +SUNY Delhi,3,SUNY-Maritime,0,2022-09-06 +Waynesburg,3,La Roche,2,2022-09-06 +Bates,2,Maine Maritime,0,2022-09-06 +Penn State-Abington,1,Bryn Athyn,6,2022-09-06 +Maranatha Baptist,0,Lakeland,3,2022-09-06 +UW-Stout,0,UW-Superior,0,2022-09-06 +Wisconsin Lutheran,12,Mount Mary,0,2022-09-06 +Warren Wilson,0,Brevard,4,2022-09-06 +Trinity (Conn.),3,Western Connecticut,0,2022-09-06 +Eastern Connecticut,5,Fitchburg State,2,2022-09-06 +DeSales,7,Immaculata,0,2022-09-06 +Simpson,5,Knox,0,2022-09-06 +Birmingham-Southern,0,Covenant,1,2022-09-06 +UW-Platteville,0,Carroll,1,2022-09-06 +MIT,2,Johnson and Wales,2,2022-09-06 +Wentworth,1,Emmanuel,6,2022-09-06 +Mary Baldwin,1,Randolph,1,2022-09-06 +William Peace,1,Guilford,2,2022-09-06 +St. Joseph (Conn.),0,Connecticut College,6,2022-09-06 +Bridgewater State,5,Suffolk,0,2022-09-06 +New England College,0,Gordon,2,2022-09-06 +Simmons,1,Lesley,2,2022-09-06 +Hartwick,2,Morrisville State,2,2022-09-06 +William Paterson,0,Wilkes,2,2022-09-06 +Finlandia,1,Northland,0,2022-09-06 +Howard Payne,2,Austin,2,2022-09-06 +University of the Ozarks,0,Hendrix,3,2022-09-06 +McMurry,1,Chapman,3,2022-09-06 +Anna Maria,3,Eastern Nazarene,1,2022-09-06 +Ripon,0,Edgewood,2,2022-09-06 +Lebanon Valley,0,Misericordia,7,2022-09-07 +Johns Hopkins,1,Messiah,1,2022-09-07 +Christopher Newport,2,Virginia Wesleyan,1,2022-09-07 +Springfield,2,Amherst,5,2022-09-07 +Carnegie Mellon,6,Franciscan,1,2022-09-07 +Concordia (Wis.),1,Loras,1,2022-09-07 +Augsburg,1,UW-La Crosse,2,2022-09-07 +Manhattanville,1,Rowan,3,2022-09-07 +Vassar,0,Montclair State,1,2022-09-07 +Emerson,1,Tufts,4,2022-09-07 +Clarkson,0,Cortland State,0,2022-09-07 +St. Catherine,1,Luther,2,2022-09-07 +Olivet,1,Bluffton,0,2022-09-07 +Salem State,0,Plymouth State,2,2022-09-07 +Smith,5,Nichols,0,2022-09-07 +Kean,0,FDU-Florham,1,2022-09-07 +Coast Guard,3,Salve Regina,0,2022-09-07 +Chicago,2,Kalamazoo,0,2022-09-07 +New Jersey City,2,St. Joseph's (L.I.),2,2022-09-07 +Rochester,7,Brockport State,1,2022-09-07 +Thomas,0,Colby,8,2022-09-07 +Southern Virginia,1,Mary Washington,2,2022-09-07 +RPI,0,Plattsburgh State,2,2022-09-07 +Pitt-Greensburg,3,St. Vincent,0,2022-09-07 +Bethany,2,Mount Aloysius,0,2022-09-07 +Penn State-Berks,1,Neumann,0,2022-09-07 +Mass-Dartmouth,3,Lasell,2,2022-09-07 +Rosemont,1,Penn State-Abington,5,2022-09-07 +Rutgers-Newark,2,John Jay,1,2022-09-07 +Elmira,0,Lycoming,2,2022-09-07 +St. Joseph's (Maine),0,Bowdoin,5,2022-09-07 +Curry,0,Wheaton (Mass.),2,2022-09-07 +Babson,4,Brandeis,3,2022-09-07 +Penn State-Harrisburg,3,Bryn Mawr,0,2022-09-07 +Delaware Valley,0,Haverford,8,2022-09-07 +Hilbert,0,SUNY Poly,0,2022-09-07 +Carthage,0,Beloit,0,2022-09-07 +North Central (Ill.),0,Dominican,0,2022-09-07 +Concordia-Moorhead,7,Minnesota-Morris,2,2022-09-07 +Bethany Lutheran,0,Gustavus Adolphus,6,2022-09-07 +Huntingdon,0,Oglethorpe,2,2022-09-07 +UW-Stevens Point,0,Hamline,0,2022-09-07 +MSOE,1,Lake Forest,1,2022-09-07 +Ramapo,3,Cedar Crest,1,2022-09-07 +DePauw,1,Franklin,0,2022-09-07 +Colby-Sawyer,0,Mount Holyoke,1,2022-09-07 +Goucher,2,Marymount,1,2022-09-07 +Sage,1,Bard,1,2022-09-07 +Washington and Jefferson,2,Penn State-Altoona,2,2022-09-07 +Illinois Tech,7,Elmhurst,0,2022-09-07 +Shenandoah,2,Gettysburg,2,2022-09-07 +Asbury,3,Berea,3,2022-09-07 +Franklin and Marshall,2,Elizabethtown,1,2022-09-07 +Defiance,0,Heidelberg,9,2022-09-07 +Keene State,1,Regis (Mass.),0,2022-09-07 +John Carroll,2,Wittenberg,1,2022-09-07 +Marietta,1,Chatham,7,2022-09-07 +Dickinson,1,Susquehanna,2,2022-09-07 +Southern Maine,5,Westfield State,0,2022-09-07 +Juniata,2,Albright,2,2022-09-07 +Norwich,0,Castleton,7,2022-09-07 +Wellesley,0,Endicott,1,2022-09-07 +Allegheny,1,Mount Union,1,2022-09-07 +Salisbury,0,York (Pa.),1,2022-09-07 +Greenville,1,Rose-Hulman,3,2022-09-07 +Stockton,0,Drew,1,2022-09-07 +St. Mary's (Md.),1,Eastern Mennonite,0,2022-09-07 +Elms,1,Framingham State,0,2022-09-07 +Penn College,0,Keuka,1,2022-09-07 +Geneseo State,0,RIT,2,2022-09-07 +Eastern,0,Cabrini,1,2022-09-07 +Wooster,3,Muskingum,0,2022-09-07 +Washington College,0,Hood,0,2022-09-07 +Muhlenberg,0,Moravian,1,2022-09-07 +Marywood,0,Scranton,6,2022-09-07 +Ferrum,1,Greensboro,1,2022-09-07 +Stevenson,2,Catholic,3,2022-09-07 +Wilmington,4,Hiram,0,2022-09-07 +Alvernia,2,Rutgers-Camden,2,2022-09-07 +Cairn,0,Lancaster Bible,2,2022-09-07 +University of Dallas,1,Texas-Dallas,3,2022-09-07 +WPI,0,Wesleyan,2,2022-09-07 +St. Joseph's (Bklyn.),5,Brooklyn,0,2022-09-07 +Arcadia,1,Ursinus,1,2022-09-07 +Baldwin Wallace,2,Oberlin,1,2022-09-07 +St. Mary's (Ind.),1,Aurora,1,2022-09-07 +Benedictine,0,Augustana,2,2022-09-07 +Webster,1,Millikin,2,2022-09-07 +Lawrence,3,Marian,2,2022-09-07 +Cornell,2,Coe,1,2022-09-07 +Monmouth,0,Dubuque,4,2022-09-07 +St. Olaf,1,UW-Eau Claire,3,2022-09-07 +Valley Forge,0,Gwynedd-Mercy,6,2022-09-08 +Knox,0,Hope,7,2022-09-08 +King's,3,Immaculata,0,2022-09-08 +Mount St. Mary,0,New Paltz State,4,2022-09-08 +Bryn Athyn,5,Centenary (N.J.),2,2022-09-08 +McDaniel,0,Randolph-Macon,0,2022-09-08 +Macalester,0,UW-River Falls,0,2022-09-08 +Finlandia,1,Crown,0,2022-09-08 +Geneva,1,SUNY Delhi,1,2022-09-08 +LeTourneau,0,Belhaven,0,2022-09-08 +Eastern Nazarene,2,Simmons,4,2022-09-08 +Mitchell,0,Massachusetts Maritime,0,2022-09-08 +Caltech,1,Wentworth,0,2022-09-08 +Lesley,0,MIT,4,2022-09-08 +Yeshiva,0,SUNY-Purchase,4,2022-09-08 +Salem,1,Averett,2,2022-09-08 +Lehman,0,Sarah Lawrence,7,2022-09-08 +Miss. U. for Women,1,Principia,1,2022-09-08 +Wisconsin Lutheran,0,Carroll,4,2022-09-08 +UW-Platteville,1,North Park,0,2022-09-08 +St. Norbert,1,UW-Stout,3,2022-09-08 +Sul Ross State,3,St. Thomas (Texas),1,2022-09-08 +Case Western Reserve,1,Baldwin Wallace,0,2022-09-09 +Trinity (Texas),1,Schreiner,0,2022-09-09 +Wittenberg,0,Carnegie Mellon,3,2022-09-09 +Calvin,6,UW-Oshkosh,0,2022-09-09 +East Texas Baptist,1,Emory,5,2022-09-09 +Pacific Lutheran,0,Ohio Northern,0,2022-09-09 +TCNJ,4,New York University,4,2022-09-09 +Puget Sound,1,UC Santa Cruz,2,2022-09-09 +Centre,4,Grove City,1,2022-09-09 +Oswego State,1,Ithaca,2,2022-09-09 +Clarkson,4,Roger Williams,1,2022-09-09 +Brooklyn,4,St. Elizabeth,5,2022-09-09 +Edgewood,8,Mount Mary,0,2022-09-09 +Trinity (D.C.),4,Hollins,2,2022-09-09 +Linfield,1,North Central (Ill.),2,2022-09-09 +Pitt-Bradford,0,St. Vincent,5,2022-09-09 +UW-Stevens Point,3,Coe,1,2022-09-09 +Utica,2,Fredonia State,3,2022-09-09 +Potsdam State,1,New England College,0,2022-09-09 +Bob Jones,1,Greensboro,0,2022-09-09 +Rhode Island College,0,Wheaton (Mass.),2,2022-09-09 +Pitt-Greensburg,0,Franciscan,1,2022-09-09 +Miss. U. for Women,9,Blackburn,0,2022-09-09 +St. Mary's (Ind.),0,Hanover,1,2022-09-09 +Shenandoah,4,North Carolina Wesleyan,0,2022-09-09 +Illinois College,0,Rhodes,5,2022-09-09 +Penn State-Behrend,0,Chicago,4,2022-09-09 +University of the Ozarks,2,Westminster (Mo.),4,2022-09-09 +Keystone,4,Wells,0,2022-09-09 +Transylvania,1,Covenant,1,2022-09-09 +UW-Whitewater,2,St. Scholastica,0,2022-09-09 +Elmhurst,0,MSOE,4,2022-09-09 +Hamline,0,Whitman,1,2022-09-09 +Southwestern,0,Hardin-Simmons,3,2022-09-09 +SUNY-Maritime,0,Pratt,3,2022-09-09 +La Roche,0,Westminster (Pa.),6,2022-09-09 +WPI,1,Worcester State,0,2022-09-09 +John Carroll,0,Wheaton (Ill.),1,2022-09-09 +Capital,4,Mount St. Joseph,1,2022-09-09 +Berry,0,Southern Virginia,1,2022-09-09 +Western New England,3,Fitchburg State,1,2022-09-09 +Sul Ross State,3,Centenary (La.),1,2022-09-09 +Simpson,0,Texas-Dallas,1,2022-09-09 +Redlands,1,Stevens,4,2022-09-09 +Spalding,0,Maryville (Tenn.),7,2022-09-09 +Gustavus Adolphus,1,Dubuque,1,2022-09-09 +Chapman,2,Texas Lutheran,1,2022-09-09 +Willamette,1,La Verne,0,2022-09-09 +Washington U.,1,Cal Lutheran,2,2022-09-09 +Farmingdale State,1,Misericordia,3,2022-09-10 +Susquehanna,1,Christopher Newport,2,2022-09-10 +Messiah,2,William Smith,1,2022-09-10 +Middlebury,3,Amherst,4,2022-09-10 +Calvin,2,Carroll,0,2022-09-10 +Loras,4,Millikin,0,2022-09-10 +UW-La Crosse,3,Dominican,2,2022-09-10 +Rowan,11,Centenary (N.J.),1,2022-09-10 +Methodist,0,Virginia Wesleyan,4,2022-09-10 +Montclair State,2,Ursinus,1,2022-09-10 +John Carroll,0,Pacific Lutheran,6,2022-09-10 +Wartburg,3,Illinois Wesleyan,0,2022-09-10 +Franklin and Marshall,0,Washington and Lee,0,2022-09-10 +Connecticut College,0,Tufts,4,2022-09-10 +RPI,0,Cortland State,4,2022-09-10 +Williams,2,Castleton,0,2022-09-10 +Caltech,0,Mass-Boston,0,2022-09-10 +Western Connecticut,4,Springfield,1,2022-09-10 +Colby,0,Wesleyan,3,2022-09-10 +Clarkson,8,New England College,0,2022-09-10 +Nichols,2,Framingham State,1,2022-09-10 +Bob Jones,0,Guilford,3,2022-09-10 +Mass-Dartmouth,1,Curry,5,2022-09-10 +Johnson and Wales,1,Brandeis,3,2022-09-10 +Sewanee,0,Lynchburg,0,2022-09-10 +Bowdoin,2,Bates,1,2022-09-10 +Widener,0,Moravian,0,2022-09-10 +Manhattanville,0,John Jay,1,2022-09-10 +Hood,1,Penn State-Harrisburg,3,2022-09-10 +Alfred,1,Rochester,5,2022-09-10 +Wentworth,3,Mount Holyoke,2,2022-09-10 +Wellesley,1,Suffolk,0,2022-09-10 +Lesley,0,Bridgewater State,1,2022-09-10 +Bard,0,Sarah Lawrence,1,2022-09-10 +Pitt-Greensburg,5,Allegheny,2,2022-09-10 +Swarthmore,2,William Paterson,0,2022-09-10 +Grove City,2,Linfield,3,2022-09-10 +Nebraska Wesleyan,1,Illinois College,0,2022-09-10 +Wisconsin Lutheran,11,Maranatha Baptist,1,2022-09-10 +Union,2,Oneonta State,0,2022-09-10 +Ithaca,2,Fredonia State,2,2022-09-10 +Endicott,4,Hartwick,1,2022-09-10 +Wilmington,3,Anderson,0,2022-09-10 +Utica,0,Oswego State,0,2022-09-10 +Concordia (Wis.),1,Denison,0,2022-09-10 +Otterbein,0,RIT,2,2022-09-10 +Pitt-Bradford,0,Bethany,7,2022-09-10 +York (Pa.),0,McDaniel,3,2022-09-10 +New Jersey City,1,Cedar Crest,1,2022-09-10 +Plymouth State,0,Gordon,3,2022-09-10 +Mount St. Mary,1,Salisbury,6,2022-09-10 +Kean,1,Westfield State,1,2022-09-10 +Gwynedd-Mercy,2,Clarks Summit,2,2022-09-10 +Salve Regina,1,Keene State,3,2022-09-10 +Haverford,2,Lebanon Valley,1,2022-09-10 +Geneseo State,0,DeSales,0,2022-09-10 +Keuka,0,Lycoming,4,2022-09-10 +Brockport State,2,Houghton,1,2022-09-10 +Wooster,2,Alma,2,2022-09-10 +Ohio Wesleyan,3,Muskingum,0,2022-09-10 +Emmanuel,2,Elms,0,2022-09-10 +Marymount,1,Mary Washington,2,2022-09-10 +Goucher,4,Immaculata,0,2022-09-10 +Regis (Mass.),2,Albertus Magnus,0,2022-09-10 +Wesleyan (Ga.),0,Warren Wilson,3,2022-09-10 +Skidmore,3,New Paltz State,1,2022-09-10 +Muhlenberg,1,Catholic,0,2022-09-10 +Kalamazoo,2,Kenyon,1,2022-09-10 +Marywood,1,Eastern,1,2022-09-10 +Agnes Scott,4,Hollins,1,2022-09-10 +Trine,4,Augustana,0,2022-09-10 +Potsdam State,1,Roger Williams,2,2022-09-10 +Centre,1,North Central (Ill.),4,2022-09-10 +Pfeiffer,6,Sweet Briar,1,2022-09-10 +Clark,8,Salem State,0,2022-09-10 +Albion,2,Roanoke,0,2022-09-10 +Wilson,2,Penn State-Abington,2,2022-09-10 +Geneva,1,St. John Fisher,6,2022-09-10 +Elmira,0,FDU-Florham,3,2022-09-10 +Hamilton,1,Trinity (Conn.),1,2022-09-10 +Covenant,3,Spalding,1,2022-09-10 +North Central (Minn.),1,Buena Vista,3,2022-09-10 +Finlandia,0,Martin Luther,0,2022-09-10 +Lake Forest,2,Illinois Tech,3,2022-09-10 +UW-Eau Claire,1,Saint Benedict,2,2022-09-10 +Greenville,3,Carthage,3,2022-09-10 +St. Norbert,1,St. Olaf,0,2022-09-10 +Belhaven,4,Birmingham-Southern,0,2022-09-10 +Northwestern (Minn.),0,Macalester,3,2022-09-10 +University of New England,2,Southern Maine,1,2022-09-10 +Lasell,2,Dean,0,2022-09-10 +St. Mary's (Md.),0,Bridgewater (Va.),1,2022-09-10 +SUNY-Purchase,7,SUNY-Cobleskill,1,2022-09-10 +Arcadia,4,Rutgers-Newark,1,2022-09-10 +Morrisville State,1,Hilbert,4,2022-09-10 +Coast Guard,2,Drew,1,2022-09-10 +Simmons,2,Rivier,0,2022-09-10 +Maine Maritime,1,Maine-Presque Isle,0,2022-09-10 +NVU-Johnson,1,Cazenovia,3,2022-09-10 +NVU-Lyndon,0,Thomas,2,2022-09-10 +Husson,6,Maine-Farmington,2,2022-09-10 +St. Lawrence,0,Nazareth,0,2022-09-10 +Alvernia,0,Penn State-Berks,2,2022-09-10 +Asbury,0,Manchester,1,2022-09-10 +Babson,3,Eastern Connecticut,0,2022-09-10 +Colby-Sawyer,4,Anna Maria,0,2022-09-10 +Stevenson,0,Elizabethtown,2,2022-09-10 +Stockton,2,Shenandoah,2,2022-09-10 +UW-River Falls,3,Northland,0,2022-09-10 +UW-Whitewater,2,Augsburg,1,2022-09-10 +Claremont-Mudd-Scripps,1,MIT,0,2022-09-10 +Pomona-Pitzer,2,UC Santa Cruz,1,2022-09-10 +Chatham,5,Oberlin,2,2022-09-10 +UW-Stout,0,Concordia-Moorhead,2,2022-09-10 +Rockford,3,Ripon,2,2022-09-10 +Carleton,4,Grinnell,0,2022-09-10 +MCLA,0,Sage,3,2022-09-10 +Heidelberg,0,Adrian,0,2022-09-10 +St. Catherine,4,Central,1,2022-09-10 +CCNY,3,St. Joseph's (Bklyn.),0,2022-09-10 +UW-Stevens Point,1,Luther,2,2022-09-10 +Juniata,0,Cabrini,1,2022-09-10 +Transylvania,0,Maryville (Tenn.),2,2022-09-10 +LeTourneau,0,Millsaps,0,2022-09-10 +Oglethorpe,0,LaGrange,0,2022-09-10 +Mount Aloysius,0,Waynesburg,3,2022-09-10 +Rutgers-Camden,0,Washington College,2,2022-09-10 +Vassar,1,Scranton,0,2022-09-10 +Ferrum,4,Eastern Mennonite,2,2022-09-10 +Simpson,3,University of Dallas,0,2022-09-10 +Neumann,0,Albright,0,2022-09-10 +Ohio Northern,1,Wheaton (Ill.),1,2022-09-10 +Webster,3,Benedictine,1,2022-09-10 +McMurry,0,St. Thomas (Texas),0,2022-09-10 +Nazareth,0,Misericordia,2,2022-09-11 +Johns Hopkins,2,Carnegie Mellon,2,2022-09-11 +Methodist,0,Christopher Newport,6,2022-09-11 +Chapman,0,Trinity (Texas),2,2022-09-11 +Amherst,2,Smith,1,2022-09-11 +UW-La Crosse,1,Illinois Wesleyan,2,2022-09-11 +Mary Hardin-Baylor,1,Texas Lutheran,0,2022-09-11 +Susquehanna,1,Virginia Wesleyan,3,2022-09-11 +Wartburg,3,Dominican,1,2022-09-11 +Redlands,1,TCNJ,4,2022-09-11 +Pomona-Pitzer,0,Puget Sound,2,2022-09-11 +Gettysburg,1,Washington and Lee,4,2022-09-11 +Claremont-Mudd-Scripps,1,Williams,0,2022-09-11 +East Texas Baptist,2,Piedmont,1,2022-09-11 +Berry,1,Mary Baldwin,0,2022-09-11 +Dickinson,0,Capital,1,2022-09-11 +Yeshiva,0,St. Joseph's (L.I.),11,2022-09-11 +Alfred State,0,St. Vincent,2,2022-09-11 +St. Mary's (Md.),1,Mount St. Mary,1,2022-09-11 +Westfield State,1,Coast Guard,0,2022-09-11 +St. Mary's (Ind.),1,DePauw,2,2022-09-11 +Western Connecticut,1,Johnson and Wales,4,2022-09-11 +Wheaton (Mass.),1,Middlebury,3,2022-09-11 +Pratt,3,St. Elizabeth,0,2022-09-11 +Union,1,Hartwick,0,2022-09-11 +William Paterson,0,Arcadia,3,2022-09-11 +Lakeland,0,Lawrence,3,2022-09-11 +Albion,0,Lynchburg,0,2022-09-11 +Endicott,2,Oneonta State,0,2022-09-11 +Wilkes,0,Widener,3,2022-09-11 +St. Lawrence,1,Farmingdale State,0,2022-09-11 +Kalamazoo,1,Denison,0,2022-09-11 +Concordia (Wis.),1,Kenyon,2,2022-09-11 +Nebraska Wesleyan,0,Rhodes,3,2022-09-11 +UW-Oshkosh,1,Marian,1,2022-09-11 +Mount Mary,0,Alverno,0,2022-09-11 +Howard Payne,4,Centenary (La.),1,2022-09-11 +Penn State-Behrend,1,Illinois Tech,2,2022-09-11 +Willamette,2,Whittier,4,2022-09-11 +Defiance,1,Bethany,7,2022-09-11 +Stockton,2,North Carolina Wesleyan,1,2022-09-11 +SUNY Delhi,0,Lycoming,5,2022-09-11 +Mount St. Joseph,1,Marietta,0,2022-09-11 +Westminster (Pa.),2,Penn State-Altoona,1,2022-09-11 +St. Joseph (Conn.),2,St. Joseph's (Maine),4,2022-09-11 +Bowdoin,8,Maine-Farmington,0,2022-09-11 +Gustavus Adolphus,0,UW-Eau Claire,1,2022-09-11 +Aurora,1,Cornell,1,2022-09-11 +Washington U.,1,Occidental,0,2022-09-11 +New York University,0,Stevens,0,2022-09-11 +Kean,0,Drew,2,2022-09-11 +Wooster,1,Adrian,2,2022-09-11 +Sewanee,0,Roanoke,1,2022-09-11 +Morrisville State,0,Buffalo State,2,2022-09-11 +Mount St. Vincent,0,FDU-Florham,1,2022-09-11 +Rutgers-Newark,0,Swarthmore,5,2022-09-11 +Hanover,0,Trine,2,2022-09-11 +UW-Superior,0,Edgewood,4,2022-09-11 +Augustana,4,Monmouth,1,2022-09-11 +Castleton,0,MIT,5,2022-09-11 +Finlandia,0,St. Scholastica,4,2022-09-11 +Coe,1,UW-Platteville,5,2022-09-11 +MSOE,0,Chicago,1,2022-09-11 +Luther,1,Saint Benedict,4,2022-09-11 +La Roche,2,Thiel,1,2022-09-12 +Husson,1,Bates,2,2022-09-12 +Hiram,0,Franciscan,5,2022-09-12 +Penn State-Berks,3,Albright,1,2022-09-12 +Tufts,2,Wesleyan,0,2022-09-13 +Keystone,3,Pratt,5,2022-09-13 +Nichols,1,Fitchburg State,2,2022-09-13 +Oswego State,1,Hamilton,4,2022-09-13 +MCLA,1,SUNY-Cobleskill,1,2022-09-13 +Alfred State,0,Elmira,1,2022-09-13 +Oberlin,2,Heidelberg,1,2022-09-13 +Blackburn,0,Eureka,3,2022-09-13 +UW-River Falls,5,Minnesota-Morris,4,2022-09-13 +Catholic,1,Bryn Mawr,1,2022-09-13 +Neumann,1,Eastern,1,2022-09-13 +Averett,1,Bob Jones,3,2022-09-13 +Mount St. Mary,2,RPI,5,2022-09-13 +Centenary (La.),0,Belhaven,0,2022-09-13 +Ripon,5,Maranatha Baptist,0,2022-09-13 +Carroll,1,Lake Forest,0,2022-09-13 +Utica,2,Potsdam State,3,2022-09-13 +Plymouth State,1,Emerson,5,2022-09-13 +Guilford,0,Pfeiffer,0,2022-09-13 +Eastern Nazarene,0,Thomas,2,2022-09-13 +Principia,0,Westminster (Mo.),5,2022-09-13 +Allegheny,0,Fredonia State,2,2022-09-13 +Worcester State,1,Gordon,1,2022-09-13 +Skidmore,2,Sage,0,2022-09-13 +Framingham State,0,Anna Maria,3,2022-09-13 +Wittenberg,2,Otterbein,1,2022-09-13 +Rutgers-Camden,0,Elizabethtown,1,2022-09-13 +Marywood,0,Franklin and Marshall,7,2022-09-13 +Salve Regina,1,Bridgewater State,6,2022-09-13 +Lancaster Bible,4,Gwynedd-Mercy,0,2022-09-13 +Southern Virginia,2,Ferrum,1,2022-09-13 +Earlham,0,Wilmington,1,2022-09-13 +Berry,2,Covenant,0,2022-09-13 +Wentworth,4,Mass-Dartmouth,0,2022-09-13 +Cedar Crest,2,Alvernia,5,2022-09-13 +DeSales,2,Haverford,1,2022-09-13 +Pitt-Greensburg,2,Waynesburg,0,2022-09-13 +SUNY-Maritime,6,Yeshiva,1,2022-09-13 +Sewanee,3,Maryville (Tenn.),1,2022-09-13 +University of Dallas,3,Austin,0,2022-09-13 +Martin Luther,3,Buena Vista,1,2022-09-13 +John Jay,1,Sarah Lawrence,1,2022-09-13 +Randolph-Macon,0,Johns Hopkins,3,2022-09-14 +McDaniel,1,Messiah,3,2022-09-14 +Case Western Reserve,2,Kenyon,0,2022-09-14 +Grove City,0,Carnegie Mellon,3,2022-09-14 +Calvin,5,Manchester,0,2022-09-14 +North Central (Ill.),2,Loras,3,2022-09-14 +William Smith,1,Geneseo State,0,2022-09-14 +Rowan,2,Widener,0,2022-09-14 +Farmingdale State,0,TCNJ,9,2022-09-14 +Cortland State,2,Ithaca,0,2022-09-14 +Penn State-Altoona,1,St. Vincent,0,2022-09-14 +NVU-Johnson,0,Colby-Sawyer,6,2022-09-14 +Finlandia,1,North Central (Minn.),0,2022-09-14 +Alfred,3,Pitt-Bradford,1,2022-09-14 +St. Joseph's (Bklyn.),2,St. Elizabeth,1,2022-09-14 +Lycoming,0,Marymount,0,2022-09-14 +Mitchell,0,Dean,1,2022-09-14 +Rosemont,1,Gwynedd-Mercy,1,2022-09-14 +MIT,6,Roger Williams,1,2022-09-14 +Lesley,1,Wellesley,3,2022-09-14 +Randolph,1,Salem,0,2022-09-14 +Scranton,1,Lebanon Valley,1,2022-09-14 +New England College,0,Castleton,3,2022-09-14 +Western Connecticut,0,Vassar,2,2022-09-14 +Coast Guard,0,Connecticut College,2,2022-09-14 +Bridgewater (Va.),2,Greensboro,0,2022-09-14 +Hood,2,Shenandoah,5,2022-09-14 +New Jersey City,7,Brooklyn,0,2022-09-14 +Emmanuel,1,Lasell,4,2022-09-14 +Dickinson,0,York (Pa.),1,2022-09-14 +Gallaudet,2,Trinity (D.C.),9,2022-09-14 +Westminster (Pa.),1,Wooster,0,2022-09-14 +Franciscan,3,La Roche,0,2022-09-14 +Asbury,0,Anderson,5,2022-09-14 +Centenary (N.J.),0,Stockton,7,2022-09-14 +Kalamazoo,0,Ohio Northern,3,2022-09-14 +Bethel,1,St. Olaf,2,2022-09-14 +Macalester,1,Concordia-Moorhead,0,2022-09-14 +Aurora,0,Concordia (Wis.),2,2022-09-14 +St. Scholastica,0,Gustavus Adolphus,4,2022-09-14 +Rockford,4,Alverno,0,2022-09-14 +Saint Benedict,1,St. Catherine,2,2022-09-14 +Concordia-Chicago,0,Benedictine,0,2022-09-14 +Carleton,2,Saint Mary's (Minn.),0,2022-09-14 +Central,5,Monmouth,0,2022-09-14 +New Paltz State,3,Bard,0,2022-09-14 +Husson,0,Colby,5,2022-09-14 +Norwich,1,St. Joseph (Conn.),1,2022-09-14 +Mass-Boston,0,Babson,3,2022-09-14 +Fontbonne,5,Spalding,0,2022-09-14 +North Park,1,Hope,6,2022-09-14 +Luther,0,UW-Whitewater,2,2022-09-14 +Dubuque,2,Knox,0,2022-09-14 +Miss. U. for Women,0,Huntingdon,3,2022-09-14 +Marietta,1,Washington and Jefferson,2,2022-09-14 +Hilbert,3,Medaille,2,2022-09-14 +Cabrini,1,Arcadia,3,2022-09-14 +Chatham,4,Mount Aloysius,1,2022-09-14 +Elms,0,Johnson and Wales,4,2022-09-14 +Wilkes,0,Susquehanna,2,2022-09-14 +Albright,0,Penn State-Harrisburg,1,2022-09-14 +Capital,1,Ohio Wesleyan,0,2022-09-14 +Union,1,WPI,0,2022-09-14 +Keene State,0,Westfield State,6,2022-09-14 +Geneva,0,Baldwin Wallace,4,2022-09-14 +Salisbury,3,Washington College,1,2022-09-14 +Curry,2,Simmons,0,2022-09-14 +Muhlenberg,0,FDU-Florham,5,2022-09-14 +Berea,0,Mount St. Joseph,3,2022-09-14 +Brockport State,0,Keuka,0,2022-09-14 +Middlebury,2,Plattsburgh State,0,2022-09-14 +Maine-Farmington,0,Southern Maine,4,2022-09-14 +Juniata,0,King's,2,2022-09-14 +Western New England,1,Springfield,2,2022-09-14 +Rhode Island College,1,Regis (Mass.),1,2022-09-14 +Mary Washington,7,Eastern Mennonite,0,2022-09-14 +Rochester,0,St. John Fisher,0,2022-09-14 +Rutgers-Newark,1,Albertus Magnus,0,2022-09-14 +Roanoke,0,Lynchburg,2,2022-09-14 +Denison,0,Transylvania,0,2022-09-14 +Stevenson,0,St. Mary's (Md.),0,2022-09-14 +St. Joseph's (L.I.),1,William Paterson,1,2022-09-14 +Penn State-Abington,3,Immaculata,4,2022-09-14 +Delaware Valley,1,Bryn Athyn,1,2022-09-14 +SUNY-Old Westbury,0,CCNY,1,2022-09-14 +Clarkson,4,SUNY Canton,0,2022-09-14 +Bowdoin,1,University of New England,0,2022-09-14 +Ramapo,2,Drew,3,2022-09-14 +Thiel,1,John Carroll,6,2022-09-14 +Brandeis,2,Clark,1,2022-09-14 +Occidental,1,Chapman,1,2022-09-14 +Moravian,0,Swarthmore,2,2022-09-14 +Endicott,2,St. Joseph's (Maine),1,2022-09-14 +Manhattanville,0,Kean,4,2022-09-14 +Mount Union,5,Penn State-Behrend,4,2022-09-14 +Muskingum,2,Hiram,1,2022-09-14 +UW-Stevens Point,1,Carthage,1,2022-09-14 +Northland,0,UW-Superior,5,2022-09-14 +Texas Lutheran,0,Concordia (Texas),4,2022-09-14 +Dominican,1,Illinois Tech,0,2022-09-14 +Wisconsin Lutheran,3,Marian,4,2022-09-14 +Webster,2,Greenville,5,2022-09-14 +Simpson,1,Augustana,2,2022-09-14 +Chicago,1,Wheaton (Ill.),0,2022-09-14 +MSOE,0,Edgewood,0,2022-09-14 +Lakeland,1,St. Norbert,7,2022-09-14 +Hamline,1,Augsburg,2,2022-09-14 +Lawrence,2,UW-Oshkosh,1,2022-09-14 +Caltech,0,Cal Lutheran,1,2022-09-14 +Redlands,2,Claremont-Mudd-Scripps,1,2022-09-14 +Whittier,1,La Verne,0,2022-09-14 +George Fox,2,Pacific,0,2022-09-14 +Worcester State,2,Salve Regina,3,2022-09-15 +Suffolk,2,Nichols,3,2022-09-15 +Sweet Briar,0,Mary Baldwin,8,2022-09-15 +UW-River Falls,9,Crown,0,2022-09-15 +Mount St. Mary,6,Yeshiva,0,2022-09-15 +Houghton,1,Buffalo State,1,2022-09-15 +Notre Dame (Md.),0,Neumann,1,2022-09-15 +Franklin,3,St. Mary's (Ind.),0,2022-09-15 +Kalamazoo,2,Elmhurst,0,2022-09-15 +Coe,1,Carroll,3,2022-09-15 +Hardin-Simmons,1,Trinity (Texas),2,2022-09-16 +Mary Hardin-Baylor,1,Hendrix,0,2022-09-16 +Sewanee,0,Emory,5,2022-09-16 +Regis (Mass.),5,Norwich,1,2022-09-16 +Catholic,1,Salisbury,2,2022-09-16 +Birmingham-Southern,0,Piedmont,3,2022-09-16 +Agnes Scott,0,Warren Wilson,1,2022-09-16 +St. Vincent,2,La Roche,1,2022-09-16 +Texas-Dallas,0,Cal Lutheran,3,2022-09-16 +Westminster (Mo.),2,Eureka,0,2022-09-16 +Eastern Nazarene,3,Rivier,2,2022-09-16 +Plymouth State,1,Mass-Dartmouth,3,2022-09-16 +Salem,0,LaGrange,1,2022-09-16 +Maryville (Tenn.),0,Berry,1,2022-09-16 +Pratt,0,SUNY-Purchase,1,2022-09-16 +Millsaps,0,Huntingdon,2,2022-09-16 +University of Dallas,0,East Texas Baptist,3,2022-09-16 +Centenary (La.),1,St. Thomas (Texas),2,2022-09-16 +Texas Lutheran,1,Southwestern,2,2022-09-16 +UW-Platteville,2,Nebraska Wesleyan,1,2022-09-16 +Misericordia,4,Moravian,0,2022-09-17 +Johns Hopkins,6,Bryn Mawr,0,2022-09-17 +Christopher Newport,3,Swarthmore,2,2022-09-17 +Wilkes,0,Messiah,1,2022-09-17 +Ohio Northern,1,Case Western Reserve,2,2022-09-17 +Tufts,2,Amherst,0,2022-09-17 +Chicago,0,Calvin,2,2022-09-17 +Loras,4,St. Catherine,3,2022-09-17 +William Smith,0,Rochester,0,2022-09-17 +Wheaton (Ill.),3,UW-La Crosse,4,2022-09-17 +Mary Hardin-Baylor,3,Belhaven,1,2022-09-17 +Virginia Wesleyan,1,Mary Washington,1,2022-09-17 +DeSales,1,Montclair State,3,2022-09-17 +Pacific,1,Pacific Lutheran,3,2022-09-17 +Wartburg,4,UW-Stevens Point,2,2022-09-17 +TCNJ,6,Penn State-Berks,2,2022-09-17 +Linfield,0,Puget Sound,3,2022-09-17 +Washington and Lee,3,Covenant,1,2022-09-17 +Cortland State,1,Plattsburgh State,1,2022-09-17 +Bates,0,Williams,2,2022-09-17 +McDaniel,6,Muhlenberg,1,2022-09-17 +Keene State,2,Elms,0,2022-09-17 +Westfield State,5,Framingham State,0,2022-09-17 +Western New England,1,Curry,1,2022-09-17 +Trinity (Conn.),2,Colby,0,2022-09-17 +Mary Baldwin,3,Eastern Mennonite,2,2022-09-17 +Hamilton,1,Middlebury,4,2022-09-17 +Bowdoin,1,Connecticut College,2,2022-09-17 +Muskingum,4,Bluffton,2,2022-09-17 +MCLA,0,Worcester State,3,2022-09-17 +Dickinson,1,Haverford,1,2022-09-17 +Wentworth,1,Salve Regina,3,2022-09-17 +Denison,0,Centre,2,2022-09-17 +Elizabethtown,0,York (Pa.),2,2022-09-17 +CCNY,1,Sarah Lawrence,5,2022-09-17 +William Paterson,9,Lehman,0,2022-09-17 +Ithaca,2,Nazareth,2,2022-09-17 +Bard,4,SUNY-Maritime,1,2022-09-17 +Roger Williams,0,University of New England,1,2022-09-17 +Illinois College,1,Buena Vista,2,2022-09-17 +Washington U.,1,Rhodes,0,2022-09-17 +Cornell,0,Central,3,2022-09-17 +Wheaton (Mass.),0,Babson,2,2022-09-17 +Morrisville State,7,Gallaudet,0,2022-09-17 +St. Joseph's (Bklyn.),2,Clarks Summit,2,2022-09-17 +Mitchell,3,Brooklyn,0,2022-09-17 +New Paltz State,3,Potsdam State,0,2022-09-17 +Clark,0,MIT,2,2022-09-17 +Bridgewater State,6,Salem State,0,2022-09-17 +Keuka,0,Hartwick,0,2022-09-17 +Western Connecticut,7,Rhode Island College,1,2022-09-17 +Westminster (Pa.),0,Heidelberg,1,2022-09-17 +Drew,0,New York University,1,2022-09-17 +Brockport State,0,RIT,3,2022-09-17 +Alvernia,0,Stockton,1,2022-09-17 +Hanover,3,Capital,0,2022-09-17 +Mount St. Vincent,0,Kean,4,2022-09-17 +Simmons,0,Johnson and Wales,8,2022-09-17 +Stevens,0,Scranton,1,2022-09-17 +Wells,0,St. Mary's (Md.),7,2022-09-17 +Houghton,5,Pitt-Bradford,1,2022-09-17 +Emerson,1,Brandeis,1,2022-09-17 +Mount Holyoke,0,Springfield,6,2022-09-17 +John Jay,1,Cedar Crest,0,2022-09-17 +Farmingdale State,2,Arcadia,2,2022-09-17 +Penn State-Abington,0,Penn State-Harrisburg,6,2022-09-17 +Smith,0,WPI,0,2022-09-17 +Mount Union,4,Chatham,3,2022-09-17 +FDU-Florham,2,Marywood,1,2022-09-17 +Skidmore,5,Mount St. Mary,0,2022-09-17 +Eastern Connecticut,1,Mass-Boston,0,2022-09-17 +Penn College,2,Lancaster Bible,1,2022-09-17 +Hiram,1,Washington and Jefferson,0,2022-09-17 +Carroll,1,Beloit,1,2022-09-17 +Hope,1,North Central (Ill.),3,2022-09-17 +Alverno,0,MSOE,19,2022-09-17 +Wittenberg,0,Trine,2,2022-09-17 +St. Joseph's (Maine),5,Anna Maria,0,2022-09-17 +North Carolina Wesleyan,0,Bridgewater (Va.),14,2022-09-17 +Coast Guard,1,Wellesley,0,2022-09-17 +Vassar,1,Oneonta State,0,2022-09-17 +Lycoming,0,Bethany,0,2022-09-17 +Fredonia State,1,St. John Fisher,1,2022-09-17 +Castleton,0,Southern Maine,4,2022-09-17 +William Peace,7,Hollins,0,2022-09-17 +Gwynedd-Mercy,0,Bryn Athyn,4,2022-09-17 +Oberlin,3,Franciscan,2,2022-09-17 +Eastern,0,Shenandoah,2,2022-09-17 +Randolph-Macon,3,Greensboro,0,2022-09-17 +Lake Forest,2,St. Mary's (Ind.),2,2022-09-17 +Adrian,0,Otterbein,2,2022-09-17 +Franklin,1,Albion,3,2022-09-17 +Elmira,0,Sage,2,2022-09-17 +Spalding,6,Blackburn,0,2022-09-17 +Concordia-Moorhead,0,St. Scholastica,0,2022-09-17 +Gustavus Adolphus,1,Carleton,5,2022-09-17 +Augsburg,4,Macalester,1,2022-09-17 +Saint Mary's (Minn.),0,Saint Benedict,3,2022-09-17 +UW-Eau Claire,0,Simpson,1,2022-09-17 +St. Olaf,0,Hamline,0,2022-09-17 +Greenville,5,Principia,0,2022-09-17 +Caltech,0,Redlands,2,2022-09-17 +Claremont-Mudd-Scripps,1,La Verne,0,2022-09-17 +Grove City,0,Susquehanna,3,2022-09-17 +Cazenovia,0,SUNY Poly,2,2022-09-17 +Cairn,0,Centenary (N.J.),3,2022-09-17 +Mount Aloysius,2,Delaware Valley,6,2022-09-17 +Concordia-Chicago,0,Edgewood,4,2022-09-17 +DePauw,0,UW-Whitewater,4,2022-09-17 +Cabrini,0,Goucher,1,2022-09-17 +Earlham,3,Berea,0,2022-09-17 +Kenyon,2,Transylvania,2,2022-09-17 +Emmanuel,3,St. Joseph (Conn.),0,2022-09-17 +Stevenson,0,Marymount,1,2022-09-17 +Washington College,0,Franklin and Marshall,0,2022-09-17 +Thiel,4,Defiance,0,2022-09-17 +Union,1,Lasell,0,2022-09-17 +Bob Jones,0,Methodist,5,2022-09-17 +Immaculata,1,Rosemont,1,2022-09-17 +RPI,0,St. Lawrence,0,2022-09-17 +UW-Superior,0,UW-River Falls,3,2022-09-17 +Northwestern (Minn.),7,North Central (Minn.),0,2022-09-17 +Martin Luther,0,Bethany Lutheran,1,2022-09-17 +Monmouth,11,Maranatha Baptist,0,2022-09-17 +Lewis and Clark,2,Whitman,0,2022-09-17 +Willamette,0,Whitworth,1,2022-09-17 +SUNY Delhi,0,NVU-Johnson,0,2022-09-17 +Clarkson,1,Oswego State,2,2022-09-17 +Thomas,0,Husson,3,2022-09-17 +NVU-Lyndon,0,Maine Maritime,2,2022-09-17 +SUNY-Cobleskill,0,SUNY Canton,0,2022-09-17 +Maine-Presque Isle,1,Maine-Farmington,3,2022-09-17 +Rockford,1,Marian,5,2022-09-17 +Dominican,6,Lakeland,0,2022-09-17 +Ramapo,4,Neumann,0,2022-09-17 +Massachusetts Maritime,0,Fitchburg State,2,2022-09-17 +Juniata,0,Hood,1,2022-09-17 +Hilbert,0,Geneseo State,7,2022-09-17 +Albertus Magnus,2,Colby-Sawyer,0,2022-09-17 +Ferrum,2,Meredith,0,2022-09-17 +Gettysburg,1,Ursinus,0,2022-09-17 +Rose-Hulman,7,Millikin,1,2022-09-17 +Coe,2,Ripon,2,2022-09-17 +Gordon,0,Endicott,0,2022-09-17 +Nebraska Wesleyan,1,Grinnell,1,2022-09-17 +Illinois Tech,8,Wisconsin Lutheran,0,2022-09-17 +Aurora,0,St. Norbert,4,2022-09-17 +Benedictine,0,Concordia (Wis.),2,2022-09-17 +Rutgers-Camden,1,Albright,0,2022-09-17 +Dubuque,2,UW-Oshkosh,1,2022-09-17 +Penn State-Behrend,2,Allegheny,2,2022-09-17 +Medaille,0,Alfred,2,2022-09-17 +Webster,0,Fontbonne,2,2022-09-17 +Minnesota-Morris,0,Crown,4,2022-09-17 +Carthage,0,Luther,2,2022-09-17 +Asbury,1,Mount St. Joseph,3,2022-09-17 +Roanoke,5,Pfeiffer,0,2022-09-17 +John Carroll,0,Ohio Wesleyan,1,2022-09-17 +Wooster,3,Wilmington,2,2022-09-17 +Augustana,0,Lawrence,1,2022-09-17 +Rutgers-Newark,1,King's,1,2022-09-17 +Baldwin Wallace,3,Waynesburg,1,2022-09-17 +Chapman,1,Whittier,1,2022-09-17 +Pomona-Pitzer,0,Occidental,0,2022-09-17 +Christopher Newport,5,Widener,0,2022-09-18 +Texas-Dallas,0,Trinity (Texas),2,2022-09-18 +Carnegie Mellon,8,Marietta,0,2022-09-18 +Lynchburg,1,Emory,3,2022-09-18 +Linfield,0,Pacific Lutheran,3,2022-09-18 +Macalester,0,Wartburg,6,2022-09-18 +George Fox,3,Puget Sound,0,2022-09-18 +Washington and Lee,2,Berry,1,2022-09-18 +Tufts,0,Williams,1,2022-09-18 +Rivier,0,Dean,0,2022-09-18 +Manhattanville,9,Yeshiva,0,2022-09-18 +Maine-Presque Isle,1,New England College,1,2022-09-18 +Morrisville State,0,St. Mary's (Md.),4,2022-09-18 +Alfred State,0,Buffalo State,2,2022-09-18 +Wells,7,Gallaudet,0,2022-09-18 +Rhodes,1,DePauw,1,2022-09-18 +Monmouth,7,Mount Mary,0,2022-09-18 +Greensboro,1,Averett,0,2022-09-18 +Marymount,5,Notre Dame (Md.),0,2022-09-18 +SUNY-Cobleskill,0,Potsdam State,6,2022-09-18 +Keene State,3,Husson,1,2022-09-18 +Salem,4,Agnes Scott,1,2022-09-18 +Hamilton,4,Utica,1,2022-09-18 +Knox,1,North Central (Ill.),5,2022-09-18 +Hardin-Simmons,1,Cal Lutheran,0,2022-09-18 +Austin,0,University of Dallas,2,2022-09-18 +Maryville (Tenn.),1,Birmingham-Southern,1,2022-09-18 +East Texas Baptist,3,Southwestern,3,2022-09-18 +Clark,0,Trinity (Conn.),1,2022-09-18 +Manchester,0,Wilmington,1,2022-09-18 +Hanover,2,Wittenberg,1,2022-09-18 +Finlandia,0,Ripon,0,2022-09-18 +St. Norbert,0,UW-Stevens Point,3,2022-09-18 +Concordia (Texas),3,St. Thomas (Texas),2,2022-09-18 +Cornell,1,Carleton,5,2022-09-18 +Washington U.,1,UW-Whitewater,1,2022-09-18 +Transylvania,6,Berea,2,2022-09-18 +Illinois College,0,Central,4,2022-09-18 +Lewis and Clark,1,Whitworth,0,2022-09-18 +Willamette,3,Whitman,0,2022-09-18 +Alma,1,Carroll,5,2022-09-18 +Grinnell,2,Buena Vista,0,2022-09-18 +FDU-Florham,8,Pratt,0,2022-09-18 +McMurry,2,Schreiner,1,2022-09-18 +LeTourneau,2,Centenary (La.),1,2022-09-18 +Saint Benedict,1,UW-Stout,0,2022-09-18 +Rowan,0,Bryn Mawr,0,2022-09-19 +Plymouth State,3,NVU-Lyndon,0,2022-09-19 +Penn State-Abington,1,Cairn,2,2022-09-19 +Geneva,1,Pitt-Greensburg,7,2022-09-19 +Asbury,2,Franklin,1,2022-09-19 +Eastern Mennonite,0,Southern Virginia,4,2022-09-19 +Sarah Lawrence,0,Rutgers-Newark,3,2022-09-19 +Illinois Tech,3,North Park,2,2022-09-19 +Lake Forest,5,Elmhurst,0,2022-09-19 +Amherst,4,Emerson,0,2022-09-20 +Wheaton (Ill.),0,Calvin,2,2022-09-20 +Loras,4,Lawrence,0,2022-09-20 +UW-La Crosse,4,St. Scholastica,0,2022-09-20 +TCNJ,1,Stevens,0,2022-09-20 +Miss. U. for Women,0,LaGrange,5,2022-09-20 +Roanoke,7,Mary Baldwin,2,2022-09-20 +Mass-Dartmouth,0,Salve Regina,1,2022-09-20 +Centre,3,Bob Jones,1,2022-09-20 +Pitt-Bradford,1,Juniata,2,2022-09-20 +Maine Maritime,0,Bowdoin,8,2022-09-20 +St. John Fisher,0,Ithaca,5,2022-09-20 +Illinois Wesleyan,0,Albion,0,2022-09-20 +SUNY-Old Westbury,1,Manhattanville,7,2022-09-20 +Penn State-Harrisburg,5,Penn College,0,2022-09-20 +Otterbein,3,Kenyon,0,2022-09-20 +UW-Stout,0,Bethel,2,2022-09-20 +UW-Eau Claire,1,St. Catherine,1,2022-09-20 +SUNY-Purchase,0,St. Joseph's (L.I.),3,2022-09-20 +Trine,0,Ohio Wesleyan,2,2022-09-20 +Nazareth,0,Geneseo State,5,2022-09-20 +Eastern Nazarene,1,MCLA,2,2022-09-20 +Meredith,0,Randolph,4,2022-09-20 +Sage,0,Western Connecticut,1,2022-09-20 +Augustana,2,UW-Platteville,2,2022-09-20 +Cazenovia,0,Houghton,2,2022-09-20 +Eureka,3,Principia,6,2022-09-20 +Vassar,0,Wesleyan,0,2022-09-20 +Brandeis,2,Bridgewater State,0,2022-09-20 +Roger Williams,2,WPI,1,2022-09-20 +Elms,2,Norwich,0,2022-09-20 +Greensboro,0,Guilford,1,2022-09-20 +Maine-Farmington,1,Colby,3,2022-09-20 +Nichols,0,Emmanuel,0,2022-09-20 +Farmingdale State,1,SUNY-Maritime,0,2022-09-20 +Keene State,0,Worcester State,3,2022-09-20 +New England College,2,Fitchburg State,2,2022-09-20 +Scranton,8,Wilkes,0,2022-09-20 +Union,1,Bard,0,2022-09-20 +East Texas Baptist,1,Hendrix,0,2022-09-20 +Mount St. Mary,2,St. Joseph's (Bklyn.),0,2022-09-20 +University of New England,1,Bates,2,2022-09-20 +Johns Hopkins,4,Swarthmore,0,2022-09-21 +Randolph-Macon,0,Christopher Newport,1,2022-09-21 +Messiah,5,Rutgers-Camden,0,2022-09-21 +Penn State-Behrend,0,Case Western Reserve,3,2022-09-21 +RIT,1,William Smith,4,2022-09-21 +Southwestern,0,Mary Hardin-Baylor,2,2022-09-21 +Salisbury,0,Virginia Wesleyan,1,2022-09-21 +Wartburg,1,Augsburg,0,2022-09-21 +Washington and Lee,3,Southern Virginia,0,2022-09-21 +Potsdam State,1,Cortland State,6,2022-09-21 +Trinity (D.C.),0,Keystone,8,2022-09-21 +Carroll,4,UW-Stevens Point,2,2022-09-21 +Delaware Valley,4,Penn State-Abington,1,2022-09-21 +Dean,3,Colby-Sawyer,4,2022-09-21 +Gettysburg,0,McDaniel,2,2022-09-21 +Oberlin,2,Olivet,1,2022-09-21 +Susquehanna,3,Lycoming,0,2022-09-21 +John Carroll,1,Pitt-Greensburg,3,2022-09-21 +Alfred,1,King's,2,2022-09-21 +Washington College,0,Haverford,0,2022-09-21 +Mass-Boston,2,Wheaton (Mass.),0,2022-09-21 +Hood,2,Marymount,0,2022-09-21 +NVU-Lyndon,0,Mitchell,1,2022-09-21 +Hiram,1,Heidelberg,5,2022-09-21 +Plattsburgh State,1,New Paltz State,2,2022-09-21 +Smith,1,Western New England,0,2022-09-21 +Lynchburg,0,Mary Washington,0,2022-09-21 +Brockport State,0,Oswego State,1,2022-09-21 +Ursinus,2,Bryn Mawr,0,2022-09-21 +Eastern,4,Immaculata,0,2022-09-21 +York (Pa.),2,DeSales,2,2022-09-21 +Pratt,4,Brooklyn,1,2022-09-21 +New Jersey City,0,John Jay,0,2022-09-21 +Clarkson,0,Skidmore,1,2022-09-21 +Hope,2,Chicago,1,2022-09-21 +Wells,0,Hilbert,6,2022-09-21 +Piedmont,0,Covenant,0,2022-09-21 +Wellesley,1,Framingham State,0,2022-09-21 +Allegheny,2,Bethany,1,2022-09-21 +SUNY Canton,0,Alfred State,1,2022-09-21 +Muskingum,0,Earlham,0,2022-09-21 +Anna Maria,0,Regis (Mass.),1,2022-09-21 +North Carolina Wesleyan,0,Ferrum,3,2022-09-21 +Ohio Northern,3,Denison,0,2022-09-21 +Lancaster Bible,1,Penn State-Berks,9,2022-09-21 +Coe,1,St. Olaf,3,2022-09-21 +Central,1,Gustavus Adolphus,0,2022-09-21 +Aurora,2,Concordia-Chicago,1,2022-09-21 +Hamline,0,UW-River Falls,0,2022-09-21 +Dominican,1,Benedictine,0,2022-09-21 +Greenville,2,Spalding,0,2022-09-21 +Penn College,1,Penn State-Altoona,1,2022-09-21 +Neumann,1,Cedar Crest,3,2022-09-21 +Franciscan,2,Waynesburg,0,2022-09-21 +Fontbonne,1,Westminster (Mo.),0,2022-09-21 +St. Elizabeth,0,CCNY,10,2022-09-21 +Kean,3,Marywood,1,2022-09-21 +Babson,2,Endicott,0,2022-09-21 +Rhode Island College,2,Massachusetts Maritime,0,2022-09-21 +Rivier,0,Johnson and Wales,12,2022-09-21 +Eastern Connecticut,3,Westfield State,0,2022-09-21 +Rose-Hulman,1,DePauw,1,2022-09-21 +New York University,1,William Paterson,1,2022-09-21 +Lasell,2,Albertus Magnus,1,2022-09-21 +St. Joseph's (Maine),2,Simmons,0,2022-09-21 +Fredonia State,1,Buffalo State,2,2022-09-21 +Transylvania,3,Asbury,2,2022-09-21 +Franklin and Marshall,4,Muhlenberg,0,2022-09-21 +Anderson,2,St. Mary's (Ind.),0,2022-09-21 +Stockton,0,Moravian,1,2022-09-21 +Widener,0,Cabrini,3,2022-09-21 +Keuka,0,Rochester,5,2022-09-21 +Alvernia,4,Goucher,0,2022-09-21 +Gwynedd-Mercy,0,Cairn,0,2022-09-21 +Wooster,2,Mount Union,0,2022-09-21 +Adrian,2,Baldwin Wallace,1,2022-09-21 +St. Mary's (Md.),2,Catholic,2,2022-09-21 +Mount St. Joseph,2,Wilmington,4,2022-09-21 +Shenandoah,4,Stevenson,2,2022-09-21 +Middlebury,1,Castleton,0,2022-09-21 +Trinity (Conn.),0,Connecticut College,0,2022-09-21 +Chatham,1,Grove City,1,2022-09-21 +Suffolk,1,Lesley,2,2022-09-21 +Sewanee,4,Huntingdon,1,2022-09-21 +Chapman,1,Claremont-Mudd-Scripps,1,2022-09-21 +La Verne,0,Pomona-Pitzer,3,2022-09-21 +Arcadia,0,Dickinson,3,2022-09-21 +St. Vincent,0,Westminster (Pa.),3,2022-09-21 +FDU-Florham,2,Rutgers-Newark,0,2022-09-21 +Oglethorpe,5,Wesleyan (Ga.),0,2022-09-21 +Thiel,0,Washington and Jefferson,3,2022-09-21 +Saint Mary's (Minn.),1,Luther,2,2022-09-21 +Ripon,0,North Park,4,2022-09-21 +UW-Whitewater,2,Carthage,1,2022-09-21 +MSOE,3,Lakeland,0,2022-09-21 +North Central (Ill.),5,UW-Oshkosh,0,2022-09-21 +Lake Forest,1,Dubuque,1,2022-09-21 +St. Norbert,1,Marian,0,2022-09-21 +Concordia (Wis.),4,Wisconsin Lutheran,0,2022-09-21 +Alverno,0,Illinois Tech,28,2022-09-21 +Cal Lutheran,0,Whittier,0,2022-09-21 +Redlands,2,Occidental,1,2022-09-21 +Farmingdale State,0,Montclair State,1,2022-09-22 +Puget Sound,1,Pacific Lutheran,0,2022-09-22 +Minnesota-Morris,7,North Central (Minn.),4,2022-09-22 +Wilson,0,Mount Aloysius,1,2022-09-22 +Elmira,4,Pitt-Bradford,0,2022-09-22 +Emmanuel,2,Mount Holyoke,1,2022-09-22 +UW-Platteville,5,Cornell,0,2022-09-22 +Crown,2,Northwestern (Minn.),2,2022-09-22 +Belhaven,0,Maryville (Tenn.),2,2022-09-22 +Eastern Nazarene,0,Salem State,5,2022-09-22 +Roger Williams,1,Brandeis,3,2022-09-22 +Worcester State,0,Curry,1,2022-09-22 +St. Joseph's (Bklyn.),9,Yeshiva,0,2022-09-22 +McMurry,0,Texas-Dallas,2,2022-09-22 +Howard Payne,0,Hardin-Simmons,4,2022-09-22 +Rockford,0,Edgewood,1,2022-09-22 +Bethel,0,UW-Eau Claire,2,2022-09-22 +St. Thomas (Texas),0,Trinity (Texas),2,2022-09-23 +Baldwin Wallace,0,Carnegie Mellon,5,2022-09-23 +Emory,5,Maryville (Tenn.),1,2022-09-23 +Millsaps,0,Rhodes,2,2022-09-23 +Centenary (La.),0,Schreiner,2,2022-09-23 +Northland,2,Martin Luther,3,2022-09-23 +UW-Superior,3,Bethany Lutheran,2,2022-09-23 +Mass-Dartmouth,0,Connecticut College,5,2022-09-23 +Geneva,2,Thiel,1,2022-09-23 +Westfield State,6,MCLA,0,2022-09-23 +Keene State,1,Western Connecticut,3,2022-09-23 +University of Dallas,0,Texas Lutheran,4,2022-09-23 +Lesley,4,New England College,0,2022-09-23 +St. Joseph's (L.I.),2,SUNY-Old Westbury,0,2022-09-23 +Marietta,4,Hiram,1,2022-09-23 +SUNY-Purchase,2,SUNY-Maritime,3,2022-09-23 +Alma,1,Otterbein,3,2022-09-23 +Washington U.,0,Wheaton (Ill.),0,2022-09-23 +Austin,0,Southwestern,6,2022-09-23 +Messiah,1,Misericordia,1,2022-09-24 +Haverford,0,Johns Hopkins,3,2022-09-24 +Stevens,0,Christopher Newport,1,2022-09-24 +Case Western Reserve,5,Muskingum,1,2022-09-24 +Amherst,2,Bates,0,2022-09-24 +Calvin,3,Anderson,0,2022-09-24 +Nebraska Wesleyan,0,Loras,6,2022-09-24 +William Smith,1,Skidmore,1,2022-09-24 +Rowan,4,Kean,0,2022-09-24 +Virginia Wesleyan,3,Averett,0,2022-09-24 +Montclair State,3,New Jersey City,0,2022-09-24 +Wartburg,8,Buena Vista,0,2022-09-24 +TCNJ,6,Ramapo,0,2022-09-24 +Puget Sound,1,Lewis and Clark,0,2022-09-24 +Washington and Lee,4,Shenandoah,1,2022-09-24 +Tufts,1,Hamilton,1,2022-09-24 +Oswego State,0,Cortland State,4,2022-09-24 +Williams,2,Colby,1,2022-09-24 +Belhaven,1,Piedmont,0,2022-09-24 +Anna Maria,4,Rivier,0,2022-09-24 +Wesleyan,0,Trinity (Conn.),1,2022-09-24 +Rochester,0,York (Pa.),1,2022-09-24 +Albertus Magnus,1,Elms,1,2022-09-24 +Fitchburg State,3,Worcester State,1,2022-09-24 +Framingham State,1,Bridgewater State,2,2022-09-24 +Hollins,2,Sweet Briar,3,2022-09-24 +Mass-Boston,0,Plymouth State,1,2022-09-24 +McDaniel,2,Bryn Mawr,0,2022-09-24 +Endicott,0,Suffolk,0,2022-09-24 +Rutgers-Newark,4,Stockton,1,2022-09-24 +St. Mary's (Md.),2,Lancaster Bible,1,2022-09-24 +Curry,2,Wentworth,1,2022-09-24 +Babson,3,Coast Guard,0,2022-09-24 +Washington and Jefferson,0,St. Vincent,0,2022-09-24 +Wellesley,0,Springfield,1,2022-09-24 +Hartwick,0,St. John Fisher,1,2022-09-24 +Middlebury,1,Bowdoin,3,2022-09-24 +Mount St. Vincent,0,Sarah Lawrence,2,2022-09-24 +Eureka,1,Spalding,5,2022-09-24 +John Jay,6,Mitchell,0,2022-09-24 +Buffalo State,1,Oneonta State,1,2022-09-24 +Denison,2,Trine,2,2022-09-24 +Asbury,5,Defiance,0,2022-09-24 +Wilmington,1,Franklin,0,2022-09-24 +Neumann,4,Rosemont,0,2022-09-24 +MIT,5,Mount Holyoke,0,2022-09-24 +Norwich,0,St. Joseph's (Maine),4,2022-09-24 +Oglethorpe,0,Centre,3,2022-09-24 +Southern Virginia,0,Methodist,1,2022-09-24 +Ferrum,0,Bridgewater (Va.),7,2022-09-24 +Rutgers-Camden,4,William Paterson,1,2022-09-24 +Lynchburg,6,Randolph,0,2022-09-24 +Albright,0,King's,1,2022-09-24 +Penn State-Berks,11,Wells,0,2022-09-24 +Southern Maine,1,Eastern Connecticut,0,2022-09-24 +Mount St. Mary,1,Manhattanville,1,2022-09-24 +Kenyon,2,Hanover,2,2022-09-24 +Gallaudet,0,Penn College,10,2022-09-24 +WPI,0,Emerson,4,2022-09-24 +Fredonia State,0,New Paltz State,3,2022-09-24 +Cabrini,0,Lebanon Valley,2,2022-09-24 +Geneseo State,1,Plattsburgh State,0,2022-09-24 +Brockport State,1,Potsdam State,0,2022-09-24 +Mount Union,1,Wittenberg,1,2022-09-24 +Wheaton (Mass.),3,Smith,1,2022-09-24 +Wesleyan (Ga.),0,Berea,2,2022-09-24 +Nazareth,1,Keuka,1,2022-09-24 +St. Joseph (Conn.),4,Simmons,1,2022-09-24 +DeSales,3,Salisbury,2,2022-09-24 +Marymount,1,Eastern,1,2022-09-24 +New York University,12,Centenary (N.J.),0,2022-09-24 +Marywood,3,Alvernia,2,2022-09-24 +St. Elizabeth,1,Cairn,3,2022-09-24 +Houghton,4,Elmira,0,2022-09-24 +Vassar,1,RIT,0,2022-09-24 +Wilkes,1,Hood,1,2022-09-24 +Grove City,1,Franciscan,6,2022-09-24 +Waynesburg,3,Chatham,3,2022-09-24 +Penn State-Abington,2,Morrisville State,1,2022-09-24 +Birmingham-Southern,0,Hendrix,2,2022-09-24 +Johnson and Wales,2,Regis (Mass.),0,2022-09-24 +SUNY Canton,0,NVU-Lyndon,1,2022-09-24 +Delaware Valley,1,Immaculata,2,2022-09-24 +DePauw,0,Ohio Northern,2,2022-09-24 +Alfred,0,Sage,1,2022-09-24 +Nichols,0,Western New England,3,2022-09-24 +Brevard,1,North Carolina Wesleyan,3,2022-09-24 +Earlham,2,Heidelberg,4,2022-09-24 +Keystone,0,Cedar Crest,2,2022-09-24 +Valley Forge,0,Notre Dame (Md.),8,2022-09-24 +Ithaca,2,Clarkson,0,2022-09-24 +Crown,2,North Central (Minn.),0,2022-09-24 +St. Olaf,1,Macalester,2,2022-09-24 +Augsburg,2,St. Scholastica,1,2022-09-24 +Westminster (Mo.),1,Webster,1,2022-09-24 +Greenville,0,Fontbonne,2,2022-09-24 +Coe,1,Simpson,4,2022-09-24 +Saint Benedict,4,Gustavus Adolphus,0,2022-09-24 +St. Catherine,1,Saint Mary's (Minn.),1,2022-09-24 +Carleton,3,Concordia-Moorhead,1,2022-09-24 +Principia,5,Blackburn,0,2022-09-24 +Bethel,2,Hamline,1,2022-09-24 +Pomona-Pitzer,1,Caltech,0,2022-09-24 +La Verne,2,Chapman,1,2022-09-24 +UC Santa Cruz,1,Whittier,2,2022-09-24 +Lasell,3,Colby-Sawyer,0,2022-09-24 +Eastern Mennonite,0,Roanoke,4,2022-09-24 +Grinnell,4,Illinois College,2,2022-09-24 +Beloit,3,Ripon,0,2022-09-24 +Pfeiffer,0,Mary Baldwin,2,2022-09-24 +Stevenson,0,FDU-Florham,3,2022-09-24 +Gordon,0,Roger Williams,4,2022-09-24 +Alfred State,2,Gwynedd-Mercy,0,2022-09-24 +Union,0,St. Lawrence,1,2022-09-24 +RPI,3,Bard,0,2022-09-24 +Westminster (Pa.),2,Allegheny,1,2022-09-24 +UW-Superior,3,Martin Luther,0,2022-09-24 +Northland,0,Bethany Lutheran,2,2022-09-24 +Marian,0,Benedictine,0,2022-09-24 +UW-Platteville,0,Central,2,2022-09-24 +Willamette,3,Linfield,0,2022-09-24 +Whitworth,1,George Fox,1,2022-09-24 +Whitman,3,Pacific,1,2022-09-24 +SUNY Poly,1,Thomas,1,2022-09-24 +Ursinus,0,Dickinson,3,2022-09-24 +SUNY-Cobleskill,0,Maine-Presque Isle,3,2022-09-24 +Dean,0,Emmanuel,1,2022-09-24 +SUNY Delhi,0,Husson,6,2022-09-24 +Cazenovia,2,Maine Maritime,1,2022-09-24 +NVU-Johnson,1,Maine-Farmington,1,2022-09-24 +Berry,1,Sewanee,0,2022-09-24 +MSOE,4,Rockford,0,2022-09-24 +Wisconsin Lutheran,1,Dominican,9,2022-09-24 +Bethany,2,Bluffton,1,2022-09-24 +University of New England,1,Salve Regina,1,2022-09-24 +Clarks Summit,1,Wilson,3,2022-09-24 +Elizabethtown,0,Susquehanna,1,2022-09-24 +Swarthmore,2,Gettysburg,1,2022-09-24 +Scranton,2,Catholic,0,2022-09-24 +Salem State,1,Massachusetts Maritime,0,2022-09-24 +Drew,1,Goucher,0,2022-09-24 +Moravian,1,Juniata,0,2022-09-24 +Randolph-Macon,3,Guilford,0,2022-09-24 +Medaille,0,Utica,6,2022-09-24 +Knox,0,Chicago,5,2022-09-24 +St. Norbert,1,Concordia-Chicago,0,2022-09-24 +Rhode Island College,0,Castleton,1,2022-09-24 +Lake Forest,1,Lawrence,0,2022-09-24 +Lakeland,0,Aurora,2,2022-09-24 +Lycoming,0,Widener,2,2022-09-24 +LaGrange,1,Covenant,1,2022-09-24 +Washington U.,0,Rose-Hulman,0,2022-09-24 +Howard Payne,0,East Texas Baptist,2,2022-09-24 +Minnesota-Morris,0,Northwestern (Minn.),0,2022-09-24 +Millikin,0,Carroll,5,2022-09-24 +North Park,1,Augustana,1,2022-09-24 +Illinois Wesleyan,4,Carthage,0,2022-09-24 +North Central (Ill.),6,Elmhurst,1,2022-09-24 +Dubuque,1,Luther,1,2022-09-24 +Franklin and Marshall,1,Penn State-Harrisburg,0,2022-09-24 +Albion,0,Mount St. Joseph,1,2022-09-24 +Hope,0,Capital,1,2022-09-24 +Muhlenberg,1,Washington College,2,2022-09-24 +Concordia (Wis.),2,Illinois Tech,2,2022-09-24 +Claremont-Mudd-Scripps,1,Occidental,1,2022-09-24 +Redlands,0,Cal Lutheran,2,2022-09-24 +Centenary (La.),0,Trinity (Texas),3,2022-09-25 +Amherst,2,Colby,0,2022-09-25 +Penn State-Behrend,0,Carnegie Mellon,2,2022-09-25 +St. Norbert,0,UW-La Crosse,4,2022-09-25 +Pacific Lutheran,4,Willamette,1,2022-09-25 +Williams,1,Bowdoin,0,2022-09-25 +Wesleyan,1,Hamilton,1,2022-09-25 +Middlebury,2,Bates,0,2022-09-25 +Mount Mary,2,Defiance,3,2022-09-25 +Gwynedd-Mercy,0,Penn College,9,2022-09-25 +Ohio Wesleyan,0,Mount St. Joseph,0,2022-09-25 +Austin,0,Texas Lutheran,3,2022-09-25 +SUNY Canton,1,Maine-Farmington,2,2022-09-25 +Wooster,1,John Carroll,3,2022-09-25 +Maryville (Tenn.),10,Agnes Scott,0,2022-09-25 +Johnson and Wales,2,Connecticut College,0,2022-09-25 +Wittenberg,0,Centre,4,2022-09-25 +University of Dallas,1,Southwestern,1,2022-09-25 +UW-Whitewater,0,MSOE,3,2022-09-25 +St. Thomas (Texas),0,Schreiner,0,2022-09-25 +George Fox,6,Whitman,1,2022-09-25 +SUNY-Cobleskill,0,Husson,7,2022-09-25 +SUNY Delhi,1,Maine-Presque Isle,2,2022-09-25 +Cazenovia,3,Thomas,4,2022-09-25 +Piedmont,2,Warren Wilson,1,2022-09-25 +Manchester,0,Aurora,2,2022-09-25 +Macalester,2,UW-Stout,0,2022-09-25 +Cornell,0,UW-River Falls,2,2022-09-25 +Lewis and Clark,3,Linfield,3,2022-09-25 +Whitworth,0,Pacific,1,2022-09-25 +SUNY Poly,0,Maine Maritime,1,2022-09-25 +Benedictine,3,Monmouth,0,2022-09-25 +UC Santa Cruz,1,La Verne,0,2022-09-26 +Hood,0,Mary Washington,1,2022-09-26 +Medaille,1,Alfred State,1,2022-09-26 +Brooklyn,0,SUNY-Purchase,2,2022-09-26 +Framingham State,0,Clark,5,2022-09-26 +Sarah Lawrence,0,New York University,4,2022-09-26 +Mass-Boston,0,WPI,1,2022-09-26 +Dominican,1,North Park,0,2022-09-26 +Saint Benedict,7,Northwestern (Minn.),1,2022-09-26 +Denison,1,Case Western Reserve,3,2022-09-27 +Tufts,2,MIT,0,2022-09-27 +Crown,1,Minnesota-Morris,2,2022-09-27 +Sage,1,Nichols,3,2022-09-27 +Kalamazoo,2,Alma,3,2022-09-27 +Goucher,1,Neumann,0,2022-09-27 +Houghton,0,Rochester,5,2022-09-27 +Waynesburg,0,St. Vincent,0,2022-09-27 +Gordon,2,Salem State,1,2022-09-27 +Brevard,8,Berea,0,2022-09-27 +Keuka,0,Oswego State,3,2022-09-27 +Immaculata,0,Haverford,5,2022-09-27 +Keystone,3,St. Elizabeth,3,2022-09-27 +RIT,0,Nazareth,0,2022-09-27 +Bob Jones,1,Oglethorpe,0,2022-09-27 +Wheaton (Ill.),2,UW-Stevens Point,3,2022-09-27 +UW-River Falls,5,Martin Luther,0,2022-09-27 +Webster,10,Eureka,0,2022-09-27 +Cabrini,2,Lancaster Bible,0,2022-09-27 +St. Scholastica,1,St. Olaf,4,2022-09-27 +Macalester,2,Bethel,2,2022-09-27 +Gustavus Adolphus,0,Saint Mary's (Minn.),1,2022-09-27 +Hamline,1,St. Catherine,0,2022-09-27 +Augustana,7,Illinois College,1,2022-09-27 +Centre,4,Asbury,0,2022-09-27 +Meredith,0,Methodist,2,2022-09-27 +Coast Guard,1,Trinity (Conn.),1,2022-09-27 +Castleton,0,Emerson,1,2022-09-27 +LaGrange,0,Birmingham-Southern,3,2022-09-27 +Hiram,0,Otterbein,4,2022-09-27 +Marietta,0,Ohio Wesleyan,4,2022-09-27 +Lesley,0,Brandeis,3,2022-09-27 +Penn State-Harrisburg,1,Elizabethtown,3,2022-09-27 +Wilmington,0,DePauw,2,2022-09-27 +Utica,1,RPI,2,2022-09-27 +Albright,0,Delaware Valley,2,2022-09-27 +FDU-Florham,1,Drew,0,2022-09-27 +Chicago,7,Elmhurst,0,2022-09-27 +Carleton,3,Augsburg,0,2022-09-27 +UW-Platteville,1,Dubuque,0,2022-09-27 +Misericordia,1,Scranton,0,2022-09-28 +Shenandoah,0,Johns Hopkins,2,2022-09-28 +Christopher Newport,2,Roanoke,1,2022-09-28 +Dickinson,0,Messiah,1,2022-09-28 +Calvin,2,Olivet,0,2022-09-28 +UW-Whitewater,2,Loras,2,2022-09-28 +William Smith,3,Ithaca,0,2022-09-28 +Wartburg,1,UW-La Crosse,1,2022-09-28 +New Jersey City,0,Rowan,4,2022-09-28 +Stockton,0,Montclair State,4,2022-09-28 +Kean,0,TCNJ,5,2022-09-28 +Hartwick,0,Cortland State,4,2022-09-28 +Williams,1,Springfield,1,2022-09-28 +Valley Forge,0,Wilson,13,2022-09-28 +Fontbonne,9,Blackburn,0,2022-09-28 +Cedar Crest,6,Clarks Summit,1,2022-09-28 +Piedmont,6,Agnes Scott,0,2022-09-28 +Colby-Sawyer,2,St. Joseph (Conn.),1,2022-09-28 +Rockford,0,Dominican,4,2022-09-28 +Elmira,4,Hilbert,0,2022-09-28 +Transylvania,3,Bluffton,0,2022-09-28 +Johnson and Wales,5,Dean,0,2022-09-28 +Pratt,3,Centenary (N.J.),7,2022-09-28 +Norwich,0,Lasell,5,2022-09-28 +Bridgewater (Va.),0,Mary Washington,1,2022-09-28 +Mount Holyoke,0,Western New England,4,2022-09-28 +Endicott,2,Wheaton (Mass.),2,2022-09-28 +Hope,1,Adrian,0,2022-09-28 +Catholic,0,McDaniel,2,2022-09-28 +Bob Jones,0,Eastern Mennonite,0,2022-09-28 +Westfield State,4,Smith,2,2022-09-28 +Averett,0,Mary Baldwin,2,2022-09-28 +Buffalo State,0,Brockport State,1,2022-09-28 +Curry,0,Wellesley,3,2022-09-28 +Wentworth,4,Fitchburg State,2,2022-09-28 +Potsdam State,2,Plattsburgh State,1,2022-09-28 +Muhlenberg,0,DeSales,3,2022-09-28 +Moravian,1,Eastern,0,2022-09-28 +Rivier,0,Regis (Mass.),9,2022-09-28 +Trine,2,St. Mary's (Ind.),0,2022-09-28 +Penn State-Abington,0,Stevenson,2,2022-09-28 +Husson,1,University of New England,4,2022-09-28 +New Paltz State,4,Oneonta State,0,2022-09-28 +Bard,0,Vassar,7,2022-09-28 +Franklin,0,Anderson,2,2022-09-28 +Defiance,0,Manchester,7,2022-09-28 +Anna Maria,1,Albertus Magnus,4,2022-09-28 +Baldwin Wallace,1,Wooster,3,2022-09-28 +Arcadia,1,Penn State-Berks,0,2022-09-28 +Westminster (Pa.),2,Grove City,1,2022-09-28 +John Carroll,2,Penn State-Behrend,1,2022-09-28 +Earlham,0,Hanover,9,2022-09-28 +Lakeland,0,Concordia-Chicago,5,2022-09-28 +Aurora,10,Alverno,1,2022-09-28 +St. Norbert,2,Concordia (Wis.),4,2022-09-28 +Knox,0,Grinnell,0,2022-09-28 +Ripon,0,Lake Forest,3,2022-09-28 +Lycoming,3,Alfred State,1,2022-09-28 +Stevens,0,Widener,2,2022-09-28 +Plymouth State,1,Keene State,4,2022-09-28 +Alfred,3,Penn State-Altoona,1,2022-09-28 +Eastern Connecticut,1,Western Connecticut,2,2022-09-28 +Notre Dame (Md.),0,Rosemont,3,2022-09-28 +Chatham,2,Washington and Jefferson,1,2022-09-28 +Hendrix,3,Belhaven,2,2022-09-28 +Mount St. Vincent,7,SUNY-Purchase,0,2022-09-28 +Pitt-Bradford,0,Medaille,3,2022-09-28 +UW-Oshkosh,2,Carroll,0,2022-09-28 +Marymount,6,Gallaudet,0,2022-09-28 +SUNY-Old Westbury,9,Brooklyn,1,2022-09-28 +Morrisville State,1,SUNY Canton,0,2022-09-28 +Fredonia State,0,Geneseo State,1,2022-09-28 +Susquehanna,1,York (Pa.),0,2022-09-28 +Mount Aloysius,1,Allegheny,5,2022-09-28 +Bridgewater State,5,Roger Williams,4,2022-09-28 +Rhode Island College,2,Mass-Dartmouth,1,2022-09-28 +Bethany,4,Geneva,1,2022-09-28 +Lebanon Valley,0,Gettysburg,2,2022-09-28 +Penn College,0,Juniata,1,2022-09-28 +Kenyon,1,Muskingum,0,2022-09-28 +Elms,2,Simmons,0,2022-09-28 +St. Joseph's (Maine),0,Emmanuel,1,2022-09-28 +St. Joseph's (L.I.),7,SUNY-Maritime,1,2022-09-28 +Salisbury,2,St. Mary's (Md.),0,2022-09-28 +Farmingdale State,6,St. Joseph's (Bklyn.),1,2022-09-28 +Capital,1,Wittenberg,1,2022-09-28 +Salve Regina,0,Clark,3,2022-09-28 +Ramapo,0,Rutgers-Camden,3,2022-09-28 +Wilkes,1,Marywood,3,2022-09-28 +Cairn,1,Bryn Athyn,5,2022-09-28 +Mount St. Joseph,0,Rose-Hulman,0,2022-09-28 +Thiel,1,Franciscan,5,2022-09-28 +Sarah Lawrence,2,Mount St. Mary,0,2022-09-28 +Washington U.,2,Webster,0,2022-09-28 +Occidental,0,Caltech,1,2022-09-28 +Redlands,1,Pomona-Pitzer,4,2022-09-28 +Mass-Boston,0,Southern Maine,4,2022-09-28 +Massachusetts Maritime,3,Eastern Nazarene,0,2022-09-28 +King's,0,Ursinus,3,2022-09-28 +William Paterson,0,Rutgers-Newark,1,2022-09-28 +Millikin,0,Illinois Wesleyan,6,2022-09-28 +Marian,0,MSOE,3,2022-09-28 +Westminster (Mo.),1,Greenville,1,2022-09-28 +Illinois Tech,4,Benedictine,0,2022-09-28 +Luther,0,UW-Stout,0,2022-09-28 +Concordia-Moorhead,1,UW-Eau Claire,3,2022-09-28 +Edgewood,4,Wisconsin Lutheran,1,2022-09-28 +Chapman,1,Cal Lutheran,4,2022-09-28 +Lewis and Clark,3,Willamette,2,2022-09-28 +Whittier,0,Claremont-Mudd-Scripps,2,2022-09-28 +Mary Hardin-Baylor,4,LeTourneau,0,2022-09-29 +Brevard,0,Meredith,0,2022-09-29 +Texas-Dallas,3,Sul Ross State,1,2022-09-29 +Mount Mary,1,Maranatha Baptist,5,2022-09-29 +University of the Ozarks,1,Howard Payne,2,2022-09-29 +Delaware Valley,4,Gwynedd-Mercy,0,2022-09-29 +Methodist,9,Salem,0,2022-09-29 +Pfeiffer,0,Greensboro,4,2022-09-29 +Covenant,4,Wesleyan (Ga.),0,2022-09-29 +Concordia (Texas),1,East Texas Baptist,0,2022-09-29 +Martin Luther,0,Northwestern (Minn.),5,2022-09-29 +North Central (Minn.),0,Bethany Lutheran,4,2022-09-29 +Cabrini,1,Alvernia,0,2022-09-29 +Southern Virginia,0,Randolph-Macon,1,2022-09-29 +Spalding,3,Principia,1,2022-09-29 +Trinity (Texas),8,Austin,0,2022-09-30 +Maryville (Tenn.),2,Huntingdon,2,2022-09-30 +UW-Superior,6,Crown,0,2022-09-30 +Northland,0,Minnesota-Morris,0,2022-09-30 +Western New England,1,Endicott,2,2022-09-30 +Sweet Briar,0,Randolph-Macon,8,2022-09-30 +Keystone,9,Valley Forge,0,2022-09-30 +Franciscan,2,Bethany,2,2022-09-30 +Centre,1,Berry,2,2022-09-30 +Berea,0,Belhaven,3,2022-09-30 +Schreiner,0,University of Dallas,0,2022-09-30 +Texas Lutheran,2,Centenary (La.),0,2022-09-30 +Southwestern,5,St. Thomas (Texas),1,2022-09-30 +Arcadia,0,Misericordia,5,2022-10-01 +Salisbury,0,Messiah,7,2022-10-01 +Brandeis,1,Case Western Reserve,2,2022-10-01 +Amherst,0,Williams,1,2022-10-01 +New York University,2,Carnegie Mellon,2,2022-10-01 +Alma,0,Calvin,6,2022-10-01 +Bard,0,William Smith,5,2022-10-01 +UW-Stevens Point,0,UW-La Crosse,1,2022-10-01 +Mary Hardin-Baylor,2,East Texas Baptist,0,2022-10-01 +Washington U.,0,Emory,3,2022-10-01 +Eastern Mennonite,0,Virginia Wesleyan,3,2022-10-01 +Montclair State,3,Ramapo,1,2022-10-01 +Pacific Lutheran,4,Whitman,2,2022-10-01 +Simpson,0,Wartburg,1,2022-10-01 +William Paterson,1,TCNJ,6,2022-10-01 +Puget Sound,2,Whitworth,1,2022-10-01 +Mary Washington,0,Washington and Lee,0,2022-10-01 +Colby,1,Tufts,3,2022-10-01 +Cortland State,1,Fredonia State,0,2022-10-01 +RPI,0,Skidmore,1,2022-10-01 +Dean,1,Anna Maria,1,2022-10-01 +Hendrix,1,Millsaps,0,2022-10-01 +Middlebury,0,Wesleyan,1,2022-10-01 +Trinity (Conn.),1,Bates,1,2022-10-01 +Albion,0,Kalamazoo,1,2022-10-01 +Swarthmore,1,McDaniel,1,2022-10-01 +Worcester State,2,Westfield State,3,2022-10-01 +Plymouth State,1,Rhode Island College,1,2022-10-01 +Hilbert,0,Pitt-Greensburg,7,2022-10-01 +King's,1,Stevens,5,2022-10-01 +Keene State,0,Eastern Connecticut,2,2022-10-01 +Bridgewater State,1,Fitchburg State,1,2022-10-01 +Widener,1,York (Pa.),1,2022-10-01 +Olivet,0,Adrian,4,2022-10-01 +Massachusetts Maritime,1,MCLA,1,2022-10-01 +Elmira,0,Nazareth,8,2022-10-01 +Delaware Valley,0,Lycoming,2,2022-10-01 +Agnes Scott,0,LaGrange,4,2022-10-01 +Benedictine,3,Lakeland,1,2022-10-01 +Western Connecticut,3,Castleton,0,2022-10-01 +Hamilton,0,Connecticut College,3,2022-10-01 +Transylvania,2,Anderson,3,2022-10-01 +Springfield,2,Coast Guard,0,2022-10-01 +New Paltz State,3,Buffalo State,1,2022-10-01 +Framingham State,3,Salem State,2,2022-10-01 +Albertus Magnus,1,Simmons,0,2022-10-01 +MIT,4,Wheaton (Mass.),0,2022-10-01 +Penn College,3,St. Mary's (Md.),2,2022-10-01 +Wells,1,Penn State-Abington,5,2022-10-01 +Emerson,2,Mount Holyoke,0,2022-10-01 +Manhattanville,2,Mount St. Vincent,3,2022-10-01 +Plattsburgh State,2,Brockport State,0,2022-10-01 +Eastern,1,Stevenson,1,2022-10-01 +Potsdam State,0,Oswego State,3,2022-10-01 +Hanover,8,Manchester,0,2022-10-01 +WPI,0,Clark,1,2022-10-01 +Mass-Dartmouth,2,Southern Maine,6,2022-10-01 +Mount Union,1,Ohio Northern,3,2022-10-01 +Rose-Hulman,7,Defiance,0,2022-10-01 +Muskingum,0,Heidelberg,3,2022-10-01 +Penn State-Harrisburg,0,Penn State-Berks,0,2022-10-01 +Bluffton,1,Franklin,0,2022-10-01 +Cedar Crest,0,Wilson,0,2022-10-01 +Neumann,2,Marymount,0,2022-10-01 +Salve Regina,0,Gordon,3,2022-10-01 +New Jersey City,1,Rutgers-Camden,3,2022-10-01 +Wellesley,1,Smith,3,2022-10-01 +Colby-Sawyer,1,Regis (Mass.),5,2022-10-01 +Bryn Athyn,7,Clarks Summit,0,2022-10-01 +Mount St. Joseph,5,Earlham,0,2022-10-01 +DeSales,3,Wilkes,0,2022-10-01 +Allegheny,0,Washington and Jefferson,1,2022-10-01 +Lancaster Bible,4,Morrisville State,0,2022-10-01 +DePauw,4,Asbury,0,2022-10-01 +University of the Ozarks,2,Sul Ross State,2,2022-10-01 +Mitchell,6,York (N.Y.),1,2022-10-01 +Johnson and Wales,3,St. Joseph's (Maine),0,2022-10-01 +Lasell,2,Elms,2,2022-10-01 +Vassar,0,Union,1,2022-10-01 +Medaille,0,Hartwick,8,2022-10-01 +Clarkson,0,RIT,0,2022-10-01 +Sarah Lawrence,3,SUNY-Old Westbury,1,2022-10-01 +Baldwin Wallace,0,Marietta,1,2022-10-01 +Principia,0,Webster,5,2022-10-01 +North Park,0,Millikin,1,2022-10-01 +Wheaton (Ill.),0,Illinois Wesleyan,5,2022-10-01 +Concordia (Texas),3,LeTourneau,1,2022-10-01 +Martin Luther,4,North Central (Minn.),1,2022-10-01 +Saint Benedict,5,Augsburg,1,2022-10-01 +St. Olaf,1,Carleton,3,2022-10-01 +Finlandia,1,Maranatha Baptist,0,2022-10-01 +Eureka,0,Fontbonne,6,2022-10-01 +Saint Mary's (Minn.),2,Concordia-Moorhead,1,2022-10-01 +St. Catherine,3,Gustavus Adolphus,0,2022-10-01 +Bethel,1,St. Scholastica,1,2022-10-01 +Rhodes,2,Birmingham-Southern,0,2022-10-01 +Hamline,1,Macalester,2,2022-10-01 +Buena Vista,1,Luther,4,2022-10-01 +Caltech,0,Claremont-Mudd-Scripps,2,2022-10-01 +Cal Lutheran,0,Pomona-Pitzer,3,2022-10-01 +Linfield,1,George Fox,1,2022-10-01 +Waynesburg,5,Thiel,1,2022-10-01 +Chatham,0,Westminster (Pa.),3,2022-10-01 +Illinois College,2,Lawrence,3,2022-10-01 +Knox,0,Beloit,1,2022-10-01 +Monmouth,0,Lake Forest,3,2022-10-01 +Cornell,3,Ripon,0,2022-10-01 +Aurora,0,Edgewood,2,2022-10-01 +Bowdoin,2,Babson,0,2022-10-01 +Oneonta State,1,Geneseo State,3,2022-10-01 +Sage,2,Keuka,0,2022-10-01 +Kean,0,Stockton,0,2022-10-01 +Dickinson,1,Franklin and Marshall,0,2022-10-01 +Roger Williams,2,Suffolk,1,2022-10-01 +Lehman,0,CCNY,9,2022-10-01 +St. Lawrence,0,Ithaca,1,2022-10-01 +Texas-Dallas,2,Howard Payne,0,2022-10-01 +Northland,0,Crown,0,2022-10-01 +Bethany Lutheran,1,Northwestern (Minn.),2,2022-10-01 +UW-Superior,2,Minnesota-Morris,0,2022-10-01 +Pacific,2,Willamette,1,2022-10-01 +Maine-Presque Isle,1,Husson,1,2022-10-01 +NVU-Johnson,0,SUNY Canton,0,2022-10-01 +Maine-Farmington,3,NVU-Lyndon,1,2022-10-01 +Cazenovia,0,SUNY Delhi,4,2022-10-01 +Maine Maritime,2,Thomas,0,2022-10-01 +Curry,0,University of New England,4,2022-10-01 +SUNY Poly,2,SUNY-Cobleskill,0,2022-10-01 +St. Joseph (Conn.),4,Rivier,1,2022-10-01 +St. John Fisher,2,Houghton,0,2022-10-01 +Bridgewater (Va.),3,Guilford,0,2022-10-01 +Cabrini,1,FDU-Florham,0,2022-10-01 +Susquehanna,2,Moravian,0,2022-10-01 +Pitt-Bradford,0,La Roche,4,2022-10-01 +Hope,1,Trine,1,2022-10-01 +Oberlin,2,Wooster,4,2022-10-01 +Juniata,0,Elizabethtown,3,2022-10-01 +Goucher,0,Scranton,4,2022-10-01 +Bryn Mawr,0,Gettysburg,2,2022-10-01 +Catholic,0,Drew,0,2022-10-01 +Alvernia,1,Hood,0,2022-10-01 +SUNY-Maritime,1,Mount St. Mary,9,2022-10-01 +Augustana,2,Carthage,0,2022-10-01 +UW-Stout,3,UW-Platteville,4,2022-10-01 +Penn State-Altoona,3,Alfred State,0,2022-10-01 +Penn State-Behrend,7,Mount Aloysius,2,2022-10-01 +St. Vincent,2,Geneva,1,2022-10-01 +Notre Dame (Md.),1,St. Elizabeth,0,2022-10-01 +UW-Whitewater,1,UW-River Falls,0,2022-10-01 +Central,1,Dubuque,1,2022-10-01 +Alverno,0,Wisconsin Lutheran,8,2022-10-01 +Rockford,0,Concordia (Wis.),7,2022-10-01 +Illinois Tech,3,Marian,0,2022-10-01 +Dominican,4,St. Norbert,0,2022-10-01 +Wittenberg,1,Grove City,3,2022-10-01 +SUNY-Purchase,3,St. Joseph's (Bklyn.),2,2022-10-01 +Emmanuel,3,Norwich,0,2022-10-01 +Lebanon Valley,3,Albright,1,2022-10-01 +Concordia-Chicago,0,MSOE,3,2022-10-01 +Wentworth,2,Nichols,0,2022-10-01 +Averett,0,Lynchburg,7,2022-10-01 +North Carolina Wesleyan,0,Southern Virginia,5,2022-10-01 +Utica,0,Alfred,1,2022-10-01 +Cairn,1,Rosemont,0,2022-10-01 +Sewanee,1,Oglethorpe,0,2022-10-01 +Spalding,0,Westminster (Mo.),3,2022-10-01 +McMurry,1,Hardin-Simmons,2,2022-10-01 +John Carroll,2,Wilmington,1,2022-10-01 +Haverford,3,Muhlenberg,0,2022-10-01 +Capital,2,Otterbein,1,2022-10-01 +Ursinus,0,Washington College,0,2022-10-01 +Whittier,0,Redlands,2,2022-10-01 +UW-Eau Claire,2,UW-Oshkosh,1,2022-10-01 +Blackburn,0,Greenville,12,2022-10-01 +Coe,0,Nebraska Wesleyan,2,2022-10-01 +Carroll,5,Elmhurst,0,2022-10-01 +Occidental,2,La Verne,2,2022-10-01 +Trinity (Texas),6,University of Dallas,0,2022-10-02 +Lesley,0,Amherst,7,2022-10-02 +Penn State-Behrend,0,William Smith,6,2022-10-02 +UW-La Crosse,2,MSOE,1,2022-10-02 +Whitworth,0,Pacific Lutheran,2,2022-10-02 +Puget Sound,1,Whitman,0,2022-10-02 +Trinity (Conn.),1,Tufts,0,2022-10-02 +Bates,0,Southern Maine,1,2022-10-02 +Pitt-Greensburg,1,Ohio Wesleyan,2,2022-10-02 +Cazenovia,0,Marywood,7,2022-10-02 +Schreiner,1,Austin,0,2022-10-02 +Chicago,0,Rochester,0,2022-10-02 +Southwestern,2,Centenary (La.),0,2022-10-02 +Berea,1,Huntingdon,3,2022-10-02 +Texas Lutheran,2,St. Thomas (Texas),1,2022-10-02 +George Fox,1,Lewis and Clark,0,2022-10-02 +Claremont-Mudd-Scripps,0,UC Santa Cruz,0,2022-10-02 +Pacific,1,Linfield,1,2022-10-02 +Luther,2,Grinnell,2,2022-10-02 +Randolph,0,Ferrum,0,2022-10-02 +Trinity (D.C.),3,Cairn,5,2022-10-03 +Immaculata,1,Bryn Mawr,5,2022-10-03 +Nichols,5,Rivier,0,2022-10-03 +Blackburn,0,Webster,11,2022-10-03 +Christopher Newport,1,Lynchburg,0,2022-10-04 +St. Mary's (Ind.),0,Calvin,4,2022-10-04 +Rutgers-Newark,0,Rowan,2,2022-10-04 +Oglethorpe,0,Emory,7,2022-10-04 +Muhlenberg,1,Dickinson,4,2022-10-04 +Salem State,1,Endicott,4,2022-10-04 +Albion,3,Olivet,0,2022-10-04 +Adrian,0,Trine,1,2022-10-04 +Buffalo State,2,Hilbert,1,2022-10-04 +Delaware Valley,0,King's,6,2022-10-04 +Plattsburgh State,1,St. Lawrence,0,2022-10-04 +SUNY Delhi,1,Elmira,4,2022-10-04 +Hamilton,3,Union,1,2022-10-04 +Alvernia,0,Lebanon Valley,3,2022-10-04 +RIT,4,St. John Fisher,0,2022-10-04 +Clarkson,0,Middlebury,2,2022-10-04 +Wilkes,0,Lycoming,2,2022-10-04 +Mount St. Mary,1,Mount St. Vincent,2,2022-10-04 +Thomas,0,University of New England,5,2022-10-04 +Asbury,0,Denison,4,2022-10-04 +Brooklyn,0,Bard,1,2022-10-04 +Belhaven,0,Sewanee,1,2022-10-04 +St. Joseph's (Bklyn.),0,Manhattanville,1,2022-10-04 +Mount Holyoke,0,Keene State,2,2022-10-04 +Grove City,9,Thiel,1,2022-10-04 +Macalester,0,St. Scholastica,0,2022-10-04 +Maranatha Baptist,0,Ripon,3,2022-10-04 +Northwestern (Minn.),0,Hamline,2,2022-10-04 +Covenant,2,Berea,2,2022-10-04 +Monmouth,0,Knox,2,2022-10-04 +Farmingdale State,1,St. Joseph's (L.I.),0,2022-10-04 +Greensboro,1,Brevard,1,2022-10-04 +Connecticut College,1,Eastern Connecticut,0,2022-10-04 +Piedmont,4,Wesleyan (Ga.),0,2022-10-04 +Western Connecticut,3,Worcester State,2,2022-10-04 +Huntingdon,0,LaGrange,1,2022-10-04 +Mass-Dartmouth,0,Bridgewater State,3,2022-10-04 +Eastern,1,Widener,2,2022-10-04 +Hope,3,Kalamazoo,0,2022-10-04 +Wesleyan,4,Roger Williams,0,2022-10-04 +New England College,0,Suffolk,3,2022-10-04 +Guilford,3,Ferrum,0,2022-10-04 +York (Pa.),1,Albright,0,2022-10-04 +FDU-Florham,1,Stevens,4,2022-10-04 +Sarah Lawrence,5,SUNY-Maritime,0,2022-10-04 +Fontbonne,2,Principia,0,2022-10-04 +Fitchburg State,4,Eastern Nazarene,2,2022-10-04 +Colby,4,Maine Maritime,0,2022-10-04 +Washington and Jefferson,0,Waynesburg,0,2022-10-04 +Cortland State,0,Misericordia,2,2022-10-05 +Gettysburg,0,Johns Hopkins,4,2022-10-05 +Stevenson,0,Messiah,6,2022-10-05 +Luther,0,Loras,2,2022-10-05 +UW-River Falls,0,UW-La Crosse,6,2022-10-05 +Virginia Wesleyan,4,Shenandoah,1,2022-10-05 +John Jay,0,Montclair State,8,2022-10-05 +Central,1,Wartburg,4,2022-10-05 +Elizabethtown,1,TCNJ,6,2022-10-05 +Randolph-Macon,1,Washington and Lee,1,2022-10-05 +Penn State-Berks,6,Penn State-Abington,1,2022-10-05 +Johnson and Wales,6,Colby-Sawyer,0,2022-10-05 +Westminster (Mo.),3,Blackburn,0,2022-10-05 +North Central (Minn.),0,Northland,3,2022-10-05 +Crown,3,Martin Luther,1,2022-10-05 +Sage,0,Vassar,4,2022-10-05 +Plymouth State,1,Nichols,2,2022-10-05 +Rosemont,7,Valley Forge,0,2022-10-05 +Defiance,0,Earlham,1,2022-10-05 +MCLA,0,Utica,4,2022-10-05 +Salem,1,Mary Baldwin,0,2022-10-05 +Hood,2,Salisbury,3,2022-10-05 +Lesley,2,Southern Maine,6,2022-10-05 +Oswego State,0,Geneseo State,0,2022-10-05 +Mount Aloysius,0,Mary Washington,4,2022-10-05 +Meredith,1,North Carolina Wesleyan,4,2022-10-05 +Clarks Summit,0,Keystone,6,2022-10-05 +Oneonta State,0,Potsdam State,1,2022-10-05 +Westfield State,0,Western New England,1,2022-10-05 +Castleton,0,Gordon,1,2022-10-05 +Alfred,0,Ithaca,2,2022-10-05 +Mass-Boston,3,Salve Regina,0,2022-10-05 +Clark,2,Wellesley,1,2022-10-05 +Babson,0,MIT,1,2022-10-05 +Marywood,7,Centenary (N.J.),0,2022-10-05 +Averett,6,Hollins,1,2022-10-05 +Juniata,0,Pitt-Greensburg,0,2022-10-05 +UW-Oshkosh,2,UW-Stevens Point,2,2022-10-05 +Minnesota-Morris,0,Bethany Lutheran,5,2022-10-05 +Greenville,10,Eureka,0,2022-10-05 +Morrisville State,4,Wells,0,2022-10-05 +Wilson,12,Trinity (D.C.),1,2022-10-05 +Goucher,1,Rutgers-Camden,0,2022-10-05 +Rose-Hulman,3,Anderson,0,2022-10-05 +Webster,1,Spalding,0,2022-10-05 +St. Mary's (Md.),11,Gallaudet,0,2022-10-05 +Scranton,1,Farmingdale State,0,2022-10-05 +Lancaster Bible,0,Penn State-Harrisburg,2,2022-10-05 +Ursinus,2,Moravian,2,2022-10-05 +Bethany,1,Chatham,6,2022-10-05 +Nazareth,4,Medaille,0,2022-10-05 +Northwestern (Minn.),0,UW-Superior,2,2022-10-05 +Concordia-Moorhead,0,Saint Benedict,1,2022-10-05 +UW-Stout,0,Saint Mary's (Minn.),1,2022-10-05 +St. Catherine,1,Bethel,0,2022-10-05 +Franciscan,2,Westminster (Pa.),0,2022-10-05 +Lake Forest,1,Beloit,0,2022-10-05 +Cornell,0,Grinnell,2,2022-10-05 +Neumann,0,Cabrini,2,2022-10-05 +Coast Guard,1,Emerson,3,2022-10-05 +Dean,0,St. Joseph (Conn.),7,2022-10-05 +Dubuque,5,Coe,0,2022-10-05 +Drew,1,William Paterson,1,2022-10-05 +Lasell,1,Regis (Mass.),0,2022-10-05 +Manchester,0,Franklin,0,2022-10-05 +Gwynedd-Mercy,0,Marymount,3,2022-10-05 +Bluffton,0,Mount St. Joseph,2,2022-10-05 +Mount Union,6,Baldwin Wallace,0,2022-10-05 +Susquehanna,4,Penn College,0,2022-10-05 +Muskingum,1,Marietta,2,2022-10-05 +Roanoke,5,Randolph,0,2022-10-05 +Rivier,1,Norwich,4,2022-10-05 +Hanover,1,Transylvania,1,2022-10-05 +Albertus Magnus,0,Emmanuel,3,2022-10-05 +Wilmington,0,Capital,2,2022-10-05 +Methodist,4,William Peace,2,2022-10-05 +Simmons,1,Anna Maria,3,2022-10-05 +McDaniel,0,Franklin and Marshall,0,2022-10-05 +St. Joseph's (Maine),4,Elms,0,2022-10-05 +Heidelberg,1,John Carroll,2,2022-10-05 +Bridgewater (Va.),1,Eastern Mennonite,0,2022-10-05 +Otterbein,0,Ohio Northern,0,2022-10-05 +Houghton,2,Keuka,1,2022-10-05 +Brockport State,1,Fredonia State,1,2022-10-05 +Stockton,1,New York University,3,2022-10-05 +Smith,0,Springfield,1,2022-10-05 +Wheaton (Mass.),3,WPI,1,2022-10-05 +CCNY,9,SUNY-Purchase,0,2022-10-05 +Hartwick,0,Skidmore,2,2022-10-05 +Geneva,1,Allegheny,2,2022-10-05 +Pomona-Pitzer,3,Chapman,2,2022-10-05 +Whittier,2,Caltech,0,2022-10-05 +Whitman,0,Whitworth,6,2022-10-05 +Lynchburg,9,Sweet Briar,0,2022-10-05 +Washington College,1,Swarthmore,2,2022-10-05 +Elmhurst,0,North Park,3,2022-10-05 +Augustana,0,Illinois Wesleyan,3,2022-10-05 +Wheaton (Ill.),0,North Central (Ill.),0,2022-10-05 +Carthage,1,Carroll,1,2022-10-05 +Dominican,0,Marian,1,2022-10-05 +Alverno,0,Benedictine,16,2022-10-05 +Lakeland,0,Wisconsin Lutheran,3,2022-10-05 +Aurora,1,Illinois Tech,6,2022-10-05 +Concordia (Wis.),1,MSOE,4,2022-10-05 +Edgewood,1,St. Norbert,0,2022-10-05 +UW-Platteville,0,UW-Whitewater,1,2022-10-05 +Concordia-Chicago,2,Rockford,0,2022-10-05 +UW-Eau Claire,3,Augsburg,1,2022-10-05 +Buena Vista,0,Simpson,7,2022-10-05 +La Verne,0,Redlands,3,2022-10-05 +Claremont-Mudd-Scripps,0,Cal Lutheran,2,2022-10-05 +Sul Ross State,1,Mary Hardin-Baylor,6,2022-10-06 +SUNY-Old Westbury,3,Mitchell,1,2022-10-06 +Arcadia,1,DeSales,2,2022-10-06 +Maryville (Tenn.),1,Asbury,1,2022-10-06 +LeTourneau,0,McMurry,1,2022-10-06 +Howard Payne,0,Concordia (Texas),2,2022-10-06 +East Texas Baptist,1,Hardin-Simmons,5,2022-10-06 +Framingham State,2,Keene State,2,2022-10-06 +Roger Williams,1,Mass-Dartmouth,1,2022-10-06 +Oberlin,2,Adrian,1,2022-10-06 +Trinity (Texas),6,Southwestern,0,2022-10-07 +Lehman,1,Pratt,7,2022-10-07 +SUNY-Maritime,0,Manhattanville,4,2022-10-07 +Mount St. Joseph,1,Franklin,0,2022-10-07 +FDU-Florham,3,Delaware Valley,0,2022-10-07 +Brooklyn,0,St. Joseph's (L.I.),5,2022-10-07 +Salem State,2,Fitchburg State,3,2022-10-07 +Union,1,RPI,1,2022-10-07 +Sewanee,3,Hendrix,1,2022-10-07 +Berry,4,Birmingham-Southern,0,2022-10-07 +Centre,4,Rhodes,2,2022-10-07 +Schreiner,0,Texas Lutheran,3,2022-10-07 +Westfield State,3,Massachusetts Maritime,0,2022-10-07 +Nichols,0,Curry,1,2022-10-07 +Lynchburg,5,Ferrum,0,2022-10-07 +Austin,1,Centenary (La.),5,2022-10-07 +Southern Virginia,1,Brevard,1,2022-10-07 +Oglethorpe,0,Millsaps,0,2022-10-07 +University of Dallas,1,St. Thomas (Texas),0,2022-10-07 +Misericordia,5,DeSales,0,2022-10-08 +Johns Hopkins,3,Washington College,0,2022-10-08 +Christopher Newport,1,Gettysburg,0,2022-10-08 +Messiah,2,Alvernia,0,2022-10-08 +Case Western Reserve,3,New York University,0,2022-10-08 +Wesleyan,0,Amherst,3,2022-10-08 +Carnegie Mellon,1,Brandeis,0,2022-10-08 +Calvin,1,Hope,0,2022-10-08 +Loras,3,Simpson,0,2022-10-08 +William Smith,2,Clarkson,0,2022-10-08 +UW-La Crosse,2,UW-Eau Claire,0,2022-10-08 +Howard Payne,0,Mary Hardin-Baylor,0,2022-10-08 +Montclair State,0,Rowan,1,2022-10-08 +Emory,3,Chicago,0,2022-10-08 +Hollins,0,Virginia Wesleyan,9,2022-10-08 +George Fox,1,Pacific Lutheran,1,2022-10-08 +Wartburg,2,Dubuque,2,2022-10-08 +TCNJ,5,Rutgers-Newark,0,2022-10-08 +Willamette,0,Puget Sound,3,2022-10-08 +Washington and Lee,3,Eastern Mennonite,0,2022-10-08 +Buffalo State,1,Cortland State,4,2022-10-08 +Connecticut College,0,Williams,1,2022-10-08 +Shenandoah,4,Guilford,1,2022-10-08 +Bates,2,Hamilton,2,2022-10-08 +Roanoke,2,Averett,1,2022-10-08 +Huntingdon,0,Piedmont,1,2022-10-08 +Brooklyn,7,Medgar Evers,0,2022-10-08 +Mitchell,0,Lesley,2,2022-10-08 +Olivet,1,Kalamazoo,2,2022-10-08 +WPI,0,Wellesley,0,2022-10-08 +MIT,1,Springfield,0,2022-10-08 +Wheaton (Mass.),6,Mount Holyoke,1,2022-10-08 +Randolph,8,Sweet Briar,0,2022-10-08 +Clark,2,Coast Guard,2,2022-10-08 +Roger Williams,2,Wentworth,2,2022-10-08 +Bethany,1,St. Vincent,0,2022-10-08 +Colby,1,Middlebury,2,2022-10-08 +Endicott,1,Salve Regina,2,2022-10-08 +Cabrini,1,Marywood,2,2022-10-08 +Western Connecticut,1,Plymouth State,1,2022-10-08 +Emmanuel,2,Anna Maria,1,2022-10-08 +Regis (Mass.),1,St. Joseph (Conn.),0,2022-10-08 +Dean,1,Elms,2,2022-10-08 +Alfred,0,Elmira,0,2022-10-08 +Valley Forge,0,St. Elizabeth,8,2022-10-08 +York (N.Y.),0,John Jay,12,2022-10-08 +Marian,1,Concordia-Chicago,1,2022-10-08 +St. Joseph's (Maine),3,Lasell,4,2022-10-08 +Hood,2,Eastern,1,2022-10-08 +Gallaudet,0,Penn State-Harrisburg,10,2022-10-08 +Ohio Wesleyan,0,Kenyon,1,2022-10-08 +Western New England,1,Gordon,0,2022-10-08 +Albright,1,Stevenson,0,2022-10-08 +Centenary (N.J.),2,Marymount,2,2022-10-08 +Mary Baldwin,0,Methodist,3,2022-10-08 +Geneseo State,1,New Paltz State,0,2022-10-08 +Penn State-Abington,2,St. Mary's (Md.),4,2022-10-08 +Anderson,3,Bluffton,1,2022-10-08 +Wilson,3,Keystone,1,2022-10-08 +Blackburn,0,Spalding,9,2022-10-08 +Wells,0,Lancaster Bible,6,2022-10-08 +Brockport State,2,Oneonta State,1,2022-10-08 +Keene State,1,Mass-Dartmouth,0,2022-10-08 +Salisbury,1,Mary Washington,3,2022-10-08 +Otterbein,3,Muskingum,0,2022-10-08 +Gwynedd-Mercy,0,Immaculata,4,2022-10-08 +Defiance,0,Hanover,7,2022-10-08 +Babson,0,Emerson,0,2022-10-08 +Colby-Sawyer,0,Simmons,0,2022-10-08 +Widener,1,Lebanon Valley,3,2022-10-08 +Ohio Northern,2,Capital,2,2022-10-08 +Oswego State,0,Plattsburgh State,2,2022-10-08 +Fredonia State,1,Potsdam State,1,2022-10-08 +DePauw,1,Wooster,0,2022-10-08 +Agnes Scott,0,Berea,3,2022-10-08 +Earlham,0,Rose-Hulman,7,2022-10-08 +Bard,0,Ithaca,6,2022-10-08 +Rhode Island College,2,Mass-Boston,3,2022-10-08 +Ramapo,2,New Jersey City,1,2022-10-08 +Washington and Jefferson,1,Franciscan,3,2022-10-08 +Thiel,0,Chatham,6,2022-10-08 +Penn College,3,Penn State-Berks,5,2022-10-08 +Millikin,2,Augustana,1,2022-10-08 +Manchester,0,Transylvania,3,2022-10-08 +Maine-Presque Isle,3,SUNY Canton,0,2022-10-08 +Wesleyan (Ga.),0,Maryville (Tenn.),5,2022-10-08 +Meredith,2,Salem,2,2022-10-08 +Randolph-Macon,0,Bridgewater (Va.),2,2022-10-08 +Franklin and Marshall,4,Bryn Mawr,0,2022-10-08 +Adrian,3,St. Mary's (Ind.),1,2022-10-08 +MCLA,0,Framingham State,1,2022-10-08 +Notre Dame (Md.),0,Cairn,4,2022-10-08 +Skidmore,1,Vassar,1,2022-10-08 +Bowdoin,1,Trinity (Conn.),1,2022-10-08 +Sarah Lawrence,8,SUNY-Purchase,0,2022-10-08 +Carroll,1,Illinois Wesleyan,1,2022-10-08 +Sul Ross State,2,Concordia (Texas),3,2022-10-08 +UW-Whitewater,0,UW-Stevens Point,1,2022-10-08 +Fontbonne,1,Webster,0,2022-10-08 +Augsburg,0,Saint Mary's (Minn.),0,2022-10-08 +Texas-Dallas,1,University of the Ozarks,0,2022-10-08 +Macalester,1,St. Catherine,3,2022-10-08 +Eureka,0,Westminster (Mo.),11,2022-10-08 +Saint Benedict,0,St. Olaf,1,2022-10-08 +St. Scholastica,3,Hamline,1,2022-10-08 +Carleton,1,Bethel,0,2022-10-08 +Ripon,2,Monmouth,1,2022-10-08 +Mount St. Mary,2,Farmingdale State,3,2022-10-08 +Maine-Farmington,0,SUNY Poly,0,2022-10-08 +Maine Maritime,3,SUNY-Cobleskill,0,2022-10-08 +Hartwick,1,Houghton,1,2022-10-08 +Stevens,5,Wilkes,0,2022-10-08 +Lawrence,2,Knox,0,2022-10-08 +Beloit,0,Grinnell,1,2022-10-08 +Lake Forest,2,Illinois College,0,2022-10-08 +Lakeland,3,Rockford,2,2022-10-08 +Claremont-Mudd-Scripps,0,Pomona-Pitzer,0,2022-10-08 +Asbury,1,Trine,5,2022-10-08 +Eastern Nazarene,1,New England College,1,2022-10-08 +University of New England,1,Suffolk,1,2022-10-08 +Smith,0,Southern Maine,2,2022-10-08 +Haverford,0,Ursinus,0,2022-10-08 +Nazareth,0,Utica,0,2022-10-08 +RIT,3,St. Lawrence,1,2022-10-08 +Castleton,1,Eastern Connecticut,1,2022-10-08 +Northwestern (Minn.),2,Northland,0,2022-10-08 +Crown,1,Bethany Lutheran,4,2022-10-08 +Concordia (Wis.),6,Alverno,0,2022-10-08 +Minnesota-Morris,2,Martin Luther,2,2022-10-08 +UW-Oshkosh,1,UW-Stout,1,2022-10-08 +Coe,0,Central,11,2022-10-08 +Redlands,1,UC Santa Cruz,2,2022-10-08 +Lewis and Clark,1,Pacific,1,2022-10-08 +Whitworth,3,Linfield,0,2022-10-08 +Alfred State,0,Pitt-Greensburg,5,2022-10-08 +Penn State-Altoona,1,Hilbert,1,2022-10-08 +Thomas,2,SUNY Delhi,2,2022-10-08 +Albertus Magnus,4,Rivier,0,2022-10-08 +Husson,7,NVU-Johnson,0,2022-10-08 +Luther,3,Nebraska Wesleyan,0,2022-10-08 +MSOE,0,Dominican,2,2022-10-08 +Cedar Crest,3,Bryn Athyn,2,2022-10-08 +Juniata,0,Catholic,4,2022-10-08 +Swarthmore,1,Muhlenberg,0,2022-10-08 +Susquehanna,2,Goucher,0,2022-10-08 +North Carolina Wesleyan,4,Pfeiffer,0,2022-10-08 +Alma,2,Albion,5,2022-10-08 +William Peace,0,Greensboro,1,2022-10-08 +Rutgers-Camden,0,Kean,0,2022-10-08 +Elizabethtown,0,Scranton,3,2022-10-08 +Dickinson,0,McDaniel,1,2022-10-08 +UW-River Falls,1,UW-Platteville,3,2022-10-08 +Principia,0,Greenville,2,2022-10-08 +Mount Aloysius,4,Pitt-Bradford,2,2022-10-08 +NVU-Lyndon,0,Cazenovia,6,2022-10-08 +La Roche,0,Penn State-Behrend,3,2022-10-08 +Geneva,1,Grove City,5,2022-10-08 +Concordia-Moorhead,0,Gustavus Adolphus,3,2022-10-08 +St. Norbert,1,Illinois Tech,6,2022-10-08 +Wisconsin Lutheran,1,Aurora,2,2022-10-08 +Moravian,1,Drew,2,2022-10-08 +Worcester State,1,Bridgewater State,2,2022-10-08 +Stockton,1,William Paterson,0,2022-10-08 +Clarks Summit,0,Rosemont,1,2022-10-08 +Mount St. Vincent,4,SUNY-Old Westbury,0,2022-10-08 +La Verne,0,Cal Lutheran,3,2022-10-08 +Lycoming,2,Arcadia,3,2022-10-08 +Elmhurst,0,Wheaton (Ill.),6,2022-10-08 +Norwich,0,Johnson and Wales,5,2022-10-08 +North Central (Ill.),2,Carthage,0,2022-10-08 +East Texas Baptist,0,McMurry,1,2022-10-08 +North Central (Minn.),0,UW-Superior,8,2022-10-08 +LeTourneau,0,Hardin-Simmons,2,2022-10-08 +Edgewood,3,Benedictine,2,2022-10-08 +Baldwin Wallace,2,Wilmington,1,2022-10-08 +Marietta,0,John Carroll,1,2022-10-08 +Denison,1,Oberlin,0,2022-10-08 +Heidelberg,1,Mount Union,3,2022-10-08 +LaGrange,0,Belhaven,6,2022-10-08 +Occidental,0,Whittier,1,2022-10-08 +Wittenberg,2,Hiram,0,2022-10-08 +Allegheny,1,Waynesburg,1,2022-10-08 +Caltech,0,Chapman,3,2022-10-08 +Trinity (Texas),3,Texas Lutheran,0,2022-10-09 +Bowdoin,1,Amherst,2,2022-10-09 +William Smith,6,Plattsburgh State,2,2022-10-09 +Lewis and Clark,1,Pacific Lutheran,5,2022-10-09 +Pacific,0,Puget Sound,6,2022-10-09 +Hollins,0,Washington and Lee,13,2022-10-09 +Tufts,9,New England College,0,2022-10-09 +MIT,1,Williams,2,2022-10-09 +Berry,5,Millsaps,1,2022-10-09 +Colby,1,Hamilton,3,2022-10-09 +St. John Fisher,1,Sage,0,2022-10-09 +Bates,0,Wesleyan,3,2022-10-09 +York (Pa.),2,Penn State-Berks,2,2022-10-09 +Connecticut College,0,Middlebury,1,2022-10-09 +Penn State-Altoona,2,Medaille,1,2022-10-09 +Sewanee,1,Rhodes,0,2022-10-09 +Maine-Farmington,3,Cazenovia,2,2022-10-09 +Oglethorpe,1,Birmingham-Southern,0,2022-10-09 +University of Dallas,0,Centenary (La.),1,2022-10-09 +Centre,4,Hendrix,0,2022-10-09 +Husson,5,SUNY Canton,0,2022-10-09 +Austin,0,St. Thomas (Texas),3,2022-10-09 +Thomas,2,SUNY-Cobleskill,0,2022-10-09 +Maine Maritime,2,SUNY Delhi,1,2022-10-09 +NVU-Lyndon,0,SUNY Poly,3,2022-10-09 +Rochester,0,Washington U.,2,2022-10-09 +George Fox,2,Willamette,0,2022-10-09 +Whitman,1,Linfield,2,2022-10-09 +Maine-Presque Isle,3,NVU-Johnson,1,2022-10-09 +Schreiner,0,Southwestern,3,2022-10-09 +York (N.Y.),2,Lehman,7,2022-10-10 +Western Connecticut,2,Farmingdale State,0,2022-10-10 +Anna Maria,1,Massachusetts Maritime,0,2022-10-10 +North Park,1,Lake Forest,2,2022-10-10 +Cornell,0,Knox,0,2022-10-10 +SUNY-Old Westbury,1,Pratt,2,2022-10-10 +Lancaster Bible,1,Keystone,0,2022-10-10 +Elmhurst,1,Benedictine,4,2022-10-10 +St. Norbert,0,UW-Oshkosh,4,2022-10-10 +Loras,4,Dubuque,0,2022-10-11 +Ferrum,0,Virginia Wesleyan,2,2022-10-11 +Wartburg,6,Coe,0,2022-10-11 +Simpson,6,Central,1,2022-10-11 +Southern Virginia,4,Salem,2,2022-10-11 +Waynesburg,2,Bethany,4,2022-10-11 +Salve Regina,0,Western New England,3,2022-10-11 +Pitt-Greensburg,5,La Roche,1,2022-10-11 +Suffolk,2,Wentworth,0,2022-10-11 +University of New England,1,Gordon,1,2022-10-11 +Sweet Briar,0,Bridgewater (Va.),19,2022-10-11 +Nichols,0,Endicott,3,2022-10-11 +Wellesley,0,MIT,1,2022-10-11 +Curry,1,Roger Williams,0,2022-10-11 +Hilbert,5,Pitt-Bradford,2,2022-10-11 +SUNY-Old Westbury,0,St. Joseph's (Bklyn.),3,2022-10-11 +Greensboro,1,Mary Baldwin,5,2022-10-11 +Bethany Lutheran,2,Martin Luther,0,2022-10-11 +Penn State-Behrend,4,Alfred State,0,2022-10-11 +Mount Aloysius,1,Penn State-Altoona,1,2022-10-11 +Marymount,1,Widener,1,2022-10-11 +Nebraska Wesleyan,3,Buena Vista,0,2022-10-11 +Covenant,0,Maryville (Tenn.),2,2022-10-11 +Pfeiffer,1,William Peace,2,2022-10-11 +Immaculata,2,Neumann,4,2022-10-11 +Westminster (Pa.),3,Geneva,0,2022-10-11 +Westminster (Mo.),3,Principia,0,2022-10-11 +Hendrix,2,LeTourneau,0,2022-10-11 +Illinois Wesleyan,0,UW-Whitewater,1,2022-10-11 +Millikin,0,Washington U.,4,2022-10-11 +UW-Superior,1,Northland,1,2022-10-11 +Southwestern,1,Texas Lutheran,2,2022-10-11 +North Central (Minn.),1,Northwestern (Minn.),8,2022-10-11 +Lycoming,0,Misericordia,9,2022-10-12 +McDaniel,1,Johns Hopkins,4,2022-10-12 +Christopher Newport,2,Salisbury,0,2022-10-12 +York (Pa.),1,Messiah,0,2022-10-12 +Schreiner,0,Trinity (Texas),9,2022-10-12 +Calvin,0,Adrian,0,2022-10-12 +Luther,0,UW-La Crosse,5,2022-10-12 +Rowan,2,Rutgers-Camden,0,2022-10-12 +Montclair State,3,Rutgers-Newark,0,2022-10-12 +TCNJ,4,Stockton,3,2022-10-12 +Washington and Lee,2,Roanoke,0,2022-10-12 +Bridgewater State,0,Tufts,6,2022-10-12 +Cortland State,2,New Paltz State,0,2022-10-12 +Mass-Dartmouth,0,Mass-Boston,2,2022-10-12 +Eureka,2,Blackburn,0,2022-10-12 +Alverno,0,Concordia-Chicago,7,2022-10-12 +Coast Guard,2,Smith,1,2022-10-12 +Southern Maine,1,Plymouth State,0,2022-10-12 +Lehman,3,York (N.Y.),4,2022-10-12 +Pratt,2,Clarks Summit,3,2022-10-12 +Earlham,1,Bluffton,2,2022-10-12 +Emerson,3,Wheaton (Mass.),1,2022-10-12 +Kenyon,1,Wooster,1,2022-10-12 +St. Elizabeth,1,Rosemont,4,2022-10-12 +Springfield,2,Babson,1,2022-10-12 +Wilson,1,Notre Dame (Md.),0,2022-10-12 +Plattsburgh State,2,Oneonta State,0,2022-10-12 +Geneseo State,2,Brockport State,0,2022-10-12 +Marywood,7,Gwynedd-Mercy,0,2022-10-12 +St. Joseph's (L.I.),1,Mount St. Vincent,5,2022-10-12 +Lebanon Valley,2,Eastern,1,2022-10-12 +Cairn,0,Cedar Crest,2,2022-10-12 +Kalamazoo,0,Trine,1,2022-10-12 +Eastern Mennonite,0,Lynchburg,8,2022-10-12 +Anderson,8,Defiance,0,2022-10-12 +Guilford,12,Hollins,0,2022-10-12 +Muhlenberg,2,Bryn Mawr,1,2022-10-12 +Ohio Northern,1,Heidelberg,0,2022-10-12 +Buffalo State,0,Oswego State,0,2022-10-12 +CCNY,5,Brooklyn,0,2022-10-12 +Medgar Evers,0,John Jay,8,2022-10-12 +Houghton,0,Nazareth,3,2022-10-12 +Eastern Connecticut,2,Rhode Island College,0,2022-10-12 +DeSales,2,FDU-Florham,0,2022-10-12 +Lawrence,4,Ripon,0,2022-10-12 +Haverford,0,Franklin and Marshall,3,2022-10-12 +Sarah Lawrence,3,Manhattanville,1,2022-10-12 +UW-River Falls,1,St. Scholastica,1,2022-10-12 +Franklin,0,Hanover,6,2022-10-12 +Rose-Hulman,6,Manchester,0,2022-10-12 +St. Vincent,4,Thiel,0,2022-10-12 +Chatham,0,Franciscan,0,2022-10-12 +Hamline,0,Carleton,1,2022-10-12 +Bethel,1,Saint Benedict,4,2022-10-12 +St. Catherine,0,Concordia-Moorhead,1,2022-10-12 +Saint Mary's (Minn.),0,St. Olaf,3,2022-10-12 +Grinnell,3,Monmouth,1,2022-10-12 +Randolph,0,Averett,1,2022-10-12 +Wesleyan (Ga.),1,Huntingdon,8,2022-10-12 +Greenville,0,Webster,1,2022-10-12 +Rockford,0,Benedictine,2,2022-10-12 +Castleton,1,Keene State,0,2022-10-12 +St. Mary's (Ind.),0,Albion,3,2022-10-12 +Capital,4,Muskingum,0,2022-10-12 +Valley Forge,0,Bryn Athyn,10,2022-10-12 +Marietta,2,Mount Union,3,2022-10-12 +Centenary (N.J.),0,Cabrini,2,2022-10-12 +Drew,1,Scranton,2,2022-10-12 +John Carroll,1,Baldwin Wallace,4,2022-10-12 +Susquehanna,4,Juniata,0,2022-10-12 +Alma,1,Hope,5,2022-10-12 +St. Joseph (Conn.),0,Albertus Magnus,0,2022-10-12 +Framingham State,0,Lesley,3,2022-10-12 +Dickinson,0,Gettysburg,0,2022-10-12 +Catholic,0,Goucher,0,2022-10-12 +Mary Washington,2,St. Mary's (Md.),0,2022-10-12 +Lasell,1,Johnson and Wales,2,2022-10-12 +Elizabethtown,0,Moravian,0,2022-10-12 +Shenandoah,0,Randolph-Macon,1,2022-10-12 +Stevenson,0,Hood,2,2022-10-12 +Penn State-Harrisburg,2,Arcadia,0,2022-10-12 +Elms,2,Anna Maria,2,2022-10-12 +Mount Holyoke,0,Clark,2,2022-10-12 +Regis (Mass.),2,Simmons,1,2022-10-12 +Keuka,0,Alfred,1,2022-10-12 +Wilkes,1,King's,1,2022-10-12 +Wilmington,1,Otterbein,2,2022-10-12 +Morrisville State,2,SUNY Delhi,6,2022-10-12 +Colby-Sawyer,2,Norwich,0,2022-10-12 +Denison,0,Wittenberg,0,2022-10-12 +Dean,0,St. Joseph's (Maine),6,2022-10-12 +Ohio Wesleyan,1,DePauw,0,2022-10-12 +Utica,2,St. John Fisher,2,2022-10-12 +Elmira,0,Hartwick,2,2022-10-12 +Mount St. Joseph,2,Transylvania,1,2022-10-12 +Albright,0,Alvernia,0,2022-10-12 +Delaware Valley,3,Stevens,7,2022-10-12 +New Jersey City,1,William Paterson,0,2022-10-12 +Grove City,1,Allegheny,0,2022-10-12 +Wells,1,Medaille,2,2022-10-12 +Farmingdale State,10,SUNY-Purchase,0,2022-10-12 +Ramapo,1,Kean,2,2022-10-12 +Swarthmore,1,Ursinus,0,2022-10-12 +SUNY Canton,1,SUNY Poly,1,2022-10-12 +Emmanuel,7,Rivier,0,2022-10-12 +Oberlin,4,Hiram,0,2022-10-12 +Elmhurst,0,Augustana,3,2022-10-12 +North Central (Ill.),6,North Park,1,2022-10-12 +St. Norbert,2,Wisconsin Lutheran,1,2022-10-12 +UW-Eau Claire,1,UW-Stout,0,2022-10-12 +MSOE,2,Illinois Tech,2,2022-10-12 +Concordia (Wis.),2,Marian,0,2022-10-12 +Edgewood,6,Lakeland,0,2022-10-12 +Dominican,4,Aurora,0,2022-10-12 +Carroll,0,Wheaton (Ill.),1,2022-10-12 +Gustavus Adolphus,3,Augsburg,1,2022-10-12 +Pacific,0,George Fox,0,2022-10-12 +Caltech,1,La Verne,1,2022-10-12 +Cal Lutheran,0,Occidental,0,2022-10-12 +Chapman,0,Redlands,2,2022-10-12 +Pomona-Pitzer,0,Whittier,0,2022-10-12 +Mary Hardin-Baylor,1,Texas-Dallas,0,2022-10-13 +McMurry,2,Sul Ross State,0,2022-10-13 +Hardin-Simmons,5,Howard Payne,1,2022-10-13 +Concordia (Texas),4,University of the Ozarks,1,2022-10-13 +Belhaven,4,Agnes Scott,0,2022-10-13 +William Peace,1,Mary Baldwin,2,2022-10-13 +North Central (Minn.),2,Crown,4,2022-10-13 +Northwestern (Minn.),6,Minnesota-Morris,2,2022-10-13 +Illinois College,0,Cornell,4,2022-10-13 +LaGrange,0,Piedmont,3,2022-10-13 +Colby-Sawyer,2,Salem State,0,2022-10-13 +Miss. U. for Women,0,Brevard,1,2022-10-13 +Spalding,0,Fontbonne,2,2022-10-13 +Case Western Reserve,2,Washington U.,1,2022-10-14 +Austin,0,Trinity (Texas),5,2022-10-14 +Carnegie Mellon,1,Chicago,0,2022-10-14 +William Smith,5,Union,0,2022-10-14 +New York University,0,Emory,1,2022-10-14 +Pacific Lutheran,3,Pacific,0,2022-10-14 +Puget Sound,1,Linfield,1,2022-10-14 +University of Dallas,0,Schreiner,1,2022-10-14 +St. Lawrence,4,Bard,0,2022-10-14 +Clarkson,1,Vassar,0,2022-10-14 +Ithaca,0,Skidmore,0,2022-10-14 +RIT,1,RPI,0,2022-10-14 +Bethany Lutheran,1,Northland,0,2022-10-14 +Hendrix,1,Oglethorpe,0,2022-10-14 +Rhodes,1,Berry,0,2022-10-14 +Millsaps,0,Centre,2,2022-10-14 +Fitchburg State,3,MCLA,0,2022-10-14 +Pfeiffer,0,Southern Virginia,4,2022-10-14 +Birmingham-Southern,0,Sewanee,2,2022-10-14 +Framingham State,1,Massachusetts Maritime,0,2022-10-14 +Bethany,1,Grove City,4,2022-10-14 +Centenary (La.),2,Texas Lutheran,4,2022-10-14 +Brandeis,0,Rochester,1,2022-10-14 +Martin Luther,1,UW-Superior,8,2022-10-14 +St. Thomas (Texas),0,Southwestern,4,2022-10-14 +FDU-Florham,0,Misericordia,7,2022-10-15 +Ursinus,0,Johns Hopkins,5,2022-10-15 +Eastern,0,Messiah,6,2022-10-15 +Trine,0,Calvin,1,2022-10-15 +Central,0,Loras,3,2022-10-15 +William Smith,1,RPI,0,2022-10-15 +UW-Stout,1,UW-La Crosse,7,2022-10-15 +Mary Hardin-Baylor,3,University of the Ozarks,1,2022-10-15 +Rowan,5,Ramapo,0,2022-10-15 +Virginia Wesleyan,0,Washington and Lee,1,2022-10-15 +Montclair State,3,TCNJ,2,2022-10-15 +Tufts,1,Bates,2,2022-10-15 +Cortland State,2,Geneseo State,1,2022-10-15 +Williams,0,Wesleyan,0,2022-10-15 +Salem State,0,Worcester State,3,2022-10-15 +Johnson and Wales,3,Emmanuel,1,2022-10-15 +Cabrini,1,Immaculata,0,2022-10-15 +Mass-Dartmouth,1,Western Connecticut,2,2022-10-15 +Connecticut College,2,Colby,0,2022-10-15 +Trinity (Conn.),0,Middlebury,1,2022-10-15 +Oberlin,1,Wittenberg,1,2022-10-15 +Western New England,3,University of New England,1,2022-10-15 +Endicott,1,Roger Williams,1,2022-10-15 +St. Joseph's (L.I.),0,Sarah Lawrence,3,2022-10-15 +Springfield,1,WPI,2,2022-10-15 +Manhattanville,4,SUNY-Purchase,0,2022-10-15 +SUNY-Old Westbury,0,Farmingdale State,5,2022-10-15 +St. Joseph's (Maine),1,Albertus Magnus,1,2022-10-15 +Hiram,0,Denison,2,2022-10-15 +Miss. U. for Women,3,Warren Wilson,1,2022-10-15 +Wilson,6,St. Elizabeth,0,2022-10-15 +Neumann,4,Gwynedd-Mercy,0,2022-10-15 +Kalamazoo,2,St. Mary's (Ind.),0,2022-10-15 +Albion,2,Hope,1,2022-10-15 +Alvernia,1,York (Pa.),3,2022-10-15 +Medgar Evers,0,Lehman,9,2022-10-15 +John Jay,5,Brooklyn,0,2022-10-15 +Albright,0,DeSales,5,2022-10-15 +Stevens,0,Lycoming,1,2022-10-15 +Hamilton,0,Bowdoin,2,2022-10-15 +Belhaven,8,Wesleyan (Ga.),0,2022-10-15 +Grinnell,2,Lawrence,1,2022-10-15 +Alverno,0,Lakeland,1,2022-10-15 +Hood,1,Lebanon Valley,1,2022-10-15 +St. Vincent,2,Franciscan,8,2022-10-15 +Manchester,0,Mount St. Joseph,3,2022-10-15 +John Carroll,0,Ohio Northern,5,2022-10-15 +DePauw,1,Kenyon,0,2022-10-15 +Bridgewater (Va.),4,Roanoke,0,2022-10-15 +Rosemont,0,Cedar Crest,6,2022-10-15 +Potsdam State,2,Buffalo State,1,2022-10-15 +New England College,0,Mitchell,0,2022-10-15 +Berea,1,LaGrange,2,2022-10-15 +Mass-Boston,2,Keene State,1,2022-10-15 +St. Joseph's (Bklyn.),1,Mount St. Vincent,3,2022-10-15 +Hanover,3,Anderson,0,2022-10-15 +Smith,0,Clark,0,2022-10-15 +Plattsburgh State,2,Fredonia State,0,2022-10-15 +Penn State-Harrisburg,9,Wells,0,2022-10-15 +Coast Guard,2,Wheaton (Mass.),5,2022-10-15 +Mary Washington,2,Salisbury,2,2022-10-15 +Franklin,0,Earlham,1,2022-10-15 +Mount Holyoke,0,Babson,4,2022-10-15 +Southern Maine,3,Rhode Island College,0,2022-10-15 +Marymount,0,Marywood,1,2022-10-15 +Penn State-Berks,10,Gallaudet,0,2022-10-15 +New Paltz State,2,Brockport State,0,2022-10-15 +Clarks Summit,8,Notre Dame (Md.),2,2022-10-15 +Elmira,0,Utica,3,2022-10-15 +Allegheny,1,Chatham,2,2022-10-15 +Lancaster Bible,1,Penn State-Abington,0,2022-10-15 +Morrisville State,0,Penn College,2,2022-10-15 +Rivier,0,Colby-Sawyer,5,2022-10-15 +SUNY Canton,0,Cazenovia,1,2022-10-15 +Elmhurst,0,Millikin,2,2022-10-15 +Spalding,10,Eureka,0,2022-10-15 +Whitman,0,Lewis and Clark,1,2022-10-15 +Defiance,0,Transylvania,5,2022-10-15 +Bridgewater State,0,Westfield State,2,2022-10-15 +Maryville (Tenn.),0,Piedmont,3,2022-10-15 +Heidelberg,0,Otterbein,1,2022-10-15 +Ithaca,3,Union,2,2022-10-15 +Lesley,5,Eastern Nazarene,1,2022-10-15 +RIT,2,Skidmore,0,2022-10-15 +St. Lawrence,1,Vassar,6,2022-10-15 +Clarkson,4,Bard,1,2022-10-15 +Greensboro,3,North Carolina Wesleyan,1,2022-10-15 +Adrian,0,Augustana,2,2022-10-15 +McMurry,2,Howard Payne,0,2022-10-15 +UW-Stevens Point,1,UW-River Falls,1,2022-10-15 +St. Catherine,3,St. Scholastica,0,2022-10-15 +Augsburg,1,Concordia-Moorhead,1,2022-10-15 +Simpson,5,Luther,3,2022-10-15 +Webster,2,Westminster (Mo.),0,2022-10-15 +Saint Mary's (Minn.),2,Bethel,1,2022-10-15 +Huntingdon,1,Covenant,1,2022-10-15 +Hardin-Simmons,2,Sul Ross State,2,2022-10-15 +St. Olaf,1,Gustavus Adolphus,0,2022-10-15 +Saint Benedict,2,Hamline,0,2022-10-15 +Caltech,0,Pomona-Pitzer,4,2022-10-15 +Redlands,1,La Verne,1,2022-10-15 +Whittier,0,Chapman,0,2022-10-15 +King's,0,Arcadia,1,2022-10-15 +Maine-Farmington,2,Maine Maritime,0,2022-10-15 +Blackburn,0,Principia,3,2022-10-15 +Knox,0,Ripon,0,2022-10-15 +Cornell,0,Lake Forest,1,2022-10-15 +Maranatha Baptist,0,Finlandia,6,2022-10-15 +Anna Maria,1,St. Joseph (Conn.),5,2022-10-15 +McDaniel,0,Haverford,1,2022-10-15 +Simmons,0,Lasell,6,2022-10-15 +Mary Baldwin,5,Meredith,0,2022-10-15 +Methodist,2,Brevard,0,2022-10-15 +Sage,1,Nazareth,2,2022-10-15 +New Jersey City,1,Stockton,2,2022-10-15 +Geneva,1,Washington and Jefferson,1,2022-10-15 +Thomas,0,Maine-Presque Isle,4,2022-10-15 +Whitworth,0,Willamette,0,2022-10-15 +Mount Aloysius,0,Alfred State,1,2022-10-15 +La Roche,1,Hilbert,2,2022-10-15 +Oneonta State,1,Oswego State,0,2022-10-15 +SUNY Poly,0,SUNY Delhi,3,2022-10-15 +Gordon,0,Wentworth,1,2022-10-15 +Husson,5,NVU-Lyndon,0,2022-10-15 +Valley Forge,0,Cairn,10,2022-10-15 +Illinois Tech,5,Edgewood,0,2022-10-15 +Aurora,2,Marian,3,2022-10-15 +Salem,0,William Peace,2,2022-10-15 +Ferrum,0,Randolph-Macon,3,2022-10-15 +Elms,0,Regis (Mass.),1,2022-10-15 +Pitt-Greensburg,9,Pitt-Bradford,0,2022-10-15 +Scranton,1,Moravian,0,2022-10-15 +Emerson,1,MIT,0,2022-10-15 +Catholic,0,Susquehanna,1,2022-10-15 +Goucher,0,Juniata,0,2022-10-15 +Guilford,0,Lynchburg,3,2022-10-15 +Bryn Mawr,0,Dickinson,4,2022-10-15 +Gettysburg,1,Washington College,1,2022-10-15 +Wilkes,1,Delaware Valley,0,2022-10-15 +Westminster (Pa.),1,Waynesburg,0,2022-10-15 +Fontbonne,1,Greenville,0,2022-10-15 +Penn State-Behrend,5,Penn State-Altoona,0,2022-10-15 +Plymouth State,0,Castleton,1,2022-10-15 +Drew,4,Elizabethtown,1,2022-10-15 +Dubuque,3,Nebraska Wesleyan,1,2022-10-15 +Martin Luther,0,Northland,0,2022-10-15 +Concordia-Chicago,0,Wisconsin Lutheran,0,2022-10-15 +North Central (Minn.),0,Minnesota-Morris,2,2022-10-15 +Dominican,2,Concordia (Wis.),1,2022-10-15 +Wooster,0,Ohio Wesleyan,1,2022-10-15 +Kean,1,William Paterson,1,2022-10-15 +Sweet Briar,0,Shenandoah,18,2022-10-15 +Suffolk,1,Curry,3,2022-10-15 +Alma,2,Olivet,0,2022-10-15 +Benedictine,0,MSOE,3,2022-10-15 +UW-Platteville,1,UW-Oshkosh,0,2022-10-15 +Salve Regina,1,Nichols,2,2022-10-15 +Bethany Lutheran,1,UW-Superior,2,2022-10-15 +Hollins,0,Randolph,12,2022-10-15 +St. John Fisher,2,Medaille,0,2022-10-15 +Carroll,1,North Central (Ill.),1,2022-10-15 +Carthage,0,Wheaton (Ill.),1,2022-10-15 +Illinois Wesleyan,5,North Park,2,2022-10-15 +Concordia (Texas),3,Texas-Dallas,1,2022-10-15 +LeTourneau,0,East Texas Baptist,0,2022-10-15 +Wilmington,4,Marietta,0,2022-10-15 +Mount Union,1,Capital,4,2022-10-15 +Franklin and Marshall,1,Swarthmore,2,2022-10-15 +Averett,0,Eastern Mennonite,0,2022-10-15 +Muskingum,0,Baldwin Wallace,3,2022-10-15 +UW-Eau Claire,1,UW-Whitewater,3,2022-10-15 +Stevenson,0,Widener,1,2022-10-15 +Rutgers-Camden,1,Rutgers-Newark,1,2022-10-15 +Cal Lutheran,1,Claremont-Mudd-Scripps,1,2022-10-15 +Buena Vista,0,Coe,2,2022-10-15 +Northwestern (Minn.),3,Crown,0,2022-10-15 +Case Western Reserve,1,Chicago,0,2022-10-16 +University of Dallas,0,Trinity (Texas),6,2022-10-16 +Amherst,9,New England College,0,2022-10-16 +Carnegie Mellon,1,Washington U.,0,2022-10-16 +Brandeis,1,Emory,3,2022-10-16 +Pacific Lutheran,2,Linfield,1,2022-10-16 +Saint Benedict,0,Wartburg,1,2022-10-16 +George Fox,0,Puget Sound,2,2022-10-16 +Eastern Connecticut,0,Williams,3,2022-10-16 +Birmingham-Southern,2,Centre,6,2022-10-16 +Millsaps,0,Sewanee,1,2022-10-16 +Rose-Hulman,3,Bluffton,0,2022-10-16 +Rhodes,3,Oglethorpe,0,2022-10-16 +Austin,0,Schreiner,1,2022-10-16 +New York University,0,Rochester,1,2022-10-16 +Alfred,0,Hartwick,0,2022-10-16 +Carleton,2,Macalester,2,2022-10-16 +Centenary (La.),1,Southwestern,4,2022-10-16 +Norwich,1,Dean,3,2022-10-16 +Beloit,2,Illinois College,0,2022-10-16 +Mount St. Mary,1,Hamilton,6,2022-10-16 +St. Thomas (Texas),1,Texas Lutheran,4,2022-10-16 +Saint Mary's (Minn.),2,UW-Stevens Point,0,2022-10-16 +Whitman,0,Willamette,3,2022-10-16 +Whitworth,1,Lewis and Clark,1,2022-10-16 +SUNY-Cobleskill,1,NVU-Johnson,2,2022-10-16 +Hendrix,0,Berry,7,2022-10-16 +Rockford,1,St. Norbert,3,2022-10-16 +Medgar Evers,0,St. Elizabeth,9,2022-10-17 +Nichols,4,Mount Holyoke,4,2022-10-17 +Bryn Athyn,7,Keystone,0,2022-10-17 +St. Joseph's (Maine),1,Bates,2,2022-10-17 +Fitchburg State,2,Roger Williams,6,2022-10-17 +Stockton,1,Washington College,1,2022-10-17 +MIT,1,Trinity (Conn.),0,2022-10-17 +William Paterson,5,Pratt,0,2022-10-17 +Agnes Scott,0,Huntingdon,2,2022-10-17 +Misericordia,9,Wilkes,0,2022-10-18 +Messiah,2,Hood,0,2022-10-18 +Connecticut College,1,Amherst,3,2022-10-18 +Calvin,4,Kalamazoo,1,2022-10-18 +Mass-Boston,1,Tufts,4,2022-10-18 +NVU-Lyndon,0,New England College,3,2022-10-18 +Eastern Nazarene,1,Mitchell,2,2022-10-18 +Elizabethtown,0,McDaniel,2,2022-10-18 +Stevens,1,DeSales,0,2022-10-18 +DePauw,0,Denison,5,2022-10-18 +Sarah Lawrence,1,Farmingdale State,1,2022-10-18 +Olivet,1,St. Mary's (Ind.),0,2022-10-18 +Wells,0,Cazenovia,2,2022-10-18 +Potsdam State,0,Castleton,3,2022-10-18 +Trine,5,Alma,0,2022-10-18 +Hiram,0,Wooster,6,2022-10-18 +Randolph-Macon,1,Randolph,0,2022-10-18 +Lycoming,1,King's,0,2022-10-18 +Minnesota-Morris,0,St. Catherine,8,2022-10-18 +Rockford,0,Aurora,3,2022-10-18 +Principia,1,Spalding,3,2022-10-18 +Piedmont,0,Berry,0,2022-10-18 +Salem State,0,Keene State,2,2022-10-18 +Wesleyan,3,Western Connecticut,0,2022-10-18 +York (Pa.),1,Stevenson,1,2022-10-18 +Goucher,0,Penn State-Harrisburg,1,2022-10-18 +Wittenberg,0,Ohio Wesleyan,1,2022-10-18 +Kenyon,1,Oberlin,0,2022-10-18 +Westfield State,2,Mass-Dartmouth,0,2022-10-18 +Maine Maritime,0,Southern Maine,7,2022-10-18 +Adrian,2,Albion,0,2022-10-18 +Widener,1,Albright,0,2022-10-18 +St. Joseph (Conn.),0,Johnson and Wales,3,2022-10-18 +Nazareth,1,St. John Fisher,1,2022-10-18 +Eastern,0,Alvernia,0,2022-10-18 +Arcadia,1,FDU-Florham,2,2022-10-18 +Franciscan,3,Geneva,4,2022-10-18 +SUNY-Old Westbury,0,Mount St. Mary,6,2022-10-18 +Mount St. Vincent,5,SUNY-Maritime,0,2022-10-18 +Claremont-Mudd-Scripps,1,Caltech,0,2022-10-18 +St. Joseph's (L.I.),5,St. Joseph's (Bklyn.),2,2022-10-18 +Bethany,3,Thiel,1,2022-10-18 +Drew,4,Delaware Valley,0,2022-10-18 +Beloit,0,UW-Platteville,2,2022-10-18 +St. Scholastica,0,UW-Superior,0,2022-10-18 +Johns Hopkins,4,Penn State-Berks,0,2022-10-19 +Mary Washington,0,Christopher Newport,1,2022-10-19 +Loras,7,Coe,0,2022-10-19 +Dubuque,0,UW-La Crosse,7,2022-10-19 +TCNJ,0,Rowan,0,2022-10-19 +Lynchburg,0,Virginia Wesleyan,0,2022-10-19 +William Paterson,0,Montclair State,3,2022-10-19 +Luther,0,Wartburg,3,2022-10-19 +Bridgewater (Va.),1,Washington and Lee,2,2022-10-19 +Oneonta State,0,Cortland State,6,2022-10-19 +Lehman,0,John Jay,8,2022-10-19 +William Peace,3,North Carolina Wesleyan,2,2022-10-19 +Kean,4,New Jersey City,1,2022-10-19 +Babson,2,Wellesley,1,2022-10-19 +Anna Maria,0,Lasell,5,2022-10-19 +Oswego State,2,Fredonia State,1,2022-10-19 +Albertus Magnus,1,Dean,0,2022-10-19 +Penn State-Behrend,5,Hilbert,0,2022-10-19 +Penn State-Altoona,0,Pitt-Greensburg,2,2022-10-19 +Illinois Tech,4,Concordia-Chicago,0,2022-10-19 +Lesley,3,Maine-Farmington,1,2022-10-19 +Roger Williams,3,Salve Regina,4,2022-10-19 +Gordon,2,Nichols,1,2022-10-19 +Manchester,0,Anderson,5,2022-10-19 +Allegheny,1,St. Vincent,1,2022-10-19 +Colby,0,Bowdoin,1,2022-10-19 +Transylvania,5,Earlham,0,2022-10-19 +Alfred State,6,Pitt-Bradford,0,2022-10-19 +Bryn Mawr,1,Haverford,1,2022-10-19 +Catholic,0,Gettysburg,3,2022-10-19 +Baldwin Wallace,4,Heidelberg,0,2022-10-19 +Gwynedd-Mercy,0,Centenary (N.J.),7,2022-10-19 +University of New England,3,Wentworth,2,2022-10-19 +Keuka,0,Utica,0,2022-10-19 +Endicott,0,Curry,0,2022-10-19 +Ursinus,3,Penn State-Abington,0,2022-10-19 +Cabrini,0,Washington College,5,2022-10-19 +Immaculata,0,Marywood,4,2022-10-19 +Trinity (D.C.),5,Notre Dame (Md.),9,2022-10-19 +UW-Stout,4,UW-River Falls,2,2022-10-19 +UW-Eau Claire,2,UW-Stevens Point,0,2022-10-19 +Lebanon Valley,1,Franklin and Marshall,2,2022-10-19 +Agnes Scott,0,Covenant,1,2022-10-19 +Illinois College,1,Monmouth,1,2022-10-19 +Elmira,0,Medaille,0,2022-10-19 +Washington and Jefferson,0,Westminster (Pa.),1,2022-10-19 +Rhodes,1,Miss. U. for Women,0,2022-10-19 +Saint Mary's (Minn.),2,Grinnell,0,2022-10-19 +Edgewood,0,Concordia (Wis.),1,2022-10-19 +Clark,2,Emerson,0,2022-10-19 +SUNY-Cobleskill,0,SUNY Delhi,4,2022-10-19 +Coast Guard,0,Eastern Connecticut,4,2022-10-19 +Roanoke,1,Guilford,2,2022-10-19 +Averett,4,Sweet Briar,1,2022-10-19 +Wilson,6,Gallaudet,0,2022-10-19 +Salem,0,Brevard,1,2022-10-19 +Eureka,0,Webster,10,2022-10-19 +Greenville,0,Westminster (Mo.),1,2022-10-19 +Defiance,0,Bluffton,3,2022-10-19 +New Paltz State,2,Manhattanville,0,2022-10-19 +Capital,2,Marietta,0,2022-10-19 +Colby-Sawyer,0,Elms,0,2022-10-19 +Stockton,3,Rutgers-Camden,3,2022-10-19 +Hollins,1,Ferrum,13,2022-10-19 +Berea,1,Maryville (Tenn.),8,2022-10-19 +Western New England,1,Suffolk,0,2022-10-19 +Hartwick,1,Sage,0,2022-10-19 +MIT,0,WPI,0,2022-10-19 +Eastern Mennonite,0,Shenandoah,3,2022-10-19 +Wheaton (Mass.),1,Springfield,3,2022-10-19 +Moravian,1,Lancaster Bible,0,2022-10-19 +Geneseo State,2,Buffalo State,0,2022-10-19 +Mary Baldwin,0,Marymount,1,2022-10-19 +LaGrange,3,Wesleyan (Ga.),1,2022-10-19 +Neumann,0,St. Mary's (Md.),1,2022-10-19 +Plattsburgh State,2,Union,2,2022-10-19 +La Roche,1,Mount Aloysius,1,2022-10-19 +Regis (Mass.),0,Emmanuel,0,2022-10-19 +Smith,0,Mount Holyoke,1,2022-10-19 +Mount Union,3,Muskingum,1,2022-10-19 +Simmons,2,Norwich,0,2022-10-19 +Rose-Hulman,2,Franklin,0,2022-10-19 +Ohio Northern,2,Wilmington,0,2022-10-19 +Hanover,1,Mount St. Joseph,0,2022-10-19 +Susquehanna,1,Muhlenberg,0,2022-10-19 +Otterbein,1,John Carroll,0,2022-10-19 +Southern Virginia,1,Greensboro,0,2022-10-19 +Meredith,1,Pfeiffer,3,2022-10-19 +Rosemont,0,Bryn Athyn,7,2022-10-19 +Waynesburg,0,Grove City,4,2022-10-19 +Blackburn,0,Fontbonne,7,2022-10-19 +Rivier,0,St. Joseph's (Maine),6,2022-10-19 +Ramapo,1,Rutgers-Newark,3,2022-10-19 +Central,5,Buena Vista,0,2022-10-19 +Houghton,0,Alfred,0,2022-10-19 +Millikin,1,North Central (Ill.),1,2022-10-19 +Augustana,2,Wheaton (Ill.),1,2022-10-19 +North Park,0,Carthage,1,2022-10-19 +Illinois Wesleyan,6,Elmhurst,0,2022-10-19 +Wisconsin Lutheran,3,Benedictine,5,2022-10-19 +UW-Whitewater,0,UW-Oshkosh,0,2022-10-19 +Marian,3,Lakeland,0,2022-10-19 +MSOE,3,St. Norbert,0,2022-10-19 +Bethany Lutheran,3,Crown,1,2022-10-19 +Lawrence,0,Carroll,6,2022-10-19 +Simpson,7,Nebraska Wesleyan,0,2022-10-19 +Pomona-Pitzer,0,Cal Lutheran,2,2022-10-19 +Occidental,1,Redlands,0,2022-10-19 +McMurry,0,Mary Hardin-Baylor,4,2022-10-20 +Emory,1,Piedmont,0,2022-10-20 +East Texas Baptist,1,University of the Ozarks,2,2022-10-20 +Alvernia,6,Clarks Summit,0,2022-10-20 +NVU-Johnson,1,NVU-Lyndon,1,2022-10-20 +Warren Wilson,1,Bob Jones,5,2022-10-20 +Maranatha Baptist,2,Mount Mary,2,2022-10-20 +Martin Luther,1,Minnesota-Morris,0,2022-10-20 +New England College,0,Keene State,5,2022-10-20 +LeTourneau,0,Texas-Dallas,0,2022-10-20 +Hardin-Simmons,2,Concordia (Texas),1,2022-10-20 +Huntingdon,1,Belhaven,5,2022-10-20 +Chicago,0,Illinois Tech,3,2022-10-20 +Asbury,0,Case Western Reserve,11,2022-10-21 +Trinity (Texas),3,St. Thomas (Texas),0,2022-10-21 +MCLA,1,Salem State,2,2022-10-21 +Fontbonne,9,Eureka,0,2022-10-21 +Northland,0,Northwestern (Minn.),1,2022-10-21 +UW-Superior,5,North Central (Minn.),0,2022-10-21 +Roanoke,1,Randolph-Macon,2,2022-10-21 +Texas Lutheran,3,University of Dallas,1,2022-10-21 +Worcester State,4,Framingham State,2,2022-10-21 +FDU-Florham,1,King's,1,2022-10-21 +Southwestern,2,Austin,0,2022-10-21 +Schreiner,1,Centenary (La.),0,2022-10-21 +Misericordia,3,Stevens,2,2022-10-22 +Johns Hopkins,4,Muhlenberg,0,2022-10-22 +Christopher Newport,1,Mary Washington,0,2022-10-22 +Albright,0,Messiah,7,2022-10-22 +Amherst,1,Hamilton,0,2022-10-22 +Salisbury,3,Carnegie Mellon,5,2022-10-22 +Loras,6,Buena Vista,0,2022-10-22 +Vassar,0,William Smith,0,2022-10-22 +UW-Oshkosh,0,UW-La Crosse,3,2022-10-22 +Hardin-Simmons,0,Mary Hardin-Baylor,1,2022-10-22 +Rowan,2,William Paterson,0,2022-10-22 +Randolph,0,Virginia Wesleyan,3,2022-10-22 +Montclair State,3,Rutgers-Camden,0,2022-10-22 +Nebraska Wesleyan,0,Wartburg,5,2022-10-22 +TCNJ,3,New Jersey City,0,2022-10-22 +Lewis and Clark,0,Puget Sound,2,2022-10-22 +Washington and Lee,4,Averett,0,2022-10-22 +Middlebury,1,Tufts,1,2022-10-22 +Brockport State,0,Cortland State,2,2022-10-22 +Williams,1,Trinity (Conn.),2,2022-10-22 +Maine-Farmington,1,Thomas,1,2022-10-22 +Suffolk,2,Gordon,4,2022-10-22 +Fitchburg State,1,Westfield State,4,2022-10-22 +Salve Regina,0,Curry,0,2022-10-22 +Lynchburg,0,Bridgewater (Va.),1,2022-10-22 +Clarks Summit,10,Valley Forge,0,2022-10-22 +Shenandoah,12,Hollins,0,2022-10-22 +Bates,1,Connecticut College,1,2022-10-22 +Eastern Nazarene,0,Lesley,6,2022-10-22 +Hope,1,Olivet,0,2022-10-22 +Castleton,2,Mass-Dartmouth,1,2022-10-22 +Grove City,3,St. Vincent,2,2022-10-22 +Eastern Connecticut,0,Plymouth State,0,2022-10-22 +Gettysburg,1,Haverford,0,2022-10-22 +Colby-Sawyer,0,Emmanuel,0,2022-10-22 +Potsdam State,0,Geneseo State,3,2022-10-22 +Manhattanville,0,Farmingdale State,0,2022-10-22 +Ohio Wesleyan,1,Denison,1,2022-10-22 +Wesleyan,1,Bowdoin,0,2022-10-22 +Mount Holyoke,0,WPI,4,2022-10-22 +St. Joseph (Conn.),0,Lasell,3,2022-10-22 +Keuka,0,Elmira,1,2022-10-22 +Massachusetts Maritime,0,Bridgewater State,1,2022-10-22 +Oberlin,1,DePauw,4,2022-10-22 +Wentworth,3,Endicott,2,2022-10-22 +Mount St. Mary,1,St. Joseph's (L.I.),1,2022-10-22 +Brooklyn,4,Lehman,0,2022-10-22 +DeSales,0,Lycoming,1,2022-10-22 +Thiel,0,Westminster (Pa.),8,2022-10-22 +SUNY-Old Westbury,3,SUNY-Purchase,1,2022-10-22 +York (Pa.),3,Eastern,0,2022-10-22 +Western Connecticut,0,Mass-Boston,3,2022-10-22 +Cairn,0,Wilson,4,2022-10-22 +Clark,1,Wheaton (Mass.),0,2022-10-22 +Buffalo State,0,Plattsburgh State,4,2022-10-22 +Marywood,1,Neumann,1,2022-10-22 +Oswego State,2,New Paltz State,2,2022-10-22 +Notre Dame (Md.),0,Cedar Crest,12,2022-10-22 +Washington and Jefferson,2,Bethany,0,2022-10-22 +Simmons,4,Dean,4,2022-10-22 +Piedmont,3,Berea,0,2022-10-22 +Earlham,1,Manchester,0,2022-10-22 +Coast Guard,0,MIT,4,2022-10-22 +Bluffton,0,Hanover,4,2022-10-22 +St. Mary's (Md.),0,Penn State-Berks,2,2022-10-22 +Emerson,0,Wellesley,0,2022-10-22 +Ramapo,0,Stockton,3,2022-10-22 +Anderson,1,Mount St. Joseph,0,2022-10-22 +Brevard,0,Mary Baldwin,1,2022-10-22 +Franklin,3,Defiance,0,2022-10-22 +Keene State,2,Southern Maine,6,2022-10-22 +Oneonta State,1,Fredonia State,0,2022-10-22 +Muskingum,0,Ohio Northern,6,2022-10-22 +Smith,0,Babson,1,2022-10-22 +Transylvania,1,Rose-Hulman,1,2022-10-22 +Mount St. Vincent,0,Wilkes,2,2022-10-22 +Illinois Wesleyan,2,North Central (Ill.),3,2022-10-22 +Westminster (Mo.),0,Spalding,0,2022-10-22 +Swarthmore,1,Dickinson,2,2022-10-22 +Immaculata,1,Centenary (N.J.),2,2022-10-22 +Washington College,2,Bryn Mawr,1,2022-10-22 +Marymount,0,Cabrini,2,2022-10-22 +Greensboro,0,Meredith,0,2022-10-22 +Marietta,0,Heidelberg,2,2022-10-22 +Pfeiffer,1,Salem,2,2022-10-22 +Maryville (Tenn.),4,LaGrange,0,2022-10-22 +Nazareth,0,Hartwick,1,2022-10-22 +Union,1,Clarkson,2,2022-10-22 +Bard,0,RIT,4,2022-10-22 +RPI,0,Ithaca,1,2022-10-22 +Wesleyan (Ga.),1,Agnes Scott,1,2022-10-22 +Webster,5,Principia,0,2022-10-22 +Augustana,0,Carroll,0,2022-10-22 +McMurry,2,Concordia (Texas),0,2022-10-22 +Howard Payne,1,Sul Ross State,2,2022-10-22 +Augsburg,0,St. Catherine,2,2022-10-22 +Millsaps,0,Birmingham-Southern,1,2022-10-22 +Marian,8,Alverno,0,2022-10-22 +Hamline,0,Saint Mary's (Minn.),2,2022-10-22 +UW-River Falls,0,UW-Eau Claire,4,2022-10-22 +St. Scholastica,0,Carleton,4,2022-10-22 +Greenville,9,Blackburn,0,2022-10-22 +Macalester,1,Saint Benedict,2,2022-10-22 +Dubuque,1,Simpson,5,2022-10-22 +Centre,1,Sewanee,2,2022-10-22 +Gustavus Adolphus,1,Bethel,0,2022-10-22 +UC Santa Cruz,0,Claremont-Mudd-Scripps,1,2022-10-22 +Maine Maritime,0,Husson,6,2022-10-22 +Roger Williams,1,Western New England,0,2022-10-22 +NVU-Johnson,1,SUNY Poly,3,2022-10-22 +Oglethorpe,0,Berry,0,2022-10-22 +Grinnell,2,Ripon,0,2022-10-22 +Knox,0,Lake Forest,4,2022-10-22 +Cornell,2,Lawrence,0,2022-10-22 +Monmouth,0,Beloit,3,2022-10-22 +Guilford,1,Eastern Mennonite,0,2022-10-22 +Rivier,0,Elms,1,2022-10-22 +Kalamazoo,1,Adrian,1,2022-10-22 +Alfred State,1,La Roche,0,2022-10-22 +Sage,6,Medaille,1,2022-10-22 +St. Elizabeth,0,Bryn Athyn,4,2022-10-22 +Skidmore,2,St. Lawrence,0,2022-10-22 +University of New England,3,Nichols,1,2022-10-22 +Wisconsin Lutheran,2,Rockford,0,2022-10-22 +UW-Whitewater,3,UW-Stout,0,2022-10-22 +Linfield,2,Willamette,1,2022-10-22 +George Fox,1,Whitworth,2,2022-10-22 +Pacific,0,Whitman,3,2022-10-22 +Pitt-Bradford,0,Penn State-Altoona,4,2022-10-22 +Hilbert,2,Mount Aloysius,1,2022-10-22 +Concordia (Wis.),3,Concordia-Chicago,0,2022-10-22 +Regis (Mass.),1,St. Joseph's (Maine),2,2022-10-22 +SUNY Delhi,2,SUNY Canton,0,2022-10-22 +Penn State-Abington,0,Penn College,11,2022-10-22 +Bethany Lutheran,3,Minnesota-Morris,1,2022-10-22 +Edgewood,0,Dominican,4,2022-10-22 +Widener,0,Hood,1,2022-10-22 +Albertus Magnus,4,Norwich,1,2022-10-22 +Goucher,0,Elizabethtown,0,2022-10-22 +Mitchell,0,New England College,0,2022-10-22 +Catholic,0,Moravian,0,2022-10-22 +Rosemont,2,Keystone,2,2022-10-22 +Drew,2,Juniata,1,2022-10-22 +Scranton,1,Susquehanna,0,2022-10-22 +Penn State-Harrisburg,4,Morrisville State,0,2022-10-22 +St. Mary's (Ind.),2,Alma,3,2022-10-22 +Rutgers-Newark,0,Kean,0,2022-10-22 +John Jay,2,CCNY,1,2022-10-22 +Utica,3,Houghton,0,2022-10-22 +Delaware Valley,0,Arcadia,5,2022-10-22 +Cazenovia,3,SUNY-Cobleskill,0,2022-10-22 +LeTourneau,1,University of the Ozarks,1,2022-10-22 +Luther,1,Central,1,2022-10-22 +Gallaudet,0,Lancaster Bible,7,2022-10-22 +Kenyon,6,Hiram,0,2022-10-22 +Pitt-Greensburg,3,Penn State-Behrend,1,2022-10-22 +Chatham,3,Geneva,2,2022-10-22 +UW-Superior,4,Northwestern (Minn.),1,2022-10-22 +Northland,5,North Central (Minn.),0,2022-10-22 +Martin Luther,0,Crown,0,2022-10-22 +Concordia-Moorhead,0,St. Olaf,2,2022-10-22 +Trine,1,Albion,1,2022-10-22 +Sweet Briar,0,Ferrum,9,2022-10-22 +Franciscan,2,Allegheny,0,2022-10-22 +Chapman,1,Caltech,1,2022-10-22 +Whittier,0,Pomona-Pitzer,1,2022-10-22 +Alfred,0,St. John Fisher,0,2022-10-22 +Ursinus,1,Franklin and Marshall,2,2022-10-22 +Wooster,1,Wittenberg,1,2022-10-22 +North Carolina Wesleyan,1,Methodist,5,2022-10-22 +Rhodes,2,Hendrix,0,2022-10-22 +Wheaton (Ill.),0,North Park,1,2022-10-22 +Carthage,3,Millikin,0,2022-10-22 +East Texas Baptist,0,Texas-Dallas,1,2022-10-22 +St. Norbert,3,Benedictine,2,2022-10-22 +Covenant,1,Belhaven,0,2022-10-22 +Anna Maria,0,Johnson and Wales,8,2022-10-22 +Lebanon Valley,2,Stevenson,0,2022-10-22 +Capital,3,John Carroll,0,2022-10-22 +Southern Virginia,0,William Peace,1,2022-10-22 +Otterbein,2,Baldwin Wallace,0,2022-10-22 +SUNY-Maritime,1,St. Joseph's (Bklyn.),6,2022-10-22 +Wilmington,3,Mount Union,0,2022-10-22 +Lakeland,0,Illinois Tech,8,2022-10-22 +La Verne,0,Occidental,0,2022-10-22 +MSOE,5,Aurora,0,2022-10-22 +UW-Stevens Point,1,UW-Platteville,0,2022-10-22 +Trinity (Texas),4,Centenary (La.),0,2022-10-23 +Willamette,1,Pacific Lutheran,4,2022-10-23 +SUNY Poly,6,Wells,0,2022-10-23 +Hamilton,10,Cazenovia,0,2022-10-23 +Pratt,3,New Jersey City,6,2022-10-23 +Brandeis,5,Southern Maine,3,2022-10-23 +Texas Lutheran,4,Austin,0,2022-10-23 +Shenandoah,0,Roanoke,2,2022-10-23 +Rhode Island College,0,Maine-Farmington,3,2022-10-23 +Southwestern,3,University of Dallas,0,2022-10-23 +UW-Eau Claire,4,St. Norbert,0,2022-10-23 +Mount Mary,0,Lawrence,9,2022-10-23 +Linfield,1,Lewis and Clark,1,2022-10-23 +George Fox,2,Whitman,0,2022-10-23 +Pacific,0,Whitworth,1,2022-10-23 +Grinnell,2,Marian,0,2022-10-23 +Finlandia,0,UW-Platteville,5,2022-10-23 +Schreiner,1,St. Thomas (Texas),1,2022-10-23 +Mount St. Vincent,7,Yeshiva,0,2022-10-24 +John Jay,2,Ramapo,1,2022-10-24 +Piedmont,2,Asbury,0,2022-10-24 +SUNY-Old Westbury,7,Lehman,0,2022-10-24 +NVU-Lyndon,0,MCLA,0,2022-10-24 +New York University,8,Kean,0,2022-10-24 +Amherst,1,Trinity (Conn.),0,2022-10-25 +Wartburg,0,Loras,2,2022-10-25 +Bowdoin,2,Tufts,0,2022-10-25 +Williams,1,Middlebury,0,2022-10-25 +Stevenson,0,Salisbury,1,2022-10-25 +Bates,1,Colby,1,2022-10-25 +Lesley,4,Mitchell,0,2022-10-25 +Wesleyan (Ga.),0,Agnes Scott,1,2022-10-25 +CCNY,9,Pratt,1,2022-10-25 +Suffolk,0,Salve Regina,2,2022-10-25 +Nebraska Wesleyan,0,Central,5,2022-10-25 +North Carolina Wesleyan,3,Salem,1,2022-10-25 +Brevard,2,Pfeiffer,0,2022-10-25 +Endicott,2,University of New England,0,2022-10-25 +Ripon,3,Mount Mary,0,2022-10-25 +UW-River Falls,0,Simpson,4,2022-10-25 +Macalester,0,Saint Mary's (Minn.),2,2022-10-25 +St. Scholastica,1,Saint Benedict,3,2022-10-25 +Carleton,0,St. Catherine,0,2022-10-25 +Bethel,2,Concordia-Moorhead,0,2022-10-25 +Hamline,1,Gustavus Adolphus,0,2022-10-25 +SUNY Poly,4,Morrisville State,1,2022-10-25 +Hilbert,1,Alfred State,2,2022-10-25 +St. Vincent,0,Chatham,4,2022-10-25 +Ithaca,2,RIT,1,2022-10-25 +Greensboro,1,Methodist,3,2022-10-25 +Plattsburgh State,4,SUNY Canton,0,2022-10-25 +Fredonia State,1,Alfred,1,2022-10-25 +William Peace,3,Meredith,1,2022-10-25 +Oneonta State,0,Hartwick,0,2022-10-25 +Millsaps,1,Belhaven,0,2022-10-25 +La Roche,0,Penn State-Altoona,4,2022-10-25 +Skidmore,2,Union,1,2022-10-25 +Pitt-Greensburg,4,Mount Aloysius,0,2022-10-25 +Wesleyan,1,Connecticut College,1,2022-10-25 +Lancaster Bible,1,Goucher,0,2022-10-25 +Sweet Briar,1,Eastern Mennonite,10,2022-10-25 +Bryn Mawr,0,Swarthmore,5,2022-10-25 +Johnson and Wales,4,Albertus Magnus,2,2022-10-25 +Pitt-Bradford,1,Penn State-Behrend,6,2022-10-25 +Curry,0,Gordon,2,2022-10-25 +St. Lawrence,1,Clarkson,2,2022-10-25 +Nichols,4,Roger Williams,6,2022-10-25 +Mary Baldwin,1,Southern Virginia,2,2022-10-25 +Principia,1,Fontbonne,5,2022-10-25 +New England College,3,Eastern Nazarene,1,2022-10-25 +Illinois Tech,2,Rockford,0,2022-10-25 +Concordia (Wis.),2,UW-Oshkosh,1,2022-10-25 +Illinois Wesleyan,2,Washington U.,3,2022-10-25 +Coe,0,Luther,4,2022-10-25 +Buena Vista,0,Dubuque,5,2022-10-25 +St. Olaf,1,Augsburg,0,2022-10-25 +Johns Hopkins,4,Dickinson,0,2022-10-26 +Messiah,5,Lebanon Valley,0,2022-10-26 +Albion,0,Calvin,2,2022-10-26 +UW-La Crosse,2,UW-Platteville,0,2022-10-26 +Stockton,0,Rowan,0,2022-10-26 +Virginia Wesleyan,4,Randolph-Macon,1,2022-10-26 +Kean,1,Montclair State,3,2022-10-26 +Pacific Lutheran,1,Puget Sound,0,2022-10-26 +Rutgers-Camden,1,TCNJ,6,2022-10-26 +Washington and Lee,0,Lynchburg,0,2022-10-26 +Emerson,0,Smith,0,2022-10-26 +Elms,1,St. Joseph (Conn.),2,2022-10-26 +WPI,1,Babson,2,2022-10-26 +Westfield State,5,Plymouth State,0,2022-10-26 +Randolph,1,Guilford,3,2022-10-26 +Wellesley,1,Wheaton (Mass.),1,2022-10-26 +St. Elizabeth,3,Clarks Summit,0,2022-10-26 +William Paterson,0,Ramapo,3,2022-10-26 +St. Joseph's (Maine),2,Colby-Sawyer,1,2022-10-26 +Concordia-Chicago,0,Dominican,3,2022-10-26 +Shenandoah,1,Bridgewater (Va.),7,2022-10-26 +Wentworth,1,Western New England,3,2022-10-26 +Cedar Crest,9,Valley Forge,0,2022-10-26 +Bluffton,4,Manchester,0,2022-10-26 +Washington College,1,McDaniel,2,2022-10-26 +Westminster (Pa.),3,Bethany,0,2022-10-26 +Anderson,2,Earlham,2,2022-10-26 +Denison,0,Kenyon,2,2022-10-26 +Albright,2,Eastern,1,2022-10-26 +Mount St. Joseph,7,Defiance,0,2022-10-26 +Adrian,6,Alma,2,2022-10-26 +Farmingdale State,1,Mount St. Vincent,3,2022-10-26 +Marymount,1,Immaculata,1,2022-10-26 +Rosemont,0,Wilson,6,2022-10-26 +Hollins,0,Roanoke,11,2022-10-26 +St. John Fisher,4,Keuka,0,2022-10-26 +Centenary (N.J.),0,Neumann,1,2022-10-26 +Utica,0,Sage,1,2022-10-26 +Brockport State,2,Nazareth,1,2022-10-26 +DeSales,4,Delaware Valley,1,2022-10-26 +Lawrence,0,Beloit,2,2022-10-26 +North Central (Minn.),0,Martin Luther,7,2022-10-26 +Monmouth,1,Cornell,1,2022-10-26 +Keystone,3,Cairn,4,2022-10-26 +Lasell,7,Rivier,1,2022-10-26 +Lakeland,0,Concordia (Wis.),6,2022-10-26 +Aurora,0,Benedictine,0,2022-10-26 +Illinois College,2,Knox,1,2022-10-26 +Hiram,0,Ohio Wesleyan,3,2022-10-26 +Manhattanville,0,St. Joseph's (L.I.),1,2022-10-26 +Lesley,1,Fitchburg State,1,2022-10-26 +Mount Holyoke,0,Coast Guard,1,2022-10-26 +Trinity (D.C.),2,Gallaudet,1,2022-10-26 +Bard,0,Western Connecticut,4,2022-10-26 +Notre Dame (Md.),0,Bryn Athyn,11,2022-10-26 +Grove City,2,Washington and Jefferson,0,2022-10-26 +Geneva,1,Waynesburg,2,2022-10-26 +Blackburn,0,Westminster (Mo.),8,2022-10-26 +Olivet,0,Trine,4,2022-10-26 +Cabrini,7,Gwynedd-Mercy,0,2022-10-26 +Alvernia,1,Widener,4,2022-10-26 +Scranton,2,Penn State-Berks,1,2022-10-26 +Mass-Boston,1,Bridgewater State,0,2022-10-26 +Heidelberg,0,Capital,5,2022-10-26 +St. Joseph's (Bklyn.),0,Sarah Lawrence,5,2022-10-26 +Baldwin Wallace,0,Ohio Northern,2,2022-10-26 +Franklin,0,Transylvania,5,2022-10-26 +Springfield,1,Clark,2,2022-10-26 +Hanover,1,Rose-Hulman,1,2022-10-26 +Marietta,0,Otterbein,5,2022-10-26 +John Carroll,4,Mount Union,3,2022-10-26 +Mass-Dartmouth,1,Worcester State,1,2022-10-26 +Franklin and Marshall,1,Gettysburg,1,2022-10-26 +Norwich,0,Anna Maria,2,2022-10-26 +Ferrum,5,Averett,2,2022-10-26 +Mary Washington,3,Catholic,0,2022-10-26 +Muskingum,1,Wilmington,6,2022-10-26 +St. Mary's (Ind.),0,Hope,5,2022-10-26 +Emmanuel,1,Simmons,0,2022-10-26 +Marywood,1,Penn College,6,2022-10-26 +Hood,0,York (Pa.),2,2022-10-26 +Medaille,0,Houghton,3,2022-10-26 +Vassar,0,RPI,0,2022-10-26 +Stevens,4,Arcadia,1,2022-10-26 +Wilkes,0,FDU-Florham,2,2022-10-26 +Thiel,1,Allegheny,3,2022-10-26 +SUNY-Maritime,1,SUNY-Old Westbury,5,2022-10-26 +SUNY-Purchase,0,Mount St. Mary,9,2022-10-26 +Dean,0,Regis (Mass.),3,2022-10-26 +Wittenberg,0,DePauw,1,2022-10-26 +Lycoming,2,Juniata,1,2022-10-26 +Muhlenberg,1,Ursinus,4,2022-10-26 +New Jersey City,1,Rutgers-Newark,1,2022-10-26 +North Central (Ill.),1,Augustana,1,2022-10-26 +North Park,0,Carroll,1,2022-10-26 +Carthage,1,Elmhurst,0,2022-10-26 +Wheaton (Ill.),4,Millikin,1,2022-10-26 +Eureka,0,Greenville,9,2022-10-26 +Alverno,0,St. Norbert,9,2022-10-26 +Wisconsin Lutheran,1,MSOE,2,2022-10-26 +Marian,1,Edgewood,1,2022-10-26 +Northwestern (Minn.),3,Bethany Lutheran,2,2022-10-26 +Willamette,0,Lewis and Clark,0,2022-10-26 +Claremont-Mudd-Scripps,3,Whittier,3,2022-10-26 +Pomona-Pitzer,3,Redlands,1,2022-10-26 +Chapman,1,Occidental,0,2022-10-26 +Cal Lutheran,0,La Verne,0,2022-10-26 +King's,1,Misericordia,6,2022-10-27 +Spalding,0,Webster,2,2022-10-27 +Texas-Dallas,0,McMurry,0,2022-10-27 +Sul Ross State,1,LeTourneau,0,2022-10-27 +Howard Payne,1,East Texas Baptist,3,2022-10-27 +University of the Ozarks,0,Hardin-Simmons,3,2022-10-27 +Yeshiva,0,Sarah Lawrence,9,2022-10-27 +Rochester,2,Case Western Reserve,2,2022-10-28 +Southwestern,0,Trinity (Texas),5,2022-10-28 +Emory,1,Carnegie Mellon,3,2022-10-28 +Texas Lutheran,2,Schreiner,0,2022-10-28 +Rhode Island College,0,Keene State,2,2022-10-28 +Meredith,0,Southern Virginia,5,2022-10-28 +Chicago,1,New York University,2,2022-10-28 +Worcester State,4,Massachusetts Maritime,1,2022-10-28 +Centenary (La.),0,Austin,2,2022-10-28 +Washington U.,3,Brandeis,2,2022-10-28 +Crown,0,Northland,1,2022-10-28 +Minnesota-Morris,1,UW-Superior,3,2022-10-28 +Redlands,0,Whittier,4,2022-10-28 +Misericordia,6,Delaware Valley,0,2022-10-29 +Franklin and Marshall,3,Johns Hopkins,6,2022-10-29 +Salisbury,1,Christopher Newport,1,2022-10-29 +Messiah,6,Widener,0,2022-10-29 +Connecticut College,0,Amherst,3,2022-10-29 +St. Lawrence,0,William Smith,0,2022-10-29 +UW-La Crosse,2,UW-Whitewater,1,2022-10-29 +Mary Hardin-Baylor,3,Concordia (Texas),1,2022-10-29 +Roanoke,0,Virginia Wesleyan,4,2022-10-29 +Whitman,0,Pacific Lutheran,2,2022-10-29 +Stockton,0,TCNJ,1,2022-10-29 +Whitworth,1,Puget Sound,2,2022-10-29 +Ferrum,1,Washington and Lee,9,2022-10-29 +Tufts,2,Williams,0,2022-10-29 +Southern Maine,0,Western Connecticut,1,2022-10-29 +Babson,2,Clark,0,2022-10-29 +Framingham State,0,Fitchburg State,4,2022-10-29 +St. Thomas (Texas),1,University of Dallas,2,2022-10-29 +St. John Fisher,2,Elmira,1,2022-10-29 +Lehman,0,John Jay,4,2022-10-29 +Kalamazoo,0,Hope,1,2022-10-29 +McDaniel,0,Ursinus,1,2022-10-29 +Bridgewater State,3,MCLA,0,2022-10-29 +New England College,0,Lesley,5,2022-10-29 +Haverford,2,Swarthmore,1,2022-10-29 +King's,1,DeSales,2,2022-10-29 +NVU-Johnson,0,SUNY Delhi,2,2022-10-29 +Bluffton,0,Anderson,4,2022-10-29 +Colby-Sawyer,0,Lasell,4,2022-10-29 +Trinity (Conn.),2,Middlebury,1,2022-10-29 +Albion,0,Adrian,0,2022-10-29 +Wesleyan,0,Bowdoin,0,2022-10-29 +Hendrix,0,Rhodes,2,2022-10-29 +University of the Ozarks,0,McMurry,0,2022-10-29 +Keystone,8,Notre Dame (Md.),0,2022-10-29 +Mount St. Mary,2,Farmingdale State,3,2022-10-29 +Mass-Dartmouth,0,Eastern Connecticut,0,2022-10-29 +Wellesley,3,Mount Holyoke,1,2022-10-29 +John Carroll,7,Muskingum,1,2022-10-29 +Wittenberg,0,Kenyon,2,2022-10-29 +Randolph-Macon,0,Lynchburg,2,2022-10-29 +Bryn Athyn,2,Wilson,1,2022-10-29 +Guilford,18,Sweet Briar,1,2022-10-29 +Medaille,0,Keuka,3,2022-10-29 +Penn College,6,Wells,1,2022-10-29 +Methodist,2,Pfeiffer,1,2022-10-29 +St. Elizabeth,0,Cedar Crest,8,2022-10-29 +St. Mary's (Md.),0,Penn State-Harrisburg,1,2022-10-29 +Wooster,0,Denison,1,2022-10-29 +Springfield,1,Emerson,2,2022-10-29 +MIT,4,Smith,0,2022-10-29 +Eastern,1,Lancaster Bible,2,2022-10-29 +Arcadia,1,Wilkes,1,2022-10-29 +Salem,0,Greensboro,0,2022-10-29 +Oswego State,1,Plattsburgh State,0,2022-10-29 +Maine-Presque Isle,1,Husson,3,2022-10-29 +Oglethorpe,0,Centre,5,2022-10-29 +Brooklyn,0,CCNY,4,2022-10-29 +Washington and Jefferson,0,Grove City,2,2022-10-29 +Hilbert,0,Penn State-Altoona,7,2022-10-29 +Brockport State,2,New Paltz State,5,2022-10-29 +Eastern Mennonite,10,Hollins,0,2022-10-29 +Ohio Wesleyan,0,Oberlin,0,2022-10-29 +Ohio Northern,5,Marietta,0,2022-10-29 +Mary Baldwin,1,North Carolina Wesleyan,0,2022-10-29 +Averett,0,Shenandoah,3,2022-10-29 +Valley Forge,1,Trinity (D.C.),8,2022-10-29 +Union,0,RIT,4,2022-10-29 +RPI,0,Clarkson,0,2022-10-29 +Ithaca,0,Vassar,1,2022-10-29 +Wentworth,0,Western New England,3,2022-10-29 +Albertus Magnus,2,Emmanuel,1,2022-10-29 +Regis (Mass.),1,St. Joseph's (Maine),3,2022-10-29 +Agnes Scott,0,Piedmont,4,2022-10-29 +Edgewood,0,Concordia (Wis.),6,2022-10-29 +Augsburg,2,Bethel,3,2022-10-29 +Westminster (Mo.),0,Fontbonne,1,2022-10-29 +St. Catherine,2,St. Olaf,1,2022-10-29 +Gustavus Adolphus,0,Macalester,1,2022-10-29 +Concordia-Moorhead,3,Hamline,0,2022-10-29 +Saint Benedict,2,Carleton,2,2022-10-29 +Principia,2,Eureka,0,2022-10-29 +Webster,9,Blackburn,0,2022-10-29 +Saint Mary's (Minn.),1,St. Scholastica,0,2022-10-29 +La Verne,0,Caltech,1,2022-10-29 +Cazenovia,2,SUNY Poly,1,2022-10-29 +Bethany,0,Chatham,4,2022-10-29 +Ripon,0,Illinois College,1,2022-10-29 +Lake Forest,0,Grinnell,1,2022-10-29 +Beloit,1,Cornell,0,2022-10-29 +Lawrence,2,Monmouth,2,2022-10-29 +Westfield State,6,Salem State,1,2022-10-29 +Bridgewater (Va.),7,Randolph,0,2022-10-29 +WPI,3,Coast Guard,3,2022-10-29 +Alfred,0,Nazareth,1,2022-10-29 +Bryn Mawr,0,Mary Washington,4,2022-10-29 +Hartwick,0,Utica,1,2022-10-29 +Skidmore,2,Bard,0,2022-10-29 +Mount Aloysius,2,Alfred State,0,2022-10-29 +Gordon,0,Roger Williams,2,2022-10-29 +Manhattanville,2,St. Joseph's (L.I.),1,2022-10-29 +Sul Ross State,0,East Texas Baptist,1,2022-10-29 +UW-Oshkosh,2,UW-River Falls,1,2022-10-29 +UW-Stevens Point,2,UW-Stout,1,2022-10-29 +Millsaps,0,Sewanee,4,2022-10-29 +Willamette,4,Pacific,2,2022-10-29 +George Fox,0,Linfield,2,2022-10-29 +Sage,3,Houghton,2,2022-10-29 +Maine Maritime,2,Maine-Farmington,0,2022-10-29 +Juniata,0,Scranton,3,2022-10-29 +Elizabethtown,1,Catholic,2,2022-10-29 +Susquehanna,1,Drew,0,2022-10-29 +Moravian,1,Goucher,2,2022-10-29 +Penn State-Berks,5,Morrisville State,0,2022-10-29 +Rutgers-Camden,1,Rutgers-Newark,1,2022-10-29 +Luther,3,Dubuque,1,2022-10-29 +St. Norbert,0,Illinois Tech,2,2022-10-29 +Mass-Boston,1,Castleton,0,2022-10-29 +Northwestern (Minn.),3,Martin Luther,0,2022-10-29 +Bethany Lutheran,4,North Central (Minn.),0,2022-10-29 +LaGrange,1,Covenant,2,2022-10-29 +William Peace,1,Brevard,2,2022-10-29 +Hiram,0,DePauw,3,2022-10-29 +Hood,2,Albright,1,2022-10-29 +Lycoming,0,FDU-Florham,2,2022-10-29 +UW-Platteville,1,UW-Eau Claire,1,2022-10-29 +Spalding,1,Greenville,2,2022-10-29 +Endicott,0,University of New England,1,2022-10-29 +Salve Regina,2,Curry,4,2022-10-29 +St. Joseph (Conn.),2,Johnson and Wales,5,2022-10-29 +Lebanon Valley,0,York (Pa.),1,2022-10-29 +Birmingham-Southern,0,Berry,2,2022-10-29 +Huntingdon,0,Belhaven,2,2022-10-29 +Central,1,Simpson,2,2022-10-29 +Howard Payne,3,LeTourneau,2,2022-10-29 +Texas-Dallas,0,Hardin-Simmons,1,2022-10-29 +Mitchell,0,Eastern Nazarene,0,2022-10-29 +Heidelberg,0,Wilmington,2,2022-10-29 +Mount Union,1,Otterbein,1,2022-10-29 +Baldwin Wallace,2,Capital,2,2022-10-29 +Muhlenberg,0,Gettysburg,0,2022-10-29 +Dickinson,1,Washington College,0,2022-10-29 +Stevenson,1,Alvernia,1,2022-10-29 +Transylvania,0,Mount St. Joseph,4,2022-10-29 +Carthage,0,Wheaton (Ill.),1,2022-10-29 +Augustana,0,Carroll,1,2022-10-29 +Berea,1,Maryville (Tenn.),5,2022-10-29 +Crown,2,UW-Superior,3,2022-10-29 +Minnesota-Morris,3,Northland,0,2022-10-29 +Cal Lutheran,1,Chapman,1,2022-10-29 +Occidental,0,Claremont-Mudd-Scripps,1,2022-10-29 +Emory,0,Case Western Reserve,1,2022-10-30 +Texas Lutheran,0,Trinity (Texas),4,2022-10-30 +Rochester,0,Carnegie Mellon,1,2022-10-30 +Whitworth,1,Pacific Lutheran,2,2022-10-30 +Whitman,1,Puget Sound,2,2022-10-30 +Gallaudet,0,Penn State-Abington,6,2022-10-30 +St. Thomas (Texas),5,Austin,2,2022-10-30 +Chicago,2,Brandeis,2,2022-10-30 +Washington U.,0,New York University,2,2022-10-30 +Cazenovia,2,SUNY Delhi,4,2022-10-30 +Maine Maritime,1,Husson,3,2022-10-30 +Southwestern,0,Schreiner,0,2022-10-30 +Lewis and Clark,1,George Fox,2,2022-10-30 +Linfield,2,Pacific,2,2022-10-30 +Centenary (La.),1,University of Dallas,1,2022-10-30 +Yeshiva,0,Pratt,11,2022-10-30 +FDU-Florham,1,DeSales,5,2022-10-31 +Eureka,2,Mount Mary,2,2022-10-31 +Keystone,0,Wilson,3,2022-10-31 +Marymount,5,Centenary (N.J.),1,2022-10-31 +Immaculata,0,Neumann,1,2022-10-31 +Rosemont,0,Cairn,1,2022-10-31 +Widener,1,Hood,1,2022-10-31 +Guilford,0,Virginia Wesleyan,1,2022-11-01 +Roanoke,0,Washington and Lee,2,2022-11-01 +Keene State,0,Mass-Boston,4,2022-11-01 +Franklin and Marshall,1,McDaniel,1,2022-11-01 +Coast Guard,1,Babson,2,2022-11-01 +Roger Williams,2,Western New England,2,2022-11-01 +Macalester,1,St. Catherine,3,2022-11-01 +Saint Mary's (Minn.),1,St. Olaf,2,2022-11-01 +Concordia (Wis.),3,Dominican,1,2022-11-01 +North Carolina Wesleyan,1,Mary Baldwin,3,2022-11-01 +Albertus Magnus,0,Lasell,3,2022-11-01 +Clarkson,2,Skidmore,2,2022-11-01 +Alfred,0,Sage,1,2022-11-01 +UW-Platteville,0,UW-Stevens Point,1,2022-11-01 +Shenandoah,1,Bridgewater (Va.),1,2022-11-01 +Randolph-Macon,0,Lynchburg,3,2022-11-01 +Vassar,1,RIT,3,2022-11-01 +Greensboro,1,William Peace,0,2022-11-01 +Lehman,1,Yeshiva,1,2022-11-01 +Brevard,0,Southern Virginia,0,2022-11-01 +Wheaton (Mass.),2,Emerson,3,2022-11-01 +Salem State,0,Fitchburg State,5,2022-11-01 +UW-Oshkosh,0,UW-Eau Claire,2,2022-11-01 +Spalding,0,Westminster (Mo.),1,2022-11-01 +Principia,0,Greenville,6,2022-11-01 +Salem,2,Methodist,5,2022-11-01 +St. Joseph's (Maine),0,Johnson and Wales,1,2022-11-01 +Curry,0,University of New England,3,2022-11-01 +Framingham State,0,Worcester State,6,2022-11-01 +Springfield,0,Clark,1,2022-11-01 +Eastern Connecticut,1,Castleton,2,2022-11-01 +Catholic,0,Scranton,1,2022-11-01 +Baldwin Wallace,1,Otterbein,2,2022-11-01 +Mount Union,1,John Carroll,3,2022-11-01 +Gettysburg,0,Swarthmore,4,2022-11-01 +Hartwick,1,Utica,2,2022-11-01 +Drew,1,Susquehanna,0,2022-11-01 +Illinois Tech,3,MSOE,2,2022-11-01 +Sul Ross State,0,Concordia (Texas),3,2022-11-01 +Texas-Dallas,0,McMurry,1,2022-11-01 +DeSales,0,Misericordia,7,2022-11-02 +Widener,0,Messiah,4,2022-11-02 +Albion,1,Calvin,4,2022-11-02 +Luther,0,Loras,5,2022-11-02 +TCNJ,0,Rowan,1,2022-11-02 +Rutgers-Camden,0,Montclair State,0,2022-11-02 +Simpson,2,Wartburg,1,2022-11-02 +Oswego State,0,Cortland State,2,2022-11-02 +New Paltz State,2,Geneseo State,3,2022-11-02 +Penn State-Altoona,0,Pitt-Greensburg,2,2022-11-02 +Mount St. Joseph,0,Hanover,2,2022-11-02 +Farmingdale State,2,Mount St. Vincent,0,2022-11-02 +Denison,1,Kenyon,0,2022-11-02 +Mount Aloysius,0,Penn State-Behrend,3,2022-11-02 +St. Catherine,1,Saint Benedict,1,2022-11-02 +St. Olaf,1,Carleton,3,2022-11-02 +Anderson,0,Rose-Hulman,0,2022-11-02 +Grove City,1,Franciscan,4,2022-11-02 +North Central (Minn.),0,Maranatha Baptist,1,2022-11-02 +Bethany Lutheran,0,Northwestern (Minn.),1,2022-11-02 +Belhaven,1,Maryville (Tenn.),1,2022-11-02 +Redlands,2,Pomona-Pitzer,3,2022-11-02 +Cairn,0,Cedar Crest,5,2022-11-02 +Covenant,0,Piedmont,1,2022-11-02 +Wilson,0,Bryn Athyn,1,2022-11-02 +Hope,0,Trine,3,2022-11-02 +Lebanon Valley,1,York (Pa.),5,2022-11-02 +Marymount,0,Marywood,3,2022-11-02 +Neumann,1,Cabrini,1,2022-11-02 +Lycoming,0,Stevens,2,2022-11-02 +Ohio Wesleyan,2,DePauw,0,2022-11-02 +Chatham,1,Westminster (Pa.),1,2022-11-02 +Manhattanville,0,Sarah Lawrence,1,2022-11-02 +Crown,0,UW-Superior,6,2022-11-02 +Carroll,0,Illinois Wesleyan,4,2022-11-02 +Whitworth,1,Whitman,1,2022-11-02 +Wheaton (Ill.),0,North Central (Ill.),1,2022-11-02 +Claremont-Mudd-Scripps,2,Cal Lutheran,1,2022-11-02 +UW-Stevens Point,0,UW-La Crosse,4,2022-11-03 +McMurry,0,Mary Hardin-Baylor,1,2022-11-03 +Sage,0,Nazareth,2,2022-11-03 +Emerson,3,Babson,2,2022-11-03 +Pratt,0,Salisbury,11,2022-11-03 +Mass-Boston,0,Western Connecticut,4,2022-11-03 +Castleton,0,Southern Maine,2,2022-11-03 +Utica,5,St. John Fisher,3,2022-11-03 +Mitchell,0,New England College,1,2022-11-03 +Mary Baldwin,1,Southern Virginia,2,2022-11-03 +Greensboro,1,Methodist,2,2022-11-03 +Greenville,3,Webster,1,2022-11-03 +John Carroll,0,Capital,3,2022-11-03 +Eastern Nazarene,0,Lesley,5,2022-11-03 +Finlandia,0,Mary Washington,3,2022-11-03 +Otterbein,0,Ohio Northern,0,2022-11-03 +Clark,1,MIT,0,2022-11-03 +UW-Eau Claire,1,UW-Whitewater,0,2022-11-03 +Westminster (Mo.),1,Fontbonne,1,2022-11-03 +CCNY,4,Yeshiva,0,2022-11-03 +Concordia (Texas),0,Hardin-Simmons,1,2022-11-03 +McDaniel,0,Johns Hopkins,3,2022-11-04 +Salisbury,1,Christopher Newport,3,2022-11-04 +Schreiner,0,Trinity (Texas),5,2022-11-04 +RIT,0,William Smith,0,2022-11-04 +Virginia Wesleyan,2,Washington and Lee,1,2022-11-04 +St. Mary's (Md.),1,Penn State-Berks,3,2022-11-04 +Clarkson,0,Ithaca,1,2022-11-04 +Penn College,2,Penn State-Harrisburg,3,2022-11-04 +Shenandoah,0,Lynchburg,1,2022-11-04 +Rhodes,0,Sewanee,2,2022-11-04 +Worcester State,0,Westfield State,2,2022-11-04 +Mary Washington,1,UC Santa Cruz,0,2022-11-04 +Fitchburg State,2,Bridgewater State,1,2022-11-04 +Swarthmore,1,Dickinson,2,2022-11-04 +Centre,3,Berry,1,2022-11-04 +Southwestern,2,Texas Lutheran,2,2022-11-04 +Stevens,2,Misericordia,5,2022-11-05 +York (Pa.),0,Messiah,2,2022-11-05 +Carnegie Mellon,0,Case Western Reserve,1,2022-11-05 +Tufts,0,Amherst,1,2022-11-05 +Trine,0,Calvin,1,2022-11-05 +Simpson,1,Loras,6,2022-11-05 +UW-Eau Claire,2,UW-La Crosse,3,2022-11-05 +Mary Hardin-Baylor,1,Hardin-Simmons,0,2022-11-05 +Rowan,2,Montclair State,1,2022-11-05 +Rochester,2,Emory,3,2022-11-05 +Pacific Lutheran,3,George Fox,1,2022-11-05 +Puget Sound,4,Willamette,0,2022-11-05 +Geneseo State,1,Cortland State,1,2022-11-05 +University of New England,0,Western New England,3,2022-11-05 +CCNY,0,John Jay,1,2022-11-05 +Cornell,1,Grinnell,2,2022-11-05 +Ohio Northern,1,Capital,0,2022-11-05 +Southern Virginia,1,Methodist,3,2022-11-05 +Drew,0,Scranton,1,2022-11-05 +Rose-Hulman,1,Hanover,0,2022-11-05 +Penn State-Harrisburg,0,Penn State-Berks,3,2022-11-05 +Neumann,0,Marywood,1,2022-11-05 +Denison,2,Ohio Wesleyan,0,2022-11-05 +Wesleyan,3,Trinity (Conn.),0,2022-11-05 +Utica,0,Nazareth,1,2022-11-05 +SUNY Delhi,3,Husson,2,2022-11-05 +Penn State-Behrend,2,Pitt-Greensburg,3,2022-11-05 +Clark,0,Emerson,1,2022-11-05 +Maryville (Tenn.),0,Piedmont,0,2022-11-05 +St. Catherine,1,Carleton,0,2022-11-05 +Pacific,0,Lewis and Clark,0,2022-11-05 +Linfield,0,Whitworth,1,2022-11-05 +New York University,3,Brandeis,2,2022-11-05 +Washington U.,1,Chicago,1,2022-11-05 +Farmingdale State,0,Sarah Lawrence,0,2022-11-05 +Bryn Athyn,1,Cedar Crest,0,2022-11-05 +Beloit,1,Lake Forest,0,2022-11-05 +Claremont-Mudd-Scripps,0,Pomona-Pitzer,3,2022-11-05 +North Central (Ill.),1,Illinois Wesleyan,4,2022-11-05 +Westminster (Mo.),0,Greenville,1,2022-11-05 +Northwestern (Minn.),0,UW-Superior,6,2022-11-05 +Western Connecticut,1,Southern Maine,3,2022-11-05 +Franciscan,0,Westminster (Pa.),2,2022-11-05 +Lasell,1,Johnson and Wales,2,2022-11-05 +Dickinson,0,Johns Hopkins,4,2022-11-06 +Mary Washington,0,Christopher Newport,1,2022-11-06 +Texas Lutheran,0,Trinity (Texas),4,2022-11-06 +Wesleyan,0,Amherst,2,2022-11-06 +Ithaca,0,William Smith,0,2022-11-06 +Lynchburg,1,Virginia Wesleyan,1,2022-11-06 +Pacific Lutheran,0,Lewis and Clark,0,2022-11-06 +Puget Sound,4,Pacific,1,2022-11-06 +Fitchburg State,0,Westfield State,1,2022-11-06 +New England College,0,Lesley,2,2022-11-06 +Concordia (Wis.),1,Illinois Tech,0,2022-11-06 +Beloit,0,Grinnell,0,2022-11-06 +Centre,0,Sewanee,0,2022-11-06 +Willamette,0,George Fox,3,2022-11-06 +Linfield,0,Whitman,1,2022-11-06 +Bryn Athyn,0,Carnegie Mellon,6,2022-11-11 +Nazareth,0,Calvin,2,2022-11-11 +Greenville,0,UW-La Crosse,3,2022-11-11 +Concordia (Wis.),2,Illinois Wesleyan,5,2022-11-11 +Marywood,0,Misericordia,6,2022-11-12 +Lesley,0,Johns Hopkins,6,2022-11-12 +John Jay,0,Christopher Newport,6,2022-11-12 +Penn State-Berks,0,Messiah,3,2022-11-12 +Pitt-Greensburg,1,Case Western Reserve,6,2022-11-12 +Pomona-Pitzer,1,Trinity (Texas),1,2022-11-12 +Westminster (Pa.),0,Amherst,3,2022-11-12 +Calvin,0,Carnegie Mellon,2,2022-11-12 +UW-Superior,1,Loras,7,2022-11-12 +SUNY Delhi,0,William Smith,12,2022-11-12 +Illinois Wesleyan,0,UW-La Crosse,1,2022-11-12 +Pacific Lutheran,2,Mary Hardin-Baylor,1,2022-11-12 +Rowan,5,Methodist,1,2022-11-12 +Piedmont,0,Emory,7,2022-11-12 +Puget Sound,0,Virginia Wesleyan,3,2022-11-12 +Lynchburg,0,Montclair State,1,2022-11-12 +Grinnell,2,Wartburg,5,2022-11-12 +Washington and Lee,1,Centre,2,2022-11-12 +Denison,0,Tufts,1,2022-11-12 +Wesleyan,1,Cortland State,1,2022-11-12 +Southern Maine,0,Williams,1,2022-11-12 +Sarah Lawrence,0,MIT,6,2022-11-12 +DeSales,3,Cabrini,2,2022-11-12 +Westfield State,2,Emerson,1,2022-11-12 +Capital,0,Ithaca,1,2022-11-12 +Goucher,0,FDU-Florham,3,2022-11-12 +Johnson and Wales,1,RIT,3,2022-11-12 +Bowdoin,0,Scranton,0,2022-11-12 +Geneseo State,1,Trinity (Conn.),1,2022-11-12 +Rose-Hulman,0,Ohio Northern,1,2022-11-12 +St. Catherine,1,Washington U.,2,2022-11-12 +York (Pa.),0,Western New England,2,2022-11-12 +Western New England,1,Misericordia,5,2022-11-13 +Trinity (Conn.),0,Johns Hopkins,4,2022-11-13 +Christopher Newport,2,Montclair State,0,2022-11-13 +Wesleyan,0,Messiah,1,2022-11-13 +Ithaca,0,Case Western Reserve,6,2022-11-13 +Pacific Lutheran,0,Trinity (Texas),1,2022-11-13 +Amherst,1,RIT,0,2022-11-13 +Ohio Northern,0,Loras,1,2022-11-13 +Tufts,0,William Smith,1,2022-11-13 +Virginia Wesleyan,1,Rowan,0,2022-11-13 +Centre,3,Emory,3,2022-11-13 +Washington U.,3,Wartburg,1,2022-11-13 +Williams,0,MIT,0,2022-11-13 +DeSales,2,FDU-Florham,3,2022-11-13 +Westfield State,0,Scranton,3,2022-11-13 +Scranton,0,Misericordia,2,2022-11-19 +Williams,1,Johns Hopkins,2,2022-11-19 +Trinity (Texas),0,Christopher Newport,1,2022-11-19 +Emory,0,Messiah,1,2022-11-19 +Loras,1,Case Western Reserve,3,2022-11-19 +William Smith,2,Amherst,1,2022-11-19 +Washington U.,2,Carnegie Mellon,1,2022-11-19 +Virginia Wesleyan,2,UW-La Crosse,1,2022-11-19 +Johns Hopkins,2,Misericordia,0,2022-11-20 +Virginia Wesleyan,0,Christopher Newport,0,2022-11-20 +Messiah,2,Washington U.,2,2022-11-20 +William Smith,2,Case Western Reserve,4,2022-11-20 +Johns Hopkins,4,Messiah,1,2022-12-02 +Virginia Wesleyan,0,Case Western Reserve,3,2022-12-02 +Case Western Reserve,1,Johns Hopkins,2,2022-12-04 diff --git a/data/nhl_2223.csv b/data/nhl_2223.csv new file mode 100644 index 0000000..cda8caa --- /dev/null +++ b/data/nhl_2223.csv @@ -0,0 +1,33 @@ +Team,GP,SOG,W,L,OTL,PTS,Reg_PTS,PPG,SO_PTS,Pct_SO,RW,ROW,SOW,SOL,GF,GA,DIFF +BOS,82,7,65,12,5,135,131,1.7466666666666666,4,0.5714285714285714,54,61,4,3,305,177,128 +CAR,82,7,52,21,9,113,109,1.4533333333333334,4,0.5714285714285714,39,48,4,3,266,213,53 +NJ,82,6,52,22,8,112,110,1.4473684210526316,2,0.3333333333333333,39,50,2,4,291,226,65 +TOR,82,3,50,21,11,111,110,1.3924050632911393,1,0.3333333333333333,42,49,1,2,279,222,57 +VGK,82,9,51,22,9,111,106,1.452054794520548,5,0.5555555555555556,38,46,5,4,272,229,43 +EDM,82,4,50,23,9,109,109,1.3974358974358974,0,0,45,50,0,4,325,260,65 +COL,82,9,51,24,7,109,103,1.4109589041095891,6,0.6666666666666666,36,45,6,3,280,226,54 +DAL,82,7,47,21,14,108,104,1.3866666666666667,4,0.5714285714285714,39,43,4,3,285,218,67 +NYR,82,7,47,22,13,107,103,1.3733333333333333,4,0.5714285714285714,37,43,4,3,277,219,58 +LA,82,9,47,25,10,104,98,1.3424657534246576,6,0.6666666666666666,37,41,6,3,280,257,23 +MIN,82,13,46,25,11,103,96,1.391304347826087,7,0.5384615384615384,34,39,7,6,246,225,21 +SEA,82,4,46,28,8,100,100,1.2820512820512822,0,0,37,46,0,4,289,256,33 +TB,82,5,46,30,6,98,95,1.2337662337662338,3,0.6,38,43,3,2,283,254,29 +WPG,82,2,46,33,3,95,94,1.175,1,0.5,36,45,1,1,247,225,22 +NYI,82,6,42,31,9,93,92,1.2105263157894737,1,0.16666666666666666,36,41,1,5,243,222,21 +CGY,82,7,38,27,17,93,91,1.2133333333333334,2,0.2857142857142857,31,36,2,5,260,252,8 +FLA,82,3,42,32,8,92,90,1.139240506329114,2,0.6666666666666666,36,40,2,1,290,273,17 +NSH,82,8,42,32,8,92,86,1.162162162162162,6,0.75,29,36,6,2,229,238,-9 +PIT,82,2,40,31,11,91,90,1.125,1,0.5,31,39,1,1,262,264,-2 +BUF,82,6,42,33,7,91,88,1.1578947368421053,3,0.5,30,39,3,3,296,300,-4 +OTT,82,3,39,35,8,86,84,1.0632911392405062,2,0.6666666666666666,31,37,2,1,261,271,-10 +VAN,82,8,38,37,7,83,77,1.0405405405405406,6,0.75,24,32,6,2,276,298,-22 +STL,82,6,37,38,7,81,78,1.0263157894736843,3,0.5,27,34,3,3,263,301,-38 +WSH,82,6,35,37,10,80,78,1.0263157894736843,2,0.3333333333333333,27,33,2,4,255,265,-10 +DET,82,7,35,37,10,80,77,1.0266666666666666,3,0.42857142857142855,28,32,3,4,240,279,-39 +PHI,82,3,31,38,13,75,73,0.9240506329113924,2,0.6666666666666666,26,29,2,1,222,277,-55 +ARI,82,7,28,40,14,70,67,0.8933333333333333,3,0.42857142857142855,20,25,3,4,228,299,-71 +MTL,82,7,31,45,6,68,63,0.84,5,0.7142857142857143,21,26,5,2,232,307,-75 +SJ,82,7,22,44,16,60,59,0.7866666666666666,1,0.14285714285714285,16,21,1,6,234,321,-87 +CHI,82,4,26,49,7,59,57,0.7307692307692307,2,0.5,18,24,2,2,204,301,-97 +CBJ,82,2,25,48,9,59,58,0.725,1,0.5,15,24,1,1,214,330,-116 +ANA,82,6,23,47,12,58,55,0.7236842105263158,3,0.5,13,20,3,3,209,338,-129 diff --git a/esports/lol-buff-nerf.html b/esports/lol-buff-nerf.html index 9feb4a1..2645076 100644 --- a/esports/lol-buff-nerf.html +++ b/esports/lol-buff-nerf.html @@ -2,7 +2,7 @@ - + @@ -48,7 +48,13 @@ "collapse-after": 3, "panel-placement": "end", "type": "overlay", - "limit": 20, + "limit": 50, + "keyboard-shortcut": [ + "f", + "/", + "s" + ], + "show-item-context": false, "language": { "search-no-results-text": "No results", "search-matching-documents-text": "matching documents", @@ -57,6 +63,7 @@ "search-more-match-text": "more match in this document", "search-more-matches-text": "more matches in this document", "search-clear-button-title": "Clear", + "search-text-placeholder": "", "search-detached-cancel-button-title": "Cancel", "search-submit-button-title": "Submit", "search-label": "Search" @@ -70,9 +77,9 @@
    -
    -
@@ -264,6 +277,12 @@ - +
-
+

League of Legends - Buffing and Nerfing

@@ -510,8 +535,10 @@

League of Legends - Buffing and Nerfing

+
+

Motivation

League of Legends is a 5 v. 5 multiplayer online battle arena (MOBA) game developed by Riot Games. They collect data to evaluate the effect of every champion, adjusting and fine-tuning various aspects associated with each champion, to ensure fair and competitive gameplay. Through updates (patches) they can reduce the power of champions that are too strong (known as nerfing) or enhance the abilities of less successful champions (nerfing).

@@ -654,10 +681,9 @@

References

// clear code selection e.clearSelection(); }); - function tippyHover(el, contentFn) { + function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) { const config = { allowHTML: true, - content: contentFn, maxWidth: 500, delay: 100, arrow: false, @@ -667,8 +693,17 @@

References

interactive: true, interactiveBorder: 10, theme: 'quarto', - placement: 'bottom-start' + placement: 'bottom-start', }; + if (contentFn) { + config.content = contentFn; + } + if (onTriggerFn) { + config.onTrigger = onTriggerFn; + } + if (onUntriggerFn) { + config.onUntrigger = onUntriggerFn; + } window.tippy(el, config); } const noterefs = window.document.querySelectorAll('a[role="doc-noteref"]'); @@ -682,6 +717,125 @@

References

const note = window.document.getElementById(id); return note.innerHTML; }); + } + const xrefs = window.document.querySelectorAll('a.quarto-xref'); + const processXRef = (id, note) => { + // Strip column container classes + const stripColumnClz = (el) => { + el.classList.remove("page-full", "page-columns"); + if (el.children) { + for (const child of el.children) { + stripColumnClz(child); + } + } + } + stripColumnClz(note) + if (id === null || id.startsWith('sec-')) { + // Special case sections, only their first couple elements + const container = document.createElement("div"); + if (note.children && note.children.length > 2) { + container.appendChild(note.children[0].cloneNode(true)); + for (let i = 1; i < note.children.length; i++) { + const child = note.children[i]; + if (child.tagName === "P" && child.innerText === "") { + continue; + } else { + container.appendChild(child.cloneNode(true)); + break; + } + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(container); + } + return container.innerHTML + } else { + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + return note.innerHTML; + } + } else { + // Remove any anchor links if they are present + const anchorLink = note.querySelector('a.anchorjs-link'); + if (anchorLink) { + anchorLink.remove(); + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + // TODO in 1.5, we should make sure this works without a callout special case + if (note.classList.contains("callout")) { + return note.outerHTML; + } else { + return note.innerHTML; + } + } + } + for (var i=0; i res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.getElementById(id); + if (note !== null) { + const html = processXRef(id, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + } else { + // See if we can fetch a full url (with no hash to target) + // This is a special case and we should probably do some content thinning / targeting + fetch(url) + .then(res => res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.querySelector('main.content'); + if (note !== null) { + // This should only happen for chapter cross references + // (since there is no id in the URL) + // remove the first header + if (note.children.length > 0 && note.children[0].tagName === "HEADER") { + note.children[0].remove(); + } + const html = processXRef(null, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + }, function(instance) { + }); } let selectedAnnoteEl; const selectorForAnnotation = ( cell, annotation) => { @@ -724,6 +878,7 @@

References

} div.style.top = top - 2 + "px"; div.style.height = height + 4 + "px"; + div.style.left = 0; let gutterDiv = window.document.getElementById("code-annotation-line-highlight-gutter"); if (gutterDiv === null) { gutterDiv = window.document.createElement("div"); @@ -749,6 +904,32 @@

References

}); selectedAnnoteEl = undefined; }; + // Handle positioning of the toggle + window.addEventListener( + "resize", + throttle(() => { + elRect = undefined; + if (selectedAnnoteEl) { + selectCodeLines(selectedAnnoteEl); + } + }, 10) + ); + function throttle(fn, ms) { + let throttle = false; + let timer; + return (...args) => { + if(!throttle) { // first call gets through + fn.apply(this, args); + throttle = true; + } else { // all the others get throttled + if(timer) clearTimeout(timer); // cancel #2 + timer = setTimeout(() => { + fn.apply(this, args); + timer = throttle = false; + }, ms); + } + }; + } // Attach click handler to the DT const annoteDls = window.document.querySelectorAll('dt[data-target-cell]'); for (const annoteDlNode of annoteDls) { @@ -814,7 +995,9 @@

References

- + @@ -823,4 +1006,5 @@

References

+ \ No newline at end of file diff --git a/football/nfl-draft-combine.html b/football/nfl-draft-combine.html index 0e2159c..6e648aa 100644 --- a/football/nfl-draft-combine.html +++ b/football/nfl-draft-combine.html @@ -2,7 +2,7 @@ - + @@ -48,7 +48,13 @@ "collapse-after": 3, "panel-placement": "end", "type": "overlay", - "limit": 20, + "limit": 50, + "keyboard-shortcut": [ + "f", + "/", + "s" + ], + "show-item-context": false, "language": { "search-no-results-text": "No results", "search-matching-documents-text": "matching documents", @@ -57,6 +63,7 @@ "search-more-match-text": "more match in this document", "search-more-matches-text": "more matches in this document", "search-clear-button-title": "Clear", + "search-text-placeholder": "", "search-detached-cancel-button-title": "Cancel", "search-submit-button-title": "Submit", "search-label": "Search" @@ -70,9 +77,9 @@
-
-
-
+
-
+

NFL Draft Combine

@@ -509,8 +534,10 @@

NFL Draft Combine

+
+

Motivation

The data set has statistics with variables for player draft information and how they performed in events at the NFL Scouting Combine. The variables for draft information are position and Round. The variables for the NFL Scouting Combine events are forty, vertical, bench_reps, broad_jump, and shuttle. Some entries are NA if a player was not drafted or did not prticipate in some events.

@@ -652,10 +679,9 @@

References

// clear code selection e.clearSelection(); }); - function tippyHover(el, contentFn) { + function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) { const config = { allowHTML: true, - content: contentFn, maxWidth: 500, delay: 100, arrow: false, @@ -665,8 +691,17 @@

References

interactive: true, interactiveBorder: 10, theme: 'quarto', - placement: 'bottom-start' + placement: 'bottom-start', }; + if (contentFn) { + config.content = contentFn; + } + if (onTriggerFn) { + config.onTrigger = onTriggerFn; + } + if (onUntriggerFn) { + config.onUntrigger = onUntriggerFn; + } window.tippy(el, config); } const noterefs = window.document.querySelectorAll('a[role="doc-noteref"]'); @@ -680,6 +715,125 @@

References

const note = window.document.getElementById(id); return note.innerHTML; }); + } + const xrefs = window.document.querySelectorAll('a.quarto-xref'); + const processXRef = (id, note) => { + // Strip column container classes + const stripColumnClz = (el) => { + el.classList.remove("page-full", "page-columns"); + if (el.children) { + for (const child of el.children) { + stripColumnClz(child); + } + } + } + stripColumnClz(note) + if (id === null || id.startsWith('sec-')) { + // Special case sections, only their first couple elements + const container = document.createElement("div"); + if (note.children && note.children.length > 2) { + container.appendChild(note.children[0].cloneNode(true)); + for (let i = 1; i < note.children.length; i++) { + const child = note.children[i]; + if (child.tagName === "P" && child.innerText === "") { + continue; + } else { + container.appendChild(child.cloneNode(true)); + break; + } + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(container); + } + return container.innerHTML + } else { + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + return note.innerHTML; + } + } else { + // Remove any anchor links if they are present + const anchorLink = note.querySelector('a.anchorjs-link'); + if (anchorLink) { + anchorLink.remove(); + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + // TODO in 1.5, we should make sure this works without a callout special case + if (note.classList.contains("callout")) { + return note.outerHTML; + } else { + return note.innerHTML; + } + } + } + for (var i=0; i res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.getElementById(id); + if (note !== null) { + const html = processXRef(id, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + } else { + // See if we can fetch a full url (with no hash to target) + // This is a special case and we should probably do some content thinning / targeting + fetch(url) + .then(res => res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.querySelector('main.content'); + if (note !== null) { + // This should only happen for chapter cross references + // (since there is no id in the URL) + // remove the first header + if (note.children.length > 0 && note.children[0].tagName === "HEADER") { + note.children[0].remove(); + } + const html = processXRef(null, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + }, function(instance) { + }); } let selectedAnnoteEl; const selectorForAnnotation = ( cell, annotation) => { @@ -722,6 +876,7 @@

References

} div.style.top = top - 2 + "px"; div.style.height = height + 4 + "px"; + div.style.left = 0; let gutterDiv = window.document.getElementById("code-annotation-line-highlight-gutter"); if (gutterDiv === null) { gutterDiv = window.document.createElement("div"); @@ -747,6 +902,32 @@

References

}); selectedAnnoteEl = undefined; }; + // Handle positioning of the toggle + window.addEventListener( + "resize", + throttle(() => { + elRect = undefined; + if (selectedAnnoteEl) { + selectCodeLines(selectedAnnoteEl); + } + }, 10) + ); + function throttle(fn, ms) { + let throttle = false; + let timer; + return (...args) => { + if(!throttle) { // first call gets through + fn.apply(this, args); + throttle = true; + } else { // all the others get throttled + if(timer) clearTimeout(timer); // cancel #2 + timer = setTimeout(() => { + fn.apply(this, args); + timer = throttle = false; + }, ms); + } + }; + } // Attach click handler to the DT const annoteDls = window.document.querySelectorAll('dt[data-target-cell]'); for (const annoteDlNode of annoteDls) { @@ -812,7 +993,9 @@

References

- + @@ -821,4 +1004,5 @@

References

+ \ No newline at end of file diff --git a/football/nfl-team-statistics.html b/football/nfl-team-statistics.html index a03c68b..3949252 100644 --- a/football/nfl-team-statistics.html +++ b/football/nfl-team-statistics.html @@ -2,7 +2,7 @@ - + @@ -48,7 +48,13 @@ "collapse-after": 3, "panel-placement": "end", "type": "overlay", - "limit": 20, + "limit": 50, + "keyboard-shortcut": [ + "f", + "/", + "s" + ], + "show-item-context": false, "language": { "search-no-results-text": "No results", "search-matching-documents-text": "matching documents", @@ -57,6 +63,7 @@ "search-more-match-text": "more match in this document", "search-more-matches-text": "more matches in this document", "search-clear-button-title": "Clear", + "search-text-placeholder": "", "search-detached-cancel-button-title": "Cancel", "search-submit-button-title": "Submit", "search-label": "Search" @@ -70,9 +77,9 @@
-
-
-
+
-
+

National Football League Team Statistics

@@ -512,8 +537,10 @@

National Football League Team Statistics

+
+

Motivation

The National Football League (NFL) is the top professional American football league in the world. While a team’s record ultimately determines whether or not they make the playoffs, their score differential (points for - points against) is often a better indicator of a team’s ability. But what aspects of a team’s performance are related to their point differential? Is passing more important than rushing? What about offense in comparison to defense? The NFL records a variety of statistics, and the public NFL analytics community have developed advanced metrics such as expected points added (EPA) that provide deeper insight into a team’s performance. With this dataset of statistics dating back to 1999, you can explore variation between teams since as well as which types of statistics are relevant predictor variables of record and point differential.

@@ -751,10 +778,9 @@

References

// clear code selection e.clearSelection(); }); - function tippyHover(el, contentFn) { + function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) { const config = { allowHTML: true, - content: contentFn, maxWidth: 500, delay: 100, arrow: false, @@ -764,8 +790,17 @@

References

interactive: true, interactiveBorder: 10, theme: 'quarto', - placement: 'bottom-start' + placement: 'bottom-start', }; + if (contentFn) { + config.content = contentFn; + } + if (onTriggerFn) { + config.onTrigger = onTriggerFn; + } + if (onUntriggerFn) { + config.onUntrigger = onUntriggerFn; + } window.tippy(el, config); } const noterefs = window.document.querySelectorAll('a[role="doc-noteref"]'); @@ -779,6 +814,125 @@

References

const note = window.document.getElementById(id); return note.innerHTML; }); + } + const xrefs = window.document.querySelectorAll('a.quarto-xref'); + const processXRef = (id, note) => { + // Strip column container classes + const stripColumnClz = (el) => { + el.classList.remove("page-full", "page-columns"); + if (el.children) { + for (const child of el.children) { + stripColumnClz(child); + } + } + } + stripColumnClz(note) + if (id === null || id.startsWith('sec-')) { + // Special case sections, only their first couple elements + const container = document.createElement("div"); + if (note.children && note.children.length > 2) { + container.appendChild(note.children[0].cloneNode(true)); + for (let i = 1; i < note.children.length; i++) { + const child = note.children[i]; + if (child.tagName === "P" && child.innerText === "") { + continue; + } else { + container.appendChild(child.cloneNode(true)); + break; + } + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(container); + } + return container.innerHTML + } else { + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + return note.innerHTML; + } + } else { + // Remove any anchor links if they are present + const anchorLink = note.querySelector('a.anchorjs-link'); + if (anchorLink) { + anchorLink.remove(); + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + // TODO in 1.5, we should make sure this works without a callout special case + if (note.classList.contains("callout")) { + return note.outerHTML; + } else { + return note.innerHTML; + } + } + } + for (var i=0; i res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.getElementById(id); + if (note !== null) { + const html = processXRef(id, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + } else { + // See if we can fetch a full url (with no hash to target) + // This is a special case and we should probably do some content thinning / targeting + fetch(url) + .then(res => res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.querySelector('main.content'); + if (note !== null) { + // This should only happen for chapter cross references + // (since there is no id in the URL) + // remove the first header + if (note.children.length > 0 && note.children[0].tagName === "HEADER") { + note.children[0].remove(); + } + const html = processXRef(null, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + }, function(instance) { + }); } let selectedAnnoteEl; const selectorForAnnotation = ( cell, annotation) => { @@ -821,6 +975,7 @@

References

} div.style.top = top - 2 + "px"; div.style.height = height + 4 + "px"; + div.style.left = 0; let gutterDiv = window.document.getElementById("code-annotation-line-highlight-gutter"); if (gutterDiv === null) { gutterDiv = window.document.createElement("div"); @@ -846,6 +1001,32 @@

References

}); selectedAnnoteEl = undefined; }; + // Handle positioning of the toggle + window.addEventListener( + "resize", + throttle(() => { + elRect = undefined; + if (selectedAnnoteEl) { + selectCodeLines(selectedAnnoteEl); + } + }, 10) + ); + function throttle(fn, ms) { + let throttle = false; + let timer; + return (...args) => { + if(!throttle) { // first call gets through + fn.apply(this, args); + throttle = true; + } else { // all the others get throttled + if(timer) clearTimeout(timer); // cancel #2 + timer = setTimeout(() => { + fn.apply(this, args); + timer = throttle = false; + }, ms); + } + }; + } // Attach click handler to the DT const annoteDls = window.document.querySelectorAll('dt[data-target-cell]'); for (const annoteDlNode of annoteDls) { @@ -911,7 +1092,9 @@

References

- + @@ -920,4 +1103,5 @@

References

+ \ No newline at end of file diff --git a/golf/pga_drive_putt.html b/golf/pga_drive_putt.html index a80844c..ba6d35e 100644 --- a/golf/pga_drive_putt.html +++ b/golf/pga_drive_putt.html @@ -2,7 +2,7 @@ - + @@ -48,7 +48,13 @@ "collapse-after": 3, "panel-placement": "end", "type": "overlay", - "limit": 20, + "limit": 50, + "keyboard-shortcut": [ + "f", + "/", + "s" + ], + "show-item-context": false, "language": { "search-no-results-text": "No results", "search-matching-documents-text": "matching documents", @@ -57,6 +63,7 @@ "search-more-match-text": "more match in this document", "search-more-matches-text": "more matches in this document", "search-clear-button-title": "Clear", + "search-text-placeholder": "", "search-detached-cancel-button-title": "Cancel", "search-submit-button-title": "Submit", "search-label": "Search" @@ -70,9 +77,9 @@
-
-
-
+
-
+

Statistics of PGA Tournaments During the 2022 Season

@@ -509,8 +534,10 @@

Statistics of PGA Tournaments During the 2022 Season

+
+

Motivation

A common expression among golfers is “Drive for show, putt for dough.” This implies that the long initial tee shots (drives) on each hole are impressive, but the real key to success is the final strokes rolling the ball along the green into the hole (putts). Do data support this adage? The dataset for this activity was obtained from the PGA statistics website. Cases include all golfers who made the cut in each of 19 PGA tournaments in 2022. The dataset includes variables for driving ability, putting ability, and measuring success in the tournament. The “driving” variables include average driving distance (avgDriveDist), driving accuracy percentage (drivePct), and strokes gained off the tee (driveSG). The “putting” variables are average putts per round (avgPuttsPerRound), one putt percentage (onePuttPct), and strokes gained putting (puttsSG). The variables to measure success are scoring average (avgScore), official money won (Money), and Fedex Cup points (Points).

@@ -674,10 +701,9 @@

References

// clear code selection e.clearSelection(); }); - function tippyHover(el, contentFn) { + function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) { const config = { allowHTML: true, - content: contentFn, maxWidth: 500, delay: 100, arrow: false, @@ -687,8 +713,17 @@

References

interactive: true, interactiveBorder: 10, theme: 'quarto', - placement: 'bottom-start' + placement: 'bottom-start', }; + if (contentFn) { + config.content = contentFn; + } + if (onTriggerFn) { + config.onTrigger = onTriggerFn; + } + if (onUntriggerFn) { + config.onUntrigger = onUntriggerFn; + } window.tippy(el, config); } const noterefs = window.document.querySelectorAll('a[role="doc-noteref"]'); @@ -702,6 +737,125 @@

References

const note = window.document.getElementById(id); return note.innerHTML; }); + } + const xrefs = window.document.querySelectorAll('a.quarto-xref'); + const processXRef = (id, note) => { + // Strip column container classes + const stripColumnClz = (el) => { + el.classList.remove("page-full", "page-columns"); + if (el.children) { + for (const child of el.children) { + stripColumnClz(child); + } + } + } + stripColumnClz(note) + if (id === null || id.startsWith('sec-')) { + // Special case sections, only their first couple elements + const container = document.createElement("div"); + if (note.children && note.children.length > 2) { + container.appendChild(note.children[0].cloneNode(true)); + for (let i = 1; i < note.children.length; i++) { + const child = note.children[i]; + if (child.tagName === "P" && child.innerText === "") { + continue; + } else { + container.appendChild(child.cloneNode(true)); + break; + } + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(container); + } + return container.innerHTML + } else { + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + return note.innerHTML; + } + } else { + // Remove any anchor links if they are present + const anchorLink = note.querySelector('a.anchorjs-link'); + if (anchorLink) { + anchorLink.remove(); + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + // TODO in 1.5, we should make sure this works without a callout special case + if (note.classList.contains("callout")) { + return note.outerHTML; + } else { + return note.innerHTML; + } + } + } + for (var i=0; i res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.getElementById(id); + if (note !== null) { + const html = processXRef(id, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + } else { + // See if we can fetch a full url (with no hash to target) + // This is a special case and we should probably do some content thinning / targeting + fetch(url) + .then(res => res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.querySelector('main.content'); + if (note !== null) { + // This should only happen for chapter cross references + // (since there is no id in the URL) + // remove the first header + if (note.children.length > 0 && note.children[0].tagName === "HEADER") { + note.children[0].remove(); + } + const html = processXRef(null, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + }, function(instance) { + }); } let selectedAnnoteEl; const selectorForAnnotation = ( cell, annotation) => { @@ -744,6 +898,7 @@

References

} div.style.top = top - 2 + "px"; div.style.height = height + 4 + "px"; + div.style.left = 0; let gutterDiv = window.document.getElementById("code-annotation-line-highlight-gutter"); if (gutterDiv === null) { gutterDiv = window.document.createElement("div"); @@ -769,6 +924,32 @@

References

}); selectedAnnoteEl = undefined; }; + // Handle positioning of the toggle + window.addEventListener( + "resize", + throttle(() => { + elRect = undefined; + if (selectedAnnoteEl) { + selectCodeLines(selectedAnnoteEl); + } + }, 10) + ); + function throttle(fn, ms) { + let throttle = false; + let timer; + return (...args) => { + if(!throttle) { // first call gets through + fn.apply(this, args); + throttle = true; + } else { // all the others get throttled + if(timer) clearTimeout(timer); // cancel #2 + timer = setTimeout(() => { + fn.apply(this, args); + timer = throttle = false; + }, ms); + } + }; + } // Attach click handler to the DT const annoteDls = window.document.querySelectorAll('dt[data-target-cell]'); for (const annoteDlNode of annoteDls) { @@ -834,7 +1015,9 @@

References

- + @@ -843,4 +1026,5 @@

References

+ \ No newline at end of file diff --git a/hockey/nhl-shots.html b/hockey/nhl-shots.html index 5081ec3..b535ef2 100644 --- a/hockey/nhl-shots.html +++ b/hockey/nhl-shots.html @@ -2,7 +2,7 @@ - + @@ -48,7 +48,13 @@ "collapse-after": 3, "panel-placement": "end", "type": "overlay", - "limit": 20, + "limit": 50, + "keyboard-shortcut": [ + "f", + "/", + "s" + ], + "show-item-context": false, "language": { "search-no-results-text": "No results", "search-matching-documents-text": "matching documents", @@ -57,6 +63,7 @@ "search-more-match-text": "more match in this document", "search-more-matches-text": "more matches in this document", "search-clear-button-title": "Clear", + "search-text-placeholder": "", "search-detached-cancel-button-title": "Cancel", "search-submit-button-title": "Submit", "search-label": "Search" @@ -70,9 +77,9 @@
-
-
-
+
-
+

National Hockey League Shots

@@ -513,8 +538,10 @@

National Hockey League Shots

+
+

Motivation

The National Hockey League (NHL) is the top professional men’s hockey league in the world. The league records every shot players take along with contextual information about the shot such as its location, the player’s distance and angle to the goal when attempting the shot, as well as the outcome (blocked, missed, or goal). Using this information, the hockey analytics community have developed measures of shot quality known as expected goals. With this dataset, you can create your own expected goals model to predict the shot outcome given relevant features.

@@ -718,10 +745,9 @@

References

// clear code selection e.clearSelection(); }); - function tippyHover(el, contentFn) { + function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) { const config = { allowHTML: true, - content: contentFn, maxWidth: 500, delay: 100, arrow: false, @@ -731,8 +757,17 @@

References

interactive: true, interactiveBorder: 10, theme: 'quarto', - placement: 'bottom-start' + placement: 'bottom-start', }; + if (contentFn) { + config.content = contentFn; + } + if (onTriggerFn) { + config.onTrigger = onTriggerFn; + } + if (onUntriggerFn) { + config.onUntrigger = onUntriggerFn; + } window.tippy(el, config); } const noterefs = window.document.querySelectorAll('a[role="doc-noteref"]'); @@ -746,6 +781,125 @@

References

const note = window.document.getElementById(id); return note.innerHTML; }); + } + const xrefs = window.document.querySelectorAll('a.quarto-xref'); + const processXRef = (id, note) => { + // Strip column container classes + const stripColumnClz = (el) => { + el.classList.remove("page-full", "page-columns"); + if (el.children) { + for (const child of el.children) { + stripColumnClz(child); + } + } + } + stripColumnClz(note) + if (id === null || id.startsWith('sec-')) { + // Special case sections, only their first couple elements + const container = document.createElement("div"); + if (note.children && note.children.length > 2) { + container.appendChild(note.children[0].cloneNode(true)); + for (let i = 1; i < note.children.length; i++) { + const child = note.children[i]; + if (child.tagName === "P" && child.innerText === "") { + continue; + } else { + container.appendChild(child.cloneNode(true)); + break; + } + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(container); + } + return container.innerHTML + } else { + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + return note.innerHTML; + } + } else { + // Remove any anchor links if they are present + const anchorLink = note.querySelector('a.anchorjs-link'); + if (anchorLink) { + anchorLink.remove(); + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + // TODO in 1.5, we should make sure this works without a callout special case + if (note.classList.contains("callout")) { + return note.outerHTML; + } else { + return note.innerHTML; + } + } + } + for (var i=0; i res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.getElementById(id); + if (note !== null) { + const html = processXRef(id, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + } else { + // See if we can fetch a full url (with no hash to target) + // This is a special case and we should probably do some content thinning / targeting + fetch(url) + .then(res => res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.querySelector('main.content'); + if (note !== null) { + // This should only happen for chapter cross references + // (since there is no id in the URL) + // remove the first header + if (note.children.length > 0 && note.children[0].tagName === "HEADER") { + note.children[0].remove(); + } + const html = processXRef(null, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + }, function(instance) { + }); } let selectedAnnoteEl; const selectorForAnnotation = ( cell, annotation) => { @@ -788,6 +942,7 @@

References

} div.style.top = top - 2 + "px"; div.style.height = height + 4 + "px"; + div.style.left = 0; let gutterDiv = window.document.getElementById("code-annotation-line-highlight-gutter"); if (gutterDiv === null) { gutterDiv = window.document.createElement("div"); @@ -813,6 +968,32 @@

References

}); selectedAnnoteEl = undefined; }; + // Handle positioning of the toggle + window.addEventListener( + "resize", + throttle(() => { + elRect = undefined; + if (selectedAnnoteEl) { + selectCodeLines(selectedAnnoteEl); + } + }, 10) + ); + function throttle(fn, ms) { + let throttle = false; + let timer; + return (...args) => { + if(!throttle) { // first call gets through + fn.apply(this, args); + throttle = true; + } else { // all the others get throttled + if(timer) clearTimeout(timer); // cancel #2 + timer = setTimeout(() => { + fn.apply(this, args); + timer = throttle = false; + }, ms); + } + }; + } // Attach click handler to the DT const annoteDls = window.document.querySelectorAll('dt[data-target-cell]'); for (const annoteDlNode of annoteDls) { @@ -878,7 +1059,9 @@

References

- + @@ -887,4 +1070,5 @@

References

+ \ No newline at end of file diff --git a/hockey/nhl_2223.html b/hockey/nhl_2223.html new file mode 100644 index 0000000..ee5af39 --- /dev/null +++ b/hockey/nhl_2223.html @@ -0,0 +1,1055 @@ + + + + + + + + + + + + +SCORE Sports Data Repository - NHL Team Statistics + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+ +
+ + +
+ + + +
+ +
+
+

NHL Team Statistics

+
+
linear regression
+
correlation
+
+
+ +
+
+ Team-level statistics from the 2022-2023 NHL season +
+
+ + +
+ +
+
Author
+
+

Taylor Lum, Robin Lock

+
+
+ +
+
Published
+
+

December 15, 2023

+
+
+ + +
+ + + +
+ + +
+

Motivation

+

In 2005 the National Hockey League added shootouts to regular season games. In the event that regulation time ends in a tie and no goals are scored in overtime, the game goes to a 3-player shootout. This data set can be used to explore the relationship between various team-level statistics.

+

Regulation time in an NHL game consists of three 20 minute periods. If regulation time ends and the score is tied (both teams have the same number of goals), the game goes into a 5 minute 3-on-3 overtime, where the next goal wins. If the game is still not resolved after overtime, it goes into a 3 round shootout, where players take a 1-on-1 breakaway against the goalie. If still tied after three shootout rounds, shootout rounds continue until one team is victorious. A team gets 2 points for a win (whether it’s regulation, overtime, or shootout), and the losing team gets 0 points for a regulation loss, or 1 point for an overtime/shootout loss.

+
+
+

Data

+

The data set contains the final standings of the 2022-2023 NHL Season with team level statistics.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
nhl_2223.csv
VariableDescription
TeamNHL team abbreviation
GPTotal games played
SOGNumber of games that went to shootout
WWins
LLosses
OTLOvertime losses
PTSPoints
Reg_PTSPoints won during regulation time or overtime (2 points per game)
PPGPoints won per game in regulation time or overtime (# of non-shootout points / # of non-shootout games)
SO_PTSPoints won from shootout (1 extra point per shootout)
Pct_SOProportion of possible points from shootout won (# of shootout points / # of shootout games)
RWNumber of regulation wins
ROWNumber of regulation and overtime wins
SOWNumber of shootout wins
SOLNumber of shootout losses
GFTotal goals scored
GATotal goals against
DIFFGoal differential (GF-GA)
+
+
+

Questions

+
    +
  1. Plot GA versus GF. Describe the trend. Do teams that score more goals tend to allow more or less goals against?

  2. +
  3. Is offensive ability (‘GF’) or defensive ability (‘GA’) a better predictor of overall performance of a team (as measured by ‘PTS’)?

  4. +
  5. Is there a relationship between the ability to win shootouts (‘Pct_SO’) the ability to win games before shootouts (‘PPG’)?

  6. +
  7. Is there a relationship between the total number of goals a team scored during the season (GF) and the proportion of shootout points they won (Pct_SO)?

  8. +
+
+
+

References

+

NHL Standings 2022-23. ESPN (n.d.). https://www.espn.com/nhl/standings/_/season/2023/group/league

+ + +
+ +
+ +
+ + + + + + \ No newline at end of file diff --git a/hockey/nhl_powerplay.html b/hockey/nhl_powerplay.html index 907738d..ad53984 100644 --- a/hockey/nhl_powerplay.html +++ b/hockey/nhl_powerplay.html @@ -2,7 +2,7 @@ - + @@ -48,7 +48,13 @@ "collapse-after": 3, "panel-placement": "end", "type": "overlay", - "limit": 20, + "limit": 50, + "keyboard-shortcut": [ + "f", + "/", + "s" + ], + "show-item-context": false, "language": { "search-no-results-text": "No results", "search-matching-documents-text": "matching documents", @@ -57,6 +63,7 @@ "search-more-match-text": "more match in this document", "search-more-matches-text": "more matches in this document", "search-clear-button-title": "Clear", + "search-text-placeholder": "", "search-detached-cancel-button-title": "Cancel", "search-submit-button-title": "Submit", "search-label": "Search" @@ -70,9 +77,9 @@
-
-
-
+
-
+

NHL Team Power Play Perfomance in 2022-2023

@@ -508,8 +533,10 @@

NHL Team Power Play Perfomance in 2022-2023

+
+

Motivation

Certain infractions in a hockey game can lead to one or more players being forced to sit out for a period of time while their team has to skate with fewer payers. A common scenario that results is a 5 on 4 power play where one team has five skates (plus a goalie) and the penalized team has only four skaters (plus a goalie). The team with fewer skates is said to be shorthanded. Typical penalty times are for two minutes and the penalized player is allowed to return to the ice if the opponent scores a goal while on the power play. Rare, but more serious infractions, produce a major penalty (5 minutes) where the penalized player is not allowed to return to the ice when a goal is scored. A power play can also end before two minutes when the team on the power play commits a penalty which results in one of its players being sent off the ice to even the sides.

@@ -654,10 +681,9 @@

References

// clear code selection e.clearSelection(); }); - function tippyHover(el, contentFn) { + function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) { const config = { allowHTML: true, - content: contentFn, maxWidth: 500, delay: 100, arrow: false, @@ -667,8 +693,17 @@

References

interactive: true, interactiveBorder: 10, theme: 'quarto', - placement: 'bottom-start' + placement: 'bottom-start', }; + if (contentFn) { + config.content = contentFn; + } + if (onTriggerFn) { + config.onTrigger = onTriggerFn; + } + if (onUntriggerFn) { + config.onUntrigger = onUntriggerFn; + } window.tippy(el, config); } const noterefs = window.document.querySelectorAll('a[role="doc-noteref"]'); @@ -682,6 +717,125 @@

References

const note = window.document.getElementById(id); return note.innerHTML; }); + } + const xrefs = window.document.querySelectorAll('a.quarto-xref'); + const processXRef = (id, note) => { + // Strip column container classes + const stripColumnClz = (el) => { + el.classList.remove("page-full", "page-columns"); + if (el.children) { + for (const child of el.children) { + stripColumnClz(child); + } + } + } + stripColumnClz(note) + if (id === null || id.startsWith('sec-')) { + // Special case sections, only their first couple elements + const container = document.createElement("div"); + if (note.children && note.children.length > 2) { + container.appendChild(note.children[0].cloneNode(true)); + for (let i = 1; i < note.children.length; i++) { + const child = note.children[i]; + if (child.tagName === "P" && child.innerText === "") { + continue; + } else { + container.appendChild(child.cloneNode(true)); + break; + } + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(container); + } + return container.innerHTML + } else { + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + return note.innerHTML; + } + } else { + // Remove any anchor links if they are present + const anchorLink = note.querySelector('a.anchorjs-link'); + if (anchorLink) { + anchorLink.remove(); + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + // TODO in 1.5, we should make sure this works without a callout special case + if (note.classList.contains("callout")) { + return note.outerHTML; + } else { + return note.innerHTML; + } + } + } + for (var i=0; i res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.getElementById(id); + if (note !== null) { + const html = processXRef(id, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + } else { + // See if we can fetch a full url (with no hash to target) + // This is a special case and we should probably do some content thinning / targeting + fetch(url) + .then(res => res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.querySelector('main.content'); + if (note !== null) { + // This should only happen for chapter cross references + // (since there is no id in the URL) + // remove the first header + if (note.children.length > 0 && note.children[0].tagName === "HEADER") { + note.children[0].remove(); + } + const html = processXRef(null, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + }, function(instance) { + }); } let selectedAnnoteEl; const selectorForAnnotation = ( cell, annotation) => { @@ -724,6 +878,7 @@

References

} div.style.top = top - 2 + "px"; div.style.height = height + 4 + "px"; + div.style.left = 0; let gutterDiv = window.document.getElementById("code-annotation-line-highlight-gutter"); if (gutterDiv === null) { gutterDiv = window.document.createElement("div"); @@ -749,6 +904,32 @@

References

}); selectedAnnoteEl = undefined; }; + // Handle positioning of the toggle + window.addEventListener( + "resize", + throttle(() => { + elRect = undefined; + if (selectedAnnoteEl) { + selectCodeLines(selectedAnnoteEl); + } + }, 10) + ); + function throttle(fn, ms) { + let throttle = false; + let timer; + return (...args) => { + if(!throttle) { // first call gets through + fn.apply(this, args); + throttle = true; + } else { // all the others get throttled + if(timer) clearTimeout(timer); // cancel #2 + timer = setTimeout(() => { + fn.apply(this, args); + timer = throttle = false; + }, ms); + } + }; + } // Attach click handler to the DT const annoteDls = window.document.querySelectorAll('dt[data-target-cell]'); for (const annoteDlNode of annoteDls) { @@ -814,7 +995,9 @@

References

- + @@ -823,4 +1006,5 @@

References

+ \ No newline at end of file diff --git a/hockey/phf-shots.html b/hockey/phf-shots.html index f606e48..2f50282 100644 --- a/hockey/phf-shots.html +++ b/hockey/phf-shots.html @@ -2,7 +2,7 @@ - + @@ -48,7 +48,13 @@ "collapse-after": 3, "panel-placement": "end", "type": "overlay", - "limit": 20, + "limit": 50, + "keyboard-shortcut": [ + "f", + "/", + "s" + ], + "show-item-context": false, "language": { "search-no-results-text": "No results", "search-matching-documents-text": "matching documents", @@ -57,6 +63,7 @@ "search-more-match-text": "more match in this document", "search-more-matches-text": "more matches in this document", "search-clear-button-title": "Clear", + "search-text-placeholder": "", "search-detached-cancel-button-title": "Cancel", "search-submit-button-title": "Submit", "search-label": "Search" @@ -70,9 +77,9 @@
-
-
-
+
-
+

Premier Hockey Federation Shots

@@ -510,8 +535,10 @@

Premier Hockey Federation Shots

+
+

Motivation

The Premier Hockey Federation (PHF) is a professional women’s hockey league in North America. Recently, more data has become available for people to explore and join the women’s hockey analytics community. This dataset lets you explore shots taken during the 2021-2022 PHF season.

@@ -694,10 +721,9 @@

References

// clear code selection e.clearSelection(); }); - function tippyHover(el, contentFn) { + function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) { const config = { allowHTML: true, - content: contentFn, maxWidth: 500, delay: 100, arrow: false, @@ -707,8 +733,17 @@

References

interactive: true, interactiveBorder: 10, theme: 'quarto', - placement: 'bottom-start' + placement: 'bottom-start', }; + if (contentFn) { + config.content = contentFn; + } + if (onTriggerFn) { + config.onTrigger = onTriggerFn; + } + if (onUntriggerFn) { + config.onUntrigger = onUntriggerFn; + } window.tippy(el, config); } const noterefs = window.document.querySelectorAll('a[role="doc-noteref"]'); @@ -722,6 +757,125 @@

References

const note = window.document.getElementById(id); return note.innerHTML; }); + } + const xrefs = window.document.querySelectorAll('a.quarto-xref'); + const processXRef = (id, note) => { + // Strip column container classes + const stripColumnClz = (el) => { + el.classList.remove("page-full", "page-columns"); + if (el.children) { + for (const child of el.children) { + stripColumnClz(child); + } + } + } + stripColumnClz(note) + if (id === null || id.startsWith('sec-')) { + // Special case sections, only their first couple elements + const container = document.createElement("div"); + if (note.children && note.children.length > 2) { + container.appendChild(note.children[0].cloneNode(true)); + for (let i = 1; i < note.children.length; i++) { + const child = note.children[i]; + if (child.tagName === "P" && child.innerText === "") { + continue; + } else { + container.appendChild(child.cloneNode(true)); + break; + } + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(container); + } + return container.innerHTML + } else { + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + return note.innerHTML; + } + } else { + // Remove any anchor links if they are present + const anchorLink = note.querySelector('a.anchorjs-link'); + if (anchorLink) { + anchorLink.remove(); + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + // TODO in 1.5, we should make sure this works without a callout special case + if (note.classList.contains("callout")) { + return note.outerHTML; + } else { + return note.innerHTML; + } + } + } + for (var i=0; i res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.getElementById(id); + if (note !== null) { + const html = processXRef(id, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + } else { + // See if we can fetch a full url (with no hash to target) + // This is a special case and we should probably do some content thinning / targeting + fetch(url) + .then(res => res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.querySelector('main.content'); + if (note !== null) { + // This should only happen for chapter cross references + // (since there is no id in the URL) + // remove the first header + if (note.children.length > 0 && note.children[0].tagName === "HEADER") { + note.children[0].remove(); + } + const html = processXRef(null, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + }, function(instance) { + }); } let selectedAnnoteEl; const selectorForAnnotation = ( cell, annotation) => { @@ -764,6 +918,7 @@

References

} div.style.top = top - 2 + "px"; div.style.height = height + 4 + "px"; + div.style.left = 0; let gutterDiv = window.document.getElementById("code-annotation-line-highlight-gutter"); if (gutterDiv === null) { gutterDiv = window.document.createElement("div"); @@ -789,6 +944,32 @@

References

}); selectedAnnoteEl = undefined; }; + // Handle positioning of the toggle + window.addEventListener( + "resize", + throttle(() => { + elRect = undefined; + if (selectedAnnoteEl) { + selectCodeLines(selectedAnnoteEl); + } + }, 10) + ); + function throttle(fn, ms) { + let throttle = false; + let timer; + return (...args) => { + if(!throttle) { // first call gets through + fn.apply(this, args); + throttle = true; + } else { // all the others get throttled + if(timer) clearTimeout(timer); // cancel #2 + timer = setTimeout(() => { + fn.apply(this, args); + timer = throttle = false; + }, ms); + } + }; + } // Attach click handler to the DT const annoteDls = window.document.querySelectorAll('dt[data-target-cell]'); for (const annoteDlNode of annoteDls) { @@ -854,7 +1035,9 @@

References

- + @@ -863,4 +1046,5 @@

References

+ \ No newline at end of file diff --git a/index.html b/index.html index a521cba..edec875 100644 --- a/index.html +++ b/index.html @@ -2,7 +2,7 @@ - + @@ -45,7 +45,13 @@ "collapse-after": 3, "panel-placement": "end", "type": "overlay", - "limit": 20, + "limit": 50, + "keyboard-shortcut": [ + "f", + "/", + "s" + ], + "show-item-context": false, "language": { "search-no-results-text": "No results", "search-matching-documents-text": "matching documents", @@ -54,6 +60,7 @@ "search-more-match-text": "more match in this document", "search-more-matches-text": "more matches in this document", "search-clear-button-title": "Clear", + "search-text-placeholder": "", "search-detached-cancel-button-title": "Cancel", "search-submit-button-title": "Submit", "search-label": "Search" @@ -67,9 +74,9 @@
-
-
-
+
+
+

The SCORE Network Sports Data Repository curates interesting datasets across a variety of sports for use in statistics and data science education. Each dataset has the following properties:

  • A sports question of interest, with context motivating why the dataset is relevant and interesting to explore.
  • @@ -570,10 +597,9 @@

    SCORE Sports Data Repository

    // clear code selection e.clearSelection(); }); - function tippyHover(el, contentFn) { + function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) { const config = { allowHTML: true, - content: contentFn, maxWidth: 500, delay: 100, arrow: false, @@ -583,8 +609,17 @@

    SCORE Sports Data Repository

    interactive: true, interactiveBorder: 10, theme: 'quarto', - placement: 'bottom-start' + placement: 'bottom-start', }; + if (contentFn) { + config.content = contentFn; + } + if (onTriggerFn) { + config.onTrigger = onTriggerFn; + } + if (onUntriggerFn) { + config.onUntrigger = onUntriggerFn; + } window.tippy(el, config); } const noterefs = window.document.querySelectorAll('a[role="doc-noteref"]'); @@ -598,6 +633,125 @@

    SCORE Sports Data Repository

    const note = window.document.getElementById(id); return note.innerHTML; }); + } + const xrefs = window.document.querySelectorAll('a.quarto-xref'); + const processXRef = (id, note) => { + // Strip column container classes + const stripColumnClz = (el) => { + el.classList.remove("page-full", "page-columns"); + if (el.children) { + for (const child of el.children) { + stripColumnClz(child); + } + } + } + stripColumnClz(note) + if (id === null || id.startsWith('sec-')) { + // Special case sections, only their first couple elements + const container = document.createElement("div"); + if (note.children && note.children.length > 2) { + container.appendChild(note.children[0].cloneNode(true)); + for (let i = 1; i < note.children.length; i++) { + const child = note.children[i]; + if (child.tagName === "P" && child.innerText === "") { + continue; + } else { + container.appendChild(child.cloneNode(true)); + break; + } + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(container); + } + return container.innerHTML + } else { + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + return note.innerHTML; + } + } else { + // Remove any anchor links if they are present + const anchorLink = note.querySelector('a.anchorjs-link'); + if (anchorLink) { + anchorLink.remove(); + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + // TODO in 1.5, we should make sure this works without a callout special case + if (note.classList.contains("callout")) { + return note.outerHTML; + } else { + return note.innerHTML; + } + } + } + for (var i=0; i res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.getElementById(id); + if (note !== null) { + const html = processXRef(id, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + } else { + // See if we can fetch a full url (with no hash to target) + // This is a special case and we should probably do some content thinning / targeting + fetch(url) + .then(res => res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.querySelector('main.content'); + if (note !== null) { + // This should only happen for chapter cross references + // (since there is no id in the URL) + // remove the first header + if (note.children.length > 0 && note.children[0].tagName === "HEADER") { + note.children[0].remove(); + } + const html = processXRef(null, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + }, function(instance) { + }); } let selectedAnnoteEl; const selectorForAnnotation = ( cell, annotation) => { @@ -640,6 +794,7 @@

    SCORE Sports Data Repository

    } div.style.top = top - 2 + "px"; div.style.height = height + 4 + "px"; + div.style.left = 0; let gutterDiv = window.document.getElementById("code-annotation-line-highlight-gutter"); if (gutterDiv === null) { gutterDiv = window.document.createElement("div"); @@ -665,6 +820,32 @@

    SCORE Sports Data Repository

    }); selectedAnnoteEl = undefined; }; + // Handle positioning of the toggle + window.addEventListener( + "resize", + throttle(() => { + elRect = undefined; + if (selectedAnnoteEl) { + selectCodeLines(selectedAnnoteEl); + } + }, 10) + ); + function throttle(fn, ms) { + let throttle = false; + let timer; + return (...args) => { + if(!throttle) { // first call gets through + fn.apply(this, args); + throttle = true; + } else { // all the others get throttled + if(timer) clearTimeout(timer); // cancel #2 + timer = setTimeout(() => { + fn.apply(this, args); + timer = throttle = false; + }, ms); + } + }; + } // Attach click handler to the DT const annoteDls = window.document.querySelectorAll('dt[data-target-cell]'); for (const annoteDlNode of annoteDls) { @@ -730,7 +911,9 @@

    SCORE Sports Data Repository

    - + @@ -739,4 +922,5 @@

    SCORE Sports Data Repository

    + \ No newline at end of file diff --git a/lacrosse/lacrosse_ncaa_div1.html b/lacrosse/lacrosse_ncaa_div1.html index e1358af..3c3dc32 100644 --- a/lacrosse/lacrosse_ncaa_div1.html +++ b/lacrosse/lacrosse_ncaa_div1.html @@ -2,7 +2,7 @@ - + @@ -48,7 +48,13 @@ "collapse-after": 3, "panel-placement": "end", "type": "overlay", - "limit": 20, + "limit": 50, + "keyboard-shortcut": [ + "f", + "/", + "s" + ], + "show-item-context": false, "language": { "search-no-results-text": "No results", "search-matching-documents-text": "matching documents", @@ -57,6 +63,7 @@ "search-more-match-text": "more match in this document", "search-more-matches-text": "more matches in this document", "search-clear-button-title": "Clear", + "search-text-placeholder": "", "search-detached-cancel-button-title": "Cancel", "search-submit-button-title": "Submit", "search-label": "Search" @@ -70,9 +77,9 @@
    -
    -
@@ -264,6 +277,12 @@ - +
-
+

Team statistics for NCAA Division 1 Men’s and Women’s Lacrosse

@@ -511,8 +536,10 @@

Team statistics for NCAA Division 1 Men’s and Women’s Lacr

+
+

Motivation

Over the years, lacrosse has experienced remarkable growth, with increased popularity and participation propelling the sport to new heights. This surge has led to a rise in skilled athletes competing in high-level leagues, notably NCAA Division I Men’s Lacrosse. Within this heightened competition, faceoffs are known to be a vital aspect of the game. Due to their important impact, players train to specifically specialize in them, as winning a faceoff often grants their teams crucial opportunities for offensive possession which can profoundly impact the course of the game.

@@ -857,10 +884,9 @@

References

// clear code selection e.clearSelection(); }); - function tippyHover(el, contentFn) { + function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) { const config = { allowHTML: true, - content: contentFn, maxWidth: 500, delay: 100, arrow: false, @@ -870,8 +896,17 @@

References

interactive: true, interactiveBorder: 10, theme: 'quarto', - placement: 'bottom-start' + placement: 'bottom-start', }; + if (contentFn) { + config.content = contentFn; + } + if (onTriggerFn) { + config.onTrigger = onTriggerFn; + } + if (onUntriggerFn) { + config.onUntrigger = onUntriggerFn; + } window.tippy(el, config); } const noterefs = window.document.querySelectorAll('a[role="doc-noteref"]'); @@ -885,6 +920,125 @@

References

const note = window.document.getElementById(id); return note.innerHTML; }); + } + const xrefs = window.document.querySelectorAll('a.quarto-xref'); + const processXRef = (id, note) => { + // Strip column container classes + const stripColumnClz = (el) => { + el.classList.remove("page-full", "page-columns"); + if (el.children) { + for (const child of el.children) { + stripColumnClz(child); + } + } + } + stripColumnClz(note) + if (id === null || id.startsWith('sec-')) { + // Special case sections, only their first couple elements + const container = document.createElement("div"); + if (note.children && note.children.length > 2) { + container.appendChild(note.children[0].cloneNode(true)); + for (let i = 1; i < note.children.length; i++) { + const child = note.children[i]; + if (child.tagName === "P" && child.innerText === "") { + continue; + } else { + container.appendChild(child.cloneNode(true)); + break; + } + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(container); + } + return container.innerHTML + } else { + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + return note.innerHTML; + } + } else { + // Remove any anchor links if they are present + const anchorLink = note.querySelector('a.anchorjs-link'); + if (anchorLink) { + anchorLink.remove(); + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + // TODO in 1.5, we should make sure this works without a callout special case + if (note.classList.contains("callout")) { + return note.outerHTML; + } else { + return note.innerHTML; + } + } + } + for (var i=0; i res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.getElementById(id); + if (note !== null) { + const html = processXRef(id, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + } else { + // See if we can fetch a full url (with no hash to target) + // This is a special case and we should probably do some content thinning / targeting + fetch(url) + .then(res => res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.querySelector('main.content'); + if (note !== null) { + // This should only happen for chapter cross references + // (since there is no id in the URL) + // remove the first header + if (note.children.length > 0 && note.children[0].tagName === "HEADER") { + note.children[0].remove(); + } + const html = processXRef(null, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + }, function(instance) { + }); } let selectedAnnoteEl; const selectorForAnnotation = ( cell, annotation) => { @@ -927,6 +1081,7 @@

References

} div.style.top = top - 2 + "px"; div.style.height = height + 4 + "px"; + div.style.left = 0; let gutterDiv = window.document.getElementById("code-annotation-line-highlight-gutter"); if (gutterDiv === null) { gutterDiv = window.document.createElement("div"); @@ -952,6 +1107,32 @@

References

}); selectedAnnoteEl = undefined; }; + // Handle positioning of the toggle + window.addEventListener( + "resize", + throttle(() => { + elRect = undefined; + if (selectedAnnoteEl) { + selectCodeLines(selectedAnnoteEl); + } + }, 10) + ); + function throttle(fn, ms) { + let throttle = false; + let timer; + return (...args) => { + if(!throttle) { // first call gets through + fn.apply(this, args); + throttle = true; + } else { // all the others get throttled + if(timer) clearTimeout(timer); // cancel #2 + timer = setTimeout(() => { + fn.apply(this, args); + timer = throttle = false; + }, ms); + } + }; + } // Attach click handler to the DT const annoteDls = window.document.querySelectorAll('dt[data-target-cell]'); for (const annoteDlNode of annoteDls) { @@ -1017,7 +1198,9 @@

References

- + @@ -1026,4 +1209,5 @@

References

+ \ No newline at end of file diff --git a/lacrosse/lacrosse_pll_vs_nll.html b/lacrosse/lacrosse_pll_vs_nll.html index 0cfe548..621ef0a 100644 --- a/lacrosse/lacrosse_pll_vs_nll.html +++ b/lacrosse/lacrosse_pll_vs_nll.html @@ -2,7 +2,7 @@ - + @@ -48,7 +48,13 @@ "collapse-after": 3, "panel-placement": "end", "type": "overlay", - "limit": 20, + "limit": 50, + "keyboard-shortcut": [ + "f", + "/", + "s" + ], + "show-item-context": false, "language": { "search-no-results-text": "No results", "search-matching-documents-text": "matching documents", @@ -57,6 +63,7 @@ "search-more-match-text": "more match in this document", "search-more-matches-text": "more matches in this document", "search-clear-button-title": "Clear", + "search-text-placeholder": "", "search-detached-cancel-button-title": "Cancel", "search-submit-button-title": "Submit", "search-label": "Search" @@ -70,9 +77,9 @@
-
-
-
+
-
+

Lacrosse PLL vs. NLL

@@ -509,8 +534,10 @@

Lacrosse PLL vs. NLL

+
+

Motivation

This data set examines the goals and shots in two prominent lacrosse leagues: the Premier Lacrosse League (PLL) and the National Lacrosse League (NLL).

@@ -662,10 +689,9 @@

References

// clear code selection e.clearSelection(); }); - function tippyHover(el, contentFn) { + function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) { const config = { allowHTML: true, - content: contentFn, maxWidth: 500, delay: 100, arrow: false, @@ -675,8 +701,17 @@

References

interactive: true, interactiveBorder: 10, theme: 'quarto', - placement: 'bottom-start' + placement: 'bottom-start', }; + if (contentFn) { + config.content = contentFn; + } + if (onTriggerFn) { + config.onTrigger = onTriggerFn; + } + if (onUntriggerFn) { + config.onUntrigger = onUntriggerFn; + } window.tippy(el, config); } const noterefs = window.document.querySelectorAll('a[role="doc-noteref"]'); @@ -690,6 +725,125 @@

References

const note = window.document.getElementById(id); return note.innerHTML; }); + } + const xrefs = window.document.querySelectorAll('a.quarto-xref'); + const processXRef = (id, note) => { + // Strip column container classes + const stripColumnClz = (el) => { + el.classList.remove("page-full", "page-columns"); + if (el.children) { + for (const child of el.children) { + stripColumnClz(child); + } + } + } + stripColumnClz(note) + if (id === null || id.startsWith('sec-')) { + // Special case sections, only their first couple elements + const container = document.createElement("div"); + if (note.children && note.children.length > 2) { + container.appendChild(note.children[0].cloneNode(true)); + for (let i = 1; i < note.children.length; i++) { + const child = note.children[i]; + if (child.tagName === "P" && child.innerText === "") { + continue; + } else { + container.appendChild(child.cloneNode(true)); + break; + } + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(container); + } + return container.innerHTML + } else { + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + return note.innerHTML; + } + } else { + // Remove any anchor links if they are present + const anchorLink = note.querySelector('a.anchorjs-link'); + if (anchorLink) { + anchorLink.remove(); + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + // TODO in 1.5, we should make sure this works without a callout special case + if (note.classList.contains("callout")) { + return note.outerHTML; + } else { + return note.innerHTML; + } + } + } + for (var i=0; i res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.getElementById(id); + if (note !== null) { + const html = processXRef(id, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + } else { + // See if we can fetch a full url (with no hash to target) + // This is a special case and we should probably do some content thinning / targeting + fetch(url) + .then(res => res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.querySelector('main.content'); + if (note !== null) { + // This should only happen for chapter cross references + // (since there is no id in the URL) + // remove the first header + if (note.children.length > 0 && note.children[0].tagName === "HEADER") { + note.children[0].remove(); + } + const html = processXRef(null, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + }, function(instance) { + }); } let selectedAnnoteEl; const selectorForAnnotation = ( cell, annotation) => { @@ -732,6 +886,7 @@

References

} div.style.top = top - 2 + "px"; div.style.height = height + 4 + "px"; + div.style.left = 0; let gutterDiv = window.document.getElementById("code-annotation-line-highlight-gutter"); if (gutterDiv === null) { gutterDiv = window.document.createElement("div"); @@ -757,6 +912,32 @@

References

}); selectedAnnoteEl = undefined; }; + // Handle positioning of the toggle + window.addEventListener( + "resize", + throttle(() => { + elRect = undefined; + if (selectedAnnoteEl) { + selectCodeLines(selectedAnnoteEl); + } + }, 10) + ); + function throttle(fn, ms) { + let throttle = false; + let timer; + return (...args) => { + if(!throttle) { // first call gets through + fn.apply(this, args); + throttle = true; + } else { // all the others get throttled + if(timer) clearTimeout(timer); // cancel #2 + timer = setTimeout(() => { + fn.apply(this, args); + timer = throttle = false; + }, ms); + } + }; + } // Attach click handler to the DT const annoteDls = window.document.querySelectorAll('dt[data-target-cell]'); for (const annoteDlNode of annoteDls) { @@ -822,7 +1003,9 @@

References

- + @@ -831,4 +1014,5 @@

References

+ \ No newline at end of file diff --git a/listings.json b/listings.json index 20b1c91..657f38d 100644 --- a/listings.json +++ b/listings.json @@ -2,6 +2,7 @@ { "listing": "/by-statsds-topic.html", "items": [ + "/soccer/D3_wsoc2022.html", "/running/boston_marathon_2023.html", "/tennis/australian-open.html", "/softball/softball_d1_2021-2022.html", @@ -12,6 +13,7 @@ "/motor_sports/NASCAR_driver_ratings.html", "/football/nfl-draft-combine.html", "/hockey/nhl_powerplay.html", + "/hockey/nhl_2223.html", "/basketball/nba-player-stats.html", "/football/nfl-team-statistics.html", "/hockey/nhl-shots.html", @@ -23,6 +25,7 @@ "/volleyball/volleyball_ncaa_team_stats.html", "/lacrosse/lacrosse_ncaa_div1.html", "/tennis/wta-grand-slam-matches.html", + "/basketball/WNBA20Yrs.html", "/basketball/wnba-shots.html" ] } diff --git a/motor_sports/NASCAR_driver_ratings.html b/motor_sports/NASCAR_driver_ratings.html index c97efea..d0a3e9a 100644 --- a/motor_sports/NASCAR_driver_ratings.html +++ b/motor_sports/NASCAR_driver_ratings.html @@ -2,7 +2,7 @@ - + @@ -48,7 +48,13 @@ "collapse-after": 3, "panel-placement": "end", "type": "overlay", - "limit": 20, + "limit": 50, + "keyboard-shortcut": [ + "f", + "/", + "s" + ], + "show-item-context": false, "language": { "search-no-results-text": "No results", "search-matching-documents-text": "matching documents", @@ -57,6 +63,7 @@ "search-more-match-text": "more match in this document", "search-more-matches-text": "more matches in this document", "search-clear-button-title": "Clear", + "search-text-placeholder": "", "search-detached-cancel-button-title": "Cancel", "search-submit-button-title": "Submit", "search-label": "Search" @@ -70,9 +77,9 @@
-
-
-
+
-
+

NASCAR Data Description

@@ -513,8 +538,10 @@

NASCAR Data Description

+
+

Motivation

@@ -695,10 +722,9 @@

References

// clear code selection e.clearSelection(); }); - function tippyHover(el, contentFn) { + function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) { const config = { allowHTML: true, - content: contentFn, maxWidth: 500, delay: 100, arrow: false, @@ -708,8 +734,17 @@

References

interactive: true, interactiveBorder: 10, theme: 'quarto', - placement: 'bottom-start' + placement: 'bottom-start', }; + if (contentFn) { + config.content = contentFn; + } + if (onTriggerFn) { + config.onTrigger = onTriggerFn; + } + if (onUntriggerFn) { + config.onUntrigger = onUntriggerFn; + } window.tippy(el, config); } const noterefs = window.document.querySelectorAll('a[role="doc-noteref"]'); @@ -723,6 +758,125 @@

References

const note = window.document.getElementById(id); return note.innerHTML; }); + } + const xrefs = window.document.querySelectorAll('a.quarto-xref'); + const processXRef = (id, note) => { + // Strip column container classes + const stripColumnClz = (el) => { + el.classList.remove("page-full", "page-columns"); + if (el.children) { + for (const child of el.children) { + stripColumnClz(child); + } + } + } + stripColumnClz(note) + if (id === null || id.startsWith('sec-')) { + // Special case sections, only their first couple elements + const container = document.createElement("div"); + if (note.children && note.children.length > 2) { + container.appendChild(note.children[0].cloneNode(true)); + for (let i = 1; i < note.children.length; i++) { + const child = note.children[i]; + if (child.tagName === "P" && child.innerText === "") { + continue; + } else { + container.appendChild(child.cloneNode(true)); + break; + } + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(container); + } + return container.innerHTML + } else { + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + return note.innerHTML; + } + } else { + // Remove any anchor links if they are present + const anchorLink = note.querySelector('a.anchorjs-link'); + if (anchorLink) { + anchorLink.remove(); + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + // TODO in 1.5, we should make sure this works without a callout special case + if (note.classList.contains("callout")) { + return note.outerHTML; + } else { + return note.innerHTML; + } + } + } + for (var i=0; i res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.getElementById(id); + if (note !== null) { + const html = processXRef(id, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + } else { + // See if we can fetch a full url (with no hash to target) + // This is a special case and we should probably do some content thinning / targeting + fetch(url) + .then(res => res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.querySelector('main.content'); + if (note !== null) { + // This should only happen for chapter cross references + // (since there is no id in the URL) + // remove the first header + if (note.children.length > 0 && note.children[0].tagName === "HEADER") { + note.children[0].remove(); + } + const html = processXRef(null, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + }, function(instance) { + }); } let selectedAnnoteEl; const selectorForAnnotation = ( cell, annotation) => { @@ -765,6 +919,7 @@

References

} div.style.top = top - 2 + "px"; div.style.height = height + 4 + "px"; + div.style.left = 0; let gutterDiv = window.document.getElementById("code-annotation-line-highlight-gutter"); if (gutterDiv === null) { gutterDiv = window.document.createElement("div"); @@ -790,6 +945,32 @@

References

}); selectedAnnoteEl = undefined; }; + // Handle positioning of the toggle + window.addEventListener( + "resize", + throttle(() => { + elRect = undefined; + if (selectedAnnoteEl) { + selectCodeLines(selectedAnnoteEl); + } + }, 10) + ); + function throttle(fn, ms) { + let throttle = false; + let timer; + return (...args) => { + if(!throttle) { // first call gets through + fn.apply(this, args); + throttle = true; + } else { // all the others get throttled + if(timer) clearTimeout(timer); // cancel #2 + timer = setTimeout(() => { + fn.apply(this, args); + timer = throttle = false; + }, ms); + } + }; + } // Attach click handler to the DT const annoteDls = window.document.querySelectorAll('dt[data-target-cell]'); for (const annoteDlNode of annoteDls) { @@ -855,7 +1036,9 @@

References

- + @@ -864,4 +1047,5 @@

References

+ \ No newline at end of file diff --git a/running/boston_marathon_2023.html b/running/boston_marathon_2023.html index be129ed..389b031 100644 --- a/running/boston_marathon_2023.html +++ b/running/boston_marathon_2023.html @@ -2,7 +2,7 @@ - + @@ -48,7 +48,13 @@ "collapse-after": 3, "panel-placement": "end", "type": "overlay", - "limit": 20, + "limit": 50, + "keyboard-shortcut": [ + "f", + "/", + "s" + ], + "show-item-context": false, "language": { "search-no-results-text": "No results", "search-matching-documents-text": "matching documents", @@ -57,6 +63,7 @@ "search-more-match-text": "more match in this document", "search-more-matches-text": "more matches in this document", "search-clear-button-title": "Clear", + "search-text-placeholder": "", "search-detached-cancel-button-title": "Cancel", "search-submit-button-title": "Submit", "search-label": "Search" @@ -70,9 +77,9 @@
-
-
-
+
-
+

2023 Boston Marathon runners

@@ -510,8 +535,10 @@

2023 Boston Marathon runners

+
+

Motivation

The Boston Marathon is an annual road race that takes place in the City of Boston Massachusetts. Attracting thousands of runners of varying skill and experience, year after year participants from around the world gather to compete for world records, divisional records, and personal bests. Examining the results of these athletes yields an interesting look into the spread and distribution of the times of all runners who successfully completed the historic race.

@@ -697,10 +724,9 @@

References

// clear code selection e.clearSelection(); }); - function tippyHover(el, contentFn) { + function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) { const config = { allowHTML: true, - content: contentFn, maxWidth: 500, delay: 100, arrow: false, @@ -710,8 +736,17 @@

References

interactive: true, interactiveBorder: 10, theme: 'quarto', - placement: 'bottom-start' + placement: 'bottom-start', }; + if (contentFn) { + config.content = contentFn; + } + if (onTriggerFn) { + config.onTrigger = onTriggerFn; + } + if (onUntriggerFn) { + config.onUntrigger = onUntriggerFn; + } window.tippy(el, config); } const noterefs = window.document.querySelectorAll('a[role="doc-noteref"]'); @@ -725,6 +760,125 @@

References

const note = window.document.getElementById(id); return note.innerHTML; }); + } + const xrefs = window.document.querySelectorAll('a.quarto-xref'); + const processXRef = (id, note) => { + // Strip column container classes + const stripColumnClz = (el) => { + el.classList.remove("page-full", "page-columns"); + if (el.children) { + for (const child of el.children) { + stripColumnClz(child); + } + } + } + stripColumnClz(note) + if (id === null || id.startsWith('sec-')) { + // Special case sections, only their first couple elements + const container = document.createElement("div"); + if (note.children && note.children.length > 2) { + container.appendChild(note.children[0].cloneNode(true)); + for (let i = 1; i < note.children.length; i++) { + const child = note.children[i]; + if (child.tagName === "P" && child.innerText === "") { + continue; + } else { + container.appendChild(child.cloneNode(true)); + break; + } + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(container); + } + return container.innerHTML + } else { + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + return note.innerHTML; + } + } else { + // Remove any anchor links if they are present + const anchorLink = note.querySelector('a.anchorjs-link'); + if (anchorLink) { + anchorLink.remove(); + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + // TODO in 1.5, we should make sure this works without a callout special case + if (note.classList.contains("callout")) { + return note.outerHTML; + } else { + return note.innerHTML; + } + } + } + for (var i=0; i res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.getElementById(id); + if (note !== null) { + const html = processXRef(id, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + } else { + // See if we can fetch a full url (with no hash to target) + // This is a special case and we should probably do some content thinning / targeting + fetch(url) + .then(res => res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.querySelector('main.content'); + if (note !== null) { + // This should only happen for chapter cross references + // (since there is no id in the URL) + // remove the first header + if (note.children.length > 0 && note.children[0].tagName === "HEADER") { + note.children[0].remove(); + } + const html = processXRef(null, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + }, function(instance) { + }); } let selectedAnnoteEl; const selectorForAnnotation = ( cell, annotation) => { @@ -767,6 +921,7 @@

References

} div.style.top = top - 2 + "px"; div.style.height = height + 4 + "px"; + div.style.left = 0; let gutterDiv = window.document.getElementById("code-annotation-line-highlight-gutter"); if (gutterDiv === null) { gutterDiv = window.document.createElement("div"); @@ -792,6 +947,32 @@

References

}); selectedAnnoteEl = undefined; }; + // Handle positioning of the toggle + window.addEventListener( + "resize", + throttle(() => { + elRect = undefined; + if (selectedAnnoteEl) { + selectCodeLines(selectedAnnoteEl); + } + }, 10) + ); + function throttle(fn, ms) { + let throttle = false; + let timer; + return (...args) => { + if(!throttle) { // first call gets through + fn.apply(this, args); + throttle = true; + } else { // all the others get throttled + if(timer) clearTimeout(timer); // cancel #2 + timer = setTimeout(() => { + fn.apply(this, args); + timer = throttle = false; + }, ms); + } + }; + } // Attach click handler to the DT const annoteDls = window.document.querySelectorAll('dt[data-target-cell]'); for (const annoteDlNode of annoteDls) { @@ -857,7 +1038,9 @@

References

- + @@ -866,4 +1049,5 @@

References

+ \ No newline at end of file diff --git a/search.json b/search.json index 5ff344a..c84b1a7 100644 --- a/search.json +++ b/search.json @@ -1,807 +1,1552 @@ [ { - "objectID": "esports/lol-buff-nerf.html", - "href": "esports/lol-buff-nerf.html", - "title": "League of Legends - Buffing and Nerfing", + "objectID": "data-sources.html", + "href": "data-sources.html", + "title": "Data Sources", "section": "", - "text": "League of Legends is a 5 v. 5 multiplayer online battle arena (MOBA) game developed by Riot Games. They collect data to evaluate the effect of every champion, adjusting and fine-tuning various aspects associated with each champion, to ensure fair and competitive gameplay. Through updates (patches) they can reduce the power of champions that are too strong (known as nerfing) or enhance the abilities of less successful champions (nerfing)." + "text": "Here are some resources for finding sports datasets:\n\nCRAN Task View for Sports Analytics - catalog of R packages published on the Comprehensive R Archive Network (CRAN) organized by sport (curated by Benjamin S. Baumer, Quang Nguyen, and Gregory J. Matthews)\nSportsDataverse initiative - collection of software tools for accessing publicly available sports data (organized by Saiem Gilani)\nKaggle\nTidyTuesday - GitHub repository of datasets updated weekly with example code for accessing data (featuring a variety of sports examples)\nFiveThirtyEight - GitHub repository of datasets used in FiveThirtyEight articles", + "crumbs": [ + "Home", + "Data Sources" + ] }, { - "objectID": "esports/lol-buff-nerf.html#motivation", - "href": "esports/lol-buff-nerf.html#motivation", - "title": "League of Legends - Buffing and Nerfing", + "objectID": "lacrosse/lacrosse_ncaa_div1.html", + "href": "lacrosse/lacrosse_ncaa_div1.html", + "title": "Team statistics for NCAA Division 1 Men’s and Women’s Lacrosse", "section": "", - "text": "League of Legends is a 5 v. 5 multiplayer online battle arena (MOBA) game developed by Riot Games. They collect data to evaluate the effect of every champion, adjusting and fine-tuning various aspects associated with each champion, to ensure fair and competitive gameplay. Through updates (patches) they can reduce the power of champions that are too strong (known as nerfing) or enhance the abilities of less successful champions (nerfing)." + "text": "Over the years, lacrosse has experienced remarkable growth, with increased popularity and participation propelling the sport to new heights. This surge has led to a rise in skilled athletes competing in high-level leagues, notably NCAA Division I Men’s Lacrosse. Within this heightened competition, faceoffs are known to be a vital aspect of the game. Due to their important impact, players train to specifically specialize in them, as winning a faceoff often grants their teams crucial opportunities for offensive possession which can profoundly impact the course of the game.", + "crumbs": [ + "Home", + "Lacrosse", + "Team statistics for NCAA Division 1 Men's and Women's Lacrosse" + ] }, { - "objectID": "esports/lol-buff-nerf.html#data", - "href": "esports/lol-buff-nerf.html#data", - "title": "League of Legends - Buffing and Nerfing", + "objectID": "lacrosse/lacrosse_ncaa_div1.html#motivation", + "href": "lacrosse/lacrosse_ncaa_div1.html#motivation", + "title": "Team statistics for NCAA Division 1 Men’s and Women’s Lacrosse", + "section": "", + "text": "Over the years, lacrosse has experienced remarkable growth, with increased popularity and participation propelling the sport to new heights. This surge has led to a rise in skilled athletes competing in high-level leagues, notably NCAA Division I Men’s Lacrosse. Within this heightened competition, faceoffs are known to be a vital aspect of the game. Due to their important impact, players train to specifically specialize in them, as winning a faceoff often grants their teams crucial opportunities for offensive possession which can profoundly impact the course of the game.", + "crumbs": [ + "Home", + "Lacrosse", + "Team statistics for NCAA Division 1 Men's and Women's Lacrosse" + ] + }, + { + "objectID": "lacrosse/lacrosse_ncaa_div1.html#data", + "href": "lacrosse/lacrosse_ncaa_div1.html#data", + "title": "Team statistics for NCAA Division 1 Men’s and Women’s Lacrosse", "section": "Data", - "text": "Data\nEach row is one of the 162 League of Legends champions. The two datasets show play results (e.g. win rates) for two consecutive patches of the game (12.22 and 12.23).\n\nLOL_patch_12.22.csv, LOL_patch_12.23.csv\n\n\nVariable\nDescription\n\n\n\n\nName\nName of the champion\n\n\nRole\nRole of the champion in a game\n\n\nKDA\nAverage kills, deaths and assists associated with each champion\n\n\nWRate\nWin rates of each champion\n\n\nPickRate\nSPick rates of each champion\n\n\nRolePerc\nPercent of time the champion is used in the expected role\n\n\nBanPerc\nBan percentages associated with each champion" + "text": "Data\n\nThere are three data sets: 2022-2023 statistics for Men’s teams, 2022-2023 statsitics for Women’s teams, and a dataset combining the Men’s and Women’s statisitcs (that only includes the variables available in each of the other two).\n\nlacrosse_men_ncaa_div1_2022_2023.csv\n\n\nThis data set contains 72 rows and 22 columns. Each row represents a men’s lacrosse team at the NCAA Division 1 level from the 2022-2023 season.\n\nlacrosse_women_ncaa_div1_2022_2023.csv\n\n\nVariable\nDescription\n\n\n\n\nTeam\ncollege of the team\n\n\navg_assists\naverage assists to goals per game\n\n\navg_caused_turnovers\naverage turnovers forced by the team per game\n\n\nclearing_pctg\npercentage of successful attempts to earn an offensive opportunity after gaining the ball in the teams own half\n\n\ntotal_faceoffs\ntotal faceoffs taken by a team for the season\n\n\nfaceoff_wins\ntotal faceoff wins by a team for the season\n\n\nfaceoff_win_pct\nproportion of total faceoff wins out of total faceoffs. Equivalent to the draw percentage in women’s lacrosse.\n\n\navg_goals\naverage goals per game\n\n\navg_goals_allowed\naverage goals allowed by the team per game\n\n\navg_ground_balls\naverage loose balls picked up by the team per game\n\n\nman_down_defense_pctg\nproportion of times a team stops the opponent from scoring while man down due to a penalty\n\n\nman_up_offense_pctg\nproportion of times the offense scores out of total opportunities while man up\n\n\navg_scoring_margin\naverage margin of goals per game\n\n\nopp_clear_pctg\nopponents clearing percentage averaged by game\n\n\navg_points\naverage team points per game\n\n\navg_saves\naverage saves per game\n\n\nshot_pctg\nproportion of shots that go in out of total shots\n\n\navg_turnovers\naverage turnovers that are directly the fault of a player per game\n\n\nW\ntotal wins by the team\n\n\nL\ntotal losses by the team\n\n\nwin_loss_pctg\nproportion of games won out of total games\n\n\n\nThis data set contains 120 rows and 18 columns. Each row represents a women’s lacrosse team at the NCAA Division 1 level from the 2022-2023 season.\n\n\n\n\n\n\n\nVariable Name\nDescription\n\n\n\n\nTeam\nThe name of the women’s NCAA lacrosse team.\n\n\ndraw_pctg\nDraw percentage, the proportion of draw controls won by the team in a game. Equivalent to the Faceoff percentage in Men’s lacrosse.\n\n\nturnovers_per_game\nAverage number of turnovers committed by the team per game.\n\n\nsog_per_game\nShots on goal (SOG) per game, the average number of shots on goal taken by the team.\n\n\nassists_per_game\nAverage number of assists made by the team per game.\n\n\ncaused_turnovers_per_game\nThe average number of caused turnovers by the team per game.\n\n\nclearing_pctg\nClearing percentage, the rate at which the team successfully clears the ball from defense to offense.\n\n\ndraw_controls_per_game\nThe average number of draw controls won by the team per game.\n\n\nfouls_per_game\nAverage number of fouls committed by the team per game.\n\n\nfree_position_pctg\nFree position percentage, the rate of successful free position shots taken by the team.\n\n\nground_balls_per_game\nThe average number of ground balls scooped by the team per game.\n\n\npoints_per_game\nAverage number of total points (goals + assists) scored by the team per game.\n\n\nsave_pctg\nSave percentage, the proportion of shots on goal saved by the team’s goalkeeper.\n\n\ngoals_allowed_per_game\nAverage number of goals allowed by the team’s defense per game.\n\n\ngoals_per_game\nAverage number of goals scored by the team per game.\n\n\nshots_per_game\nAverage number of total shots (on goal + off target) taken by the team per game.\n\n\nshot_pctg\nShooting percentage, the proportion of shots on goal that result in a goal.\n\n\nwin_pctg\nThe team’s winning percentage, calculated as the number of wins divided by total games played.\n\n\n\n\nNote: The table provides a brief description of each variable, but more context and understanding might be required to interpret and analyze these statistics effectively in the context of women’s NCAA lacrosse.\n\nlacrosse_men_and_women_ncaa_div1_2022_2023.csv\n\n\nThis data set contains 192 rows and 6 columns. Each row represents a lacrosse team at the NCAA Division 1 level from the 2022-2023 season. Teams come from both the men’s and womens division.\n\n\n\n\n\n\n\nVariable\nDescription\n\n\n\n\nTeam\ncollege of the team\n\n\nfaceoff_win_pct\nthe proportion of faceoffs win out of total faceoffs taken\n\n\nshots_per_game\naverage amount of shots per game\n\n\nshot_pctg\nproportion of shots that are goals out of total shots\n\n\nwin_loss_percentage\namount of wins out of total games played\n\n\nDivision\nthe division the team is in (Mens or Womens)", + "crumbs": [ + "Home", + "Lacrosse", + "Team statistics for NCAA Division 1 Men's and Women's Lacrosse" + ] }, { - "objectID": "esports/lol-buff-nerf.html#questions", - "href": "esports/lol-buff-nerf.html#questions", - "title": "League of Legends - Buffing and Nerfing", + "objectID": "lacrosse/lacrosse_ncaa_div1.html#questions", + "href": "lacrosse/lacrosse_ncaa_div1.html#questions", + "title": "Team statistics for NCAA Division 1 Men’s and Women’s Lacrosse", "section": "Questions", - "text": "Questions\n\nLook for outliers (e.g. in win rate) for the 12.22 patch to identify champions that might need to be buffed or nerfed.\nLook at results for the 12.23 patch to see if outliers identified from 12.22 might have been adjusted of if any different champions are now outliers." + "text": "Questions\nUsing either Women’s or Men’s\n\nWhich teams have better faceoff win proportions than the average?\nWhich teams have worse faceoff win proportions than the average?\nWhat sort of impact does faceoff percentage have on the success of the team?\n\nUsing the data with both Women’s and Men’s\n\nIn terms of a team’s win percentage, are faceoffs more important for men or women?\nWhat factors could make faceoffs more important for men or women?\nHow does faceoff win percentage affect winning percentage?", + "crumbs": [ + "Home", + "Lacrosse", + "Team statistics for NCAA Division 1 Men's and Women's Lacrosse" + ] }, { - "objectID": "esports/lol-buff-nerf.html#references", - "href": "esports/lol-buff-nerf.html#references", - "title": "League of Legends - Buffing and Nerfing", + "objectID": "lacrosse/lacrosse_ncaa_div1.html#references", + "href": "lacrosse/lacrosse_ncaa_div1.html#references", + "title": "Team statistics for NCAA Division 1 Men’s and Women’s Lacrosse", "section": "References", - "text": "References\nLol champion stats, 12.22 master, win rates. METAsrc. (n.d.). https://www.metasrc.com/5v5/12.22/stats?ranks=master\nLol champion stats, 12.23 master, win rates. METAsrc. (n.d.-b). https://www.metasrc.com/5v5/12.23/stats?ranks=master" + "text": "References\nNCAA Website: Women’s and Men’s Lacrosse Division I\nhttp://stats.ncaa.org/rankings/change_sport_year_div", + "crumbs": [ + "Home", + "Lacrosse", + "Team statistics for NCAA Division 1 Men's and Women's Lacrosse" + ] }, { - "objectID": "wrestling/sumo_wrestingling_since_1957.html", - "href": "wrestling/sumo_wrestingling_since_1957.html", - "title": "Sumo wrestler characteristics", + "objectID": "motor_sports/NASCAR_driver_ratings.html#data", + "href": "motor_sports/NASCAR_driver_ratings.html#data", + "title": "NASCAR Data Description", + "section": "Data", + "text": "Data\nThe data comes from the NASCAR website and shows the season statistics from 2007-2022. Each row displays the metrics of a racer for that specific year. The data frame contains 1111 rows of observations and 20 variables.\n\nnascar_driver_statistics.csv\n\n\nVariable\nDescription\n\n\n\n\nWins\nThe sum of the driver’s victories\n\n\nAvgStart\nThe sum of the driver’s starting positions divided by the number of races\n\n\nAvgMidRace\nThe sum of the driver’s mid race positions divided by the number of races\n\n\nAvgFinish\nThe sum of the driver’s finishing positions divided by the number of races\n\n\nAvgPos\nThe sum of the driver’s position each lap divided by the number of laps\n\n\nPassDiff\nThe sum of green flag passes minus green times passed\n\n\nGreenFlagPasses\nNumber of green flag passes performed by the driver\n\n\nGreenFlagPassed\nNumber of times driver is passed during green flag\n\n\nQualityPasses\nNumber of passes in the top 15 while under green flag conditions by driver\n\n\nPercentQualityPasses\nThe sum of quality passes divided by green flag passes\n\n\nNumFastestLaps\nNumber of where the driver had the fastest speed on the lap\n\n\nLapsInTop15\nNumber of laps completed while running in a top 15 position\n\n\nPercentLapsInTop15\nThe sum of the laps run in the top 15 divided by total laps completed\n\n\nLapsLed\nThe sum of the laps led in a race\n\n\nPercentLapsLed\nThe sum of the laps led in the race\n\n\nTotalLaps\nThe sum of the laps completed by a driver that year\n\n\nDriverRating\nFormula combining wins, finish, top15-finish, average running position while on lead lap, average speed under green, fastest lap, led most laps, and lead lap finish with a maximum rating of 150 points", + "crumbs": [ + "Home", + "Motor Sports", + "NASCAR Data Description" + ] + }, + { + "objectID": "motor_sports/NASCAR_driver_ratings.html#questions", + "href": "motor_sports/NASCAR_driver_ratings.html#questions", + "title": "NASCAR Data Description", + "section": "Questions", + "text": "Questions\n\nWhat is the best way to model the relationship between average finish and driver rating? Are the linear model assumptions met?\nWhich predictors best predict driver rating?", + "crumbs": [ + "Home", + "Motor Sports", + "NASCAR Data Description" + ] + }, + { + "objectID": "motor_sports/NASCAR_driver_ratings.html#references", + "href": "motor_sports/NASCAR_driver_ratings.html#references", + "title": "NASCAR Data Description", + "section": "References", + "text": "References\nhttps://www.nascar.com/stats/", + "crumbs": [ + "Home", + "Motor Sports", + "NASCAR Data Description" + ] + }, + { + "objectID": "tennis/wta-grand-slam-matches.html", + "href": "tennis/wta-grand-slam-matches.html", + "title": "WTA Grand Slam Matches", "section": "", - "text": "The Banzuke is a ranking system used in Japanese sumo wrestling to determine the order and matchups for tournaments. In the Makuuchi Banzuke division, which is the top division, the history can be traced back to the 18th century. The Banzuke lists the wrestlers’ ranks, names, stables, and more in a hierarchical order based on their performance and records in previous tournaments. Over the years, the Makuuchi Banzuke has evolved, incorporating changes in the number of ranks and divisions. Today, it plays a crucial role in organizing and structuring sumo tournaments, reflecting the wrestlers’ skill, rank, and accomplishments in the sport." + "text": "The Women’s Tennis Associate (WTA) organizes the top women’s professional tennis tour in the world. Throughout the year, there are four major tournaments yielding the most ranking points, prize money, and fame. These are known as the Grand Slam tournaments, consisting of (in order): Australian Open, French Open (aka Roland Garros), Wimbledon, and the US Open. With this dataset of information about winners and losers in WTA Grand Slam matches from 2018 to 2022, you’ll be able to explore statistics collected during matches and information about the athletes to predict match outcomes.", + "crumbs": [ + "Home", + "Tennis", + "WTA Grand Slam Matches" + ] }, { - "objectID": "wrestling/sumo_wrestingling_since_1957.html#motivation", - "href": "wrestling/sumo_wrestingling_since_1957.html#motivation", - "title": "Sumo wrestler characteristics", + "objectID": "tennis/wta-grand-slam-matches.html#motivation", + "href": "tennis/wta-grand-slam-matches.html#motivation", + "title": "WTA Grand Slam Matches", "section": "", - "text": "The Banzuke is a ranking system used in Japanese sumo wrestling to determine the order and matchups for tournaments. In the Makuuchi Banzuke division, which is the top division, the history can be traced back to the 18th century. The Banzuke lists the wrestlers’ ranks, names, stables, and more in a hierarchical order based on their performance and records in previous tournaments. Over the years, the Makuuchi Banzuke has evolved, incorporating changes in the number of ranks and divisions. Today, it plays a crucial role in organizing and structuring sumo tournaments, reflecting the wrestlers’ skill, rank, and accomplishments in the sport." + "text": "The Women’s Tennis Associate (WTA) organizes the top women’s professional tennis tour in the world. Throughout the year, there are four major tournaments yielding the most ranking points, prize money, and fame. These are known as the Grand Slam tournaments, consisting of (in order): Australian Open, French Open (aka Roland Garros), Wimbledon, and the US Open. With this dataset of information about winners and losers in WTA Grand Slam matches from 2018 to 2022, you’ll be able to explore statistics collected during matches and information about the athletes to predict match outcomes.", + "crumbs": [ + "Home", + "Tennis", + "WTA Grand Slam Matches" + ] }, { - "objectID": "wrestling/sumo_wrestingling_since_1957.html#data", - "href": "wrestling/sumo_wrestingling_since_1957.html#data", - "title": "Sumo wrestler characteristics", + "objectID": "tennis/wta-grand-slam-matches.html#data", + "href": "tennis/wta-grand-slam-matches.html#data", + "title": "WTA Grand Slam Matches", "section": "Data", - "text": "Data\nThe data set has 15760 rows with 10 columns. Each row represents an appearance of a sumo wrestler in the Makuuchi Banzuke, Japan’s most elite sumo wrestling division. The data dates from 1957 through mid 2023 and is comprised of multiple Bashos (tournaments) each year. An addition to the standard columns of wrestler names and records, the data contains many other metrics pertaining to each wrestlers birth place and physical stature.\n\nsumo_since_1957.csv\n\n\nVariable\nDescription\n\n\n\n\nRank\nRank of the wrestler in the Basho\n\n\nRikishi\nThe ring name of a the sumo wrestler\n\n\nHeya\nThe establishment where a wrestler trains\n\n\nShusshin\nThe birthplace, or place of origin of the wrestler\n\n\nBirth Date\nThe birth date of the wrestler\n\n\nheight_cm\nThe height of the wrestler at the time of the event in centimeters\n\n\nweight_kg\nThe weight of the wrestler at the time of the even in kilograms\n\n\nwins\nAmount of wins in the specific Basho\n\n\nlosses\nAmount of losses in the specific Basho\n\n\nties\nAmount of ties in the specific Basho" + "text": "Data\nThis dataset contains all WTA matches between 2018 and 2022, courtesy of Jeff Sackmann’s famous tennis repository.\nThere are 2,413 rows in this dataset where each row corresponds to a single WTA Grand Slam match. Each row has 38 columns with general information about the matches, as well as columns describing the winner and loser of the matches:\n\nwta-grand-slam-matches-2018to2022.csv\n\n\nVariable\nDescription\n\n\n\n\ntourney_name\nname of the Grand Slam Tournament (French Open is recorded as ROLAND GARROS)\n\n\nsurface\ntype of court surface\n\n\ntourney_date\neight digits, YYYYMMDD, usually the Monday of the tournament week\n\n\nwinner/loser_seed\nseed of winning/losing player\n\n\nwinner/loser_name\nName of the winning/losing player\n\n\nwinner/loser_hand\nR = right, L = left, U = unknown. For ambidextrous players, this is their serving hand\n\n\nwinner/loser_ht\nheight in centimeters, where available\n\n\nwinner/loser_ioc\nthree-character country code\n\n\nwinner/loser_age\nage, in years, as of the tourney_date\n\n\nscore\nfinal match score\n\n\nround\ntournament round\n\n\nminutes\nmatch length in minutes\n\n\nw/l_ace\nwinner/loser’s number of aces\n\n\nw/l_df\nwinner/loser’s number of doubles faults\n\n\nw/l_svpt\nwinner/loser’s number of serve points\n\n\nw/l_1stIn\nwinner/loser’s number of first serves made\n\n\nw/l_1stWon\nwinner/loser’s number of first-serve points won\n\n\nw/l_2ndWon\nwinner/loser’s number of second-serve points won\n\n\nw/l_SvGms\nwinner/loser’s number of serve games\n\n\nw/l_bpSaved\nwinner/loser’s number of break points saved\n\n\nw/l_bpFaced\nwinner/loser’s number of break points faced\n\n\nwinner/loser_rank\nwinner/loser’s WTA rank, as of the tourney_date, or the most recent ranking date before the tourney_date\n\n\n\nNote that a full glossary of the features available for match data can be found here.", + "crumbs": [ + "Home", + "Tennis", + "WTA Grand Slam Matches" + ] }, { - "objectID": "wrestling/sumo_wrestingling_since_1957.html#questions", - "href": "wrestling/sumo_wrestingling_since_1957.html#questions", - "title": "Sumo wrestler characteristics", + "objectID": "tennis/wta-grand-slam-matches.html#questions", + "href": "tennis/wta-grand-slam-matches.html#questions", + "title": "WTA Grand Slam Matches", "section": "Questions", - "text": "Questions\n\nWhich place of origin has resulted in the most sumo wrestlers?\nWhich wrestlers train at Kataonami?\nWhich wrestlers have the highest win percentage?\nWhich wrestlers have had the most successful careers?" + "text": "Questions\n\nAfter performing the appropriate data wrangling, build a logistic regression model to predict whether or not the seed favorite wins the match based on the athlete information and recorded match statistics. Which variables, if any, are predictive of the match outcome? Describe their relationships.\nChoose an athlete of interest, e.g., Serena Williams. Create a new dataset where the columns describe the performance of that athlete in each particular match. Explore how the different match information and statistics correspond to whether or not the athlete is able to win the match.\nExplore the relationship between court surface and the various observed match statistics. This could be done by clustering matches based on the winner and loser statistics, and see how well aligned they are with the court surface type or Grand Slam event.", + "crumbs": [ + "Home", + "Tennis", + "WTA Grand Slam Matches" + ] }, { - "objectID": "wrestling/sumo_wrestingling_since_1957.html#references", - "href": "wrestling/sumo_wrestingling_since_1957.html#references", - "title": "Sumo wrestler characteristics", + "objectID": "tennis/wta-grand-slam-matches.html#references", + "href": "tennis/wta-grand-slam-matches.html#references", + "title": "WTA Grand Slam Matches", "section": "References", - "text": "References\nSumo Reference - Alexander Nitschke https://sumodb.sumogames.de\nThe Sumo Matchup Centuries In The Making - FiveThirtyEight https://fivethirtyeight.com/features/the-sumo-matchup-centuries-in-the-making/" + "text": "References\nData was accessed from Jeff Sackmann’s tennis GitHub repository.", + "crumbs": [ + "Home", + "Tennis", + "WTA Grand Slam Matches" + ] }, { - "objectID": "hockey/phf-shots.html", - "href": "hockey/phf-shots.html", - "title": "Premier Hockey Federation Shots", + "objectID": "running/boston_marathon_2023.html", + "href": "running/boston_marathon_2023.html", + "title": "2023 Boston Marathon runners", "section": "", - "text": "The Premier Hockey Federation (PHF) is a professional women’s hockey league in North America. Recently, more data has become available for people to explore and join the women’s hockey analytics community. This dataset lets you explore shots taken during the 2021-2022 PHF season." + "text": "The Boston Marathon is an annual road race that takes place in the City of Boston Massachusetts. Attracting thousands of runners of varying skill and experience, year after year participants from around the world gather to compete for world records, divisional records, and personal bests. Examining the results of these athletes yields an interesting look into the spread and distribution of the times of all runners who successfully completed the historic race.", + "crumbs": [ + "Home", + "Running", + "2023 Boston Marathon runners" + ] }, { - "objectID": "hockey/phf-shots.html#motivation", - "href": "hockey/phf-shots.html#motivation", - "title": "Premier Hockey Federation Shots", + "objectID": "running/boston_marathon_2023.html#motivation", + "href": "running/boston_marathon_2023.html#motivation", + "title": "2023 Boston Marathon runners", "section": "", - "text": "The Premier Hockey Federation (PHF) is a professional women’s hockey league in North America. Recently, more data has become available for people to explore and join the women’s hockey analytics community. This dataset lets you explore shots taken during the 2021-2022 PHF season." + "text": "The Boston Marathon is an annual road race that takes place in the City of Boston Massachusetts. Attracting thousands of runners of varying skill and experience, year after year participants from around the world gather to compete for world records, divisional records, and personal bests. Examining the results of these athletes yields an interesting look into the spread and distribution of the times of all runners who successfully completed the historic race.", + "crumbs": [ + "Home", + "Running", + "2023 Boston Marathon runners" + ] }, { - "objectID": "hockey/phf-shots.html#data", - "href": "hockey/phf-shots.html#data", - "title": "Premier Hockey Federation Shots", + "objectID": "running/boston_marathon_2023.html#data", + "href": "running/boston_marathon_2023.html#data", + "title": "2023 Boston Marathon runners", "section": "Data", - "text": "Data\nThis dataset contains information about 1,502 shots during the 2021-2022 PHF season.\nThe data was collected using the fastRhockey package in R.\n\nphf-shots-2021.csv\n\n\nVariable\nDescription\n\n\n\n\nplay_description\nString detailed description of event\n\n\nplay_type\nString denoting the outcome of the shot, either Goal, PP Goal (meaning power play goal), SH Goal, (meaning shorthanded goal), Shot (shot saved by goalie), or Shot BLK (meaning blocked by a non-goalie)\n\n\nperiod_id\nInteger value of the game period\n\n\ntime_remaining\nString display of time remaining in period in MM:SS format where MM and SS denotes minutes and seconds remaning respectively\n\n\nsec_from_start\nNumeric value of the seconds since the start of the game\n\n\nhome_team\nString name of the home team\n\n\naway_team\nString name of the away team\n\n\nhome_goals\nInteger value of the home team score after the event\n\n\naway_goals\nInteger value of the away team score after the event\n\n\nshooting_team\nString defining the team taking the shot\n\n\nplayer_name_1\nString name of the player taking the shot\n\n\nplayer_name_2\nString name of the secondary event player (blocker or goalie)\n\n\ngoalie_involved\nString name of the goalie involved in the shot attempt\n\n\nshot_result\nString denoting the outcome of the shot, either blocked (meaning blocked by a non-goalie), made (goal), or saved (shot on net that was saved by a goalie)\n\n\non_ice_situation\nString indicator for game strength: Even Strength or Power Play\n\n\nhome_score_total\nInteger value of the home team score at the end of the game\n\n\naway_score_total\nInteger value of the away team score at the end of the game" + "text": "Data\nThe data set contains 26598 rows and 15 columns. Each row represents a runner who completed the Boston Marathon in 2023\n\n\n\n\n\n\n\nVariable\nDescription\n\n\n\n\nage_group\nage group of the runner\n\n\nplace_overall\nfinishing place of the runner out of all runners\n\n\nplace_gender\nfinishing place of runner among the same gender\n\n\nplace_division\nfinishing place of runner among runners of the same gender and age group\n\n\nname\nname of runner\n\n\ngender\ngender of runner\n\n\nteam\nteam the runner is affiliated with\n\n\nbib_number\nbib number of runner\n\n\nhalf_time\nhalf marathon time of runner\n\n\nfinish_net\nfinishing time timed from when they cross the starting gate\n\n\nfinish_gun\nfinishing time of runner timed from when the starter gun is fired\n\n\nage_group\nage group of the runner\n\n\nhalf_time_sec\nhalf marathon time in seconds\n\n\nfinish_net_sec\nnet finish in seconds\n\n\nfinish_gun_sec\ngun finish in seconds\n\n\n\n\nData file\n\nboston_marathon_2023.csv", + "crumbs": [ + "Home", + "Running", + "2023 Boston Marathon runners" + ] }, { - "objectID": "hockey/phf-shots.html#questions", - "href": "hockey/phf-shots.html#questions", - "title": "Premier Hockey Federation Shots", + "objectID": "running/boston_marathon_2023.html#questions", + "href": "running/boston_marathon_2023.html#questions", + "title": "2023 Boston Marathon runners", "section": "Questions", - "text": "Questions\n\nUsing the appropriate statistical test, assess whether or not shot_result is independent of the on_ice_situation.\nCount the number of shots taken by each team. Build a logistic regression model to predict the probability of the home team winning the game based on the number of attempted shots by each team." + "text": "Questions\n\nWhat summary statistics are relevant to examine for finishing time?\nWhich race times would be considered outliers?\nAre there extreme outliers?\nWhich runner, the top male or top female, was more remarkable in comparison to their respective fields?", + "crumbs": [ + "Home", + "Running", + "2023 Boston Marathon runners" + ] }, { - "objectID": "hockey/phf-shots.html#references", - "href": "hockey/phf-shots.html#references", - "title": "Premier Hockey Federation Shots", + "objectID": "running/boston_marathon_2023.html#references", + "href": "running/boston_marathon_2023.html#references", + "title": "2023 Boston Marathon runners", "section": "References", - "text": "References\nHowell B, Gilani S (2022). fastRhockey: Functions to Access Premier Hockey Federation and National Hockey League Play by Play Data. R package version 0.4.0, https://CRAN.R-project.org/package=fastRhockey." + "text": "References\nBoston Athletic Association\nhttps://www.baa.org", + "crumbs": [ + "Home", + "Running", + "2023 Boston Marathon runners" + ] }, { - "objectID": "baseball/verlander-pitches.html", - "href": "baseball/verlander-pitches.html", - "title": "Justin Verlander Pitches", + "objectID": "soccer/D3_wsoc2022.html", + "href": "soccer/D3_wsoc2022.html", + "title": "2022 Divison III Women’s Soccer Results", "section": "", - "text": "After nearly two full seasons due to injury, at the age of 39 Justin Verlander returned for the 2022 season to win the American League Cy Young award and World Series with the Houston Astros. Leading the league in a variety of statistics, Verlander dominated in his starts throughout the season. Pitch selection has played a key role into Verlander’s recent success with the Astros. Verlander throws four types of pitches (using MLB’s abbreviation): fastball (FF), slider (SL), curveball (CB), and changeup (CH). However, pitches are thrown in the context of an at-bat where the ball-strike count starts 0-0, and progresses until either the batter strikes out (reaches three strikes), is walked (reaches four balls), or is either hit-by-pitch or hits the ball in-play. As the count varies, pitchers often decide to favor certain pitches over others, e.g, with three balls (i.e., 3-X counts) the pitcher may favor throwing more accurate fastballs relative to out-of-the-zone offspeed pitches that are favored with two strikes (i.e., X-2 counts)." + "text": "Have you ever wondered if you know how many goals the home team scored in a soccer game then can you predict how many goals the opponent scored? Is there a relationship between this? With this data set on NCAA Division III women’s soccer data from the 2022 season you will be able to explore this question.", + "crumbs": [ + "Home", + "Soccer", + "2022 Divison III Women's Soccer Results" + ] }, { - "objectID": "baseball/verlander-pitches.html#motivation", - "href": "baseball/verlander-pitches.html#motivation", - "title": "Justin Verlander Pitches", + "objectID": "soccer/D3_wsoc2022.html#motivation", + "href": "soccer/D3_wsoc2022.html#motivation", + "title": "2022 Divison III Women’s Soccer Results", "section": "", - "text": "After nearly two full seasons due to injury, at the age of 39 Justin Verlander returned for the 2022 season to win the American League Cy Young award and World Series with the Houston Astros. Leading the league in a variety of statistics, Verlander dominated in his starts throughout the season. Pitch selection has played a key role into Verlander’s recent success with the Astros. Verlander throws four types of pitches (using MLB’s abbreviation): fastball (FF), slider (SL), curveball (CB), and changeup (CH). However, pitches are thrown in the context of an at-bat where the ball-strike count starts 0-0, and progresses until either the batter strikes out (reaches three strikes), is walked (reaches four balls), or is either hit-by-pitch or hits the ball in-play. As the count varies, pitchers often decide to favor certain pitches over others, e.g, with three balls (i.e., 3-X counts) the pitcher may favor throwing more accurate fastballs relative to out-of-the-zone offspeed pitches that are favored with two strikes (i.e., X-2 counts)." + "text": "Have you ever wondered if you know how many goals the home team scored in a soccer game then can you predict how many goals the opponent scored? Is there a relationship between this? With this data set on NCAA Division III women’s soccer data from the 2022 season you will be able to explore this question.", + "crumbs": [ + "Home", + "Soccer", + "2022 Divison III Women's Soccer Results" + ] }, { - "objectID": "baseball/verlander-pitches.html#data", - "href": "baseball/verlander-pitches.html#data", - "title": "Justin Verlander Pitches", + "objectID": "soccer/D3_wsoc2022.html#data", + "href": "soccer/D3_wsoc2022.html#data", + "title": "2022 Divison III Women’s Soccer Results", "section": "Data", - "text": "Data\nBelow are two datasets containing information about pitches thrown by Justin Verlander during the 2019 and 2022 seasons (with separate datasets for each season). Each dataset includes the pitch type, ball-strike count, release speed, and a description of what happened on the pitch.\nData courtesy of baseballsavant.mlb.com and accessed using the baseballr package.\n\nverlander-pitches-2019.csv, verlander-pitches-2022.csv\n\n\nVariable\nDescription\n\n\n\n\npitch_type\nThe type of pitch Verlander threw, either: fastball (FF), slider (SL), curveball (CU), or changeup (CH).\n\n\ncount\nThe ball-strike count when Verlander threw the pitch.\n\n\nrelease_speed\nPitch speed (MPH) at the time of release.\n\n\ndescription\nA brief text description of the result of the pitch, such as a ball, foul, called_strike, swinging_strike, etc." + "text": "Data\nThe data set consists of 3753 games among 431 teams in the 2022 Division III women’s soccer season. Each row represents one game in the season.\n\nD3_wsoc2022.csv\n\n\nVariable\nDescription\n\n\n\n\naway_team\nName away team\n\n\naway_score\nThe number of goals the away team scored in game\n\n\nhome_team\nName of home team\n\n\nhome_score\nThe number of goals the home team scored in game\n\n\ndate\nDate of game", + "crumbs": [ + "Home", + "Soccer", + "2022 Divison III Women's Soccer Results" + ] }, { - "objectID": "baseball/verlander-pitches.html#questions", - "href": "baseball/verlander-pitches.html#questions", - "title": "Justin Verlander Pitches", + "objectID": "soccer/D3_wsoc2022.html#questions", + "href": "soccer/D3_wsoc2022.html#questions", + "title": "2022 Divison III Women’s Soccer Results", "section": "Questions", - "text": "Questions\n\nUsing the appropriate statistical test, assess whether or not Justin Verlander’s pitch_type is independent of the count. Perform this analysis for both the 2019 and 2022 datasets. Are the conclusions similar or different?\nWhich combinations of pitch_type and count appear more than expected under the assumption of independence? Which combinations appear fewer than expected? Perform this analysis for both the 2019 and 2022 datasets. Are the conclusions similar or different?" + "text": "Questions\n\nDo you think the correlation value for Home Score vs. Away Score will be negative or positive? Explain your answer.\nFind the correlation value for Home Score vs. Away Score from the data set. Interpret the correlation value in context.\nPerform a test for association to see if the correlation value from above is statistically significant. Make sure to state the hypotheses clearly.\nDescribe the distribution of home scores or away scores. Would a normal (symmetric, bell-shaped) distribution be reasonable for scores?\nThere are a lot of games in the data set with many different scorelines that range from 0-0 all the way to 18-0. But there are very few games with high scores. Treat the scores as categories, but lump all of the larger scores into one category (e.g. 0, 1, 2, 3 or more). Create a two-way contingency table of home vs, away scores using these categories and test for an association.", + "crumbs": [ + "Home", + "Soccer", + "2022 Divison III Women's Soccer Results" + ] }, { - "objectID": "baseball/verlander-pitches.html#references", - "href": "baseball/verlander-pitches.html#references", - "title": "Justin Verlander Pitches", + "objectID": "soccer/D3_wsoc2022.html#references", + "href": "soccer/D3_wsoc2022.html#references", + "title": "2022 Divison III Women’s Soccer Results", "section": "References", - "text": "References\nPetti B, Gilani S (2022). baseballr: Acquiring and Analyzing Baseball Data. R package version 1.3.0, https://CRAN.R-project.org/package=baseballr." + "text": "References\nData web scraped from the D3soccer.com website. https://www.d3soccer.com/seasons/women/2022/schedule", + "crumbs": [ + "Home", + "Soccer", + "2022 Divison III Women's Soccer Results" + ] }, { - "objectID": "tennis/australian-open.html", - "href": "tennis/australian-open.html", - "title": "Australian Open Tennis (2008-2022)", + "objectID": "hockey/nhl_powerplay.html", + "href": "hockey/nhl_powerplay.html", + "title": "NHL Team Power Play Perfomance in 2022-2023", "section": "", - "text": "The Australian Open is an annual tennis tournament in Melbourne, Australia. We have data from the men’s tournament in the years 2008-2022, with variables for both the winner and loser of each match, along with information such as what hand they play with and their Association of Tennis Professionals (ATP) rank and characteristics of the players. Which characteristics might help predict the outcome of the matches?" + "text": "Certain infractions in a hockey game can lead to one or more players being forced to sit out for a period of time while their team has to skate with fewer payers. A common scenario that results is a 5 on 4 power play where one team has five skates (plus a goalie) and the penalized team has only four skaters (plus a goalie). The team with fewer skates is said to be shorthanded. Typical penalty times are for two minutes and the penalized player is allowed to return to the ice if the opponent scores a goal while on the power play. Rare, but more serious infractions, produce a major penalty (5 minutes) where the penalized player is not allowed to return to the ice when a goal is scored. A power play can also end before two minutes when the team on the power play commits a penalty which results in one of its players being sent off the ice to even the sides.\nThis dataset shows information for all 32 National Hockey League (NHL) teams based on their performance while on a 5 on 4 power play in the 2022-2023 regular season. Goals scored, shots on goals, and hits are all scaled to give a count of these events for every full two minutes of a power play.", + "crumbs": [ + "Home", + "Hockey", + "NHL Team Power Play Perfomance in 2022-2023" + ] }, { - "objectID": "tennis/australian-open.html#motivation", - "href": "tennis/australian-open.html#motivation", - "title": "Australian Open Tennis (2008-2022)", + "objectID": "hockey/nhl_powerplay.html#motivation", + "href": "hockey/nhl_powerplay.html#motivation", + "title": "NHL Team Power Play Perfomance in 2022-2023", "section": "", - "text": "The Australian Open is an annual tennis tournament in Melbourne, Australia. We have data from the men’s tournament in the years 2008-2022, with variables for both the winner and loser of each match, along with information such as what hand they play with and their Association of Tennis Professionals (ATP) rank and characteristics of the players. Which characteristics might help predict the outcome of the matches?" + "text": "Certain infractions in a hockey game can lead to one or more players being forced to sit out for a period of time while their team has to skate with fewer payers. A common scenario that results is a 5 on 4 power play where one team has five skates (plus a goalie) and the penalized team has only four skaters (plus a goalie). The team with fewer skates is said to be shorthanded. Typical penalty times are for two minutes and the penalized player is allowed to return to the ice if the opponent scores a goal while on the power play. Rare, but more serious infractions, produce a major penalty (5 minutes) where the penalized player is not allowed to return to the ice when a goal is scored. A power play can also end before two minutes when the team on the power play commits a penalty which results in one of its players being sent off the ice to even the sides.\nThis dataset shows information for all 32 National Hockey League (NHL) teams based on their performance while on a 5 on 4 power play in the 2022-2023 regular season. Goals scored, shots on goals, and hits are all scaled to give a count of these events for every full two minutes of a power play.", + "crumbs": [ + "Home", + "Hockey", + "NHL Team Power Play Perfomance in 2022-2023" + ] }, { - "objectID": "tennis/australian-open.html#data", - "href": "tennis/australian-open.html#data", - "title": "Australian Open Tennis (2008-2022)", + "objectID": "hockey/nhl_powerplay.html#data", + "href": "hockey/nhl_powerplay.html#data", + "title": "NHL Team Power Play Perfomance in 2022-2023", "section": "Data", - "text": "Data\nEach row of data gives 19 variables of information for one of the 1905 Men’s Australian Open matches played between 2008 and 2022.\n\nAustralianOpen.csv\n\n\nVariable\nDescription\n\n\n\n\nYear\nYear (2008-2022)\n\n\nWinner\nwinner of the match\n\n\nLoser\nloser of the match\n\n\nWRank\nwinning player’s rank\n\n\nLRank\nlosing player’s rank\n\n\npl1_flag\nwinning player’s country they choose to represent\n\n\npl1_year_pro\nwinning player’s first year as a professional\n\n\npl1_weight\nwinning player’s weight in kilograms\n\n\npl1_height\nwinning player’s height in centimeters\n\n\npl1_hand\nwinning player’s handedness that they play with\n\n\npl2_flag\nlosing player’s country they choose to represent\n\n\npl2_year_pro\nlosing player’s first year as a professional\n\n\npl2_weight\nlosing player’s weight in kilograms\n\n\npl2_height\nlosing player’s height in centimeters\n\n\npl2_hand\nlosing player’s handedness that they play with\n\n\nhigher_rank_won\nDid the higher rank win? Yes orNo\n\n\nrank_diff\ndifference in rank between the players\n\n\nrank_diff_cat\ncategroies for difference in rank between the players: Low (30 or less), Medium (31-75), High (more than 75)\n\n\nsame_handedness\nDo the players have the same handedness? Yes or No\n\n\n\n: AustralianOpenLater.csv has the same variables (with the addition of a Round variable), but only for 105 matches from the quarterfinals, semifinals, and finals each year." + "text": "Data\nEach row of data gives power play statistics for one of the 32 National Hockey League teams from the 2022-2023 regular season.\n\nNHL_PowerPlay2022.csv\n\n\nVariable\nDescription\n\n\n\n\nteam\nName of the team\n\n\ngoals_per_2_min\nHow many goals scored in 2 minute increments\n\n\nSOG_per_2_min\nHow many shots on goal were taken in a 2 minute increments\n\n\nhits_per_2_min\nAverage hits recorded for 2 minutes\n\n\nConference\nConference the team plays in (east vs west)\n\n\ngoal_differential\nPower play goals scored minus short-handed goals allowed\n\n\nIcetime\nTotal time spent on the power play (in minutes)", + "crumbs": [ + "Home", + "Hockey", + "NHL Team Power Play Perfomance in 2022-2023" + ] }, { - "objectID": "tennis/australian-open.html#questions", - "href": "tennis/australian-open.html#questions", - "title": "Australian Open Tennis (2008-2022)", + "objectID": "hockey/nhl_powerplay.html#questions", + "href": "hockey/nhl_powerplay.html#questions", + "title": "NHL Team Power Play Perfomance in 2022-2023", "section": "Questions", - "text": "Questions\n\nWhat proportion of time does the higher (ATP) rank player win?\nDoes the proportion of higher ranked wins change much when the players play with opposite hands (i.e. a right-handed player vs. a left-handed payer)\nConstruct a two-way table of higher_rank_won vs. rank_diff_cat and see if teh two variables appear to be related.\nInvestigate a logistic regression model to predict it the higher ranked player wins using the difference in ranks as the predictor.\nAre the results for any of these questions much different if we consider only matches in the later rounds for the tournament (quarterfinals, semifinals, and finals) in AustralianOpenLater.csv?" + "text": "Questions\n\nDescribe the distribution of goals-per-2min. Does any team appear to have unusually high or low values for this variable?\nCreate plot to look at the relationship between goals_per_2min and SOG_per_2min. Does it look like more shots tend to lead to more goals?\nCreate plot to look at the relationship between goals_per_2min and hits_per_2min. Does it look like more hits tend to lead to more goals?\nCreate a plot to compare the distribution of goal scoring rates while on the power play between the two conferences. Does there appear to be much difference between the two conferences?", + "crumbs": [ + "Home", + "Hockey", + "NHL Team Power Play Perfomance in 2022-2023" + ] }, { - "objectID": "tennis/australian-open.html#references", - "href": "tennis/australian-open.html#references", - "title": "Australian Open Tennis (2008-2022)", + "objectID": "hockey/nhl_powerplay.html#references", + "href": "hockey/nhl_powerplay.html#references", + "title": "NHL Team Power Play Perfomance in 2022-2023", "section": "References", - "text": "References\nThe data are a subset of the data found at Kaggle." + "text": "References\nThe data were obtained from the MoneyPuck website.", + "crumbs": [ + "Home", + "Hockey", + "NHL Team Power Play Perfomance in 2022-2023" + ] }, { - "objectID": "volleyball/volleyball_ncaa_team_stats.html", - "href": "volleyball/volleyball_ncaa_team_stats.html", - "title": "Team Statistics for Division I Women’s Volleyball", + "objectID": "hockey/phf-shots.html", + "href": "hockey/phf-shots.html", + "title": "Premier Hockey Federation Shots", "section": "", - "text": "Division 1 NCAA women’s volleyball is the highest level of collegiate competition for women’s volleyball in the United States. With well over 300 teams compete at the Division 1 level, there is fierce competition each year as only 64 teams make the post-season Volleyball Championship. The division demands high-level athletic performances, teamwork, and strategic game play from a variety of aspects. With each team having their own strengths and weaknesses, there is no exception of exciting matchups and and shocking results.\nIn volleyball, a kill is awarded to a player any time their attack is unreturnable by the opposition because it is the direct cause of the opponent not returning the ball. An assist is awarded when a set, pass, or dig to a teammate results in that teammate attacking the ball for a kill." + "text": "The Premier Hockey Federation (PHF) is a professional women’s hockey league in North America. Recently, more data has become available for people to explore and join the women’s hockey analytics community. This dataset lets you explore shots taken during the 2021-2022 PHF season.", + "crumbs": [ + "Home", + "Hockey", + "Premier Hockey Federation Shots" + ] }, { - "objectID": "volleyball/volleyball_ncaa_team_stats.html#motivation", - "href": "volleyball/volleyball_ncaa_team_stats.html#motivation", - "title": "Team Statistics for Division I Women’s Volleyball", + "objectID": "hockey/phf-shots.html#motivation", + "href": "hockey/phf-shots.html#motivation", + "title": "Premier Hockey Federation Shots", "section": "", - "text": "Division 1 NCAA women’s volleyball is the highest level of collegiate competition for women’s volleyball in the United States. With well over 300 teams compete at the Division 1 level, there is fierce competition each year as only 64 teams make the post-season Volleyball Championship. The division demands high-level athletic performances, teamwork, and strategic game play from a variety of aspects. With each team having their own strengths and weaknesses, there is no exception of exciting matchups and and shocking results.\nIn volleyball, a kill is awarded to a player any time their attack is unreturnable by the opposition because it is the direct cause of the opponent not returning the ball. An assist is awarded when a set, pass, or dig to a teammate results in that teammate attacking the ball for a kill." + "text": "The Premier Hockey Federation (PHF) is a professional women’s hockey league in North America. Recently, more data has become available for people to explore and join the women’s hockey analytics community. This dataset lets you explore shots taken during the 2021-2022 PHF season.", + "crumbs": [ + "Home", + "Hockey", + "Premier Hockey Federation Shots" + ] }, { - "objectID": "volleyball/volleyball_ncaa_team_stats.html#data", - "href": "volleyball/volleyball_ncaa_team_stats.html#data", - "title": "Team Statistics for Division I Women’s Volleyball", + "objectID": "hockey/phf-shots.html#data", + "href": "hockey/phf-shots.html#data", + "title": "Premier Hockey Federation Shots", "section": "Data", - "text": "Data\nThe data set contains 334 rows and 14 columns. Each row represents a team at the NCAA Division 1 level from the 2022-2023 season.\n\nvolleyball_ncaa_div1_2022_23.csv\n\n\nVariable\nDescription\n\n\n\n\nTeam\ncollege of the volleyball team\n\n\nConference\nconference to which the team belongs\n\n\nregion\nregion to which the team belongs\n\n\naces_per_set\nthe average amount of balls served that directly lead to a point not including errors by the opponent per set\n\n\nassists_per_set\nthe average amount of sets, passes, or digs to a teammate that directly result in a kill per set\n\n\nteam_attacks_per_set\nthe average amount of times the ball is sent to the other team’s court per set\n\n\nblocks_per_set\nthe average amount of times the ball is blocked from being hit on to the teams side per set\n\n\ndigs_per_set\naverage amount of times the ball is passed by a player successfully after an opponents attack per set\n\n\nhitting_pctg\ntotal team kills minus team hitting errors all divided by total attempts\n\n\nkills_per_set\naverage amount of hits that directly result in a point per set\n\n\nopp_hitting_pctg\nthe average hitting percentage of the teams opponent per set\n\n\nW\nthe amount of team wins for the season\n\n\nL\nthe amount of team losses for the season\n\n\nwin_loss_pctg\nthe amount of total wins divided by the total matches of the season" + "text": "Data\nThis dataset contains information about 1,502 shots during the 2021-2022 PHF season.\nThe data was collected using the fastRhockey package in R.\n\nphf-shots-2021.csv\n\n\nVariable\nDescription\n\n\n\n\nplay_description\nString detailed description of event\n\n\nplay_type\nString denoting the outcome of the shot, either Goal, PP Goal (meaning power play goal), SH Goal, (meaning shorthanded goal), Shot (shot saved by goalie), or Shot BLK (meaning blocked by a non-goalie)\n\n\nperiod_id\nInteger value of the game period\n\n\ntime_remaining\nString display of time remaining in period in MM:SS format where MM and SS denotes minutes and seconds remaning respectively\n\n\nsec_from_start\nNumeric value of the seconds since the start of the game\n\n\nhome_team\nString name of the home team\n\n\naway_team\nString name of the away team\n\n\nhome_goals\nInteger value of the home team score after the event\n\n\naway_goals\nInteger value of the away team score after the event\n\n\nshooting_team\nString defining the team taking the shot\n\n\nplayer_name_1\nString name of the player taking the shot\n\n\nplayer_name_2\nString name of the secondary event player (blocker or goalie)\n\n\ngoalie_involved\nString name of the goalie involved in the shot attempt\n\n\nshot_result\nString denoting the outcome of the shot, either blocked (meaning blocked by a non-goalie), made (goal), or saved (shot on net that was saved by a goalie)\n\n\non_ice_situation\nString indicator for game strength: Even Strength or Power Play\n\n\nhome_score_total\nInteger value of the home team score at the end of the game\n\n\naway_score_total\nInteger value of the away team score at the end of the game", + "crumbs": [ + "Home", + "Hockey", + "Premier Hockey Federation Shots" + ] }, { - "objectID": "volleyball/volleyball_ncaa_team_stats.html#questions", - "href": "volleyball/volleyball_ncaa_team_stats.html#questions", - "title": "Team Statistics for Division I Women’s Volleyball", + "objectID": "hockey/phf-shots.html#questions", + "href": "hockey/phf-shots.html#questions", + "title": "Premier Hockey Federation Shots", "section": "Questions", - "text": "Questions\n\nWhat variables are most highly correlated with win/loss percentage of a team?\nHow are assists and kills related?\nWhat model is best for predicting win/loss percentage?" + "text": "Questions\n\nUsing the appropriate statistical test, assess whether or not shot_result is independent of the on_ice_situation.\nCount the number of shots taken by each team. Build a logistic regression model to predict the probability of the home team winning the game based on the number of attempted shots by each team.", + "crumbs": [ + "Home", + "Hockey", + "Premier Hockey Federation Shots" + ] }, { - "objectID": "volleyball/volleyball_ncaa_team_stats.html#references", - "href": "volleyball/volleyball_ncaa_team_stats.html#references", - "title": "Team Statistics for Division I Women’s Volleyball", + "objectID": "hockey/phf-shots.html#references", + "href": "hockey/phf-shots.html#references", + "title": "Premier Hockey Federation Shots", "section": "References", - "text": "References\nNCAA - Women’s Volleyball\nhttps://www.ncaa.com/stats/volleyball-women/d1" + "text": "References\nHowell B, Gilani S (2022). fastRhockey: Functions to Access Premier Hockey Federation and National Hockey League Play by Play Data. R package version 0.4.0, https://CRAN.R-project.org/package=fastRhockey.", + "crumbs": [ + "Home", + "Hockey", + "Premier Hockey Federation Shots" + ] + }, + { + "objectID": "golf/pga_drive_putt.html", + "href": "golf/pga_drive_putt.html", + "title": "Statistics of PGA Tournaments During the 2022 Season", + "section": "", + "text": "A common expression among golfers is “Drive for show, putt for dough.” This implies that the long initial tee shots (drives) on each hole are impressive, but the real key to success is the final strokes rolling the ball along the green into the hole (putts). Do data support this adage? The dataset for this activity was obtained from the PGA statistics website. Cases include all golfers who made the cut in each of 19 PGA tournaments in 2022. The dataset includes variables for driving ability, putting ability, and measuring success in the tournament. The “driving” variables include average driving distance (avgDriveDist), driving accuracy percentage (drivePct), and strokes gained off the tee (driveSG). The “putting” variables are average putts per round (avgPuttsPerRound), one putt percentage (onePuttPct), and strokes gained putting (puttsSG). The variables to measure success are scoring average (avgScore), official money won (Money), and Fedex Cup points (Points).", + "crumbs": [ + "Home", + "Golf", + "Statistics of PGA Tournaments During the 2022 Season" + ] + }, + { + "objectID": "golf/pga_drive_putt.html#motivation", + "href": "golf/pga_drive_putt.html#motivation", + "title": "Statistics of PGA Tournaments During the 2022 Season", + "section": "", + "text": "A common expression among golfers is “Drive for show, putt for dough.” This implies that the long initial tee shots (drives) on each hole are impressive, but the real key to success is the final strokes rolling the ball along the green into the hole (putts). Do data support this adage? The dataset for this activity was obtained from the PGA statistics website. Cases include all golfers who made the cut in each of 19 PGA tournaments in 2022. The dataset includes variables for driving ability, putting ability, and measuring success in the tournament. The “driving” variables include average driving distance (avgDriveDist), driving accuracy percentage (drivePct), and strokes gained off the tee (driveSG). The “putting” variables are average putts per round (avgPuttsPerRound), one putt percentage (onePuttPct), and strokes gained putting (puttsSG). The variables to measure success are scoring average (avgScore), official money won (Money), and Fedex Cup points (Points).", + "crumbs": [ + "Home", + "Golf", + "Statistics of PGA Tournaments During the 2022 Season" + ] + }, + { + "objectID": "golf/pga_drive_putt.html#data", + "href": "golf/pga_drive_putt.html#data", + "title": "Statistics of PGA Tournaments During the 2022 Season", + "section": "Data", + "text": "Data\nEach row of data gives the measures for one golfer in one tournament. The dataset covers 19 PGA tournaments from the 2022 season with 1387 cases in all. Each tournament consists of four rounds of golf. Some golfers are eliminated after the first two (or sometimes three) rounds. Only players who competed in all four rounds (i.e. those that made the “cut”) are included in this dataset.\n\nPGA2022.csv\n\n\nVariable\nDescription\n\n\n\n\nplayerName\nName of the player\n\n\ncountry\nThe country where the player is from\n\n\navgDriveDist\nAverage driving distance (in yards)\n\n\ndrivePct\nPercentage of times a tee shot comes to rest in the fairway\n\n\ndriveSG\nStrokes gained off the tee measures player performance off the tee on all par 4s and par 5s of how much better or worse a player’s drive is than the PGA Tour average\n\n\navgPuttsPerRound\nAverage number of total putts per round\n\n\nonePuttPct\nPercentage of times it took one putt to get the ball into the hole\n\n\nputtsSG\nStrokes gained putting measures how many strokes a player gains or loses on the greens compared to the PGA Tour average\n\n\navgScore\nThe scoring average is the total strokes divided by the total rounds\n\n\nMoney\nThe official money is the prize money award to the Professional members\n\n\nPoints\nFedexCup Regular Season Points are awarded points by finished position for performance in each tournament\n\n\nTournament\nThe tournament where the PGA Tour is taking place", + "crumbs": [ + "Home", + "Golf", + "Statistics of PGA Tournaments During the 2022 Season" + ] + }, + { + "objectID": "golf/pga_drive_putt.html#questions", + "href": "golf/pga_drive_putt.html#questions", + "title": "Statistics of PGA Tournaments During the 2022 Season", + "section": "Questions", + "text": "Questions\n\nAre driving or putting statistics generally more effective for predicting success in a PGA tournament?\nWhich measure of success (avgScore, Money, or Points) appears to be easiest to predict with either driving or putting information?\nFor each measure of success, generate a scatterplot with one the putting or driving variables. Which of these plots suggest we might want to use a transformation of one of the variables to improve linearity?\nCan you find a transformation that improves the linearity of the relationship for one of the problematic cases in question #3?", + "crumbs": [ + "Home", + "Golf", + "Statistics of PGA Tournaments During the 2022 Season" + ] + }, + { + "objectID": "golf/pga_drive_putt.html#references", + "href": "golf/pga_drive_putt.html#references", + "title": "Statistics of PGA Tournaments During the 2022 Season", + "section": "References", + "text": "References\nThe data were obtained from the PGA statistics website.", + "crumbs": [ + "Home", + "Golf", + "Statistics of PGA Tournaments During the 2022 Season" + ] }, { "objectID": "basketball/wnba-shots.html", "href": "basketball/wnba-shots.html", "title": "Women’s National Basketball Association Shots", "section": "", - "text": "The Women’s National Basketball Association (WNBA) is the top professional women’s basketball league in the world. The league records every shot players take along with contextual information about the shot such as its location, a description of the shot type, as well as the outcome. With this dataset, you can predict the success of each shot attempt to compute the expected value of shot types and compare team decision making." + "text": "The Women’s National Basketball Association (WNBA) is the top professional women’s basketball league in the world. The league records every shot players take along with contextual information about the shot such as its location, a description of the shot type, as well as the outcome. With this dataset, you can predict the success of each shot attempt to compute the expected value of shot types and compare team decision making.", + "crumbs": [ + "Home", + "Basketball", + "Women's National Basketball Association Shots" + ] }, { "objectID": "basketball/wnba-shots.html#motivation", "href": "basketball/wnba-shots.html#motivation", "title": "Women’s National Basketball Association Shots", "section": "", - "text": "The Women’s National Basketball Association (WNBA) is the top professional women’s basketball league in the world. The league records every shot players take along with contextual information about the shot such as its location, a description of the shot type, as well as the outcome. With this dataset, you can predict the success of each shot attempt to compute the expected value of shot types and compare team decision making." + "text": "The Women’s National Basketball Association (WNBA) is the top professional women’s basketball league in the world. The league records every shot players take along with contextual information about the shot such as its location, a description of the shot type, as well as the outcome. With this dataset, you can predict the success of each shot attempt to compute the expected value of shot types and compare team decision making.", + "crumbs": [ + "Home", + "Basketball", + "Women's National Basketball Association Shots" + ] }, { "objectID": "basketball/wnba-shots.html#data", "href": "basketball/wnba-shots.html#data", "title": "Women’s National Basketball Association Shots", "section": "Data", - "text": "Data\nThis dataset contains information about 41,497 shots during the 2021-2022 WNBA season.\nThe data was collected using the wehoop package in R.\n\nwnba-shots-2021.csv.gz\n\n\nVariable\nDescription\n\n\n\n\ngame_id\nUnique integer ID for each WNBA game\n\n\ngame_play_number\nInteger indicating the recorded play number for the shot attempt, where 1 indicates the first play of the game\n\n\ndesc\nString detailed description of shot attempt\n\n\nshot_type\nString description of the shot type (e.g., dunk, layup, jump shot, etc.)\n\n\nmade_shot\nBoolean denoting if the shot was made (TRUE) or not (FALSE)\n\n\nshot_value\nNumeric value of the shot outcome (0 for shots that were not made, and a positive value for made shots)\n\n\ncoordinate_x\nHorizontal location in feet of shot attempt where the hoop would be located at 25 feet\n\n\ncoordinate_y\nVertical location in feet of shot attempt with respect to the target hoop (the hoop should be a little in front of 0 but the coordinate system is not exact)\n\n\nshooting_team\nString name of the team taking the shot\n\n\nhome_name\nString name of the home team\n\n\naway_name\nString name of the away team\n\n\nhome_score\nInteger value of the home team score after the shot\n\n\naway_score\nInteger value of the away team score after the shot\n\n\nqtr\nInteger denoting the quarter/period in the game\n\n\nquarter_seconds_remaining\nNumeric integer value for number of seconds remaining in quarter/period\n\n\ngame_seconds_remaining\nNumeric integer value for number of seconds remaining in game" + "text": "Data\nThis dataset contains information about 41,497 shots during the 2021-2022 WNBA season.\nThe data was collected using the wehoop package in R.\n\nwnba-shots-2021.csv.gz\n\n\nVariable\nDescription\n\n\n\n\ngame_id\nUnique integer ID for each WNBA game\n\n\ngame_play_number\nInteger indicating the recorded play number for the shot attempt, where 1 indicates the first play of the game\n\n\ndesc\nString detailed description of shot attempt\n\n\nshot_type\nString description of the shot type (e.g., dunk, layup, jump shot, etc.)\n\n\nmade_shot\nBoolean denoting if the shot was made (TRUE) or not (FALSE)\n\n\nshot_value\nNumeric value of the shot outcome (0 for shots that were not made, and a positive value for made shots)\n\n\ncoordinate_x\nHorizontal location in feet of shot attempt where the hoop would be located at 25 feet\n\n\ncoordinate_y\nVertical location in feet of shot attempt with respect to the target hoop (the hoop should be a little in front of 0 but the coordinate system is not exact)\n\n\nshooting_team\nString name of the team taking the shot\n\n\nhome_name\nString name of the home team\n\n\naway_name\nString name of the away team\n\n\nhome_score\nInteger value of the home team score after the shot\n\n\naway_score\nInteger value of the away team score after the shot\n\n\nqtr\nInteger denoting the quarter/period in the game\n\n\nquarter_seconds_remaining\nNumeric integer value for number of seconds remaining in quarter/period\n\n\ngame_seconds_remaining\nNumeric integer value for number of seconds remaining in game", + "crumbs": [ + "Home", + "Basketball", + "Women's National Basketball Association Shots" + ] }, { "objectID": "basketball/wnba-shots.html#questions", "href": "basketball/wnba-shots.html#questions", "title": "Women’s National Basketball Association Shots", "section": "Questions", - "text": "Questions\n\nBuild a classification model to predict the shot outcome based on the spatial x,y coordinates of the shot.\nCreate a visualization displaying the joint frequency of shot locations. Do there appear to be any clear modes of frequently taken shots? Create a conditional version of this display by shot outcome. Does the distribution shape vary by shot outcome? (You can also perform a similar analysis by team and shot type)." + "text": "Questions\n\nBuild a classification model to predict the shot outcome based on the spatial x,y coordinates of the shot.\nCreate a visualization displaying the joint frequency of shot locations. Do there appear to be any clear modes of frequently taken shots? Create a conditional version of this display by shot outcome. Does the distribution shape vary by shot outcome? (You can also perform a similar analysis by team and shot type).", + "crumbs": [ + "Home", + "Basketball", + "Women's National Basketball Association Shots" + ] }, { "objectID": "basketball/wnba-shots.html#references", "href": "basketball/wnba-shots.html#references", "title": "Women’s National Basketball Association Shots", "section": "References", - "text": "References\nGilani S, Hutchinson G (2022). wehoop: Access Women’s Basketball Play by Play Data. R package version 1.5.0, https://CRAN.R-project.org/package=wehoop." + "text": "References\nGilani S, Hutchinson G (2022). wehoop: Access Women’s Basketball Play by Play Data. R package version 1.5.0, https://CRAN.R-project.org/package=wehoop.", + "crumbs": [ + "Home", + "Basketball", + "Women's National Basketball Association Shots" + ] }, { - "objectID": "soccer/nwsl-team-stats.html", - "href": "soccer/nwsl-team-stats.html", - "title": "National Women’s Soccer League Team Statistics", + "objectID": "basketball/WNBA20Yrs.html", + "href": "basketball/WNBA20Yrs.html", + "title": "Women’s National Baskeball Assosiation game statistics", "section": "", - "text": "The National Women’s Soccer League (NWSL) is the top professional women’s soccer league in the United States. While a team’s record ultimately determines their ranking, goal differential (goals scored - goals conceded) is often a better indicator of a team’s ability. But what aspects of a team’s performance are related to their goal differential? The NWSL records a variety of statistics describing a team’s performance, such as the percentage of time they maintain possession, percentage of shots on target, etc. With this dataset, you can explore variation between teams as well as which statistics are relevant predictor variables of goal differential." + "text": "All data sets used in this worksheet are from the Wehoop Package.\nThe National Basketball Association (NBA) has dominated over the WNBA in popularity since the creation of the WNBA 50 years after that of the NBA. For this reason, there are way more data sets available for the NBA. Thus, there is a need for high quality WNBA data sets in order to run analysis on the players and teams. This data set can be used to demonstrate the process of cleaning, prepping, and determining quality of data.", + "crumbs": [ + "Home", + "Basketball", + "Women's National Baskeball Assosiation game statistics" + ] }, { - "objectID": "soccer/nwsl-team-stats.html#motivation", - "href": "soccer/nwsl-team-stats.html#motivation", - "title": "National Women’s Soccer League Team Statistics", + "objectID": "basketball/WNBA20Yrs.html#motivation", + "href": "basketball/WNBA20Yrs.html#motivation", + "title": "Women’s National Baskeball Assosiation game statistics", "section": "", - "text": "The National Women’s Soccer League (NWSL) is the top professional women’s soccer league in the United States. While a team’s record ultimately determines their ranking, goal differential (goals scored - goals conceded) is often a better indicator of a team’s ability. But what aspects of a team’s performance are related to their goal differential? The NWSL records a variety of statistics describing a team’s performance, such as the percentage of time they maintain possession, percentage of shots on target, etc. With this dataset, you can explore variation between teams as well as which statistics are relevant predictor variables of goal differential." + "text": "All data sets used in this worksheet are from the Wehoop Package.\nThe National Basketball Association (NBA) has dominated over the WNBA in popularity since the creation of the WNBA 50 years after that of the NBA. For this reason, there are way more data sets available for the NBA. Thus, there is a need for high quality WNBA data sets in order to run analysis on the players and teams. This data set can be used to demonstrate the process of cleaning, prepping, and determining quality of data.", + "crumbs": [ + "Home", + "Basketball", + "Women's National Baskeball Assosiation game statistics" + ] }, { - "objectID": "soccer/nwsl-team-stats.html#data", - "href": "soccer/nwsl-team-stats.html#data", - "title": "National Women’s Soccer League Team Statistics", + "objectID": "basketball/WNBA20Yrs.html#data", + "href": "basketball/WNBA20Yrs.html#data", + "title": "Women’s National Baskeball Assosiation game statistics", "section": "Data", - "text": "Data\nThis dataset contains statistics about the regular season performance for each NWSL team from 2016 to 2022 (excluding 2020 which was cancelled due to COVID).\nThe data was collected using the nwslR package in R.\n\nnwsl-team-stats.csv\n\n\nVariable\nDescription\n\n\n\n\nteam_name\nName of NWSL team\n\n\nseason\nRegular season year of team’s statistics\n\n\ngames_played\nNumber of games team played in season\n\n\ngoal_differential\nGoals scored - goals conceded\n\n\ngoals\nNumber of goals scores\n\n\ngoals_conceded\nNumber of goals conceded\n\n\ncross_accuracy\nPercent of crosses that were successful\n\n\ngoal_conversion_pct\nPercent of shots scored\n\n\npass_pct\nPass accuracy\n\n\npass_pct_opposition_half\nPass accuracy in opposition half\n\n\npossession_pct\nPercentage of overall ball possession the team had during the season\n\n\nshot_accuracy\nPercentage of shots on target\n\n\ntackle_success_pct\nPercent of successful tackles" + "text": "Data\nThe WNBA20Yrs data set contains 8920 rows and 9 columns. Each pair of rows represents a game played by two WNBA teams in one of the 2003 to 2022 regular seasons. The first row is for the away team and the second row is for the home team. The columns are as follows:\n\nWNBA20Yrs.csv\n\n\nVariable\nDescription\n\n\n\n\ngame_id\ngame id number\n\n\nseason\nseason number\n\n\nseason_type\nbinary predictor; 2 if regular season game; 3 if playoff game\n\n\ngame_date\ndate of the game\n\n\nteam_id\nteam id number\n\n\nteam_display_name\nfull team name (name and city)\n\n\nteam_winner\nBoolean; True if the team won the game\n\n\nopponent_team_id\nid number of the opponent\n\n\nteam_home_away\nWhere the game was played; either “home” or “away”", + "crumbs": [ + "Home", + "Basketball", + "Women's National Baskeball Assosiation game statistics" + ] }, { - "objectID": "soccer/nwsl-team-stats.html#questions", - "href": "soccer/nwsl-team-stats.html#questions", - "title": "National Women’s Soccer League Team Statistics", + "objectID": "basketball/WNBA20Yrs.html#questions", + "href": "basketball/WNBA20Yrs.html#questions", + "title": "Women’s National Baskeball Assosiation game statistics", "section": "Questions", - "text": "Questions\n\nBuild a linear regression model to predict goal differential as a function of the team’s statistics. Which variables, if any, are predictive of a team’s goal differential in a season? Describe their relationships.\nUsing principal component analysis, project the team seasons into a lower dimensional space using only the team statistics that do not include goals scored or conceded. Choose an appropriate number of principal components, and describe which statistics contribute to your selected number of components. Based on your results, which team statistics explain the most variation between team-seasons in the dataset? Which team statistics are independent of each other?" + "text": "Questions\nThe goal will be to create a worksheet for the students telling them we want to predict whether a team makes playoffs based on their record halfway through the season. First, they will need to clean the data based on prompts. We will ask them what they notice about total games played by each team across seasons. They should recognize that the total games recorded is inconsistent between teams and with online WNBA statistics. We will ask them why this is a problem and how the issue could be solved if we still wanted to run the original regression.\n\nCreate a table including a team’s mid season record, whether they would make playoffs based on that record (teams with the top 8 records make the playoffs), their record at the end of the season, and whether they made playoffs based on that record.\nWhat do you notice about the team IDs in this data set? Filter out the IDs we won’t be using and rename the teams so that the same IDs all have the most recent team name.\nWhat problem is there regarding number of games played by each team? What are some ways we could solve this problem?\nRun logistic Regression Models to predict whether a team makes playoffs based on their record at the halfway point of the season. If is significant? Interpret the results.", + "crumbs": [ + "Home", + "Basketball", + "Women's National Baskeball Assosiation game statistics" + ] }, { - "objectID": "soccer/nwsl-team-stats.html#references", - "href": "soccer/nwsl-team-stats.html#references", - "title": "National Women’s Soccer League Team Statistics", + "objectID": "basketball/WNBA20Yrs.html#references", + "href": "basketball/WNBA20Yrs.html#references", + "title": "Women’s National Baskeball Assosiation game statistics", + "section": "References", + "text": "References\nGilani S, Hutchinson G (2022). wehoop: Access Women’s Basketball Play by Play Data. R package version 1.5.0, https://CRAN.R-project.org/package=wehoop.", + "crumbs": [ + "Home", + "Basketball", + "Women's National Baskeball Assosiation game statistics" + ] + }, + { + "objectID": "esports/lol-buff-nerf.html", + "href": "esports/lol-buff-nerf.html", + "title": "League of Legends - Buffing and Nerfing", + "section": "", + "text": "League of Legends is a 5 v. 5 multiplayer online battle arena (MOBA) game developed by Riot Games. They collect data to evaluate the effect of every champion, adjusting and fine-tuning various aspects associated with each champion, to ensure fair and competitive gameplay. Through updates (patches) they can reduce the power of champions that are too strong (known as nerfing) or enhance the abilities of less successful champions (nerfing).", + "crumbs": [ + "Home", + "Esports", + "League of Legends - Buffing and Nerfing" + ] + }, + { + "objectID": "esports/lol-buff-nerf.html#motivation", + "href": "esports/lol-buff-nerf.html#motivation", + "title": "League of Legends - Buffing and Nerfing", + "section": "", + "text": "League of Legends is a 5 v. 5 multiplayer online battle arena (MOBA) game developed by Riot Games. They collect data to evaluate the effect of every champion, adjusting and fine-tuning various aspects associated with each champion, to ensure fair and competitive gameplay. Through updates (patches) they can reduce the power of champions that are too strong (known as nerfing) or enhance the abilities of less successful champions (nerfing).", + "crumbs": [ + "Home", + "Esports", + "League of Legends - Buffing and Nerfing" + ] + }, + { + "objectID": "esports/lol-buff-nerf.html#data", + "href": "esports/lol-buff-nerf.html#data", + "title": "League of Legends - Buffing and Nerfing", + "section": "Data", + "text": "Data\nEach row is one of the 162 League of Legends champions. The two datasets show play results (e.g. win rates) for two consecutive patches of the game (12.22 and 12.23).\n\nLOL_patch_12.22.csv, LOL_patch_12.23.csv\n\n\nVariable\nDescription\n\n\n\n\nName\nName of the champion\n\n\nRole\nRole of the champion in a game\n\n\nKDA\nAverage kills, deaths and assists associated with each champion\n\n\nWRate\nWin rates of each champion\n\n\nPickRate\nSPick rates of each champion\n\n\nRolePerc\nPercent of time the champion is used in the expected role\n\n\nBanPerc\nBan percentages associated with each champion", + "crumbs": [ + "Home", + "Esports", + "League of Legends - Buffing and Nerfing" + ] + }, + { + "objectID": "esports/lol-buff-nerf.html#questions", + "href": "esports/lol-buff-nerf.html#questions", + "title": "League of Legends - Buffing and Nerfing", + "section": "Questions", + "text": "Questions\n\nLook for outliers (e.g. in win rate) for the 12.22 patch to identify champions that might need to be buffed or nerfed.\nLook at results for the 12.23 patch to see if outliers identified from 12.22 might have been adjusted of if any different champions are now outliers.", + "crumbs": [ + "Home", + "Esports", + "League of Legends - Buffing and Nerfing" + ] + }, + { + "objectID": "esports/lol-buff-nerf.html#references", + "href": "esports/lol-buff-nerf.html#references", + "title": "League of Legends - Buffing and Nerfing", "section": "References", - "text": "References\nDror A (2023). nwslR: Compiles dataset for the National Women’s Soccer League (NWSL). R package version 0.0.0.9001." + "text": "References\nLol champion stats, 12.22 master, win rates. METAsrc. (n.d.). https://www.metasrc.com/5v5/12.22/stats?ranks=master\nLol champion stats, 12.23 master, win rates. METAsrc. (n.d.-b). https://www.metasrc.com/5v5/12.23/stats?ranks=master", + "crumbs": [ + "Home", + "Esports", + "League of Legends - Buffing and Nerfing" + ] + }, + { + "objectID": "baseball/verlander-pitches.html", + "href": "baseball/verlander-pitches.html", + "title": "Justin Verlander Pitches", + "section": "", + "text": "After nearly two full seasons due to injury, at the age of 39 Justin Verlander returned for the 2022 season to win the American League Cy Young award and World Series with the Houston Astros. Leading the league in a variety of statistics, Verlander dominated in his starts throughout the season. Pitch selection has played a key role into Verlander’s recent success with the Astros. Verlander throws four types of pitches (using MLB’s abbreviation): fastball (FF), slider (SL), curveball (CB), and changeup (CH). However, pitches are thrown in the context of an at-bat where the ball-strike count starts 0-0, and progresses until either the batter strikes out (reaches three strikes), is walked (reaches four balls), or is either hit-by-pitch or hits the ball in-play. As the count varies, pitchers often decide to favor certain pitches over others, e.g, with three balls (i.e., 3-X counts) the pitcher may favor throwing more accurate fastballs relative to out-of-the-zone offspeed pitches that are favored with two strikes (i.e., X-2 counts).", + "crumbs": [ + "Home", + "Baseball", + "Justin Verlander Pitches" + ] + }, + { + "objectID": "baseball/verlander-pitches.html#motivation", + "href": "baseball/verlander-pitches.html#motivation", + "title": "Justin Verlander Pitches", + "section": "", + "text": "After nearly two full seasons due to injury, at the age of 39 Justin Verlander returned for the 2022 season to win the American League Cy Young award and World Series with the Houston Astros. Leading the league in a variety of statistics, Verlander dominated in his starts throughout the season. Pitch selection has played a key role into Verlander’s recent success with the Astros. Verlander throws four types of pitches (using MLB’s abbreviation): fastball (FF), slider (SL), curveball (CB), and changeup (CH). However, pitches are thrown in the context of an at-bat where the ball-strike count starts 0-0, and progresses until either the batter strikes out (reaches three strikes), is walked (reaches four balls), or is either hit-by-pitch or hits the ball in-play. As the count varies, pitchers often decide to favor certain pitches over others, e.g, with three balls (i.e., 3-X counts) the pitcher may favor throwing more accurate fastballs relative to out-of-the-zone offspeed pitches that are favored with two strikes (i.e., X-2 counts).", + "crumbs": [ + "Home", + "Baseball", + "Justin Verlander Pitches" + ] + }, + { + "objectID": "baseball/verlander-pitches.html#data", + "href": "baseball/verlander-pitches.html#data", + "title": "Justin Verlander Pitches", + "section": "Data", + "text": "Data\nBelow are two datasets containing information about pitches thrown by Justin Verlander during the 2019 and 2022 seasons (with separate datasets for each season). Each dataset includes the pitch type, ball-strike count, release speed, and a description of what happened on the pitch.\nData courtesy of baseballsavant.mlb.com and accessed using the baseballr package.\n\nverlander-pitches-2019.csv, verlander-pitches-2022.csv\n\n\nVariable\nDescription\n\n\n\n\npitch_type\nThe type of pitch Verlander threw, either: fastball (FF), slider (SL), curveball (CU), or changeup (CH).\n\n\ncount\nThe ball-strike count when Verlander threw the pitch.\n\n\nrelease_speed\nPitch speed (MPH) at the time of release.\n\n\ndescription\nA brief text description of the result of the pitch, such as a ball, foul, called_strike, swinging_strike, etc.", + "crumbs": [ + "Home", + "Baseball", + "Justin Verlander Pitches" + ] + }, + { + "objectID": "baseball/verlander-pitches.html#questions", + "href": "baseball/verlander-pitches.html#questions", + "title": "Justin Verlander Pitches", + "section": "Questions", + "text": "Questions\n\nUsing the appropriate statistical test, assess whether or not Justin Verlander’s pitch_type is independent of the count. Perform this analysis for both the 2019 and 2022 datasets. Are the conclusions similar or different?\nWhich combinations of pitch_type and count appear more than expected under the assumption of independence? Which combinations appear fewer than expected? Perform this analysis for both the 2019 and 2022 datasets. Are the conclusions similar or different?", + "crumbs": [ + "Home", + "Baseball", + "Justin Verlander Pitches" + ] + }, + { + "objectID": "baseball/verlander-pitches.html#references", + "href": "baseball/verlander-pitches.html#references", + "title": "Justin Verlander Pitches", + "section": "References", + "text": "References\nPetti B, Gilani S (2022). baseballr: Acquiring and Analyzing Baseball Data. R package version 1.3.0, https://CRAN.R-project.org/package=baseballr.", + "crumbs": [ + "Home", + "Baseball", + "Justin Verlander Pitches" + ] }, { "objectID": "football/nfl-draft-combine.html", "href": "football/nfl-draft-combine.html", "title": "NFL Draft Combine", "section": "", - "text": "The data set has statistics with variables for player draft information and how they performed in events at the NFL Scouting Combine. The variables for draft information are position and Round. The variables for the NFL Scouting Combine events are forty, vertical, bench_reps, broad_jump, and shuttle. Some entries are NA if a player was not drafted or did not prticipate in some events." + "text": "The data set has statistics with variables for player draft information and how they performed in events at the NFL Scouting Combine. The variables for draft information are position and Round. The variables for the NFL Scouting Combine events are forty, vertical, bench_reps, broad_jump, and shuttle. Some entries are NA if a player was not drafted or did not prticipate in some events.", + "crumbs": [ + "Home", + "Football", + "NFL Draft Combine" + ] }, { "objectID": "football/nfl-draft-combine.html#motivation", "href": "football/nfl-draft-combine.html#motivation", "title": "NFL Draft Combine", "section": "", - "text": "The data set has statistics with variables for player draft information and how they performed in events at the NFL Scouting Combine. The variables for draft information are position and Round. The variables for the NFL Scouting Combine events are forty, vertical, bench_reps, broad_jump, and shuttle. Some entries are NA if a player was not drafted or did not prticipate in some events." + "text": "The data set has statistics with variables for player draft information and how they performed in events at the NFL Scouting Combine. The variables for draft information are position and Round. The variables for the NFL Scouting Combine events are forty, vertical, bench_reps, broad_jump, and shuttle. Some entries are NA if a player was not drafted or did not prticipate in some events.", + "crumbs": [ + "Home", + "Football", + "NFL Draft Combine" + ] }, { "objectID": "football/nfl-draft-combine.html#data", "href": "football/nfl-draft-combine.html#data", "title": "NFL Draft Combine", "section": "Data", - "text": "Data\nEach row of data gives gives information on position, draft round, and event scores for one of 6128 players at the NFL Scouting Combine between 2004 and 2023.\n\n\n\nVariable\nDescription\n\n\n\n\nposition\nPlaying position of the player\n\n\nRound\nRound player was drafted in\n\n\nforty\n40-yard dash time\n\n\nvertical\nVertical jump height (inches)\n\n\nbench_reps\n225 bench press reps\n\n\nbroad_jump\nBroad jump distances (inches)\n\n\nshuttle\n20-yard shuttle time\n\n\n\nnfl_combine.csv" + "text": "Data\nEach row of data gives gives information on position, draft round, and event scores for one of 6128 players at the NFL Scouting Combine between 2004 and 2023.\n\n\n\nVariable\nDescription\n\n\n\n\nposition\nPlaying position of the player\n\n\nRound\nRound player was drafted in\n\n\nforty\n40-yard dash time\n\n\nvertical\nVertical jump height (inches)\n\n\nbench_reps\n225 bench press reps\n\n\nbroad_jump\nBroad jump distances (inches)\n\n\nshuttle\n20-yard shuttle time\n\n\n\nnfl_combine.csv", + "crumbs": [ + "Home", + "Football", + "NFL Draft Combine" + ] }, { "objectID": "football/nfl-draft-combine.html#questions", "href": "football/nfl-draft-combine.html#questions", "title": "NFL Draft Combine", "section": "Questions", - "text": "Questions\n\nHow is player draft position related to any of the scores at NFL Combine events?\nHow does the distribution of event scores differ between various football positions?" + "text": "Questions\n\nHow is player draft position related to any of the scores at NFL Combine events?\nHow does the distribution of event scores differ between various football positions?", + "crumbs": [ + "Home", + "Football", + "NFL Draft Combine" + ] }, { "objectID": "football/nfl-draft-combine.html#references", "href": "football/nfl-draft-combine.html#references", "title": "NFL Draft Combine", "section": "References", - "text": "References\nThe data is complied from Sports Reference StatHead Football." + "text": "References\nThe data is complied from Sports Reference StatHead Football.", + "crumbs": [ + "Home", + "Football", + "NFL Draft Combine" + ] }, { - "objectID": "motor_sports/NASCAR_driver_ratings.html#data", - "href": "motor_sports/NASCAR_driver_ratings.html#data", - "title": "NASCAR Data Description", + "objectID": "by-statsds-topic.html", + "href": "by-statsds-topic.html", + "title": "Datasets By Topic", + "section": "", + "text": "2022 Divison III Women’s Soccer Results\n\n\n\n\n\n\nCorrelation\n\n\nChi-square test for association\n\n\n\nDivision III women’s soccer teams game results from 2022 season\n\n\n\n\n\nHope Donoghue, Robin Lock\n\n\n\n\n\n\n\n\n\n\n\n\n2023 Boston Marathon runners\n\n\n\n\n\n\nSummary statistics\n\n\nOutliers\n\n\nz-scores\n\n\n\nThe data set looks at the 2023 Boston Marathon results.\n\n\n\n\n\nJun 27, 2023\n\n\nJack Fay, A.J. Dykstra, and Ivan Ramler\n\n\n\n\n\n\n\n\n\n\n\n\nAustralian Open Tennis (2008-2022)\n\n\n\n\n\n\nproportions\n\n\ntwo-way tables\n\n\n\nResults from matches at the Men’s Australian Open Tennis Tournament between 2008 and 2022.\n\n\n\n\n\nAug 3, 2023\n\n\nTrent Meyer, Robin Lock\n\n\n\n\n\n\n\n\n\n\n\n\nBatting Statistics for Division I Softball\n\n\n\n\n\n\nmerging\n\n\njoining\n\n\ndata wrangling\n\n\n\nThese data sets contain batting statistics for Division I softball in the 2021 and 2022 seasons.\n\n\n\n\n\nMay 23, 2023\n\n\nSarah Weaver and Ivan Ramler\n\n\n\n\n\n\n\n\n\n\n\n\nJustin Verlander Pitches\n\n\n\n\n\n\ncategorical data\n\n\nchi-squared test\n\n\n\nInformation about pitches thrown by Justin Verlander in the 2019 and 2022 MLB seasons\n\n\n\n\n\nMar 18, 2023\n\n\nRon Yurko\n\n\n\n\n\n\n\n\n\n\n\n\nLacrosse PLL vs. NLL\n\n\n\n\n\n\nDifference in means hypothesis tests\n\n\nDifference in means confidence intervals\n\n\n\nThe data set looks at both lacrosse leagues, their respective teams, and their shot and goal amounts.\n\n\n\n\n\nJun 22, 2023\n\n\nAJ Dykstra, Jack Cowan, and Ivan Ramler\n\n\n\n\n\n\n\n\n\n\n\n\nLake Placid Women’s Ironman Triathlon\n\n\n\n\n\n\nHistograms\n\n\nScatter Plots\n\n\nCorrelation\n\n\nLinear Regression\n\n\n\nThe data set looks at female participatants in the triathlon Ironman.\n\n\n\n\n\nJun 17, 2023\n\n\nMichael Schuckers, Matthew Abel, and A.J. Dykstra\n\n\n\n\n\n\n\n\n\n\n\n\nLeague of Legends - Buffing and Nerfing\n\n\n\n\n\n\noutlier detection\n\n\nfive number summary\n\n\nz-scores\n\n\n\nGame play statistics for League of Legends champions in two different patches. Can detecting outliers indicate champions that should be enhanced (buffed) or scaled back (nerfed)?\n\n\n\n\n\nJul 1, 2023\n\n\nGeorge Charalambous, Ivan Ramler, and A.J. Dykstra\n\n\n\n\n\n\n\n\n\n\n\n\nNASCAR Data Description\n\n\n\n\n\n\ndata visualization\n\n\ndata wrangling\n\n\nlinear regression\n\n\ntransformations in regression\n\n\nmodel assumptions\n\n\nmodel building\n\n\n\nNASCAR Driver Ratings and statistics from 2007-2022\n\n\n\n\n\nJul 6, 2023\n\n\nAlyssa Bigness, Jack Fay, and Ivan Ramler\n\n\n\n\n\n\n\n\n\n\n\n\nNFL Draft Combine\n\n\n\n\n\n\nExploratory Data Analysis\n\n\nLinear regression\n\n\n\nNFL Scouting Combine Event scores from 2004 - 2023\n\n\n\n\n\nAug 3, 2023\n\n\nShane Hauk, Michael Schuckers, Robin Lock\n\n\n\n\n\n\n\n\n\n\n\n\nNHL Team Power Play Perfomance in 2022-2023\n\n\n\n\n\n\nexploratory data Analysis\n\n\n\nMeasures for National Hockey League teams from all 5 on 4 power plays in the 2022-2023 season.\n\n\n\n\n\nJul 27, 2023\n\n\nAbby Hustler, Robin Lock\n\n\n\n\n\n\n\n\n\n\n\n\nNHL Team Statistics\n\n\n\n\n\n\nlinear regression\n\n\ncorrelation\n\n\n\nTeam-level statistics from the 2022-2023 NHL season\n\n\n\n\n\nDec 15, 2023\n\n\nTaylor Lum, Robin Lock\n\n\n\n\n\n\n\n\n\n\n\n\nNational Basketball Association Player Statistics\n\n\n\n\n\n\nclustering\n\n\nprincipal component analysis\n\n\n\nNBA player statistics from the 2021-2022 regular season\n\n\n\n\n\nMar 25, 2023\n\n\nRon Yurko\n\n\n\n\n\n\n\n\n\n\n\n\nNational Football League Team Statistics\n\n\n\n\n\n\nlinear regression\n\n\nprincipal component analysis\n\n\nmissing data\n\n\nvariable selection\n\n\nregularization\n\n\n\nNFL team statistics from 1999 to 2022\n\n\n\n\n\nMay 24, 2023\n\n\nRon Yurko\n\n\n\n\n\n\n\n\n\n\n\n\nNational Hockey League Shots\n\n\n\n\n\n\nclassification\n\n\nlogistic regression\n\n\ngeneralized additive models\n\n\nmultinomial logistic regression\n\n\nnaive bayes classifier\n\n\ndensity estimation\n\n\n\nInformation about shots during the 2021-2022 NHL season\n\n\n\n\n\nMar 23, 2023\n\n\nRon Yurko\n\n\n\n\n\n\n\n\n\n\n\n\nNational Women’s Soccer League Team Statistics\n\n\n\n\n\n\nlinear regression\n\n\nprincipal component analysis\n\n\n\nNWSL team statistics from 2016 to 2022\n\n\n\n\n\nMar 18, 2023\n\n\nRon Yurko\n\n\n\n\n\n\n\n\n\n\n\n\nPremier Hockey Federation Shots\n\n\n\n\n\n\ncategorical data\n\n\nchi-squared test\n\n\nlogistic regression\n\n\n\nInformation about shots during the 2021-2022 PHF season\n\n\n\n\n\nMar 23, 2023\n\n\nRon Yurko\n\n\n\n\n\n\n\n\n\n\n\n\nSoccer Heights\n\n\n\n\n\n\nANOVA for means\n\n\nPairwise comparisons\n\n\n\nHeights for a sample of 100 soccer players by position\n\n\n\n\n\nAug 3, 2023\n\n\nRoderick Mpofu, Robin Lock\n\n\n\n\n\n\n\n\n\n\n\n\nStatistics of PGA Tournaments During the 2022 Season\n\n\n\n\n\n\ncorrelation\n\n\nlinear regression\n\n\n\nMeasures of Putting, Driving, and Success for individual golfers in 19 professional tournaments in 2022\n\n\n\n\n\nMay 19, 2023\n\n\nAlysssa Bigness\n\n\n\n\n\n\n\n\n\n\n\n\nSumo wrestler characteristics\n\n\n\n\n\n\ndata wrangling\n\n\ndata visualization\n\n\n\nSumo wrestling data 1957-2023.\n\n\n\n\n\nJun 29, 2023\n\n\nJack Fay, A.J. Dykstra, and Ivan Ramler\n\n\n\n\n\n\n\n\n\n\n\n\nTeam Statistics for Division I Women’s Volleyball\n\n\n\n\n\n\nmulticollinearity\n\n\nmultiple linear regression\n\n\ncorrelations\n\n\nsummary statistics\n\n\n\nThese data sets contain team statistics for Division I women’s volleyball in the 2022 and 2023 seasons.\n\n\n\n\n\nJul 24, 2023\n\n\nJack Fay, A.J. Dykstra, and Ivan Ramler\n\n\n\n\n\n\n\n\n\n\n\n\nTeam statistics for NCAA Division 1 Men’s and Women’s Lacrosse\n\n\n\n\n\n\ncorrelation\n\n\nindicator variables\n\n\nlinear regression\n\n\nside-by-side boxplots\n\n\n\nThese data sets contain team statistics for NCAA Division I women’s and men’s lacrosse in the 2022 and 2023 seasons.\n\n\n\n\n\nJul 24, 2023\n\n\nJack Fay, A.J. Dykstra, and Ivan Ramler\n\n\n\n\n\n\n\n\n\n\n\n\nWTA Grand Slam Matches\n\n\n\n\n\n\nlogistic regression\n\n\ndata wrangling\n\n\ncategorical data\n\n\nchi-squared test\n\n\nclustering\n\n\n\nWTA Grand Slam Matches from 2018 to 2022\n\n\n\n\n\nMay 24, 2023\n\n\nRon Yurko\n\n\n\n\n\n\n\n\n\n\n\n\nWomen’s National Baskeball Assosiation game statistics\n\n\n\n\n\n\nData cleaning\n\n\nMissing Data\n\n\nTables\n\n\nLogistic Regression\n\n\n\nThis data set contains team game statistics for 16 WNBA teams and for 20 seasons.\n\n\n\n\n\nDec 15, 2023\n\n\nKristen Varin\n\n\n\n\n\n\n\n\n\n\n\n\nWomen’s National Basketball Association Shots\n\n\n\n\n\n\nclassification\n\n\nlogistic regression\n\n\ngeneralized additive models\n\n\nmultinomial logistic regression\n\n\nnaive bayes classifier\n\n\ndensity estimation\n\n\n\nInformation about shots during the 2021-2022 WNBA season\n\n\n\n\n\nMar 25, 2023\n\n\nRon Yurko\n\n\n\n\n\n\nNo matching items", + "crumbs": [ + "Home", + "Datasets By Topic" + ] + }, + { + "objectID": "football/nfl-team-statistics.html", + "href": "football/nfl-team-statistics.html", + "title": "National Football League Team Statistics", + "section": "", + "text": "The National Football League (NFL) is the top professional American football league in the world. While a team’s record ultimately determines whether or not they make the playoffs, their score differential (points for - points against) is often a better indicator of a team’s ability. But what aspects of a team’s performance are related to their point differential? Is passing more important than rushing? What about offense in comparison to defense? The NFL records a variety of statistics, and the public NFL analytics community have developed advanced metrics such as expected points added (EPA) that provide deeper insight into a team’s performance. With this dataset of statistics dating back to 1999, you can explore variation between teams since as well as which types of statistics are relevant predictor variables of record and point differential.", + "crumbs": [ + "Home", + "Football", + "National Football League Team Statistics" + ] + }, + { + "objectID": "football/nfl-team-statistics.html#motivation", + "href": "football/nfl-team-statistics.html#motivation", + "title": "National Football League Team Statistics", + "section": "", + "text": "The National Football League (NFL) is the top professional American football league in the world. While a team’s record ultimately determines whether or not they make the playoffs, their score differential (points for - points against) is often a better indicator of a team’s ability. But what aspects of a team’s performance are related to their point differential? Is passing more important than rushing? What about offense in comparison to defense? The NFL records a variety of statistics, and the public NFL analytics community have developed advanced metrics such as expected points added (EPA) that provide deeper insight into a team’s performance. With this dataset of statistics dating back to 1999, you can explore variation between teams since as well as which types of statistics are relevant predictor variables of record and point differential.", + "crumbs": [ + "Home", + "Football", + "National Football League Team Statistics" + ] + }, + { + "objectID": "football/nfl-team-statistics.html#data", + "href": "football/nfl-team-statistics.html#data", + "title": "National Football League Team Statistics", "section": "Data", - "text": "Data\nThe data comes from the NASCAR website and shows the season statistics from 2007-2022. Each row displays the metrics of a racer for that specific year. The data frame contains 1111 rows of observations and 20 variables.\n\nnascar_driver_statistics.csv\n\n\nVariable\nDescription\n\n\n\n\nWins\nThe sum of the driver’s victories\n\n\nAvgStart\nThe sum of the driver’s starting positions divided by the number of races\n\n\nAvgMidRace\nThe sum of the driver’s mid race positions divided by the number of races\n\n\nAvgFinish\nThe sum of the driver’s finishing positions divided by the number of races\n\n\nAvgPos\nThe sum of the driver’s position each lap divided by the number of laps\n\n\nPassDiff\nThe sum of green flag passes minus green times passed\n\n\nGreenFlagPasses\nNumber of green flag passes performed by the driver\n\n\nGreenFlagPassed\nNumber of times driver is passed during green flag\n\n\nQualityPasses\nNumber of passes in the top 15 while under green flag conditions by driver\n\n\nPercentQualityPasses\nThe sum of quality passes divided by green flag passes\n\n\nNumFastestLaps\nNumber of where the driver had the fastest speed on the lap\n\n\nLapsInTop15\nNumber of laps completed while running in a top 15 position\n\n\nPercentLapsInTop15\nThe sum of the laps run in the top 15 divided by total laps completed\n\n\nLapsLed\nThe sum of the laps led in a race\n\n\nPercentLapsLed\nThe sum of the laps led in the race\n\n\nTotalLaps\nThe sum of the laps completed by a driver that year\n\n\nDriverRating\nFormula combining wins, finish, top15-finish, average running position while on lead lap, average speed under green, fastest lap, led most laps, and lead lap finish with a maximum rating of 150 points" + "text": "Data\nThis dataset contains statistics about the regular season performance for each NFL team from 1999 to 2022 team. The data was collected using the nflreadr package in R.\nEach row in the dataset corresponds to a single NFL team in a single regular season. There are a total of 765 team-seasons, with 56 total columns. The column names are organized below by the type of information they contain, with the first set of columns being self-explanatory:\n\nnfl-team-statistics.csv\n\n\nVariable\nDescription\n\n\n\n\nseason\nRegular season year of team’s statistics\n\n\nteam\nNFL team three letter abbreviation\n\n\n\nThere are also columns with season level outcomes:\n\n\n\nVariable\nDescription\n\n\n\n\npoints_score\nTotal number of points scored by the team\n\n\npoints_allowed\nTotal number of points allowed by the team\n\n\nwins\nNumber of games the team won\n\n\nlosses\nNumber of games the team lost\n\n\nties\nNumber of games the team tied\n\n\nscore_differential\npoints scored - points allowed\n\n\n\nThere are also several columns corresponding to offensive and defensive summaries of the team’s performance in the season separated by play type (either pass or run):\n\n\n\n\n\n\n\nVariable\nDescription\n\n\n\n\noffense/defense_completion_percentage\nPassing completion percentage either for (offense) or against (defense)\n\n\noffense/defense_total_yards_gained_pass/run\nTotal number of yards gained (offense) or allowed (defense) by play type (pass or run)\n\n\noffense/defense_ave_yards_gained_pass/run\nAverage number of yards gained (offense) or allowed (defense) per play by play type (pass or run)\n\n\noffense/defense_total_air_yards\nTotal number of air yards gained (offense) or allowed (defense), where air yards correspond to perpendicular yards traveled from the line of scrimmage to location of catch for passing plays\n\n\noffense/defense_ave_air_yards\nAverage number of air yards gained (offense) or allowed (defense) per passing play\n\n\noffense/defense_total_yac\nTotal number of yards after catch gained (offense) or allowed (defense)\n\n\noffense/defense_ave_yac\nAverage number of yards after catch gained (offense) or allowed (defense) per passing play\n\n\noffense/defense_n_plays_pass/run\nTotal number of plays by the team (offense) or against (defense) by play type (pass or run)\n\n\noffense/defense_n_interceptions\nTotal number of interceptions thrown (offense) or caught (defense)\n\n\noffense/defense/n_fumbles_lost_pass/run\nTotal number of fumbles lost (offense) or forced (defense) by play type (pass or run)\n\n\noffense/defense_total_epa_pass/run\nTotal expected points added (offense) or allowed (defense) by play type (pass or run)\n\n\noffense/defense_ave_epa_pass/run\nAverage expected points added (offense) or allowed (defense) per play by play type (pass or run)\n\n\noffense/defense_total_wpa_pass/run\nTotal win probability added (offense) or allowed (defense) by play type (pass or run)\n\n\noffense/defense_ave_wpa_pass/run\nAverage win probability added (offense) or allowed (defense) per play by play type (pass or run)\n\n\noffense/defense_total_epa_pass/run\nTotal expected points added (offense) or allowed (defense) by play type (pass or run)\n\n\noffense/defense_success_rate_pass/run\nProportion of plays with positive expected points added (offense) or allowed (defense) by play type (pass or run)\n\n\n\nThe EPA variables are advanced NFL statistics, conveying how much value a team is adding over the average team in a given situation. It’s on a points scale instead of the typically used yards, because not all yards are created equal in American football (10 yard gain on 3rd and 15 is much less valuable than a 2 yard gain on 4th and 1). For offensive stats the higher the EPA the better, but for defensive stats the lower (more negative) the EPA the better. The WPA variables are similar except they are measuring play value in terms of win probability.", + "crumbs": [ + "Home", + "Football", + "National Football League Team Statistics" + ] }, { - "objectID": "motor_sports/NASCAR_driver_ratings.html#questions", - "href": "motor_sports/NASCAR_driver_ratings.html#questions", - "title": "NASCAR Data Description", + "objectID": "football/nfl-team-statistics.html#questions", + "href": "football/nfl-team-statistics.html#questions", + "title": "National Football League Team Statistics", "section": "Questions", - "text": "Questions\n\nWhat is the best way to model the relationship between average finish and driver rating? Are the linear model assumptions met?\nWhich predictors best predict driver rating?" + "text": "Questions\n\nBuild a linear regression model to predict score differential as a function of the team’s statistics. Which variables, if any, are predictive of score differential in a season? Are certain types of variables more predictive? (e.g., passing versus rushing,) Describe their relationships.\nUsing principal component analysis, project the team seasons into a lower dimensional space using only the team statistics that do not include points or record. Choose an appropriate number of principal components, and describe which statistics contribute to your selected number of components. Based on your results, which team statistics explain the most variation between team-seasons in the dataset? Which team statistics are independent of each other?", + "crumbs": [ + "Home", + "Football", + "National Football League Team Statistics" + ] }, { - "objectID": "motor_sports/NASCAR_driver_ratings.html#references", - "href": "motor_sports/NASCAR_driver_ratings.html#references", - "title": "NASCAR Data Description", + "objectID": "football/nfl-team-statistics.html#references", + "href": "football/nfl-team-statistics.html#references", + "title": "National Football League Team Statistics", "section": "References", - "text": "References\nhttps://www.nascar.com/stats/" + "text": "References\nHo T, Carl S (2022). nflreadr: Download ‘nflverse’ Data. R package version 1.3.1, https://CRAN.R-project.org/package=nflreadr.", + "crumbs": [ + "Home", + "Football", + "National Football League Team Statistics" + ] }, { - "objectID": "golf/pga_drive_putt.html", - "href": "golf/pga_drive_putt.html", - "title": "Statistics of PGA Tournaments During the 2022 Season", + "objectID": "index.html", + "href": "index.html", + "title": "SCORE Sports Data Repository", "section": "", - "text": "A common expression among golfers is “Drive for show, putt for dough.” This implies that the long initial tee shots (drives) on each hole are impressive, but the real key to success is the final strokes rolling the ball along the green into the hole (putts). Do data support this adage? The dataset for this activity was obtained from the PGA statistics website. Cases include all golfers who made the cut in each of 19 PGA tournaments in 2022. The dataset includes variables for driving ability, putting ability, and measuring success in the tournament. The “driving” variables include average driving distance (avgDriveDist), driving accuracy percentage (drivePct), and strokes gained off the tee (driveSG). The “putting” variables are average putts per round (avgPuttsPerRound), one putt percentage (onePuttPct), and strokes gained putting (puttsSG). The variables to measure success are scoring average (avgScore), official money won (Money), and Fedex Cup points (Points)." + "text": "The SCORE Network Sports Data Repository curates interesting datasets across a variety of sports for use in statistics and data science education. Each dataset has the following properties:\n\nA sports question of interest, with context motivating why the dataset is relevant and interesting to explore.\nA statistics / data science topic which the dataset can be used to help teach.\nExample questions that instructors can use to help build lessons, handouts, and SCORE modules.\n\nDatasets are organized by sport along the left, but you can also browse by statistics and data science topic.\nThis repository is heavily inspired by the CMU S&DS Data Repository.\nThe development of the SCORE with Data network is funded by the National Science Foundation (award 2142705)." }, { - "objectID": "golf/pga_drive_putt.html#motivation", - "href": "golf/pga_drive_putt.html#motivation", - "title": "Statistics of PGA Tournaments During the 2022 Season", + "objectID": "softball/softball_d1_2021-2022.html", + "href": "softball/softball_d1_2021-2022.html", + "title": "Batting Statistics for Division I Softball", "section": "", - "text": "A common expression among golfers is “Drive for show, putt for dough.” This implies that the long initial tee shots (drives) on each hole are impressive, but the real key to success is the final strokes rolling the ball along the green into the hole (putts). Do data support this adage? The dataset for this activity was obtained from the PGA statistics website. Cases include all golfers who made the cut in each of 19 PGA tournaments in 2022. The dataset includes variables for driving ability, putting ability, and measuring success in the tournament. The “driving” variables include average driving distance (avgDriveDist), driving accuracy percentage (drivePct), and strokes gained off the tee (driveSG). The “putting” variables are average putts per round (avgPuttsPerRound), one putt percentage (onePuttPct), and strokes gained putting (puttsSG). The variables to measure success are scoring average (avgScore), official money won (Money), and Fedex Cup points (Points)." + "text": "Data for a particular sport is often stored across numerous locations. For example, in NCAA Division I Softball, batting statistics for each season are typically stored in separate tables. (See for example the statistics hosted by https://d1softball.com/)\nSuppose we are interested in tracking the statistics of players across multiple seasons. A common way to prep the data to do this is to use join statements to merge each season’s data into one table with one row per player (and columns associated with their different statistics for each season).", + "crumbs": [ + "Home", + "Softball", + "Batting Statistics for Division I Softball" + ] }, { - "objectID": "golf/pga_drive_putt.html#data", - "href": "golf/pga_drive_putt.html#data", - "title": "Statistics of PGA Tournaments During the 2022 Season", + "objectID": "softball/softball_d1_2021-2022.html#motivation", + "href": "softball/softball_d1_2021-2022.html#motivation", + "title": "Batting Statistics for Division I Softball", + "section": "", + "text": "Data for a particular sport is often stored across numerous locations. For example, in NCAA Division I Softball, batting statistics for each season are typically stored in separate tables. (See for example the statistics hosted by https://d1softball.com/)\nSuppose we are interested in tracking the statistics of players across multiple seasons. A common way to prep the data to do this is to use join statements to merge each season’s data into one table with one row per player (and columns associated with their different statistics for each season).", + "crumbs": [ + "Home", + "Softball", + "Batting Statistics for Division I Softball" + ] + }, + { + "objectID": "softball/softball_d1_2021-2022.html#data", + "href": "softball/softball_d1_2021-2022.html#data", + "title": "Batting Statistics for Division I Softball", "section": "Data", - "text": "Data\nEach row of data gives the measures for one golfer in one tournament. The dataset covers 19 PGA tournaments from the 2022 season with 1387 cases in all. Each tournament consists of four rounds of golf. Some golfers are eliminated after the first two (or sometimes three) rounds. Only players who competed in all four rounds (i.e. those that made the “cut”) are included in this dataset.\n\nPGA2022.csv\n\n\nVariable\nDescription\n\n\n\n\nplayerName\nName of the player\n\n\ncountry\nThe country where the player is from\n\n\navgDriveDist\nAverage driving distance (in yards)\n\n\ndrivePct\nPercentage of times a tee shot comes to rest in the fairway\n\n\ndriveSG\nStrokes gained off the tee measures player performance off the tee on all par 4s and par 5s of how much better or worse a player’s drive is than the PGA Tour average\n\n\navgPuttsPerRound\nAverage number of total putts per round\n\n\nonePuttPct\nPercentage of times it took one putt to get the ball into the hole\n\n\nputtsSG\nStrokes gained putting measures how many strokes a player gains or loses on the greens compared to the PGA Tour average\n\n\navgScore\nThe scoring average is the total strokes divided by the total rounds\n\n\nMoney\nThe official money is the prize money award to the Professional members\n\n\nPoints\nFedexCup Regular Season Points are awarded points by finished position for performance in each tournament\n\n\nTournament\nThe tournament where the PGA Tour is taking place" + "text": "Data\nThere are four data tables associated with this page.\nTwo of them, batting2021 and batting2022, contain statistics for all Division 1 Softball player who played in the 2021 and/or 2022 season.\nThe other two, batting2021_subset and batting2022_subset, represent non-random samples taken the full data and can be used to manually illustrate how to merge the tables.\nThe 2021 data set has 2131 rows with 22 columns. The 2022 data set has 2275 rows with the same 22 columns. Each row represents a Division 1 Softball player who played in the 2021 and/or 2022 season.\n\n\n\n\n\n\n\nVariable\nDescription\n\n\n\n\nPlayer\nName of the softball player\n\n\nTeam\nName of the team (school) for each player\n\n\nBA\nBatting Average - The ratio of a player’s total base hits to their total number of at-bats, indicating their ability to make successful hits.\n\n\nOBP\nOn-Base Percentage - The percentage of times a player reaches base, either through a hit, walk, or hit-by-pitch, out of their total plate appearances.\n\n\nSLG\nSlugging Percentage - The measure of a player’s power by calculating the total number of bases they accumulate per at-bat.\n\n\nOPS\nOn-Base Plus Slugging - The sum of a player’s on-base percentage and slugging percentage, providing a comprehensive measure of their offensive contribution.\n\n\nGP\nGames Played - The total number of games in which a player has participated.\n\n\nPA\nPlate Appearances - The total number of times a player has come up to bat, including at-bats, walks, and hit-by-pitches.\n\n\nAB\nAt-Bats - The number of times a player has officially faced a pitcher and had an opportunity to hit.\n\n\nR\nRuns Scored - The number of times a player has crossed home plate and scored a run.\n\n\nH\nHits - The total number of successful hits made by a player.\n\n\n2B\nDoubles - The number of hits resulting in the batter reaching second base.\n\n\n3B\nTriples - The number of hits resulting in the batter reaching third base.\n\n\nHR\nHome Runs - The number of hits resulting in the batter scoring a run by hitting the ball out of the park.\n\n\nRBI\nRuns Batted In - The number of runs a player has driven in with a hit or sacrifice.\n\n\nHBP\nHit by Pitch - The number of times a player has been struck by a pitched ball and awarded first base.\n\n\nBB\nWalks - The number of times a player has received a base on balls (four balls) and been awarded first base.\n\n\nK\nStrikeouts - The number of times a player has been called out after accumulating three strikes.\n\n\nSB\nStolen Bases - The number of times a player successfully advances to the next base without a hit, during a pitch while the ball is in play.\n\n\nCS\nCaught Stealing - The number of times a player is thrown out while attempting to steal a base.\n\n\n\n\nThe data tables are available for individual download as csv files or bundled together into either a SQLite or DuckDB database.\n\nbatting2021.csv\n\n\nbatting2022.csv\n\n\nbatting2021_subset.csv\n\n\nbatting2022_subset.csv\n\n\nsoftball_batting.sqlite\n\n\nsoftball_batting.duckdb", + "crumbs": [ + "Home", + "Softball", + "Batting Statistics for Division I Softball" + ] }, { - "objectID": "golf/pga_drive_putt.html#questions", - "href": "golf/pga_drive_putt.html#questions", - "title": "Statistics of PGA Tournaments During the 2022 Season", + "objectID": "softball/softball_d1_2021-2022.html#questions", + "href": "softball/softball_d1_2021-2022.html#questions", + "title": "Batting Statistics for Division I Softball", "section": "Questions", - "text": "Questions\n\nAre driving or putting statistics generally more effective for predicting success in a PGA tournament?\nWhich measure of success (avgScore, Money, or Points) appears to be easiest to predict with either driving or putting information?\nFor each measure of success, generate a scatterplot with one the putting or driving variables. Which of these plots suggest we might want to use a transformation of one of the variables to improve linearity?\nCan you find a transformation that improves the linearity of the relationship for one of the problematic cases in question #3?" + "text": "Questions\n\nWith multiple seasons of data, you can investigate the different ways to join the the 2021 and 2022 statistics. (e.g., comparing the results of an inner join vs a full join) This can be done manually using subsets of data (to illustrate the joins with simple examples) or scaled up using the full data\nWith a single season/table, you can practice different data wrangling techniques. e.g., finding the league leaders in different categories", + "crumbs": [ + "Home", + "Softball", + "Batting Statistics for Division I Softball" + ] }, { - "objectID": "golf/pga_drive_putt.html#references", - "href": "golf/pga_drive_putt.html#references", - "title": "Statistics of PGA Tournaments During the 2022 Season", + "objectID": "softball/softball_d1_2021-2022.html#references", + "href": "softball/softball_d1_2021-2022.html#references", + "title": "Batting Statistics for Division I Softball", "section": "References", - "text": "References\nThe data were obtained from the PGA statistics website." + "text": "References\nStatistics. D1Softball. (2019, October 24). https://d1softball.com/statistics/", + "crumbs": [ + "Home", + "Softball", + "Batting Statistics for Division I Softball" + ] }, { - "objectID": "data-sources.html", - "href": "data-sources.html", - "title": "Data Sources", - "section": "", - "text": "Here are some resources for finding sports datasets:\n\nCRAN Task View for Sports Analytics - catalog of R packages published on the Comprehensive R Archive Network (CRAN) organized by sport (curated by Benjamin S. Baumer, Quang Nguyen, and Gregory J. Matthews)\nSportsDataverse initiative - collection of software tools for accessing publicly available sports data (organized by Saiem Gilani)\nKaggle\nTidyTuesday - GitHub repository of datasets updated weekly with example code for accessing data (featuring a variety of sports examples)\nFiveThirtyEight - GitHub repository of datasets used in FiveThirtyEight articles" - }, - { - "objectID": "lacrosse/lacrosse_pll_vs_nll.html", - "href": "lacrosse/lacrosse_pll_vs_nll.html", - "title": "Lacrosse PLL vs. NLL", + "objectID": "triathlon/triathlon_lakeplacid_women_ironman.html", + "href": "triathlon/triathlon_lakeplacid_women_ironman.html", + "title": "Lake Placid Women’s Ironman Triathlon", "section": "", - "text": "This data set examines the goals and shots in two prominent lacrosse leagues: the Premier Lacrosse League (PLL) and the National Lacrosse League (NLL).\nThe PLL and NLL are highly regarded professional lacrosse leagues that feature top-tier athletes from around the world. The PLL is played in an indoor, smaller field while the NLL plays on an outdoor field with traditional dimensions. This data set allows for an analysis of goal-scoring within these leagues." + "text": "The motivation for this data analysis is to explore the relationships between swim times, bike times, and run times (in minutes) in order to gain insights into the performance patterns of the athletes. By analyzing these relationships, we can understand the interplay between different segments of the race and potentially identify areas of improvement for athletes.", + "crumbs": [ + "Home", + "Triathlon", + "Lake Placid Women's Ironman Triathlon" + ] }, { - "objectID": "lacrosse/lacrosse_pll_vs_nll.html#motivation", - "href": "lacrosse/lacrosse_pll_vs_nll.html#motivation", - "title": "Lacrosse PLL vs. NLL", + "objectID": "triathlon/triathlon_lakeplacid_women_ironman.html#motivation", + "href": "triathlon/triathlon_lakeplacid_women_ironman.html#motivation", + "title": "Lake Placid Women’s Ironman Triathlon", "section": "", - "text": "This data set examines the goals and shots in two prominent lacrosse leagues: the Premier Lacrosse League (PLL) and the National Lacrosse League (NLL).\nThe PLL and NLL are highly regarded professional lacrosse leagues that feature top-tier athletes from around the world. The PLL is played in an indoor, smaller field while the NLL plays on an outdoor field with traditional dimensions. This data set allows for an analysis of goal-scoring within these leagues." + "text": "The motivation for this data analysis is to explore the relationships between swim times, bike times, and run times (in minutes) in order to gain insights into the performance patterns of the athletes. By analyzing these relationships, we can understand the interplay between different segments of the race and potentially identify areas of improvement for athletes.", + "crumbs": [ + "Home", + "Triathlon", + "Lake Placid Women's Ironman Triathlon" + ] }, { - "objectID": "lacrosse/lacrosse_pll_vs_nll.html#data", - "href": "lacrosse/lacrosse_pll_vs_nll.html#data", - "title": "Lacrosse PLL vs. NLL", + "objectID": "triathlon/triathlon_lakeplacid_women_ironman.html#data", + "href": "triathlon/triathlon_lakeplacid_women_ironman.html#data", + "title": "Lake Placid Women’s Ironman Triathlon", "section": "Data", - "text": "Data\nThe data set has 162 rows with 9 columns. Each row represents a single lacrosse match either in the Premier Lacrosse League or the National Lacrosse League for the 2021 - 2022 season. NLL seasons typically run from December to May while PLL seasons typically run from June to September.\n\nlacrosse_pll_nll_2021-2022.csv\n\n\nVariable\nDescription\n\n\n\n\nLeague\nThe Premier Lacrosse league and the National Lacrosse League\n\n\nAway_team\nThe traveling team\n\n\nHome_team\nThe hosting team\n\n\nAway_shots\nHow many shots the Away_team had on net\n\n\nHome_shots\nHow many shots the Home_team had on net\n\n\nAway_goals\nHow many goals the Away_team had on net\n\n\nHome_goals\nHow many goals the Home_team had on net\n\n\ngoals_per_game\nThe total amount of goals scored each game\n\n\ngoals_per_48\nThe average amount of goals for the first 48 minutes of a game" + "text": "Data\nThe main data set has 489 rows with 17 columns. Each row represents a female who has participated in the Ironman in 2022. Additionally, a subset of 2022 female Canadian participants is available and has 64 rows.\n\n\n\n\n\n\n\nVariable\nDescription\n\n\n\n\nBib\nregistration number of each runner used for identification\n\n\nName\nThe participant’s name\n\n\nCountry\nWhat country the participant is from\n\n\nGender\nThe participant’s gender\n\n\nDivision\nThe age range or membership a runner is\n\n\nDivision.Rank\nWithin the divisions, the place each runner has obtained over all races\n\n\nOverall.Time\nThe total time it took to complete the Ironman in minutes\n\n\nOverall.Rank\nThe runner’s finishing place for that particular triathlon\n\n\nSwim.Time\nThe time in minutes it took to complete the swimming portion\n\n\nSwim.Rank\nThe place the runner finished for the swim portion\n\n\nBike.Time\nThe time in minutes it took to complete the biking portion\n\n\nBike.Rank\nThe place the runner finished for the bike portion\n\n\nRun.Time\nThe time in minutes it took to complete the running portion\n\n\nRun.Rank\nThe place the runner finished for the running portion\n\n\nFinish.Status\nStates whether someone completed the Ironman successfully\n\n\nLocation\nWhere the Ironman takes place\n\n\nYear\nThey year when the mentioned participant ran\n\n\n\n\n\n\n\nironman_lake_placid_female_2022.csv\n\n\nironman_lake_placid_female_2022_canadian.csv", + "crumbs": [ + "Home", + "Triathlon", + "Lake Placid Women's Ironman Triathlon" + ] }, { - "objectID": "lacrosse/lacrosse_pll_vs_nll.html#questions", - "href": "lacrosse/lacrosse_pll_vs_nll.html#questions", - "title": "Lacrosse PLL vs. NLL", + "objectID": "triathlon/triathlon_lakeplacid_women_ironman.html#questions", + "href": "triathlon/triathlon_lakeplacid_women_ironman.html#questions", + "title": "Lake Placid Women’s Ironman Triathlon", "section": "Questions", - "text": "Questions\n\nDo these data provide evidence that, on average, goals scored in the PLL and NLL differ? Include all details of the appropriate hypothesis test.\nConstruct and interpret a 95% confidence interval in average goals for NLL and PLL lacrosse games per 48 minutes." + "text": "Questions\n\nWith the different times and rank variables, you can explore the relationships between them through things like correlation coefficients and linear regression.\nOther things like finding the best variables at predicting a runner’s overall rank in a race and then even a division rank would be easy to model using this data set.", + "crumbs": [ + "Home", + "Triathlon", + "Lake Placid Women's Ironman Triathlon" + ] }, { - "objectID": "lacrosse/lacrosse_pll_vs_nll.html#references", - "href": "lacrosse/lacrosse_pll_vs_nll.html#references", - "title": "Lacrosse PLL vs. NLL", + "objectID": "triathlon/triathlon_lakeplacid_women_ironman.html#score-modules", + "href": "triathlon/triathlon_lakeplacid_women_ironman.html#score-modules", + "title": "Lake Placid Women’s Ironman Triathlon", + "section": "SCORE Modules", + "text": "SCORE Modules\nThe following SCORE modules are associated with these data.\n\nIronman Triathlons - Correlations", + "crumbs": [ + "Home", + "Triathlon", + "Lake Placid Women's Ironman Triathlon" + ] + }, + { + "objectID": "triathlon/triathlon_lakeplacid_women_ironman.html#references", + "href": "triathlon/triathlon_lakeplacid_women_ironman.html#references", + "title": "Lake Placid Women’s Ironman Triathlon", "section": "References", - "text": "References\nPremier Lacrosse League stats. Premier Lacrosse League Stats. (n.d.). https://stats.premierlacrosseleague.com/\nPlayer stats. NLL. (2023, January 26). https://www.nll.com/stats/all-player-stats/" + "text": "References\nIronman Lake Placid Results and articles. CoachCox. (n.d.). https://www.coachcox.co.uk/imstats/series/13/", + "crumbs": [ + "Home", + "Triathlon", + "Lake Placid Women's Ironman Triathlon" + ] }, { - "objectID": "running/boston_marathon_2023.html", - "href": "running/boston_marathon_2023.html", - "title": "2023 Boston Marathon runners", + "objectID": "basketball/nba-player-stats.html", + "href": "basketball/nba-player-stats.html", + "title": "National Basketball Association Player Statistics", "section": "", - "text": "The Boston Marathon is an annual road race that takes place in the City of Boston Massachusetts. Attracting thousands of runners of varying skill and experience, year after year participants from around the world gather to compete for world records, divisional records, and personal bests. Examining the results of these athletes yields an interesting look into the spread and distribution of the times of all runners who successfully completed the historic race." + "text": "The National Basketball Association (NBA) is the top men’s professional basketball league in the world. While players have predefined positions, the sport is becoming increasingly positionless - with centers attempting more three point shots and guards driving the ball inside to dunk. With this dataset, you can explore clustering NBA players based on various types of statistics and compare your players labels to the predefined positions.", + "crumbs": [ + "Home", + "Basketball", + "National Basketball Association Player Statistics" + ] }, { - "objectID": "running/boston_marathon_2023.html#motivation", - "href": "running/boston_marathon_2023.html#motivation", - "title": "2023 Boston Marathon runners", + "objectID": "basketball/nba-player-stats.html#motivation", + "href": "basketball/nba-player-stats.html#motivation", + "title": "National Basketball Association Player Statistics", "section": "", - "text": "The Boston Marathon is an annual road race that takes place in the City of Boston Massachusetts. Attracting thousands of runners of varying skill and experience, year after year participants from around the world gather to compete for world records, divisional records, and personal bests. Examining the results of these athletes yields an interesting look into the spread and distribution of the times of all runners who successfully completed the historic race." + "text": "The National Basketball Association (NBA) is the top men’s professional basketball league in the world. While players have predefined positions, the sport is becoming increasingly positionless - with centers attempting more three point shots and guards driving the ball inside to dunk. With this dataset, you can explore clustering NBA players based on various types of statistics and compare your players labels to the predefined positions.", + "crumbs": [ + "Home", + "Basketball", + "National Basketball Association Player Statistics" + ] }, { - "objectID": "running/boston_marathon_2023.html#data", - "href": "running/boston_marathon_2023.html#data", - "title": "2023 Boston Marathon runners", + "objectID": "basketball/nba-player-stats.html#data", + "href": "basketball/nba-player-stats.html#data", + "title": "National Basketball Association Player Statistics", "section": "Data", - "text": "Data\nThe data set contains 26598 rows and 15 columns. Each row represents a runner who completed the Boston Marathon in 2023\n\n\n\n\n\n\n\nVariable\nDescription\n\n\n\n\nage_group\nage group of the runner\n\n\nplace_overall\nfinishing place of the runner out of all runners\n\n\nplace_gender\nfinishing place of runner among the same gender\n\n\nplace_division\nfinishing place of runner among runners of the same gender and age group\n\n\nname\nname of runner\n\n\ngender\ngender of runner\n\n\nteam\nteam the runner is affiliated with\n\n\nbib_number\nbib number of runner\n\n\nhalf_time\nhalf marathon time of runner\n\n\nfinish_net\nfinishing time timed from when they cross the starting gate\n\n\nfinish_gun\nfinishing time of runner timed from when the starter gun is fired\n\n\nage_group\nage group of the runner\n\n\nhalf_time_sec\nhalf marathon time in seconds\n\n\nfinish_net_sec\nnet finish in seconds\n\n\nfinish_gun_sec\ngun finish in seconds\n\n\n\n\nData file\n\nboston_marathon_2023.csv" + "text": "Data\nThis dataset contains statistics about 812 player-team stints for during the 2021-2022 NBA regular season. For players that played for \\(T\\) teams during the season (due to trade), there are \\(T+1\\) rows with one row for their performance with each of the \\(T\\) teams and another row indicating their total performance (where tm = TOT) across the full season regardless of team. The counting stats are reported on a per 100 team possessions scale, to normalize for playing time differences.\nThe data was collected using the ballr package in R., which gathers data from basketball-reference.com.\n\nnba-player-stats.csv\n\n\nVariable\nDescription\n\n\n\n\nplayer\nName of player\n\n\npos\nPlayer’s designated position\n\n\nage\nPlayer’s age on February 1st of the season\n\n\ntm\nName of team\n\n\ng\nNumber of games\n\n\ngs\nNumber of games started\n\n\nmp\nNumber of minutes played\n\n\nfg\nField goals per 100 team possessions\n\n\nfga\nField goal attempts per 100 team possessions\n\n\nfgpercent\nField goal percentage\n\n\nx3p\n3 point field goals per 100 team possessions\n\n\nx3pa\n3 point field goal attempts per 100 team possessions\n\n\nx3ppercent\n3 point field goal percentage\n\n\nx2p\n2 point field goals per 100 team possessions\n\n\nx2pa\n2 point field goal attempts per 100 team possessions\n\n\nx2ppercent\n2 point field goal percentage\n\n\nft\nFree throws per 100 team possessions\n\n\nfta\nFree throw attempts per 100 team possessions\n\n\nftpercent\nFree throw percentage\n\n\norb\nOffensive rebounds per 100 team possessions\n\n\ndrb\nDefensive rebounds per 100 team possessions\n\n\ntrb\nTotal rebounds per 100 team possessions\n\n\nast\nAssists per 100 team possessions\n\n\nstl\nSteals per 100 team possessions\n\n\nblk\nBlocks per 100 team possessions\n\n\ntov\nTurnovers per 100 team possessions\n\n\npf\nPersonal fouls per 100 team possessions\n\n\npts\nPoints per 100 team possessions\n\n\nortg\nOffensive Rating - an estimate of points produced per 100 possessions scale\n\n\ndrtg\nDefensive Rating - an estimate of points allowed per 100 possessions scale", + "crumbs": [ + "Home", + "Basketball", + "National Basketball Association Player Statistics" + ] }, { - "objectID": "running/boston_marathon_2023.html#questions", - "href": "running/boston_marathon_2023.html#questions", - "title": "2023 Boston Marathon runners", + "objectID": "basketball/nba-player-stats.html#questions", + "href": "basketball/nba-player-stats.html#questions", + "title": "National Basketball Association Player Statistics", "section": "Questions", - "text": "Questions\n\nWhat summary statistics are relevant to examine for finishing time?\nWhich race times would be considered outliers?\nAre there extreme outliers?\nWhich runner, the top male or top female, was more remarkable in comparison to their respective fields?" + "text": "Questions\n\nApply a clustering technique using the player statistics to create new labels for the types of NBA players, and compare to their known position labels. Compare and contrast your data-defined roles to the traditional basketball positions.\nUsing principal component analysis, project the players into a lower dimensional space. Choose an appropriate number of principal components, and describe which statistics contribute to your selected number of components. Based on your results, which player statistics explain the most variation between players in the dataset? Which stats are independent of each other?", + "crumbs": [ + "Home", + "Basketball", + "National Basketball Association Player Statistics" + ] }, { - "objectID": "running/boston_marathon_2023.html#references", - "href": "running/boston_marathon_2023.html#references", - "title": "2023 Boston Marathon runners", + "objectID": "basketball/nba-player-stats.html#references", + "href": "basketball/nba-player-stats.html#references", + "title": "National Basketball Association Player Statistics", "section": "References", - "text": "References\nBoston Athletic Association\nhttps://www.baa.org" + "text": "References\nElmore R (2020). ballr: Access to Current and Historical Basketball Data. R package version 0.2.6.", + "crumbs": [ + "Home", + "Basketball", + "National Basketball Association Player Statistics" + ] }, { - "objectID": "lacrosse/lacrosse_ncaa_div1.html", - "href": "lacrosse/lacrosse_ncaa_div1.html", - "title": "Team statistics for NCAA Division 1 Men’s and Women’s Lacrosse", + "objectID": "volleyball/volleyball_ncaa_team_stats.html", + "href": "volleyball/volleyball_ncaa_team_stats.html", + "title": "Team Statistics for Division I Women’s Volleyball", "section": "", - "text": "Over the years, lacrosse has experienced remarkable growth, with increased popularity and participation propelling the sport to new heights. This surge has led to a rise in skilled athletes competing in high-level leagues, notably NCAA Division I Men’s Lacrosse. Within this heightened competition, faceoffs are known to be a vital aspect of the game. Due to their important impact, players train to specifically specialize in them, as winning a faceoff often grants their teams crucial opportunities for offensive possession which can profoundly impact the course of the game." + "text": "Division 1 NCAA women’s volleyball is the highest level of collegiate competition for women’s volleyball in the United States. With well over 300 teams compete at the Division 1 level, there is fierce competition each year as only 64 teams make the post-season Volleyball Championship. The division demands high-level athletic performances, teamwork, and strategic game play from a variety of aspects. With each team having their own strengths and weaknesses, there is no exception of exciting matchups and and shocking results.\nIn volleyball, a kill is awarded to a player any time their attack is unreturnable by the opposition because it is the direct cause of the opponent not returning the ball. An assist is awarded when a set, pass, or dig to a teammate results in that teammate attacking the ball for a kill.", + "crumbs": [ + "Home", + "Volleyball", + "Team Statistics for Division I Women's Volleyball" + ] }, { - "objectID": "lacrosse/lacrosse_ncaa_div1.html#motivation", - "href": "lacrosse/lacrosse_ncaa_div1.html#motivation", - "title": "Team statistics for NCAA Division 1 Men’s and Women’s Lacrosse", + "objectID": "volleyball/volleyball_ncaa_team_stats.html#motivation", + "href": "volleyball/volleyball_ncaa_team_stats.html#motivation", + "title": "Team Statistics for Division I Women’s Volleyball", "section": "", - "text": "Over the years, lacrosse has experienced remarkable growth, with increased popularity and participation propelling the sport to new heights. This surge has led to a rise in skilled athletes competing in high-level leagues, notably NCAA Division I Men’s Lacrosse. Within this heightened competition, faceoffs are known to be a vital aspect of the game. Due to their important impact, players train to specifically specialize in them, as winning a faceoff often grants their teams crucial opportunities for offensive possession which can profoundly impact the course of the game." + "text": "Division 1 NCAA women’s volleyball is the highest level of collegiate competition for women’s volleyball in the United States. With well over 300 teams compete at the Division 1 level, there is fierce competition each year as only 64 teams make the post-season Volleyball Championship. The division demands high-level athletic performances, teamwork, and strategic game play from a variety of aspects. With each team having their own strengths and weaknesses, there is no exception of exciting matchups and and shocking results.\nIn volleyball, a kill is awarded to a player any time their attack is unreturnable by the opposition because it is the direct cause of the opponent not returning the ball. An assist is awarded when a set, pass, or dig to a teammate results in that teammate attacking the ball for a kill.", + "crumbs": [ + "Home", + "Volleyball", + "Team Statistics for Division I Women's Volleyball" + ] }, { - "objectID": "lacrosse/lacrosse_ncaa_div1.html#data", - "href": "lacrosse/lacrosse_ncaa_div1.html#data", - "title": "Team statistics for NCAA Division 1 Men’s and Women’s Lacrosse", + "objectID": "volleyball/volleyball_ncaa_team_stats.html#data", + "href": "volleyball/volleyball_ncaa_team_stats.html#data", + "title": "Team Statistics for Division I Women’s Volleyball", "section": "Data", - "text": "Data\n\nThere are three data sets: 2022-2023 statistics for Men’s teams, 2022-2023 statsitics for Women’s teams, and a dataset combining the Men’s and Women’s statisitcs (that only includes the variables available in each of the other two).\n\nlacrosse_men_ncaa_div1_2022_2023.csv\n\n\nThis data set contains 72 rows and 22 columns. Each row represents a men’s lacrosse team at the NCAA Division 1 level from the 2022-2023 season.\n\nlacrosse_women_ncaa_div1_2022_2023.csv\n\n\nVariable\nDescription\n\n\n\n\nTeam\ncollege of the team\n\n\navg_assists\naverage assists to goals per game\n\n\navg_caused_turnovers\naverage turnovers forced by the team per game\n\n\nclearing_pctg\npercentage of successful attempts to earn an offensive opportunity after gaining the ball in the teams own half\n\n\ntotal_faceoffs\ntotal faceoffs taken by a team for the season\n\n\nfaceoff_wins\ntotal faceoff wins by a team for the season\n\n\nfaceoff_win_pct\nproportion of total faceoff wins out of total faceoffs. Equivalent to the draw percentage in women’s lacrosse.\n\n\navg_goals\naverage goals per game\n\n\navg_goals_allowed\naverage goals allowed by the team per game\n\n\navg_ground_balls\naverage loose balls picked up by the team per game\n\n\nman_down_defense_pctg\nproportion of times a team stops the opponent from scoring while man down due to a penalty\n\n\nman_up_offense_pctg\nproportion of times the offense scores out of total opportunities while man up\n\n\navg_scoring_margin\naverage margin of goals per game\n\n\nopp_clear_pctg\nopponents clearing percentage averaged by game\n\n\navg_points\naverage team points per game\n\n\navg_saves\naverage saves per game\n\n\nshot_pctg\nproportion of shots that go in out of total shots\n\n\navg_turnovers\naverage turnovers that are directly the fault of a player per game\n\n\nW\ntotal wins by the team\n\n\nL\ntotal losses by the team\n\n\nwin_loss_pctg\nproportion of games won out of total games\n\n\n\nThis data set contains 120 rows and 18 columns. Each row represents a women’s lacrosse team at the NCAA Division 1 level from the 2022-2023 season.\n\n\n\n\n\n\n\nVariable Name\nDescription\n\n\n\n\nTeam\nThe name of the women’s NCAA lacrosse team.\n\n\ndraw_pctg\nDraw percentage, the proportion of draw controls won by the team in a game. Equivalent to the Faceoff percentage in Men’s lacrosse.\n\n\nturnovers_per_game\nAverage number of turnovers committed by the team per game.\n\n\nsog_per_game\nShots on goal (SOG) per game, the average number of shots on goal taken by the team.\n\n\nassists_per_game\nAverage number of assists made by the team per game.\n\n\ncaused_turnovers_per_game\nThe average number of caused turnovers by the team per game.\n\n\nclearing_pctg\nClearing percentage, the rate at which the team successfully clears the ball from defense to offense.\n\n\ndraw_controls_per_game\nThe average number of draw controls won by the team per game.\n\n\nfouls_per_game\nAverage number of fouls committed by the team per game.\n\n\nfree_position_pctg\nFree position percentage, the rate of successful free position shots taken by the team.\n\n\nground_balls_per_game\nThe average number of ground balls scooped by the team per game.\n\n\npoints_per_game\nAverage number of total points (goals + assists) scored by the team per game.\n\n\nsave_pctg\nSave percentage, the proportion of shots on goal saved by the team’s goalkeeper.\n\n\ngoals_allowed_per_game\nAverage number of goals allowed by the team’s defense per game.\n\n\ngoals_per_game\nAverage number of goals scored by the team per game.\n\n\nshots_per_game\nAverage number of total shots (on goal + off target) taken by the team per game.\n\n\nshot_pctg\nShooting percentage, the proportion of shots on goal that result in a goal.\n\n\nwin_pctg\nThe team’s winning percentage, calculated as the number of wins divided by total games played.\n\n\n\n\nNote: The table provides a brief description of each variable, but more context and understanding might be required to interpret and analyze these statistics effectively in the context of women’s NCAA lacrosse.\n\nlacrosse_men_and_women_ncaa_div1_2022_2023.csv\n\n\nThis data set contains 192 rows and 6 columns. Each row represents a lacrosse team at the NCAA Division 1 level from the 2022-2023 season. Teams come from both the men’s and womens division.\n\n\n\n\n\n\n\nVariable\nDescription\n\n\n\n\nTeam\ncollege of the team\n\n\nfaceoff_win_pct\nthe proportion of faceoffs win out of total faceoffs taken\n\n\nshots_per_game\naverage amount of shots per game\n\n\nshot_pctg\nproportion of shots that are goals out of total shots\n\n\nwin_loss_percentage\namount of wins out of total games played\n\n\nDivision\nthe division the team is in (Mens or Womens)" + "text": "Data\nThe data set contains 334 rows and 14 columns. Each row represents a team at the NCAA Division 1 level from the 2022-2023 season.\n\nvolleyball_ncaa_div1_2022_23.csv\n\n\nVariable\nDescription\n\n\n\n\nTeam\ncollege of the volleyball team\n\n\nConference\nconference to which the team belongs\n\n\nregion\nregion to which the team belongs\n\n\naces_per_set\nthe average amount of balls served that directly lead to a point not including errors by the opponent per set\n\n\nassists_per_set\nthe average amount of sets, passes, or digs to a teammate that directly result in a kill per set\n\n\nteam_attacks_per_set\nthe average amount of times the ball is sent to the other team’s court per set\n\n\nblocks_per_set\nthe average amount of times the ball is blocked from being hit on to the teams side per set\n\n\ndigs_per_set\naverage amount of times the ball is passed by a player successfully after an opponents attack per set\n\n\nhitting_pctg\ntotal team kills minus team hitting errors all divided by total attempts\n\n\nkills_per_set\naverage amount of hits that directly result in a point per set\n\n\nopp_hitting_pctg\nthe average hitting percentage of the teams opponent per set\n\n\nW\nthe amount of team wins for the season\n\n\nL\nthe amount of team losses for the season\n\n\nwin_loss_pctg\nthe amount of total wins divided by the total matches of the season", + "crumbs": [ + "Home", + "Volleyball", + "Team Statistics for Division I Women's Volleyball" + ] }, { - "objectID": "lacrosse/lacrosse_ncaa_div1.html#questions", - "href": "lacrosse/lacrosse_ncaa_div1.html#questions", - "title": "Team statistics for NCAA Division 1 Men’s and Women’s Lacrosse", + "objectID": "volleyball/volleyball_ncaa_team_stats.html#questions", + "href": "volleyball/volleyball_ncaa_team_stats.html#questions", + "title": "Team Statistics for Division I Women’s Volleyball", "section": "Questions", - "text": "Questions\nUsing either Women’s or Men’s\n\nWhich teams have better faceoff win proportions than the average?\nWhich teams have worse faceoff win proportions than the average?\nWhat sort of impact does faceoff percentage have on the success of the team?\n\nUsing the data with both Women’s and Men’s\n\nIn terms of a team’s win percentage, are faceoffs more important for men or women?\nWhat factors could make faceoffs more important for men or women?\nHow does faceoff win percentage affect winning percentage?" + "text": "Questions\n\nWhat variables are most highly correlated with win/loss percentage of a team?\nHow are assists and kills related?\nWhat model is best for predicting win/loss percentage?", + "crumbs": [ + "Home", + "Volleyball", + "Team Statistics for Division I Women's Volleyball" + ] }, { - "objectID": "lacrosse/lacrosse_ncaa_div1.html#references", - "href": "lacrosse/lacrosse_ncaa_div1.html#references", - "title": "Team statistics for NCAA Division 1 Men’s and Women’s Lacrosse", + "objectID": "volleyball/volleyball_ncaa_team_stats.html#references", + "href": "volleyball/volleyball_ncaa_team_stats.html#references", + "title": "Team Statistics for Division I Women’s Volleyball", "section": "References", - "text": "References\nNCAA Website: Women’s and Men’s Lacrosse Division I\nhttp://stats.ncaa.org/rankings/change_sport_year_div" - }, - { - "objectID": "index.html", - "href": "index.html", - "title": "SCORE Sports Data Repository", - "section": "", - "text": "The SCORE Network Sports Data Repository curates interesting datasets across a variety of sports for use in statistics and data science education. Each dataset has the following properties:\n\nA sports question of interest, with context motivating why the dataset is relevant and interesting to explore.\nA statistics / data science topic which the dataset can be used to help teach.\nExample questions that instructors can use to help build lessons, handouts, and SCORE modules.\n\nDatasets are organized by sport along the left, but you can also browse by statistics and data science topic.\nThis repository is heavily inspired by the CMU S&DS Data Repository.\nThe development of the SCORE with Data network is funded by the National Science Foundation (award 2142705)." + "text": "References\nNCAA - Women’s Volleyball\nhttps://www.ncaa.com/stats/volleyball-women/d1", + "crumbs": [ + "Home", + "Volleyball", + "Team Statistics for Division I Women's Volleyball" + ] }, { - "objectID": "softball/softball_d1_2021-2022.html", - "href": "softball/softball_d1_2021-2022.html", - "title": "Batting Statistics for Division I Softball", + "objectID": "hockey/nhl_2223.html", + "href": "hockey/nhl_2223.html", + "title": "NHL Team Statistics", "section": "", - "text": "Data for a particular sport is often stored across numerous locations. For example, in NCAA Division I Softball, batting statistics for each season are typically stored in separate tables. (See for example the statistics hosted by https://d1softball.com/)\nSuppose we are interested in tracking the statistics of players across multiple seasons. A common way to prep the data to do this is to use join statements to merge each season’s data into one table with one row per player (and columns associated with their different statistics for each season)." + "text": "In 2005 the National Hockey League added shootouts to regular season games. In the event that regulation time ends in a tie and no goals are scored in overtime, the game goes to a 3-player shootout. This data set can be used to explore the relationship between various team-level statistics.\nRegulation time in an NHL game consists of three 20 minute periods. If regulation time ends and the score is tied (both teams have the same number of goals), the game goes into a 5 minute 3-on-3 overtime, where the next goal wins. If the game is still not resolved after overtime, it goes into a 3 round shootout, where players take a 1-on-1 breakaway against the goalie. If still tied after three shootout rounds, shootout rounds continue until one team is victorious. A team gets 2 points for a win (whether it’s regulation, overtime, or shootout), and the losing team gets 0 points for a regulation loss, or 1 point for an overtime/shootout loss.", + "crumbs": [ + "Home", + "Hockey", + "NHL Team Statistics" + ] }, { - "objectID": "softball/softball_d1_2021-2022.html#motivation", - "href": "softball/softball_d1_2021-2022.html#motivation", - "title": "Batting Statistics for Division I Softball", + "objectID": "hockey/nhl_2223.html#motivation", + "href": "hockey/nhl_2223.html#motivation", + "title": "NHL Team Statistics", "section": "", - "text": "Data for a particular sport is often stored across numerous locations. For example, in NCAA Division I Softball, batting statistics for each season are typically stored in separate tables. (See for example the statistics hosted by https://d1softball.com/)\nSuppose we are interested in tracking the statistics of players across multiple seasons. A common way to prep the data to do this is to use join statements to merge each season’s data into one table with one row per player (and columns associated with their different statistics for each season)." + "text": "In 2005 the National Hockey League added shootouts to regular season games. In the event that regulation time ends in a tie and no goals are scored in overtime, the game goes to a 3-player shootout. This data set can be used to explore the relationship between various team-level statistics.\nRegulation time in an NHL game consists of three 20 minute periods. If regulation time ends and the score is tied (both teams have the same number of goals), the game goes into a 5 minute 3-on-3 overtime, where the next goal wins. If the game is still not resolved after overtime, it goes into a 3 round shootout, where players take a 1-on-1 breakaway against the goalie. If still tied after three shootout rounds, shootout rounds continue until one team is victorious. A team gets 2 points for a win (whether it’s regulation, overtime, or shootout), and the losing team gets 0 points for a regulation loss, or 1 point for an overtime/shootout loss.", + "crumbs": [ + "Home", + "Hockey", + "NHL Team Statistics" + ] }, { - "objectID": "softball/softball_d1_2021-2022.html#data", - "href": "softball/softball_d1_2021-2022.html#data", - "title": "Batting Statistics for Division I Softball", + "objectID": "hockey/nhl_2223.html#data", + "href": "hockey/nhl_2223.html#data", + "title": "NHL Team Statistics", "section": "Data", - "text": "Data\nThere are four data tables associated with this page.\nTwo of them, batting2021 and batting2022, contain statistics for all Division 1 Softball player who played in the 2021 and/or 2022 season.\nThe other two, batting2021_subset and batting2022_subset, represent non-random samples taken the full data and can be used to manually illustrate how to merge the tables.\nThe 2021 data set has 2131 rows with 22 columns. The 2022 data set has 2275 rows with the same 22 columns. Each row represents a Division 1 Softball player who played in the 2021 and/or 2022 season.\n\n\n\n\n\n\n\nVariable\nDescription\n\n\n\n\nPlayer\nName of the softball player\n\n\nTeam\nName of the team (school) for each player\n\n\nBA\nBatting Average - The ratio of a player’s total base hits to their total number of at-bats, indicating their ability to make successful hits.\n\n\nOBP\nOn-Base Percentage - The percentage of times a player reaches base, either through a hit, walk, or hit-by-pitch, out of their total plate appearances.\n\n\nSLG\nSlugging Percentage - The measure of a player’s power by calculating the total number of bases they accumulate per at-bat.\n\n\nOPS\nOn-Base Plus Slugging - The sum of a player’s on-base percentage and slugging percentage, providing a comprehensive measure of their offensive contribution.\n\n\nGP\nGames Played - The total number of games in which a player has participated.\n\n\nPA\nPlate Appearances - The total number of times a player has come up to bat, including at-bats, walks, and hit-by-pitches.\n\n\nAB\nAt-Bats - The number of times a player has officially faced a pitcher and had an opportunity to hit.\n\n\nR\nRuns Scored - The number of times a player has crossed home plate and scored a run.\n\n\nH\nHits - The total number of successful hits made by a player.\n\n\n2B\nDoubles - The number of hits resulting in the batter reaching second base.\n\n\n3B\nTriples - The number of hits resulting in the batter reaching third base.\n\n\nHR\nHome Runs - The number of hits resulting in the batter scoring a run by hitting the ball out of the park.\n\n\nRBI\nRuns Batted In - The number of runs a player has driven in with a hit or sacrifice.\n\n\nHBP\nHit by Pitch - The number of times a player has been struck by a pitched ball and awarded first base.\n\n\nBB\nWalks - The number of times a player has received a base on balls (four balls) and been awarded first base.\n\n\nK\nStrikeouts - The number of times a player has been called out after accumulating three strikes.\n\n\nSB\nStolen Bases - The number of times a player successfully advances to the next base without a hit, during a pitch while the ball is in play.\n\n\nCS\nCaught Stealing - The number of times a player is thrown out while attempting to steal a base.\n\n\n\n\nThe data tables are available for individual download as csv files or bundled together into either a SQLite or DuckDB database.\n\nbatting2021.csv\n\n\nbatting2022.csv\n\n\nbatting2021_subset.csv\n\n\nbatting2022_subset.csv\n\n\nsoftball_batting.sqlite\n\n\nsoftball_batting.duckdb" + "text": "Data\nThe data set contains the final standings of the 2022-2023 NHL Season with team level statistics.\n\nnhl_2223.csv\n\n\nVariable\nDescription\n\n\n\n\nTeam\nNHL team abbreviation\n\n\nGP\nTotal games played\n\n\nSOG\nNumber of games that went to shootout\n\n\nW\nWins\n\n\nL\nLosses\n\n\nOTL\nOvertime losses\n\n\nPTS\nPoints\n\n\nReg_PTS\nPoints won during regulation time or overtime (2 points per game)\n\n\nPPG\nPoints won per game in regulation time or overtime (# of non-shootout points / # of non-shootout games)\n\n\nSO_PTS\nPoints won from shootout (1 extra point per shootout)\n\n\nPct_SO\nProportion of possible points from shootout won (# of shootout points / # of shootout games)\n\n\nRW\nNumber of regulation wins\n\n\nROW\nNumber of regulation and overtime wins\n\n\nSOW\nNumber of shootout wins\n\n\nSOL\nNumber of shootout losses\n\n\nGF\nTotal goals scored\n\n\nGA\nTotal goals against\n\n\nDIFF\nGoal differential (GF-GA)", + "crumbs": [ + "Home", + "Hockey", + "NHL Team Statistics" + ] }, { - "objectID": "softball/softball_d1_2021-2022.html#questions", - "href": "softball/softball_d1_2021-2022.html#questions", - "title": "Batting Statistics for Division I Softball", + "objectID": "hockey/nhl_2223.html#questions", + "href": "hockey/nhl_2223.html#questions", + "title": "NHL Team Statistics", "section": "Questions", - "text": "Questions\n\nWith multiple seasons of data, you can investigate the different ways to join the the 2021 and 2022 statistics. (e.g., comparing the results of an inner join vs a full join) This can be done manually using subsets of data (to illustrate the joins with simple examples) or scaled up using the full data\nWith a single season/table, you can practice different data wrangling techniques. e.g., finding the league leaders in different categories" + "text": "Questions\n\nPlot GA versus GF. Describe the trend. Do teams that score more goals tend to allow more or less goals against?\nIs offensive ability (‘GF’) or defensive ability (‘GA’) a better predictor of overall performance of a team (as measured by ‘PTS’)?\nIs there a relationship between the ability to win shootouts (‘Pct_SO’) the ability to win games before shootouts (‘PPG’)?\nIs there a relationship between the total number of goals a team scored during the season (GF) and the proportion of shootout points they won (Pct_SO)?", + "crumbs": [ + "Home", + "Hockey", + "NHL Team Statistics" + ] }, { - "objectID": "softball/softball_d1_2021-2022.html#references", - "href": "softball/softball_d1_2021-2022.html#references", - "title": "Batting Statistics for Division I Softball", + "objectID": "hockey/nhl_2223.html#references", + "href": "hockey/nhl_2223.html#references", + "title": "NHL Team Statistics", "section": "References", - "text": "References\nStatistics. D1Softball. (2019, October 24). https://d1softball.com/statistics/" + "text": "References\nNHL Standings 2022-23. ESPN (n.d.). https://www.espn.com/nhl/standings/_/season/2023/group/league", + "crumbs": [ + "Home", + "Hockey", + "NHL Team Statistics" + ] }, { - "objectID": "triathlon/triathlon_lakeplacid_women_ironman.html", - "href": "triathlon/triathlon_lakeplacid_women_ironman.html", - "title": "Lake Placid Women’s Ironman Triathlon", + "objectID": "hockey/nhl-shots.html", + "href": "hockey/nhl-shots.html", + "title": "National Hockey League Shots", "section": "", - "text": "The motivation for this data analysis is to explore the relationships between swim times, bike times, and run times (in minutes) in order to gain insights into the performance patterns of the athletes. By analyzing these relationships, we can understand the interplay between different segments of the race and potentially identify areas of improvement for athletes." + "text": "The National Hockey League (NHL) is the top professional men’s hockey league in the world. The league records every shot players take along with contextual information about the shot such as its location, the player’s distance and angle to the goal when attempting the shot, as well as the outcome (blocked, missed, or goal). Using this information, the hockey analytics community have developed measures of shot quality known as expected goals. With this dataset, you can create your own expected goals model to predict the shot outcome given relevant features.", + "crumbs": [ + "Home", + "Hockey", + "National Hockey League Shots" + ] }, { - "objectID": "triathlon/triathlon_lakeplacid_women_ironman.html#motivation", - "href": "triathlon/triathlon_lakeplacid_women_ironman.html#motivation", - "title": "Lake Placid Women’s Ironman Triathlon", + "objectID": "hockey/nhl-shots.html#motivation", + "href": "hockey/nhl-shots.html#motivation", + "title": "National Hockey League Shots", "section": "", - "text": "The motivation for this data analysis is to explore the relationships between swim times, bike times, and run times (in minutes) in order to gain insights into the performance patterns of the athletes. By analyzing these relationships, we can understand the interplay between different segments of the race and potentially identify areas of improvement for athletes." + "text": "The National Hockey League (NHL) is the top professional men’s hockey league in the world. The league records every shot players take along with contextual information about the shot such as its location, the player’s distance and angle to the goal when attempting the shot, as well as the outcome (blocked, missed, or goal). Using this information, the hockey analytics community have developed measures of shot quality known as expected goals. With this dataset, you can create your own expected goals model to predict the shot outcome given relevant features.", + "crumbs": [ + "Home", + "Hockey", + "National Hockey League Shots" + ] }, { - "objectID": "triathlon/triathlon_lakeplacid_women_ironman.html#data", - "href": "triathlon/triathlon_lakeplacid_women_ironman.html#data", - "title": "Lake Placid Women’s Ironman Triathlon", + "objectID": "hockey/nhl-shots.html#data", + "href": "hockey/nhl-shots.html#data", + "title": "National Hockey League Shots", "section": "Data", - "text": "Data\nThe main data set has 489 rows with 17 columns. Each row represents a female who has participated in the Ironman in 2022. Additionally, a subset of 2022 female Canadian participants is available and has 64 rows.\n\n\n\n\n\n\n\nVariable\nDescription\n\n\n\n\nBib\nregistration number of each runner used for identification\n\n\nName\nThe participant’s name\n\n\nCountry\nWhat country the participant is from\n\n\nGender\nThe participant’s gender\n\n\nDivision\nThe age range or membership a runner is\n\n\nDivision.Rank\nWithin the divisions, the place each runner has obtained over all races\n\n\nOverall.Time\nThe total time it took to complete the Ironman in minutes\n\n\nOverall.Rank\nThe runner’s finishing place for that particular triathlon\n\n\nSwim.Time\nThe time in minutes it took to complete the swimming portion\n\n\nSwim.Rank\nThe place the runner finished for the swim portion\n\n\nBike.Time\nThe time in minutes it took to complete the biking portion\n\n\nBike.Rank\nThe place the runner finished for the bike portion\n\n\nRun.Time\nThe time in minutes it took to complete the running portion\n\n\nRun.Rank\nThe place the runner finished for the running portion\n\n\nFinish.Status\nStates whether someone completed the Ironman successfully\n\n\nLocation\nWhere the Ironman takes place\n\n\nYear\nThey year when the mentioned participant ran\n\n\n\n\n\n\n\nironman_lake_placid_female_2022.csv\n\n\nironman_lake_placid_female_2022_canadian.csv" + "text": "Data\nThis dataset contains information about 160,573 shots during the 2021-2022 NHL season.\nThe data was collected using the hockeyR package in R.\n\nnhl-shots-2021.csv.gz\n\n\nVariable\nDescription\n\n\n\n\ngame_id\nUnique integer identifier for game shot took place in\n\n\ndescription\nString detailed description of shot event\n\n\nshot_outcome\nString denoting the outcome of the shot, either BLOCKED_SHOT (meaning blocked by a non-goalie), GOAL, MISSED_SHOT (shot that missed the net), or SHOT (shot on net that was saved by a goalie)\n\n\nperiod\nInteger value of the game period\n\n\nperiod_seconds_remaining\nNumeric value of the seconds remaining in the period\n\n\ngame_seconds_remaining\nNumeric value of the seconds remaining in the game; negative for overtime periods\n\n\nhome_score\nInteger value of the home team score after the event\n\n\naway_score\nInteger value of the away team score after the event\n\n\nhome_name\nString name of the home team\n\n\naway_name\nString name of the away team\n\n\nevent_team\nString defining the team taking the shot\n\n\nevent_goalie_name\nString name of goalie (if in net)\n\n\nempty_net\nBoolean indicating if the shot was during an empty net situation, TRUE if so but FALSE or NA if not\n\n\nevent_player_1_name\nString name of the primary event player\n\n\nevent_player_1_type\nString indicator for the role of event_player_1 (typically the shooter)\n\n\nevent_player_2_name\nString name of the secondary event player\n\n\nevent_player_2_type\nString indicator for the role of event_player_2 (blocker, assist, or goalie)\n\n\nstrength_code\nString indicator for game strength: EV (Even), SH (Shorthanded), or PP (Power Play)\n\n\nx_fixed\nNumeric transformed x-coordinate of event in feet, where the home team always shoots to the right, away team to the left\n\n\ny_fixed\nNumeric transformed y-coordinate of event in feet, where the home team always shoots to the right, away team to the left\n\n\nshot_distance\nNumeric distance (in feet) to center of net for unblocked shot events\n\n\nshot_angle\nNumeric angle (in degrees) to center of net for unlocked shot events", + "crumbs": [ + "Home", + "Hockey", + "National Hockey League Shots" + ] }, { - "objectID": "triathlon/triathlon_lakeplacid_women_ironman.html#questions", - "href": "triathlon/triathlon_lakeplacid_women_ironman.html#questions", - "title": "Lake Placid Women’s Ironman Triathlon", + "objectID": "hockey/nhl-shots.html#questions", + "href": "hockey/nhl-shots.html#questions", + "title": "National Hockey League Shots", "section": "Questions", - "text": "Questions\n\nWith the different times and rank variables, you can explore the relationships between them through things like correlation coefficients and linear regression.\nOther things like finding the best variables at predicting a runner’s overall rank in a race and then even a division rank would be easy to model using this data set." + "text": "Questions\n\nBuild a logistic regression model to predict whether or not the shot will result in a goal based on the shot distance and angle.\nBuild a classification model to predict the outcome based on the spatial x,y coordinates of the shot.\nCreate a visualization displaying the joint frequency of shot locations. Do there appear to be any clear modes of frequently taken shots? Create a conditional version of this display by shot outcome. Does the distribution shape vary by shot outcome? (You can also perform a similar analysis by team).", + "crumbs": [ + "Home", + "Hockey", + "National Hockey League Shots" + ] }, { - "objectID": "triathlon/triathlon_lakeplacid_women_ironman.html#score-modules", - "href": "triathlon/triathlon_lakeplacid_women_ironman.html#score-modules", - "title": "Lake Placid Women’s Ironman Triathlon", - "section": "SCORE Modules", - "text": "SCORE Modules\nThe following SCORE modules are associated with these data.\n\nIronman Triathlons - Correlations" - }, - { - "objectID": "triathlon/triathlon_lakeplacid_women_ironman.html#references", - "href": "triathlon/triathlon_lakeplacid_women_ironman.html#references", - "title": "Lake Placid Women’s Ironman Triathlon", + "objectID": "hockey/nhl-shots.html#references", + "href": "hockey/nhl-shots.html#references", + "title": "National Hockey League Shots", "section": "References", - "text": "References\nIronman Lake Placid Results and articles. CoachCox. (n.d.). https://www.coachcox.co.uk/imstats/series/13/" + "text": "References\nMorse D (2023). hockeyR: Collect and Clean Hockey Stats. R package version 1.3.1, https://github.com/danmorse314/hockeyR.", + "crumbs": [ + "Home", + "Hockey", + "National Hockey League Shots" + ] }, { - "objectID": "football/nfl-team-statistics.html", - "href": "football/nfl-team-statistics.html", - "title": "National Football League Team Statistics", + "objectID": "soccer/nwsl-team-stats.html", + "href": "soccer/nwsl-team-stats.html", + "title": "National Women’s Soccer League Team Statistics", "section": "", - "text": "The National Football League (NFL) is the top professional American football league in the world. While a team’s record ultimately determines whether or not they make the playoffs, their score differential (points for - points against) is often a better indicator of a team’s ability. But what aspects of a team’s performance are related to their point differential? Is passing more important than rushing? What about offense in comparison to defense? The NFL records a variety of statistics, and the public NFL analytics community have developed advanced metrics such as expected points added (EPA) that provide deeper insight into a team’s performance. With this dataset of statistics dating back to 1999, you can explore variation between teams since as well as which types of statistics are relevant predictor variables of record and point differential." + "text": "The National Women’s Soccer League (NWSL) is the top professional women’s soccer league in the United States. While a team’s record ultimately determines their ranking, goal differential (goals scored - goals conceded) is often a better indicator of a team’s ability. But what aspects of a team’s performance are related to their goal differential? The NWSL records a variety of statistics describing a team’s performance, such as the percentage of time they maintain possession, percentage of shots on target, etc. With this dataset, you can explore variation between teams as well as which statistics are relevant predictor variables of goal differential.", + "crumbs": [ + "Home", + "Soccer", + "National Women’s Soccer League Team Statistics" + ] }, { - "objectID": "football/nfl-team-statistics.html#motivation", - "href": "football/nfl-team-statistics.html#motivation", - "title": "National Football League Team Statistics", + "objectID": "soccer/nwsl-team-stats.html#motivation", + "href": "soccer/nwsl-team-stats.html#motivation", + "title": "National Women’s Soccer League Team Statistics", "section": "", - "text": "The National Football League (NFL) is the top professional American football league in the world. While a team’s record ultimately determines whether or not they make the playoffs, their score differential (points for - points against) is often a better indicator of a team’s ability. But what aspects of a team’s performance are related to their point differential? Is passing more important than rushing? What about offense in comparison to defense? The NFL records a variety of statistics, and the public NFL analytics community have developed advanced metrics such as expected points added (EPA) that provide deeper insight into a team’s performance. With this dataset of statistics dating back to 1999, you can explore variation between teams since as well as which types of statistics are relevant predictor variables of record and point differential." + "text": "The National Women’s Soccer League (NWSL) is the top professional women’s soccer league in the United States. While a team’s record ultimately determines their ranking, goal differential (goals scored - goals conceded) is often a better indicator of a team’s ability. But what aspects of a team’s performance are related to their goal differential? The NWSL records a variety of statistics describing a team’s performance, such as the percentage of time they maintain possession, percentage of shots on target, etc. With this dataset, you can explore variation between teams as well as which statistics are relevant predictor variables of goal differential.", + "crumbs": [ + "Home", + "Soccer", + "National Women’s Soccer League Team Statistics" + ] }, { - "objectID": "football/nfl-team-statistics.html#data", - "href": "football/nfl-team-statistics.html#data", - "title": "National Football League Team Statistics", + "objectID": "soccer/nwsl-team-stats.html#data", + "href": "soccer/nwsl-team-stats.html#data", + "title": "National Women’s Soccer League Team Statistics", "section": "Data", - "text": "Data\nThis dataset contains statistics about the regular season performance for each NFL team from 1999 to 2022 team. The data was collected using the nflreadr package in R.\nEach row in the dataset corresponds to a single NFL team in a single regular season. There are a total of 765 team-seasons, with 56 total columns. The column names are organized below by the type of information they contain, with the first set of columns being self-explanatory:\n\nnfl-team-statistics.csv\n\n\nVariable\nDescription\n\n\n\n\nseason\nRegular season year of team’s statistics\n\n\nteam\nNFL team three letter abbreviation\n\n\n\nThere are also columns with season level outcomes:\n\n\n\nVariable\nDescription\n\n\n\n\npoints_score\nTotal number of points scored by the team\n\n\npoints_allowed\nTotal number of points allowed by the team\n\n\nwins\nNumber of games the team won\n\n\nlosses\nNumber of games the team lost\n\n\nties\nNumber of games the team tied\n\n\nscore_differential\npoints scored - points allowed\n\n\n\nThere are also several columns corresponding to offensive and defensive summaries of the team’s performance in the season separated by play type (either pass or run):\n\n\n\n\n\n\n\nVariable\nDescription\n\n\n\n\noffense/defense_completion_percentage\nPassing completion percentage either for (offense) or against (defense)\n\n\noffense/defense_total_yards_gained_pass/run\nTotal number of yards gained (offense) or allowed (defense) by play type (pass or run)\n\n\noffense/defense_ave_yards_gained_pass/run\nAverage number of yards gained (offense) or allowed (defense) per play by play type (pass or run)\n\n\noffense/defense_total_air_yards\nTotal number of air yards gained (offense) or allowed (defense), where air yards correspond to perpendicular yards traveled from the line of scrimmage to location of catch for passing plays\n\n\noffense/defense_ave_air_yards\nAverage number of air yards gained (offense) or allowed (defense) per passing play\n\n\noffense/defense_total_yac\nTotal number of yards after catch gained (offense) or allowed (defense)\n\n\noffense/defense_ave_yac\nAverage number of yards after catch gained (offense) or allowed (defense) per passing play\n\n\noffense/defense_n_plays_pass/run\nTotal number of plays by the team (offense) or against (defense) by play type (pass or run)\n\n\noffense/defense_n_interceptions\nTotal number of interceptions thrown (offense) or caught (defense)\n\n\noffense/defense/n_fumbles_lost_pass/run\nTotal number of fumbles lost (offense) or forced (defense) by play type (pass or run)\n\n\noffense/defense_total_epa_pass/run\nTotal expected points added (offense) or allowed (defense) by play type (pass or run)\n\n\noffense/defense_ave_epa_pass/run\nAverage expected points added (offense) or allowed (defense) per play by play type (pass or run)\n\n\noffense/defense_total_wpa_pass/run\nTotal win probability added (offense) or allowed (defense) by play type (pass or run)\n\n\noffense/defense_ave_wpa_pass/run\nAverage win probability added (offense) or allowed (defense) per play by play type (pass or run)\n\n\noffense/defense_total_epa_pass/run\nTotal expected points added (offense) or allowed (defense) by play type (pass or run)\n\n\noffense/defense_success_rate_pass/run\nProportion of plays with positive expected points added (offense) or allowed (defense) by play type (pass or run)\n\n\n\nThe EPA variables are advanced NFL statistics, conveying how much value a team is adding over the average team in a given situation. It’s on a points scale instead of the typically used yards, because not all yards are created equal in American football (10 yard gain on 3rd and 15 is much less valuable than a 2 yard gain on 4th and 1). For offensive stats the higher the EPA the better, but for defensive stats the lower (more negative) the EPA the better. The WPA variables are similar except they are measuring play value in terms of win probability." + "text": "Data\nThis dataset contains statistics about the regular season performance for each NWSL team from 2016 to 2022 (excluding 2020 which was cancelled due to COVID).\nThe data was collected using the nwslR package in R.\n\nnwsl-team-stats.csv\n\n\nVariable\nDescription\n\n\n\n\nteam_name\nName of NWSL team\n\n\nseason\nRegular season year of team’s statistics\n\n\ngames_played\nNumber of games team played in season\n\n\ngoal_differential\nGoals scored - goals conceded\n\n\ngoals\nNumber of goals scores\n\n\ngoals_conceded\nNumber of goals conceded\n\n\ncross_accuracy\nPercent of crosses that were successful\n\n\ngoal_conversion_pct\nPercent of shots scored\n\n\npass_pct\nPass accuracy\n\n\npass_pct_opposition_half\nPass accuracy in opposition half\n\n\npossession_pct\nPercentage of overall ball possession the team had during the season\n\n\nshot_accuracy\nPercentage of shots on target\n\n\ntackle_success_pct\nPercent of successful tackles", + "crumbs": [ + "Home", + "Soccer", + "National Women’s Soccer League Team Statistics" + ] }, { - "objectID": "football/nfl-team-statistics.html#questions", - "href": "football/nfl-team-statistics.html#questions", - "title": "National Football League Team Statistics", + "objectID": "soccer/nwsl-team-stats.html#questions", + "href": "soccer/nwsl-team-stats.html#questions", + "title": "National Women’s Soccer League Team Statistics", "section": "Questions", - "text": "Questions\n\nBuild a linear regression model to predict score differential as a function of the team’s statistics. Which variables, if any, are predictive of score differential in a season? Are certain types of variables more predictive? (e.g., passing versus rushing,) Describe their relationships.\nUsing principal component analysis, project the team seasons into a lower dimensional space using only the team statistics that do not include points or record. Choose an appropriate number of principal components, and describe which statistics contribute to your selected number of components. Based on your results, which team statistics explain the most variation between team-seasons in the dataset? Which team statistics are independent of each other?" + "text": "Questions\n\nBuild a linear regression model to predict goal differential as a function of the team’s statistics. Which variables, if any, are predictive of a team’s goal differential in a season? Describe their relationships.\nUsing principal component analysis, project the team seasons into a lower dimensional space using only the team statistics that do not include goals scored or conceded. Choose an appropriate number of principal components, and describe which statistics contribute to your selected number of components. Based on your results, which team statistics explain the most variation between team-seasons in the dataset? Which team statistics are independent of each other?", + "crumbs": [ + "Home", + "Soccer", + "National Women’s Soccer League Team Statistics" + ] }, { - "objectID": "football/nfl-team-statistics.html#references", - "href": "football/nfl-team-statistics.html#references", - "title": "National Football League Team Statistics", + "objectID": "soccer/nwsl-team-stats.html#references", + "href": "soccer/nwsl-team-stats.html#references", + "title": "National Women’s Soccer League Team Statistics", "section": "References", - "text": "References\nHo T, Carl S (2022). nflreadr: Download ‘nflverse’ Data. R package version 1.3.1, https://CRAN.R-project.org/package=nflreadr." + "text": "References\nDror A (2023). nwslR: Compiles dataset for the National Women’s Soccer League (NWSL). R package version 0.0.0.9001.", + "crumbs": [ + "Home", + "Soccer", + "National Women’s Soccer League Team Statistics" + ] }, { "objectID": "soccer/soccer-heights.html", "href": "soccer/soccer-heights.html", "title": "Soccer Heights", "section": "", - "text": "A researcher wants to investigate whether there are differences among the mean height for different positions (Goalkeeper, Defender, Midfield, Attack, or Missing) of soccer players. Goalkeepers are typically thought to be taller than other positions to make up in wingspan to cover the goal better. The dataset contains information on each player including their name, position, preferred foot, and height. For this analysis, only the position and height of the player will be used. A sample of 20 players was taken from each position for this analysis." + "text": "A researcher wants to investigate whether there are differences among the mean height for different positions (Goalkeeper, Defender, Midfield, Attack, or Missing) of soccer players. Goalkeepers are typically thought to be taller than other positions to make up in wingspan to cover the goal better. The dataset contains information on each player including their name, position, preferred foot, and height. For this analysis, only the position and height of the player will be used. A sample of 20 players was taken from each position for this analysis.", + "crumbs": [ + "Home", + "Soccer", + "Soccer Heights" + ] }, { "objectID": "soccer/soccer-heights.html#motivation", "href": "soccer/soccer-heights.html#motivation", "title": "Soccer Heights", "section": "", - "text": "A researcher wants to investigate whether there are differences among the mean height for different positions (Goalkeeper, Defender, Midfield, Attack, or Missing) of soccer players. Goalkeepers are typically thought to be taller than other positions to make up in wingspan to cover the goal better. The dataset contains information on each player including their name, position, preferred foot, and height. For this analysis, only the position and height of the player will be used. A sample of 20 players was taken from each position for this analysis." + "text": "A researcher wants to investigate whether there are differences among the mean height for different positions (Goalkeeper, Defender, Midfield, Attack, or Missing) of soccer players. Goalkeepers are typically thought to be taller than other positions to make up in wingspan to cover the goal better. The dataset contains information on each player including their name, position, preferred foot, and height. For this analysis, only the position and height of the player will be used. A sample of 20 players was taken from each position for this analysis.", + "crumbs": [ + "Home", + "Soccer", + "Soccer Heights" + ] }, { "objectID": "soccer/soccer-heights.html#data", "href": "soccer/soccer-heights.html#data", "title": "Soccer Heights", "section": "Data", - "text": "Data\nEach row of data gives gives information for one of 100 soccer players in the sample with 20 players at each of five positions for a total sample size of 100.\n\n\n\nVariable\nDescription\n\n\n\n\nname\nName of the player\n\n\nposition\nPlayer’s current position\n\n\nfoot\nPlayer’s preferred foot\n\n\nheight_in_cm\nPlayer’s height (in cm)\n\n\n\nsoccer_heights_sample.csv" + "text": "Data\nEach row of data gives gives information for one of 100 soccer players in the sample with 20 players at each of five positions for a total sample size of 100.\n\n\n\nVariable\nDescription\n\n\n\n\nname\nName of the player\n\n\nposition\nPlayer’s current position\n\n\nfoot\nPlayer’s preferred foot\n\n\nheight_in_cm\nPlayer’s height (in cm)\n\n\n\nsoccer_heights_sample.csv", + "crumbs": [ + "Home", + "Soccer", + "Soccer Heights" + ] }, { "objectID": "soccer/soccer-heights.html#questions", "href": "soccer/soccer-heights.html#questions", "title": "Soccer Heights", "section": "Questions", - "text": "Questions\n\nWhat are the mean heights for each position?\nTest to see if there is evidence of a discernible difference in mean height among the five positions.\nWhich pairs of positions appear to have a discernible difference in mean height?" + "text": "Questions\n\nWhat are the mean heights for each position?\nTest to see if there is evidence of a discernible difference in mean height among the five positions.\nWhich pairs of positions appear to have a discernible difference in mean height?", + "crumbs": [ + "Home", + "Soccer", + "Soccer Heights" + ] }, { "objectID": "soccer/soccer-heights.html#references", "href": "soccer/soccer-heights.html#references", "title": "Soccer Heights", "section": "References", - "text": "References\nThe data was subsetted from the data.world website" - }, - { - "objectID": "basketball/nba-player-stats.html", - "href": "basketball/nba-player-stats.html", - "title": "National Basketball Association Player Statistics", - "section": "", - "text": "The National Basketball Association (NBA) is the top men’s professional basketball league in the world. While players have predefined positions, the sport is becoming increasingly positionless - with centers attempting more three point shots and guards driving the ball inside to dunk. With this dataset, you can explore clustering NBA players based on various types of statistics and compare your players labels to the predefined positions." - }, - { - "objectID": "basketball/nba-player-stats.html#motivation", - "href": "basketball/nba-player-stats.html#motivation", - "title": "National Basketball Association Player Statistics", - "section": "", - "text": "The National Basketball Association (NBA) is the top men’s professional basketball league in the world. While players have predefined positions, the sport is becoming increasingly positionless - with centers attempting more three point shots and guards driving the ball inside to dunk. With this dataset, you can explore clustering NBA players based on various types of statistics and compare your players labels to the predefined positions." - }, - { - "objectID": "basketball/nba-player-stats.html#data", - "href": "basketball/nba-player-stats.html#data", - "title": "National Basketball Association Player Statistics", - "section": "Data", - "text": "Data\nThis dataset contains statistics about 812 player-team stints for during the 2021-2022 NBA regular season. For players that played for \\(T\\) teams during the season (due to trade), there are \\(T+1\\) rows with one row for their performance with each of the \\(T\\) teams and another row indicating their total performance (where tm = TOT) across the full season regardless of team. The counting stats are reported on a per 100 team possessions scale, to normalize for playing time differences.\nThe data was collected using the ballr package in R., which gathers data from basketball-reference.com.\n\nnba-player-stats.csv\n\n\nVariable\nDescription\n\n\n\n\nplayer\nName of player\n\n\npos\nPlayer’s designated position\n\n\nage\nPlayer’s age on February 1st of the season\n\n\ntm\nName of team\n\n\ng\nNumber of games\n\n\ngs\nNumber of games started\n\n\nmp\nNumber of minutes played\n\n\nfg\nField goals per 100 team possessions\n\n\nfga\nField goal attempts per 100 team possessions\n\n\nfgpercent\nField goal percentage\n\n\nx3p\n3 point field goals per 100 team possessions\n\n\nx3pa\n3 point field goal attempts per 100 team possessions\n\n\nx3ppercent\n3 point field goal percentage\n\n\nx2p\n2 point field goals per 100 team possessions\n\n\nx2pa\n2 point field goal attempts per 100 team possessions\n\n\nx2ppercent\n2 point field goal percentage\n\n\nft\nFree throws per 100 team possessions\n\n\nfta\nFree throw attempts per 100 team possessions\n\n\nftpercent\nFree throw percentage\n\n\norb\nOffensive rebounds per 100 team possessions\n\n\ndrb\nDefensive rebounds per 100 team possessions\n\n\ntrb\nTotal rebounds per 100 team possessions\n\n\nast\nAssists per 100 team possessions\n\n\nstl\nSteals per 100 team possessions\n\n\nblk\nBlocks per 100 team possessions\n\n\ntov\nTurnovers per 100 team possessions\n\n\npf\nPersonal fouls per 100 team possessions\n\n\npts\nPoints per 100 team possessions\n\n\nortg\nOffensive Rating - an estimate of points produced per 100 possessions scale\n\n\ndrtg\nDefensive Rating - an estimate of points allowed per 100 possessions scale" - }, - { - "objectID": "basketball/nba-player-stats.html#questions", - "href": "basketball/nba-player-stats.html#questions", - "title": "National Basketball Association Player Statistics", - "section": "Questions", - "text": "Questions\n\nApply a clustering technique using the player statistics to create new labels for the types of NBA players, and compare to their known position labels. Compare and contrast your data-defined roles to the traditional basketball positions.\nUsing principal component analysis, project the players into a lower dimensional space. Choose an appropriate number of principal components, and describe which statistics contribute to your selected number of components. Based on your results, which player statistics explain the most variation between players in the dataset? Which stats are independent of each other?" - }, - { - "objectID": "basketball/nba-player-stats.html#references", - "href": "basketball/nba-player-stats.html#references", - "title": "National Basketball Association Player Statistics", - "section": "References", - "text": "References\nElmore R (2020). ballr: Access to Current and Historical Basketball Data. R package version 0.2.6." + "text": "References\nThe data was subsetted from the data.world website", + "crumbs": [ + "Home", + "Soccer", + "Soccer Heights" + ] }, { - "objectID": "tennis/wta-grand-slam-matches.html", - "href": "tennis/wta-grand-slam-matches.html", - "title": "WTA Grand Slam Matches", + "objectID": "tennis/australian-open.html", + "href": "tennis/australian-open.html", + "title": "Australian Open Tennis (2008-2022)", "section": "", - "text": "The Women’s Tennis Associate (WTA) organizes the top women’s professional tennis tour in the world. Throughout the year, there are four major tournaments yielding the most ranking points, prize money, and fame. These are known as the Grand Slam tournaments, consisting of (in order): Australian Open, French Open (aka Roland Garros), Wimbledon, and the US Open. With this dataset of information about winners and losers in WTA Grand Slam matches from 2018 to 2022, you’ll be able to explore statistics collected during matches and information about the athletes to predict match outcomes." + "text": "The Australian Open is an annual tennis tournament in Melbourne, Australia. We have data from the men’s tournament in the years 2008-2022, with variables for both the winner and loser of each match, along with information such as what hand they play with and their Association of Tennis Professionals (ATP) rank and characteristics of the players. Which characteristics might help predict the outcome of the matches?", + "crumbs": [ + "Home", + "Tennis", + "Australian Open Tennis (2008-2022)" + ] }, { - "objectID": "tennis/wta-grand-slam-matches.html#motivation", - "href": "tennis/wta-grand-slam-matches.html#motivation", - "title": "WTA Grand Slam Matches", + "objectID": "tennis/australian-open.html#motivation", + "href": "tennis/australian-open.html#motivation", + "title": "Australian Open Tennis (2008-2022)", "section": "", - "text": "The Women’s Tennis Associate (WTA) organizes the top women’s professional tennis tour in the world. Throughout the year, there are four major tournaments yielding the most ranking points, prize money, and fame. These are known as the Grand Slam tournaments, consisting of (in order): Australian Open, French Open (aka Roland Garros), Wimbledon, and the US Open. With this dataset of information about winners and losers in WTA Grand Slam matches from 2018 to 2022, you’ll be able to explore statistics collected during matches and information about the athletes to predict match outcomes." + "text": "The Australian Open is an annual tennis tournament in Melbourne, Australia. We have data from the men’s tournament in the years 2008-2022, with variables for both the winner and loser of each match, along with information such as what hand they play with and their Association of Tennis Professionals (ATP) rank and characteristics of the players. Which characteristics might help predict the outcome of the matches?", + "crumbs": [ + "Home", + "Tennis", + "Australian Open Tennis (2008-2022)" + ] }, { - "objectID": "tennis/wta-grand-slam-matches.html#data", - "href": "tennis/wta-grand-slam-matches.html#data", - "title": "WTA Grand Slam Matches", + "objectID": "tennis/australian-open.html#data", + "href": "tennis/australian-open.html#data", + "title": "Australian Open Tennis (2008-2022)", "section": "Data", - "text": "Data\nThis dataset contains all WTA matches between 2018 and 2022, courtesy of Jeff Sackmann’s famous tennis repository.\nThere are 2,413 rows in this dataset where each row corresponds to a single WTA Grand Slam match. Each row has 38 columns with general information about the matches, as well as columns describing the winner and loser of the matches:\n\nwta-grand-slam-matches-2018to2022.csv\n\n\nVariable\nDescription\n\n\n\n\ntourney_name\nname of the Grand Slam Tournament (French Open is recorded as ROLAND GARROS)\n\n\nsurface\ntype of court surface\n\n\ntourney_date\neight digits, YYYYMMDD, usually the Monday of the tournament week\n\n\nwinner/loser_seed\nseed of winning/losing player\n\n\nwinner/loser_name\nName of the winning/losing player\n\n\nwinner/loser_hand\nR = right, L = left, U = unknown. For ambidextrous players, this is their serving hand\n\n\nwinner/loser_ht\nheight in centimeters, where available\n\n\nwinner/loser_ioc\nthree-character country code\n\n\nwinner/loser_age\nage, in years, as of the tourney_date\n\n\nscore\nfinal match score\n\n\nround\ntournament round\n\n\nminutes\nmatch length in minutes\n\n\nw/l_ace\nwinner/loser’s number of aces\n\n\nw/l_df\nwinner/loser’s number of doubles faults\n\n\nw/l_svpt\nwinner/loser’s number of serve points\n\n\nw/l_1stIn\nwinner/loser’s number of first serves made\n\n\nw/l_1stWon\nwinner/loser’s number of first-serve points won\n\n\nw/l_2ndWon\nwinner/loser’s number of second-serve points won\n\n\nw/l_SvGms\nwinner/loser’s number of serve games\n\n\nw/l_bpSaved\nwinner/loser’s number of break points saved\n\n\nw/l_bpFaced\nwinner/loser’s number of break points faced\n\n\nwinner/loser_rank\nwinner/loser’s WTA rank, as of the tourney_date, or the most recent ranking date before the tourney_date\n\n\n\nNote that a full glossary of the features available for match data can be found here." + "text": "Data\nEach row of data gives 19 variables of information for one of the 1905 Men’s Australian Open matches played between 2008 and 2022.\n\nAustralianOpen.csv\n\n\nVariable\nDescription\n\n\n\n\nYear\nYear (2008-2022)\n\n\nWinner\nwinner of the match\n\n\nLoser\nloser of the match\n\n\nWRank\nwinning player’s rank\n\n\nLRank\nlosing player’s rank\n\n\npl1_flag\nwinning player’s country they choose to represent\n\n\npl1_year_pro\nwinning player’s first year as a professional\n\n\npl1_weight\nwinning player’s weight in kilograms\n\n\npl1_height\nwinning player’s height in centimeters\n\n\npl1_hand\nwinning player’s handedness that they play with\n\n\npl2_flag\nlosing player’s country they choose to represent\n\n\npl2_year_pro\nlosing player’s first year as a professional\n\n\npl2_weight\nlosing player’s weight in kilograms\n\n\npl2_height\nlosing player’s height in centimeters\n\n\npl2_hand\nlosing player’s handedness that they play with\n\n\nhigher_rank_won\nDid the higher rank win? Yes orNo\n\n\nrank_diff\ndifference in rank between the players\n\n\nrank_diff_cat\ncategroies for difference in rank between the players: Low (30 or less), Medium (31-75), High (more than 75)\n\n\nsame_handedness\nDo the players have the same handedness? Yes or No\n\n\n\n: AustralianOpenLater.csv has the same variables (with the addition of a Round variable), but only for 105 matches from the quarterfinals, semifinals, and finals each year.", + "crumbs": [ + "Home", + "Tennis", + "Australian Open Tennis (2008-2022)" + ] }, { - "objectID": "tennis/wta-grand-slam-matches.html#questions", - "href": "tennis/wta-grand-slam-matches.html#questions", - "title": "WTA Grand Slam Matches", + "objectID": "tennis/australian-open.html#questions", + "href": "tennis/australian-open.html#questions", + "title": "Australian Open Tennis (2008-2022)", "section": "Questions", - "text": "Questions\n\nAfter performing the appropriate data wrangling, build a logistic regression model to predict whether or not the seed favorite wins the match based on the athlete information and recorded match statistics. Which variables, if any, are predictive of the match outcome? Describe their relationships.\nChoose an athlete of interest, e.g., Serena Williams. Create a new dataset where the columns describe the performance of that athlete in each particular match. Explore how the different match information and statistics correspond to whether or not the athlete is able to win the match.\nExplore the relationship between court surface and the various observed match statistics. This could be done by clustering matches based on the winner and loser statistics, and see how well aligned they are with the court surface type or Grand Slam event." + "text": "Questions\n\nWhat proportion of time does the higher (ATP) rank player win?\nDoes the proportion of higher ranked wins change much when the players play with opposite hands (i.e. a right-handed player vs. a left-handed payer)\nConstruct a two-way table of higher_rank_won vs. rank_diff_cat and see if teh two variables appear to be related.\nInvestigate a logistic regression model to predict it the higher ranked player wins using the difference in ranks as the predictor.\nAre the results for any of these questions much different if we consider only matches in the later rounds for the tournament (quarterfinals, semifinals, and finals) in AustralianOpenLater.csv?", + "crumbs": [ + "Home", + "Tennis", + "Australian Open Tennis (2008-2022)" + ] }, { - "objectID": "tennis/wta-grand-slam-matches.html#references", - "href": "tennis/wta-grand-slam-matches.html#references", - "title": "WTA Grand Slam Matches", + "objectID": "tennis/australian-open.html#references", + "href": "tennis/australian-open.html#references", + "title": "Australian Open Tennis (2008-2022)", "section": "References", - "text": "References\nData was accessed from Jeff Sackmann’s tennis GitHub repository." + "text": "References\nThe data are a subset of the data found at Kaggle.", + "crumbs": [ + "Home", + "Tennis", + "Australian Open Tennis (2008-2022)" + ] }, { "objectID": "submit-data.html", "href": "submit-data.html", "title": "Submit a Dataset", "section": "", - "text": "The goal of this repository is to provide a collection of relevant and engaging sports datasets to be used in class, handouts, assignments, projects, and SCORE modules. We are always looking for new datasets and welcome public submissions, but these datasets will need to meet the following requirements:" + "text": "The goal of this repository is to provide a collection of relevant and engaging sports datasets to be used in class, handouts, assignments, projects, and SCORE modules. We are always looking for new datasets and welcome public submissions, but these datasets will need to meet the following requirements:", + "crumbs": [ + "Home", + "Submit a Dataset" + ] }, { "objectID": "submit-data.html#two-ways-to-submit-a-dataset", "href": "submit-data.html#two-ways-to-submit-a-dataset", "title": "Submit a Dataset", "section": "Two ways to submit a dataset", - "text": "Two ways to submit a dataset\nThere are two ways to contribute a dataset:\n\nSubmit a dataset with the necessary information using this Google form. This is the recommended option for contributors who are not experienced with quarto or Rmarkdown files. The form will describe what information is necessary for us to create the appropriate page for your submitted dataset.\nFill out a quarto template file with the dataset information, and then submit either via email or directly with a GitHub pull request.\n\n\nThe rest of this page includes information about submitting a dataset using the quarto template file." + "text": "Two ways to submit a dataset\nThere are two ways to contribute a dataset:\n\nSubmit a dataset with the necessary information using this Google form. This is the recommended option for contributors who are not experienced with quarto or Rmarkdown files. The form will describe what information is necessary for us to create the appropriate page for your submitted dataset.\nFill out a quarto template file with the dataset information, and then submit either via email or directly with a GitHub pull request.\n\n\nThe rest of this page includes information about submitting a dataset using the quarto template file.", + "crumbs": [ + "Home", + "Submit a Dataset" + ] }, { "objectID": "submit-data.html#quarto-template-file-submission-steps", "href": "submit-data.html#quarto-template-file-submission-steps", "title": "Submit a Dataset", "section": "Quarto template file submission steps", - "text": "Quarto template file submission steps\nThis data repository is built using quarto and rendered into a website. You can get the template file in two ways:\n\nCopy the _dataset-template.qmd file from our GitHub repository and save it on your computer. Once you’re done, you can email us the file and the data (see below for email address).\nFork our GitHub repository into your own GitHub account and edit it like any other Git repository. Once you’re done, you can submit a pull request.\n\n\nDataset template\nThe dataset template is a Quarto file. The template asks for:\n\nBasic metadata to tag the dataset, such as the statistics & data science topic, a short title, and your name. (All submissions are credited with the name of the submitter.)\nA description of the sports question to motivate analysis with the dataset.\nA description of the dataset with documentation about each variable. The file should make it clear what a single row of the dataset represents, and clearly describe each of the variables (including units of measure when relevant).\nReferences to the original source of the data. If the source is a code package, then include an appropriate citation with a link to the package. If the source is an academic paper and the data is deposited in a third-party repository (e.g., Figshare), then include references to both the paper and the archived dataset. When available, include the DOIs of the references.\n\nThe template is meant to prevent a common problem with course datasets: they get passed down from instructor to instructor, and eventually all information about the original source is lost. The dataset may be presented to students without context or important details (like units), and the instructor may not be able to find the original data or references to answer questions about the data.\n\n\nSubmitting template file\nOnce you’ve filled in the template, you can either:\n\nEmail the template file, the data, and any code for preparing the data to the repository editor (currently Ron Yurko: ryurko AT stat DOT cmu DOT edu).\nSubmit a pull request to our repository on GitHub. Save the Qmd with a meaningful name and place it in its relevant sports directory (e.g., baseball/ or tennis/). Place the data files in data/. Place any code to prepare the data in the _prep/ folder, inside another folder with a name matching the submitted dataset. Once you’ve committed all of the necessary files (without anything extraneous) then you can submit a pull request." + "text": "Quarto template file submission steps\nThis data repository is built using quarto and rendered into a website. You can get the template file in two ways:\n\nCopy the _dataset-template.qmd file from our GitHub repository and save it on your computer. Once you’re done, you can email us the file and the data (see below for email address).\nFork our GitHub repository into your own GitHub account and edit it like any other Git repository. Once you’re done, you can submit a pull request.\n\n\nDataset template\nThe dataset template is a Quarto file. The template asks for:\n\nBasic metadata to tag the dataset, such as the statistics & data science topic, a short title, and your name. (All submissions are credited with the name of the submitter.)\nA description of the sports question to motivate analysis with the dataset.\nA description of the dataset with documentation about each variable. The file should make it clear what a single row of the dataset represents, and clearly describe each of the variables (including units of measure when relevant).\nReferences to the original source of the data. If the source is a code package, then include an appropriate citation with a link to the package. If the source is an academic paper and the data is deposited in a third-party repository (e.g., Figshare), then include references to both the paper and the archived dataset. When available, include the DOIs of the references.\n\nThe template is meant to prevent a common problem with course datasets: they get passed down from instructor to instructor, and eventually all information about the original source is lost. The dataset may be presented to students without context or important details (like units), and the instructor may not be able to find the original data or references to answer questions about the data.\n\n\nSubmitting template file\nOnce you’ve filled in the template, you can either:\n\nEmail the template file, the data, and any code for preparing the data to the repository editor (currently Ron Yurko: ryurko AT stat DOT cmu DOT edu).\nSubmit a pull request to our repository on GitHub. Save the Qmd with a meaningful name and place it in its relevant sports directory (e.g., baseball/ or tennis/). Place the data files in data/. Place any code to prepare the data in the _prep/ folder, inside another folder with a name matching the submitted dataset. Once you’ve committed all of the necessary files (without anything extraneous) then you can submit a pull request.", + "crumbs": [ + "Home", + "Submit a Dataset" + ] }, { - "objectID": "hockey/nhl_powerplay.html", - "href": "hockey/nhl_powerplay.html", - "title": "NHL Team Power Play Perfomance in 2022-2023", + "objectID": "wrestling/sumo_wrestingling_since_1957.html", + "href": "wrestling/sumo_wrestingling_since_1957.html", + "title": "Sumo wrestler characteristics", "section": "", - "text": "Certain infractions in a hockey game can lead to one or more players being forced to sit out for a period of time while their team has to skate with fewer payers. A common scenario that results is a 5 on 4 power play where one team has five skates (plus a goalie) and the penalized team has only four skaters (plus a goalie). The team with fewer skates is said to be shorthanded. Typical penalty times are for two minutes and the penalized player is allowed to return to the ice if the opponent scores a goal while on the power play. Rare, but more serious infractions, produce a major penalty (5 minutes) where the penalized player is not allowed to return to the ice when a goal is scored. A power play can also end before two minutes when the team on the power play commits a penalty which results in one of its players being sent off the ice to even the sides.\nThis dataset shows information for all 32 National Hockey League (NHL) teams based on their performance while on a 5 on 4 power play in the 2022-2023 regular season. Goals scored, shots on goals, and hits are all scaled to give a count of these events for every full two minutes of a power play." + "text": "The Banzuke is a ranking system used in Japanese sumo wrestling to determine the order and matchups for tournaments. In the Makuuchi Banzuke division, which is the top division, the history can be traced back to the 18th century. The Banzuke lists the wrestlers’ ranks, names, stables, and more in a hierarchical order based on their performance and records in previous tournaments. Over the years, the Makuuchi Banzuke has evolved, incorporating changes in the number of ranks and divisions. Today, it plays a crucial role in organizing and structuring sumo tournaments, reflecting the wrestlers’ skill, rank, and accomplishments in the sport.", + "crumbs": [ + "Home", + "Wrestling", + "Sumo wrestler characteristics" + ] }, { - "objectID": "hockey/nhl_powerplay.html#motivation", - "href": "hockey/nhl_powerplay.html#motivation", - "title": "NHL Team Power Play Perfomance in 2022-2023", + "objectID": "wrestling/sumo_wrestingling_since_1957.html#motivation", + "href": "wrestling/sumo_wrestingling_since_1957.html#motivation", + "title": "Sumo wrestler characteristics", "section": "", - "text": "Certain infractions in a hockey game can lead to one or more players being forced to sit out for a period of time while their team has to skate with fewer payers. A common scenario that results is a 5 on 4 power play where one team has five skates (plus a goalie) and the penalized team has only four skaters (plus a goalie). The team with fewer skates is said to be shorthanded. Typical penalty times are for two minutes and the penalized player is allowed to return to the ice if the opponent scores a goal while on the power play. Rare, but more serious infractions, produce a major penalty (5 minutes) where the penalized player is not allowed to return to the ice when a goal is scored. A power play can also end before two minutes when the team on the power play commits a penalty which results in one of its players being sent off the ice to even the sides.\nThis dataset shows information for all 32 National Hockey League (NHL) teams based on their performance while on a 5 on 4 power play in the 2022-2023 regular season. Goals scored, shots on goals, and hits are all scaled to give a count of these events for every full two minutes of a power play." + "text": "The Banzuke is a ranking system used in Japanese sumo wrestling to determine the order and matchups for tournaments. In the Makuuchi Banzuke division, which is the top division, the history can be traced back to the 18th century. The Banzuke lists the wrestlers’ ranks, names, stables, and more in a hierarchical order based on their performance and records in previous tournaments. Over the years, the Makuuchi Banzuke has evolved, incorporating changes in the number of ranks and divisions. Today, it plays a crucial role in organizing and structuring sumo tournaments, reflecting the wrestlers’ skill, rank, and accomplishments in the sport.", + "crumbs": [ + "Home", + "Wrestling", + "Sumo wrestler characteristics" + ] }, { - "objectID": "hockey/nhl_powerplay.html#data", - "href": "hockey/nhl_powerplay.html#data", - "title": "NHL Team Power Play Perfomance in 2022-2023", + "objectID": "wrestling/sumo_wrestingling_since_1957.html#data", + "href": "wrestling/sumo_wrestingling_since_1957.html#data", + "title": "Sumo wrestler characteristics", "section": "Data", - "text": "Data\nEach row of data gives power play statistics for one of the 32 National Hockey League teams from the 2022-2023 regular season.\n\nNHL_PowerPlay2022.csv\n\n\nVariable\nDescription\n\n\n\n\nteam\nName of the team\n\n\ngoals_per_2_min\nHow many goals scored in 2 minute increments\n\n\nSOG_per_2_min\nHow many shots on goal were taken in a 2 minute increments\n\n\nhits_per_2_min\nAverage hits recorded for 2 minutes\n\n\nConference\nConference the team plays in (east vs west)\n\n\ngoal_differential\nPower play goals scored minus short-handed goals allowed\n\n\nIcetime\nTotal time spent on the power play (in minutes)" + "text": "Data\nThe data set has 15760 rows with 10 columns. Each row represents an appearance of a sumo wrestler in the Makuuchi Banzuke, Japan’s most elite sumo wrestling division. The data dates from 1957 through mid 2023 and is comprised of multiple Bashos (tournaments) each year. An addition to the standard columns of wrestler names and records, the data contains many other metrics pertaining to each wrestlers birth place and physical stature.\n\nsumo_since_1957.csv\n\n\nVariable\nDescription\n\n\n\n\nRank\nRank of the wrestler in the Basho\n\n\nRikishi\nThe ring name of a the sumo wrestler\n\n\nHeya\nThe establishment where a wrestler trains\n\n\nShusshin\nThe birthplace, or place of origin of the wrestler\n\n\nBirth Date\nThe birth date of the wrestler\n\n\nheight_cm\nThe height of the wrestler at the time of the event in centimeters\n\n\nweight_kg\nThe weight of the wrestler at the time of the even in kilograms\n\n\nwins\nAmount of wins in the specific Basho\n\n\nlosses\nAmount of losses in the specific Basho\n\n\nties\nAmount of ties in the specific Basho", + "crumbs": [ + "Home", + "Wrestling", + "Sumo wrestler characteristics" + ] }, { - "objectID": "hockey/nhl_powerplay.html#questions", - "href": "hockey/nhl_powerplay.html#questions", - "title": "NHL Team Power Play Perfomance in 2022-2023", + "objectID": "wrestling/sumo_wrestingling_since_1957.html#questions", + "href": "wrestling/sumo_wrestingling_since_1957.html#questions", + "title": "Sumo wrestler characteristics", "section": "Questions", - "text": "Questions\n\nDescribe the distribution of goals-per-2min. Does any team appear to have unusually high or low values for this variable?\nCreate plot to look at the relationship between goals_per_2min and SOG_per_2min. Does it look like more shots tend to lead to more goals?\nCreate plot to look at the relationship between goals_per_2min and hits_per_2min. Does it look like more hits tend to lead to more goals?\nCreate a plot to compare the distribution of goal scoring rates while on the power play between the two conferences. Does there appear to be much difference between the two conferences?" + "text": "Questions\n\nWhich place of origin has resulted in the most sumo wrestlers?\nWhich wrestlers train at Kataonami?\nWhich wrestlers have the highest win percentage?\nWhich wrestlers have had the most successful careers?", + "crumbs": [ + "Home", + "Wrestling", + "Sumo wrestler characteristics" + ] }, { - "objectID": "hockey/nhl_powerplay.html#references", - "href": "hockey/nhl_powerplay.html#references", - "title": "NHL Team Power Play Perfomance in 2022-2023", + "objectID": "wrestling/sumo_wrestingling_since_1957.html#references", + "href": "wrestling/sumo_wrestingling_since_1957.html#references", + "title": "Sumo wrestler characteristics", "section": "References", - "text": "References\nThe data were obtained from the MoneyPuck website." + "text": "References\nSumo Reference - Alexander Nitschke https://sumodb.sumogames.de\nThe Sumo Matchup Centuries In The Making - FiveThirtyEight https://fivethirtyeight.com/features/the-sumo-matchup-centuries-in-the-making/", + "crumbs": [ + "Home", + "Wrestling", + "Sumo wrestler characteristics" + ] }, { - "objectID": "hockey/nhl-shots.html", - "href": "hockey/nhl-shots.html", - "title": "National Hockey League Shots", + "objectID": "lacrosse/lacrosse_pll_vs_nll.html", + "href": "lacrosse/lacrosse_pll_vs_nll.html", + "title": "Lacrosse PLL vs. NLL", "section": "", - "text": "The National Hockey League (NHL) is the top professional men’s hockey league in the world. The league records every shot players take along with contextual information about the shot such as its location, the player’s distance and angle to the goal when attempting the shot, as well as the outcome (blocked, missed, or goal). Using this information, the hockey analytics community have developed measures of shot quality known as expected goals. With this dataset, you can create your own expected goals model to predict the shot outcome given relevant features." + "text": "This data set examines the goals and shots in two prominent lacrosse leagues: the Premier Lacrosse League (PLL) and the National Lacrosse League (NLL).\nThe PLL and NLL are highly regarded professional lacrosse leagues that feature top-tier athletes from around the world. The PLL is played in an indoor, smaller field while the NLL plays on an outdoor field with traditional dimensions. This data set allows for an analysis of goal-scoring within these leagues.", + "crumbs": [ + "Home", + "Lacrosse", + "Lacrosse PLL vs. NLL" + ] }, { - "objectID": "hockey/nhl-shots.html#motivation", - "href": "hockey/nhl-shots.html#motivation", - "title": "National Hockey League Shots", + "objectID": "lacrosse/lacrosse_pll_vs_nll.html#motivation", + "href": "lacrosse/lacrosse_pll_vs_nll.html#motivation", + "title": "Lacrosse PLL vs. NLL", "section": "", - "text": "The National Hockey League (NHL) is the top professional men’s hockey league in the world. The league records every shot players take along with contextual information about the shot such as its location, the player’s distance and angle to the goal when attempting the shot, as well as the outcome (blocked, missed, or goal). Using this information, the hockey analytics community have developed measures of shot quality known as expected goals. With this dataset, you can create your own expected goals model to predict the shot outcome given relevant features." + "text": "This data set examines the goals and shots in two prominent lacrosse leagues: the Premier Lacrosse League (PLL) and the National Lacrosse League (NLL).\nThe PLL and NLL are highly regarded professional lacrosse leagues that feature top-tier athletes from around the world. The PLL is played in an indoor, smaller field while the NLL plays on an outdoor field with traditional dimensions. This data set allows for an analysis of goal-scoring within these leagues.", + "crumbs": [ + "Home", + "Lacrosse", + "Lacrosse PLL vs. NLL" + ] }, { - "objectID": "hockey/nhl-shots.html#data", - "href": "hockey/nhl-shots.html#data", - "title": "National Hockey League Shots", + "objectID": "lacrosse/lacrosse_pll_vs_nll.html#data", + "href": "lacrosse/lacrosse_pll_vs_nll.html#data", + "title": "Lacrosse PLL vs. NLL", "section": "Data", - "text": "Data\nThis dataset contains information about 160,573 shots during the 2021-2022 NHL season.\nThe data was collected using the hockeyR package in R.\n\nnhl-shots-2021.csv.gz\n\n\nVariable\nDescription\n\n\n\n\ngame_id\nUnique integer identifier for game shot took place in\n\n\ndescription\nString detailed description of shot event\n\n\nshot_outcome\nString denoting the outcome of the shot, either BLOCKED_SHOT (meaning blocked by a non-goalie), GOAL, MISSED_SHOT (shot that missed the net), or SHOT (shot on net that was saved by a goalie)\n\n\nperiod\nInteger value of the game period\n\n\nperiod_seconds_remaining\nNumeric value of the seconds remaining in the period\n\n\ngame_seconds_remaining\nNumeric value of the seconds remaining in the game; negative for overtime periods\n\n\nhome_score\nInteger value of the home team score after the event\n\n\naway_score\nInteger value of the away team score after the event\n\n\nhome_name\nString name of the home team\n\n\naway_name\nString name of the away team\n\n\nevent_team\nString defining the team taking the shot\n\n\nevent_goalie_name\nString name of goalie (if in net)\n\n\nempty_net\nBoolean indicating if the shot was during an empty net situation, TRUE if so but FALSE or NA if not\n\n\nevent_player_1_name\nString name of the primary event player\n\n\nevent_player_1_type\nString indicator for the role of event_player_1 (typically the shooter)\n\n\nevent_player_2_name\nString name of the secondary event player\n\n\nevent_player_2_type\nString indicator for the role of event_player_2 (blocker, assist, or goalie)\n\n\nstrength_code\nString indicator for game strength: EV (Even), SH (Shorthanded), or PP (Power Play)\n\n\nx_fixed\nNumeric transformed x-coordinate of event in feet, where the home team always shoots to the right, away team to the left\n\n\ny_fixed\nNumeric transformed y-coordinate of event in feet, where the home team always shoots to the right, away team to the left\n\n\nshot_distance\nNumeric distance (in feet) to center of net for unblocked shot events\n\n\nshot_angle\nNumeric angle (in degrees) to center of net for unlocked shot events" + "text": "Data\nThe data set has 162 rows with 9 columns. Each row represents a single lacrosse match either in the Premier Lacrosse League or the National Lacrosse League for the 2021 - 2022 season. NLL seasons typically run from December to May while PLL seasons typically run from June to September.\n\nlacrosse_pll_nll_2021-2022.csv\n\n\nVariable\nDescription\n\n\n\n\nLeague\nThe Premier Lacrosse league and the National Lacrosse League\n\n\nAway_team\nThe traveling team\n\n\nHome_team\nThe hosting team\n\n\nAway_shots\nHow many shots the Away_team had on net\n\n\nHome_shots\nHow many shots the Home_team had on net\n\n\nAway_goals\nHow many goals the Away_team had on net\n\n\nHome_goals\nHow many goals the Home_team had on net\n\n\ngoals_per_game\nThe total amount of goals scored each game\n\n\ngoals_per_48\nThe average amount of goals for the first 48 minutes of a game", + "crumbs": [ + "Home", + "Lacrosse", + "Lacrosse PLL vs. NLL" + ] }, { - "objectID": "hockey/nhl-shots.html#questions", - "href": "hockey/nhl-shots.html#questions", - "title": "National Hockey League Shots", + "objectID": "lacrosse/lacrosse_pll_vs_nll.html#questions", + "href": "lacrosse/lacrosse_pll_vs_nll.html#questions", + "title": "Lacrosse PLL vs. NLL", "section": "Questions", - "text": "Questions\n\nBuild a logistic regression model to predict whether or not the shot will result in a goal based on the shot distance and angle.\nBuild a classification model to predict the outcome based on the spatial x,y coordinates of the shot.\nCreate a visualization displaying the joint frequency of shot locations. Do there appear to be any clear modes of frequently taken shots? Create a conditional version of this display by shot outcome. Does the distribution shape vary by shot outcome? (You can also perform a similar analysis by team)." + "text": "Questions\n\nDo these data provide evidence that, on average, goals scored in the PLL and NLL differ? Include all details of the appropriate hypothesis test.\nConstruct and interpret a 95% confidence interval in average goals for NLL and PLL lacrosse games per 48 minutes.", + "crumbs": [ + "Home", + "Lacrosse", + "Lacrosse PLL vs. NLL" + ] }, { - "objectID": "hockey/nhl-shots.html#references", - "href": "hockey/nhl-shots.html#references", - "title": "National Hockey League Shots", + "objectID": "lacrosse/lacrosse_pll_vs_nll.html#references", + "href": "lacrosse/lacrosse_pll_vs_nll.html#references", + "title": "Lacrosse PLL vs. NLL", "section": "References", - "text": "References\nMorse D (2023). hockeyR: Collect and Clean Hockey Stats. R package version 1.3.1, https://github.com/danmorse314/hockeyR." - }, - { - "objectID": "by-statsds-topic.html", - "href": "by-statsds-topic.html", - "title": "Datasets By Topic", - "section": "", - "text": "2023 Boston Marathon runners\n\n\n\n\n\n\n\nSummary statistics\n\n\nOutliers\n\n\nz-scores\n\n\n\n\nThe data set looks at the 2023 Boston Marathon results.\n\n\n\n\n\n\nJun 27, 2023\n\n\nJack Fay, A.J. Dykstra, and Ivan Ramler\n\n\n\n\n\n\n \n\n\n\n\nAustralian Open Tennis (2008-2022)\n\n\n\n\n\n\n\nproportions\n\n\ntwo-way tables\n\n\n\n\nResults from matches at the Men’s Australian Open Tennis Tournament between 2008 and 2022.\n\n\n\n\n\n\nAug 3, 2023\n\n\nTrent Meyer, Robin Lock\n\n\n\n\n\n\n \n\n\n\n\nBatting Statistics for Division I Softball\n\n\n\n\n\n\n\nmerging\n\n\njoining\n\n\ndata wrangling\n\n\n\n\nThese data sets contain batting statistics for Division I softball in the 2021 and 2022 seasons.\n\n\n\n\n\n\nMay 23, 2023\n\n\nSarah Weaver and Ivan Ramler\n\n\n\n\n\n\n \n\n\n\n\nJustin Verlander Pitches\n\n\n\n\n\n\n\ncategorical data\n\n\nchi-squared test\n\n\n\n\nInformation about pitches thrown by Justin Verlander in the 2019 and 2022 MLB seasons\n\n\n\n\n\n\nMar 18, 2023\n\n\nRon Yurko\n\n\n\n\n\n\n \n\n\n\n\nLacrosse PLL vs. NLL\n\n\n\n\n\n\n\nDifference in means hypothesis tests\n\n\nDifference in means confidence intervals\n\n\n\n\nThe data set looks at both lacrosse leagues, their respective teams, and their shot and goal amounts.\n\n\n\n\n\n\nJun 22, 2023\n\n\nAJ Dykstra, Jack Cowan, and Ivan Ramler\n\n\n\n\n\n\n \n\n\n\n\nLake Placid Women’s Ironman Triathlon\n\n\n\n\n\n\n\nHistograms\n\n\nScatter Plots\n\n\nCorrelation\n\n\nLinear Regression\n\n\n\n\nThe data set looks at female participatants in the triathlon Ironman.\n\n\n\n\n\n\nJun 17, 2023\n\n\nMichael Schuckers, Matthew Abel, and A.J. Dykstra\n\n\n\n\n\n\n \n\n\n\n\nLeague of Legends - Buffing and Nerfing\n\n\n\n\n\n\n\noutlier detection\n\n\nfive number summary\n\n\nz-scores\n\n\n\n\nGame play statistics for League of Legends champions in two different patches. Can detecting outliers indicate champions that should be enhanced (buffed) or scaled back (nerfed)?\n\n\n\n\n\n\nJul 1, 2023\n\n\nGeorge Charalambous, Ivan Ramler, and A.J. Dykstra\n\n\n\n\n\n\n \n\n\n\n\nNASCAR Data Description\n\n\n\n\n\n\n\ndata visualization\n\n\ndata wrangling\n\n\nlinear regression\n\n\ntransformations in regression\n\n\nmodel assumptions\n\n\nmodel building\n\n\n\n\nNASCAR Driver Ratings and statistics from 2007-2022\n\n\n\n\n\n\nJul 6, 2023\n\n\nAlyssa Bigness, Jack Fay, and Ivan Ramler\n\n\n\n\n\n\n \n\n\n\n\nNFL Draft Combine\n\n\n\n\n\n\n\nExploratory Data Analysis\n\n\nLinear regression\n\n\n\n\nNFL Scouting Combine Event scores from 2004 - 2023\n\n\n\n\n\n\nAug 3, 2023\n\n\nShane Hauk, Michael Schuckers, Robin Lock\n\n\n\n\n\n\n \n\n\n\n\nNHL Team Power Play Perfomance in 2022-2023\n\n\n\n\n\n\n\nexploratory data Analysis\n\n\n\n\nMeasures for National Hockey League teams from all 5 on 4 power plays in the 2022-2023 season.\n\n\n\n\n\n\nJul 27, 2023\n\n\nAbby Hustler, Robin Lock\n\n\n\n\n\n\n \n\n\n\n\nNational Basketball Association Player Statistics\n\n\n\n\n\n\n\nclustering\n\n\nprincipal component analysis\n\n\n\n\nNBA player statistics from the 2021-2022 regular season\n\n\n\n\n\n\nMar 25, 2023\n\n\nRon Yurko\n\n\n\n\n\n\n \n\n\n\n\nNational Football League Team Statistics\n\n\n\n\n\n\n\nlinear regression\n\n\nprincipal component analysis\n\n\nmissing data\n\n\nvariable selection\n\n\nregularization\n\n\n\n\nNFL team statistics from 1999 to 2022\n\n\n\n\n\n\nMay 24, 2023\n\n\nRon Yurko\n\n\n\n\n\n\n \n\n\n\n\nNational Hockey League Shots\n\n\n\n\n\n\n\nclassification\n\n\nlogistic regression\n\n\ngeneralized additive models\n\n\nmultinomial logistic regression\n\n\nnaive bayes classifier\n\n\ndensity estimation\n\n\n\n\nInformation about shots during the 2021-2022 NHL season\n\n\n\n\n\n\nMar 23, 2023\n\n\nRon Yurko\n\n\n\n\n\n\n \n\n\n\n\nNational Women’s Soccer League Team Statistics\n\n\n\n\n\n\n\nlinear regression\n\n\nprincipal component analysis\n\n\n\n\nNWSL team statistics from 2016 to 2022\n\n\n\n\n\n\nMar 18, 2023\n\n\nRon Yurko\n\n\n\n\n\n\n \n\n\n\n\nPremier Hockey Federation Shots\n\n\n\n\n\n\n\ncategorical data\n\n\nchi-squared test\n\n\nlogistic regression\n\n\n\n\nInformation about shots during the 2021-2022 PHF season\n\n\n\n\n\n\nMar 23, 2023\n\n\nRon Yurko\n\n\n\n\n\n\n \n\n\n\n\nSoccer Heights\n\n\n\n\n\n\n\nANOVA for means\n\n\nPairwise comparisons\n\n\n\n\nHeights for a sample of 100 soccer players by position\n\n\n\n\n\n\nAug 3, 2023\n\n\nRoderick Mpofu, Robin Lock\n\n\n\n\n\n\n \n\n\n\n\nStatistics of PGA Tournaments During the 2022 Season\n\n\n\n\n\n\n\ncorrelation\n\n\nlinear regression\n\n\n\n\nMeasures of Putting, Driving, and Success for individual golfers in 19 professional tournaments in 2022\n\n\n\n\n\n\nMay 19, 2023\n\n\nAlysssa Bigness\n\n\n\n\n\n\n \n\n\n\n\nSumo wrestler characteristics\n\n\n\n\n\n\n\ndata wrangling\n\n\ndata visualization\n\n\n\n\nSumo wrestling data 1957-2023.\n\n\n\n\n\n\nJun 29, 2023\n\n\nJack Fay, A.J. Dykstra, and Ivan Ramler\n\n\n\n\n\n\n \n\n\n\n\nTeam Statistics for Division I Women’s Volleyball\n\n\n\n\n\n\n\nmulticollinearity\n\n\nmultiple linear regression\n\n\ncorrelations\n\n\nsummary statistics\n\n\n\n\nThese data sets contain team statistics for Division I women’s volleyball in the 2022 and 2023 seasons.\n\n\n\n\n\n\nJul 24, 2023\n\n\nJack Fay, A.J. Dykstra, and Ivan Ramler\n\n\n\n\n\n\n \n\n\n\n\nTeam statistics for NCAA Division 1 Men’s and Women’s Lacrosse\n\n\n\n\n\n\n\ncorrelation\n\n\nindicator variables\n\n\nlinear regression\n\n\nside-by-side boxplots\n\n\n\n\nThese data sets contain team statistics for NCAA Division I women’s and men’s lacrosse in the 2022 and 2023 seasons.\n\n\n\n\n\n\nJul 24, 2023\n\n\nJack Fay, A.J. Dykstra, and Ivan Ramler\n\n\n\n\n\n\n \n\n\n\n\nWTA Grand Slam Matches\n\n\n\n\n\n\n\nlogistic regression\n\n\ndata wrangling\n\n\ncategorical data\n\n\nchi-squared test\n\n\nclustering\n\n\n\n\nWTA Grand Slam Matches from 2018 to 2022\n\n\n\n\n\n\nMay 24, 2023\n\n\nRon Yurko\n\n\n\n\n\n\n \n\n\n\n\nWomen’s National Basketball Association Shots\n\n\n\n\n\n\n\nclassification\n\n\nlogistic regression\n\n\ngeneralized additive models\n\n\nmultinomial logistic regression\n\n\nnaive bayes classifier\n\n\ndensity estimation\n\n\n\n\nInformation about shots during the 2021-2022 WNBA season\n\n\n\n\n\n\nMar 25, 2023\n\n\nRon Yurko\n\n\n\n\n\n\nNo matching items" + "text": "References\nPremier Lacrosse League stats. Premier Lacrosse League Stats. (n.d.). https://stats.premierlacrosseleague.com/\nPlayer stats. NLL. (2023, January 26). https://www.nll.com/stats/all-player-stats/", + "crumbs": [ + "Home", + "Lacrosse", + "Lacrosse PLL vs. NLL" + ] } ] \ No newline at end of file diff --git a/site_libs/bootstrap/bootstrap-icons.css b/site_libs/bootstrap/bootstrap-icons.css index 94f1940..285e444 100644 --- a/site_libs/bootstrap/bootstrap-icons.css +++ b/site_libs/bootstrap/bootstrap-icons.css @@ -1,8 +1,14 @@ +/*! + * Bootstrap Icons v1.11.1 (https://icons.getbootstrap.com/) + * Copyright 2019-2023 The Bootstrap Authors + * Licensed under MIT (https://github.com/twbs/icons/blob/main/LICENSE) + */ + @font-face { font-display: block; font-family: "bootstrap-icons"; src: -url("./bootstrap-icons.woff?2ab2cbbe07fcebb53bdaa7313bb290f2") format("woff"); +url("./bootstrap-icons.woff?2820a3852bdb9a5832199cc61cec4e65") format("woff"); } .bi::before, @@ -441,7 +447,6 @@ url("./bootstrap-icons.woff?2ab2cbbe07fcebb53bdaa7313bb290f2") format("woff"); .bi-cloud-fog2::before { content: "\f2a2"; } .bi-cloud-hail-fill::before { content: "\f2a3"; } .bi-cloud-hail::before { content: "\f2a4"; } -.bi-cloud-haze-1::before { content: "\f2a5"; } .bi-cloud-haze-fill::before { content: "\f2a6"; } .bi-cloud-haze::before { content: "\f2a7"; } .bi-cloud-haze2-fill::before { content: "\f2a8"; } @@ -1437,21 +1442,16 @@ url("./bootstrap-icons.woff?2ab2cbbe07fcebb53bdaa7313bb290f2") format("woff"); .bi-dpad::before { content: "\f687"; } .bi-ear-fill::before { content: "\f688"; } .bi-ear::before { content: "\f689"; } -.bi-envelope-check-1::before { content: "\f68a"; } .bi-envelope-check-fill::before { content: "\f68b"; } .bi-envelope-check::before { content: "\f68c"; } -.bi-envelope-dash-1::before { content: "\f68d"; } .bi-envelope-dash-fill::before { content: "\f68e"; } .bi-envelope-dash::before { content: "\f68f"; } -.bi-envelope-exclamation-1::before { content: "\f690"; } .bi-envelope-exclamation-fill::before { content: "\f691"; } .bi-envelope-exclamation::before { content: "\f692"; } .bi-envelope-plus-fill::before { content: "\f693"; } .bi-envelope-plus::before { content: "\f694"; } -.bi-envelope-slash-1::before { content: "\f695"; } .bi-envelope-slash-fill::before { content: "\f696"; } .bi-envelope-slash::before { content: "\f697"; } -.bi-envelope-x-1::before { content: "\f698"; } .bi-envelope-x-fill::before { content: "\f699"; } .bi-envelope-x::before { content: "\f69a"; } .bi-explicit-fill::before { content: "\f69b"; } @@ -1461,8 +1461,6 @@ url("./bootstrap-icons.woff?2ab2cbbe07fcebb53bdaa7313bb290f2") format("woff"); .bi-list-columns-reverse::before { content: "\f69f"; } .bi-list-columns::before { content: "\f6a0"; } .bi-meta::before { content: "\f6a1"; } -.bi-mortorboard-fill::before { content: "\f6a2"; } -.bi-mortorboard::before { content: "\f6a3"; } .bi-nintendo-switch::before { content: "\f6a4"; } .bi-pc-display-horizontal::before { content: "\f6a5"; } .bi-pc-display::before { content: "\f6a6"; } @@ -1481,7 +1479,6 @@ url("./bootstrap-icons.woff?2ab2cbbe07fcebb53bdaa7313bb290f2") format("woff"); .bi-send-check::before { content: "\f6b3"; } .bi-send-dash-fill::before { content: "\f6b4"; } .bi-send-dash::before { content: "\f6b5"; } -.bi-send-exclamation-1::before { content: "\f6b6"; } .bi-send-exclamation-fill::before { content: "\f6b7"; } .bi-send-exclamation::before { content: "\f6b8"; } .bi-send-fill::before { content: "\f6b9"; } @@ -1493,7 +1490,6 @@ url("./bootstrap-icons.woff?2ab2cbbe07fcebb53bdaa7313bb290f2") format("woff"); .bi-send-x::before { content: "\f6bf"; } .bi-send::before { content: "\f6c0"; } .bi-steam::before { content: "\f6c1"; } -.bi-terminal-dash-1::before { content: "\f6c2"; } .bi-terminal-dash::before { content: "\f6c3"; } .bi-terminal-plus::before { content: "\f6c4"; } .bi-terminal-split::before { content: "\f6c5"; } @@ -1523,7 +1519,6 @@ url("./bootstrap-icons.woff?2ab2cbbe07fcebb53bdaa7313bb290f2") format("woff"); .bi-usb-symbol::before { content: "\f6dd"; } .bi-usb::before { content: "\f6de"; } .bi-boombox-fill::before { content: "\f6df"; } -.bi-displayport-1::before { content: "\f6e0"; } .bi-displayport::before { content: "\f6e1"; } .bi-gpu-card::before { content: "\f6e2"; } .bi-memory::before { content: "\f6e3"; } @@ -1536,8 +1531,6 @@ url("./bootstrap-icons.woff?2ab2cbbe07fcebb53bdaa7313bb290f2") format("woff"); .bi-pci-card::before { content: "\f6ea"; } .bi-router-fill::before { content: "\f6eb"; } .bi-router::before { content: "\f6ec"; } -.bi-ssd-fill::before { content: "\f6ed"; } -.bi-ssd::before { content: "\f6ee"; } .bi-thunderbolt-fill::before { content: "\f6ef"; } .bi-thunderbolt::before { content: "\f6f0"; } .bi-usb-drive-fill::before { content: "\f6f1"; } @@ -1644,7 +1637,6 @@ url("./bootstrap-icons.woff?2ab2cbbe07fcebb53bdaa7313bb290f2") format("woff"); .bi-filetype-pdf::before { content: "\f756"; } .bi-filetype-php::before { content: "\f757"; } .bi-filetype-png::before { content: "\f758"; } -.bi-filetype-ppt-1::before { content: "\f759"; } .bi-filetype-ppt::before { content: "\f75a"; } .bi-filetype-psd::before { content: "\f75b"; } .bi-filetype-py::before { content: "\f75c"; } @@ -1660,7 +1652,6 @@ url("./bootstrap-icons.woff?2ab2cbbe07fcebb53bdaa7313bb290f2") format("woff"); .bi-filetype-txt::before { content: "\f766"; } .bi-filetype-wav::before { content: "\f767"; } .bi-filetype-woff::before { content: "\f768"; } -.bi-filetype-xls-1::before { content: "\f769"; } .bi-filetype-xls::before { content: "\f76a"; } .bi-filetype-xml::before { content: "\f76b"; } .bi-filetype-yml::before { content: "\f76c"; } @@ -1703,56 +1694,38 @@ url("./bootstrap-icons.woff?2ab2cbbe07fcebb53bdaa7313bb290f2") format("woff"); .bi-filetype-json::before { content: "\f791"; } .bi-filetype-pptx::before { content: "\f792"; } .bi-filetype-xlsx::before { content: "\f793"; } -.bi-1-circle-1::before { content: "\f794"; } -.bi-1-circle-fill-1::before { content: "\f795"; } .bi-1-circle-fill::before { content: "\f796"; } .bi-1-circle::before { content: "\f797"; } .bi-1-square-fill::before { content: "\f798"; } .bi-1-square::before { content: "\f799"; } -.bi-2-circle-1::before { content: "\f79a"; } -.bi-2-circle-fill-1::before { content: "\f79b"; } .bi-2-circle-fill::before { content: "\f79c"; } .bi-2-circle::before { content: "\f79d"; } .bi-2-square-fill::before { content: "\f79e"; } .bi-2-square::before { content: "\f79f"; } -.bi-3-circle-1::before { content: "\f7a0"; } -.bi-3-circle-fill-1::before { content: "\f7a1"; } .bi-3-circle-fill::before { content: "\f7a2"; } .bi-3-circle::before { content: "\f7a3"; } .bi-3-square-fill::before { content: "\f7a4"; } .bi-3-square::before { content: "\f7a5"; } -.bi-4-circle-1::before { content: "\f7a6"; } -.bi-4-circle-fill-1::before { content: "\f7a7"; } .bi-4-circle-fill::before { content: "\f7a8"; } .bi-4-circle::before { content: "\f7a9"; } .bi-4-square-fill::before { content: "\f7aa"; } .bi-4-square::before { content: "\f7ab"; } -.bi-5-circle-1::before { content: "\f7ac"; } -.bi-5-circle-fill-1::before { content: "\f7ad"; } .bi-5-circle-fill::before { content: "\f7ae"; } .bi-5-circle::before { content: "\f7af"; } .bi-5-square-fill::before { content: "\f7b0"; } .bi-5-square::before { content: "\f7b1"; } -.bi-6-circle-1::before { content: "\f7b2"; } -.bi-6-circle-fill-1::before { content: "\f7b3"; } .bi-6-circle-fill::before { content: "\f7b4"; } .bi-6-circle::before { content: "\f7b5"; } .bi-6-square-fill::before { content: "\f7b6"; } .bi-6-square::before { content: "\f7b7"; } -.bi-7-circle-1::before { content: "\f7b8"; } -.bi-7-circle-fill-1::before { content: "\f7b9"; } .bi-7-circle-fill::before { content: "\f7ba"; } .bi-7-circle::before { content: "\f7bb"; } .bi-7-square-fill::before { content: "\f7bc"; } .bi-7-square::before { content: "\f7bd"; } -.bi-8-circle-1::before { content: "\f7be"; } -.bi-8-circle-fill-1::before { content: "\f7bf"; } .bi-8-circle-fill::before { content: "\f7c0"; } .bi-8-circle::before { content: "\f7c1"; } .bi-8-square-fill::before { content: "\f7c2"; } .bi-8-square::before { content: "\f7c3"; } -.bi-9-circle-1::before { content: "\f7c4"; } -.bi-9-circle-fill-1::before { content: "\f7c5"; } .bi-9-circle-fill::before { content: "\f7c6"; } .bi-9-circle::before { content: "\f7c7"; } .bi-9-square-fill::before { content: "\f7c8"; } @@ -1771,8 +1744,6 @@ url("./bootstrap-icons.woff?2ab2cbbe07fcebb53bdaa7313bb290f2") format("woff"); .bi-browser-edge::before { content: "\f7d5"; } .bi-browser-firefox::before { content: "\f7d6"; } .bi-browser-safari::before { content: "\f7d7"; } -.bi-c-circle-1::before { content: "\f7d8"; } -.bi-c-circle-fill-1::before { content: "\f7d9"; } .bi-c-circle-fill::before { content: "\f7da"; } .bi-c-circle::before { content: "\f7db"; } .bi-c-square-fill::before { content: "\f7dc"; } @@ -1783,8 +1754,6 @@ url("./bootstrap-icons.woff?2ab2cbbe07fcebb53bdaa7313bb290f2") format("woff"); .bi-car-front::before { content: "\f7e1"; } .bi-cassette-fill::before { content: "\f7e2"; } .bi-cassette::before { content: "\f7e3"; } -.bi-cc-circle-1::before { content: "\f7e4"; } -.bi-cc-circle-fill-1::before { content: "\f7e5"; } .bi-cc-circle-fill::before { content: "\f7e6"; } .bi-cc-circle::before { content: "\f7e7"; } .bi-cc-square-fill::before { content: "\f7e8"; } @@ -1803,8 +1772,6 @@ url("./bootstrap-icons.woff?2ab2cbbe07fcebb53bdaa7313bb290f2") format("woff"); .bi-filetype-sql::before { content: "\f7f5"; } .bi-fire::before { content: "\f7f6"; } .bi-google-play::before { content: "\f7f7"; } -.bi-h-circle-1::before { content: "\f7f8"; } -.bi-h-circle-fill-1::before { content: "\f7f9"; } .bi-h-circle-fill::before { content: "\f7fa"; } .bi-h-circle::before { content: "\f7fb"; } .bi-h-square-fill::before { content: "\f7fc"; } @@ -1813,8 +1780,6 @@ url("./bootstrap-icons.woff?2ab2cbbe07fcebb53bdaa7313bb290f2") format("woff"); .bi-lungs-fill::before { content: "\f7ff"; } .bi-lungs::before { content: "\f800"; } .bi-microsoft-teams::before { content: "\f801"; } -.bi-p-circle-1::before { content: "\f802"; } -.bi-p-circle-fill-1::before { content: "\f803"; } .bi-p-circle-fill::before { content: "\f804"; } .bi-p-circle::before { content: "\f805"; } .bi-p-square-fill::before { content: "\f806"; } @@ -1823,8 +1788,6 @@ url("./bootstrap-icons.woff?2ab2cbbe07fcebb53bdaa7313bb290f2") format("woff"); .bi-pass::before { content: "\f809"; } .bi-prescription::before { content: "\f80a"; } .bi-prescription2::before { content: "\f80b"; } -.bi-r-circle-1::before { content: "\f80c"; } -.bi-r-circle-fill-1::before { content: "\f80d"; } .bi-r-circle-fill::before { content: "\f80e"; } .bi-r-circle::before { content: "\f80f"; } .bi-r-square-fill::before { content: "\f810"; } @@ -2016,3 +1979,100 @@ url("./bootstrap-icons.woff?2ab2cbbe07fcebb53bdaa7313bb290f2") format("woff"); .bi-sina-weibo::before { content: "\f8ca"; } .bi-tencent-qq::before { content: "\f8cb"; } .bi-wikipedia::before { content: "\f8cc"; } +.bi-alphabet-uppercase::before { content: "\f2a5"; } +.bi-alphabet::before { content: "\f68a"; } +.bi-amazon::before { content: "\f68d"; } +.bi-arrows-collapse-vertical::before { content: "\f690"; } +.bi-arrows-expand-vertical::before { content: "\f695"; } +.bi-arrows-vertical::before { content: "\f698"; } +.bi-arrows::before { content: "\f6a2"; } +.bi-ban-fill::before { content: "\f6a3"; } +.bi-ban::before { content: "\f6b6"; } +.bi-bing::before { content: "\f6c2"; } +.bi-cake::before { content: "\f6e0"; } +.bi-cake2::before { content: "\f6ed"; } +.bi-cookie::before { content: "\f6ee"; } +.bi-copy::before { content: "\f759"; } +.bi-crosshair::before { content: "\f769"; } +.bi-crosshair2::before { content: "\f794"; } +.bi-emoji-astonished-fill::before { content: "\f795"; } +.bi-emoji-astonished::before { content: "\f79a"; } +.bi-emoji-grimace-fill::before { content: "\f79b"; } +.bi-emoji-grimace::before { content: "\f7a0"; } +.bi-emoji-grin-fill::before { content: "\f7a1"; } +.bi-emoji-grin::before { content: "\f7a6"; } +.bi-emoji-surprise-fill::before { content: "\f7a7"; } +.bi-emoji-surprise::before { content: "\f7ac"; } +.bi-emoji-tear-fill::before { content: "\f7ad"; } +.bi-emoji-tear::before { content: "\f7b2"; } +.bi-envelope-arrow-down-fill::before { content: "\f7b3"; } +.bi-envelope-arrow-down::before { content: "\f7b8"; } +.bi-envelope-arrow-up-fill::before { content: "\f7b9"; } +.bi-envelope-arrow-up::before { content: "\f7be"; } +.bi-feather::before { content: "\f7bf"; } +.bi-feather2::before { content: "\f7c4"; } +.bi-floppy-fill::before { content: "\f7c5"; } +.bi-floppy::before { content: "\f7d8"; } +.bi-floppy2-fill::before { content: "\f7d9"; } +.bi-floppy2::before { content: "\f7e4"; } +.bi-gitlab::before { content: "\f7e5"; } +.bi-highlighter::before { content: "\f7f8"; } +.bi-marker-tip::before { content: "\f802"; } +.bi-nvme-fill::before { content: "\f803"; } +.bi-nvme::before { content: "\f80c"; } +.bi-opencollective::before { content: "\f80d"; } +.bi-pci-card-network::before { content: "\f8cd"; } +.bi-pci-card-sound::before { content: "\f8ce"; } +.bi-radar::before { content: "\f8cf"; } +.bi-send-arrow-down-fill::before { content: "\f8d0"; } +.bi-send-arrow-down::before { content: "\f8d1"; } +.bi-send-arrow-up-fill::before { content: "\f8d2"; } +.bi-send-arrow-up::before { content: "\f8d3"; } +.bi-sim-slash-fill::before { content: "\f8d4"; } +.bi-sim-slash::before { content: "\f8d5"; } +.bi-sourceforge::before { content: "\f8d6"; } +.bi-substack::before { content: "\f8d7"; } +.bi-threads-fill::before { content: "\f8d8"; } +.bi-threads::before { content: "\f8d9"; } +.bi-transparency::before { content: "\f8da"; } +.bi-twitter-x::before { content: "\f8db"; } +.bi-type-h4::before { content: "\f8dc"; } +.bi-type-h5::before { content: "\f8dd"; } +.bi-type-h6::before { content: "\f8de"; } +.bi-backpack-fill::before { content: "\f8df"; } +.bi-backpack::before { content: "\f8e0"; } +.bi-backpack2-fill::before { content: "\f8e1"; } +.bi-backpack2::before { content: "\f8e2"; } +.bi-backpack3-fill::before { content: "\f8e3"; } +.bi-backpack3::before { content: "\f8e4"; } +.bi-backpack4-fill::before { content: "\f8e5"; } +.bi-backpack4::before { content: "\f8e6"; } +.bi-brilliance::before { content: "\f8e7"; } +.bi-cake-fill::before { content: "\f8e8"; } +.bi-cake2-fill::before { content: "\f8e9"; } +.bi-duffle-fill::before { content: "\f8ea"; } +.bi-duffle::before { content: "\f8eb"; } +.bi-exposure::before { content: "\f8ec"; } +.bi-gender-neuter::before { content: "\f8ed"; } +.bi-highlights::before { content: "\f8ee"; } +.bi-luggage-fill::before { content: "\f8ef"; } +.bi-luggage::before { content: "\f8f0"; } +.bi-mailbox-flag::before { content: "\f8f1"; } +.bi-mailbox2-flag::before { content: "\f8f2"; } +.bi-noise-reduction::before { content: "\f8f3"; } +.bi-passport-fill::before { content: "\f8f4"; } +.bi-passport::before { content: "\f8f5"; } +.bi-person-arms-up::before { content: "\f8f6"; } +.bi-person-raised-hand::before { content: "\f8f7"; } +.bi-person-standing-dress::before { content: "\f8f8"; } +.bi-person-standing::before { content: "\f8f9"; } +.bi-person-walking::before { content: "\f8fa"; } +.bi-person-wheelchair::before { content: "\f8fb"; } +.bi-shadows::before { content: "\f8fc"; } +.bi-suitcase-fill::before { content: "\f8fd"; } +.bi-suitcase-lg-fill::before { content: "\f8fe"; } +.bi-suitcase-lg::before { content: "\f8ff"; } +.bi-suitcase::before { content: "\f900"; } +.bi-suitcase2-fill::before { content: "\f901"; } +.bi-suitcase2::before { content: "\f902"; } +.bi-vignette::before { content: "\f903"; } diff --git a/site_libs/bootstrap/bootstrap-icons.woff b/site_libs/bootstrap/bootstrap-icons.woff index 18d21d4..dbeeb05 100644 Binary files a/site_libs/bootstrap/bootstrap-icons.woff and b/site_libs/bootstrap/bootstrap-icons.woff differ diff --git a/site_libs/bootstrap/bootstrap.min.css b/site_libs/bootstrap/bootstrap.min.css index e69d2f2..105956a 100644 --- a/site_libs/bootstrap/bootstrap.min.css +++ b/site_libs/bootstrap/bootstrap.min.css @@ -1,10 +1,12 @@ /*! - * Bootstrap v5.1.3 (https://getbootstrap.com/) - * Copyright 2011-2021 The Bootstrap Authors - * Copyright 2011-2021 Twitter, Inc. + * Bootstrap v5.3.1 (https://getbootstrap.com/) + * Copyright 2011-2023 The Bootstrap Authors * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) - */@import"https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;700&display=swap";:root{--bs-blue: #2780e3;--bs-indigo: #6610f2;--bs-purple: #613d7c;--bs-pink: #e83e8c;--bs-red: #ff0039;--bs-orange: #f0ad4e;--bs-yellow: #ff7518;--bs-green: #3fb618;--bs-teal: #20c997;--bs-cyan: #9954bb;--bs-white: #fff;--bs-gray: #6c757d;--bs-gray-dark: #373a3c;--bs-gray-100: #f8f9fa;--bs-gray-200: #e9ecef;--bs-gray-300: #dee2e6;--bs-gray-400: #ced4da;--bs-gray-500: #adb5bd;--bs-gray-600: #6c757d;--bs-gray-700: #495057;--bs-gray-800: #373a3c;--bs-gray-900: #212529;--bs-default: #373a3c;--bs-primary: #6D6E71;--bs-secondary: #373a3c;--bs-success: #3fb618;--bs-info: #9954bb;--bs-warning: #ff7518;--bs-danger: #ff0039;--bs-light: #f8f9fa;--bs-dark: #373a3c;--bs-default-rgb: 55, 58, 60;--bs-primary-rgb: 109, 110, 113;--bs-secondary-rgb: 55, 58, 60;--bs-success-rgb: 63, 182, 24;--bs-info-rgb: 153, 84, 187;--bs-warning-rgb: 255, 117, 24;--bs-danger-rgb: 255, 0, 57;--bs-light-rgb: 248, 249, 250;--bs-dark-rgb: 55, 58, 60;--bs-white-rgb: 255, 255, 255;--bs-black-rgb: 0, 0, 0;--bs-body-color-rgb: 55, 58, 60;--bs-body-bg-rgb: 255, 255, 255;--bs-font-sans-serif: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-root-font-size: 17px;--bs-body-font-family: var(--bs-font-sans-serif);--bs-body-font-size: 1rem;--bs-body-font-weight: 400;--bs-body-line-height: 1.5;--bs-body-color: #373a3c;--bs-body-bg: #fff}*,*::before,*::after{box-sizing:border-box}:root{font-size:var(--bs-root-font-size)}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}h6,.h6,h5,.h5,h4,.h4,h3,.h3,h2,.h2,h1,.h1{margin-top:0;margin-bottom:.5rem;font-weight:400;line-height:1.2}h1,.h1{font-size:calc(1.325rem + 0.9vw)}@media(min-width: 1200px){h1,.h1{font-size:2rem}}h2,.h2{font-size:calc(1.29rem + 0.48vw)}@media(min-width: 1200px){h2,.h2{font-size:1.65rem}}h3,.h3{font-size:calc(1.27rem + 0.24vw)}@media(min-width: 1200px){h3,.h3{font-size:1.45rem}}h4,.h4{font-size:1.25rem}h5,.h5{font-size:1.1rem}h6,.h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[title],abbr[data-bs-original-title]{text-decoration:underline dotted;-webkit-text-decoration:underline dotted;-moz-text-decoration:underline dotted;-ms-text-decoration:underline dotted;-o-text-decoration:underline dotted;cursor:help;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}ol,ul,dl{margin-top:0;margin-bottom:1rem}ol ol,ul ul,ol ul,ul ol{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem;padding:.625rem 1.25rem;border-left:.25rem solid #e9ecef}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}b,strong{font-weight:bolder}small,.small{font-size:0.875em}mark,.mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:0.75em;line-height:0;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}a{color:#6d6e71;text-decoration:underline;-webkit-text-decoration:underline;-moz-text-decoration:underline;-ms-text-decoration:underline;-o-text-decoration:underline}a:hover{color:#57585a}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}pre,code,kbd,samp{font-family:var(--bs-font-monospace);font-size:1em;direction:ltr /* rtl:ignore */;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:0.875em;color:#000;background-color:#f7f7f7;padding:.5rem;border:1px solid #dee2e6}pre code{background-color:rgba(0,0,0,0);font-size:inherit;color:inherit;word-break:normal}code{font-size:0.875em;color:#9753b8;background-color:#f7f7f7;padding:.125rem .25rem;word-wrap:break-word}a>code{color:inherit}kbd{padding:.4rem .4rem;font-size:0.875em;color:#fff;background-color:#212529}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}thead,tbody,tfoot,tr,td,th{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}input,button,select,optgroup,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button:not(:disabled),[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + 0.3vw);line-height:inherit}@media(min-width: 1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-text,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none !important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:0.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:0.875em;color:#6c757d}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:0.875em;color:#6c757d}.grid{display:grid;grid-template-rows:repeat(var(--bs-rows, 1), 1fr);grid-template-columns:repeat(var(--bs-columns, 12), 1fr);gap:var(--bs-gap, 1.5rem)}.grid .g-col-1{grid-column:auto/span 1}.grid .g-col-2{grid-column:auto/span 2}.grid .g-col-3{grid-column:auto/span 3}.grid .g-col-4{grid-column:auto/span 4}.grid .g-col-5{grid-column:auto/span 5}.grid .g-col-6{grid-column:auto/span 6}.grid .g-col-7{grid-column:auto/span 7}.grid .g-col-8{grid-column:auto/span 8}.grid .g-col-9{grid-column:auto/span 9}.grid .g-col-10{grid-column:auto/span 10}.grid .g-col-11{grid-column:auto/span 11}.grid .g-col-12{grid-column:auto/span 12}.grid .g-start-1{grid-column-start:1}.grid .g-start-2{grid-column-start:2}.grid .g-start-3{grid-column-start:3}.grid .g-start-4{grid-column-start:4}.grid .g-start-5{grid-column-start:5}.grid .g-start-6{grid-column-start:6}.grid .g-start-7{grid-column-start:7}.grid .g-start-8{grid-column-start:8}.grid .g-start-9{grid-column-start:9}.grid .g-start-10{grid-column-start:10}.grid .g-start-11{grid-column-start:11}@media(min-width: 576px){.grid .g-col-sm-1{grid-column:auto/span 1}.grid .g-col-sm-2{grid-column:auto/span 2}.grid .g-col-sm-3{grid-column:auto/span 3}.grid .g-col-sm-4{grid-column:auto/span 4}.grid .g-col-sm-5{grid-column:auto/span 5}.grid .g-col-sm-6{grid-column:auto/span 6}.grid .g-col-sm-7{grid-column:auto/span 7}.grid .g-col-sm-8{grid-column:auto/span 8}.grid .g-col-sm-9{grid-column:auto/span 9}.grid .g-col-sm-10{grid-column:auto/span 10}.grid .g-col-sm-11{grid-column:auto/span 11}.grid .g-col-sm-12{grid-column:auto/span 12}.grid .g-start-sm-1{grid-column-start:1}.grid .g-start-sm-2{grid-column-start:2}.grid .g-start-sm-3{grid-column-start:3}.grid .g-start-sm-4{grid-column-start:4}.grid .g-start-sm-5{grid-column-start:5}.grid .g-start-sm-6{grid-column-start:6}.grid .g-start-sm-7{grid-column-start:7}.grid .g-start-sm-8{grid-column-start:8}.grid .g-start-sm-9{grid-column-start:9}.grid .g-start-sm-10{grid-column-start:10}.grid .g-start-sm-11{grid-column-start:11}}@media(min-width: 768px){.grid .g-col-md-1{grid-column:auto/span 1}.grid .g-col-md-2{grid-column:auto/span 2}.grid .g-col-md-3{grid-column:auto/span 3}.grid .g-col-md-4{grid-column:auto/span 4}.grid .g-col-md-5{grid-column:auto/span 5}.grid .g-col-md-6{grid-column:auto/span 6}.grid .g-col-md-7{grid-column:auto/span 7}.grid .g-col-md-8{grid-column:auto/span 8}.grid .g-col-md-9{grid-column:auto/span 9}.grid .g-col-md-10{grid-column:auto/span 10}.grid .g-col-md-11{grid-column:auto/span 11}.grid .g-col-md-12{grid-column:auto/span 12}.grid .g-start-md-1{grid-column-start:1}.grid .g-start-md-2{grid-column-start:2}.grid .g-start-md-3{grid-column-start:3}.grid .g-start-md-4{grid-column-start:4}.grid .g-start-md-5{grid-column-start:5}.grid .g-start-md-6{grid-column-start:6}.grid .g-start-md-7{grid-column-start:7}.grid .g-start-md-8{grid-column-start:8}.grid .g-start-md-9{grid-column-start:9}.grid .g-start-md-10{grid-column-start:10}.grid .g-start-md-11{grid-column-start:11}}@media(min-width: 992px){.grid .g-col-lg-1{grid-column:auto/span 1}.grid .g-col-lg-2{grid-column:auto/span 2}.grid .g-col-lg-3{grid-column:auto/span 3}.grid .g-col-lg-4{grid-column:auto/span 4}.grid .g-col-lg-5{grid-column:auto/span 5}.grid .g-col-lg-6{grid-column:auto/span 6}.grid .g-col-lg-7{grid-column:auto/span 7}.grid .g-col-lg-8{grid-column:auto/span 8}.grid .g-col-lg-9{grid-column:auto/span 9}.grid .g-col-lg-10{grid-column:auto/span 10}.grid .g-col-lg-11{grid-column:auto/span 11}.grid .g-col-lg-12{grid-column:auto/span 12}.grid .g-start-lg-1{grid-column-start:1}.grid .g-start-lg-2{grid-column-start:2}.grid .g-start-lg-3{grid-column-start:3}.grid .g-start-lg-4{grid-column-start:4}.grid .g-start-lg-5{grid-column-start:5}.grid .g-start-lg-6{grid-column-start:6}.grid .g-start-lg-7{grid-column-start:7}.grid .g-start-lg-8{grid-column-start:8}.grid .g-start-lg-9{grid-column-start:9}.grid .g-start-lg-10{grid-column-start:10}.grid .g-start-lg-11{grid-column-start:11}}@media(min-width: 1200px){.grid .g-col-xl-1{grid-column:auto/span 1}.grid .g-col-xl-2{grid-column:auto/span 2}.grid .g-col-xl-3{grid-column:auto/span 3}.grid .g-col-xl-4{grid-column:auto/span 4}.grid .g-col-xl-5{grid-column:auto/span 5}.grid .g-col-xl-6{grid-column:auto/span 6}.grid .g-col-xl-7{grid-column:auto/span 7}.grid .g-col-xl-8{grid-column:auto/span 8}.grid .g-col-xl-9{grid-column:auto/span 9}.grid .g-col-xl-10{grid-column:auto/span 10}.grid .g-col-xl-11{grid-column:auto/span 11}.grid .g-col-xl-12{grid-column:auto/span 12}.grid .g-start-xl-1{grid-column-start:1}.grid .g-start-xl-2{grid-column-start:2}.grid .g-start-xl-3{grid-column-start:3}.grid .g-start-xl-4{grid-column-start:4}.grid .g-start-xl-5{grid-column-start:5}.grid .g-start-xl-6{grid-column-start:6}.grid .g-start-xl-7{grid-column-start:7}.grid .g-start-xl-8{grid-column-start:8}.grid .g-start-xl-9{grid-column-start:9}.grid .g-start-xl-10{grid-column-start:10}.grid .g-start-xl-11{grid-column-start:11}}@media(min-width: 1400px){.grid .g-col-xxl-1{grid-column:auto/span 1}.grid .g-col-xxl-2{grid-column:auto/span 2}.grid .g-col-xxl-3{grid-column:auto/span 3}.grid .g-col-xxl-4{grid-column:auto/span 4}.grid .g-col-xxl-5{grid-column:auto/span 5}.grid .g-col-xxl-6{grid-column:auto/span 6}.grid .g-col-xxl-7{grid-column:auto/span 7}.grid .g-col-xxl-8{grid-column:auto/span 8}.grid .g-col-xxl-9{grid-column:auto/span 9}.grid .g-col-xxl-10{grid-column:auto/span 10}.grid .g-col-xxl-11{grid-column:auto/span 11}.grid .g-col-xxl-12{grid-column:auto/span 12}.grid .g-start-xxl-1{grid-column-start:1}.grid .g-start-xxl-2{grid-column-start:2}.grid .g-start-xxl-3{grid-column-start:3}.grid .g-start-xxl-4{grid-column-start:4}.grid .g-start-xxl-5{grid-column-start:5}.grid .g-start-xxl-6{grid-column-start:6}.grid .g-start-xxl-7{grid-column-start:7}.grid .g-start-xxl-8{grid-column-start:8}.grid .g-start-xxl-9{grid-column-start:9}.grid .g-start-xxl-10{grid-column-start:10}.grid .g-start-xxl-11{grid-column-start:11}}.table{--bs-table-bg: transparent;--bs-table-accent-bg: transparent;--bs-table-striped-color: #373a3c;--bs-table-striped-bg: rgba(0, 0, 0, 0.05);--bs-table-active-color: #373a3c;--bs-table-active-bg: rgba(0, 0, 0, 0.1);--bs-table-hover-color: #373a3c;--bs-table-hover-bg: rgba(0, 0, 0, 0.075);width:100%;margin-bottom:1rem;color:#373a3c;vertical-align:top;border-color:#dee2e6}.table>:not(caption)>*>*{padding:.5rem .5rem;background-color:var(--bs-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table>:not(:first-child){border-top:2px solid #b6babc}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem .25rem}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-borderless>:not(:first-child){border-top-width:0}.table-striped>tbody>tr:nth-of-type(odd)>*{--bs-table-accent-bg: var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-active{--bs-table-accent-bg: var(--bs-table-active-bg);color:var(--bs-table-active-color)}.table-hover>tbody>tr:hover>*{--bs-table-accent-bg: var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}.table-primary{--bs-table-bg: #e2e2e3;--bs-table-striped-bg: #d7d7d8;--bs-table-striped-color: #000;--bs-table-active-bg: #cbcbcc;--bs-table-active-color: #000;--bs-table-hover-bg: #d1d1d2;--bs-table-hover-color: #000;color:#000;border-color:#cbcbcc}.table-secondary{--bs-table-bg: #d7d8d8;--bs-table-striped-bg: #cccdcd;--bs-table-striped-color: #000;--bs-table-active-bg: #c2c2c2;--bs-table-active-color: #000;--bs-table-hover-bg: #c7c8c8;--bs-table-hover-color: #000;color:#000;border-color:#c2c2c2}.table-success{--bs-table-bg: #d9f0d1;--bs-table-striped-bg: #cee4c7;--bs-table-striped-color: #000;--bs-table-active-bg: #c3d8bc;--bs-table-active-color: #000;--bs-table-hover-bg: #c9dec1;--bs-table-hover-color: #000;color:#000;border-color:#c3d8bc}.table-info{--bs-table-bg: #ebddf1;--bs-table-striped-bg: #dfd2e5;--bs-table-striped-color: #000;--bs-table-active-bg: #d4c7d9;--bs-table-active-color: #000;--bs-table-hover-bg: #d9ccdf;--bs-table-hover-color: #000;color:#000;border-color:#d4c7d9}.table-warning{--bs-table-bg: #ffe3d1;--bs-table-striped-bg: #f2d8c7;--bs-table-striped-color: #000;--bs-table-active-bg: #e6ccbc;--bs-table-active-color: #000;--bs-table-hover-bg: #ecd2c1;--bs-table-hover-color: #000;color:#000;border-color:#e6ccbc}.table-danger{--bs-table-bg: #ffccd7;--bs-table-striped-bg: #f2c2cc;--bs-table-striped-color: #000;--bs-table-active-bg: #e6b8c2;--bs-table-active-color: #000;--bs-table-hover-bg: #ecbdc7;--bs-table-hover-color: #000;color:#000;border-color:#e6b8c2}.table-light{--bs-table-bg: #f8f9fa;--bs-table-striped-bg: #ecedee;--bs-table-striped-color: #000;--bs-table-active-bg: #dfe0e1;--bs-table-active-color: #000;--bs-table-hover-bg: #e5e6e7;--bs-table-hover-color: #000;color:#000;border-color:#dfe0e1}.table-dark{--bs-table-bg: #373a3c;--bs-table-striped-bg: #414446;--bs-table-striped-color: #fff;--bs-table-active-bg: #4b4e50;--bs-table-active-color: #fff;--bs-table-hover-bg: #46494b;--bs-table-hover-color: #fff;color:#fff;border-color:#4b4e50}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media(max-width: 575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label,.shiny-input-container .control-label{margin-bottom:.5rem}.col-form-label{padding-top:calc(0.375rem + 1px);padding-bottom:calc(0.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(0.5rem + 1px);padding-bottom:calc(0.5rem + 1px);font-size:1.25rem}.col-form-label-sm{padding-top:calc(0.25rem + 1px);padding-bottom:calc(0.25rem + 1px);font-size:0.875rem}.form-text{margin-top:.25rem;font-size:0.875em;color:#6c757d}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#373a3c;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;appearance:none;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;-o-appearance:none;border-radius:0;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#373a3c;background-color:#fff;border-color:#b6b7b8;outline:0;box-shadow:0 0 0 .25rem rgba(109,110,113,.25)}.form-control::-webkit-date-and-time-value{height:1.5em}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}.form-control::file-selector-button{padding:.375rem .75rem;margin:-0.375rem -0.75rem;margin-inline-end:.75rem;color:#373a3c;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#dde0e3}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-0.375rem -0.75rem;margin-inline-end:.75rem;color:#373a3c;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-control::-webkit-file-upload-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#dde0e3}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:#373a3c;background-color:rgba(0,0,0,0);border:solid rgba(0,0,0,0);border-width:1px 0}.form-control-plaintext.form-control-sm,.form-control-plaintext.form-control-lg{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + 0.5rem + 2px);padding:.25rem .5rem;font-size:0.875rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-0.25rem -0.5rem;margin-inline-end:.5rem}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-0.25rem -0.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-0.5rem -1rem;margin-inline-end:1rem}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-0.5rem -1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + 0.75rem + 2px)}textarea.form-control-sm{min-height:calc(1.5em + 0.5rem + 2px)}textarea.form-control-lg{min-height:calc(1.5em + 1rem + 2px)}.form-control-color{width:3rem;height:auto;padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{height:1.5em}.form-control-color::-webkit-color-swatch{height:1.5em}.form-select{display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;-moz-padding-start:calc(0.75rem - 3px);font-size:1rem;font-weight:400;line-height:1.5;color:#373a3c;background-color:#fff;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23373a3c' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:1px solid #ced4da;border-radius:0;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;-o-appearance:none}@media(prefers-reduced-motion: reduce){.form-select{transition:none}}.form-select:focus{border-color:#b6b7b8;outline:0;box-shadow:0 0 0 .25rem rgba(109,110,113,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:#e9ecef}.form-select:-moz-focusring{color:rgba(0,0,0,0);text-shadow:0 0 0 #373a3c}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:0.875rem}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.form-check,.shiny-input-container .checkbox,.shiny-input-container .radio{display:block;min-height:1.5rem;padding-left:0;margin-bottom:.125rem}.form-check .form-check-input,.form-check .shiny-input-container .checkbox input,.form-check .shiny-input-container .radio input,.shiny-input-container .checkbox .form-check-input,.shiny-input-container .checkbox .shiny-input-container .checkbox input,.shiny-input-container .checkbox .shiny-input-container .radio input,.shiny-input-container .radio .form-check-input,.shiny-input-container .radio .shiny-input-container .checkbox input,.shiny-input-container .radio .shiny-input-container .radio input{float:left;margin-left:0}.form-check-input,.shiny-input-container .checkbox input,.shiny-input-container .checkbox-inline input,.shiny-input-container .radio input,.shiny-input-container .radio-inline input{width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:#fff;background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid rgba(0,0,0,.25);appearance:none;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;-o-appearance:none;color-adjust:exact;-webkit-print-color-adjust:exact}.form-check-input[type=radio],.shiny-input-container .checkbox input[type=radio],.shiny-input-container .checkbox-inline input[type=radio],.shiny-input-container .radio input[type=radio],.shiny-input-container .radio-inline input[type=radio]{border-radius:50%}.form-check-input:active,.shiny-input-container .checkbox input:active,.shiny-input-container .checkbox-inline input:active,.shiny-input-container .radio input:active,.shiny-input-container .radio-inline input:active{filter:brightness(90%)}.form-check-input:focus,.shiny-input-container .checkbox input:focus,.shiny-input-container .checkbox-inline input:focus,.shiny-input-container .radio input:focus,.shiny-input-container .radio-inline input:focus{border-color:#b6b7b8;outline:0;box-shadow:0 0 0 .25rem rgba(109,110,113,.25)}.form-check-input:checked,.shiny-input-container .checkbox input:checked,.shiny-input-container .checkbox-inline input:checked,.shiny-input-container .radio input:checked,.shiny-input-container .radio-inline input:checked{background-color:#6d6e71;border-color:#6d6e71}.form-check-input:checked[type=checkbox],.shiny-input-container .checkbox input:checked[type=checkbox],.shiny-input-container .checkbox-inline input:checked[type=checkbox],.shiny-input-container .radio input:checked[type=checkbox],.shiny-input-container .radio-inline input:checked[type=checkbox]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e")}.form-check-input:checked[type=radio],.shiny-input-container .checkbox input:checked[type=radio],.shiny-input-container .checkbox-inline input:checked[type=radio],.shiny-input-container .radio input:checked[type=radio],.shiny-input-container .radio-inline input:checked[type=radio]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate,.shiny-input-container .checkbox input[type=checkbox]:indeterminate,.shiny-input-container .checkbox-inline input[type=checkbox]:indeterminate,.shiny-input-container .radio input[type=checkbox]:indeterminate,.shiny-input-container .radio-inline input[type=checkbox]:indeterminate{background-color:#6d6e71;border-color:#6d6e71;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled,.shiny-input-container .checkbox input:disabled,.shiny-input-container .checkbox-inline input:disabled,.shiny-input-container .radio input:disabled,.shiny-input-container .radio-inline input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input[disabled]~.form-check-label,.form-check-input[disabled]~span,.form-check-input:disabled~.form-check-label,.form-check-input:disabled~span,.shiny-input-container .checkbox input[disabled]~.form-check-label,.shiny-input-container .checkbox input[disabled]~span,.shiny-input-container .checkbox input:disabled~.form-check-label,.shiny-input-container .checkbox input:disabled~span,.shiny-input-container .checkbox-inline input[disabled]~.form-check-label,.shiny-input-container .checkbox-inline input[disabled]~span,.shiny-input-container .checkbox-inline input:disabled~.form-check-label,.shiny-input-container .checkbox-inline input:disabled~span,.shiny-input-container .radio input[disabled]~.form-check-label,.shiny-input-container .radio input[disabled]~span,.shiny-input-container .radio input:disabled~.form-check-label,.shiny-input-container .radio input:disabled~span,.shiny-input-container .radio-inline input[disabled]~.form-check-label,.shiny-input-container .radio-inline input[disabled]~span,.shiny-input-container .radio-inline input:disabled~.form-check-label,.shiny-input-container .radio-inline input:disabled~span{opacity:.5}.form-check-label,.shiny-input-container .checkbox label,.shiny-input-container .checkbox-inline label,.shiny-input-container .radio label,.shiny-input-container .radio-inline label{cursor:pointer}.form-switch{padding-left:2.5em}.form-switch .form-check-input{width:2em;margin-left:-2.5em;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");background-position:left center;transition:background-position .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23b6b7b8'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:right center;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.form-check-inline,.shiny-input-container .checkbox-inline,.shiny-input-container .radio-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.btn-check[disabled]+.btn,.btn-check:disabled+.btn{pointer-events:none;filter:none;opacity:.65}.form-range{width:100%;height:1.5rem;padding:0;background-color:rgba(0,0,0,0);appearance:none;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;-o-appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(109,110,113,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(109,110,113,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-0.25rem;background-color:#6d6e71;border:0;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;-o-appearance:none}@media(prefers-reduced-motion: reduce){.form-range::-webkit-slider-thumb{transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#d3d4d4}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:rgba(0,0,0,0);cursor:pointer;background-color:#dee2e6;border-color:rgba(0,0,0,0)}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#6d6e71;border:0;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;-o-appearance:none}@media(prefers-reduced-motion: reduce){.form-range::-moz-range-thumb{transition:none}}.form-range::-moz-range-thumb:active{background-color:#d3d4d4}.form-range::-moz-range-track{width:100%;height:.5rem;color:rgba(0,0,0,0);cursor:pointer;background-color:#dee2e6;border-color:rgba(0,0,0,0)}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.form-range:disabled::-moz-range-thumb{background-color:#adb5bd}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-select{height:calc(3.5rem + 2px);line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;height:100%;padding:1rem .75rem;pointer-events:none;border:1px solid rgba(0,0,0,0);transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media(prefers-reduced-motion: reduce){.form-floating>label{transition:none}}.form-floating>.form-control{padding:1rem .75rem}.form-floating>.form-control::placeholder{color:rgba(0,0,0,0)}.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{opacity:.65;transform:scale(0.85) translateY(-0.5rem) translateX(0.15rem)}.form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(0.85) translateY(-0.5rem) translateX(0.15rem)}.input-group{position:relative;display:flex;display:-webkit-flex;flex-wrap:wrap;-webkit-flex-wrap:wrap;align-items:stretch;-webkit-align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-select{position:relative;flex:1 1 auto;-webkit-flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-select:focus{z-index:3}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:3}.input-group-text{display:flex;display:-webkit-flex;align-items:center;-webkit-align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#373a3c;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da}.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text,.input-group-lg>.btn{padding:.5rem 1rem;font-size:1.25rem}.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text,.input-group-sm>.btn{padding:.25rem .5rem;font-size:0.875rem}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:0.875em;color:#3fb618}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:0.875rem;color:#fff;background-color:rgba(63,182,24,.9)}.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip,.is-valid~.valid-feedback,.is-valid~.valid-tooltip{display:block}.was-validated .form-control:valid,.form-control.is-valid{border-color:#3fb618;padding-right:calc(1.5em + 0.75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%233fb618' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(0.375em + 0.1875rem) center;background-size:calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .form-control:valid:focus,.form-control.is-valid:focus{border-color:#3fb618;box-shadow:0 0 0 .25rem rgba(63,182,24,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + 0.75rem);background-position:top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem)}.was-validated .form-select:valid,.form-select.is-valid{border-color:#3fb618}.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"],.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23373a3c' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%233fb618' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .form-select:valid:focus,.form-select.is-valid:focus{border-color:#3fb618;box-shadow:0 0 0 .25rem rgba(63,182,24,.25)}.was-validated .form-check-input:valid,.form-check-input.is-valid{border-color:#3fb618}.was-validated .form-check-input:valid:checked,.form-check-input.is-valid:checked{background-color:#3fb618}.was-validated .form-check-input:valid:focus,.form-check-input.is-valid:focus{box-shadow:0 0 0 .25rem rgba(63,182,24,.25)}.was-validated .form-check-input:valid~.form-check-label,.form-check-input.is-valid~.form-check-label{color:#3fb618}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.was-validated .input-group .form-control:valid,.input-group .form-control.is-valid,.was-validated .input-group .form-select:valid,.input-group .form-select.is-valid{z-index:1}.was-validated .input-group .form-control:valid:focus,.input-group .form-control.is-valid:focus,.was-validated .input-group .form-select:valid:focus,.input-group .form-select.is-valid:focus{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:0.875em;color:#ff0039}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:0.875rem;color:#fff;background-color:rgba(255,0,57,.9)}.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip,.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip{display:block}.was-validated .form-control:invalid,.form-control.is-invalid{border-color:#ff0039;padding-right:calc(1.5em + 0.75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23ff0039'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ff0039' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(0.375em + 0.1875rem) center;background-size:calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .form-control:invalid:focus,.form-control.is-invalid:focus{border-color:#ff0039;box-shadow:0 0 0 .25rem rgba(255,0,57,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + 0.75rem);background-position:top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem)}.was-validated .form-select:invalid,.form-select.is-invalid{border-color:#ff0039}.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"],.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23373a3c' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23ff0039'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ff0039' stroke='none'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .form-select:invalid:focus,.form-select.is-invalid:focus{border-color:#ff0039;box-shadow:0 0 0 .25rem rgba(255,0,57,.25)}.was-validated .form-check-input:invalid,.form-check-input.is-invalid{border-color:#ff0039}.was-validated .form-check-input:invalid:checked,.form-check-input.is-invalid:checked{background-color:#ff0039}.was-validated .form-check-input:invalid:focus,.form-check-input.is-invalid:focus{box-shadow:0 0 0 .25rem rgba(255,0,57,.25)}.was-validated .form-check-input:invalid~.form-check-label,.form-check-input.is-invalid~.form-check-label{color:#ff0039}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.was-validated .input-group .form-control:invalid,.input-group .form-control.is-invalid,.was-validated .input-group .form-select:invalid,.input-group .form-select.is-invalid{z-index:2}.was-validated .input-group .form-control:invalid:focus,.input-group .form-control.is-invalid:focus,.was-validated .input-group .form-select:invalid:focus,.input-group .form-select.is-invalid:focus{z-index:3}.btn{display:inline-block;font-weight:400;line-height:1.5;color:#373a3c;text-align:center;text-decoration:none;-webkit-text-decoration:none;-moz-text-decoration:none;-ms-text-decoration:none;-o-text-decoration:none;vertical-align:middle;cursor:pointer;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;background-color:rgba(0,0,0,0);border:1px solid rgba(0,0,0,0);padding:.375rem .75rem;font-size:1rem;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.btn{transition:none}}.btn:hover{color:#373a3c}.btn-check:focus+.btn,.btn:focus{outline:0;box-shadow:0 0 0 .25rem rgba(109,110,113,.25)}.btn:disabled,.btn.disabled,fieldset:disabled .btn{pointer-events:none;opacity:.65}.btn-default{color:#fff;background-color:#373a3c;border-color:#373a3c}.btn-default:hover{color:#fff;background-color:#2f3133;border-color:#2c2e30}.btn-check:focus+.btn-default,.btn-default:focus{color:#fff;background-color:#2f3133;border-color:#2c2e30;box-shadow:0 0 0 .25rem rgba(85,88,89,.5)}.btn-check:checked+.btn-default,.btn-check:active+.btn-default,.btn-default:active,.btn-default.active,.show>.btn-default.dropdown-toggle{color:#fff;background-color:#2c2e30;border-color:#292c2d}.btn-check:checked+.btn-default:focus,.btn-check:active+.btn-default:focus,.btn-default:active:focus,.btn-default.active:focus,.show>.btn-default.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(85,88,89,.5)}.btn-default:disabled,.btn-default.disabled{color:#fff;background-color:#373a3c;border-color:#373a3c}.btn-primary{color:#fff;background-color:#6d6e71;border-color:#6d6e71}.btn-primary:hover{color:#fff;background-color:#5d5e60;border-color:#57585a}.btn-check:focus+.btn-primary,.btn-primary:focus{color:#fff;background-color:#5d5e60;border-color:#57585a;box-shadow:0 0 0 .25rem rgba(131,132,134,.5)}.btn-check:checked+.btn-primary,.btn-check:active+.btn-primary,.btn-primary:active,.btn-primary.active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#57585a;border-color:#525355}.btn-check:checked+.btn-primary:focus,.btn-check:active+.btn-primary:focus,.btn-primary:active:focus,.btn-primary.active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(131,132,134,.5)}.btn-primary:disabled,.btn-primary.disabled{color:#fff;background-color:#6d6e71;border-color:#6d6e71}.btn-secondary{color:#fff;background-color:#373a3c;border-color:#373a3c}.btn-secondary:hover{color:#fff;background-color:#2f3133;border-color:#2c2e30}.btn-check:focus+.btn-secondary,.btn-secondary:focus{color:#fff;background-color:#2f3133;border-color:#2c2e30;box-shadow:0 0 0 .25rem rgba(85,88,89,.5)}.btn-check:checked+.btn-secondary,.btn-check:active+.btn-secondary,.btn-secondary:active,.btn-secondary.active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#2c2e30;border-color:#292c2d}.btn-check:checked+.btn-secondary:focus,.btn-check:active+.btn-secondary:focus,.btn-secondary:active:focus,.btn-secondary.active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(85,88,89,.5)}.btn-secondary:disabled,.btn-secondary.disabled{color:#fff;background-color:#373a3c;border-color:#373a3c}.btn-success{color:#fff;background-color:#3fb618;border-color:#3fb618}.btn-success:hover{color:#fff;background-color:#369b14;border-color:#329213}.btn-check:focus+.btn-success,.btn-success:focus{color:#fff;background-color:#369b14;border-color:#329213;box-shadow:0 0 0 .25rem rgba(92,193,59,.5)}.btn-check:checked+.btn-success,.btn-check:active+.btn-success,.btn-success:active,.btn-success.active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#329213;border-color:#2f8912}.btn-check:checked+.btn-success:focus,.btn-check:active+.btn-success:focus,.btn-success:active:focus,.btn-success.active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(92,193,59,.5)}.btn-success:disabled,.btn-success.disabled{color:#fff;background-color:#3fb618;border-color:#3fb618}.btn-info{color:#fff;background-color:#9954bb;border-color:#9954bb}.btn-info:hover{color:#fff;background-color:#82479f;border-color:#7a4396}.btn-check:focus+.btn-info,.btn-info:focus{color:#fff;background-color:#82479f;border-color:#7a4396;box-shadow:0 0 0 .25rem rgba(168,110,197,.5)}.btn-check:checked+.btn-info,.btn-check:active+.btn-info,.btn-info:active,.btn-info.active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#7a4396;border-color:#733f8c}.btn-check:checked+.btn-info:focus,.btn-check:active+.btn-info:focus,.btn-info:active:focus,.btn-info.active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(168,110,197,.5)}.btn-info:disabled,.btn-info.disabled{color:#fff;background-color:#9954bb;border-color:#9954bb}.btn-warning{color:#fff;background-color:#ff7518;border-color:#ff7518}.btn-warning:hover{color:#fff;background-color:#d96314;border-color:#cc5e13}.btn-check:focus+.btn-warning,.btn-warning:focus{color:#fff;background-color:#d96314;border-color:#cc5e13;box-shadow:0 0 0 .25rem rgba(255,138,59,.5)}.btn-check:checked+.btn-warning,.btn-check:active+.btn-warning,.btn-warning:active,.btn-warning.active,.show>.btn-warning.dropdown-toggle{color:#fff;background-color:#cc5e13;border-color:#bf5812}.btn-check:checked+.btn-warning:focus,.btn-check:active+.btn-warning:focus,.btn-warning:active:focus,.btn-warning.active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(255,138,59,.5)}.btn-warning:disabled,.btn-warning.disabled{color:#fff;background-color:#ff7518;border-color:#ff7518}.btn-danger{color:#fff;background-color:#ff0039;border-color:#ff0039}.btn-danger:hover{color:#fff;background-color:#d90030;border-color:#cc002e}.btn-check:focus+.btn-danger,.btn-danger:focus{color:#fff;background-color:#d90030;border-color:#cc002e;box-shadow:0 0 0 .25rem rgba(255,38,87,.5)}.btn-check:checked+.btn-danger,.btn-check:active+.btn-danger,.btn-danger:active,.btn-danger.active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#cc002e;border-color:#bf002b}.btn-check:checked+.btn-danger:focus,.btn-check:active+.btn-danger:focus,.btn-danger:active:focus,.btn-danger.active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(255,38,87,.5)}.btn-danger:disabled,.btn-danger.disabled{color:#fff;background-color:#ff0039;border-color:#ff0039}.btn-light{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:focus+.btn-light,.btn-light:focus{color:#000;background-color:#f9fafb;border-color:#f9fafb;box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-check:checked+.btn-light,.btn-check:active+.btn-light,.btn-light:active,.btn-light.active,.show>.btn-light.dropdown-toggle{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:checked+.btn-light:focus,.btn-check:active+.btn-light:focus,.btn-light:active:focus,.btn-light.active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-light:disabled,.btn-light.disabled{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-dark{color:#fff;background-color:#373a3c;border-color:#373a3c}.btn-dark:hover{color:#fff;background-color:#2f3133;border-color:#2c2e30}.btn-check:focus+.btn-dark,.btn-dark:focus{color:#fff;background-color:#2f3133;border-color:#2c2e30;box-shadow:0 0 0 .25rem rgba(85,88,89,.5)}.btn-check:checked+.btn-dark,.btn-check:active+.btn-dark,.btn-dark:active,.btn-dark.active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#2c2e30;border-color:#292c2d}.btn-check:checked+.btn-dark:focus,.btn-check:active+.btn-dark:focus,.btn-dark:active:focus,.btn-dark.active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(85,88,89,.5)}.btn-dark:disabled,.btn-dark.disabled{color:#fff;background-color:#373a3c;border-color:#373a3c}.btn-outline-default{color:#373a3c;border-color:#373a3c;background-color:rgba(0,0,0,0)}.btn-outline-default:hover{color:#fff;background-color:#373a3c;border-color:#373a3c}.btn-check:focus+.btn-outline-default,.btn-outline-default:focus{box-shadow:0 0 0 .25rem rgba(55,58,60,.5)}.btn-check:checked+.btn-outline-default,.btn-check:active+.btn-outline-default,.btn-outline-default:active,.btn-outline-default.active,.btn-outline-default.dropdown-toggle.show{color:#fff;background-color:#373a3c;border-color:#373a3c}.btn-check:checked+.btn-outline-default:focus,.btn-check:active+.btn-outline-default:focus,.btn-outline-default:active:focus,.btn-outline-default.active:focus,.btn-outline-default.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(55,58,60,.5)}.btn-outline-default:disabled,.btn-outline-default.disabled{color:#373a3c;background-color:rgba(0,0,0,0)}.btn-outline-primary{color:#6d6e71;border-color:#6d6e71;background-color:rgba(0,0,0,0)}.btn-outline-primary:hover{color:#fff;background-color:#6d6e71;border-color:#6d6e71}.btn-check:focus+.btn-outline-primary,.btn-outline-primary:focus{box-shadow:0 0 0 .25rem rgba(109,110,113,.5)}.btn-check:checked+.btn-outline-primary,.btn-check:active+.btn-outline-primary,.btn-outline-primary:active,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show{color:#fff;background-color:#6d6e71;border-color:#6d6e71}.btn-check:checked+.btn-outline-primary:focus,.btn-check:active+.btn-outline-primary:focus,.btn-outline-primary:active:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(109,110,113,.5)}.btn-outline-primary:disabled,.btn-outline-primary.disabled{color:#6d6e71;background-color:rgba(0,0,0,0)}.btn-outline-secondary{color:#373a3c;border-color:#373a3c;background-color:rgba(0,0,0,0)}.btn-outline-secondary:hover{color:#fff;background-color:#373a3c;border-color:#373a3c}.btn-check:focus+.btn-outline-secondary,.btn-outline-secondary:focus{box-shadow:0 0 0 .25rem rgba(55,58,60,.5)}.btn-check:checked+.btn-outline-secondary,.btn-check:active+.btn-outline-secondary,.btn-outline-secondary:active,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show{color:#fff;background-color:#373a3c;border-color:#373a3c}.btn-check:checked+.btn-outline-secondary:focus,.btn-check:active+.btn-outline-secondary:focus,.btn-outline-secondary:active:focus,.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(55,58,60,.5)}.btn-outline-secondary:disabled,.btn-outline-secondary.disabled{color:#373a3c;background-color:rgba(0,0,0,0)}.btn-outline-success{color:#3fb618;border-color:#3fb618;background-color:rgba(0,0,0,0)}.btn-outline-success:hover{color:#fff;background-color:#3fb618;border-color:#3fb618}.btn-check:focus+.btn-outline-success,.btn-outline-success:focus{box-shadow:0 0 0 .25rem rgba(63,182,24,.5)}.btn-check:checked+.btn-outline-success,.btn-check:active+.btn-outline-success,.btn-outline-success:active,.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show{color:#fff;background-color:#3fb618;border-color:#3fb618}.btn-check:checked+.btn-outline-success:focus,.btn-check:active+.btn-outline-success:focus,.btn-outline-success:active:focus,.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(63,182,24,.5)}.btn-outline-success:disabled,.btn-outline-success.disabled{color:#3fb618;background-color:rgba(0,0,0,0)}.btn-outline-info{color:#9954bb;border-color:#9954bb;background-color:rgba(0,0,0,0)}.btn-outline-info:hover{color:#fff;background-color:#9954bb;border-color:#9954bb}.btn-check:focus+.btn-outline-info,.btn-outline-info:focus{box-shadow:0 0 0 .25rem rgba(153,84,187,.5)}.btn-check:checked+.btn-outline-info,.btn-check:active+.btn-outline-info,.btn-outline-info:active,.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show{color:#fff;background-color:#9954bb;border-color:#9954bb}.btn-check:checked+.btn-outline-info:focus,.btn-check:active+.btn-outline-info:focus,.btn-outline-info:active:focus,.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(153,84,187,.5)}.btn-outline-info:disabled,.btn-outline-info.disabled{color:#9954bb;background-color:rgba(0,0,0,0)}.btn-outline-warning{color:#ff7518;border-color:#ff7518;background-color:rgba(0,0,0,0)}.btn-outline-warning:hover{color:#fff;background-color:#ff7518;border-color:#ff7518}.btn-check:focus+.btn-outline-warning,.btn-outline-warning:focus{box-shadow:0 0 0 .25rem rgba(255,117,24,.5)}.btn-check:checked+.btn-outline-warning,.btn-check:active+.btn-outline-warning,.btn-outline-warning:active,.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show{color:#fff;background-color:#ff7518;border-color:#ff7518}.btn-check:checked+.btn-outline-warning:focus,.btn-check:active+.btn-outline-warning:focus,.btn-outline-warning:active:focus,.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(255,117,24,.5)}.btn-outline-warning:disabled,.btn-outline-warning.disabled{color:#ff7518;background-color:rgba(0,0,0,0)}.btn-outline-danger{color:#ff0039;border-color:#ff0039;background-color:rgba(0,0,0,0)}.btn-outline-danger:hover{color:#fff;background-color:#ff0039;border-color:#ff0039}.btn-check:focus+.btn-outline-danger,.btn-outline-danger:focus{box-shadow:0 0 0 .25rem rgba(255,0,57,.5)}.btn-check:checked+.btn-outline-danger,.btn-check:active+.btn-outline-danger,.btn-outline-danger:active,.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show{color:#fff;background-color:#ff0039;border-color:#ff0039}.btn-check:checked+.btn-outline-danger:focus,.btn-check:active+.btn-outline-danger:focus,.btn-outline-danger:active:focus,.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(255,0,57,.5)}.btn-outline-danger:disabled,.btn-outline-danger.disabled{color:#ff0039;background-color:rgba(0,0,0,0)}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa;background-color:rgba(0,0,0,0)}.btn-outline-light:hover{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:focus+.btn-outline-light,.btn-outline-light:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-check:checked+.btn-outline-light,.btn-check:active+.btn-outline-light,.btn-outline-light:active,.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:checked+.btn-outline-light:focus,.btn-check:active+.btn-outline-light:focus,.btn-outline-light:active:focus,.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-outline-light:disabled,.btn-outline-light.disabled{color:#f8f9fa;background-color:rgba(0,0,0,0)}.btn-outline-dark{color:#373a3c;border-color:#373a3c;background-color:rgba(0,0,0,0)}.btn-outline-dark:hover{color:#fff;background-color:#373a3c;border-color:#373a3c}.btn-check:focus+.btn-outline-dark,.btn-outline-dark:focus{box-shadow:0 0 0 .25rem rgba(55,58,60,.5)}.btn-check:checked+.btn-outline-dark,.btn-check:active+.btn-outline-dark,.btn-outline-dark:active,.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show{color:#fff;background-color:#373a3c;border-color:#373a3c}.btn-check:checked+.btn-outline-dark:focus,.btn-check:active+.btn-outline-dark:focus,.btn-outline-dark:active:focus,.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(55,58,60,.5)}.btn-outline-dark:disabled,.btn-outline-dark.disabled{color:#373a3c;background-color:rgba(0,0,0,0)}.btn-link{font-weight:400;color:#6d6e71;text-decoration:underline;-webkit-text-decoration:underline;-moz-text-decoration:underline;-ms-text-decoration:underline;-o-text-decoration:underline}.btn-link:hover{color:#57585a}.btn-link:disabled,.btn-link.disabled{color:#6c757d}.btn-lg,.btn-group-lg>.btn{padding:.5rem 1rem;font-size:1.25rem;border-radius:0}.btn-sm,.btn-group-sm>.btn{padding:.25rem .5rem;font-size:0.875rem;border-radius:0}.fade{transition:opacity .15s linear}@media(prefers-reduced-motion: reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .2s ease}@media(prefers-reduced-motion: reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media(prefers-reduced-motion: reduce){.collapsing.collapse-horizontal{transition:none}}.dropup,.dropend,.dropdown,.dropstart{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid rgba(0,0,0,0);border-bottom:0;border-left:.3em solid rgba(0,0,0,0)}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;z-index:1000;display:none;min-width:10rem;padding:.5rem 0;margin:0;font-size:1rem;color:#373a3c;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15)}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:.125rem}.dropdown-menu-start{--bs-position: start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position: end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media(min-width: 576px){.dropdown-menu-sm-start{--bs-position: start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position: end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media(min-width: 768px){.dropdown-menu-md-start{--bs-position: start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position: end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media(min-width: 992px){.dropdown-menu-lg-start{--bs-position: start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position: end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media(min-width: 1200px){.dropdown-menu-xl-start{--bs-position: start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position: end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media(min-width: 1400px){.dropdown-menu-xxl-start{--bs-position: start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position: end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid rgba(0,0,0,0);border-bottom:.3em solid;border-left:.3em solid rgba(0,0,0,0)}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid rgba(0,0,0,0);border-right:0;border-bottom:.3em solid rgba(0,0,0,0);border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid rgba(0,0,0,0);border-right:.3em solid;border-bottom:.3em solid rgba(0,0,0,0)}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid rgba(0,0,0,.15)}.dropdown-item{display:block;width:100%;padding:.25rem 1rem;clear:both;font-weight:400;color:#212529;text-align:inherit;text-decoration:none;-webkit-text-decoration:none;-moz-text-decoration:none;-ms-text-decoration:none;-o-text-decoration:none;white-space:nowrap;background-color:rgba(0,0,0,0);border:0}.dropdown-item:hover,.dropdown-item:focus{color:#1e2125;background-color:#e9ecef}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#6d6e71}.dropdown-item.disabled,.dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:rgba(0,0,0,0)}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1rem;margin-bottom:0;font-size:0.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1rem;color:#212529}.dropdown-menu-dark{color:#dee2e6;background-color:#373a3c;border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item{color:#dee2e6}.dropdown-menu-dark .dropdown-item:hover,.dropdown-menu-dark .dropdown-item:focus{color:#fff;background-color:rgba(255,255,255,.15)}.dropdown-menu-dark .dropdown-item.active,.dropdown-menu-dark .dropdown-item:active{color:#fff;background-color:#6d6e71}.dropdown-menu-dark .dropdown-item.disabled,.dropdown-menu-dark .dropdown-item:disabled{color:#adb5bd}.dropdown-menu-dark .dropdown-divider{border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item-text{color:#dee2e6}.dropdown-menu-dark .dropdown-header{color:#adb5bd}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;flex:1 1 auto;-webkit-flex:1 1 auto}.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn:hover,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn.active{z-index:1}.btn-toolbar{display:flex;display:-webkit-flex;flex-wrap:wrap;-webkit-flex-wrap:wrap;justify-content:flex-start;-webkit-justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn:not(:first-child),.btn-group>.btn-group:not(:first-child){margin-left:-1px}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-sm+.dropdown-toggle-split,.btn-group-sm>.btn+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-lg+.dropdown-toggle-split,.btn-group-lg>.btn+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;-webkit-flex-direction:column;align-items:flex-start;-webkit-align-items:flex-start;justify-content:center;-webkit-justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child){margin-top:-1px}.nav{display:flex;display:-webkit-flex;flex-wrap:wrap;-webkit-flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem;color:#6d6e71;text-decoration:none;-webkit-text-decoration:none;-moz-text-decoration:none;-ms-text-decoration:none;-o-text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media(prefers-reduced-motion: reduce){.nav-link{transition:none}}.nav-link:hover,.nav-link:focus{color:#57585a}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-link{margin-bottom:-1px;background:none;border:1px solid rgba(0,0,0,0)}.nav-tabs .nav-link:hover,.nav-tabs .nav-link:focus{border-color:#e9ecef #e9ecef #dee2e6;isolation:isolate}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:rgba(0,0,0,0);border-color:rgba(0,0,0,0)}.nav-tabs .nav-link.active,.nav-tabs .nav-item.show .nav-link{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px}.nav-pills .nav-link{background:none;border:0}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#6d6e71}.nav-fill>.nav-link,.nav-fill .nav-item{flex:1 1 auto;-webkit-flex:1 1 auto;text-align:center}.nav-justified>.nav-link,.nav-justified .nav-item{flex-basis:0;-webkit-flex-basis:0;flex-grow:1;-webkit-flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:flex;display:-webkit-flex;flex-wrap:wrap;-webkit-flex-wrap:wrap;align-items:center;-webkit-align-items:center;justify-content:space-between;-webkit-justify-content:space-between;padding-top:.5rem;padding-bottom:.5rem}.navbar>.container-xxl,.navbar>.container-xl,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container,.navbar>.container-fluid{display:flex;display:-webkit-flex;flex-wrap:inherit;-webkit-flex-wrap:inherit;align-items:center;-webkit-align-items:center;justify-content:space-between;-webkit-justify-content:space-between}.navbar-brand{padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;text-decoration:none;-webkit-text-decoration:none;-moz-text-decoration:none;-ms-text-decoration:none;-o-text-decoration:none;white-space:nowrap}.navbar-nav{display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;-webkit-flex-basis:100%;flex-grow:1;-webkit-flex-grow:1;align-items:center;-webkit-align-items:center}.navbar-toggler{padding:.25 0;font-size:1.25rem;line-height:1;background-color:rgba(0,0,0,0);border:1px solid rgba(0,0,0,0);transition:box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 .25rem}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height, 75vh);overflow-y:auto}@media(min-width: 576px){.navbar-expand-sm{flex-wrap:nowrap;-webkit-flex-wrap:nowrap;justify-content:flex-start;-webkit-justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row;-webkit-flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex !important;display:-webkit-flex !important;flex-basis:auto;-webkit-flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .offcanvas-header{display:none}.navbar-expand-sm .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;-webkit-flex-grow:1;visibility:visible !important;background-color:rgba(0,0,0,0);border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-sm .offcanvas-top,.navbar-expand-sm .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand-sm .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible}}@media(min-width: 768px){.navbar-expand-md{flex-wrap:nowrap;-webkit-flex-wrap:nowrap;justify-content:flex-start;-webkit-justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row;-webkit-flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex !important;display:-webkit-flex !important;flex-basis:auto;-webkit-flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .offcanvas-header{display:none}.navbar-expand-md .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;-webkit-flex-grow:1;visibility:visible !important;background-color:rgba(0,0,0,0);border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-md .offcanvas-top,.navbar-expand-md .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand-md .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible}}@media(min-width: 992px){.navbar-expand-lg{flex-wrap:nowrap;-webkit-flex-wrap:nowrap;justify-content:flex-start;-webkit-justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row;-webkit-flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex !important;display:-webkit-flex !important;flex-basis:auto;-webkit-flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .offcanvas-header{display:none}.navbar-expand-lg .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;-webkit-flex-grow:1;visibility:visible !important;background-color:rgba(0,0,0,0);border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-lg .offcanvas-top,.navbar-expand-lg .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand-lg .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible}}@media(min-width: 1200px){.navbar-expand-xl{flex-wrap:nowrap;-webkit-flex-wrap:nowrap;justify-content:flex-start;-webkit-justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row;-webkit-flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex !important;display:-webkit-flex !important;flex-basis:auto;-webkit-flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .offcanvas-header{display:none}.navbar-expand-xl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;-webkit-flex-grow:1;visibility:visible !important;background-color:rgba(0,0,0,0);border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-xl .offcanvas-top,.navbar-expand-xl .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand-xl .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible}}@media(min-width: 1400px){.navbar-expand-xxl{flex-wrap:nowrap;-webkit-flex-wrap:nowrap;justify-content:flex-start;-webkit-justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row;-webkit-flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex !important;display:-webkit-flex !important;flex-basis:auto;-webkit-flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}.navbar-expand-xxl .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;-webkit-flex-grow:1;visibility:visible !important;background-color:rgba(0,0,0,0);border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-xxl .offcanvas-top,.navbar-expand-xxl .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand-xxl .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;-webkit-flex-wrap:nowrap;justify-content:flex-start;-webkit-justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row;-webkit-flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex !important;display:-webkit-flex !important;flex-basis:auto;-webkit-flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .offcanvas-header{display:none}.navbar-expand .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;-webkit-flex-grow:1;visibility:visible !important;background-color:rgba(0,0,0,0);border-right:0;border-left:0;transition:none;transform:none}.navbar-expand .offcanvas-top,.navbar-expand .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible}.navbar-light{background-color:#f8f9fa}.navbar-light .navbar-brand{color:#545555}.navbar-light .navbar-brand:hover,.navbar-light .navbar-brand:focus{color:#545557}.navbar-light .navbar-nav .nav-link{color:#545555}.navbar-light .navbar-nav .nav-link:hover,.navbar-light .navbar-nav .nav-link:focus{color:rgba(84,85,87,.8)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(84,85,85,.75)}.navbar-light .navbar-nav .show>.nav-link,.navbar-light .navbar-nav .nav-link.active{color:#545557}.navbar-light .navbar-toggler{color:#545555;border-color:rgba(84,85,85,0)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23545555' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:#545555}.navbar-light .navbar-text a,.navbar-light .navbar-text a:hover,.navbar-light .navbar-text a:focus{color:#545557}.navbar-dark{background-color:#f8f9fa}.navbar-dark .navbar-brand{color:#545555}.navbar-dark .navbar-brand:hover,.navbar-dark .navbar-brand:focus{color:#545557}.navbar-dark .navbar-nav .nav-link{color:#545555}.navbar-dark .navbar-nav .nav-link:hover,.navbar-dark .navbar-nav .nav-link:focus{color:rgba(84,85,87,.8)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(84,85,85,.75)}.navbar-dark .navbar-nav .show>.nav-link,.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active{color:#545557}.navbar-dark .navbar-toggler{color:#545555;border-color:rgba(84,85,85,0)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23545555' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:#545555}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:hover,.navbar-dark .navbar-text a:focus{color:#545557}.card{position:relative;display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125)}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0}.card>.list-group:last-child{border-bottom-width:0}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;-webkit-flex:1 1 auto;padding:1rem 1rem}.card-title{margin-bottom:.5rem}.card-subtitle{margin-top:-0.25rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link+.card-link{margin-left:1rem}.card-header{padding:.5rem 1rem;margin-bottom:0;background-color:#adb5bd;border-bottom:1px solid rgba(0,0,0,.125)}.card-footer{padding:.5rem 1rem;background-color:#adb5bd;border-top:1px solid rgba(0,0,0,.125)}.card-header-tabs{margin-right:-0.5rem;margin-bottom:-0.5rem;margin-left:-0.5rem;border-bottom:0}.card-header-pills{margin-right:-0.5rem;margin-left:-0.5rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1rem}.card-img,.card-img-top,.card-img-bottom{width:100%}.card-group>.card{margin-bottom:.75rem}@media(min-width: 576px){.card-group{display:flex;display:-webkit-flex;flex-flow:row wrap;-webkit-flex-flow:row wrap}.card-group>.card{flex:1 0 0%;-webkit-flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}}.accordion-button{position:relative;display:flex;display:-webkit-flex;align-items:center;-webkit-align-items:center;width:100%;padding:1rem 1.25rem;font-size:1rem;color:#373a3c;text-align:left;background-color:#fff;border:0;overflow-anchor:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease}@media(prefers-reduced-motion: reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:#626366;background-color:#f0f1f1;box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-button:not(.collapsed)::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23626366'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");transform:rotate(-180deg)}.accordion-button::after{flex-shrink:0;-webkit-flex-shrink:0;width:1.25rem;height:1.25rem;margin-left:auto;content:"";background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23373a3c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-size:1.25rem;transition:transform .2s ease-in-out}@media(prefers-reduced-motion: reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:#b6b7b8;outline:0;box-shadow:0 0 0 .25rem rgba(109,110,113,.25)}.accordion-header{margin-bottom:0}.accordion-item{background-color:#fff;border:1px solid rgba(0,0,0,.125)}.accordion-item:not(:first-of-type){border-top:0}.accordion-body{padding:1rem 1.25rem}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.breadcrumb{display:flex;display:-webkit-flex;flex-wrap:wrap;-webkit-flex-wrap:wrap;padding:0 0;margin-bottom:1rem;list-style:none}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:.5rem;color:#6c757d;content:var(--bs-breadcrumb-divider, ">") /* rtl: var(--bs-breadcrumb-divider, ">") */}.breadcrumb-item.active{color:#6c757d}.pagination{display:flex;display:-webkit-flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;color:#6d6e71;text-decoration:none;-webkit-text-decoration:none;-moz-text-decoration:none;-ms-text-decoration:none;-o-text-decoration:none;background-color:#fff;border:1px solid #dee2e6;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:#57585a;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;color:#57585a;background-color:#e9ecef;outline:0;box-shadow:0 0 0 .25rem rgba(109,110,113,.25)}.page-item:not(:first-child) .page-link{margin-left:-1px}.page-item.active .page-link{z-index:3;color:#fff;background-color:#6d6e71;border-color:#6d6e71}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;background-color:#fff;border-color:#dee2e6}.page-link{padding:.375rem .75rem}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:0.875rem}.badge{display:inline-block;padding:.35em .65em;font-size:0.75em;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{position:relative;padding:1rem 1rem;margin-bottom:1rem;border:0 solid rgba(0,0,0,0)}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-default{color:#212324;background-color:#d7d8d8;border-color:#c3c4c5}.alert-default .alert-link{color:#1a1c1d}.alert-primary{color:#414244;background-color:#e2e2e3;border-color:#d3d4d4}.alert-primary .alert-link{color:#343536}.alert-secondary{color:#212324;background-color:#d7d8d8;border-color:#c3c4c5}.alert-secondary .alert-link{color:#1a1c1d}.alert-success{color:#266d0e;background-color:#d9f0d1;border-color:#c5e9ba}.alert-success .alert-link{color:#1e570b}.alert-info{color:#5c3270;background-color:#ebddf1;border-color:#e0cceb}.alert-info .alert-link{color:#4a285a}.alert-warning{color:#99460e;background-color:#ffe3d1;border-color:#ffd6ba}.alert-warning .alert-link{color:#7a380b}.alert-danger{color:#902;background-color:#ffccd7;border-color:#ffb3c4}.alert-danger .alert-link{color:#7a001b}.alert-light{color:#959596;background-color:#fefefe;border-color:#fdfdfe}.alert-light .alert-link{color:#777778}.alert-dark{color:#212324;background-color:#d7d8d8;border-color:#c3c4c5}.alert-dark .alert-link{color:#1a1c1d}@keyframes progress-bar-stripes{0%{background-position-x:.5rem}}.progress{display:flex;display:-webkit-flex;height:.5rem;overflow:hidden;font-size:0.75rem;background-color:#e9ecef}.progress-bar{display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;justify-content:center;-webkit-justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#6d6e71;transition:width .6s ease}@media(prefers-reduced-motion: reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-size:.5rem .5rem}.progress-bar-animated{animation:1s linear infinite progress-bar-stripes}@media(prefers-reduced-motion: reduce){.progress-bar-animated{animation:none}}.list-group{display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;padding-left:0;margin-bottom:0}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>li::before{content:counters(section, ".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:hover,.list-group-item-action:focus{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#373a3c;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.5rem 1rem;color:#212529;text-decoration:none;-webkit-text-decoration:none;-moz-text-decoration:none;-ms-text-decoration:none;-o-text-decoration:none;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#6d6e71;border-color:#6d6e71}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{flex-direction:row;-webkit-flex-direction:row}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media(min-width: 576px){.list-group-horizontal-sm{flex-direction:row;-webkit-flex-direction:row}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media(min-width: 768px){.list-group-horizontal-md{flex-direction:row;-webkit-flex-direction:row}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media(min-width: 992px){.list-group-horizontal-lg{flex-direction:row;-webkit-flex-direction:row}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media(min-width: 1200px){.list-group-horizontal-xl{flex-direction:row;-webkit-flex-direction:row}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media(min-width: 1400px){.list-group-horizontal-xxl{flex-direction:row;-webkit-flex-direction:row}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-default{color:#212324;background-color:#d7d8d8}.list-group-item-default.list-group-item-action:hover,.list-group-item-default.list-group-item-action:focus{color:#212324;background-color:#c2c2c2}.list-group-item-default.list-group-item-action.active{color:#fff;background-color:#212324;border-color:#212324}.list-group-item-primary{color:#414244;background-color:#e2e2e3}.list-group-item-primary.list-group-item-action:hover,.list-group-item-primary.list-group-item-action:focus{color:#414244;background-color:#cbcbcc}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#414244;border-color:#414244}.list-group-item-secondary{color:#212324;background-color:#d7d8d8}.list-group-item-secondary.list-group-item-action:hover,.list-group-item-secondary.list-group-item-action:focus{color:#212324;background-color:#c2c2c2}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#212324;border-color:#212324}.list-group-item-success{color:#266d0e;background-color:#d9f0d1}.list-group-item-success.list-group-item-action:hover,.list-group-item-success.list-group-item-action:focus{color:#266d0e;background-color:#c3d8bc}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#266d0e;border-color:#266d0e}.list-group-item-info{color:#5c3270;background-color:#ebddf1}.list-group-item-info.list-group-item-action:hover,.list-group-item-info.list-group-item-action:focus{color:#5c3270;background-color:#d4c7d9}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#5c3270;border-color:#5c3270}.list-group-item-warning{color:#99460e;background-color:#ffe3d1}.list-group-item-warning.list-group-item-action:hover,.list-group-item-warning.list-group-item-action:focus{color:#99460e;background-color:#e6ccbc}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#99460e;border-color:#99460e}.list-group-item-danger{color:#902;background-color:#ffccd7}.list-group-item-danger.list-group-item-action:hover,.list-group-item-danger.list-group-item-action:focus{color:#902;background-color:#e6b8c2}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#902;border-color:#902}.list-group-item-light{color:#959596;background-color:#fefefe}.list-group-item-light.list-group-item-action:hover,.list-group-item-light.list-group-item-action:focus{color:#959596;background-color:#e5e5e5}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#959596;border-color:#959596}.list-group-item-dark{color:#212324;background-color:#d7d8d8}.list-group-item-dark.list-group-item-action:hover,.list-group-item-dark.list-group-item-action:focus{color:#212324;background-color:#c2c2c2}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#212324;border-color:#212324}.btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:#000;background:rgba(0,0,0,0) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;border:0;opacity:.5}.btn-close:hover{color:#000;text-decoration:none;opacity:.75}.btn-close:focus{outline:0;box-shadow:0 0 0 .25rem rgba(109,110,113,.25);opacity:1}.btn-close:disabled,.btn-close.disabled{pointer-events:none;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;opacity:.25}.btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}.toast{width:350px;max-width:100%;font-size:0.875rem;pointer-events:auto;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .5rem 1rem rgba(0,0,0,.15)}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{width:max-content;width:-webkit-max-content;width:-moz-max-content;width:-ms-max-content;width:-o-max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:.75rem}.toast-header{display:flex;display:-webkit-flex;align-items:center;-webkit-align-items:center;padding:.5rem .75rem;color:#6c757d;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05)}.toast-header .btn-close{margin-right:-0.375rem;margin-left:.75rem}.toast-body{padding:.75rem;word-wrap:break-word}.modal{position:fixed;top:0;left:0;z-index:1055;display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0, -50px)}@media(prefers-reduced-motion: reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;display:-webkit-flex;align-items:center;-webkit-align-items:center;min-height:calc(100% - 1rem)}.modal-content{position:relative;display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1050;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;display:-webkit-flex;flex-shrink:0;-webkit-flex-shrink:0;align-items:center;-webkit-align-items:center;justify-content:space-between;-webkit-justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6}.modal-header .btn-close{padding:.5rem .5rem;margin:-0.5rem -0.5rem -0.5rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;-webkit-flex:1 1 auto;padding:1rem}.modal-footer{display:flex;display:-webkit-flex;flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-shrink:0;-webkit-flex-shrink:0;align-items:center;-webkit-align-items:center;justify-content:flex-end;-webkit-justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6}.modal-footer>*{margin:.25rem}@media(min-width: 576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{height:calc(100% - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-sm{max-width:300px}}@media(min-width: 992px){.modal-lg,.modal-xl{max-width:800px}}@media(min-width: 1200px){.modal-xl{max-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0}.modal-fullscreen .modal-body{overflow-y:auto}@media(max-width: 575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}}@media(max-width: 767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}}@media(max-width: 991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}}@media(max-width: 1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}}@media(max-width: 1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}}.tooltip{position:absolute;z-index:1080;display:block;margin:0;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:0.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:rgba(0,0,0,0);border-style:solid}.bs-tooltip-top,.bs-tooltip-auto[data-popper-placement^=top]{padding:.4rem 0}.bs-tooltip-top .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow{bottom:0}.bs-tooltip-top .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before{top:-1px;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-end,.bs-tooltip-auto[data-popper-placement^=right]{padding:0 .4rem}.bs-tooltip-end .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-end .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before{right:-1px;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-bottom,.bs-tooltip-auto[data-popper-placement^=bottom]{padding:.4rem 0}.bs-tooltip-bottom .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow{top:0}.bs-tooltip-bottom .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before{bottom:-1px;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-start,.bs-tooltip-auto[data-popper-placement^=left]{padding:0 .4rem}.bs-tooltip-start .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-start .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before{left:-1px;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000}.popover{position:absolute;top:0;left:0 /* rtl:ignore */;z-index:1070;display:block;max-width:276px;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:0.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2)}.popover .popover-arrow{position:absolute;display:block;width:1rem;height:.5rem}.popover .popover-arrow::before,.popover .popover-arrow::after{position:absolute;display:block;content:"";border-color:rgba(0,0,0,0);border-style:solid}.bs-popover-top>.popover-arrow,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow{bottom:calc(-0.5rem - 1px)}.bs-popover-top>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-top>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-end>.popover-arrow,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow{left:calc(-0.5rem - 1px);width:.5rem;height:1rem}.bs-popover-end>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-end>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-bottom>.popover-arrow,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow{top:calc(-0.5rem - 1px)}.bs-popover-bottom>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-bottom>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-bottom .popover-header::before,.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-0.5rem;content:"";border-bottom:1px solid #f0f0f0}.bs-popover-start>.popover-arrow,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow{right:calc(-0.5rem - 1px);width:.5rem;height:1rem}.bs-popover-start>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-start>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem 1rem;margin-bottom:0;font-size:1rem;background-color:#f0f0f0;border-bottom:1px solid rgba(0,0,0,.2)}.popover-header:empty{display:none}.popover-body{padding:1rem 1rem;color:#373a3c}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y;-webkit-touch-action:pan-y;-moz-touch-action:pan-y;-ms-touch-action:pan-y;-o-touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;backface-visibility:hidden;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;transition:transform .6s ease-in-out}@media(prefers-reduced-motion: reduce){.carousel-item{transition:none}}.carousel-item.active,.carousel-item-next,.carousel-item-prev{display:block}.carousel-item-next:not(.carousel-item-start),.active.carousel-item-end{transform:translateX(100%)}.carousel-item-prev:not(.carousel-item-end),.active.carousel-item-start{transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item.active,.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end{z-index:1;opacity:1}.carousel-fade .active.carousel-item-start,.carousel-fade .active.carousel-item-end{z-index:0;opacity:0;transition:opacity 0s .6s}@media(prefers-reduced-motion: reduce){.carousel-fade .active.carousel-item-start,.carousel-fade .active.carousel-item-end{transition:none}}.carousel-control-prev,.carousel-control-next{position:absolute;top:0;bottom:0;z-index:1;display:flex;display:-webkit-flex;align-items:center;-webkit-align-items:center;justify-content:center;-webkit-justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:none;border:0;opacity:.5;transition:opacity .15s ease}@media(prefers-reduced-motion: reduce){.carousel-control-prev,.carousel-control-next{transition:none}}.carousel-control-prev:hover,.carousel-control-prev:focus,.carousel-control-next:hover,.carousel-control-next:focus{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-prev-icon,.carousel-control-next-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;display:-webkit-flex;justify-content:center;-webkit-justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%;list-style:none}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;-webkit-flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid rgba(0,0,0,0);border-bottom:10px solid rgba(0,0,0,0);opacity:.5;transition:opacity .6s ease}@media(prefers-reduced-motion: reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-prev-icon,.carousel-dark .carousel-control-next-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}@keyframes spinner-border{to{transform:rotate(360deg) /* rtl:ignore */}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-0.125em;border:.25em solid currentColor;border-right-color:rgba(0,0,0,0);border-radius:50%;animation:.75s linear infinite spinner-border}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-0.125em;background-color:currentColor;border-radius:50%;opacity:0;animation:.75s linear infinite spinner-grow}.spinner-grow-sm{width:1rem;height:1rem}@media(prefers-reduced-motion: reduce){.spinner-border,.spinner-grow{animation-duration:1.5s;-webkit-animation-duration:1.5s;-moz-animation-duration:1.5s;-ms-animation-duration:1.5s;-o-animation-duration:1.5s}}.offcanvas{position:fixed;bottom:0;z-index:1045;display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;max-width:100%;visibility:hidden;background-color:#fff;background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}@media(prefers-reduced-motion: reduce){.offcanvas{transition:none}}.offcanvas-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.offcanvas-backdrop.fade{opacity:0}.offcanvas-backdrop.show{opacity:.5}.offcanvas-header{display:flex;display:-webkit-flex;align-items:center;-webkit-align-items:center;justify-content:space-between;-webkit-justify-content:space-between;padding:1rem 1rem}.offcanvas-header .btn-close{padding:.5rem .5rem;margin-top:-0.5rem;margin-right:-0.5rem;margin-bottom:-0.5rem}.offcanvas-title{margin-bottom:0;line-height:1.5}.offcanvas-body{flex-grow:1;-webkit-flex-grow:1;padding:1rem 1rem;overflow-y:auto}.offcanvas-start{top:0;left:0;width:400px;border-right:1px solid rgba(0,0,0,.2);transform:translateX(-100%)}.offcanvas-end{top:0;right:0;width:400px;border-left:1px solid rgba(0,0,0,.2);transform:translateX(100%)}.offcanvas-top{top:0;right:0;left:0;height:30vh;max-height:100%;border-bottom:1px solid rgba(0,0,0,.2);transform:translateY(-100%)}.offcanvas-bottom{right:0;left:0;height:30vh;max-height:100%;border-top:1px solid rgba(0,0,0,.2);transform:translateY(100%)}.offcanvas.show{transform:none}.placeholder{display:inline-block;min-height:1em;vertical-align:middle;cursor:wait;background-color:currentColor;opacity:.5}.placeholder.btn::before{display:inline-block;content:""}.placeholder-xs{min-height:.6em}.placeholder-sm{min-height:.8em}.placeholder-lg{min-height:1.2em}.placeholder-glow .placeholder{animation:placeholder-glow 2s ease-in-out infinite}@keyframes placeholder-glow{50%{opacity:.2}}.placeholder-wave{mask-image:linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);-webkit-mask-image:linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);mask-size:200% 100%;-webkit-mask-size:200% 100%;animation:placeholder-wave 2s linear infinite}@keyframes placeholder-wave{100%{mask-position:-200% 0%;-webkit-mask-position:-200% 0%}}.clearfix::after{display:block;clear:both;content:""}.link-default{color:#373a3c}.link-default:hover,.link-default:focus{color:#2c2e30}.link-primary{color:#6d6e71}.link-primary:hover,.link-primary:focus{color:#57585a}.link-secondary{color:#373a3c}.link-secondary:hover,.link-secondary:focus{color:#2c2e30}.link-success{color:#3fb618}.link-success:hover,.link-success:focus{color:#329213}.link-info{color:#9954bb}.link-info:hover,.link-info:focus{color:#7a4396}.link-warning{color:#ff7518}.link-warning:hover,.link-warning:focus{color:#cc5e13}.link-danger{color:#ff0039}.link-danger:hover,.link-danger:focus{color:#cc002e}.link-light{color:#f8f9fa}.link-light:hover,.link-light:focus{color:#f9fafb}.link-dark{color:#373a3c}.link-dark:hover,.link-dark:focus{color:#2c2e30}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio: 100%}.ratio-4x3{--bs-aspect-ratio: 75%}.ratio-16x9{--bs-aspect-ratio: 56.25%}.ratio-21x9{--bs-aspect-ratio: 42.8571428571%}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:sticky;top:0;z-index:1020}@media(min-width: 576px){.sticky-sm-top{position:sticky;top:0;z-index:1020}}@media(min-width: 768px){.sticky-md-top{position:sticky;top:0;z-index:1020}}@media(min-width: 992px){.sticky-lg-top{position:sticky;top:0;z-index:1020}}@media(min-width: 1200px){.sticky-xl-top{position:sticky;top:0;z-index:1020}}@media(min-width: 1400px){.sticky-xxl-top{position:sticky;top:0;z-index:1020}}.hstack{display:flex;display:-webkit-flex;flex-direction:row;-webkit-flex-direction:row;align-items:center;-webkit-align-items:center;align-self:stretch;-webkit-align-self:stretch}.vstack{display:flex;display:-webkit-flex;flex:1 1 auto;-webkit-flex:1 1 auto;flex-direction:column;-webkit-flex-direction:column;align-self:stretch;-webkit-align-self:stretch}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute !important;width:1px !important;height:1px !important;padding:0 !important;margin:-1px !important;overflow:hidden !important;clip:rect(0, 0, 0, 0) !important;white-space:nowrap !important;border:0 !important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;-webkit-align-self:stretch;width:1px;min-height:1em;background-color:currentColor;opacity:.25}.align-baseline{vertical-align:baseline !important}.align-top{vertical-align:top !important}.align-middle{vertical-align:middle !important}.align-bottom{vertical-align:bottom !important}.align-text-bottom{vertical-align:text-bottom !important}.align-text-top{vertical-align:text-top !important}.float-start{float:left !important}.float-end{float:right !important}.float-none{float:none !important}.opacity-0{opacity:0 !important}.opacity-25{opacity:.25 !important}.opacity-50{opacity:.5 !important}.opacity-75{opacity:.75 !important}.opacity-100{opacity:1 !important}.overflow-auto{overflow:auto !important}.overflow-hidden{overflow:hidden !important}.overflow-visible{overflow:visible !important}.overflow-scroll{overflow:scroll !important}.d-inline{display:inline !important}.d-inline-block{display:inline-block !important}.d-block{display:block !important}.d-grid{display:grid !important}.d-table{display:table !important}.d-table-row{display:table-row !important}.d-table-cell{display:table-cell !important}.d-flex{display:flex !important}.d-inline-flex{display:inline-flex !important}.d-none{display:none !important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15) !important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075) !important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175) !important}.shadow-none{box-shadow:none !important}.position-static{position:static !important}.position-relative{position:relative !important}.position-absolute{position:absolute !important}.position-fixed{position:fixed !important}.position-sticky{position:sticky !important}.top-0{top:0 !important}.top-50{top:50% !important}.top-100{top:100% !important}.bottom-0{bottom:0 !important}.bottom-50{bottom:50% !important}.bottom-100{bottom:100% !important}.start-0{left:0 !important}.start-50{left:50% !important}.start-100{left:100% !important}.end-0{right:0 !important}.end-50{right:50% !important}.end-100{right:100% !important}.translate-middle{transform:translate(-50%, -50%) !important}.translate-middle-x{transform:translateX(-50%) !important}.translate-middle-y{transform:translateY(-50%) !important}.border{border:1px solid #dee2e6 !important}.border-0{border:0 !important}.border-top{border-top:1px solid #dee2e6 !important}.border-top-0{border-top:0 !important}.border-end{border-right:1px solid #dee2e6 !important}.border-end-0{border-right:0 !important}.border-bottom{border-bottom:1px solid #dee2e6 !important}.border-bottom-0{border-bottom:0 !important}.border-start{border-left:1px solid #dee2e6 !important}.border-start-0{border-left:0 !important}.border-default{border-color:#373a3c !important}.border-primary{border-color:#6d6e71 !important}.border-secondary{border-color:#373a3c !important}.border-success{border-color:#3fb618 !important}.border-info{border-color:#9954bb !important}.border-warning{border-color:#ff7518 !important}.border-danger{border-color:#ff0039 !important}.border-light{border-color:#f8f9fa !important}.border-dark{border-color:#373a3c !important}.border-white{border-color:#fff !important}.border-1{border-width:1px !important}.border-2{border-width:2px !important}.border-3{border-width:3px !important}.border-4{border-width:4px !important}.border-5{border-width:5px !important}.w-25{width:25% !important}.w-50{width:50% !important}.w-75{width:75% !important}.w-100{width:100% !important}.w-auto{width:auto !important}.mw-100{max-width:100% !important}.vw-100{width:100vw !important}.min-vw-100{min-width:100vw !important}.h-25{height:25% !important}.h-50{height:50% !important}.h-75{height:75% !important}.h-100{height:100% !important}.h-auto{height:auto !important}.mh-100{max-height:100% !important}.vh-100{height:100vh !important}.min-vh-100{min-height:100vh !important}.flex-fill{flex:1 1 auto !important}.flex-row{flex-direction:row !important}.flex-column{flex-direction:column !important}.flex-row-reverse{flex-direction:row-reverse !important}.flex-column-reverse{flex-direction:column-reverse !important}.flex-grow-0{flex-grow:0 !important}.flex-grow-1{flex-grow:1 !important}.flex-shrink-0{flex-shrink:0 !important}.flex-shrink-1{flex-shrink:1 !important}.flex-wrap{flex-wrap:wrap !important}.flex-nowrap{flex-wrap:nowrap !important}.flex-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-0{gap:0 !important}.gap-1{gap:.25rem !important}.gap-2{gap:.5rem !important}.gap-3{gap:1rem !important}.gap-4{gap:1.5rem !important}.gap-5{gap:3rem !important}.justify-content-start{justify-content:flex-start !important}.justify-content-end{justify-content:flex-end !important}.justify-content-center{justify-content:center !important}.justify-content-between{justify-content:space-between !important}.justify-content-around{justify-content:space-around !important}.justify-content-evenly{justify-content:space-evenly !important}.align-items-start{align-items:flex-start !important}.align-items-end{align-items:flex-end !important}.align-items-center{align-items:center !important}.align-items-baseline{align-items:baseline !important}.align-items-stretch{align-items:stretch !important}.align-content-start{align-content:flex-start !important}.align-content-end{align-content:flex-end !important}.align-content-center{align-content:center !important}.align-content-between{align-content:space-between !important}.align-content-around{align-content:space-around !important}.align-content-stretch{align-content:stretch !important}.align-self-auto{align-self:auto !important}.align-self-start{align-self:flex-start !important}.align-self-end{align-self:flex-end !important}.align-self-center{align-self:center !important}.align-self-baseline{align-self:baseline !important}.align-self-stretch{align-self:stretch !important}.order-first{order:-1 !important}.order-0{order:0 !important}.order-1{order:1 !important}.order-2{order:2 !important}.order-3{order:3 !important}.order-4{order:4 !important}.order-5{order:5 !important}.order-last{order:6 !important}.m-0{margin:0 !important}.m-1{margin:.25rem !important}.m-2{margin:.5rem !important}.m-3{margin:1rem !important}.m-4{margin:1.5rem !important}.m-5{margin:3rem !important}.m-auto{margin:auto !important}.mx-0{margin-right:0 !important;margin-left:0 !important}.mx-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-3{margin-right:1rem !important;margin-left:1rem !important}.mx-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-5{margin-right:3rem !important;margin-left:3rem !important}.mx-auto{margin-right:auto !important;margin-left:auto !important}.my-0{margin-top:0 !important;margin-bottom:0 !important}.my-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-0{margin-top:0 !important}.mt-1{margin-top:.25rem !important}.mt-2{margin-top:.5rem !important}.mt-3{margin-top:1rem !important}.mt-4{margin-top:1.5rem !important}.mt-5{margin-top:3rem !important}.mt-auto{margin-top:auto !important}.me-0{margin-right:0 !important}.me-1{margin-right:.25rem !important}.me-2{margin-right:.5rem !important}.me-3{margin-right:1rem !important}.me-4{margin-right:1.5rem !important}.me-5{margin-right:3rem !important}.me-auto{margin-right:auto !important}.mb-0{margin-bottom:0 !important}.mb-1{margin-bottom:.25rem !important}.mb-2{margin-bottom:.5rem !important}.mb-3{margin-bottom:1rem !important}.mb-4{margin-bottom:1.5rem !important}.mb-5{margin-bottom:3rem !important}.mb-auto{margin-bottom:auto !important}.ms-0{margin-left:0 !important}.ms-1{margin-left:.25rem !important}.ms-2{margin-left:.5rem !important}.ms-3{margin-left:1rem !important}.ms-4{margin-left:1.5rem !important}.ms-5{margin-left:3rem !important}.ms-auto{margin-left:auto !important}.p-0{padding:0 !important}.p-1{padding:.25rem !important}.p-2{padding:.5rem !important}.p-3{padding:1rem !important}.p-4{padding:1.5rem !important}.p-5{padding:3rem !important}.px-0{padding-right:0 !important;padding-left:0 !important}.px-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-3{padding-right:1rem !important;padding-left:1rem !important}.px-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-5{padding-right:3rem !important;padding-left:3rem !important}.py-0{padding-top:0 !important;padding-bottom:0 !important}.py-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-0{padding-top:0 !important}.pt-1{padding-top:.25rem !important}.pt-2{padding-top:.5rem !important}.pt-3{padding-top:1rem !important}.pt-4{padding-top:1.5rem !important}.pt-5{padding-top:3rem !important}.pe-0{padding-right:0 !important}.pe-1{padding-right:.25rem !important}.pe-2{padding-right:.5rem !important}.pe-3{padding-right:1rem !important}.pe-4{padding-right:1.5rem !important}.pe-5{padding-right:3rem !important}.pb-0{padding-bottom:0 !important}.pb-1{padding-bottom:.25rem !important}.pb-2{padding-bottom:.5rem !important}.pb-3{padding-bottom:1rem !important}.pb-4{padding-bottom:1.5rem !important}.pb-5{padding-bottom:3rem !important}.ps-0{padding-left:0 !important}.ps-1{padding-left:.25rem !important}.ps-2{padding-left:.5rem !important}.ps-3{padding-left:1rem !important}.ps-4{padding-left:1.5rem !important}.ps-5{padding-left:3rem !important}.font-monospace{font-family:var(--bs-font-monospace) !important}.fs-1{font-size:calc(1.325rem + 0.9vw) !important}.fs-2{font-size:calc(1.29rem + 0.48vw) !important}.fs-3{font-size:calc(1.27rem + 0.24vw) !important}.fs-4{font-size:1.25rem !important}.fs-5{font-size:1.1rem !important}.fs-6{font-size:1rem !important}.fst-italic{font-style:italic !important}.fst-normal{font-style:normal !important}.fw-light{font-weight:300 !important}.fw-lighter{font-weight:lighter !important}.fw-normal{font-weight:400 !important}.fw-bold{font-weight:700 !important}.fw-bolder{font-weight:bolder !important}.lh-1{line-height:1 !important}.lh-sm{line-height:1.25 !important}.lh-base{line-height:1.5 !important}.lh-lg{line-height:2 !important}.text-start{text-align:left !important}.text-end{text-align:right !important}.text-center{text-align:center !important}.text-decoration-none{text-decoration:none !important}.text-decoration-underline{text-decoration:underline !important}.text-decoration-line-through{text-decoration:line-through !important}.text-lowercase{text-transform:lowercase !important}.text-uppercase{text-transform:uppercase !important}.text-capitalize{text-transform:capitalize !important}.text-wrap{white-space:normal !important}.text-nowrap{white-space:nowrap !important}.text-break{word-wrap:break-word !important;word-break:break-word !important}.text-default{--bs-text-opacity: 1;color:rgba(var(--bs-default-rgb), var(--bs-text-opacity)) !important}.text-primary{--bs-text-opacity: 1;color:rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important}.text-secondary{--bs-text-opacity: 1;color:rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important}.text-success{--bs-text-opacity: 1;color:rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important}.text-info{--bs-text-opacity: 1;color:rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important}.text-warning{--bs-text-opacity: 1;color:rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important}.text-danger{--bs-text-opacity: 1;color:rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important}.text-light{--bs-text-opacity: 1;color:rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important}.text-dark{--bs-text-opacity: 1;color:rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important}.text-black{--bs-text-opacity: 1;color:rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important}.text-white{--bs-text-opacity: 1;color:rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important}.text-body{--bs-text-opacity: 1;color:rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important}.text-muted{--bs-text-opacity: 1;color:#6c757d !important}.text-black-50{--bs-text-opacity: 1;color:rgba(0,0,0,.5) !important}.text-white-50{--bs-text-opacity: 1;color:rgba(255,255,255,.5) !important}.text-reset{--bs-text-opacity: 1;color:inherit !important}.text-opacity-25{--bs-text-opacity: 0.25}.text-opacity-50{--bs-text-opacity: 0.5}.text-opacity-75{--bs-text-opacity: 0.75}.text-opacity-100{--bs-text-opacity: 1}.bg-default{--bs-bg-opacity: 1;background-color:rgba(var(--bs-default-rgb), var(--bs-bg-opacity)) !important}.bg-primary{--bs-bg-opacity: 1;background-color:rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important}.bg-secondary{--bs-bg-opacity: 1;background-color:rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important}.bg-success{--bs-bg-opacity: 1;background-color:rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important}.bg-info{--bs-bg-opacity: 1;background-color:rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important}.bg-warning{--bs-bg-opacity: 1;background-color:rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important}.bg-danger{--bs-bg-opacity: 1;background-color:rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important}.bg-light{--bs-bg-opacity: 1;background-color:rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important}.bg-dark{--bs-bg-opacity: 1;background-color:rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important}.bg-black{--bs-bg-opacity: 1;background-color:rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important}.bg-white{--bs-bg-opacity: 1;background-color:rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important}.bg-body{--bs-bg-opacity: 1;background-color:rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important}.bg-transparent{--bs-bg-opacity: 1;background-color:rgba(0,0,0,0) !important}.bg-opacity-10{--bs-bg-opacity: 0.1}.bg-opacity-25{--bs-bg-opacity: 0.25}.bg-opacity-50{--bs-bg-opacity: 0.5}.bg-opacity-75{--bs-bg-opacity: 0.75}.bg-opacity-100{--bs-bg-opacity: 1}.bg-gradient{background-image:var(--bs-gradient) !important}.user-select-all{user-select:all !important}.user-select-auto{user-select:auto !important}.user-select-none{user-select:none !important}.pe-none{pointer-events:none !important}.pe-auto{pointer-events:auto !important}.rounded{border-radius:.25rem !important}.rounded-0{border-radius:0 !important}.rounded-1{border-radius:.2em !important}.rounded-2{border-radius:.25rem !important}.rounded-3{border-radius:.3rem !important}.rounded-circle{border-radius:50% !important}.rounded-pill{border-radius:50rem !important}.rounded-top{border-top-left-radius:.25rem !important;border-top-right-radius:.25rem !important}.rounded-end{border-top-right-radius:.25rem !important;border-bottom-right-radius:.25rem !important}.rounded-bottom{border-bottom-right-radius:.25rem !important;border-bottom-left-radius:.25rem !important}.rounded-start{border-bottom-left-radius:.25rem !important;border-top-left-radius:.25rem !important}.visible{visibility:visible !important}.invisible{visibility:hidden !important}@media(min-width: 576px){.float-sm-start{float:left !important}.float-sm-end{float:right !important}.float-sm-none{float:none !important}.d-sm-inline{display:inline !important}.d-sm-inline-block{display:inline-block !important}.d-sm-block{display:block !important}.d-sm-grid{display:grid !important}.d-sm-table{display:table !important}.d-sm-table-row{display:table-row !important}.d-sm-table-cell{display:table-cell !important}.d-sm-flex{display:flex !important}.d-sm-inline-flex{display:inline-flex !important}.d-sm-none{display:none !important}.flex-sm-fill{flex:1 1 auto !important}.flex-sm-row{flex-direction:row !important}.flex-sm-column{flex-direction:column !important}.flex-sm-row-reverse{flex-direction:row-reverse !important}.flex-sm-column-reverse{flex-direction:column-reverse !important}.flex-sm-grow-0{flex-grow:0 !important}.flex-sm-grow-1{flex-grow:1 !important}.flex-sm-shrink-0{flex-shrink:0 !important}.flex-sm-shrink-1{flex-shrink:1 !important}.flex-sm-wrap{flex-wrap:wrap !important}.flex-sm-nowrap{flex-wrap:nowrap !important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-sm-0{gap:0 !important}.gap-sm-1{gap:.25rem !important}.gap-sm-2{gap:.5rem !important}.gap-sm-3{gap:1rem !important}.gap-sm-4{gap:1.5rem !important}.gap-sm-5{gap:3rem !important}.justify-content-sm-start{justify-content:flex-start !important}.justify-content-sm-end{justify-content:flex-end !important}.justify-content-sm-center{justify-content:center !important}.justify-content-sm-between{justify-content:space-between !important}.justify-content-sm-around{justify-content:space-around !important}.justify-content-sm-evenly{justify-content:space-evenly !important}.align-items-sm-start{align-items:flex-start !important}.align-items-sm-end{align-items:flex-end !important}.align-items-sm-center{align-items:center !important}.align-items-sm-baseline{align-items:baseline !important}.align-items-sm-stretch{align-items:stretch !important}.align-content-sm-start{align-content:flex-start !important}.align-content-sm-end{align-content:flex-end !important}.align-content-sm-center{align-content:center !important}.align-content-sm-between{align-content:space-between !important}.align-content-sm-around{align-content:space-around !important}.align-content-sm-stretch{align-content:stretch !important}.align-self-sm-auto{align-self:auto !important}.align-self-sm-start{align-self:flex-start !important}.align-self-sm-end{align-self:flex-end !important}.align-self-sm-center{align-self:center !important}.align-self-sm-baseline{align-self:baseline !important}.align-self-sm-stretch{align-self:stretch !important}.order-sm-first{order:-1 !important}.order-sm-0{order:0 !important}.order-sm-1{order:1 !important}.order-sm-2{order:2 !important}.order-sm-3{order:3 !important}.order-sm-4{order:4 !important}.order-sm-5{order:5 !important}.order-sm-last{order:6 !important}.m-sm-0{margin:0 !important}.m-sm-1{margin:.25rem !important}.m-sm-2{margin:.5rem !important}.m-sm-3{margin:1rem !important}.m-sm-4{margin:1.5rem !important}.m-sm-5{margin:3rem !important}.m-sm-auto{margin:auto !important}.mx-sm-0{margin-right:0 !important;margin-left:0 !important}.mx-sm-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-sm-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-sm-3{margin-right:1rem !important;margin-left:1rem !important}.mx-sm-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-sm-5{margin-right:3rem !important;margin-left:3rem !important}.mx-sm-auto{margin-right:auto !important;margin-left:auto !important}.my-sm-0{margin-top:0 !important;margin-bottom:0 !important}.my-sm-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-sm-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-sm-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-sm-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-sm-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-sm-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-sm-0{margin-top:0 !important}.mt-sm-1{margin-top:.25rem !important}.mt-sm-2{margin-top:.5rem !important}.mt-sm-3{margin-top:1rem !important}.mt-sm-4{margin-top:1.5rem !important}.mt-sm-5{margin-top:3rem !important}.mt-sm-auto{margin-top:auto !important}.me-sm-0{margin-right:0 !important}.me-sm-1{margin-right:.25rem !important}.me-sm-2{margin-right:.5rem !important}.me-sm-3{margin-right:1rem !important}.me-sm-4{margin-right:1.5rem !important}.me-sm-5{margin-right:3rem !important}.me-sm-auto{margin-right:auto !important}.mb-sm-0{margin-bottom:0 !important}.mb-sm-1{margin-bottom:.25rem !important}.mb-sm-2{margin-bottom:.5rem !important}.mb-sm-3{margin-bottom:1rem !important}.mb-sm-4{margin-bottom:1.5rem !important}.mb-sm-5{margin-bottom:3rem !important}.mb-sm-auto{margin-bottom:auto !important}.ms-sm-0{margin-left:0 !important}.ms-sm-1{margin-left:.25rem !important}.ms-sm-2{margin-left:.5rem !important}.ms-sm-3{margin-left:1rem !important}.ms-sm-4{margin-left:1.5rem !important}.ms-sm-5{margin-left:3rem !important}.ms-sm-auto{margin-left:auto !important}.p-sm-0{padding:0 !important}.p-sm-1{padding:.25rem !important}.p-sm-2{padding:.5rem !important}.p-sm-3{padding:1rem !important}.p-sm-4{padding:1.5rem !important}.p-sm-5{padding:3rem !important}.px-sm-0{padding-right:0 !important;padding-left:0 !important}.px-sm-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-sm-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-sm-3{padding-right:1rem !important;padding-left:1rem !important}.px-sm-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-sm-5{padding-right:3rem !important;padding-left:3rem !important}.py-sm-0{padding-top:0 !important;padding-bottom:0 !important}.py-sm-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-sm-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-sm-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-sm-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-sm-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-sm-0{padding-top:0 !important}.pt-sm-1{padding-top:.25rem !important}.pt-sm-2{padding-top:.5rem !important}.pt-sm-3{padding-top:1rem !important}.pt-sm-4{padding-top:1.5rem !important}.pt-sm-5{padding-top:3rem !important}.pe-sm-0{padding-right:0 !important}.pe-sm-1{padding-right:.25rem !important}.pe-sm-2{padding-right:.5rem !important}.pe-sm-3{padding-right:1rem !important}.pe-sm-4{padding-right:1.5rem !important}.pe-sm-5{padding-right:3rem !important}.pb-sm-0{padding-bottom:0 !important}.pb-sm-1{padding-bottom:.25rem !important}.pb-sm-2{padding-bottom:.5rem !important}.pb-sm-3{padding-bottom:1rem !important}.pb-sm-4{padding-bottom:1.5rem !important}.pb-sm-5{padding-bottom:3rem !important}.ps-sm-0{padding-left:0 !important}.ps-sm-1{padding-left:.25rem !important}.ps-sm-2{padding-left:.5rem !important}.ps-sm-3{padding-left:1rem !important}.ps-sm-4{padding-left:1.5rem !important}.ps-sm-5{padding-left:3rem !important}.text-sm-start{text-align:left !important}.text-sm-end{text-align:right !important}.text-sm-center{text-align:center !important}}@media(min-width: 768px){.float-md-start{float:left !important}.float-md-end{float:right !important}.float-md-none{float:none !important}.d-md-inline{display:inline !important}.d-md-inline-block{display:inline-block !important}.d-md-block{display:block !important}.d-md-grid{display:grid !important}.d-md-table{display:table !important}.d-md-table-row{display:table-row !important}.d-md-table-cell{display:table-cell !important}.d-md-flex{display:flex !important}.d-md-inline-flex{display:inline-flex !important}.d-md-none{display:none !important}.flex-md-fill{flex:1 1 auto !important}.flex-md-row{flex-direction:row !important}.flex-md-column{flex-direction:column !important}.flex-md-row-reverse{flex-direction:row-reverse !important}.flex-md-column-reverse{flex-direction:column-reverse !important}.flex-md-grow-0{flex-grow:0 !important}.flex-md-grow-1{flex-grow:1 !important}.flex-md-shrink-0{flex-shrink:0 !important}.flex-md-shrink-1{flex-shrink:1 !important}.flex-md-wrap{flex-wrap:wrap !important}.flex-md-nowrap{flex-wrap:nowrap !important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-md-0{gap:0 !important}.gap-md-1{gap:.25rem !important}.gap-md-2{gap:.5rem !important}.gap-md-3{gap:1rem !important}.gap-md-4{gap:1.5rem !important}.gap-md-5{gap:3rem !important}.justify-content-md-start{justify-content:flex-start !important}.justify-content-md-end{justify-content:flex-end !important}.justify-content-md-center{justify-content:center !important}.justify-content-md-between{justify-content:space-between !important}.justify-content-md-around{justify-content:space-around !important}.justify-content-md-evenly{justify-content:space-evenly !important}.align-items-md-start{align-items:flex-start !important}.align-items-md-end{align-items:flex-end !important}.align-items-md-center{align-items:center !important}.align-items-md-baseline{align-items:baseline !important}.align-items-md-stretch{align-items:stretch !important}.align-content-md-start{align-content:flex-start !important}.align-content-md-end{align-content:flex-end !important}.align-content-md-center{align-content:center !important}.align-content-md-between{align-content:space-between !important}.align-content-md-around{align-content:space-around !important}.align-content-md-stretch{align-content:stretch !important}.align-self-md-auto{align-self:auto !important}.align-self-md-start{align-self:flex-start !important}.align-self-md-end{align-self:flex-end !important}.align-self-md-center{align-self:center !important}.align-self-md-baseline{align-self:baseline !important}.align-self-md-stretch{align-self:stretch !important}.order-md-first{order:-1 !important}.order-md-0{order:0 !important}.order-md-1{order:1 !important}.order-md-2{order:2 !important}.order-md-3{order:3 !important}.order-md-4{order:4 !important}.order-md-5{order:5 !important}.order-md-last{order:6 !important}.m-md-0{margin:0 !important}.m-md-1{margin:.25rem !important}.m-md-2{margin:.5rem !important}.m-md-3{margin:1rem !important}.m-md-4{margin:1.5rem !important}.m-md-5{margin:3rem !important}.m-md-auto{margin:auto !important}.mx-md-0{margin-right:0 !important;margin-left:0 !important}.mx-md-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-md-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-md-3{margin-right:1rem !important;margin-left:1rem !important}.mx-md-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-md-5{margin-right:3rem !important;margin-left:3rem !important}.mx-md-auto{margin-right:auto !important;margin-left:auto !important}.my-md-0{margin-top:0 !important;margin-bottom:0 !important}.my-md-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-md-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-md-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-md-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-md-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-md-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-md-0{margin-top:0 !important}.mt-md-1{margin-top:.25rem !important}.mt-md-2{margin-top:.5rem !important}.mt-md-3{margin-top:1rem !important}.mt-md-4{margin-top:1.5rem !important}.mt-md-5{margin-top:3rem !important}.mt-md-auto{margin-top:auto !important}.me-md-0{margin-right:0 !important}.me-md-1{margin-right:.25rem !important}.me-md-2{margin-right:.5rem !important}.me-md-3{margin-right:1rem !important}.me-md-4{margin-right:1.5rem !important}.me-md-5{margin-right:3rem !important}.me-md-auto{margin-right:auto !important}.mb-md-0{margin-bottom:0 !important}.mb-md-1{margin-bottom:.25rem !important}.mb-md-2{margin-bottom:.5rem !important}.mb-md-3{margin-bottom:1rem !important}.mb-md-4{margin-bottom:1.5rem !important}.mb-md-5{margin-bottom:3rem !important}.mb-md-auto{margin-bottom:auto !important}.ms-md-0{margin-left:0 !important}.ms-md-1{margin-left:.25rem !important}.ms-md-2{margin-left:.5rem !important}.ms-md-3{margin-left:1rem !important}.ms-md-4{margin-left:1.5rem !important}.ms-md-5{margin-left:3rem !important}.ms-md-auto{margin-left:auto !important}.p-md-0{padding:0 !important}.p-md-1{padding:.25rem !important}.p-md-2{padding:.5rem !important}.p-md-3{padding:1rem !important}.p-md-4{padding:1.5rem !important}.p-md-5{padding:3rem !important}.px-md-0{padding-right:0 !important;padding-left:0 !important}.px-md-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-md-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-md-3{padding-right:1rem !important;padding-left:1rem !important}.px-md-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-md-5{padding-right:3rem !important;padding-left:3rem !important}.py-md-0{padding-top:0 !important;padding-bottom:0 !important}.py-md-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-md-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-md-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-md-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-md-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-md-0{padding-top:0 !important}.pt-md-1{padding-top:.25rem !important}.pt-md-2{padding-top:.5rem !important}.pt-md-3{padding-top:1rem !important}.pt-md-4{padding-top:1.5rem !important}.pt-md-5{padding-top:3rem !important}.pe-md-0{padding-right:0 !important}.pe-md-1{padding-right:.25rem !important}.pe-md-2{padding-right:.5rem !important}.pe-md-3{padding-right:1rem !important}.pe-md-4{padding-right:1.5rem !important}.pe-md-5{padding-right:3rem !important}.pb-md-0{padding-bottom:0 !important}.pb-md-1{padding-bottom:.25rem !important}.pb-md-2{padding-bottom:.5rem !important}.pb-md-3{padding-bottom:1rem !important}.pb-md-4{padding-bottom:1.5rem !important}.pb-md-5{padding-bottom:3rem !important}.ps-md-0{padding-left:0 !important}.ps-md-1{padding-left:.25rem !important}.ps-md-2{padding-left:.5rem !important}.ps-md-3{padding-left:1rem !important}.ps-md-4{padding-left:1.5rem !important}.ps-md-5{padding-left:3rem !important}.text-md-start{text-align:left !important}.text-md-end{text-align:right !important}.text-md-center{text-align:center !important}}@media(min-width: 992px){.float-lg-start{float:left !important}.float-lg-end{float:right !important}.float-lg-none{float:none !important}.d-lg-inline{display:inline !important}.d-lg-inline-block{display:inline-block !important}.d-lg-block{display:block !important}.d-lg-grid{display:grid !important}.d-lg-table{display:table !important}.d-lg-table-row{display:table-row !important}.d-lg-table-cell{display:table-cell !important}.d-lg-flex{display:flex !important}.d-lg-inline-flex{display:inline-flex !important}.d-lg-none{display:none !important}.flex-lg-fill{flex:1 1 auto !important}.flex-lg-row{flex-direction:row !important}.flex-lg-column{flex-direction:column !important}.flex-lg-row-reverse{flex-direction:row-reverse !important}.flex-lg-column-reverse{flex-direction:column-reverse !important}.flex-lg-grow-0{flex-grow:0 !important}.flex-lg-grow-1{flex-grow:1 !important}.flex-lg-shrink-0{flex-shrink:0 !important}.flex-lg-shrink-1{flex-shrink:1 !important}.flex-lg-wrap{flex-wrap:wrap !important}.flex-lg-nowrap{flex-wrap:nowrap !important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-lg-0{gap:0 !important}.gap-lg-1{gap:.25rem !important}.gap-lg-2{gap:.5rem !important}.gap-lg-3{gap:1rem !important}.gap-lg-4{gap:1.5rem !important}.gap-lg-5{gap:3rem !important}.justify-content-lg-start{justify-content:flex-start !important}.justify-content-lg-end{justify-content:flex-end !important}.justify-content-lg-center{justify-content:center !important}.justify-content-lg-between{justify-content:space-between !important}.justify-content-lg-around{justify-content:space-around !important}.justify-content-lg-evenly{justify-content:space-evenly !important}.align-items-lg-start{align-items:flex-start !important}.align-items-lg-end{align-items:flex-end !important}.align-items-lg-center{align-items:center !important}.align-items-lg-baseline{align-items:baseline !important}.align-items-lg-stretch{align-items:stretch !important}.align-content-lg-start{align-content:flex-start !important}.align-content-lg-end{align-content:flex-end !important}.align-content-lg-center{align-content:center !important}.align-content-lg-between{align-content:space-between !important}.align-content-lg-around{align-content:space-around !important}.align-content-lg-stretch{align-content:stretch !important}.align-self-lg-auto{align-self:auto !important}.align-self-lg-start{align-self:flex-start !important}.align-self-lg-end{align-self:flex-end !important}.align-self-lg-center{align-self:center !important}.align-self-lg-baseline{align-self:baseline !important}.align-self-lg-stretch{align-self:stretch !important}.order-lg-first{order:-1 !important}.order-lg-0{order:0 !important}.order-lg-1{order:1 !important}.order-lg-2{order:2 !important}.order-lg-3{order:3 !important}.order-lg-4{order:4 !important}.order-lg-5{order:5 !important}.order-lg-last{order:6 !important}.m-lg-0{margin:0 !important}.m-lg-1{margin:.25rem !important}.m-lg-2{margin:.5rem !important}.m-lg-3{margin:1rem !important}.m-lg-4{margin:1.5rem !important}.m-lg-5{margin:3rem !important}.m-lg-auto{margin:auto !important}.mx-lg-0{margin-right:0 !important;margin-left:0 !important}.mx-lg-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-lg-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-lg-3{margin-right:1rem !important;margin-left:1rem !important}.mx-lg-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-lg-5{margin-right:3rem !important;margin-left:3rem !important}.mx-lg-auto{margin-right:auto !important;margin-left:auto !important}.my-lg-0{margin-top:0 !important;margin-bottom:0 !important}.my-lg-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-lg-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-lg-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-lg-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-lg-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-lg-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-lg-0{margin-top:0 !important}.mt-lg-1{margin-top:.25rem !important}.mt-lg-2{margin-top:.5rem !important}.mt-lg-3{margin-top:1rem !important}.mt-lg-4{margin-top:1.5rem !important}.mt-lg-5{margin-top:3rem !important}.mt-lg-auto{margin-top:auto !important}.me-lg-0{margin-right:0 !important}.me-lg-1{margin-right:.25rem !important}.me-lg-2{margin-right:.5rem !important}.me-lg-3{margin-right:1rem !important}.me-lg-4{margin-right:1.5rem !important}.me-lg-5{margin-right:3rem !important}.me-lg-auto{margin-right:auto !important}.mb-lg-0{margin-bottom:0 !important}.mb-lg-1{margin-bottom:.25rem !important}.mb-lg-2{margin-bottom:.5rem !important}.mb-lg-3{margin-bottom:1rem !important}.mb-lg-4{margin-bottom:1.5rem !important}.mb-lg-5{margin-bottom:3rem !important}.mb-lg-auto{margin-bottom:auto !important}.ms-lg-0{margin-left:0 !important}.ms-lg-1{margin-left:.25rem !important}.ms-lg-2{margin-left:.5rem !important}.ms-lg-3{margin-left:1rem !important}.ms-lg-4{margin-left:1.5rem !important}.ms-lg-5{margin-left:3rem !important}.ms-lg-auto{margin-left:auto !important}.p-lg-0{padding:0 !important}.p-lg-1{padding:.25rem !important}.p-lg-2{padding:.5rem !important}.p-lg-3{padding:1rem !important}.p-lg-4{padding:1.5rem !important}.p-lg-5{padding:3rem !important}.px-lg-0{padding-right:0 !important;padding-left:0 !important}.px-lg-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-lg-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-lg-3{padding-right:1rem !important;padding-left:1rem !important}.px-lg-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-lg-5{padding-right:3rem !important;padding-left:3rem !important}.py-lg-0{padding-top:0 !important;padding-bottom:0 !important}.py-lg-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-lg-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-lg-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-lg-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-lg-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-lg-0{padding-top:0 !important}.pt-lg-1{padding-top:.25rem !important}.pt-lg-2{padding-top:.5rem !important}.pt-lg-3{padding-top:1rem !important}.pt-lg-4{padding-top:1.5rem !important}.pt-lg-5{padding-top:3rem !important}.pe-lg-0{padding-right:0 !important}.pe-lg-1{padding-right:.25rem !important}.pe-lg-2{padding-right:.5rem !important}.pe-lg-3{padding-right:1rem !important}.pe-lg-4{padding-right:1.5rem !important}.pe-lg-5{padding-right:3rem !important}.pb-lg-0{padding-bottom:0 !important}.pb-lg-1{padding-bottom:.25rem !important}.pb-lg-2{padding-bottom:.5rem !important}.pb-lg-3{padding-bottom:1rem !important}.pb-lg-4{padding-bottom:1.5rem !important}.pb-lg-5{padding-bottom:3rem !important}.ps-lg-0{padding-left:0 !important}.ps-lg-1{padding-left:.25rem !important}.ps-lg-2{padding-left:.5rem !important}.ps-lg-3{padding-left:1rem !important}.ps-lg-4{padding-left:1.5rem !important}.ps-lg-5{padding-left:3rem !important}.text-lg-start{text-align:left !important}.text-lg-end{text-align:right !important}.text-lg-center{text-align:center !important}}@media(min-width: 1200px){.float-xl-start{float:left !important}.float-xl-end{float:right !important}.float-xl-none{float:none !important}.d-xl-inline{display:inline !important}.d-xl-inline-block{display:inline-block !important}.d-xl-block{display:block !important}.d-xl-grid{display:grid !important}.d-xl-table{display:table !important}.d-xl-table-row{display:table-row !important}.d-xl-table-cell{display:table-cell !important}.d-xl-flex{display:flex !important}.d-xl-inline-flex{display:inline-flex !important}.d-xl-none{display:none !important}.flex-xl-fill{flex:1 1 auto !important}.flex-xl-row{flex-direction:row !important}.flex-xl-column{flex-direction:column !important}.flex-xl-row-reverse{flex-direction:row-reverse !important}.flex-xl-column-reverse{flex-direction:column-reverse !important}.flex-xl-grow-0{flex-grow:0 !important}.flex-xl-grow-1{flex-grow:1 !important}.flex-xl-shrink-0{flex-shrink:0 !important}.flex-xl-shrink-1{flex-shrink:1 !important}.flex-xl-wrap{flex-wrap:wrap !important}.flex-xl-nowrap{flex-wrap:nowrap !important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-xl-0{gap:0 !important}.gap-xl-1{gap:.25rem !important}.gap-xl-2{gap:.5rem !important}.gap-xl-3{gap:1rem !important}.gap-xl-4{gap:1.5rem !important}.gap-xl-5{gap:3rem !important}.justify-content-xl-start{justify-content:flex-start !important}.justify-content-xl-end{justify-content:flex-end !important}.justify-content-xl-center{justify-content:center !important}.justify-content-xl-between{justify-content:space-between !important}.justify-content-xl-around{justify-content:space-around !important}.justify-content-xl-evenly{justify-content:space-evenly !important}.align-items-xl-start{align-items:flex-start !important}.align-items-xl-end{align-items:flex-end !important}.align-items-xl-center{align-items:center !important}.align-items-xl-baseline{align-items:baseline !important}.align-items-xl-stretch{align-items:stretch !important}.align-content-xl-start{align-content:flex-start !important}.align-content-xl-end{align-content:flex-end !important}.align-content-xl-center{align-content:center !important}.align-content-xl-between{align-content:space-between !important}.align-content-xl-around{align-content:space-around !important}.align-content-xl-stretch{align-content:stretch !important}.align-self-xl-auto{align-self:auto !important}.align-self-xl-start{align-self:flex-start !important}.align-self-xl-end{align-self:flex-end !important}.align-self-xl-center{align-self:center !important}.align-self-xl-baseline{align-self:baseline !important}.align-self-xl-stretch{align-self:stretch !important}.order-xl-first{order:-1 !important}.order-xl-0{order:0 !important}.order-xl-1{order:1 !important}.order-xl-2{order:2 !important}.order-xl-3{order:3 !important}.order-xl-4{order:4 !important}.order-xl-5{order:5 !important}.order-xl-last{order:6 !important}.m-xl-0{margin:0 !important}.m-xl-1{margin:.25rem !important}.m-xl-2{margin:.5rem !important}.m-xl-3{margin:1rem !important}.m-xl-4{margin:1.5rem !important}.m-xl-5{margin:3rem !important}.m-xl-auto{margin:auto !important}.mx-xl-0{margin-right:0 !important;margin-left:0 !important}.mx-xl-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-xl-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-xl-3{margin-right:1rem !important;margin-left:1rem !important}.mx-xl-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-xl-5{margin-right:3rem !important;margin-left:3rem !important}.mx-xl-auto{margin-right:auto !important;margin-left:auto !important}.my-xl-0{margin-top:0 !important;margin-bottom:0 !important}.my-xl-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-xl-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-xl-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-xl-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-xl-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-xl-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-xl-0{margin-top:0 !important}.mt-xl-1{margin-top:.25rem !important}.mt-xl-2{margin-top:.5rem !important}.mt-xl-3{margin-top:1rem !important}.mt-xl-4{margin-top:1.5rem !important}.mt-xl-5{margin-top:3rem !important}.mt-xl-auto{margin-top:auto !important}.me-xl-0{margin-right:0 !important}.me-xl-1{margin-right:.25rem !important}.me-xl-2{margin-right:.5rem !important}.me-xl-3{margin-right:1rem !important}.me-xl-4{margin-right:1.5rem !important}.me-xl-5{margin-right:3rem !important}.me-xl-auto{margin-right:auto !important}.mb-xl-0{margin-bottom:0 !important}.mb-xl-1{margin-bottom:.25rem !important}.mb-xl-2{margin-bottom:.5rem !important}.mb-xl-3{margin-bottom:1rem !important}.mb-xl-4{margin-bottom:1.5rem !important}.mb-xl-5{margin-bottom:3rem !important}.mb-xl-auto{margin-bottom:auto !important}.ms-xl-0{margin-left:0 !important}.ms-xl-1{margin-left:.25rem !important}.ms-xl-2{margin-left:.5rem !important}.ms-xl-3{margin-left:1rem !important}.ms-xl-4{margin-left:1.5rem !important}.ms-xl-5{margin-left:3rem !important}.ms-xl-auto{margin-left:auto !important}.p-xl-0{padding:0 !important}.p-xl-1{padding:.25rem !important}.p-xl-2{padding:.5rem !important}.p-xl-3{padding:1rem !important}.p-xl-4{padding:1.5rem !important}.p-xl-5{padding:3rem !important}.px-xl-0{padding-right:0 !important;padding-left:0 !important}.px-xl-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-xl-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-xl-3{padding-right:1rem !important;padding-left:1rem !important}.px-xl-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-xl-5{padding-right:3rem !important;padding-left:3rem !important}.py-xl-0{padding-top:0 !important;padding-bottom:0 !important}.py-xl-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-xl-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-xl-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-xl-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-xl-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-xl-0{padding-top:0 !important}.pt-xl-1{padding-top:.25rem !important}.pt-xl-2{padding-top:.5rem !important}.pt-xl-3{padding-top:1rem !important}.pt-xl-4{padding-top:1.5rem !important}.pt-xl-5{padding-top:3rem !important}.pe-xl-0{padding-right:0 !important}.pe-xl-1{padding-right:.25rem !important}.pe-xl-2{padding-right:.5rem !important}.pe-xl-3{padding-right:1rem !important}.pe-xl-4{padding-right:1.5rem !important}.pe-xl-5{padding-right:3rem !important}.pb-xl-0{padding-bottom:0 !important}.pb-xl-1{padding-bottom:.25rem !important}.pb-xl-2{padding-bottom:.5rem !important}.pb-xl-3{padding-bottom:1rem !important}.pb-xl-4{padding-bottom:1.5rem !important}.pb-xl-5{padding-bottom:3rem !important}.ps-xl-0{padding-left:0 !important}.ps-xl-1{padding-left:.25rem !important}.ps-xl-2{padding-left:.5rem !important}.ps-xl-3{padding-left:1rem !important}.ps-xl-4{padding-left:1.5rem !important}.ps-xl-5{padding-left:3rem !important}.text-xl-start{text-align:left !important}.text-xl-end{text-align:right !important}.text-xl-center{text-align:center !important}}@media(min-width: 1400px){.float-xxl-start{float:left !important}.float-xxl-end{float:right !important}.float-xxl-none{float:none !important}.d-xxl-inline{display:inline !important}.d-xxl-inline-block{display:inline-block !important}.d-xxl-block{display:block !important}.d-xxl-grid{display:grid !important}.d-xxl-table{display:table !important}.d-xxl-table-row{display:table-row !important}.d-xxl-table-cell{display:table-cell !important}.d-xxl-flex{display:flex !important}.d-xxl-inline-flex{display:inline-flex !important}.d-xxl-none{display:none !important}.flex-xxl-fill{flex:1 1 auto !important}.flex-xxl-row{flex-direction:row !important}.flex-xxl-column{flex-direction:column !important}.flex-xxl-row-reverse{flex-direction:row-reverse !important}.flex-xxl-column-reverse{flex-direction:column-reverse !important}.flex-xxl-grow-0{flex-grow:0 !important}.flex-xxl-grow-1{flex-grow:1 !important}.flex-xxl-shrink-0{flex-shrink:0 !important}.flex-xxl-shrink-1{flex-shrink:1 !important}.flex-xxl-wrap{flex-wrap:wrap !important}.flex-xxl-nowrap{flex-wrap:nowrap !important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-xxl-0{gap:0 !important}.gap-xxl-1{gap:.25rem !important}.gap-xxl-2{gap:.5rem !important}.gap-xxl-3{gap:1rem !important}.gap-xxl-4{gap:1.5rem !important}.gap-xxl-5{gap:3rem !important}.justify-content-xxl-start{justify-content:flex-start !important}.justify-content-xxl-end{justify-content:flex-end !important}.justify-content-xxl-center{justify-content:center !important}.justify-content-xxl-between{justify-content:space-between !important}.justify-content-xxl-around{justify-content:space-around !important}.justify-content-xxl-evenly{justify-content:space-evenly !important}.align-items-xxl-start{align-items:flex-start !important}.align-items-xxl-end{align-items:flex-end !important}.align-items-xxl-center{align-items:center !important}.align-items-xxl-baseline{align-items:baseline !important}.align-items-xxl-stretch{align-items:stretch !important}.align-content-xxl-start{align-content:flex-start !important}.align-content-xxl-end{align-content:flex-end !important}.align-content-xxl-center{align-content:center !important}.align-content-xxl-between{align-content:space-between !important}.align-content-xxl-around{align-content:space-around !important}.align-content-xxl-stretch{align-content:stretch !important}.align-self-xxl-auto{align-self:auto !important}.align-self-xxl-start{align-self:flex-start !important}.align-self-xxl-end{align-self:flex-end !important}.align-self-xxl-center{align-self:center !important}.align-self-xxl-baseline{align-self:baseline !important}.align-self-xxl-stretch{align-self:stretch !important}.order-xxl-first{order:-1 !important}.order-xxl-0{order:0 !important}.order-xxl-1{order:1 !important}.order-xxl-2{order:2 !important}.order-xxl-3{order:3 !important}.order-xxl-4{order:4 !important}.order-xxl-5{order:5 !important}.order-xxl-last{order:6 !important}.m-xxl-0{margin:0 !important}.m-xxl-1{margin:.25rem !important}.m-xxl-2{margin:.5rem !important}.m-xxl-3{margin:1rem !important}.m-xxl-4{margin:1.5rem !important}.m-xxl-5{margin:3rem !important}.m-xxl-auto{margin:auto !important}.mx-xxl-0{margin-right:0 !important;margin-left:0 !important}.mx-xxl-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-xxl-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-xxl-3{margin-right:1rem !important;margin-left:1rem !important}.mx-xxl-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-xxl-5{margin-right:3rem !important;margin-left:3rem !important}.mx-xxl-auto{margin-right:auto !important;margin-left:auto !important}.my-xxl-0{margin-top:0 !important;margin-bottom:0 !important}.my-xxl-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-xxl-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-xxl-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-xxl-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-xxl-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-xxl-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-xxl-0{margin-top:0 !important}.mt-xxl-1{margin-top:.25rem !important}.mt-xxl-2{margin-top:.5rem !important}.mt-xxl-3{margin-top:1rem !important}.mt-xxl-4{margin-top:1.5rem !important}.mt-xxl-5{margin-top:3rem !important}.mt-xxl-auto{margin-top:auto !important}.me-xxl-0{margin-right:0 !important}.me-xxl-1{margin-right:.25rem !important}.me-xxl-2{margin-right:.5rem !important}.me-xxl-3{margin-right:1rem !important}.me-xxl-4{margin-right:1.5rem !important}.me-xxl-5{margin-right:3rem !important}.me-xxl-auto{margin-right:auto !important}.mb-xxl-0{margin-bottom:0 !important}.mb-xxl-1{margin-bottom:.25rem !important}.mb-xxl-2{margin-bottom:.5rem !important}.mb-xxl-3{margin-bottom:1rem !important}.mb-xxl-4{margin-bottom:1.5rem !important}.mb-xxl-5{margin-bottom:3rem !important}.mb-xxl-auto{margin-bottom:auto !important}.ms-xxl-0{margin-left:0 !important}.ms-xxl-1{margin-left:.25rem !important}.ms-xxl-2{margin-left:.5rem !important}.ms-xxl-3{margin-left:1rem !important}.ms-xxl-4{margin-left:1.5rem !important}.ms-xxl-5{margin-left:3rem !important}.ms-xxl-auto{margin-left:auto !important}.p-xxl-0{padding:0 !important}.p-xxl-1{padding:.25rem !important}.p-xxl-2{padding:.5rem !important}.p-xxl-3{padding:1rem !important}.p-xxl-4{padding:1.5rem !important}.p-xxl-5{padding:3rem !important}.px-xxl-0{padding-right:0 !important;padding-left:0 !important}.px-xxl-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-xxl-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-xxl-3{padding-right:1rem !important;padding-left:1rem !important}.px-xxl-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-xxl-5{padding-right:3rem !important;padding-left:3rem !important}.py-xxl-0{padding-top:0 !important;padding-bottom:0 !important}.py-xxl-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-xxl-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-xxl-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-xxl-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-xxl-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-xxl-0{padding-top:0 !important}.pt-xxl-1{padding-top:.25rem !important}.pt-xxl-2{padding-top:.5rem !important}.pt-xxl-3{padding-top:1rem !important}.pt-xxl-4{padding-top:1.5rem !important}.pt-xxl-5{padding-top:3rem !important}.pe-xxl-0{padding-right:0 !important}.pe-xxl-1{padding-right:.25rem !important}.pe-xxl-2{padding-right:.5rem !important}.pe-xxl-3{padding-right:1rem !important}.pe-xxl-4{padding-right:1.5rem !important}.pe-xxl-5{padding-right:3rem !important}.pb-xxl-0{padding-bottom:0 !important}.pb-xxl-1{padding-bottom:.25rem !important}.pb-xxl-2{padding-bottom:.5rem !important}.pb-xxl-3{padding-bottom:1rem !important}.pb-xxl-4{padding-bottom:1.5rem !important}.pb-xxl-5{padding-bottom:3rem !important}.ps-xxl-0{padding-left:0 !important}.ps-xxl-1{padding-left:.25rem !important}.ps-xxl-2{padding-left:.5rem !important}.ps-xxl-3{padding-left:1rem !important}.ps-xxl-4{padding-left:1.5rem !important}.ps-xxl-5{padding-left:3rem !important}.text-xxl-start{text-align:left !important}.text-xxl-end{text-align:right !important}.text-xxl-center{text-align:center !important}}.bg-default{color:#fff}.bg-primary{color:#fff}.bg-secondary{color:#fff}.bg-success{color:#fff}.bg-info{color:#fff}.bg-warning{color:#fff}.bg-danger{color:#fff}.bg-light{color:#000}.bg-dark{color:#fff}@media(min-width: 1200px){.fs-1{font-size:2rem !important}.fs-2{font-size:1.65rem !important}.fs-3{font-size:1.45rem !important}}@media print{.d-print-inline{display:inline !important}.d-print-inline-block{display:inline-block !important}.d-print-block{display:block !important}.d-print-grid{display:grid !important}.d-print-table{display:table !important}.d-print-table-row{display:table-row !important}.d-print-table-cell{display:table-cell !important}.d-print-flex{display:flex !important}.d-print-inline-flex{display:inline-flex !important}.d-print-none{display:none !important}}.quarto-container{min-height:calc(100vh - 132px)}footer.footer .nav-footer,#quarto-header>nav{padding-left:1em;padding-right:1em}nav[role=doc-toc]{padding-left:.5em}#quarto-content>*{padding-top:14px}@media(max-width: 991.98px){#quarto-content>*{padding-top:0}#quarto-content .subtitle{padding-top:14px}#quarto-content section:first-of-type h2:first-of-type,#quarto-content section:first-of-type .h2:first-of-type{margin-top:1rem}}.headroom-target,header.headroom{will-change:transform;transition:position 200ms linear;transition:all 200ms linear}header.headroom--pinned{transform:translateY(0%)}header.headroom--unpinned{transform:translateY(-100%)}.navbar-container{width:100%}.navbar-brand{overflow:hidden;text-overflow:ellipsis}.navbar-brand-container{max-width:calc(100% - 115px);min-width:0;display:flex;align-items:center}@media(min-width: 992px){.navbar-brand-container{margin-right:1em}}.navbar-brand.navbar-brand-logo{margin-right:4px;display:inline-flex}.navbar-toggler{flex-basis:content;flex-shrink:0}.navbar .navbar-toggler{order:-1;margin-right:.5em}.navbar-logo{max-height:24px;width:auto;padding-right:4px}nav .nav-item:not(.compact){padding-top:1px}nav .nav-link i,nav .dropdown-item i{padding-right:1px}.navbar-expand-lg .navbar-nav .nav-link{padding-left:.6rem;padding-right:.6rem}nav .nav-item.compact .nav-link{padding-left:.5rem;padding-right:.5rem;font-size:1.1rem}.navbar .quarto-navbar-tools div.dropdown{display:inline-block}.navbar .quarto-navbar-tools .quarto-navigation-tool{color:#545555}.navbar .quarto-navbar-tools .quarto-navigation-tool:hover{color:#545557}@media(max-width: 991.98px){.navbar .quarto-navbar-tools{margin-top:.25em;padding-top:.75em;display:block;color:solid #d4d4d4 1px;text-align:center;vertical-align:middle;margin-right:auto}}.navbar-nav .dropdown-menu{min-width:220px;font-size:.9rem}.navbar .navbar-nav .nav-link.dropdown-toggle::after{opacity:.75;vertical-align:.175em}.navbar ul.dropdown-menu{padding-top:0;padding-bottom:0}.navbar .dropdown-header{text-transform:uppercase;font-size:.8rem;padding:0 .5rem}.navbar .dropdown-item{padding:.4rem .5rem}.navbar .dropdown-item>i.bi{margin-left:.1rem;margin-right:.25em}.sidebar #quarto-search{margin-top:-1px}.sidebar #quarto-search svg.aa-SubmitIcon{width:16px;height:16px}.sidebar-navigation a{color:inherit}.sidebar-title{margin-top:.25rem;padding-bottom:.5rem;font-size:1.3rem;line-height:1.6rem;visibility:visible}.sidebar-title>a{font-size:inherit;text-decoration:none}.sidebar-title .sidebar-tools-main{margin-top:-6px}@media(max-width: 991.98px){#quarto-sidebar div.sidebar-header{padding-top:.2em}}.sidebar-header-stacked .sidebar-title{margin-top:.6rem}.sidebar-logo{max-width:90%;padding-bottom:.5rem}.sidebar-logo-link{text-decoration:none}.sidebar-navigation li a{text-decoration:none}.sidebar-navigation .quarto-navigation-tool{opacity:.7;font-size:.875rem}#quarto-sidebar>nav>.sidebar-tools-main{margin-left:14px}.sidebar-tools-main{display:inline-flex;margin-left:0px;order:2}.sidebar-tools-main:not(.tools-wide){vertical-align:middle}.sidebar-navigation .quarto-navigation-tool.dropdown-toggle::after{display:none}.sidebar.sidebar-navigation>*{padding-top:1em}.sidebar-item{margin-bottom:.2em}.sidebar-section{margin-top:.2em;padding-left:.5em;padding-bottom:.2em}.sidebar-item .sidebar-item-container{display:flex;justify-content:space-between}.sidebar-item-toggle:hover{cursor:pointer}.sidebar-item .sidebar-item-toggle .bi{font-size:.7rem;text-align:center}.sidebar-item .sidebar-item-toggle .bi-chevron-right::before{transition:transform 200ms ease}.sidebar-item .sidebar-item-toggle[aria-expanded=false] .bi-chevron-right::before{transform:none}.sidebar-item .sidebar-item-toggle[aria-expanded=true] .bi-chevron-right::before{transform:rotate(90deg)}.sidebar-navigation .sidebar-divider{margin-left:0;margin-right:0;margin-top:.5rem;margin-bottom:.5rem}@media(max-width: 991.98px){.quarto-secondary-nav{display:block}.quarto-secondary-nav button.quarto-search-button{padding-right:0em;padding-left:2em}.quarto-secondary-nav button.quarto-btn-toggle{margin-left:-0.75rem;margin-right:.15rem}.quarto-secondary-nav nav.quarto-page-breadcrumbs{display:flex;align-items:center;padding-right:1em;margin-left:-0.25em}.quarto-secondary-nav nav.quarto-page-breadcrumbs a{text-decoration:none}.quarto-secondary-nav nav.quarto-page-breadcrumbs ol.breadcrumb{margin-bottom:0}}@media(min-width: 992px){.quarto-secondary-nav{display:none}}.quarto-secondary-nav .quarto-btn-toggle{color:#595959}.quarto-secondary-nav[aria-expanded=false] .quarto-btn-toggle .bi-chevron-right::before{transform:none}.quarto-secondary-nav[aria-expanded=true] .quarto-btn-toggle .bi-chevron-right::before{transform:rotate(90deg)}.quarto-secondary-nav .quarto-btn-toggle .bi-chevron-right::before{transition:transform 200ms ease}.quarto-secondary-nav{cursor:pointer}.quarto-secondary-nav-title{margin-top:.3em;color:#595959;padding-top:4px}.quarto-secondary-nav nav.quarto-page-breadcrumbs{color:#595959}.quarto-secondary-nav nav.quarto-page-breadcrumbs a{color:#595959}.quarto-secondary-nav nav.quarto-page-breadcrumbs a:hover{color:rgba(88,89,92,.8)}.quarto-secondary-nav nav.quarto-page-breadcrumbs .breadcrumb-item::before{color:#8c8c8c}div.sidebar-item-container{color:#595959}div.sidebar-item-container:hover,div.sidebar-item-container:focus{color:rgba(88,89,92,.8)}div.sidebar-item-container.disabled{color:rgba(89,89,89,.75)}div.sidebar-item-container .active,div.sidebar-item-container .show>.nav-link,div.sidebar-item-container .sidebar-link>code{color:#58595c}div.sidebar.sidebar-navigation.rollup.quarto-sidebar-toggle-contents,nav.sidebar.sidebar-navigation:not(.rollup){background-color:#fff}@media(max-width: 991.98px){.sidebar-navigation .sidebar-item a,.nav-page .nav-page-text,.sidebar-navigation{font-size:1rem}.sidebar-navigation ul.sidebar-section.depth1 .sidebar-section-item{font-size:1.1rem}.sidebar-logo{display:none}.sidebar.sidebar-navigation{position:static;border-bottom:1px solid #dee2e6}.sidebar.sidebar-navigation.collapsing{position:fixed;z-index:1000}.sidebar.sidebar-navigation.show{position:fixed;z-index:1000}.sidebar.sidebar-navigation{min-height:100%}nav.quarto-secondary-nav{background-color:#fff;border-bottom:1px solid #dee2e6}.sidebar .sidebar-footer{visibility:visible;padding-top:1rem;position:inherit}.sidebar-tools-collapse{display:block}}#quarto-sidebar{transition:width .15s ease-in}#quarto-sidebar>*{padding-right:1em}@media(max-width: 991.98px){#quarto-sidebar .sidebar-menu-container{white-space:nowrap;min-width:225px}#quarto-sidebar.show{transition:width .15s ease-out}}@media(min-width: 992px){#quarto-sidebar{display:flex;flex-direction:column}.nav-page .nav-page-text,.sidebar-navigation .sidebar-section .sidebar-item{font-size:.875rem}.sidebar-navigation .sidebar-item{font-size:.925rem}.sidebar.sidebar-navigation{display:block;position:sticky}.sidebar-search{width:100%}.sidebar .sidebar-footer{visibility:visible}}@media(max-width: 991.98px){#quarto-sidebar-glass{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(255,255,255,0);transition:background-color .15s ease-in;z-index:-1}#quarto-sidebar-glass.collapsing{z-index:1000}#quarto-sidebar-glass.show{transition:background-color .15s ease-out;background-color:rgba(102,102,102,.4);z-index:1000}}.sidebar .sidebar-footer{padding:.5rem 1rem;align-self:flex-end;color:#6c757d;width:100%}.quarto-page-breadcrumbs .breadcrumb-item+.breadcrumb-item,.quarto-page-breadcrumbs .breadcrumb-item{padding-right:.33em;padding-left:0}.quarto-page-breadcrumbs .breadcrumb-item::before{padding-right:.33em}.quarto-sidebar-footer{font-size:.875em}.sidebar-section .bi-chevron-right{vertical-align:middle}.sidebar-section .bi-chevron-right::before{font-size:.9em}.notransition{-webkit-transition:none !important;-moz-transition:none !important;-o-transition:none !important;transition:none !important}.btn:focus:not(:focus-visible){box-shadow:none}.page-navigation{display:flex;justify-content:space-between}.nav-page{padding-bottom:.75em}.nav-page .bi{font-size:1.8rem;vertical-align:middle}.nav-page .nav-page-text{padding-left:.25em;padding-right:.25em}.nav-page a{color:#6c757d;text-decoration:none;display:flex;align-items:center}.nav-page a:hover{color:#57585a}.toc-actions{display:flex}.toc-actions p{margin-block-start:0;margin-block-end:0}.toc-actions a{text-decoration:none;color:inherit;font-weight:400}.toc-actions a:hover{color:#57585a}.toc-actions .action-links{margin-left:4px}.sidebar nav[role=doc-toc] .toc-actions .bi{margin-left:-4px;font-size:.7rem;color:#6c757d}.sidebar nav[role=doc-toc] .toc-actions .bi:before{padding-top:3px}#quarto-margin-sidebar .toc-actions .bi:before{margin-top:.3rem;font-size:.7rem;color:#6c757d;vertical-align:top}.sidebar nav[role=doc-toc] .toc-actions>div:first-of-type{margin-top:-3px}#quarto-margin-sidebar .toc-actions p,.sidebar nav[role=doc-toc] .toc-actions p{font-size:.875rem}.nav-footer .toc-actions{padding-bottom:.5em;padding-top:.5em}.nav-footer .toc-actions :first-child{margin-left:auto}.nav-footer .toc-actions :last-child{margin-right:auto}.nav-footer .toc-actions .action-links{display:flex}.nav-footer .toc-actions .action-links p{padding-right:1.5em}.nav-footer .toc-actions .action-links p:last-of-type{padding-right:0}.nav-footer{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between;align-items:baseline;text-align:center;padding-top:.5rem;padding-bottom:.5rem;background-color:#fff}body.nav-fixed{padding-top:64px}.nav-footer-contents{color:#6c757d;margin-top:.25rem}.nav-footer{min-height:3.5em;color:#757575}.nav-footer a{color:#757575}.nav-footer .nav-footer-left{font-size:.825em}.nav-footer .nav-footer-center{font-size:.825em}.nav-footer .nav-footer-right{font-size:.825em}.nav-footer-left .footer-items,.nav-footer-center .footer-items,.nav-footer-right .footer-items{display:inline-flex;padding-top:.3em;padding-bottom:.3em;margin-bottom:0em}.nav-footer-left .footer-items .nav-link,.nav-footer-center .footer-items .nav-link,.nav-footer-right .footer-items .nav-link{padding-left:.6em;padding-right:.6em}.nav-footer-left{flex:1 1 0px;text-align:left}.nav-footer-right{flex:1 1 0px;text-align:right}.nav-footer-center{flex:1 1 0px;min-height:3em;text-align:center}.nav-footer-center .footer-items{justify-content:center}@media(max-width: 767.98px){.nav-footer-center{margin-top:3em}}.navbar .quarto-reader-toggle.reader .quarto-reader-toggle-btn{background-color:#545555;border-radius:3px}.quarto-reader-toggle.reader.quarto-navigation-tool .quarto-reader-toggle-btn{background-color:#595959;border-radius:3px}.quarto-reader-toggle .quarto-reader-toggle-btn{display:inline-flex;padding-left:.2em;padding-right:.2em;margin-left:-0.2em;margin-right:-0.2em;text-align:center}.navbar .quarto-reader-toggle:not(.reader) .bi::before{background-image:url('data:image/svg+xml,')}.navbar .quarto-reader-toggle.reader .bi::before{background-image:url('data:image/svg+xml,')}.sidebar-navigation .quarto-reader-toggle:not(.reader) .bi::before{background-image:url('data:image/svg+xml,')}.sidebar-navigation .quarto-reader-toggle.reader .bi::before{background-image:url('data:image/svg+xml,')}#quarto-back-to-top{display:none;position:fixed;bottom:50px;background-color:#fff;border-radius:.25rem;box-shadow:0 .2rem .5rem #6c757d,0 0 .05rem #6c757d;color:#6c757d;text-decoration:none;font-size:.9em;text-align:center;left:50%;padding:.4rem .8rem;transform:translate(-50%, 0)}.aa-DetachedOverlay ul.aa-List,#quarto-search-results ul.aa-List{list-style:none;padding-left:0}.aa-DetachedOverlay .aa-Panel,#quarto-search-results .aa-Panel{background-color:#fff;position:absolute;z-index:2000}#quarto-search-results .aa-Panel{max-width:400px}#quarto-search input{font-size:.925rem}@media(min-width: 992px){.navbar #quarto-search{margin-left:.25rem;order:999}}@media(max-width: 991.98px){#quarto-sidebar .sidebar-search{display:none}}#quarto-sidebar .sidebar-search .aa-Autocomplete{width:100%}.navbar .aa-Autocomplete .aa-Form{width:180px}.navbar #quarto-search.type-overlay .aa-Autocomplete{width:40px}.navbar #quarto-search.type-overlay .aa-Autocomplete .aa-Form{background-color:inherit;border:none}.navbar #quarto-search.type-overlay .aa-Autocomplete .aa-Form:focus-within{box-shadow:none;outline:none}.navbar #quarto-search.type-overlay .aa-Autocomplete .aa-Form .aa-InputWrapper{display:none}.navbar #quarto-search.type-overlay .aa-Autocomplete .aa-Form .aa-InputWrapper:focus-within{display:inherit}.navbar #quarto-search.type-overlay .aa-Autocomplete .aa-Form .aa-Label svg,.navbar #quarto-search.type-overlay .aa-Autocomplete .aa-Form .aa-LoadingIndicator svg{width:26px;height:26px;color:#545555;opacity:1}.navbar #quarto-search.type-overlay .aa-Autocomplete svg.aa-SubmitIcon{width:26px;height:26px;color:#545555;opacity:1}.aa-Autocomplete .aa-Form,.aa-DetachedFormContainer .aa-Form{align-items:center;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem;color:#373a3c;display:flex;line-height:1em;margin:0;position:relative;width:100%}.aa-Autocomplete .aa-Form:focus-within,.aa-DetachedFormContainer .aa-Form:focus-within{box-shadow:rgba(109,110,113,.6) 0 0 0 1px;outline:currentColor none medium}.aa-Autocomplete .aa-Form .aa-InputWrapperPrefix,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperPrefix{align-items:center;display:flex;flex-shrink:0;order:1}.aa-Autocomplete .aa-Form .aa-InputWrapperPrefix .aa-Label,.aa-Autocomplete .aa-Form .aa-InputWrapperPrefix .aa-LoadingIndicator,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperPrefix .aa-Label,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperPrefix .aa-LoadingIndicator{cursor:initial;flex-shrink:0;padding:0;text-align:left}.aa-Autocomplete .aa-Form .aa-InputWrapperPrefix .aa-Label svg,.aa-Autocomplete .aa-Form .aa-InputWrapperPrefix .aa-LoadingIndicator svg,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperPrefix .aa-Label svg,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperPrefix .aa-LoadingIndicator svg{color:#373a3c;opacity:.5}.aa-Autocomplete .aa-Form .aa-InputWrapperPrefix .aa-SubmitButton,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperPrefix .aa-SubmitButton{appearance:none;background:none;border:0;margin:0}.aa-Autocomplete .aa-Form .aa-InputWrapperPrefix .aa-LoadingIndicator,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperPrefix .aa-LoadingIndicator{align-items:center;display:flex;justify-content:center}.aa-Autocomplete .aa-Form .aa-InputWrapperPrefix .aa-LoadingIndicator[hidden],.aa-DetachedFormContainer .aa-Form .aa-InputWrapperPrefix .aa-LoadingIndicator[hidden]{display:none}.aa-Autocomplete .aa-Form .aa-InputWrapper,.aa-DetachedFormContainer .aa-Form .aa-InputWrapper{order:3;position:relative;width:100%}.aa-Autocomplete .aa-Form .aa-InputWrapper .aa-Input,.aa-DetachedFormContainer .aa-Form .aa-InputWrapper .aa-Input{appearance:none;background:none;border:0;color:#373a3c;font:inherit;height:calc(1.5em + .1rem + 2px);padding:0;width:100%}.aa-Autocomplete .aa-Form .aa-InputWrapper .aa-Input::placeholder,.aa-DetachedFormContainer .aa-Form .aa-InputWrapper .aa-Input::placeholder{color:#373a3c;opacity:.8}.aa-Autocomplete .aa-Form .aa-InputWrapper .aa-Input:focus,.aa-DetachedFormContainer .aa-Form .aa-InputWrapper .aa-Input:focus{border-color:none;box-shadow:none;outline:none}.aa-Autocomplete .aa-Form .aa-InputWrapper .aa-Input::-webkit-search-decoration,.aa-Autocomplete .aa-Form .aa-InputWrapper .aa-Input::-webkit-search-cancel-button,.aa-Autocomplete .aa-Form .aa-InputWrapper .aa-Input::-webkit-search-results-button,.aa-Autocomplete .aa-Form .aa-InputWrapper .aa-Input::-webkit-search-results-decoration,.aa-DetachedFormContainer .aa-Form .aa-InputWrapper .aa-Input::-webkit-search-decoration,.aa-DetachedFormContainer .aa-Form .aa-InputWrapper .aa-Input::-webkit-search-cancel-button,.aa-DetachedFormContainer .aa-Form .aa-InputWrapper .aa-Input::-webkit-search-results-button,.aa-DetachedFormContainer .aa-Form .aa-InputWrapper .aa-Input::-webkit-search-results-decoration{display:none}.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix{align-items:center;display:flex;order:4}.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix .aa-ClearButton,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix .aa-ClearButton{align-items:center;background:none;border:0;color:#373a3c;opacity:.8;cursor:pointer;display:flex;margin:0;width:calc(1.5em + .1rem + 2px)}.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix .aa-ClearButton:hover,.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix .aa-ClearButton:focus,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix .aa-ClearButton:hover,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix .aa-ClearButton:focus{color:#373a3c;opacity:.8}.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix .aa-ClearButton[hidden],.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix .aa-ClearButton[hidden]{display:none}.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix .aa-ClearButton svg,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix .aa-ClearButton svg{width:calc(1.5em + 0.75rem + 2px)}.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix .aa-CopyButton,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix .aa-CopyButton{border:none;align-items:center;background:none;color:#373a3c;opacity:.4;font-size:.7rem;cursor:pointer;display:none;margin:0;width:calc(1em + .1rem + 2px)}.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix .aa-CopyButton:hover,.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix .aa-CopyButton:focus,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix .aa-CopyButton:hover,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix .aa-CopyButton:focus{color:#373a3c;opacity:.8}.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix .aa-CopyButton[hidden],.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix .aa-CopyButton[hidden]{display:none}.aa-PanelLayout:empty{display:none}.quarto-search-no-results.no-query{display:none}.aa-Source:has(.no-query){display:none}#quarto-search-results .aa-Panel{border:solid #ced4da 1px}#quarto-search-results .aa-SourceNoResults{width:398px}.aa-DetachedOverlay .aa-Panel,#quarto-search-results .aa-Panel{max-height:65vh;overflow-y:auto;font-size:.925rem}.aa-DetachedOverlay .aa-SourceNoResults,#quarto-search-results .aa-SourceNoResults{height:60px;display:flex;justify-content:center;align-items:center}.aa-DetachedOverlay .search-error,#quarto-search-results .search-error{padding-top:10px;padding-left:20px;padding-right:20px;cursor:default}.aa-DetachedOverlay .search-error .search-error-title,#quarto-search-results .search-error .search-error-title{font-size:1.1rem;margin-bottom:.5rem}.aa-DetachedOverlay .search-error .search-error-title .search-error-icon,#quarto-search-results .search-error .search-error-title .search-error-icon{margin-right:8px}.aa-DetachedOverlay .search-error .search-error-text,#quarto-search-results .search-error .search-error-text{font-weight:300}.aa-DetachedOverlay .search-result-text,#quarto-search-results .search-result-text{font-weight:300;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;line-height:1.2rem;max-height:2.4rem}.aa-DetachedOverlay .aa-SourceHeader .search-result-header,#quarto-search-results .aa-SourceHeader .search-result-header{font-size:.875rem;background-color:#f2f2f2;padding-left:14px;padding-bottom:4px;padding-top:4px}.aa-DetachedOverlay .aa-SourceHeader .search-result-header-no-results,#quarto-search-results .aa-SourceHeader .search-result-header-no-results{display:none}.aa-DetachedOverlay .aa-SourceFooter .algolia-search-logo,#quarto-search-results .aa-SourceFooter .algolia-search-logo{width:110px;opacity:.85;margin:8px;float:right}.aa-DetachedOverlay .search-result-section,#quarto-search-results .search-result-section{font-size:.925em}.aa-DetachedOverlay a.search-result-link,#quarto-search-results a.search-result-link{color:inherit;text-decoration:none}.aa-DetachedOverlay li.aa-Item[aria-selected=true] .search-item,#quarto-search-results li.aa-Item[aria-selected=true] .search-item{background-color:#6d6e71}.aa-DetachedOverlay li.aa-Item[aria-selected=true] .search-item.search-result-more,.aa-DetachedOverlay li.aa-Item[aria-selected=true] .search-item .search-result-section,.aa-DetachedOverlay li.aa-Item[aria-selected=true] .search-item .search-result-text,.aa-DetachedOverlay li.aa-Item[aria-selected=true] .search-item .search-result-title-container,.aa-DetachedOverlay li.aa-Item[aria-selected=true] .search-item .search-result-text-container,#quarto-search-results li.aa-Item[aria-selected=true] .search-item.search-result-more,#quarto-search-results li.aa-Item[aria-selected=true] .search-item .search-result-section,#quarto-search-results li.aa-Item[aria-selected=true] .search-item .search-result-text,#quarto-search-results li.aa-Item[aria-selected=true] .search-item .search-result-title-container,#quarto-search-results li.aa-Item[aria-selected=true] .search-item .search-result-text-container{color:#fff;background-color:#6d6e71}.aa-DetachedOverlay li.aa-Item[aria-selected=true] .search-item mark.search-match,.aa-DetachedOverlay li.aa-Item[aria-selected=true] .search-item .search-match.mark,#quarto-search-results li.aa-Item[aria-selected=true] .search-item mark.search-match,#quarto-search-results li.aa-Item[aria-selected=true] .search-item .search-match.mark{color:#fff;background-color:#818286}.aa-DetachedOverlay li.aa-Item[aria-selected=false] .search-item,#quarto-search-results li.aa-Item[aria-selected=false] .search-item{background-color:#fff}.aa-DetachedOverlay li.aa-Item[aria-selected=false] .search-item.search-result-more,.aa-DetachedOverlay li.aa-Item[aria-selected=false] .search-item .search-result-section,.aa-DetachedOverlay li.aa-Item[aria-selected=false] .search-item .search-result-text,.aa-DetachedOverlay li.aa-Item[aria-selected=false] .search-item .search-result-title-container,.aa-DetachedOverlay li.aa-Item[aria-selected=false] .search-item .search-result-text-container,#quarto-search-results li.aa-Item[aria-selected=false] .search-item.search-result-more,#quarto-search-results li.aa-Item[aria-selected=false] .search-item .search-result-section,#quarto-search-results li.aa-Item[aria-selected=false] .search-item .search-result-text,#quarto-search-results li.aa-Item[aria-selected=false] .search-item .search-result-title-container,#quarto-search-results li.aa-Item[aria-selected=false] .search-item .search-result-text-container{color:#373a3c}.aa-DetachedOverlay li.aa-Item[aria-selected=false] .search-item mark.search-match,.aa-DetachedOverlay li.aa-Item[aria-selected=false] .search-item .search-match.mark,#quarto-search-results li.aa-Item[aria-selected=false] .search-item mark.search-match,#quarto-search-results li.aa-Item[aria-selected=false] .search-item .search-match.mark{color:inherit;background-color:#d9dadb}.aa-DetachedOverlay .aa-Item .search-result-doc:not(.document-selectable) .search-result-title-container,#quarto-search-results .aa-Item .search-result-doc:not(.document-selectable) .search-result-title-container{background-color:#fff;color:#373a3c}.aa-DetachedOverlay .aa-Item .search-result-doc:not(.document-selectable) .search-result-text-container,#quarto-search-results .aa-Item .search-result-doc:not(.document-selectable) .search-result-text-container{padding-top:0px}.aa-DetachedOverlay li.aa-Item .search-result-doc.document-selectable .search-result-text-container,#quarto-search-results li.aa-Item .search-result-doc.document-selectable .search-result-text-container{margin-top:-4px}.aa-DetachedOverlay .aa-Item,#quarto-search-results .aa-Item{cursor:pointer}.aa-DetachedOverlay .aa-Item .search-item,#quarto-search-results .aa-Item .search-item{border-left:none;border-right:none;border-top:none;background-color:#fff;border-color:#ced4da;color:#373a3c}.aa-DetachedOverlay .aa-Item .search-item p,#quarto-search-results .aa-Item .search-item p{margin-top:0;margin-bottom:0}.aa-DetachedOverlay .aa-Item .search-item i.bi,#quarto-search-results .aa-Item .search-item i.bi{padding-left:8px;padding-right:8px;font-size:1.3em}.aa-DetachedOverlay .aa-Item .search-item .search-result-title,#quarto-search-results .aa-Item .search-item .search-result-title{margin-top:.3em;margin-bottom:.1rem}.aa-DetachedOverlay .aa-Item .search-result-title-container,#quarto-search-results .aa-Item .search-result-title-container{font-size:1em;display:flex;padding:6px 4px 6px 4px}.aa-DetachedOverlay .aa-Item .search-result-text-container,#quarto-search-results .aa-Item .search-result-text-container{padding-bottom:8px;padding-right:8px;margin-left:44px}.aa-DetachedOverlay .aa-Item .search-result-doc-section,.aa-DetachedOverlay .aa-Item .search-result-more,#quarto-search-results .aa-Item .search-result-doc-section,#quarto-search-results .aa-Item .search-result-more{padding-top:8px;padding-bottom:8px;padding-left:44px}.aa-DetachedOverlay .aa-Item .search-result-more,#quarto-search-results .aa-Item .search-result-more{font-size:.8em;font-weight:400}.aa-DetachedOverlay .aa-Item .search-result-doc,#quarto-search-results .aa-Item .search-result-doc{border-top:1px solid #ced4da}.aa-DetachedSearchButton{background:none;border:none}.aa-DetachedSearchButton .aa-DetachedSearchButtonPlaceholder{display:none}.navbar .aa-DetachedSearchButton .aa-DetachedSearchButtonIcon{color:#545555}.sidebar-tools-collapse #quarto-search,.sidebar-tools-main #quarto-search{display:inline}.sidebar-tools-collapse #quarto-search .aa-Autocomplete,.sidebar-tools-main #quarto-search .aa-Autocomplete{display:inline}.sidebar-tools-collapse #quarto-search .aa-DetachedSearchButton,.sidebar-tools-main #quarto-search .aa-DetachedSearchButton{padding-left:4px;padding-right:4px}.sidebar-tools-collapse #quarto-search .aa-DetachedSearchButton .aa-DetachedSearchButtonIcon,.sidebar-tools-main #quarto-search .aa-DetachedSearchButton .aa-DetachedSearchButtonIcon{color:#595959}.sidebar-tools-collapse #quarto-search .aa-DetachedSearchButton .aa-DetachedSearchButtonIcon .aa-SubmitIcon,.sidebar-tools-main #quarto-search .aa-DetachedSearchButton .aa-DetachedSearchButtonIcon .aa-SubmitIcon{margin-top:-3px}.aa-DetachedContainer{background:rgba(255,255,255,.65);width:90%;bottom:0;box-shadow:rgba(206,212,218,.6) 0 0 0 1px;outline:currentColor none medium;display:flex;flex-direction:column;left:0;margin:0;overflow:hidden;padding:0;position:fixed;right:0;top:0;z-index:1101}.aa-DetachedContainer::after{height:32px}.aa-DetachedContainer .aa-SourceHeader{margin:var(--aa-spacing-half) 0 var(--aa-spacing-half) 2px}.aa-DetachedContainer .aa-Panel{background-color:#fff;border-radius:0;box-shadow:none;flex-grow:1;margin:0;padding:0;position:relative}.aa-DetachedContainer .aa-PanelLayout{bottom:0;box-shadow:none;left:0;margin:0;max-height:none;overflow-y:auto;position:absolute;right:0;top:0;width:100%}.aa-DetachedFormContainer{background-color:#fff;border-bottom:1px solid #ced4da;display:flex;flex-direction:row;justify-content:space-between;margin:0;padding:.5em}.aa-DetachedCancelButton{background:none;font-size:.8em;border:0;border-radius:3px;color:#373a3c;cursor:pointer;margin:0 0 0 .5em;padding:0 .5em}.aa-DetachedCancelButton:hover,.aa-DetachedCancelButton:focus{box-shadow:rgba(109,110,113,.6) 0 0 0 1px;outline:currentColor none medium}.aa-DetachedContainer--modal{bottom:inherit;height:auto;margin:0 auto;position:absolute;top:100px;border-radius:6px;max-width:850px}@media(max-width: 575.98px){.aa-DetachedContainer--modal{width:100%;top:0px;border-radius:0px;border:none}}.aa-DetachedContainer--modal .aa-PanelLayout{max-height:var(--aa-detached-modal-max-height);padding-bottom:var(--aa-spacing-half);position:static}.aa-Detached{height:100vh;overflow:hidden}.aa-DetachedOverlay{background-color:rgba(55,58,60,.4);position:fixed;left:0;right:0;top:0;margin:0;padding:0;height:100vh;z-index:1100}.quarto-listing{padding-bottom:1em}.listing-pagination{padding-top:.5em}ul.pagination{float:right;padding-left:8px;padding-top:.5em}ul.pagination li{padding-right:.75em}ul.pagination li.disabled a,ul.pagination li.active a{color:#373a3c;text-decoration:none}ul.pagination li:last-of-type{padding-right:0}.listing-actions-group{display:flex}.quarto-listing-filter{margin-bottom:1em;width:200px;margin-left:auto}.quarto-listing-sort{margin-bottom:1em;margin-right:auto;width:auto}.quarto-listing-sort .input-group-text{font-size:.8em}.input-group-text{border-right:none}.quarto-listing-sort select.form-select{font-size:.8em}.listing-no-matching{text-align:center;padding-top:2em;padding-bottom:3em;font-size:1em}#quarto-margin-sidebar .quarto-listing-category{padding-top:0;font-size:1rem}#quarto-margin-sidebar .quarto-listing-category-title{cursor:pointer;font-weight:600;font-size:1rem}.quarto-listing-category .category{cursor:pointer}.quarto-listing-category .category.active{font-weight:600}.quarto-listing-category.category-cloud{display:flex;flex-wrap:wrap;align-items:baseline}.quarto-listing-category.category-cloud .category{padding-right:5px}.quarto-listing-category.category-cloud .category-cloud-1{font-size:.75em}.quarto-listing-category.category-cloud .category-cloud-2{font-size:.95em}.quarto-listing-category.category-cloud .category-cloud-3{font-size:1.15em}.quarto-listing-category.category-cloud .category-cloud-4{font-size:1.35em}.quarto-listing-category.category-cloud .category-cloud-5{font-size:1.55em}.quarto-listing-category.category-cloud .category-cloud-6{font-size:1.75em}.quarto-listing-category.category-cloud .category-cloud-7{font-size:1.95em}.quarto-listing-category.category-cloud .category-cloud-8{font-size:2.15em}.quarto-listing-category.category-cloud .category-cloud-9{font-size:2.35em}.quarto-listing-category.category-cloud .category-cloud-10{font-size:2.55em}.quarto-listing-cols-1{grid-template-columns:repeat(1, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-1{grid-template-columns:repeat(1, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-1{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-2{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-2{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-2{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-3{grid-template-columns:repeat(3, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-3{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-3{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-4{grid-template-columns:repeat(4, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-4{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-4{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-5{grid-template-columns:repeat(5, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-5{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-5{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-6{grid-template-columns:repeat(6, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-6{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-6{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-7{grid-template-columns:repeat(7, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-7{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-7{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-8{grid-template-columns:repeat(8, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-8{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-8{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-9{grid-template-columns:repeat(9, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-9{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-9{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-10{grid-template-columns:repeat(10, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-10{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-10{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-11{grid-template-columns:repeat(11, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-11{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-11{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-12{grid-template-columns:repeat(12, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-12{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-12{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-grid{gap:1.5em}.quarto-grid-item.borderless{border:none}.quarto-grid-item.borderless .listing-categories .listing-category:last-of-type,.quarto-grid-item.borderless .listing-categories .listing-category:first-of-type{padding-left:0}.quarto-grid-item.borderless .listing-categories .listing-category{border:0}.quarto-grid-link{text-decoration:none;color:inherit}.quarto-grid-link:hover{text-decoration:none;color:inherit}.quarto-grid-item h5.title,.quarto-grid-item .title.h5{margin-top:0;margin-bottom:0}.quarto-grid-item .card-footer{display:flex;justify-content:space-between;font-size:.8em}.quarto-grid-item .card-footer p{margin-bottom:0}.quarto-grid-item p.card-img-top{margin-bottom:0}.quarto-grid-item p.card-img-top>img{object-fit:cover}.quarto-grid-item .card-other-values{margin-top:.5em;font-size:.8em}.quarto-grid-item .card-other-values tr{margin-bottom:.5em}.quarto-grid-item .card-other-values tr>td:first-of-type{font-weight:600;padding-right:1em;padding-left:1em;vertical-align:top}.quarto-grid-item div.post-contents{display:flex;flex-direction:column;text-decoration:none;height:100%}.quarto-grid-item .listing-item-img-placeholder{background-color:#adb5bd;flex-shrink:0}.quarto-grid-item .card-attribution{padding-top:1em;display:flex;gap:1em;text-transform:uppercase;color:#6c757d;font-weight:500;flex-grow:10;align-items:flex-end}.quarto-grid-item .description{padding-bottom:1em}.quarto-grid-item .card-attribution .date{align-self:flex-end}.quarto-grid-item .card-attribution.justify{justify-content:space-between}.quarto-grid-item .card-attribution.start{justify-content:flex-start}.quarto-grid-item .card-attribution.end{justify-content:flex-end}.quarto-grid-item .card-title{margin-bottom:.1em}.quarto-grid-item .card-subtitle{padding-top:.25em}.quarto-grid-item .card-text{font-size:.9em}.quarto-grid-item .listing-reading-time{padding-bottom:.25em}.quarto-grid-item .card-text-small{font-size:.8em}.quarto-grid-item .card-subtitle.subtitle{font-size:.9em;font-weight:600;padding-bottom:.5em}.quarto-grid-item .listing-categories{display:flex;flex-wrap:wrap;padding-bottom:5px}.quarto-grid-item .listing-categories .listing-category{color:#6c757d;border:solid 1px #dee2e6;border-radius:.25rem;text-transform:uppercase;font-size:.65em;padding-left:.5em;padding-right:.5em;padding-top:.15em;padding-bottom:.15em;cursor:pointer;margin-right:4px;margin-bottom:4px}.quarto-grid-item.card-right{text-align:right}.quarto-grid-item.card-right .listing-categories{justify-content:flex-end}.quarto-grid-item.card-left{text-align:left}.quarto-grid-item.card-center{text-align:center}.quarto-grid-item.card-center .listing-description{text-align:justify}.quarto-grid-item.card-center .listing-categories{justify-content:center}table.quarto-listing-table td.image{padding:0px}table.quarto-listing-table td.image img{width:100%;max-width:50px;object-fit:contain}table.quarto-listing-table a{text-decoration:none}table.quarto-listing-table th a{color:inherit}table.quarto-listing-table th a.asc:after{margin-bottom:-2px;margin-left:5px;display:inline-block;height:1rem;width:1rem;background-repeat:no-repeat;background-size:1rem 1rem;background-image:url('data:image/svg+xml,');content:""}table.quarto-listing-table th a.desc:after{margin-bottom:-2px;margin-left:5px;display:inline-block;height:1rem;width:1rem;background-repeat:no-repeat;background-size:1rem 1rem;background-image:url('data:image/svg+xml,');content:""}table.quarto-listing-table.table-hover td{cursor:pointer}.quarto-post.image-left{flex-direction:row}.quarto-post.image-right{flex-direction:row-reverse}@media(max-width: 767.98px){.quarto-post.image-right,.quarto-post.image-left{gap:0em;flex-direction:column}.quarto-post .metadata{padding-bottom:1em;order:2}.quarto-post .body{order:1}.quarto-post .thumbnail{order:3}}.list.quarto-listing-default div:last-of-type{border-bottom:none}@media(min-width: 992px){.quarto-listing-container-default{margin-right:2em}}div.quarto-post{display:flex;gap:2em;margin-bottom:1.5em;border-bottom:1px solid #dee2e6}@media(max-width: 767.98px){div.quarto-post{padding-bottom:1em}}div.quarto-post .metadata{flex-basis:20%;flex-grow:0;margin-top:.2em;flex-shrink:10}div.quarto-post .thumbnail{flex-basis:30%;flex-grow:0;flex-shrink:0}div.quarto-post .thumbnail img{margin-top:.4em;width:100%;object-fit:cover}div.quarto-post .body{flex-basis:45%;flex-grow:1;flex-shrink:0}div.quarto-post .body h3.listing-title,div.quarto-post .body .listing-title.h3{margin-top:0px;margin-bottom:0px;border-bottom:none}div.quarto-post .body .listing-subtitle{font-size:.875em;margin-bottom:.5em;margin-top:.2em}div.quarto-post .body .description{font-size:.9em}div.quarto-post a{color:#373a3c;display:flex;flex-direction:column;text-decoration:none}div.quarto-post a div.description{flex-shrink:0}div.quarto-post .metadata{display:flex;flex-direction:column;font-size:.8em;font-family:var(--bs-font-sans-serif);flex-basis:33%}div.quarto-post .listing-categories{display:flex;flex-wrap:wrap;padding-bottom:5px}div.quarto-post .listing-categories .listing-category{color:#6c757d;border:solid 1px #dee2e6;border-radius:.25rem;text-transform:uppercase;font-size:.65em;padding-left:.5em;padding-right:.5em;padding-top:.15em;padding-bottom:.15em;cursor:pointer;margin-right:4px;margin-bottom:4px}div.quarto-post .listing-description{margin-bottom:.5em}div.quarto-about-jolla{display:flex !important;flex-direction:column;align-items:center;margin-top:10%;padding-bottom:1em}div.quarto-about-jolla .about-image{object-fit:cover;margin-left:auto;margin-right:auto;margin-bottom:1.5em}div.quarto-about-jolla img.round{border-radius:50%}div.quarto-about-jolla img.rounded{border-radius:10px}div.quarto-about-jolla .quarto-title h1.title,div.quarto-about-jolla .quarto-title .title.h1{text-align:center}div.quarto-about-jolla .quarto-title .description{text-align:center}div.quarto-about-jolla h2,div.quarto-about-jolla .h2{border-bottom:none}div.quarto-about-jolla .about-sep{width:60%}div.quarto-about-jolla main{text-align:center}div.quarto-about-jolla .about-links{display:flex}@media(min-width: 992px){div.quarto-about-jolla .about-links{flex-direction:row;column-gap:.8em;row-gap:15px;flex-wrap:wrap}}@media(max-width: 991.98px){div.quarto-about-jolla .about-links{flex-direction:column;row-gap:1em;width:100%;padding-bottom:1.5em}}div.quarto-about-jolla .about-link{color:#686d71;text-decoration:none;border:solid 1px}@media(min-width: 992px){div.quarto-about-jolla .about-link{font-size:.8em;padding:.25em .5em;border-radius:4px}}@media(max-width: 991.98px){div.quarto-about-jolla .about-link{font-size:1.1em;padding:.5em .5em;text-align:center;border-radius:6px}}div.quarto-about-jolla .about-link:hover{color:#6d6e71}div.quarto-about-jolla .about-link i.bi{margin-right:.15em}div.quarto-about-solana{display:flex !important;flex-direction:column;padding-top:3em !important;padding-bottom:1em}div.quarto-about-solana .about-entity{display:flex !important;align-items:start;justify-content:space-between}@media(min-width: 992px){div.quarto-about-solana .about-entity{flex-direction:row}}@media(max-width: 991.98px){div.quarto-about-solana .about-entity{flex-direction:column-reverse;align-items:center;text-align:center}}div.quarto-about-solana .about-entity .entity-contents{display:flex;flex-direction:column}@media(max-width: 767.98px){div.quarto-about-solana .about-entity .entity-contents{width:100%}}div.quarto-about-solana .about-entity .about-image{object-fit:cover}@media(max-width: 991.98px){div.quarto-about-solana .about-entity .about-image{margin-bottom:1.5em}}div.quarto-about-solana .about-entity img.round{border-radius:50%}div.quarto-about-solana .about-entity img.rounded{border-radius:10px}div.quarto-about-solana .about-entity .about-links{display:flex;justify-content:left;padding-bottom:1.2em}@media(min-width: 992px){div.quarto-about-solana .about-entity .about-links{flex-direction:row;column-gap:.8em;row-gap:15px;flex-wrap:wrap}}@media(max-width: 991.98px){div.quarto-about-solana .about-entity .about-links{flex-direction:column;row-gap:1em;width:100%;padding-bottom:1.5em}}div.quarto-about-solana .about-entity .about-link{color:#686d71;text-decoration:none;border:solid 1px}@media(min-width: 992px){div.quarto-about-solana .about-entity .about-link{font-size:.8em;padding:.25em .5em;border-radius:4px}}@media(max-width: 991.98px){div.quarto-about-solana .about-entity .about-link{font-size:1.1em;padding:.5em .5em;text-align:center;border-radius:6px}}div.quarto-about-solana .about-entity .about-link:hover{color:#6d6e71}div.quarto-about-solana .about-entity .about-link i.bi{margin-right:.15em}div.quarto-about-solana .about-contents{padding-right:1.5em;flex-basis:0;flex-grow:1}div.quarto-about-solana .about-contents main.content{margin-top:0}div.quarto-about-solana .about-contents h2,div.quarto-about-solana .about-contents .h2{border-bottom:none}div.quarto-about-trestles{display:flex !important;flex-direction:row;padding-top:3em !important;padding-bottom:1em}@media(max-width: 991.98px){div.quarto-about-trestles{flex-direction:column;padding-top:0em !important}}div.quarto-about-trestles .about-entity{display:flex !important;flex-direction:column;align-items:center;text-align:center;padding-right:1em}@media(min-width: 992px){div.quarto-about-trestles .about-entity{flex:0 0 42%}}div.quarto-about-trestles .about-entity .about-image{object-fit:cover;margin-bottom:1.5em}div.quarto-about-trestles .about-entity img.round{border-radius:50%}div.quarto-about-trestles .about-entity img.rounded{border-radius:10px}div.quarto-about-trestles .about-entity .about-links{display:flex;justify-content:center}@media(min-width: 992px){div.quarto-about-trestles .about-entity .about-links{flex-direction:row;column-gap:.8em;row-gap:15px;flex-wrap:wrap}}@media(max-width: 991.98px){div.quarto-about-trestles .about-entity .about-links{flex-direction:column;row-gap:1em;width:100%;padding-bottom:1.5em}}div.quarto-about-trestles .about-entity .about-link{color:#686d71;text-decoration:none;border:solid 1px}@media(min-width: 992px){div.quarto-about-trestles .about-entity .about-link{font-size:.8em;padding:.25em .5em;border-radius:4px}}@media(max-width: 991.98px){div.quarto-about-trestles .about-entity .about-link{font-size:1.1em;padding:.5em .5em;text-align:center;border-radius:6px}}div.quarto-about-trestles .about-entity .about-link:hover{color:#6d6e71}div.quarto-about-trestles .about-entity .about-link i.bi{margin-right:.15em}div.quarto-about-trestles .about-contents{flex-basis:0;flex-grow:1}div.quarto-about-trestles .about-contents h2,div.quarto-about-trestles .about-contents .h2{border-bottom:none}@media(min-width: 992px){div.quarto-about-trestles .about-contents{border-left:solid 1px #dee2e6;padding-left:1.5em}}div.quarto-about-trestles .about-contents main.content{margin-top:0}div.quarto-about-marquee{padding-bottom:1em}div.quarto-about-marquee .about-contents{display:flex;flex-direction:column}div.quarto-about-marquee .about-image{max-height:550px;margin-bottom:1.5em;object-fit:cover}div.quarto-about-marquee img.round{border-radius:50%}div.quarto-about-marquee img.rounded{border-radius:10px}div.quarto-about-marquee h2,div.quarto-about-marquee .h2{border-bottom:none}div.quarto-about-marquee .about-links{display:flex;justify-content:center;padding-top:1.5em}@media(min-width: 992px){div.quarto-about-marquee .about-links{flex-direction:row;column-gap:.8em;row-gap:15px;flex-wrap:wrap}}@media(max-width: 991.98px){div.quarto-about-marquee .about-links{flex-direction:column;row-gap:1em;width:100%;padding-bottom:1.5em}}div.quarto-about-marquee .about-link{color:#686d71;text-decoration:none;border:solid 1px}@media(min-width: 992px){div.quarto-about-marquee .about-link{font-size:.8em;padding:.25em .5em;border-radius:4px}}@media(max-width: 991.98px){div.quarto-about-marquee .about-link{font-size:1.1em;padding:.5em .5em;text-align:center;border-radius:6px}}div.quarto-about-marquee .about-link:hover{color:#6d6e71}div.quarto-about-marquee .about-link i.bi{margin-right:.15em}@media(min-width: 992px){div.quarto-about-marquee .about-link{border:none}}div.quarto-about-broadside{display:flex;flex-direction:column;padding-bottom:1em}div.quarto-about-broadside .about-main{display:flex !important;padding-top:0 !important}@media(min-width: 992px){div.quarto-about-broadside .about-main{flex-direction:row;align-items:flex-start}}@media(max-width: 991.98px){div.quarto-about-broadside .about-main{flex-direction:column}}@media(max-width: 991.98px){div.quarto-about-broadside .about-main .about-entity{flex-shrink:0;width:100%;height:450px;margin-bottom:1.5em;background-size:cover;background-repeat:no-repeat}}@media(min-width: 992px){div.quarto-about-broadside .about-main .about-entity{flex:0 10 50%;margin-right:1.5em;width:100%;height:100%;background-size:100%;background-repeat:no-repeat}}div.quarto-about-broadside .about-main .about-contents{padding-top:14px;flex:0 0 50%}div.quarto-about-broadside h2,div.quarto-about-broadside .h2{border-bottom:none}div.quarto-about-broadside .about-sep{margin-top:1.5em;width:60%;align-self:center}div.quarto-about-broadside .about-links{display:flex;justify-content:center;column-gap:20px;padding-top:1.5em}@media(min-width: 992px){div.quarto-about-broadside .about-links{flex-direction:row;column-gap:.8em;row-gap:15px;flex-wrap:wrap}}@media(max-width: 991.98px){div.quarto-about-broadside .about-links{flex-direction:column;row-gap:1em;width:100%;padding-bottom:1.5em}}div.quarto-about-broadside .about-link{color:#686d71;text-decoration:none;border:solid 1px}@media(min-width: 992px){div.quarto-about-broadside .about-link{font-size:.8em;padding:.25em .5em;border-radius:4px}}@media(max-width: 991.98px){div.quarto-about-broadside .about-link{font-size:1.1em;padding:.5em .5em;text-align:center;border-radius:6px}}div.quarto-about-broadside .about-link:hover{color:#6d6e71}div.quarto-about-broadside .about-link i.bi{margin-right:.15em}@media(min-width: 992px){div.quarto-about-broadside .about-link{border:none}}.tippy-box[data-theme~=quarto]{background-color:#fff;border:solid 1px #dee2e6;border-radius:.25rem;color:#373a3c;font-size:.875rem}.tippy-box[data-theme~=quarto]>.tippy-backdrop{background-color:#fff}.tippy-box[data-theme~=quarto]>.tippy-arrow:after,.tippy-box[data-theme~=quarto]>.tippy-svg-arrow:after{content:"";position:absolute;z-index:-1}.tippy-box[data-theme~=quarto]>.tippy-arrow:after{border-color:rgba(0,0,0,0);border-style:solid}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-6px}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-6px}.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-6px}.tippy-box[data-placement^=left]>.tippy-arrow:before{right:-6px}.tippy-box[data-theme~=quarto][data-placement^=top]>.tippy-arrow:before{border-top-color:#fff}.tippy-box[data-theme~=quarto][data-placement^=top]>.tippy-arrow:after{border-top-color:#dee2e6;border-width:7px 7px 0;top:17px;left:1px}.tippy-box[data-theme~=quarto][data-placement^=top]>.tippy-svg-arrow>svg{top:16px}.tippy-box[data-theme~=quarto][data-placement^=top]>.tippy-svg-arrow:after{top:17px}.tippy-box[data-theme~=quarto][data-placement^=bottom]>.tippy-arrow:before{border-bottom-color:#fff;bottom:16px}.tippy-box[data-theme~=quarto][data-placement^=bottom]>.tippy-arrow:after{border-bottom-color:#dee2e6;border-width:0 7px 7px;bottom:17px;left:1px}.tippy-box[data-theme~=quarto][data-placement^=bottom]>.tippy-svg-arrow>svg{bottom:15px}.tippy-box[data-theme~=quarto][data-placement^=bottom]>.tippy-svg-arrow:after{bottom:17px}.tippy-box[data-theme~=quarto][data-placement^=left]>.tippy-arrow:before{border-left-color:#fff}.tippy-box[data-theme~=quarto][data-placement^=left]>.tippy-arrow:after{border-left-color:#dee2e6;border-width:7px 0 7px 7px;left:17px;top:1px}.tippy-box[data-theme~=quarto][data-placement^=left]>.tippy-svg-arrow>svg{left:11px}.tippy-box[data-theme~=quarto][data-placement^=left]>.tippy-svg-arrow:after{left:12px}.tippy-box[data-theme~=quarto][data-placement^=right]>.tippy-arrow:before{border-right-color:#fff;right:16px}.tippy-box[data-theme~=quarto][data-placement^=right]>.tippy-arrow:after{border-width:7px 7px 7px 0;right:17px;top:1px;border-right-color:#dee2e6}.tippy-box[data-theme~=quarto][data-placement^=right]>.tippy-svg-arrow>svg{right:11px}.tippy-box[data-theme~=quarto][data-placement^=right]>.tippy-svg-arrow:after{right:12px}.tippy-box[data-theme~=quarto]>.tippy-svg-arrow{fill:#373a3c}.tippy-box[data-theme~=quarto]>.tippy-svg-arrow:after{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMCA2czEuNzk2LS4wMTMgNC42Ny0zLjYxNUM1Ljg1MS45IDYuOTMuMDA2IDggMGMxLjA3LS4wMDYgMi4xNDguODg3IDMuMzQzIDIuMzg1QzE0LjIzMyA2LjAwNSAxNiA2IDE2IDZIMHoiIGZpbGw9InJnYmEoMCwgOCwgMTYsIDAuMikiLz48L3N2Zz4=);background-size:16px 6px;width:16px;height:6px}.top-right{position:absolute;top:1em;right:1em}.hidden{display:none !important}.zindex-bottom{z-index:-1 !important}.quarto-layout-panel{margin-bottom:1em}.quarto-layout-panel>figure{width:100%}.quarto-layout-panel>figure>figcaption,.quarto-layout-panel>.panel-caption{margin-top:10pt}.quarto-layout-panel>.table-caption{margin-top:0px}.table-caption p{margin-bottom:.5em}.quarto-layout-row{display:flex;flex-direction:row;align-items:flex-start}.quarto-layout-valign-top{align-items:flex-start}.quarto-layout-valign-bottom{align-items:flex-end}.quarto-layout-valign-center{align-items:center}.quarto-layout-cell{position:relative;margin-right:20px}.quarto-layout-cell:last-child{margin-right:0}.quarto-layout-cell figure,.quarto-layout-cell>p{margin:.2em}.quarto-layout-cell img{max-width:100%}.quarto-layout-cell .html-widget{width:100% !important}.quarto-layout-cell div figure p{margin:0}.quarto-layout-cell figure{display:inline-block;margin-inline-start:0;margin-inline-end:0}.quarto-layout-cell table{display:inline-table}.quarto-layout-cell-subref figcaption,figure .quarto-layout-row figure figcaption{text-align:center;font-style:italic}.quarto-figure{position:relative;margin-bottom:1em}.quarto-figure>figure{width:100%;margin-bottom:0}.quarto-figure-left>figure>p,.quarto-figure-left>figure>div{text-align:left}.quarto-figure-center>figure>p,.quarto-figure-center>figure>div{text-align:center}.quarto-figure-right>figure>p,.quarto-figure-right>figure>div{text-align:right}figure>p:empty{display:none}figure>p:first-child{margin-top:0;margin-bottom:0}figure>figcaption{margin-top:.5em}div[id^=tbl-]{position:relative}.quarto-figure>.anchorjs-link{position:absolute;top:.6em;right:.5em}div[id^=tbl-]>.anchorjs-link{position:absolute;top:.7em;right:.3em}.quarto-figure:hover>.anchorjs-link,div[id^=tbl-]:hover>.anchorjs-link,h2:hover>.anchorjs-link,.h2:hover>.anchorjs-link,h3:hover>.anchorjs-link,.h3:hover>.anchorjs-link,h4:hover>.anchorjs-link,.h4:hover>.anchorjs-link,h5:hover>.anchorjs-link,.h5:hover>.anchorjs-link,h6:hover>.anchorjs-link,.h6:hover>.anchorjs-link,.reveal-anchorjs-link>.anchorjs-link{opacity:1}#title-block-header{margin-block-end:1rem;position:relative;margin-top:-1px}#title-block-header .abstract{margin-block-start:1rem}#title-block-header .abstract .abstract-title{font-weight:600}#title-block-header a{text-decoration:none}#title-block-header .author,#title-block-header .date,#title-block-header .doi{margin-block-end:.2rem}#title-block-header .quarto-title-block>div{display:flex}#title-block-header .quarto-title-block>div>h1,#title-block-header .quarto-title-block>div>.h1{flex-grow:1}#title-block-header .quarto-title-block>div>button{flex-shrink:0;height:2.25rem;margin-top:0}@media(min-width: 992px){#title-block-header .quarto-title-block>div>button{margin-top:5px}}tr.header>th>p:last-of-type{margin-bottom:0px}table,.table{caption-side:top;margin-bottom:1.5rem}caption,.table-caption{padding-top:.5rem;padding-bottom:.5rem;text-align:center}.utterances{max-width:none;margin-left:-8px}iframe{margin-bottom:1em}details{margin-bottom:1em}details[show]{margin-bottom:0}details>summary{color:#6c757d}details>summary>p:only-child{display:inline}pre.sourceCode,code.sourceCode{position:relative}p code:not(.sourceCode){white-space:pre-wrap}code{white-space:pre}@media print{code{white-space:pre-wrap}}pre>code{display:block}pre>code.sourceCode{white-space:pre}pre>code.sourceCode>span>a:first-child::before{text-decoration:none}pre.code-overflow-wrap>code.sourceCode{white-space:pre-wrap}pre.code-overflow-scroll>code.sourceCode{white-space:pre}code a:any-link{color:inherit;text-decoration:none}code a:hover{color:inherit;text-decoration:underline}ul.task-list{padding-left:1em}[data-tippy-root]{display:inline-block}.tippy-content .footnote-back{display:none}.quarto-embedded-source-code{display:none}.quarto-unresolved-ref{font-weight:600}.quarto-cover-image{max-width:35%;float:right;margin-left:30px}.cell-output-display .widget-subarea{margin-bottom:1em}.cell-output-display:not(.no-overflow-x),.knitsql-table:not(.no-overflow-x){overflow-x:auto}.panel-input{margin-bottom:1em}.panel-input>div,.panel-input>div>div{display:inline-block;vertical-align:top;padding-right:12px}.panel-input>p:last-child{margin-bottom:0}.layout-sidebar{margin-bottom:1em}.layout-sidebar .tab-content{border:none}.tab-content>.page-columns.active{display:grid}div.sourceCode>iframe{width:100%;height:300px;margin-bottom:-0.5em}div.ansi-escaped-output{font-family:monospace;display:block}/*! + */@import"https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;700&display=swap";:root,[data-bs-theme=light]{--bs-blue: #2780e3;--bs-indigo: #6610f2;--bs-purple: #613d7c;--bs-pink: #e83e8c;--bs-red: #ff0039;--bs-orange: #f0ad4e;--bs-yellow: #ff7518;--bs-green: #3fb618;--bs-teal: #20c997;--bs-cyan: #9954bb;--bs-black: #000;--bs-white: #fff;--bs-gray: #6c757d;--bs-gray-dark: #343a40;--bs-gray-100: #f8f9fa;--bs-gray-200: #e9ecef;--bs-gray-300: #dee2e6;--bs-gray-400: #ced4da;--bs-gray-500: #adb5bd;--bs-gray-600: #6c757d;--bs-gray-700: #495057;--bs-gray-800: #343a40;--bs-gray-900: #212529;--bs-default: #343a40;--bs-primary: #6D6E71;--bs-secondary: #343a40;--bs-success: #3fb618;--bs-info: #9954bb;--bs-warning: #ff7518;--bs-danger: #ff0039;--bs-light: #f8f9fa;--bs-dark: #343a40;--bs-default-rgb: 52, 58, 64;--bs-primary-rgb: 109, 110, 113;--bs-secondary-rgb: 52, 58, 64;--bs-success-rgb: 63, 182, 24;--bs-info-rgb: 153, 84, 187;--bs-warning-rgb: 255, 117, 24;--bs-danger-rgb: 255, 0, 57;--bs-light-rgb: 248, 249, 250;--bs-dark-rgb: 52, 58, 64;--bs-primary-text-emphasis: #2c2c2d;--bs-secondary-text-emphasis: #15171a;--bs-success-text-emphasis: #19490a;--bs-info-text-emphasis: #3d224b;--bs-warning-text-emphasis: #662f0a;--bs-danger-text-emphasis: #660017;--bs-light-text-emphasis: #495057;--bs-dark-text-emphasis: #495057;--bs-primary-bg-subtle: #e2e2e3;--bs-secondary-bg-subtle: #d6d8d9;--bs-success-bg-subtle: #d9f0d1;--bs-info-bg-subtle: #ebddf1;--bs-warning-bg-subtle: #ffe3d1;--bs-danger-bg-subtle: #ffccd7;--bs-light-bg-subtle: #fcfcfd;--bs-dark-bg-subtle: #ced4da;--bs-primary-border-subtle: #c5c5c6;--bs-secondary-border-subtle: #aeb0b3;--bs-success-border-subtle: #b2e2a3;--bs-info-border-subtle: #d6bbe4;--bs-warning-border-subtle: #ffc8a3;--bs-danger-border-subtle: #ff99b0;--bs-light-border-subtle: #e9ecef;--bs-dark-border-subtle: #adb5bd;--bs-white-rgb: 255, 255, 255;--bs-black-rgb: 0, 0, 0;--bs-font-sans-serif: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-root-font-size: 17px;--bs-body-font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";--bs-body-font-size:1rem;--bs-body-font-weight: 400;--bs-body-line-height: 1.5;--bs-body-color: #343a40;--bs-body-color-rgb: 52, 58, 64;--bs-body-bg: #fff;--bs-body-bg-rgb: 255, 255, 255;--bs-emphasis-color: #000;--bs-emphasis-color-rgb: 0, 0, 0;--bs-secondary-color: rgba(52, 58, 64, 0.75);--bs-secondary-color-rgb: 52, 58, 64;--bs-secondary-bg: #e9ecef;--bs-secondary-bg-rgb: 233, 236, 239;--bs-tertiary-color: rgba(52, 58, 64, 0.5);--bs-tertiary-color-rgb: 52, 58, 64;--bs-tertiary-bg: #f8f9fa;--bs-tertiary-bg-rgb: 248, 249, 250;--bs-heading-color: inherit;--bs-link-color: #6D6E71;--bs-link-color-rgb: 109, 110, 113;--bs-link-decoration: underline;--bs-link-hover-color: #57585a;--bs-link-hover-color-rgb: 87, 88, 90;--bs-code-color: #7d12ba;--bs-highlight-bg: #ffe3d1;--bs-border-width: 1px;--bs-border-style: solid;--bs-border-color: #dee2e6;--bs-border-color-translucent: rgba(0, 0, 0, 0.175);--bs-border-radius: 0.25rem;--bs-border-radius-sm: 0.2em;--bs-border-radius-lg: 0.5rem;--bs-border-radius-xl: 1rem;--bs-border-radius-xxl: 2rem;--bs-border-radius-2xl: var(--bs-border-radius-xxl);--bs-border-radius-pill: 50rem;--bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);--bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);--bs-focus-ring-width: 0.25rem;--bs-focus-ring-opacity: 0.25;--bs-focus-ring-color: rgba(109, 110, 113, 0.25);--bs-form-valid-color: #3fb618;--bs-form-valid-border-color: #3fb618;--bs-form-invalid-color: #ff0039;--bs-form-invalid-border-color: #ff0039}[data-bs-theme=dark]{color-scheme:dark;--bs-body-color: #dee2e6;--bs-body-color-rgb: 222, 226, 230;--bs-body-bg: #212529;--bs-body-bg-rgb: 33, 37, 41;--bs-emphasis-color: #fff;--bs-emphasis-color-rgb: 255, 255, 255;--bs-secondary-color: rgba(222, 226, 230, 0.75);--bs-secondary-color-rgb: 222, 226, 230;--bs-secondary-bg: #343a40;--bs-secondary-bg-rgb: 52, 58, 64;--bs-tertiary-color: rgba(222, 226, 230, 0.5);--bs-tertiary-color-rgb: 222, 226, 230;--bs-tertiary-bg: #2b3035;--bs-tertiary-bg-rgb: 43, 48, 53;--bs-primary-text-emphasis: #a7a8aa;--bs-secondary-text-emphasis: #85898c;--bs-success-text-emphasis: #8cd374;--bs-info-text-emphasis: #c298d6;--bs-warning-text-emphasis: #ffac74;--bs-danger-text-emphasis: #ff6688;--bs-light-text-emphasis: #f8f9fa;--bs-dark-text-emphasis: #dee2e6;--bs-primary-bg-subtle: #161617;--bs-secondary-bg-subtle: #0a0c0d;--bs-success-bg-subtle: #0d2405;--bs-info-bg-subtle: #1f1125;--bs-warning-bg-subtle: #331705;--bs-danger-bg-subtle: #33000b;--bs-light-bg-subtle: #343a40;--bs-dark-bg-subtle: #1a1d20;--bs-primary-border-subtle: #414244;--bs-secondary-border-subtle: #1f2326;--bs-success-border-subtle: #266d0e;--bs-info-border-subtle: #5c3270;--bs-warning-border-subtle: #99460e;--bs-danger-border-subtle: #990022;--bs-light-border-subtle: #495057;--bs-dark-border-subtle: #343a40;--bs-heading-color: inherit;--bs-link-color: #a7a8aa;--bs-link-hover-color: #b9b9bb;--bs-link-color-rgb: 167, 168, 170;--bs-link-hover-color-rgb: 185, 185, 187;--bs-code-color: white;--bs-border-color: #495057;--bs-border-color-translucent: rgba(255, 255, 255, 0.15);--bs-form-valid-color: #8cd374;--bs-form-valid-border-color: #8cd374;--bs-form-invalid-color: #ff6688;--bs-form-invalid-border-color: #ff6688}*,*::before,*::after{box-sizing:border-box}:root{font-size:var(--bs-root-font-size)}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}hr{margin:1rem 0;color:inherit;border:0;border-top:1px solid;opacity:.25}h6,.h6,h5,.h5,h4,.h4,h3,.h3,h2,.h2,h1,.h1{margin-top:0;margin-bottom:.5rem;font-weight:400;line-height:1.2;color:var(--bs-heading-color)}h1,.h1{font-size:calc(1.325rem + 0.9vw)}@media(min-width: 1200px){h1,.h1{font-size:2rem}}h2,.h2{font-size:calc(1.29rem + 0.48vw)}@media(min-width: 1200px){h2,.h2{font-size:1.65rem}}h3,.h3{font-size:calc(1.27rem + 0.24vw)}@media(min-width: 1200px){h3,.h3{font-size:1.45rem}}h4,.h4{font-size:1.25rem}h5,.h5{font-size:1.1rem}h6,.h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[title]{text-decoration:underline dotted;-webkit-text-decoration:underline dotted;-moz-text-decoration:underline dotted;-ms-text-decoration:underline dotted;-o-text-decoration:underline dotted;cursor:help;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}ol,ul,dl{margin-top:0;margin-bottom:1rem}ol ol,ul ul,ol ul,ul ol{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem;padding:.625rem 1.25rem;border-left:.25rem solid #e9ecef}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}b,strong{font-weight:bolder}small,.small{font-size:0.875em}mark,.mark{padding:.1875em;background-color:var(--bs-highlight-bg)}sub,sup{position:relative;font-size:0.75em;line-height:0;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}a{color:rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));text-decoration:underline;-webkit-text-decoration:underline;-moz-text-decoration:underline;-ms-text-decoration:underline;-o-text-decoration:underline}a:hover{--bs-link-color-rgb: var(--bs-link-hover-color-rgb)}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}pre,code,kbd,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:0.875em;color:#000;background-color:#f8f9fa;padding:.5rem;border:1px solid var(--bs-border-color, #dee2e6)}pre code{background-color:rgba(0,0,0,0);font-size:inherit;color:inherit;word-break:normal}code{font-size:0.875em;color:var(--bs-code-color);background-color:#f8f9fa;padding:.125rem .25rem;word-wrap:break-word}a>code{color:inherit}kbd{padding:.4rem .4rem;font-size:0.875em;color:#fff;background-color:#343a40}kbd kbd{padding:0;font-size:1em}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:rgba(52,58,64,.75);text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}thead,tbody,tfoot,tr,td,th{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}input,button,select,optgroup,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator{display:none !important}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button:not(:disabled),[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + 0.3vw);line-height:inherit}@media(min-width: 1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-text,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none !important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:0.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:0.875em;color:#6c757d}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:0.875em;color:rgba(52,58,64,.75)}.container,.container-fluid,.container-xxl,.container-xl,.container-lg,.container-md,.container-sm{--bs-gutter-x: 1.5rem;--bs-gutter-y: 0;width:100%;padding-right:calc(var(--bs-gutter-x)*.5);padding-left:calc(var(--bs-gutter-x)*.5);margin-right:auto;margin-left:auto}@media(min-width: 576px){.container-sm,.container{max-width:540px}}@media(min-width: 768px){.container-md,.container-sm,.container{max-width:720px}}@media(min-width: 992px){.container-lg,.container-md,.container-sm,.container{max-width:960px}}@media(min-width: 1200px){.container-xl,.container-lg,.container-md,.container-sm,.container{max-width:1140px}}@media(min-width: 1400px){.container-xxl,.container-xl,.container-lg,.container-md,.container-sm,.container{max-width:1320px}}:root{--bs-breakpoint-xs: 0;--bs-breakpoint-sm: 576px;--bs-breakpoint-md: 768px;--bs-breakpoint-lg: 992px;--bs-breakpoint-xl: 1200px;--bs-breakpoint-xxl: 1400px}.grid{display:grid;grid-template-rows:repeat(var(--bs-rows, 1), 1fr);grid-template-columns:repeat(var(--bs-columns, 12), 1fr);gap:var(--bs-gap, 1.5rem)}.grid .g-col-1{grid-column:auto/span 1}.grid .g-col-2{grid-column:auto/span 2}.grid .g-col-3{grid-column:auto/span 3}.grid .g-col-4{grid-column:auto/span 4}.grid .g-col-5{grid-column:auto/span 5}.grid .g-col-6{grid-column:auto/span 6}.grid .g-col-7{grid-column:auto/span 7}.grid .g-col-8{grid-column:auto/span 8}.grid .g-col-9{grid-column:auto/span 9}.grid .g-col-10{grid-column:auto/span 10}.grid .g-col-11{grid-column:auto/span 11}.grid .g-col-12{grid-column:auto/span 12}.grid .g-start-1{grid-column-start:1}.grid .g-start-2{grid-column-start:2}.grid .g-start-3{grid-column-start:3}.grid .g-start-4{grid-column-start:4}.grid .g-start-5{grid-column-start:5}.grid .g-start-6{grid-column-start:6}.grid .g-start-7{grid-column-start:7}.grid .g-start-8{grid-column-start:8}.grid .g-start-9{grid-column-start:9}.grid .g-start-10{grid-column-start:10}.grid .g-start-11{grid-column-start:11}@media(min-width: 576px){.grid .g-col-sm-1{grid-column:auto/span 1}.grid .g-col-sm-2{grid-column:auto/span 2}.grid .g-col-sm-3{grid-column:auto/span 3}.grid .g-col-sm-4{grid-column:auto/span 4}.grid .g-col-sm-5{grid-column:auto/span 5}.grid .g-col-sm-6{grid-column:auto/span 6}.grid .g-col-sm-7{grid-column:auto/span 7}.grid .g-col-sm-8{grid-column:auto/span 8}.grid .g-col-sm-9{grid-column:auto/span 9}.grid .g-col-sm-10{grid-column:auto/span 10}.grid .g-col-sm-11{grid-column:auto/span 11}.grid .g-col-sm-12{grid-column:auto/span 12}.grid .g-start-sm-1{grid-column-start:1}.grid .g-start-sm-2{grid-column-start:2}.grid .g-start-sm-3{grid-column-start:3}.grid .g-start-sm-4{grid-column-start:4}.grid .g-start-sm-5{grid-column-start:5}.grid .g-start-sm-6{grid-column-start:6}.grid .g-start-sm-7{grid-column-start:7}.grid .g-start-sm-8{grid-column-start:8}.grid .g-start-sm-9{grid-column-start:9}.grid .g-start-sm-10{grid-column-start:10}.grid .g-start-sm-11{grid-column-start:11}}@media(min-width: 768px){.grid .g-col-md-1{grid-column:auto/span 1}.grid .g-col-md-2{grid-column:auto/span 2}.grid .g-col-md-3{grid-column:auto/span 3}.grid .g-col-md-4{grid-column:auto/span 4}.grid .g-col-md-5{grid-column:auto/span 5}.grid .g-col-md-6{grid-column:auto/span 6}.grid .g-col-md-7{grid-column:auto/span 7}.grid .g-col-md-8{grid-column:auto/span 8}.grid .g-col-md-9{grid-column:auto/span 9}.grid .g-col-md-10{grid-column:auto/span 10}.grid .g-col-md-11{grid-column:auto/span 11}.grid .g-col-md-12{grid-column:auto/span 12}.grid .g-start-md-1{grid-column-start:1}.grid .g-start-md-2{grid-column-start:2}.grid .g-start-md-3{grid-column-start:3}.grid .g-start-md-4{grid-column-start:4}.grid .g-start-md-5{grid-column-start:5}.grid .g-start-md-6{grid-column-start:6}.grid .g-start-md-7{grid-column-start:7}.grid .g-start-md-8{grid-column-start:8}.grid .g-start-md-9{grid-column-start:9}.grid .g-start-md-10{grid-column-start:10}.grid .g-start-md-11{grid-column-start:11}}@media(min-width: 992px){.grid .g-col-lg-1{grid-column:auto/span 1}.grid .g-col-lg-2{grid-column:auto/span 2}.grid .g-col-lg-3{grid-column:auto/span 3}.grid .g-col-lg-4{grid-column:auto/span 4}.grid .g-col-lg-5{grid-column:auto/span 5}.grid .g-col-lg-6{grid-column:auto/span 6}.grid .g-col-lg-7{grid-column:auto/span 7}.grid .g-col-lg-8{grid-column:auto/span 8}.grid .g-col-lg-9{grid-column:auto/span 9}.grid .g-col-lg-10{grid-column:auto/span 10}.grid .g-col-lg-11{grid-column:auto/span 11}.grid .g-col-lg-12{grid-column:auto/span 12}.grid .g-start-lg-1{grid-column-start:1}.grid .g-start-lg-2{grid-column-start:2}.grid .g-start-lg-3{grid-column-start:3}.grid .g-start-lg-4{grid-column-start:4}.grid .g-start-lg-5{grid-column-start:5}.grid .g-start-lg-6{grid-column-start:6}.grid .g-start-lg-7{grid-column-start:7}.grid .g-start-lg-8{grid-column-start:8}.grid .g-start-lg-9{grid-column-start:9}.grid .g-start-lg-10{grid-column-start:10}.grid .g-start-lg-11{grid-column-start:11}}@media(min-width: 1200px){.grid .g-col-xl-1{grid-column:auto/span 1}.grid .g-col-xl-2{grid-column:auto/span 2}.grid .g-col-xl-3{grid-column:auto/span 3}.grid .g-col-xl-4{grid-column:auto/span 4}.grid .g-col-xl-5{grid-column:auto/span 5}.grid .g-col-xl-6{grid-column:auto/span 6}.grid .g-col-xl-7{grid-column:auto/span 7}.grid .g-col-xl-8{grid-column:auto/span 8}.grid .g-col-xl-9{grid-column:auto/span 9}.grid .g-col-xl-10{grid-column:auto/span 10}.grid .g-col-xl-11{grid-column:auto/span 11}.grid .g-col-xl-12{grid-column:auto/span 12}.grid .g-start-xl-1{grid-column-start:1}.grid .g-start-xl-2{grid-column-start:2}.grid .g-start-xl-3{grid-column-start:3}.grid .g-start-xl-4{grid-column-start:4}.grid .g-start-xl-5{grid-column-start:5}.grid .g-start-xl-6{grid-column-start:6}.grid .g-start-xl-7{grid-column-start:7}.grid .g-start-xl-8{grid-column-start:8}.grid .g-start-xl-9{grid-column-start:9}.grid .g-start-xl-10{grid-column-start:10}.grid .g-start-xl-11{grid-column-start:11}}@media(min-width: 1400px){.grid .g-col-xxl-1{grid-column:auto/span 1}.grid .g-col-xxl-2{grid-column:auto/span 2}.grid .g-col-xxl-3{grid-column:auto/span 3}.grid .g-col-xxl-4{grid-column:auto/span 4}.grid .g-col-xxl-5{grid-column:auto/span 5}.grid .g-col-xxl-6{grid-column:auto/span 6}.grid .g-col-xxl-7{grid-column:auto/span 7}.grid .g-col-xxl-8{grid-column:auto/span 8}.grid .g-col-xxl-9{grid-column:auto/span 9}.grid .g-col-xxl-10{grid-column:auto/span 10}.grid .g-col-xxl-11{grid-column:auto/span 11}.grid .g-col-xxl-12{grid-column:auto/span 12}.grid .g-start-xxl-1{grid-column-start:1}.grid .g-start-xxl-2{grid-column-start:2}.grid .g-start-xxl-3{grid-column-start:3}.grid .g-start-xxl-4{grid-column-start:4}.grid .g-start-xxl-5{grid-column-start:5}.grid .g-start-xxl-6{grid-column-start:6}.grid .g-start-xxl-7{grid-column-start:7}.grid .g-start-xxl-8{grid-column-start:8}.grid .g-start-xxl-9{grid-column-start:9}.grid .g-start-xxl-10{grid-column-start:10}.grid .g-start-xxl-11{grid-column-start:11}}.table{--bs-table-color-type: initial;--bs-table-bg-type: initial;--bs-table-color-state: initial;--bs-table-bg-state: initial;--bs-table-color: #343a40;--bs-table-bg: #fff;--bs-table-border-color: #dee2e6;--bs-table-accent-bg: transparent;--bs-table-striped-color: #343a40;--bs-table-striped-bg: rgba(0, 0, 0, 0.05);--bs-table-active-color: #343a40;--bs-table-active-bg: rgba(0, 0, 0, 0.1);--bs-table-hover-color: #343a40;--bs-table-hover-bg: rgba(0, 0, 0, 0.075);width:100%;margin-bottom:1rem;vertical-align:top;border-color:var(--bs-table-border-color)}.table>:not(caption)>*>*{padding:.5rem .5rem;color:var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color)));background-color:var(--bs-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)))}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table-group-divider{border-top:calc(1px*2) solid #b2bac1}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem .25rem}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-borderless>:not(:first-child){border-top-width:0}.table-striped>tbody>tr:nth-of-type(odd)>*{--bs-table-color-type: var(--bs-table-striped-color);--bs-table-bg-type: var(--bs-table-striped-bg)}.table-striped-columns>:not(caption)>tr>:nth-child(even){--bs-table-color-type: var(--bs-table-striped-color);--bs-table-bg-type: var(--bs-table-striped-bg)}.table-active{--bs-table-color-state: var(--bs-table-active-color);--bs-table-bg-state: var(--bs-table-active-bg)}.table-hover>tbody>tr:hover>*{--bs-table-color-state: var(--bs-table-hover-color);--bs-table-bg-state: var(--bs-table-hover-bg)}.table-primary{--bs-table-color: #000;--bs-table-bg: #e2e2e3;--bs-table-border-color: #cbcbcc;--bs-table-striped-bg: #d7d7d8;--bs-table-striped-color: #000;--bs-table-active-bg: #cbcbcc;--bs-table-active-color: #000;--bs-table-hover-bg: #d1d1d2;--bs-table-hover-color: #000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-secondary{--bs-table-color: #000;--bs-table-bg: #d6d8d9;--bs-table-border-color: #c1c2c3;--bs-table-striped-bg: #cbcdce;--bs-table-striped-color: #000;--bs-table-active-bg: #c1c2c3;--bs-table-active-color: #000;--bs-table-hover-bg: #c6c8c9;--bs-table-hover-color: #000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-success{--bs-table-color: #000;--bs-table-bg: #d9f0d1;--bs-table-border-color: #c3d8bc;--bs-table-striped-bg: #cee4c7;--bs-table-striped-color: #000;--bs-table-active-bg: #c3d8bc;--bs-table-active-color: #000;--bs-table-hover-bg: #c9dec1;--bs-table-hover-color: #000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-info{--bs-table-color: #000;--bs-table-bg: #ebddf1;--bs-table-border-color: #d4c7d9;--bs-table-striped-bg: #dfd2e5;--bs-table-striped-color: #000;--bs-table-active-bg: #d4c7d9;--bs-table-active-color: #000;--bs-table-hover-bg: #d9ccdf;--bs-table-hover-color: #000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-warning{--bs-table-color: #000;--bs-table-bg: #ffe3d1;--bs-table-border-color: #e6ccbc;--bs-table-striped-bg: #f2d8c7;--bs-table-striped-color: #000;--bs-table-active-bg: #e6ccbc;--bs-table-active-color: #000;--bs-table-hover-bg: #ecd2c1;--bs-table-hover-color: #000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-danger{--bs-table-color: #000;--bs-table-bg: #ffccd7;--bs-table-border-color: #e6b8c2;--bs-table-striped-bg: #f2c2cc;--bs-table-striped-color: #000;--bs-table-active-bg: #e6b8c2;--bs-table-active-color: #000;--bs-table-hover-bg: #ecbdc7;--bs-table-hover-color: #000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-light{--bs-table-color: #000;--bs-table-bg: #f8f9fa;--bs-table-border-color: #dfe0e1;--bs-table-striped-bg: #ecedee;--bs-table-striped-color: #000;--bs-table-active-bg: #dfe0e1;--bs-table-active-color: #000;--bs-table-hover-bg: #e5e6e7;--bs-table-hover-color: #000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-dark{--bs-table-color: #fff;--bs-table-bg: #343a40;--bs-table-border-color: #484e53;--bs-table-striped-bg: #3e444a;--bs-table-striped-color: #fff;--bs-table-active-bg: #484e53;--bs-table-active-color: #fff;--bs-table-hover-bg: #43494e;--bs-table-hover-color: #fff;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media(max-width: 575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label,.shiny-input-container .control-label{margin-bottom:.5rem}.col-form-label{padding-top:calc(0.375rem + 1px);padding-bottom:calc(0.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(0.5rem + 1px);padding-bottom:calc(0.5rem + 1px);font-size:1.25rem}.col-form-label-sm{padding-top:calc(0.25rem + 1px);padding-bottom:calc(0.25rem + 1px);font-size:0.875rem}.form-text{margin-top:.25rem;font-size:0.875em;color:rgba(52,58,64,.75)}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#343a40;appearance:none;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;-o-appearance:none;background-color:#fff;background-clip:padding-box;border:1px solid #dee2e6;border-radius:0;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#343a40;background-color:#fff;border-color:#b6b7b8;outline:0;box-shadow:0 0 0 .25rem rgba(109,110,113,.25)}.form-control::-webkit-date-and-time-value{min-width:85px;height:1.5em;margin:0}.form-control::-webkit-datetime-edit{display:block;padding:0}.form-control::placeholder{color:rgba(52,58,64,.75);opacity:1}.form-control:disabled{background-color:#e9ecef;opacity:1}.form-control::file-selector-button{padding:.375rem .75rem;margin:-0.375rem -0.75rem;margin-inline-end:.75rem;color:#343a40;background-color:#f8f9fa;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#e9ecef}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:#343a40;background-color:rgba(0,0,0,0);border:solid rgba(0,0,0,0);border-width:1px 0}.form-control-plaintext:focus{outline:0}.form-control-plaintext.form-control-sm,.form-control-plaintext.form-control-lg{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + 0.5rem + calc(1px * 2));padding:.25rem .5rem;font-size:0.875rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-0.25rem -0.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + 1rem + calc(1px * 2));padding:.5rem 1rem;font-size:1.25rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-0.5rem -1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + 0.75rem + calc(1px * 2))}textarea.form-control-sm{min-height:calc(1.5em + 0.5rem + calc(1px * 2))}textarea.form-control-lg{min-height:calc(1.5em + 1rem + calc(1px * 2))}.form-control-color{width:3rem;height:calc(1.5em + 0.75rem + calc(1px * 2));padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{border:0 !important}.form-control-color::-webkit-color-swatch{border:0 !important}.form-control-color.form-control-sm{height:calc(1.5em + 0.5rem + calc(1px * 2))}.form-control-color.form-control-lg{height:calc(1.5em + 1rem + calc(1px * 2))}.form-select{--bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#343a40;appearance:none;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;-o-appearance:none;background-color:#fff;background-image:var(--bs-form-select-bg-img),var(--bs-form-select-bg-icon, none);background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:1px solid #dee2e6;border-radius:0;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-select{transition:none}}.form-select:focus{border-color:#b6b7b8;outline:0;box-shadow:0 0 0 .25rem rgba(109,110,113,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:#e9ecef}.form-select:-moz-focusring{color:rgba(0,0,0,0);text-shadow:0 0 0 #343a40}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:0.875rem}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}[data-bs-theme=dark] .form-select{--bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23dee2e6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e")}.form-check,.shiny-input-container .checkbox,.shiny-input-container .radio{display:block;min-height:1.5rem;padding-left:0;margin-bottom:.125rem}.form-check .form-check-input,.form-check .shiny-input-container .checkbox input,.form-check .shiny-input-container .radio input,.shiny-input-container .checkbox .form-check-input,.shiny-input-container .checkbox .shiny-input-container .checkbox input,.shiny-input-container .checkbox .shiny-input-container .radio input,.shiny-input-container .radio .form-check-input,.shiny-input-container .radio .shiny-input-container .checkbox input,.shiny-input-container .radio .shiny-input-container .radio input{float:left;margin-left:0}.form-check-reverse{padding-right:0;padding-left:0;text-align:right}.form-check-reverse .form-check-input{float:right;margin-right:0;margin-left:0}.form-check-input,.shiny-input-container .checkbox input,.shiny-input-container .checkbox-inline input,.shiny-input-container .radio input,.shiny-input-container .radio-inline input{--bs-form-check-bg: #fff;width:1em;height:1em;margin-top:.25em;vertical-align:top;appearance:none;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;-o-appearance:none;background-color:var(--bs-form-check-bg);background-image:var(--bs-form-check-bg-image);background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid #dee2e6;print-color-adjust:exact}.form-check-input[type=radio],.shiny-input-container .checkbox input[type=radio],.shiny-input-container .checkbox-inline input[type=radio],.shiny-input-container .radio input[type=radio],.shiny-input-container .radio-inline input[type=radio]{border-radius:50%}.form-check-input:active,.shiny-input-container .checkbox input:active,.shiny-input-container .checkbox-inline input:active,.shiny-input-container .radio input:active,.shiny-input-container .radio-inline input:active{filter:brightness(90%)}.form-check-input:focus,.shiny-input-container .checkbox input:focus,.shiny-input-container .checkbox-inline input:focus,.shiny-input-container .radio input:focus,.shiny-input-container .radio-inline input:focus{border-color:#b6b7b8;outline:0;box-shadow:0 0 0 .25rem rgba(109,110,113,.25)}.form-check-input:checked,.shiny-input-container .checkbox input:checked,.shiny-input-container .checkbox-inline input:checked,.shiny-input-container .radio input:checked,.shiny-input-container .radio-inline input:checked{background-color:#6d6e71;border-color:#6d6e71}.form-check-input:checked[type=checkbox],.shiny-input-container .checkbox input:checked[type=checkbox],.shiny-input-container .checkbox-inline input:checked[type=checkbox],.shiny-input-container .radio input:checked[type=checkbox],.shiny-input-container .radio-inline input:checked[type=checkbox]{--bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e")}.form-check-input:checked[type=radio],.shiny-input-container .checkbox input:checked[type=radio],.shiny-input-container .checkbox-inline input:checked[type=radio],.shiny-input-container .radio input:checked[type=radio],.shiny-input-container .radio-inline input:checked[type=radio]{--bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate,.shiny-input-container .checkbox input[type=checkbox]:indeterminate,.shiny-input-container .checkbox-inline input[type=checkbox]:indeterminate,.shiny-input-container .radio input[type=checkbox]:indeterminate,.shiny-input-container .radio-inline input[type=checkbox]:indeterminate{background-color:#6d6e71;border-color:#6d6e71;--bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled,.shiny-input-container .checkbox input:disabled,.shiny-input-container .checkbox-inline input:disabled,.shiny-input-container .radio input:disabled,.shiny-input-container .radio-inline input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input[disabled]~.form-check-label,.form-check-input[disabled]~span,.form-check-input:disabled~.form-check-label,.form-check-input:disabled~span,.shiny-input-container .checkbox input[disabled]~.form-check-label,.shiny-input-container .checkbox input[disabled]~span,.shiny-input-container .checkbox input:disabled~.form-check-label,.shiny-input-container .checkbox input:disabled~span,.shiny-input-container .checkbox-inline input[disabled]~.form-check-label,.shiny-input-container .checkbox-inline input[disabled]~span,.shiny-input-container .checkbox-inline input:disabled~.form-check-label,.shiny-input-container .checkbox-inline input:disabled~span,.shiny-input-container .radio input[disabled]~.form-check-label,.shiny-input-container .radio input[disabled]~span,.shiny-input-container .radio input:disabled~.form-check-label,.shiny-input-container .radio input:disabled~span,.shiny-input-container .radio-inline input[disabled]~.form-check-label,.shiny-input-container .radio-inline input[disabled]~span,.shiny-input-container .radio-inline input:disabled~.form-check-label,.shiny-input-container .radio-inline input:disabled~span{cursor:default;opacity:.5}.form-check-label,.shiny-input-container .checkbox label,.shiny-input-container .checkbox-inline label,.shiny-input-container .radio label,.shiny-input-container .radio-inline label{cursor:pointer}.form-switch{padding-left:2.5em}.form-switch .form-check-input{--bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");width:2em;margin-left:-2.5em;background-image:var(--bs-form-switch-bg);background-position:left center;transition:background-position .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{--bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23b6b7b8'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:right center;--bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.form-switch.form-check-reverse{padding-right:2.5em;padding-left:0}.form-switch.form-check-reverse .form-check-input{margin-right:-2.5em;margin-left:0}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.btn-check[disabled]+.btn,.btn-check:disabled+.btn{pointer-events:none;filter:none;opacity:.65}[data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus){--bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e")}.form-range{width:100%;height:1.5rem;padding:0;appearance:none;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;-o-appearance:none;background-color:rgba(0,0,0,0)}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(109,110,113,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(109,110,113,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-0.25rem;appearance:none;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;-o-appearance:none;background-color:#6d6e71;border:0;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-range::-webkit-slider-thumb{transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#d3d4d4}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:rgba(0,0,0,0);cursor:pointer;background-color:#f8f9fa;border-color:rgba(0,0,0,0)}.form-range::-moz-range-thumb{width:1rem;height:1rem;appearance:none;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;-o-appearance:none;background-color:#6d6e71;border:0;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-range::-moz-range-thumb{transition:none}}.form-range::-moz-range-thumb:active{background-color:#d3d4d4}.form-range::-moz-range-track{width:100%;height:.5rem;color:rgba(0,0,0,0);cursor:pointer;background-color:#f8f9fa;border-color:rgba(0,0,0,0)}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:rgba(52,58,64,.75)}.form-range:disabled::-moz-range-thumb{background-color:rgba(52,58,64,.75)}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-control-plaintext,.form-floating>.form-select{height:calc(3.5rem + calc(1px * 2));min-height:calc(3.5rem + calc(1px * 2));line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;z-index:2;height:100%;padding:1rem .75rem;overflow:hidden;text-align:start;text-overflow:ellipsis;white-space:nowrap;pointer-events:none;border:1px solid rgba(0,0,0,0);transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media(prefers-reduced-motion: reduce){.form-floating>label{transition:none}}.form-floating>.form-control,.form-floating>.form-control-plaintext{padding:1rem .75rem}.form-floating>.form-control::placeholder,.form-floating>.form-control-plaintext::placeholder{color:rgba(0,0,0,0)}.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown),.form-floating>.form-control-plaintext:focus,.form-floating>.form-control-plaintext:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:-webkit-autofill,.form-floating>.form-control-plaintext:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-control-plaintext~label,.form-floating>.form-select~label{color:rgba(var(--bs-body-color-rgb), 0.65);transform:scale(0.85) translateY(-0.5rem) translateX(0.15rem)}.form-floating>.form-control:focus~label::after,.form-floating>.form-control:not(:placeholder-shown)~label::after,.form-floating>.form-control-plaintext~label::after,.form-floating>.form-select~label::after{position:absolute;inset:1rem .375rem;z-index:-1;height:1.5em;content:"";background-color:#fff}.form-floating>.form-control:-webkit-autofill~label{color:rgba(var(--bs-body-color-rgb), 0.65);transform:scale(0.85) translateY(-0.5rem) translateX(0.15rem)}.form-floating>.form-control-plaintext~label{border-width:1px 0}.form-floating>:disabled~label,.form-floating>.form-control:disabled~label{color:#6c757d}.form-floating>:disabled~label::after,.form-floating>.form-control:disabled~label::after{background-color:#e9ecef}.input-group{position:relative;display:flex;display:-webkit-flex;flex-wrap:wrap;-webkit-flex-wrap:wrap;align-items:stretch;-webkit-align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-select,.input-group>.form-floating{position:relative;flex:1 1 auto;-webkit-flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-select:focus,.input-group>.form-floating:focus-within{z-index:5}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:5}.input-group-text{display:flex;display:-webkit-flex;align-items:center;-webkit-align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#343a40;text-align:center;white-space:nowrap;background-color:#f8f9fa;border:1px solid #dee2e6}.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text,.input-group-lg>.btn{padding:.5rem 1rem;font-size:1.25rem}.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text,.input-group-sm>.btn{padding:.25rem .5rem;font-size:0.875rem}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:calc(1px*-1)}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:0.875em;color:#3fb618}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:0.875rem;color:#fff;background-color:#3fb618}.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip,.is-valid~.valid-feedback,.is-valid~.valid-tooltip{display:block}.was-validated .form-control:valid,.form-control.is-valid{border-color:#3fb618;padding-right:calc(1.5em + 0.75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%233fb618' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(0.375em + 0.1875rem) center;background-size:calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .form-control:valid:focus,.form-control.is-valid:focus{border-color:#3fb618;box-shadow:0 0 0 .25rem rgba(63,182,24,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + 0.75rem);background-position:top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem)}.was-validated .form-select:valid,.form-select.is-valid{border-color:#3fb618}.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"],.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"]{--bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%233fb618' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");padding-right:4.125rem;background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .form-select:valid:focus,.form-select.is-valid:focus{border-color:#3fb618;box-shadow:0 0 0 .25rem rgba(63,182,24,.25)}.was-validated .form-control-color:valid,.form-control-color.is-valid{width:calc(3rem + calc(1.5em + 0.75rem))}.was-validated .form-check-input:valid,.form-check-input.is-valid{border-color:#3fb618}.was-validated .form-check-input:valid:checked,.form-check-input.is-valid:checked{background-color:#3fb618}.was-validated .form-check-input:valid:focus,.form-check-input.is-valid:focus{box-shadow:0 0 0 .25rem rgba(63,182,24,.25)}.was-validated .form-check-input:valid~.form-check-label,.form-check-input.is-valid~.form-check-label{color:#3fb618}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.was-validated .input-group>.form-control:not(:focus):valid,.input-group>.form-control:not(:focus).is-valid,.was-validated .input-group>.form-select:not(:focus):valid,.input-group>.form-select:not(:focus).is-valid,.was-validated .input-group>.form-floating:not(:focus-within):valid,.input-group>.form-floating:not(:focus-within).is-valid{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:0.875em;color:#ff0039}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:0.875rem;color:#fff;background-color:#ff0039}.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip,.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip{display:block}.was-validated .form-control:invalid,.form-control.is-invalid{border-color:#ff0039;padding-right:calc(1.5em + 0.75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23ff0039'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ff0039' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(0.375em + 0.1875rem) center;background-size:calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .form-control:invalid:focus,.form-control.is-invalid:focus{border-color:#ff0039;box-shadow:0 0 0 .25rem rgba(255,0,57,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + 0.75rem);background-position:top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem)}.was-validated .form-select:invalid,.form-select.is-invalid{border-color:#ff0039}.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"],.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"]{--bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23ff0039'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ff0039' stroke='none'/%3e%3c/svg%3e");padding-right:4.125rem;background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .form-select:invalid:focus,.form-select.is-invalid:focus{border-color:#ff0039;box-shadow:0 0 0 .25rem rgba(255,0,57,.25)}.was-validated .form-control-color:invalid,.form-control-color.is-invalid{width:calc(3rem + calc(1.5em + 0.75rem))}.was-validated .form-check-input:invalid,.form-check-input.is-invalid{border-color:#ff0039}.was-validated .form-check-input:invalid:checked,.form-check-input.is-invalid:checked{background-color:#ff0039}.was-validated .form-check-input:invalid:focus,.form-check-input.is-invalid:focus{box-shadow:0 0 0 .25rem rgba(255,0,57,.25)}.was-validated .form-check-input:invalid~.form-check-label,.form-check-input.is-invalid~.form-check-label{color:#ff0039}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.was-validated .input-group>.form-control:not(:focus):invalid,.input-group>.form-control:not(:focus).is-invalid,.was-validated .input-group>.form-select:not(:focus):invalid,.input-group>.form-select:not(:focus).is-invalid,.was-validated .input-group>.form-floating:not(:focus-within):invalid,.input-group>.form-floating:not(:focus-within).is-invalid{z-index:4}.btn{--bs-btn-padding-x: 0.75rem;--bs-btn-padding-y: 0.375rem;--bs-btn-font-family: ;--bs-btn-font-size:1rem;--bs-btn-font-weight: 400;--bs-btn-line-height: 1.5;--bs-btn-color: #343a40;--bs-btn-bg: transparent;--bs-btn-border-width: 1px;--bs-btn-border-color: transparent;--bs-btn-border-radius: 0.25rem;--bs-btn-hover-border-color: transparent;--bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);--bs-btn-disabled-opacity: 0.65;--bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);display:inline-block;padding:var(--bs-btn-padding-y) var(--bs-btn-padding-x);font-family:var(--bs-btn-font-family);font-size:var(--bs-btn-font-size);font-weight:var(--bs-btn-font-weight);line-height:var(--bs-btn-line-height);color:var(--bs-btn-color);text-align:center;text-decoration:none;-webkit-text-decoration:none;-moz-text-decoration:none;-ms-text-decoration:none;-o-text-decoration:none;vertical-align:middle;cursor:pointer;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;border:var(--bs-btn-border-width) solid var(--bs-btn-border-color);background-color:var(--bs-btn-bg);transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.btn{transition:none}}.btn:hover{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color)}.btn-check+.btn:hover{color:var(--bs-btn-color);background-color:var(--bs-btn-bg);border-color:var(--bs-btn-border-color)}.btn:focus-visible{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color);outline:0;box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:focus-visible+.btn{border-color:var(--bs-btn-hover-border-color);outline:0;box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:checked+.btn,:not(.btn-check)+.btn:active,.btn:first-child:active,.btn.active,.btn.show{color:var(--bs-btn-active-color);background-color:var(--bs-btn-active-bg);border-color:var(--bs-btn-active-border-color)}.btn-check:checked+.btn:focus-visible,:not(.btn-check)+.btn:active:focus-visible,.btn:first-child:active:focus-visible,.btn.active:focus-visible,.btn.show:focus-visible{box-shadow:var(--bs-btn-focus-box-shadow)}.btn:disabled,.btn.disabled,fieldset:disabled .btn{color:var(--bs-btn-disabled-color);pointer-events:none;background-color:var(--bs-btn-disabled-bg);border-color:var(--bs-btn-disabled-border-color);opacity:var(--bs-btn-disabled-opacity)}.btn-default{--bs-btn-color: #fff;--bs-btn-bg: #343a40;--bs-btn-border-color: #343a40;--bs-btn-hover-color: #fff;--bs-btn-hover-bg: #2c3136;--bs-btn-hover-border-color: #2a2e33;--bs-btn-focus-shadow-rgb: 82, 88, 93;--bs-btn-active-color: #fff;--bs-btn-active-bg: #2a2e33;--bs-btn-active-border-color: #272c30;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #fff;--bs-btn-disabled-bg: #343a40;--bs-btn-disabled-border-color: #343a40}.btn-primary{--bs-btn-color: #fff;--bs-btn-bg: #6D6E71;--bs-btn-border-color: #6D6E71;--bs-btn-hover-color: #fff;--bs-btn-hover-bg: #5d5e60;--bs-btn-hover-border-color: #57585a;--bs-btn-focus-shadow-rgb: 131, 132, 134;--bs-btn-active-color: #fff;--bs-btn-active-bg: #57585a;--bs-btn-active-border-color: #525355;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #fff;--bs-btn-disabled-bg: #6D6E71;--bs-btn-disabled-border-color: #6D6E71}.btn-secondary{--bs-btn-color: #fff;--bs-btn-bg: #343a40;--bs-btn-border-color: #343a40;--bs-btn-hover-color: #fff;--bs-btn-hover-bg: #2c3136;--bs-btn-hover-border-color: #2a2e33;--bs-btn-focus-shadow-rgb: 82, 88, 93;--bs-btn-active-color: #fff;--bs-btn-active-bg: #2a2e33;--bs-btn-active-border-color: #272c30;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #fff;--bs-btn-disabled-bg: #343a40;--bs-btn-disabled-border-color: #343a40}.btn-success{--bs-btn-color: #fff;--bs-btn-bg: #3fb618;--bs-btn-border-color: #3fb618;--bs-btn-hover-color: #fff;--bs-btn-hover-bg: #369b14;--bs-btn-hover-border-color: #329213;--bs-btn-focus-shadow-rgb: 92, 193, 59;--bs-btn-active-color: #fff;--bs-btn-active-bg: #329213;--bs-btn-active-border-color: #2f8912;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #fff;--bs-btn-disabled-bg: #3fb618;--bs-btn-disabled-border-color: #3fb618}.btn-info{--bs-btn-color: #fff;--bs-btn-bg: #9954bb;--bs-btn-border-color: #9954bb;--bs-btn-hover-color: #fff;--bs-btn-hover-bg: #82479f;--bs-btn-hover-border-color: #7a4396;--bs-btn-focus-shadow-rgb: 168, 110, 197;--bs-btn-active-color: #fff;--bs-btn-active-bg: #7a4396;--bs-btn-active-border-color: #733f8c;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #fff;--bs-btn-disabled-bg: #9954bb;--bs-btn-disabled-border-color: #9954bb}.btn-warning{--bs-btn-color: #fff;--bs-btn-bg: #ff7518;--bs-btn-border-color: #ff7518;--bs-btn-hover-color: #fff;--bs-btn-hover-bg: #d96314;--bs-btn-hover-border-color: #cc5e13;--bs-btn-focus-shadow-rgb: 255, 138, 59;--bs-btn-active-color: #fff;--bs-btn-active-bg: #cc5e13;--bs-btn-active-border-color: #bf5812;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #fff;--bs-btn-disabled-bg: #ff7518;--bs-btn-disabled-border-color: #ff7518}.btn-danger{--bs-btn-color: #fff;--bs-btn-bg: #ff0039;--bs-btn-border-color: #ff0039;--bs-btn-hover-color: #fff;--bs-btn-hover-bg: #d90030;--bs-btn-hover-border-color: #cc002e;--bs-btn-focus-shadow-rgb: 255, 38, 87;--bs-btn-active-color: #fff;--bs-btn-active-bg: #cc002e;--bs-btn-active-border-color: #bf002b;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #fff;--bs-btn-disabled-bg: #ff0039;--bs-btn-disabled-border-color: #ff0039}.btn-light{--bs-btn-color: #000;--bs-btn-bg: #f8f9fa;--bs-btn-border-color: #f8f9fa;--bs-btn-hover-color: #000;--bs-btn-hover-bg: #d3d4d5;--bs-btn-hover-border-color: #c6c7c8;--bs-btn-focus-shadow-rgb: 211, 212, 213;--bs-btn-active-color: #000;--bs-btn-active-bg: #c6c7c8;--bs-btn-active-border-color: #babbbc;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #000;--bs-btn-disabled-bg: #f8f9fa;--bs-btn-disabled-border-color: #f8f9fa}.btn-dark{--bs-btn-color: #fff;--bs-btn-bg: #343a40;--bs-btn-border-color: #343a40;--bs-btn-hover-color: #fff;--bs-btn-hover-bg: #52585d;--bs-btn-hover-border-color: #484e53;--bs-btn-focus-shadow-rgb: 82, 88, 93;--bs-btn-active-color: #fff;--bs-btn-active-bg: #5d6166;--bs-btn-active-border-color: #484e53;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #fff;--bs-btn-disabled-bg: #343a40;--bs-btn-disabled-border-color: #343a40}.btn-outline-default{--bs-btn-color: #343a40;--bs-btn-border-color: #343a40;--bs-btn-hover-color: #fff;--bs-btn-hover-bg: #343a40;--bs-btn-hover-border-color: #343a40;--bs-btn-focus-shadow-rgb: 52, 58, 64;--bs-btn-active-color: #fff;--bs-btn-active-bg: #343a40;--bs-btn-active-border-color: #343a40;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #343a40;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #343a40;--bs-btn-bg: transparent;--bs-gradient: none}.btn-outline-primary{--bs-btn-color: #6D6E71;--bs-btn-border-color: #6D6E71;--bs-btn-hover-color: #fff;--bs-btn-hover-bg: #6D6E71;--bs-btn-hover-border-color: #6D6E71;--bs-btn-focus-shadow-rgb: 109, 110, 113;--bs-btn-active-color: #fff;--bs-btn-active-bg: #6D6E71;--bs-btn-active-border-color: #6D6E71;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #6D6E71;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #6D6E71;--bs-btn-bg: transparent;--bs-gradient: none}.btn-outline-secondary{--bs-btn-color: #343a40;--bs-btn-border-color: #343a40;--bs-btn-hover-color: #fff;--bs-btn-hover-bg: #343a40;--bs-btn-hover-border-color: #343a40;--bs-btn-focus-shadow-rgb: 52, 58, 64;--bs-btn-active-color: #fff;--bs-btn-active-bg: #343a40;--bs-btn-active-border-color: #343a40;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #343a40;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #343a40;--bs-btn-bg: transparent;--bs-gradient: none}.btn-outline-success{--bs-btn-color: #3fb618;--bs-btn-border-color: #3fb618;--bs-btn-hover-color: #fff;--bs-btn-hover-bg: #3fb618;--bs-btn-hover-border-color: #3fb618;--bs-btn-focus-shadow-rgb: 63, 182, 24;--bs-btn-active-color: #fff;--bs-btn-active-bg: #3fb618;--bs-btn-active-border-color: #3fb618;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #3fb618;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #3fb618;--bs-btn-bg: transparent;--bs-gradient: none}.btn-outline-info{--bs-btn-color: #9954bb;--bs-btn-border-color: #9954bb;--bs-btn-hover-color: #fff;--bs-btn-hover-bg: #9954bb;--bs-btn-hover-border-color: #9954bb;--bs-btn-focus-shadow-rgb: 153, 84, 187;--bs-btn-active-color: #fff;--bs-btn-active-bg: #9954bb;--bs-btn-active-border-color: #9954bb;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #9954bb;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #9954bb;--bs-btn-bg: transparent;--bs-gradient: none}.btn-outline-warning{--bs-btn-color: #ff7518;--bs-btn-border-color: #ff7518;--bs-btn-hover-color: #fff;--bs-btn-hover-bg: #ff7518;--bs-btn-hover-border-color: #ff7518;--bs-btn-focus-shadow-rgb: 255, 117, 24;--bs-btn-active-color: #fff;--bs-btn-active-bg: #ff7518;--bs-btn-active-border-color: #ff7518;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #ff7518;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #ff7518;--bs-btn-bg: transparent;--bs-gradient: none}.btn-outline-danger{--bs-btn-color: #ff0039;--bs-btn-border-color: #ff0039;--bs-btn-hover-color: #fff;--bs-btn-hover-bg: #ff0039;--bs-btn-hover-border-color: #ff0039;--bs-btn-focus-shadow-rgb: 255, 0, 57;--bs-btn-active-color: #fff;--bs-btn-active-bg: #ff0039;--bs-btn-active-border-color: #ff0039;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #ff0039;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #ff0039;--bs-btn-bg: transparent;--bs-gradient: none}.btn-outline-light{--bs-btn-color: #f8f9fa;--bs-btn-border-color: #f8f9fa;--bs-btn-hover-color: #000;--bs-btn-hover-bg: #f8f9fa;--bs-btn-hover-border-color: #f8f9fa;--bs-btn-focus-shadow-rgb: 248, 249, 250;--bs-btn-active-color: #000;--bs-btn-active-bg: #f8f9fa;--bs-btn-active-border-color: #f8f9fa;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #f8f9fa;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #f8f9fa;--bs-btn-bg: transparent;--bs-gradient: none}.btn-outline-dark{--bs-btn-color: #343a40;--bs-btn-border-color: #343a40;--bs-btn-hover-color: #fff;--bs-btn-hover-bg: #343a40;--bs-btn-hover-border-color: #343a40;--bs-btn-focus-shadow-rgb: 52, 58, 64;--bs-btn-active-color: #fff;--bs-btn-active-bg: #343a40;--bs-btn-active-border-color: #343a40;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #343a40;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #343a40;--bs-btn-bg: transparent;--bs-gradient: none}.btn-link{--bs-btn-font-weight: 400;--bs-btn-color: #6D6E71;--bs-btn-bg: transparent;--bs-btn-border-color: transparent;--bs-btn-hover-color: #57585a;--bs-btn-hover-border-color: transparent;--bs-btn-active-color: #57585a;--bs-btn-active-border-color: transparent;--bs-btn-disabled-color: #6c757d;--bs-btn-disabled-border-color: transparent;--bs-btn-box-shadow: 0 0 0 #000;--bs-btn-focus-shadow-rgb: 131, 132, 134;text-decoration:underline;-webkit-text-decoration:underline;-moz-text-decoration:underline;-ms-text-decoration:underline;-o-text-decoration:underline}.btn-link:focus-visible{color:var(--bs-btn-color)}.btn-link:hover{color:var(--bs-btn-hover-color)}.btn-lg,.btn-group-lg>.btn{--bs-btn-padding-y: 0.5rem;--bs-btn-padding-x: 1rem;--bs-btn-font-size:1.25rem;--bs-btn-border-radius: 0.5rem}.btn-sm,.btn-group-sm>.btn{--bs-btn-padding-y: 0.25rem;--bs-btn-padding-x: 0.5rem;--bs-btn-font-size:0.875rem;--bs-btn-border-radius: 0.2em}.fade{transition:opacity .15s linear}@media(prefers-reduced-motion: reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .2s ease}@media(prefers-reduced-motion: reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media(prefers-reduced-motion: reduce){.collapsing.collapse-horizontal{transition:none}}.dropup,.dropend,.dropdown,.dropstart,.dropup-center,.dropdown-center{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid rgba(0,0,0,0);border-bottom:0;border-left:.3em solid rgba(0,0,0,0)}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{--bs-dropdown-zindex: 1000;--bs-dropdown-min-width: 10rem;--bs-dropdown-padding-x: 0;--bs-dropdown-padding-y: 0.5rem;--bs-dropdown-spacer: 0.125rem;--bs-dropdown-font-size:1rem;--bs-dropdown-color: #343a40;--bs-dropdown-bg: #fff;--bs-dropdown-border-color: rgba(0, 0, 0, 0.175);--bs-dropdown-border-radius: 0.25rem;--bs-dropdown-border-width: 1px;--bs-dropdown-inner-border-radius: calc(0.25rem - 1px);--bs-dropdown-divider-bg: rgba(0, 0, 0, 0.175);--bs-dropdown-divider-margin-y: 0.5rem;--bs-dropdown-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-dropdown-link-color: #343a40;--bs-dropdown-link-hover-color: #343a40;--bs-dropdown-link-hover-bg: #f8f9fa;--bs-dropdown-link-active-color: #fff;--bs-dropdown-link-active-bg: #6D6E71;--bs-dropdown-link-disabled-color: rgba(52, 58, 64, 0.5);--bs-dropdown-item-padding-x: 1rem;--bs-dropdown-item-padding-y: 0.25rem;--bs-dropdown-header-color: #6c757d;--bs-dropdown-header-padding-x: 1rem;--bs-dropdown-header-padding-y: 0.5rem;position:absolute;z-index:var(--bs-dropdown-zindex);display:none;min-width:var(--bs-dropdown-min-width);padding:var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);margin:0;font-size:var(--bs-dropdown-font-size);color:var(--bs-dropdown-color);text-align:left;list-style:none;background-color:var(--bs-dropdown-bg);background-clip:padding-box;border:var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color)}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:var(--bs-dropdown-spacer)}.dropdown-menu-start{--bs-position: start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position: end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media(min-width: 576px){.dropdown-menu-sm-start{--bs-position: start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position: end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media(min-width: 768px){.dropdown-menu-md-start{--bs-position: start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position: end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media(min-width: 992px){.dropdown-menu-lg-start{--bs-position: start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position: end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media(min-width: 1200px){.dropdown-menu-xl-start{--bs-position: start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position: end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media(min-width: 1400px){.dropdown-menu-xxl-start{--bs-position: start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position: end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:var(--bs-dropdown-spacer)}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid rgba(0,0,0,0);border-bottom:.3em solid;border-left:.3em solid rgba(0,0,0,0)}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:var(--bs-dropdown-spacer)}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid rgba(0,0,0,0);border-right:0;border-bottom:.3em solid rgba(0,0,0,0);border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:var(--bs-dropdown-spacer)}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid rgba(0,0,0,0);border-right:.3em solid;border-bottom:.3em solid rgba(0,0,0,0)}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:var(--bs-dropdown-divider-margin-y) 0;overflow:hidden;border-top:1px solid var(--bs-dropdown-divider-bg);opacity:1}.dropdown-item{display:block;width:100%;padding:var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);clear:both;font-weight:400;color:var(--bs-dropdown-link-color);text-align:inherit;text-decoration:none;-webkit-text-decoration:none;-moz-text-decoration:none;-ms-text-decoration:none;-o-text-decoration:none;white-space:nowrap;background-color:rgba(0,0,0,0);border:0}.dropdown-item:hover,.dropdown-item:focus{color:var(--bs-dropdown-link-hover-color);background-color:var(--bs-dropdown-link-hover-bg)}.dropdown-item.active,.dropdown-item:active{color:var(--bs-dropdown-link-active-color);text-decoration:none;background-color:var(--bs-dropdown-link-active-bg)}.dropdown-item.disabled,.dropdown-item:disabled{color:var(--bs-dropdown-link-disabled-color);pointer-events:none;background-color:rgba(0,0,0,0)}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);margin-bottom:0;font-size:0.875rem;color:var(--bs-dropdown-header-color);white-space:nowrap}.dropdown-item-text{display:block;padding:var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);color:var(--bs-dropdown-link-color)}.dropdown-menu-dark{--bs-dropdown-color: #dee2e6;--bs-dropdown-bg: #343a40;--bs-dropdown-border-color: rgba(0, 0, 0, 0.175);--bs-dropdown-box-shadow: ;--bs-dropdown-link-color: #dee2e6;--bs-dropdown-link-hover-color: #fff;--bs-dropdown-divider-bg: rgba(0, 0, 0, 0.175);--bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);--bs-dropdown-link-active-color: #fff;--bs-dropdown-link-active-bg: #6D6E71;--bs-dropdown-link-disabled-color: #adb5bd;--bs-dropdown-header-color: #adb5bd}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;flex:1 1 auto;-webkit-flex:1 1 auto}.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn:hover,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn.active{z-index:1}.btn-toolbar{display:flex;display:-webkit-flex;flex-wrap:wrap;-webkit-flex-wrap:wrap;justify-content:flex-start;-webkit-justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>:not(.btn-check:first-child)+.btn,.btn-group>.btn-group:not(:first-child){margin-left:calc(1px*-1)}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-sm+.dropdown-toggle-split,.btn-group-sm>.btn+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-lg+.dropdown-toggle-split,.btn-group-lg>.btn+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;-webkit-flex-direction:column;align-items:flex-start;-webkit-align-items:flex-start;justify-content:center;-webkit-justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child){margin-top:calc(1px*-1)}.nav{--bs-nav-link-padding-x: 1rem;--bs-nav-link-padding-y: 0.5rem;--bs-nav-link-font-weight: ;--bs-nav-link-color: #6D6E71;--bs-nav-link-hover-color: #57585a;--bs-nav-link-disabled-color: rgba(52, 58, 64, 0.75);display:flex;display:-webkit-flex;flex-wrap:wrap;-webkit-flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);font-size:var(--bs-nav-link-font-size);font-weight:var(--bs-nav-link-font-weight);color:var(--bs-nav-link-color);text-decoration:none;-webkit-text-decoration:none;-moz-text-decoration:none;-ms-text-decoration:none;-o-text-decoration:none;background:none;border:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media(prefers-reduced-motion: reduce){.nav-link{transition:none}}.nav-link:hover,.nav-link:focus{color:var(--bs-nav-link-hover-color)}.nav-link:focus-visible{outline:0;box-shadow:0 0 0 .25rem rgba(109,110,113,.25)}.nav-link.disabled,.nav-link:disabled{color:var(--bs-nav-link-disabled-color);pointer-events:none;cursor:default}.nav-tabs{--bs-nav-tabs-border-width: 1px;--bs-nav-tabs-border-color: #dee2e6;--bs-nav-tabs-border-radius: 0.25rem;--bs-nav-tabs-link-hover-border-color: #e9ecef #e9ecef #dee2e6;--bs-nav-tabs-link-active-color: #000;--bs-nav-tabs-link-active-bg: #fff;--bs-nav-tabs-link-active-border-color: #dee2e6 #dee2e6 #fff;border-bottom:var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color)}.nav-tabs .nav-link{margin-bottom:calc(-1*var(--bs-nav-tabs-border-width));border:var(--bs-nav-tabs-border-width) solid rgba(0,0,0,0)}.nav-tabs .nav-link:hover,.nav-tabs .nav-link:focus{isolation:isolate;border-color:var(--bs-nav-tabs-link-hover-border-color)}.nav-tabs .nav-link.active,.nav-tabs .nav-item.show .nav-link{color:var(--bs-nav-tabs-link-active-color);background-color:var(--bs-nav-tabs-link-active-bg);border-color:var(--bs-nav-tabs-link-active-border-color)}.nav-tabs .dropdown-menu{margin-top:calc(-1*var(--bs-nav-tabs-border-width))}.nav-pills{--bs-nav-pills-border-radius: 0.25rem;--bs-nav-pills-link-active-color: #fff;--bs-nav-pills-link-active-bg: #6D6E71}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:var(--bs-nav-pills-link-active-color);background-color:var(--bs-nav-pills-link-active-bg)}.nav-underline{--bs-nav-underline-gap: 1rem;--bs-nav-underline-border-width: 0.125rem;--bs-nav-underline-link-active-color: #000;gap:var(--bs-nav-underline-gap)}.nav-underline .nav-link{padding-right:0;padding-left:0;border-bottom:var(--bs-nav-underline-border-width) solid rgba(0,0,0,0)}.nav-underline .nav-link:hover,.nav-underline .nav-link:focus{border-bottom-color:currentcolor}.nav-underline .nav-link.active,.nav-underline .show>.nav-link{font-weight:700;color:var(--bs-nav-underline-link-active-color);border-bottom-color:currentcolor}.nav-fill>.nav-link,.nav-fill .nav-item{flex:1 1 auto;-webkit-flex:1 1 auto;text-align:center}.nav-justified>.nav-link,.nav-justified .nav-item{flex-basis:0;-webkit-flex-basis:0;flex-grow:1;-webkit-flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{--bs-navbar-padding-x: 0;--bs-navbar-padding-y: 0.5rem;--bs-navbar-color: #fefefe;--bs-navbar-hover-color: rgba(254, 254, 254, 0.8);--bs-navbar-disabled-color: rgba(254, 254, 254, 0.75);--bs-navbar-active-color: #fefefe;--bs-navbar-brand-padding-y: 0.3125rem;--bs-navbar-brand-margin-end: 1rem;--bs-navbar-brand-font-size: 1.25rem;--bs-navbar-brand-color: #fefefe;--bs-navbar-brand-hover-color: #fefefe;--bs-navbar-nav-link-padding-x: 0.5rem;--bs-navbar-toggler-padding-y: 0.25;--bs-navbar-toggler-padding-x: 0;--bs-navbar-toggler-font-size: 1.25rem;--bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23fefefe' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");--bs-navbar-toggler-border-color: rgba(254, 254, 254, 0);--bs-navbar-toggler-border-radius: 0.25rem;--bs-navbar-toggler-focus-width: 0.25rem;--bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;position:relative;display:flex;display:-webkit-flex;flex-wrap:wrap;-webkit-flex-wrap:wrap;align-items:center;-webkit-align-items:center;justify-content:space-between;-webkit-justify-content:space-between;padding:var(--bs-navbar-padding-y) var(--bs-navbar-padding-x)}.navbar>.container,.navbar>.container-fluid,.navbar>.container-sm,.navbar>.container-md,.navbar>.container-lg,.navbar>.container-xl,.navbar>.container-xxl{display:flex;display:-webkit-flex;flex-wrap:inherit;-webkit-flex-wrap:inherit;align-items:center;-webkit-align-items:center;justify-content:space-between;-webkit-justify-content:space-between}.navbar-brand{padding-top:var(--bs-navbar-brand-padding-y);padding-bottom:var(--bs-navbar-brand-padding-y);margin-right:var(--bs-navbar-brand-margin-end);font-size:var(--bs-navbar-brand-font-size);color:var(--bs-navbar-brand-color);text-decoration:none;-webkit-text-decoration:none;-moz-text-decoration:none;-ms-text-decoration:none;-o-text-decoration:none;white-space:nowrap}.navbar-brand:hover,.navbar-brand:focus{color:var(--bs-navbar-brand-hover-color)}.navbar-nav{--bs-nav-link-padding-x: 0;--bs-nav-link-padding-y: 0.5rem;--bs-nav-link-font-weight: ;--bs-nav-link-color: var(--bs-navbar-color);--bs-nav-link-hover-color: var(--bs-navbar-hover-color);--bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link.active,.navbar-nav .nav-link.show{color:var(--bs-navbar-active-color)}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem;color:var(--bs-navbar-color)}.navbar-text a,.navbar-text a:hover,.navbar-text a:focus{color:var(--bs-navbar-active-color)}.navbar-collapse{flex-basis:100%;-webkit-flex-basis:100%;flex-grow:1;-webkit-flex-grow:1;align-items:center;-webkit-align-items:center}.navbar-toggler{padding:var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);font-size:var(--bs-navbar-toggler-font-size);line-height:1;color:var(--bs-navbar-color);background-color:rgba(0,0,0,0);border:var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);transition:var(--bs-navbar-toggler-transition)}@media(prefers-reduced-motion: reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 var(--bs-navbar-toggler-focus-width)}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-image:var(--bs-navbar-toggler-icon-bg);background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height, 75vh);overflow-y:auto}@media(min-width: 576px){.navbar-expand-sm{flex-wrap:nowrap;-webkit-flex-wrap:nowrap;justify-content:flex-start;-webkit-justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row;-webkit-flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex !important;display:-webkit-flex !important;flex-basis:auto;-webkit-flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .offcanvas{position:static;z-index:auto;flex-grow:1;-webkit-flex-grow:1;width:auto !important;height:auto !important;visibility:visible !important;background-color:rgba(0,0,0,0) !important;border:0 !important;transform:none !important;transition:none}.navbar-expand-sm .offcanvas .offcanvas-header{display:none}.navbar-expand-sm .offcanvas .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible}}@media(min-width: 768px){.navbar-expand-md{flex-wrap:nowrap;-webkit-flex-wrap:nowrap;justify-content:flex-start;-webkit-justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row;-webkit-flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex !important;display:-webkit-flex !important;flex-basis:auto;-webkit-flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .offcanvas{position:static;z-index:auto;flex-grow:1;-webkit-flex-grow:1;width:auto !important;height:auto !important;visibility:visible !important;background-color:rgba(0,0,0,0) !important;border:0 !important;transform:none !important;transition:none}.navbar-expand-md .offcanvas .offcanvas-header{display:none}.navbar-expand-md .offcanvas .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible}}@media(min-width: 992px){.navbar-expand-lg{flex-wrap:nowrap;-webkit-flex-wrap:nowrap;justify-content:flex-start;-webkit-justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row;-webkit-flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex !important;display:-webkit-flex !important;flex-basis:auto;-webkit-flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .offcanvas{position:static;z-index:auto;flex-grow:1;-webkit-flex-grow:1;width:auto !important;height:auto !important;visibility:visible !important;background-color:rgba(0,0,0,0) !important;border:0 !important;transform:none !important;transition:none}.navbar-expand-lg .offcanvas .offcanvas-header{display:none}.navbar-expand-lg .offcanvas .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible}}@media(min-width: 1200px){.navbar-expand-xl{flex-wrap:nowrap;-webkit-flex-wrap:nowrap;justify-content:flex-start;-webkit-justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row;-webkit-flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex !important;display:-webkit-flex !important;flex-basis:auto;-webkit-flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .offcanvas{position:static;z-index:auto;flex-grow:1;-webkit-flex-grow:1;width:auto !important;height:auto !important;visibility:visible !important;background-color:rgba(0,0,0,0) !important;border:0 !important;transform:none !important;transition:none}.navbar-expand-xl .offcanvas .offcanvas-header{display:none}.navbar-expand-xl .offcanvas .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible}}@media(min-width: 1400px){.navbar-expand-xxl{flex-wrap:nowrap;-webkit-flex-wrap:nowrap;justify-content:flex-start;-webkit-justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row;-webkit-flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex !important;display:-webkit-flex !important;flex-basis:auto;-webkit-flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}.navbar-expand-xxl .offcanvas{position:static;z-index:auto;flex-grow:1;-webkit-flex-grow:1;width:auto !important;height:auto !important;visibility:visible !important;background-color:rgba(0,0,0,0) !important;border:0 !important;transform:none !important;transition:none}.navbar-expand-xxl .offcanvas .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;-webkit-flex-wrap:nowrap;justify-content:flex-start;-webkit-justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row;-webkit-flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex !important;display:-webkit-flex !important;flex-basis:auto;-webkit-flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .offcanvas{position:static;z-index:auto;flex-grow:1;-webkit-flex-grow:1;width:auto !important;height:auto !important;visibility:visible !important;background-color:rgba(0,0,0,0) !important;border:0 !important;transform:none !important;transition:none}.navbar-expand .offcanvas .offcanvas-header{display:none}.navbar-expand .offcanvas .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible}.navbar-dark,.navbar[data-bs-theme=dark]{--bs-navbar-color: #fefefe;--bs-navbar-hover-color: rgba(254, 254, 254, 0.8);--bs-navbar-disabled-color: rgba(254, 254, 254, 0.75);--bs-navbar-active-color: #fefefe;--bs-navbar-brand-color: #fefefe;--bs-navbar-brand-hover-color: #fefefe;--bs-navbar-toggler-border-color: rgba(254, 254, 254, 0);--bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23fefefe' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}[data-bs-theme=dark] .navbar-toggler-icon{--bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23fefefe' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.card{--bs-card-spacer-y: 1rem;--bs-card-spacer-x: 1rem;--bs-card-title-spacer-y: 0.5rem;--bs-card-title-color: ;--bs-card-subtitle-color: ;--bs-card-border-width: 1px;--bs-card-border-color: rgba(0, 0, 0, 0.175);--bs-card-border-radius: 0.25rem;--bs-card-box-shadow: ;--bs-card-inner-border-radius: calc(0.25rem - 1px);--bs-card-cap-padding-y: 0.5rem;--bs-card-cap-padding-x: 1rem;--bs-card-cap-bg: rgba(52, 58, 64, 0.25);--bs-card-cap-color: ;--bs-card-height: ;--bs-card-color: ;--bs-card-bg: #fff;--bs-card-img-overlay-padding: 1rem;--bs-card-group-margin: 0.75rem;position:relative;display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;min-width:0;height:var(--bs-card-height);color:var(--bs-body-color);word-wrap:break-word;background-color:var(--bs-card-bg);background-clip:border-box;border:var(--bs-card-border-width) solid var(--bs-card-border-color)}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0}.card>.list-group:last-child{border-bottom-width:0}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;-webkit-flex:1 1 auto;padding:var(--bs-card-spacer-y) var(--bs-card-spacer-x);color:var(--bs-card-color)}.card-title{margin-bottom:var(--bs-card-title-spacer-y);color:var(--bs-card-title-color)}.card-subtitle{margin-top:calc(-0.5*var(--bs-card-title-spacer-y));margin-bottom:0;color:var(--bs-card-subtitle-color)}.card-text:last-child{margin-bottom:0}.card-link+.card-link{margin-left:var(--bs-card-spacer-x)}.card-header{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);margin-bottom:0;color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-bottom:var(--bs-card-border-width) solid var(--bs-card-border-color)}.card-footer{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-top:var(--bs-card-border-width) solid var(--bs-card-border-color)}.card-header-tabs{margin-right:calc(-0.5*var(--bs-card-cap-padding-x));margin-bottom:calc(-1*var(--bs-card-cap-padding-y));margin-left:calc(-0.5*var(--bs-card-cap-padding-x));border-bottom:0}.card-header-tabs .nav-link.active{background-color:var(--bs-card-bg);border-bottom-color:var(--bs-card-bg)}.card-header-pills{margin-right:calc(-0.5*var(--bs-card-cap-padding-x));margin-left:calc(-0.5*var(--bs-card-cap-padding-x))}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:var(--bs-card-img-overlay-padding)}.card-img,.card-img-top,.card-img-bottom{width:100%}.card-group>.card{margin-bottom:var(--bs-card-group-margin)}@media(min-width: 576px){.card-group{display:flex;display:-webkit-flex;flex-flow:row wrap;-webkit-flex-flow:row wrap}.card-group>.card{flex:1 0 0%;-webkit-flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}}.accordion{--bs-accordion-color: #343a40;--bs-accordion-bg: #fff;--bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;--bs-accordion-border-color: #dee2e6;--bs-accordion-border-width: 1px;--bs-accordion-border-radius: 0.25rem;--bs-accordion-inner-border-radius: calc(0.25rem - 1px);--bs-accordion-btn-padding-x: 1.25rem;--bs-accordion-btn-padding-y: 1rem;--bs-accordion-btn-color: #343a40;--bs-accordion-btn-bg: #fff;--bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23343a40'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-icon-width: 1.25rem;--bs-accordion-btn-icon-transform: rotate(-180deg);--bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;--bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232c2c2d'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-focus-border-color: #b6b7b8;--bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(109, 110, 113, 0.25);--bs-accordion-body-padding-x: 1.25rem;--bs-accordion-body-padding-y: 1rem;--bs-accordion-active-color: #2c2c2d;--bs-accordion-active-bg: #e2e2e3}.accordion-button{position:relative;display:flex;display:-webkit-flex;align-items:center;-webkit-align-items:center;width:100%;padding:var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);font-size:1rem;color:var(--bs-accordion-btn-color);text-align:left;background-color:var(--bs-accordion-btn-bg);border:0;overflow-anchor:none;transition:var(--bs-accordion-transition)}@media(prefers-reduced-motion: reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:var(--bs-accordion-active-color);background-color:var(--bs-accordion-active-bg);box-shadow:inset 0 calc(-1*var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color)}.accordion-button:not(.collapsed)::after{background-image:var(--bs-accordion-btn-active-icon);transform:var(--bs-accordion-btn-icon-transform)}.accordion-button::after{flex-shrink:0;-webkit-flex-shrink:0;width:var(--bs-accordion-btn-icon-width);height:var(--bs-accordion-btn-icon-width);margin-left:auto;content:"";background-image:var(--bs-accordion-btn-icon);background-repeat:no-repeat;background-size:var(--bs-accordion-btn-icon-width);transition:var(--bs-accordion-btn-icon-transition)}@media(prefers-reduced-motion: reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:var(--bs-accordion-btn-focus-border-color);outline:0;box-shadow:var(--bs-accordion-btn-focus-box-shadow)}.accordion-header{margin-bottom:0}.accordion-item{color:var(--bs-accordion-color);background-color:var(--bs-accordion-bg);border:var(--bs-accordion-border-width) solid var(--bs-accordion-border-color)}.accordion-item:not(:first-of-type){border-top:0}.accordion-body{padding:var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x)}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}[data-bs-theme=dark] .accordion-button::after{--bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23a7a8aa'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23a7a8aa'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.breadcrumb{--bs-breadcrumb-padding-x: 0;--bs-breadcrumb-padding-y: 0;--bs-breadcrumb-margin-bottom: 1rem;--bs-breadcrumb-bg: ;--bs-breadcrumb-border-radius: ;--bs-breadcrumb-divider-color: rgba(52, 58, 64, 0.75);--bs-breadcrumb-item-padding-x: 0.5rem;--bs-breadcrumb-item-active-color: rgba(52, 58, 64, 0.75);display:flex;display:-webkit-flex;flex-wrap:wrap;-webkit-flex-wrap:wrap;padding:var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);margin-bottom:var(--bs-breadcrumb-margin-bottom);font-size:var(--bs-breadcrumb-font-size);list-style:none;background-color:var(--bs-breadcrumb-bg)}.breadcrumb-item+.breadcrumb-item{padding-left:var(--bs-breadcrumb-item-padding-x)}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:var(--bs-breadcrumb-item-padding-x);color:var(--bs-breadcrumb-divider-color);content:var(--bs-breadcrumb-divider, ">") /* rtl: var(--bs-breadcrumb-divider, ">") */}.breadcrumb-item.active{color:var(--bs-breadcrumb-item-active-color)}.pagination{--bs-pagination-padding-x: 0.75rem;--bs-pagination-padding-y: 0.375rem;--bs-pagination-font-size:1rem;--bs-pagination-color: #6D6E71;--bs-pagination-bg: #fff;--bs-pagination-border-width: 1px;--bs-pagination-border-color: #dee2e6;--bs-pagination-border-radius: 0.25rem;--bs-pagination-hover-color: #57585a;--bs-pagination-hover-bg: #f8f9fa;--bs-pagination-hover-border-color: #dee2e6;--bs-pagination-focus-color: #57585a;--bs-pagination-focus-bg: #e9ecef;--bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(109, 110, 113, 0.25);--bs-pagination-active-color: #fff;--bs-pagination-active-bg: #6D6E71;--bs-pagination-active-border-color: #6D6E71;--bs-pagination-disabled-color: rgba(52, 58, 64, 0.75);--bs-pagination-disabled-bg: #e9ecef;--bs-pagination-disabled-border-color: #dee2e6;display:flex;display:-webkit-flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;padding:var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);font-size:var(--bs-pagination-font-size);color:var(--bs-pagination-color);text-decoration:none;-webkit-text-decoration:none;-moz-text-decoration:none;-ms-text-decoration:none;-o-text-decoration:none;background-color:var(--bs-pagination-bg);border:var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:var(--bs-pagination-hover-color);background-color:var(--bs-pagination-hover-bg);border-color:var(--bs-pagination-hover-border-color)}.page-link:focus{z-index:3;color:var(--bs-pagination-focus-color);background-color:var(--bs-pagination-focus-bg);outline:0;box-shadow:var(--bs-pagination-focus-box-shadow)}.page-link.active,.active>.page-link{z-index:3;color:var(--bs-pagination-active-color);background-color:var(--bs-pagination-active-bg);border-color:var(--bs-pagination-active-border-color)}.page-link.disabled,.disabled>.page-link{color:var(--bs-pagination-disabled-color);pointer-events:none;background-color:var(--bs-pagination-disabled-bg);border-color:var(--bs-pagination-disabled-border-color)}.page-item:not(:first-child) .page-link{margin-left:calc(1px*-1)}.pagination-lg{--bs-pagination-padding-x: 1.5rem;--bs-pagination-padding-y: 0.75rem;--bs-pagination-font-size:1.25rem;--bs-pagination-border-radius: 0.5rem}.pagination-sm{--bs-pagination-padding-x: 0.5rem;--bs-pagination-padding-y: 0.25rem;--bs-pagination-font-size:0.875rem;--bs-pagination-border-radius: 0.2em}.badge{--bs-badge-padding-x: 0.65em;--bs-badge-padding-y: 0.35em;--bs-badge-font-size:0.75em;--bs-badge-font-weight: 700;--bs-badge-color: #fff;--bs-badge-border-radius: 0.25rem;display:inline-block;padding:var(--bs-badge-padding-y) var(--bs-badge-padding-x);font-size:var(--bs-badge-font-size);font-weight:var(--bs-badge-font-weight);line-height:1;color:var(--bs-badge-color);text-align:center;white-space:nowrap;vertical-align:baseline}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{--bs-alert-bg: transparent;--bs-alert-padding-x: 1rem;--bs-alert-padding-y: 1rem;--bs-alert-margin-bottom: 1rem;--bs-alert-color: inherit;--bs-alert-border-color: transparent;--bs-alert-border: 0 solid var(--bs-alert-border-color);--bs-alert-border-radius: 0.25rem;--bs-alert-link-color: inherit;position:relative;padding:var(--bs-alert-padding-y) var(--bs-alert-padding-x);margin-bottom:var(--bs-alert-margin-bottom);color:var(--bs-alert-color);background-color:var(--bs-alert-bg);border:var(--bs-alert-border)}.alert-heading{color:inherit}.alert-link{font-weight:700;color:var(--bs-alert-link-color)}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-default{--bs-alert-color: var(--bs-default-text-emphasis);--bs-alert-bg: var(--bs-default-bg-subtle);--bs-alert-border-color: var(--bs-default-border-subtle);--bs-alert-link-color: var(--bs-default-text-emphasis)}.alert-primary{--bs-alert-color: var(--bs-primary-text-emphasis);--bs-alert-bg: var(--bs-primary-bg-subtle);--bs-alert-border-color: var(--bs-primary-border-subtle);--bs-alert-link-color: var(--bs-primary-text-emphasis)}.alert-secondary{--bs-alert-color: var(--bs-secondary-text-emphasis);--bs-alert-bg: var(--bs-secondary-bg-subtle);--bs-alert-border-color: var(--bs-secondary-border-subtle);--bs-alert-link-color: var(--bs-secondary-text-emphasis)}.alert-success{--bs-alert-color: var(--bs-success-text-emphasis);--bs-alert-bg: var(--bs-success-bg-subtle);--bs-alert-border-color: var(--bs-success-border-subtle);--bs-alert-link-color: var(--bs-success-text-emphasis)}.alert-info{--bs-alert-color: var(--bs-info-text-emphasis);--bs-alert-bg: var(--bs-info-bg-subtle);--bs-alert-border-color: var(--bs-info-border-subtle);--bs-alert-link-color: var(--bs-info-text-emphasis)}.alert-warning{--bs-alert-color: var(--bs-warning-text-emphasis);--bs-alert-bg: var(--bs-warning-bg-subtle);--bs-alert-border-color: var(--bs-warning-border-subtle);--bs-alert-link-color: var(--bs-warning-text-emphasis)}.alert-danger{--bs-alert-color: var(--bs-danger-text-emphasis);--bs-alert-bg: var(--bs-danger-bg-subtle);--bs-alert-border-color: var(--bs-danger-border-subtle);--bs-alert-link-color: var(--bs-danger-text-emphasis)}.alert-light{--bs-alert-color: var(--bs-light-text-emphasis);--bs-alert-bg: var(--bs-light-bg-subtle);--bs-alert-border-color: var(--bs-light-border-subtle);--bs-alert-link-color: var(--bs-light-text-emphasis)}.alert-dark{--bs-alert-color: var(--bs-dark-text-emphasis);--bs-alert-bg: var(--bs-dark-bg-subtle);--bs-alert-border-color: var(--bs-dark-border-subtle);--bs-alert-link-color: var(--bs-dark-text-emphasis)}@keyframes progress-bar-stripes{0%{background-position-x:.5rem}}.progress,.progress-stacked{--bs-progress-height: 0.5rem;--bs-progress-font-size:0.75rem;--bs-progress-bg: #e9ecef;--bs-progress-border-radius: 0.25rem;--bs-progress-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);--bs-progress-bar-color: #fff;--bs-progress-bar-bg: #6D6E71;--bs-progress-bar-transition: width 0.6s ease;display:flex;display:-webkit-flex;height:var(--bs-progress-height);overflow:hidden;font-size:var(--bs-progress-font-size);background-color:var(--bs-progress-bg)}.progress-bar{display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;justify-content:center;-webkit-justify-content:center;overflow:hidden;color:var(--bs-progress-bar-color);text-align:center;white-space:nowrap;background-color:var(--bs-progress-bar-bg);transition:var(--bs-progress-bar-transition)}@media(prefers-reduced-motion: reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-size:var(--bs-progress-height) var(--bs-progress-height)}.progress-stacked>.progress{overflow:visible}.progress-stacked>.progress>.progress-bar{width:100%}.progress-bar-animated{animation:1s linear infinite progress-bar-stripes}@media(prefers-reduced-motion: reduce){.progress-bar-animated{animation:none}}.list-group{--bs-list-group-color: #343a40;--bs-list-group-bg: #fff;--bs-list-group-border-color: #dee2e6;--bs-list-group-border-width: 1px;--bs-list-group-border-radius: 0.25rem;--bs-list-group-item-padding-x: 1rem;--bs-list-group-item-padding-y: 0.5rem;--bs-list-group-action-color: rgba(52, 58, 64, 0.75);--bs-list-group-action-hover-color: #000;--bs-list-group-action-hover-bg: #f8f9fa;--bs-list-group-action-active-color: #343a40;--bs-list-group-action-active-bg: #e9ecef;--bs-list-group-disabled-color: rgba(52, 58, 64, 0.75);--bs-list-group-disabled-bg: #fff;--bs-list-group-active-color: #fff;--bs-list-group-active-bg: #6D6E71;--bs-list-group-active-border-color: #6D6E71;display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;padding-left:0;margin-bottom:0}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>.list-group-item::before{content:counters(section, ".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:var(--bs-list-group-action-color);text-align:inherit}.list-group-item-action:hover,.list-group-item-action:focus{z-index:1;color:var(--bs-list-group-action-hover-color);text-decoration:none;background-color:var(--bs-list-group-action-hover-bg)}.list-group-item-action:active{color:var(--bs-list-group-action-active-color);background-color:var(--bs-list-group-action-active-bg)}.list-group-item{position:relative;display:block;padding:var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);color:var(--bs-list-group-color);text-decoration:none;-webkit-text-decoration:none;-moz-text-decoration:none;-ms-text-decoration:none;-o-text-decoration:none;background-color:var(--bs-list-group-bg);border:var(--bs-list-group-border-width) solid var(--bs-list-group-border-color)}.list-group-item.disabled,.list-group-item:disabled{color:var(--bs-list-group-disabled-color);pointer-events:none;background-color:var(--bs-list-group-disabled-bg)}.list-group-item.active{z-index:2;color:var(--bs-list-group-active-color);background-color:var(--bs-list-group-active-bg);border-color:var(--bs-list-group-active-border-color)}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:calc(-1*var(--bs-list-group-border-width));border-top-width:var(--bs-list-group-border-width)}.list-group-horizontal{flex-direction:row;-webkit-flex-direction:row}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:calc(-1*var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}@media(min-width: 576px){.list-group-horizontal-sm{flex-direction:row;-webkit-flex-direction:row}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:calc(-1*var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media(min-width: 768px){.list-group-horizontal-md{flex-direction:row;-webkit-flex-direction:row}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:calc(-1*var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media(min-width: 992px){.list-group-horizontal-lg{flex-direction:row;-webkit-flex-direction:row}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:calc(-1*var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media(min-width: 1200px){.list-group-horizontal-xl{flex-direction:row;-webkit-flex-direction:row}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:calc(-1*var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media(min-width: 1400px){.list-group-horizontal-xxl{flex-direction:row;-webkit-flex-direction:row}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:calc(-1*var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}.list-group-flush>.list-group-item{border-width:0 0 var(--bs-list-group-border-width)}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-default{--bs-list-group-color: var(--bs-default-text-emphasis);--bs-list-group-bg: var(--bs-default-bg-subtle);--bs-list-group-border-color: var(--bs-default-border-subtle);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-default-border-subtle);--bs-list-group-action-active-color: var(--bs-emphasis-color);--bs-list-group-action-active-bg: var(--bs-default-border-subtle);--bs-list-group-active-color: var(--bs-default-bg-subtle);--bs-list-group-active-bg: var(--bs-default-text-emphasis);--bs-list-group-active-border-color: var(--bs-default-text-emphasis)}.list-group-item-primary{--bs-list-group-color: var(--bs-primary-text-emphasis);--bs-list-group-bg: var(--bs-primary-bg-subtle);--bs-list-group-border-color: var(--bs-primary-border-subtle);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-primary-border-subtle);--bs-list-group-action-active-color: var(--bs-emphasis-color);--bs-list-group-action-active-bg: var(--bs-primary-border-subtle);--bs-list-group-active-color: var(--bs-primary-bg-subtle);--bs-list-group-active-bg: var(--bs-primary-text-emphasis);--bs-list-group-active-border-color: var(--bs-primary-text-emphasis)}.list-group-item-secondary{--bs-list-group-color: var(--bs-secondary-text-emphasis);--bs-list-group-bg: var(--bs-secondary-bg-subtle);--bs-list-group-border-color: var(--bs-secondary-border-subtle);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-secondary-border-subtle);--bs-list-group-action-active-color: var(--bs-emphasis-color);--bs-list-group-action-active-bg: var(--bs-secondary-border-subtle);--bs-list-group-active-color: var(--bs-secondary-bg-subtle);--bs-list-group-active-bg: var(--bs-secondary-text-emphasis);--bs-list-group-active-border-color: var(--bs-secondary-text-emphasis)}.list-group-item-success{--bs-list-group-color: var(--bs-success-text-emphasis);--bs-list-group-bg: var(--bs-success-bg-subtle);--bs-list-group-border-color: var(--bs-success-border-subtle);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-success-border-subtle);--bs-list-group-action-active-color: var(--bs-emphasis-color);--bs-list-group-action-active-bg: var(--bs-success-border-subtle);--bs-list-group-active-color: var(--bs-success-bg-subtle);--bs-list-group-active-bg: var(--bs-success-text-emphasis);--bs-list-group-active-border-color: var(--bs-success-text-emphasis)}.list-group-item-info{--bs-list-group-color: var(--bs-info-text-emphasis);--bs-list-group-bg: var(--bs-info-bg-subtle);--bs-list-group-border-color: var(--bs-info-border-subtle);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-info-border-subtle);--bs-list-group-action-active-color: var(--bs-emphasis-color);--bs-list-group-action-active-bg: var(--bs-info-border-subtle);--bs-list-group-active-color: var(--bs-info-bg-subtle);--bs-list-group-active-bg: var(--bs-info-text-emphasis);--bs-list-group-active-border-color: var(--bs-info-text-emphasis)}.list-group-item-warning{--bs-list-group-color: var(--bs-warning-text-emphasis);--bs-list-group-bg: var(--bs-warning-bg-subtle);--bs-list-group-border-color: var(--bs-warning-border-subtle);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-warning-border-subtle);--bs-list-group-action-active-color: var(--bs-emphasis-color);--bs-list-group-action-active-bg: var(--bs-warning-border-subtle);--bs-list-group-active-color: var(--bs-warning-bg-subtle);--bs-list-group-active-bg: var(--bs-warning-text-emphasis);--bs-list-group-active-border-color: var(--bs-warning-text-emphasis)}.list-group-item-danger{--bs-list-group-color: var(--bs-danger-text-emphasis);--bs-list-group-bg: var(--bs-danger-bg-subtle);--bs-list-group-border-color: var(--bs-danger-border-subtle);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-danger-border-subtle);--bs-list-group-action-active-color: var(--bs-emphasis-color);--bs-list-group-action-active-bg: var(--bs-danger-border-subtle);--bs-list-group-active-color: var(--bs-danger-bg-subtle);--bs-list-group-active-bg: var(--bs-danger-text-emphasis);--bs-list-group-active-border-color: var(--bs-danger-text-emphasis)}.list-group-item-light{--bs-list-group-color: var(--bs-light-text-emphasis);--bs-list-group-bg: var(--bs-light-bg-subtle);--bs-list-group-border-color: var(--bs-light-border-subtle);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-light-border-subtle);--bs-list-group-action-active-color: var(--bs-emphasis-color);--bs-list-group-action-active-bg: var(--bs-light-border-subtle);--bs-list-group-active-color: var(--bs-light-bg-subtle);--bs-list-group-active-bg: var(--bs-light-text-emphasis);--bs-list-group-active-border-color: var(--bs-light-text-emphasis)}.list-group-item-dark{--bs-list-group-color: var(--bs-dark-text-emphasis);--bs-list-group-bg: var(--bs-dark-bg-subtle);--bs-list-group-border-color: var(--bs-dark-border-subtle);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-dark-border-subtle);--bs-list-group-action-active-color: var(--bs-emphasis-color);--bs-list-group-action-active-bg: var(--bs-dark-border-subtle);--bs-list-group-active-color: var(--bs-dark-bg-subtle);--bs-list-group-active-bg: var(--bs-dark-text-emphasis);--bs-list-group-active-border-color: var(--bs-dark-text-emphasis)}.btn-close{--bs-btn-close-color: #000;--bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");--bs-btn-close-opacity: 0.5;--bs-btn-close-hover-opacity: 0.75;--bs-btn-close-focus-shadow: 0 0 0 0.25rem rgba(109, 110, 113, 0.25);--bs-btn-close-focus-opacity: 1;--bs-btn-close-disabled-opacity: 0.25;--bs-btn-close-white-filter: invert(1) grayscale(100%) brightness(200%);box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:var(--bs-btn-close-color);background:rgba(0,0,0,0) var(--bs-btn-close-bg) center/1em auto no-repeat;border:0;opacity:var(--bs-btn-close-opacity)}.btn-close:hover{color:var(--bs-btn-close-color);text-decoration:none;opacity:var(--bs-btn-close-hover-opacity)}.btn-close:focus{outline:0;box-shadow:var(--bs-btn-close-focus-shadow);opacity:var(--bs-btn-close-focus-opacity)}.btn-close:disabled,.btn-close.disabled{pointer-events:none;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;opacity:var(--bs-btn-close-disabled-opacity)}.btn-close-white{filter:var(--bs-btn-close-white-filter)}[data-bs-theme=dark] .btn-close{filter:var(--bs-btn-close-white-filter)}.toast{--bs-toast-zindex: 1090;--bs-toast-padding-x: 0.75rem;--bs-toast-padding-y: 0.5rem;--bs-toast-spacing: 1.5rem;--bs-toast-max-width: 350px;--bs-toast-font-size:0.875rem;--bs-toast-color: ;--bs-toast-bg: rgba(255, 255, 255, 0.85);--bs-toast-border-width: 1px;--bs-toast-border-color: rgba(0, 0, 0, 0.175);--bs-toast-border-radius: 0.25rem;--bs-toast-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-toast-header-color: rgba(52, 58, 64, 0.75);--bs-toast-header-bg: rgba(255, 255, 255, 0.85);--bs-toast-header-border-color: rgba(0, 0, 0, 0.175);width:var(--bs-toast-max-width);max-width:100%;font-size:var(--bs-toast-font-size);color:var(--bs-toast-color);pointer-events:auto;background-color:var(--bs-toast-bg);background-clip:padding-box;border:var(--bs-toast-border-width) solid var(--bs-toast-border-color);box-shadow:var(--bs-toast-box-shadow)}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{--bs-toast-zindex: 1090;position:absolute;z-index:var(--bs-toast-zindex);width:max-content;width:-webkit-max-content;width:-moz-max-content;width:-ms-max-content;width:-o-max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:var(--bs-toast-spacing)}.toast-header{display:flex;display:-webkit-flex;align-items:center;-webkit-align-items:center;padding:var(--bs-toast-padding-y) var(--bs-toast-padding-x);color:var(--bs-toast-header-color);background-color:var(--bs-toast-header-bg);background-clip:padding-box;border-bottom:var(--bs-toast-border-width) solid var(--bs-toast-header-border-color)}.toast-header .btn-close{margin-right:calc(-0.5*var(--bs-toast-padding-x));margin-left:var(--bs-toast-padding-x)}.toast-body{padding:var(--bs-toast-padding-x);word-wrap:break-word}.modal{--bs-modal-zindex: 1055;--bs-modal-width: 500px;--bs-modal-padding: 1rem;--bs-modal-margin: 0.5rem;--bs-modal-color: ;--bs-modal-bg: #fff;--bs-modal-border-color: rgba(0, 0, 0, 0.175);--bs-modal-border-width: 1px;--bs-modal-border-radius: 0.5rem;--bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-modal-inner-border-radius: calc(0.5rem - 1px);--bs-modal-header-padding-x: 1rem;--bs-modal-header-padding-y: 1rem;--bs-modal-header-padding: 1rem 1rem;--bs-modal-header-border-color: #dee2e6;--bs-modal-header-border-width: 1px;--bs-modal-title-line-height: 1.5;--bs-modal-footer-gap: 0.5rem;--bs-modal-footer-bg: ;--bs-modal-footer-border-color: #dee2e6;--bs-modal-footer-border-width: 1px;position:fixed;top:0;left:0;z-index:var(--bs-modal-zindex);display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:var(--bs-modal-margin);pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0, -50px)}@media(prefers-reduced-motion: reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - var(--bs-modal-margin)*2)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;display:-webkit-flex;align-items:center;-webkit-align-items:center;min-height:calc(100% - var(--bs-modal-margin)*2)}.modal-content{position:relative;display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;width:100%;color:var(--bs-modal-color);pointer-events:auto;background-color:var(--bs-modal-bg);background-clip:padding-box;border:var(--bs-modal-border-width) solid var(--bs-modal-border-color);outline:0}.modal-backdrop{--bs-backdrop-zindex: 1050;--bs-backdrop-bg: #000;--bs-backdrop-opacity: 0.5;position:fixed;top:0;left:0;z-index:var(--bs-backdrop-zindex);width:100vw;height:100vh;background-color:var(--bs-backdrop-bg)}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:var(--bs-backdrop-opacity)}.modal-header{display:flex;display:-webkit-flex;flex-shrink:0;-webkit-flex-shrink:0;align-items:center;-webkit-align-items:center;justify-content:space-between;-webkit-justify-content:space-between;padding:var(--bs-modal-header-padding);border-bottom:var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color)}.modal-header .btn-close{padding:calc(var(--bs-modal-header-padding-y)*.5) calc(var(--bs-modal-header-padding-x)*.5);margin:calc(-0.5*var(--bs-modal-header-padding-y)) calc(-0.5*var(--bs-modal-header-padding-x)) calc(-0.5*var(--bs-modal-header-padding-y)) auto}.modal-title{margin-bottom:0;line-height:var(--bs-modal-title-line-height)}.modal-body{position:relative;flex:1 1 auto;-webkit-flex:1 1 auto;padding:var(--bs-modal-padding)}.modal-footer{display:flex;display:-webkit-flex;flex-shrink:0;-webkit-flex-shrink:0;flex-wrap:wrap;-webkit-flex-wrap:wrap;align-items:center;-webkit-align-items:center;justify-content:flex-end;-webkit-justify-content:flex-end;padding:calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap)*.5);background-color:var(--bs-modal-footer-bg);border-top:var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color)}.modal-footer>*{margin:calc(var(--bs-modal-footer-gap)*.5)}@media(min-width: 576px){.modal{--bs-modal-margin: 1.75rem;--bs-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15)}.modal-dialog{max-width:var(--bs-modal-width);margin-right:auto;margin-left:auto}.modal-sm{--bs-modal-width: 300px}}@media(min-width: 992px){.modal-lg,.modal-xl{--bs-modal-width: 800px}}@media(min-width: 1200px){.modal-xl{--bs-modal-width: 1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0}.modal-fullscreen .modal-body{overflow-y:auto}@media(max-width: 575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}}@media(max-width: 767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}}@media(max-width: 991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}}@media(max-width: 1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}}@media(max-width: 1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}}.tooltip{--bs-tooltip-zindex: 1080;--bs-tooltip-max-width: 200px;--bs-tooltip-padding-x: 0.5rem;--bs-tooltip-padding-y: 0.25rem;--bs-tooltip-margin: ;--bs-tooltip-font-size:0.875rem;--bs-tooltip-color: #fff;--bs-tooltip-bg: #000;--bs-tooltip-border-radius: 0.25rem;--bs-tooltip-opacity: 0.9;--bs-tooltip-arrow-width: 0.8rem;--bs-tooltip-arrow-height: 0.4rem;z-index:var(--bs-tooltip-zindex);display:block;margin:var(--bs-tooltip-margin);font-family:"Source Sans Pro",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:var(--bs-tooltip-font-size);word-wrap:break-word;opacity:0}.tooltip.show{opacity:var(--bs-tooltip-opacity)}.tooltip .tooltip-arrow{display:block;width:var(--bs-tooltip-arrow-width);height:var(--bs-tooltip-arrow-height)}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:rgba(0,0,0,0);border-style:solid}.bs-tooltip-top .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow{bottom:calc(-1*var(--bs-tooltip-arrow-height))}.bs-tooltip-top .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before{top:-1px;border-width:var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width)*.5) 0;border-top-color:var(--bs-tooltip-bg)}.bs-tooltip-end .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow{left:calc(-1*var(--bs-tooltip-arrow-height));width:var(--bs-tooltip-arrow-height);height:var(--bs-tooltip-arrow-width)}.bs-tooltip-end .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before{right:-1px;border-width:calc(var(--bs-tooltip-arrow-width)*.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width)*.5) 0;border-right-color:var(--bs-tooltip-bg)}.bs-tooltip-bottom .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow{top:calc(-1*var(--bs-tooltip-arrow-height))}.bs-tooltip-bottom .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before{bottom:-1px;border-width:0 calc(var(--bs-tooltip-arrow-width)*.5) var(--bs-tooltip-arrow-height);border-bottom-color:var(--bs-tooltip-bg)}.bs-tooltip-start .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow{right:calc(-1*var(--bs-tooltip-arrow-height));width:var(--bs-tooltip-arrow-height);height:var(--bs-tooltip-arrow-width)}.bs-tooltip-start .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before{left:-1px;border-width:calc(var(--bs-tooltip-arrow-width)*.5) 0 calc(var(--bs-tooltip-arrow-width)*.5) var(--bs-tooltip-arrow-height);border-left-color:var(--bs-tooltip-bg)}.tooltip-inner{max-width:var(--bs-tooltip-max-width);padding:var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);color:var(--bs-tooltip-color);text-align:center;background-color:var(--bs-tooltip-bg)}.popover{--bs-popover-zindex: 1070;--bs-popover-max-width: 276px;--bs-popover-font-size:0.875rem;--bs-popover-bg: #fff;--bs-popover-border-width: 1px;--bs-popover-border-color: rgba(0, 0, 0, 0.175);--bs-popover-border-radius: 0.5rem;--bs-popover-inner-border-radius: calc(0.5rem - 1px);--bs-popover-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-popover-header-padding-x: 1rem;--bs-popover-header-padding-y: 0.5rem;--bs-popover-header-font-size:1rem;--bs-popover-header-color: inherit;--bs-popover-header-bg: #e9ecef;--bs-popover-body-padding-x: 1rem;--bs-popover-body-padding-y: 1rem;--bs-popover-body-color: #343a40;--bs-popover-arrow-width: 1rem;--bs-popover-arrow-height: 0.5rem;--bs-popover-arrow-border: var(--bs-popover-border-color);z-index:var(--bs-popover-zindex);display:block;max-width:var(--bs-popover-max-width);font-family:"Source Sans Pro",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:var(--bs-popover-font-size);word-wrap:break-word;background-color:var(--bs-popover-bg);background-clip:padding-box;border:var(--bs-popover-border-width) solid var(--bs-popover-border-color)}.popover .popover-arrow{display:block;width:var(--bs-popover-arrow-width);height:var(--bs-popover-arrow-height)}.popover .popover-arrow::before,.popover .popover-arrow::after{position:absolute;display:block;content:"";border-color:rgba(0,0,0,0);border-style:solid;border-width:0}.bs-popover-top>.popover-arrow,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow{bottom:calc(-1*(var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))}.bs-popover-top>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after{border-width:var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width)*.5) 0}.bs-popover-top>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before{bottom:0;border-top-color:var(--bs-popover-arrow-border)}.bs-popover-top>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after{bottom:var(--bs-popover-border-width);border-top-color:var(--bs-popover-bg)}.bs-popover-end>.popover-arrow,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow{left:calc(-1*(var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));width:var(--bs-popover-arrow-height);height:var(--bs-popover-arrow-width)}.bs-popover-end>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after{border-width:calc(var(--bs-popover-arrow-width)*.5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width)*.5) 0}.bs-popover-end>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before{left:0;border-right-color:var(--bs-popover-arrow-border)}.bs-popover-end>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after{left:var(--bs-popover-border-width);border-right-color:var(--bs-popover-bg)}.bs-popover-bottom>.popover-arrow,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow{top:calc(-1*(var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))}.bs-popover-bottom>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after{border-width:0 calc(var(--bs-popover-arrow-width)*.5) var(--bs-popover-arrow-height)}.bs-popover-bottom>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before{top:0;border-bottom-color:var(--bs-popover-arrow-border)}.bs-popover-bottom>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after{top:var(--bs-popover-border-width);border-bottom-color:var(--bs-popover-bg)}.bs-popover-bottom .popover-header::before,.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before{position:absolute;top:0;left:50%;display:block;width:var(--bs-popover-arrow-width);margin-left:calc(-0.5*var(--bs-popover-arrow-width));content:"";border-bottom:var(--bs-popover-border-width) solid var(--bs-popover-header-bg)}.bs-popover-start>.popover-arrow,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow{right:calc(-1*(var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));width:var(--bs-popover-arrow-height);height:var(--bs-popover-arrow-width)}.bs-popover-start>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after{border-width:calc(var(--bs-popover-arrow-width)*.5) 0 calc(var(--bs-popover-arrow-width)*.5) var(--bs-popover-arrow-height)}.bs-popover-start>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before{right:0;border-left-color:var(--bs-popover-arrow-border)}.bs-popover-start>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after{right:var(--bs-popover-border-width);border-left-color:var(--bs-popover-bg)}.popover-header{padding:var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);margin-bottom:0;font-size:var(--bs-popover-header-font-size);color:var(--bs-popover-header-color);background-color:var(--bs-popover-header-bg);border-bottom:var(--bs-popover-border-width) solid var(--bs-popover-border-color)}.popover-header:empty{display:none}.popover-body{padding:var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);color:var(--bs-popover-body-color)}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y;-webkit-touch-action:pan-y;-moz-touch-action:pan-y;-ms-touch-action:pan-y;-o-touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;backface-visibility:hidden;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;transition:transform .6s ease-in-out}@media(prefers-reduced-motion: reduce){.carousel-item{transition:none}}.carousel-item.active,.carousel-item-next,.carousel-item-prev{display:block}.carousel-item-next:not(.carousel-item-start),.active.carousel-item-end{transform:translateX(100%)}.carousel-item-prev:not(.carousel-item-end),.active.carousel-item-start{transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item.active,.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end{z-index:1;opacity:1}.carousel-fade .active.carousel-item-start,.carousel-fade .active.carousel-item-end{z-index:0;opacity:0;transition:opacity 0s .6s}@media(prefers-reduced-motion: reduce){.carousel-fade .active.carousel-item-start,.carousel-fade .active.carousel-item-end{transition:none}}.carousel-control-prev,.carousel-control-next{position:absolute;top:0;bottom:0;z-index:1;display:flex;display:-webkit-flex;align-items:center;-webkit-align-items:center;justify-content:center;-webkit-justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:none;border:0;opacity:.5;transition:opacity .15s ease}@media(prefers-reduced-motion: reduce){.carousel-control-prev,.carousel-control-next{transition:none}}.carousel-control-prev:hover,.carousel-control-prev:focus,.carousel-control-next:hover,.carousel-control-next:focus{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-prev-icon,.carousel-control-next-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;display:-webkit-flex;justify-content:center;-webkit-justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;-webkit-flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid rgba(0,0,0,0);border-bottom:10px solid rgba(0,0,0,0);opacity:.5;transition:opacity .6s ease}@media(prefers-reduced-motion: reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-prev-icon,.carousel-dark .carousel-control-next-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}[data-bs-theme=dark] .carousel .carousel-control-prev-icon,[data-bs-theme=dark] .carousel .carousel-control-next-icon,[data-bs-theme=dark].carousel .carousel-control-prev-icon,[data-bs-theme=dark].carousel .carousel-control-next-icon{filter:invert(1) grayscale(100)}[data-bs-theme=dark] .carousel .carousel-indicators [data-bs-target],[data-bs-theme=dark].carousel .carousel-indicators [data-bs-target]{background-color:#000}[data-bs-theme=dark] .carousel .carousel-caption,[data-bs-theme=dark].carousel .carousel-caption{color:#000}.spinner-grow,.spinner-border{display:inline-block;width:var(--bs-spinner-width);height:var(--bs-spinner-height);vertical-align:var(--bs-spinner-vertical-align);border-radius:50%;animation:var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name)}@keyframes spinner-border{to{transform:rotate(360deg) /* rtl:ignore */}}.spinner-border{--bs-spinner-width: 2rem;--bs-spinner-height: 2rem;--bs-spinner-vertical-align: -0.125em;--bs-spinner-border-width: 0.25em;--bs-spinner-animation-speed: 0.75s;--bs-spinner-animation-name: spinner-border;border:var(--bs-spinner-border-width) solid currentcolor;border-right-color:rgba(0,0,0,0)}.spinner-border-sm{--bs-spinner-width: 1rem;--bs-spinner-height: 1rem;--bs-spinner-border-width: 0.2em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{--bs-spinner-width: 2rem;--bs-spinner-height: 2rem;--bs-spinner-vertical-align: -0.125em;--bs-spinner-animation-speed: 0.75s;--bs-spinner-animation-name: spinner-grow;background-color:currentcolor;opacity:0}.spinner-grow-sm{--bs-spinner-width: 1rem;--bs-spinner-height: 1rem}@media(prefers-reduced-motion: reduce){.spinner-border,.spinner-grow{--bs-spinner-animation-speed: 1.5s}}.offcanvas,.offcanvas-xxl,.offcanvas-xl,.offcanvas-lg,.offcanvas-md,.offcanvas-sm{--bs-offcanvas-zindex: 1045;--bs-offcanvas-width: 400px;--bs-offcanvas-height: 30vh;--bs-offcanvas-padding-x: 1rem;--bs-offcanvas-padding-y: 1rem;--bs-offcanvas-color: #343a40;--bs-offcanvas-bg: #fff;--bs-offcanvas-border-width: 1px;--bs-offcanvas-border-color: rgba(0, 0, 0, 0.175);--bs-offcanvas-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-offcanvas-transition: transform 0.3s ease-in-out;--bs-offcanvas-title-line-height: 1.5}@media(max-width: 575.98px){.offcanvas-sm{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media(max-width: 575.98px)and (prefers-reduced-motion: reduce){.offcanvas-sm{transition:none}}@media(max-width: 575.98px){.offcanvas-sm.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas-sm.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas-sm.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas-sm.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas-sm.showing,.offcanvas-sm.show:not(.hiding){transform:none}.offcanvas-sm.showing,.offcanvas-sm.hiding,.offcanvas-sm.show{visibility:visible}}@media(min-width: 576px){.offcanvas-sm{--bs-offcanvas-height: auto;--bs-offcanvas-border-width: 0;background-color:rgba(0,0,0,0) !important}.offcanvas-sm .offcanvas-header{display:none}.offcanvas-sm .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible;background-color:rgba(0,0,0,0) !important}}@media(max-width: 767.98px){.offcanvas-md{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media(max-width: 767.98px)and (prefers-reduced-motion: reduce){.offcanvas-md{transition:none}}@media(max-width: 767.98px){.offcanvas-md.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas-md.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas-md.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas-md.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas-md.showing,.offcanvas-md.show:not(.hiding){transform:none}.offcanvas-md.showing,.offcanvas-md.hiding,.offcanvas-md.show{visibility:visible}}@media(min-width: 768px){.offcanvas-md{--bs-offcanvas-height: auto;--bs-offcanvas-border-width: 0;background-color:rgba(0,0,0,0) !important}.offcanvas-md .offcanvas-header{display:none}.offcanvas-md .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible;background-color:rgba(0,0,0,0) !important}}@media(max-width: 991.98px){.offcanvas-lg{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media(max-width: 991.98px)and (prefers-reduced-motion: reduce){.offcanvas-lg{transition:none}}@media(max-width: 991.98px){.offcanvas-lg.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas-lg.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas-lg.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas-lg.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas-lg.showing,.offcanvas-lg.show:not(.hiding){transform:none}.offcanvas-lg.showing,.offcanvas-lg.hiding,.offcanvas-lg.show{visibility:visible}}@media(min-width: 992px){.offcanvas-lg{--bs-offcanvas-height: auto;--bs-offcanvas-border-width: 0;background-color:rgba(0,0,0,0) !important}.offcanvas-lg .offcanvas-header{display:none}.offcanvas-lg .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible;background-color:rgba(0,0,0,0) !important}}@media(max-width: 1199.98px){.offcanvas-xl{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media(max-width: 1199.98px)and (prefers-reduced-motion: reduce){.offcanvas-xl{transition:none}}@media(max-width: 1199.98px){.offcanvas-xl.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas-xl.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas-xl.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas-xl.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas-xl.showing,.offcanvas-xl.show:not(.hiding){transform:none}.offcanvas-xl.showing,.offcanvas-xl.hiding,.offcanvas-xl.show{visibility:visible}}@media(min-width: 1200px){.offcanvas-xl{--bs-offcanvas-height: auto;--bs-offcanvas-border-width: 0;background-color:rgba(0,0,0,0) !important}.offcanvas-xl .offcanvas-header{display:none}.offcanvas-xl .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible;background-color:rgba(0,0,0,0) !important}}@media(max-width: 1399.98px){.offcanvas-xxl{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media(max-width: 1399.98px)and (prefers-reduced-motion: reduce){.offcanvas-xxl{transition:none}}@media(max-width: 1399.98px){.offcanvas-xxl.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas-xxl.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas-xxl.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas-xxl.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas-xxl.showing,.offcanvas-xxl.show:not(.hiding){transform:none}.offcanvas-xxl.showing,.offcanvas-xxl.hiding,.offcanvas-xxl.show{visibility:visible}}@media(min-width: 1400px){.offcanvas-xxl{--bs-offcanvas-height: auto;--bs-offcanvas-border-width: 0;background-color:rgba(0,0,0,0) !important}.offcanvas-xxl .offcanvas-header{display:none}.offcanvas-xxl .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible;background-color:rgba(0,0,0,0) !important}}.offcanvas{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}@media(prefers-reduced-motion: reduce){.offcanvas{transition:none}}.offcanvas.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas.showing,.offcanvas.show:not(.hiding){transform:none}.offcanvas.showing,.offcanvas.hiding,.offcanvas.show{visibility:visible}.offcanvas-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.offcanvas-backdrop.fade{opacity:0}.offcanvas-backdrop.show{opacity:.5}.offcanvas-header{display:flex;display:-webkit-flex;align-items:center;-webkit-align-items:center;justify-content:space-between;-webkit-justify-content:space-between;padding:var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x)}.offcanvas-header .btn-close{padding:calc(var(--bs-offcanvas-padding-y)*.5) calc(var(--bs-offcanvas-padding-x)*.5);margin-top:calc(-0.5*var(--bs-offcanvas-padding-y));margin-right:calc(-0.5*var(--bs-offcanvas-padding-x));margin-bottom:calc(-0.5*var(--bs-offcanvas-padding-y))}.offcanvas-title{margin-bottom:0;line-height:var(--bs-offcanvas-title-line-height)}.offcanvas-body{flex-grow:1;-webkit-flex-grow:1;padding:var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);overflow-y:auto}.placeholder{display:inline-block;min-height:1em;vertical-align:middle;cursor:wait;background-color:currentcolor;opacity:.5}.placeholder.btn::before{display:inline-block;content:""}.placeholder-xs{min-height:.6em}.placeholder-sm{min-height:.8em}.placeholder-lg{min-height:1.2em}.placeholder-glow .placeholder{animation:placeholder-glow 2s ease-in-out infinite}@keyframes placeholder-glow{50%{opacity:.2}}.placeholder-wave{mask-image:linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);-webkit-mask-image:linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);mask-size:200% 100%;-webkit-mask-size:200% 100%;animation:placeholder-wave 2s linear infinite}@keyframes placeholder-wave{100%{mask-position:-200% 0%;-webkit-mask-position:-200% 0%}}.clearfix::after{display:block;clear:both;content:""}.text-bg-default{color:#fff !important;background-color:RGBA(var(--bs-default-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-primary{color:#fff !important;background-color:RGBA(var(--bs-primary-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-secondary{color:#fff !important;background-color:RGBA(var(--bs-secondary-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-success{color:#fff !important;background-color:RGBA(var(--bs-success-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-info{color:#fff !important;background-color:RGBA(var(--bs-info-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-warning{color:#fff !important;background-color:RGBA(var(--bs-warning-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-danger{color:#fff !important;background-color:RGBA(var(--bs-danger-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-light{color:#000 !important;background-color:RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-dark{color:#fff !important;background-color:RGBA(var(--bs-dark-rgb), var(--bs-bg-opacity, 1)) !important}.link-default{color:RGBA(var(--bs-default-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-default-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-default:hover,.link-default:focus{color:RGBA(42, 46, 51, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(42, 46, 51, var(--bs-link-underline-opacity, 1)) !important}.link-primary{color:RGBA(var(--bs-primary-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-primary:hover,.link-primary:focus{color:RGBA(87, 88, 90, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(87, 88, 90, var(--bs-link-underline-opacity, 1)) !important}.link-secondary{color:RGBA(var(--bs-secondary-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-secondary:hover,.link-secondary:focus{color:RGBA(42, 46, 51, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(42, 46, 51, var(--bs-link-underline-opacity, 1)) !important}.link-success{color:RGBA(var(--bs-success-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-success:hover,.link-success:focus{color:RGBA(50, 146, 19, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(50, 146, 19, var(--bs-link-underline-opacity, 1)) !important}.link-info{color:RGBA(var(--bs-info-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-info:hover,.link-info:focus{color:RGBA(122, 67, 150, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(122, 67, 150, var(--bs-link-underline-opacity, 1)) !important}.link-warning{color:RGBA(var(--bs-warning-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-warning:hover,.link-warning:focus{color:RGBA(204, 94, 19, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(204, 94, 19, var(--bs-link-underline-opacity, 1)) !important}.link-danger{color:RGBA(var(--bs-danger-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-danger:hover,.link-danger:focus{color:RGBA(204, 0, 46, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(204, 0, 46, var(--bs-link-underline-opacity, 1)) !important}.link-light{color:RGBA(var(--bs-light-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-light:hover,.link-light:focus{color:RGBA(249, 250, 251, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(249, 250, 251, var(--bs-link-underline-opacity, 1)) !important}.link-dark{color:RGBA(var(--bs-dark-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-dark:hover,.link-dark:focus{color:RGBA(42, 46, 51, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(42, 46, 51, var(--bs-link-underline-opacity, 1)) !important}.link-body-emphasis{color:RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-body-emphasis:hover,.link-body-emphasis:focus{color:RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 0.75)) !important;text-decoration-color:RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important}.focus-ring:focus{outline:0;box-shadow:var(--bs-focus-ring-x, 0) var(--bs-focus-ring-y, 0) var(--bs-focus-ring-blur, 0) var(--bs-focus-ring-width) var(--bs-focus-ring-color)}.icon-link{display:inline-flex;gap:.375rem;align-items:center;-webkit-align-items:center;text-decoration-color:rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5));text-underline-offset:.25em;backface-visibility:hidden;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden}.icon-link>.bi{flex-shrink:0;-webkit-flex-shrink:0;width:1em;height:1em;fill:currentcolor;transition:.2s ease-in-out transform}@media(prefers-reduced-motion: reduce){.icon-link>.bi{transition:none}}.icon-link-hover:hover>.bi,.icon-link-hover:focus-visible>.bi{transform:var(--bs-icon-link-transform, translate3d(0.25em, 0, 0))}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio: 100%}.ratio-4x3{--bs-aspect-ratio: 75%}.ratio-16x9{--bs-aspect-ratio: 56.25%}.ratio-21x9{--bs-aspect-ratio: 42.8571428571%}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:sticky;top:0;z-index:1020}.sticky-bottom{position:sticky;bottom:0;z-index:1020}@media(min-width: 576px){.sticky-sm-top{position:sticky;top:0;z-index:1020}.sticky-sm-bottom{position:sticky;bottom:0;z-index:1020}}@media(min-width: 768px){.sticky-md-top{position:sticky;top:0;z-index:1020}.sticky-md-bottom{position:sticky;bottom:0;z-index:1020}}@media(min-width: 992px){.sticky-lg-top{position:sticky;top:0;z-index:1020}.sticky-lg-bottom{position:sticky;bottom:0;z-index:1020}}@media(min-width: 1200px){.sticky-xl-top{position:sticky;top:0;z-index:1020}.sticky-xl-bottom{position:sticky;bottom:0;z-index:1020}}@media(min-width: 1400px){.sticky-xxl-top{position:sticky;top:0;z-index:1020}.sticky-xxl-bottom{position:sticky;bottom:0;z-index:1020}}.hstack{display:flex;display:-webkit-flex;flex-direction:row;-webkit-flex-direction:row;align-items:center;-webkit-align-items:center;align-self:stretch;-webkit-align-self:stretch}.vstack{display:flex;display:-webkit-flex;flex:1 1 auto;-webkit-flex:1 1 auto;flex-direction:column;-webkit-flex-direction:column;align-self:stretch;-webkit-align-self:stretch}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){width:1px !important;height:1px !important;padding:0 !important;margin:-1px !important;overflow:hidden !important;clip:rect(0, 0, 0, 0) !important;white-space:nowrap !important;border:0 !important}.visually-hidden:not(caption),.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption){position:absolute !important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;-webkit-align-self:stretch;width:1px;min-height:1em;background-color:currentcolor;opacity:.25}.align-baseline{vertical-align:baseline !important}.align-top{vertical-align:top !important}.align-middle{vertical-align:middle !important}.align-bottom{vertical-align:bottom !important}.align-text-bottom{vertical-align:text-bottom !important}.align-text-top{vertical-align:text-top !important}.float-start{float:left !important}.float-end{float:right !important}.float-none{float:none !important}.object-fit-contain{object-fit:contain !important}.object-fit-cover{object-fit:cover !important}.object-fit-fill{object-fit:fill !important}.object-fit-scale{object-fit:scale-down !important}.object-fit-none{object-fit:none !important}.opacity-0{opacity:0 !important}.opacity-25{opacity:.25 !important}.opacity-50{opacity:.5 !important}.opacity-75{opacity:.75 !important}.opacity-100{opacity:1 !important}.overflow-auto{overflow:auto !important}.overflow-hidden{overflow:hidden !important}.overflow-visible{overflow:visible !important}.overflow-scroll{overflow:scroll !important}.overflow-x-auto{overflow-x:auto !important}.overflow-x-hidden{overflow-x:hidden !important}.overflow-x-visible{overflow-x:visible !important}.overflow-x-scroll{overflow-x:scroll !important}.overflow-y-auto{overflow-y:auto !important}.overflow-y-hidden{overflow-y:hidden !important}.overflow-y-visible{overflow-y:visible !important}.overflow-y-scroll{overflow-y:scroll !important}.d-inline{display:inline !important}.d-inline-block{display:inline-block !important}.d-block{display:block !important}.d-grid{display:grid !important}.d-inline-grid{display:inline-grid !important}.d-table{display:table !important}.d-table-row{display:table-row !important}.d-table-cell{display:table-cell !important}.d-flex{display:flex !important}.d-inline-flex{display:inline-flex !important}.d-none{display:none !important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15) !important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075) !important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175) !important}.shadow-none{box-shadow:none !important}.focus-ring-default{--bs-focus-ring-color: rgba(var(--bs-default-rgb), var(--bs-focus-ring-opacity))}.focus-ring-primary{--bs-focus-ring-color: rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity))}.focus-ring-secondary{--bs-focus-ring-color: rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity))}.focus-ring-success{--bs-focus-ring-color: rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity))}.focus-ring-info{--bs-focus-ring-color: rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity))}.focus-ring-warning{--bs-focus-ring-color: rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity))}.focus-ring-danger{--bs-focus-ring-color: rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity))}.focus-ring-light{--bs-focus-ring-color: rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity))}.focus-ring-dark{--bs-focus-ring-color: rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity))}.position-static{position:static !important}.position-relative{position:relative !important}.position-absolute{position:absolute !important}.position-fixed{position:fixed !important}.position-sticky{position:sticky !important}.top-0{top:0 !important}.top-50{top:50% !important}.top-100{top:100% !important}.bottom-0{bottom:0 !important}.bottom-50{bottom:50% !important}.bottom-100{bottom:100% !important}.start-0{left:0 !important}.start-50{left:50% !important}.start-100{left:100% !important}.end-0{right:0 !important}.end-50{right:50% !important}.end-100{right:100% !important}.translate-middle{transform:translate(-50%, -50%) !important}.translate-middle-x{transform:translateX(-50%) !important}.translate-middle-y{transform:translateY(-50%) !important}.border{border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important}.border-0{border:0 !important}.border-top{border-top:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important}.border-top-0{border-top:0 !important}.border-end{border-right:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important}.border-end-0{border-right:0 !important}.border-bottom{border-bottom:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important}.border-bottom-0{border-bottom:0 !important}.border-start{border-left:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important}.border-start-0{border-left:0 !important}.border-default{--bs-border-opacity: 1;border-color:rgba(var(--bs-default-rgb), var(--bs-border-opacity)) !important}.border-primary{--bs-border-opacity: 1;border-color:rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important}.border-secondary{--bs-border-opacity: 1;border-color:rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important}.border-success{--bs-border-opacity: 1;border-color:rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important}.border-info{--bs-border-opacity: 1;border-color:rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important}.border-warning{--bs-border-opacity: 1;border-color:rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important}.border-danger{--bs-border-opacity: 1;border-color:rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important}.border-light{--bs-border-opacity: 1;border-color:rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important}.border-dark{--bs-border-opacity: 1;border-color:rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important}.border-black{--bs-border-opacity: 1;border-color:rgba(var(--bs-black-rgb), var(--bs-border-opacity)) !important}.border-white{--bs-border-opacity: 1;border-color:rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important}.border-primary-subtle{border-color:var(--bs-primary-border-subtle) !important}.border-secondary-subtle{border-color:var(--bs-secondary-border-subtle) !important}.border-success-subtle{border-color:var(--bs-success-border-subtle) !important}.border-info-subtle{border-color:var(--bs-info-border-subtle) !important}.border-warning-subtle{border-color:var(--bs-warning-border-subtle) !important}.border-danger-subtle{border-color:var(--bs-danger-border-subtle) !important}.border-light-subtle{border-color:var(--bs-light-border-subtle) !important}.border-dark-subtle{border-color:var(--bs-dark-border-subtle) !important}.border-1{border-width:1px !important}.border-2{border-width:2px !important}.border-3{border-width:3px !important}.border-4{border-width:4px !important}.border-5{border-width:5px !important}.border-opacity-10{--bs-border-opacity: 0.1}.border-opacity-25{--bs-border-opacity: 0.25}.border-opacity-50{--bs-border-opacity: 0.5}.border-opacity-75{--bs-border-opacity: 0.75}.border-opacity-100{--bs-border-opacity: 1}.w-25{width:25% !important}.w-50{width:50% !important}.w-75{width:75% !important}.w-100{width:100% !important}.w-auto{width:auto !important}.mw-100{max-width:100% !important}.vw-100{width:100vw !important}.min-vw-100{min-width:100vw !important}.h-25{height:25% !important}.h-50{height:50% !important}.h-75{height:75% !important}.h-100{height:100% !important}.h-auto{height:auto !important}.mh-100{max-height:100% !important}.vh-100{height:100vh !important}.min-vh-100{min-height:100vh !important}.flex-fill{flex:1 1 auto !important}.flex-row{flex-direction:row !important}.flex-column{flex-direction:column !important}.flex-row-reverse{flex-direction:row-reverse !important}.flex-column-reverse{flex-direction:column-reverse !important}.flex-grow-0{flex-grow:0 !important}.flex-grow-1{flex-grow:1 !important}.flex-shrink-0{flex-shrink:0 !important}.flex-shrink-1{flex-shrink:1 !important}.flex-wrap{flex-wrap:wrap !important}.flex-nowrap{flex-wrap:nowrap !important}.flex-wrap-reverse{flex-wrap:wrap-reverse !important}.justify-content-start{justify-content:flex-start !important}.justify-content-end{justify-content:flex-end !important}.justify-content-center{justify-content:center !important}.justify-content-between{justify-content:space-between !important}.justify-content-around{justify-content:space-around !important}.justify-content-evenly{justify-content:space-evenly !important}.align-items-start{align-items:flex-start !important}.align-items-end{align-items:flex-end !important}.align-items-center{align-items:center !important}.align-items-baseline{align-items:baseline !important}.align-items-stretch{align-items:stretch !important}.align-content-start{align-content:flex-start !important}.align-content-end{align-content:flex-end !important}.align-content-center{align-content:center !important}.align-content-between{align-content:space-between !important}.align-content-around{align-content:space-around !important}.align-content-stretch{align-content:stretch !important}.align-self-auto{align-self:auto !important}.align-self-start{align-self:flex-start !important}.align-self-end{align-self:flex-end !important}.align-self-center{align-self:center !important}.align-self-baseline{align-self:baseline !important}.align-self-stretch{align-self:stretch !important}.order-first{order:-1 !important}.order-0{order:0 !important}.order-1{order:1 !important}.order-2{order:2 !important}.order-3{order:3 !important}.order-4{order:4 !important}.order-5{order:5 !important}.order-last{order:6 !important}.m-0{margin:0 !important}.m-1{margin:.25rem !important}.m-2{margin:.5rem !important}.m-3{margin:1rem !important}.m-4{margin:1.5rem !important}.m-5{margin:3rem !important}.m-auto{margin:auto !important}.mx-0{margin-right:0 !important;margin-left:0 !important}.mx-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-3{margin-right:1rem !important;margin-left:1rem !important}.mx-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-5{margin-right:3rem !important;margin-left:3rem !important}.mx-auto{margin-right:auto !important;margin-left:auto !important}.my-0{margin-top:0 !important;margin-bottom:0 !important}.my-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-0{margin-top:0 !important}.mt-1{margin-top:.25rem !important}.mt-2{margin-top:.5rem !important}.mt-3{margin-top:1rem !important}.mt-4{margin-top:1.5rem !important}.mt-5{margin-top:3rem !important}.mt-auto{margin-top:auto !important}.me-0{margin-right:0 !important}.me-1{margin-right:.25rem !important}.me-2{margin-right:.5rem !important}.me-3{margin-right:1rem !important}.me-4{margin-right:1.5rem !important}.me-5{margin-right:3rem !important}.me-auto{margin-right:auto !important}.mb-0{margin-bottom:0 !important}.mb-1{margin-bottom:.25rem !important}.mb-2{margin-bottom:.5rem !important}.mb-3{margin-bottom:1rem !important}.mb-4{margin-bottom:1.5rem !important}.mb-5{margin-bottom:3rem !important}.mb-auto{margin-bottom:auto !important}.ms-0{margin-left:0 !important}.ms-1{margin-left:.25rem !important}.ms-2{margin-left:.5rem !important}.ms-3{margin-left:1rem !important}.ms-4{margin-left:1.5rem !important}.ms-5{margin-left:3rem !important}.ms-auto{margin-left:auto !important}.p-0{padding:0 !important}.p-1{padding:.25rem !important}.p-2{padding:.5rem !important}.p-3{padding:1rem !important}.p-4{padding:1.5rem !important}.p-5{padding:3rem !important}.px-0{padding-right:0 !important;padding-left:0 !important}.px-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-3{padding-right:1rem !important;padding-left:1rem !important}.px-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-5{padding-right:3rem !important;padding-left:3rem !important}.py-0{padding-top:0 !important;padding-bottom:0 !important}.py-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-0{padding-top:0 !important}.pt-1{padding-top:.25rem !important}.pt-2{padding-top:.5rem !important}.pt-3{padding-top:1rem !important}.pt-4{padding-top:1.5rem !important}.pt-5{padding-top:3rem !important}.pe-0{padding-right:0 !important}.pe-1{padding-right:.25rem !important}.pe-2{padding-right:.5rem !important}.pe-3{padding-right:1rem !important}.pe-4{padding-right:1.5rem !important}.pe-5{padding-right:3rem !important}.pb-0{padding-bottom:0 !important}.pb-1{padding-bottom:.25rem !important}.pb-2{padding-bottom:.5rem !important}.pb-3{padding-bottom:1rem !important}.pb-4{padding-bottom:1.5rem !important}.pb-5{padding-bottom:3rem !important}.ps-0{padding-left:0 !important}.ps-1{padding-left:.25rem !important}.ps-2{padding-left:.5rem !important}.ps-3{padding-left:1rem !important}.ps-4{padding-left:1.5rem !important}.ps-5{padding-left:3rem !important}.gap-0{gap:0 !important}.gap-1{gap:.25rem !important}.gap-2{gap:.5rem !important}.gap-3{gap:1rem !important}.gap-4{gap:1.5rem !important}.gap-5{gap:3rem !important}.row-gap-0{row-gap:0 !important}.row-gap-1{row-gap:.25rem !important}.row-gap-2{row-gap:.5rem !important}.row-gap-3{row-gap:1rem !important}.row-gap-4{row-gap:1.5rem !important}.row-gap-5{row-gap:3rem !important}.column-gap-0{column-gap:0 !important}.column-gap-1{column-gap:.25rem !important}.column-gap-2{column-gap:.5rem !important}.column-gap-3{column-gap:1rem !important}.column-gap-4{column-gap:1.5rem !important}.column-gap-5{column-gap:3rem !important}.font-monospace{font-family:var(--bs-font-monospace) !important}.fs-1{font-size:calc(1.325rem + 0.9vw) !important}.fs-2{font-size:calc(1.29rem + 0.48vw) !important}.fs-3{font-size:calc(1.27rem + 0.24vw) !important}.fs-4{font-size:1.25rem !important}.fs-5{font-size:1.1rem !important}.fs-6{font-size:1rem !important}.fst-italic{font-style:italic !important}.fst-normal{font-style:normal !important}.fw-lighter{font-weight:lighter !important}.fw-light{font-weight:300 !important}.fw-normal{font-weight:400 !important}.fw-medium{font-weight:500 !important}.fw-semibold{font-weight:600 !important}.fw-bold{font-weight:700 !important}.fw-bolder{font-weight:bolder !important}.lh-1{line-height:1 !important}.lh-sm{line-height:1.25 !important}.lh-base{line-height:1.5 !important}.lh-lg{line-height:2 !important}.text-start{text-align:left !important}.text-end{text-align:right !important}.text-center{text-align:center !important}.text-decoration-none{text-decoration:none !important}.text-decoration-underline{text-decoration:underline !important}.text-decoration-line-through{text-decoration:line-through !important}.text-lowercase{text-transform:lowercase !important}.text-uppercase{text-transform:uppercase !important}.text-capitalize{text-transform:capitalize !important}.text-wrap{white-space:normal !important}.text-nowrap{white-space:nowrap !important}.text-break{word-wrap:break-word !important;word-break:break-word !important}.text-default{--bs-text-opacity: 1;color:rgba(var(--bs-default-rgb), var(--bs-text-opacity)) !important}.text-primary{--bs-text-opacity: 1;color:rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important}.text-secondary{--bs-text-opacity: 1;color:rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important}.text-success{--bs-text-opacity: 1;color:rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important}.text-info{--bs-text-opacity: 1;color:rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important}.text-warning{--bs-text-opacity: 1;color:rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important}.text-danger{--bs-text-opacity: 1;color:rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important}.text-light{--bs-text-opacity: 1;color:rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important}.text-dark{--bs-text-opacity: 1;color:rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important}.text-black{--bs-text-opacity: 1;color:rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important}.text-white{--bs-text-opacity: 1;color:rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important}.text-body{--bs-text-opacity: 1;color:rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important}.text-muted{--bs-text-opacity: 1;color:var(--bs-secondary-color) !important}.text-black-50{--bs-text-opacity: 1;color:rgba(0,0,0,.5) !important}.text-white-50{--bs-text-opacity: 1;color:rgba(255,255,255,.5) !important}.text-body-secondary{--bs-text-opacity: 1;color:var(--bs-secondary-color) !important}.text-body-tertiary{--bs-text-opacity: 1;color:var(--bs-tertiary-color) !important}.text-body-emphasis{--bs-text-opacity: 1;color:var(--bs-emphasis-color) !important}.text-reset{--bs-text-opacity: 1;color:inherit !important}.text-opacity-25{--bs-text-opacity: 0.25}.text-opacity-50{--bs-text-opacity: 0.5}.text-opacity-75{--bs-text-opacity: 0.75}.text-opacity-100{--bs-text-opacity: 1}.text-primary-emphasis{color:var(--bs-primary-text-emphasis) !important}.text-secondary-emphasis{color:var(--bs-secondary-text-emphasis) !important}.text-success-emphasis{color:var(--bs-success-text-emphasis) !important}.text-info-emphasis{color:var(--bs-info-text-emphasis) !important}.text-warning-emphasis{color:var(--bs-warning-text-emphasis) !important}.text-danger-emphasis{color:var(--bs-danger-text-emphasis) !important}.text-light-emphasis{color:var(--bs-light-text-emphasis) !important}.text-dark-emphasis{color:var(--bs-dark-text-emphasis) !important}.link-opacity-10{--bs-link-opacity: 0.1}.link-opacity-10-hover:hover{--bs-link-opacity: 0.1}.link-opacity-25{--bs-link-opacity: 0.25}.link-opacity-25-hover:hover{--bs-link-opacity: 0.25}.link-opacity-50{--bs-link-opacity: 0.5}.link-opacity-50-hover:hover{--bs-link-opacity: 0.5}.link-opacity-75{--bs-link-opacity: 0.75}.link-opacity-75-hover:hover{--bs-link-opacity: 0.75}.link-opacity-100{--bs-link-opacity: 1}.link-opacity-100-hover:hover{--bs-link-opacity: 1}.link-offset-1{text-underline-offset:.125em !important}.link-offset-1-hover:hover{text-underline-offset:.125em !important}.link-offset-2{text-underline-offset:.25em !important}.link-offset-2-hover:hover{text-underline-offset:.25em !important}.link-offset-3{text-underline-offset:.375em !important}.link-offset-3-hover:hover{text-underline-offset:.375em !important}.link-underline-default{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-default-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-primary{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-secondary{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-success{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-info{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-warning{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-danger{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-light{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-dark{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important}.link-underline{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-underline-opacity-0{--bs-link-underline-opacity: 0}.link-underline-opacity-0-hover:hover{--bs-link-underline-opacity: 0}.link-underline-opacity-10{--bs-link-underline-opacity: 0.1}.link-underline-opacity-10-hover:hover{--bs-link-underline-opacity: 0.1}.link-underline-opacity-25{--bs-link-underline-opacity: 0.25}.link-underline-opacity-25-hover:hover{--bs-link-underline-opacity: 0.25}.link-underline-opacity-50{--bs-link-underline-opacity: 0.5}.link-underline-opacity-50-hover:hover{--bs-link-underline-opacity: 0.5}.link-underline-opacity-75{--bs-link-underline-opacity: 0.75}.link-underline-opacity-75-hover:hover{--bs-link-underline-opacity: 0.75}.link-underline-opacity-100{--bs-link-underline-opacity: 1}.link-underline-opacity-100-hover:hover{--bs-link-underline-opacity: 1}.bg-default{--bs-bg-opacity: 1;background-color:rgba(var(--bs-default-rgb), var(--bs-bg-opacity)) !important}.bg-primary{--bs-bg-opacity: 1;background-color:rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important}.bg-secondary{--bs-bg-opacity: 1;background-color:rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important}.bg-success{--bs-bg-opacity: 1;background-color:rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important}.bg-info{--bs-bg-opacity: 1;background-color:rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important}.bg-warning{--bs-bg-opacity: 1;background-color:rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important}.bg-danger{--bs-bg-opacity: 1;background-color:rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important}.bg-light{--bs-bg-opacity: 1;background-color:rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important}.bg-dark{--bs-bg-opacity: 1;background-color:rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important}.bg-black{--bs-bg-opacity: 1;background-color:rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important}.bg-white{--bs-bg-opacity: 1;background-color:rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important}.bg-body{--bs-bg-opacity: 1;background-color:rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important}.bg-transparent{--bs-bg-opacity: 1;background-color:rgba(0,0,0,0) !important}.bg-body-secondary{--bs-bg-opacity: 1;background-color:rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important}.bg-body-tertiary{--bs-bg-opacity: 1;background-color:rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important}.bg-opacity-10{--bs-bg-opacity: 0.1}.bg-opacity-25{--bs-bg-opacity: 0.25}.bg-opacity-50{--bs-bg-opacity: 0.5}.bg-opacity-75{--bs-bg-opacity: 0.75}.bg-opacity-100{--bs-bg-opacity: 1}.bg-primary-subtle{background-color:var(--bs-primary-bg-subtle) !important}.bg-secondary-subtle{background-color:var(--bs-secondary-bg-subtle) !important}.bg-success-subtle{background-color:var(--bs-success-bg-subtle) !important}.bg-info-subtle{background-color:var(--bs-info-bg-subtle) !important}.bg-warning-subtle{background-color:var(--bs-warning-bg-subtle) !important}.bg-danger-subtle{background-color:var(--bs-danger-bg-subtle) !important}.bg-light-subtle{background-color:var(--bs-light-bg-subtle) !important}.bg-dark-subtle{background-color:var(--bs-dark-bg-subtle) !important}.bg-gradient{background-image:var(--bs-gradient) !important}.user-select-all{user-select:all !important}.user-select-auto{user-select:auto !important}.user-select-none{user-select:none !important}.pe-none{pointer-events:none !important}.pe-auto{pointer-events:auto !important}.rounded{border-radius:var(--bs-border-radius) !important}.rounded-0{border-radius:0 !important}.rounded-1{border-radius:var(--bs-border-radius-sm) !important}.rounded-2{border-radius:var(--bs-border-radius) !important}.rounded-3{border-radius:var(--bs-border-radius-lg) !important}.rounded-4{border-radius:var(--bs-border-radius-xl) !important}.rounded-5{border-radius:var(--bs-border-radius-xxl) !important}.rounded-circle{border-radius:50% !important}.rounded-pill{border-radius:var(--bs-border-radius-pill) !important}.rounded-top{border-top-left-radius:var(--bs-border-radius) !important;border-top-right-radius:var(--bs-border-radius) !important}.rounded-top-0{border-top-left-radius:0 !important;border-top-right-radius:0 !important}.rounded-top-1{border-top-left-radius:var(--bs-border-radius-sm) !important;border-top-right-radius:var(--bs-border-radius-sm) !important}.rounded-top-2{border-top-left-radius:var(--bs-border-radius) !important;border-top-right-radius:var(--bs-border-radius) !important}.rounded-top-3{border-top-left-radius:var(--bs-border-radius-lg) !important;border-top-right-radius:var(--bs-border-radius-lg) !important}.rounded-top-4{border-top-left-radius:var(--bs-border-radius-xl) !important;border-top-right-radius:var(--bs-border-radius-xl) !important}.rounded-top-5{border-top-left-radius:var(--bs-border-radius-xxl) !important;border-top-right-radius:var(--bs-border-radius-xxl) !important}.rounded-top-circle{border-top-left-radius:50% !important;border-top-right-radius:50% !important}.rounded-top-pill{border-top-left-radius:var(--bs-border-radius-pill) !important;border-top-right-radius:var(--bs-border-radius-pill) !important}.rounded-end{border-top-right-radius:var(--bs-border-radius) !important;border-bottom-right-radius:var(--bs-border-radius) !important}.rounded-end-0{border-top-right-radius:0 !important;border-bottom-right-radius:0 !important}.rounded-end-1{border-top-right-radius:var(--bs-border-radius-sm) !important;border-bottom-right-radius:var(--bs-border-radius-sm) !important}.rounded-end-2{border-top-right-radius:var(--bs-border-radius) !important;border-bottom-right-radius:var(--bs-border-radius) !important}.rounded-end-3{border-top-right-radius:var(--bs-border-radius-lg) !important;border-bottom-right-radius:var(--bs-border-radius-lg) !important}.rounded-end-4{border-top-right-radius:var(--bs-border-radius-xl) !important;border-bottom-right-radius:var(--bs-border-radius-xl) !important}.rounded-end-5{border-top-right-radius:var(--bs-border-radius-xxl) !important;border-bottom-right-radius:var(--bs-border-radius-xxl) !important}.rounded-end-circle{border-top-right-radius:50% !important;border-bottom-right-radius:50% !important}.rounded-end-pill{border-top-right-radius:var(--bs-border-radius-pill) !important;border-bottom-right-radius:var(--bs-border-radius-pill) !important}.rounded-bottom{border-bottom-right-radius:var(--bs-border-radius) !important;border-bottom-left-radius:var(--bs-border-radius) !important}.rounded-bottom-0{border-bottom-right-radius:0 !important;border-bottom-left-radius:0 !important}.rounded-bottom-1{border-bottom-right-radius:var(--bs-border-radius-sm) !important;border-bottom-left-radius:var(--bs-border-radius-sm) !important}.rounded-bottom-2{border-bottom-right-radius:var(--bs-border-radius) !important;border-bottom-left-radius:var(--bs-border-radius) !important}.rounded-bottom-3{border-bottom-right-radius:var(--bs-border-radius-lg) !important;border-bottom-left-radius:var(--bs-border-radius-lg) !important}.rounded-bottom-4{border-bottom-right-radius:var(--bs-border-radius-xl) !important;border-bottom-left-radius:var(--bs-border-radius-xl) !important}.rounded-bottom-5{border-bottom-right-radius:var(--bs-border-radius-xxl) !important;border-bottom-left-radius:var(--bs-border-radius-xxl) !important}.rounded-bottom-circle{border-bottom-right-radius:50% !important;border-bottom-left-radius:50% !important}.rounded-bottom-pill{border-bottom-right-radius:var(--bs-border-radius-pill) !important;border-bottom-left-radius:var(--bs-border-radius-pill) !important}.rounded-start{border-bottom-left-radius:var(--bs-border-radius) !important;border-top-left-radius:var(--bs-border-radius) !important}.rounded-start-0{border-bottom-left-radius:0 !important;border-top-left-radius:0 !important}.rounded-start-1{border-bottom-left-radius:var(--bs-border-radius-sm) !important;border-top-left-radius:var(--bs-border-radius-sm) !important}.rounded-start-2{border-bottom-left-radius:var(--bs-border-radius) !important;border-top-left-radius:var(--bs-border-radius) !important}.rounded-start-3{border-bottom-left-radius:var(--bs-border-radius-lg) !important;border-top-left-radius:var(--bs-border-radius-lg) !important}.rounded-start-4{border-bottom-left-radius:var(--bs-border-radius-xl) !important;border-top-left-radius:var(--bs-border-radius-xl) !important}.rounded-start-5{border-bottom-left-radius:var(--bs-border-radius-xxl) !important;border-top-left-radius:var(--bs-border-radius-xxl) !important}.rounded-start-circle{border-bottom-left-radius:50% !important;border-top-left-radius:50% !important}.rounded-start-pill{border-bottom-left-radius:var(--bs-border-radius-pill) !important;border-top-left-radius:var(--bs-border-radius-pill) !important}.visible{visibility:visible !important}.invisible{visibility:hidden !important}.z-n1{z-index:-1 !important}.z-0{z-index:0 !important}.z-1{z-index:1 !important}.z-2{z-index:2 !important}.z-3{z-index:3 !important}@media(min-width: 576px){.float-sm-start{float:left !important}.float-sm-end{float:right !important}.float-sm-none{float:none !important}.object-fit-sm-contain{object-fit:contain !important}.object-fit-sm-cover{object-fit:cover !important}.object-fit-sm-fill{object-fit:fill !important}.object-fit-sm-scale{object-fit:scale-down !important}.object-fit-sm-none{object-fit:none !important}.d-sm-inline{display:inline !important}.d-sm-inline-block{display:inline-block !important}.d-sm-block{display:block !important}.d-sm-grid{display:grid !important}.d-sm-inline-grid{display:inline-grid !important}.d-sm-table{display:table !important}.d-sm-table-row{display:table-row !important}.d-sm-table-cell{display:table-cell !important}.d-sm-flex{display:flex !important}.d-sm-inline-flex{display:inline-flex !important}.d-sm-none{display:none !important}.flex-sm-fill{flex:1 1 auto !important}.flex-sm-row{flex-direction:row !important}.flex-sm-column{flex-direction:column !important}.flex-sm-row-reverse{flex-direction:row-reverse !important}.flex-sm-column-reverse{flex-direction:column-reverse !important}.flex-sm-grow-0{flex-grow:0 !important}.flex-sm-grow-1{flex-grow:1 !important}.flex-sm-shrink-0{flex-shrink:0 !important}.flex-sm-shrink-1{flex-shrink:1 !important}.flex-sm-wrap{flex-wrap:wrap !important}.flex-sm-nowrap{flex-wrap:nowrap !important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse !important}.justify-content-sm-start{justify-content:flex-start !important}.justify-content-sm-end{justify-content:flex-end !important}.justify-content-sm-center{justify-content:center !important}.justify-content-sm-between{justify-content:space-between !important}.justify-content-sm-around{justify-content:space-around !important}.justify-content-sm-evenly{justify-content:space-evenly !important}.align-items-sm-start{align-items:flex-start !important}.align-items-sm-end{align-items:flex-end !important}.align-items-sm-center{align-items:center !important}.align-items-sm-baseline{align-items:baseline !important}.align-items-sm-stretch{align-items:stretch !important}.align-content-sm-start{align-content:flex-start !important}.align-content-sm-end{align-content:flex-end !important}.align-content-sm-center{align-content:center !important}.align-content-sm-between{align-content:space-between !important}.align-content-sm-around{align-content:space-around !important}.align-content-sm-stretch{align-content:stretch !important}.align-self-sm-auto{align-self:auto !important}.align-self-sm-start{align-self:flex-start !important}.align-self-sm-end{align-self:flex-end !important}.align-self-sm-center{align-self:center !important}.align-self-sm-baseline{align-self:baseline !important}.align-self-sm-stretch{align-self:stretch !important}.order-sm-first{order:-1 !important}.order-sm-0{order:0 !important}.order-sm-1{order:1 !important}.order-sm-2{order:2 !important}.order-sm-3{order:3 !important}.order-sm-4{order:4 !important}.order-sm-5{order:5 !important}.order-sm-last{order:6 !important}.m-sm-0{margin:0 !important}.m-sm-1{margin:.25rem !important}.m-sm-2{margin:.5rem !important}.m-sm-3{margin:1rem !important}.m-sm-4{margin:1.5rem !important}.m-sm-5{margin:3rem !important}.m-sm-auto{margin:auto !important}.mx-sm-0{margin-right:0 !important;margin-left:0 !important}.mx-sm-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-sm-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-sm-3{margin-right:1rem !important;margin-left:1rem !important}.mx-sm-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-sm-5{margin-right:3rem !important;margin-left:3rem !important}.mx-sm-auto{margin-right:auto !important;margin-left:auto !important}.my-sm-0{margin-top:0 !important;margin-bottom:0 !important}.my-sm-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-sm-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-sm-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-sm-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-sm-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-sm-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-sm-0{margin-top:0 !important}.mt-sm-1{margin-top:.25rem !important}.mt-sm-2{margin-top:.5rem !important}.mt-sm-3{margin-top:1rem !important}.mt-sm-4{margin-top:1.5rem !important}.mt-sm-5{margin-top:3rem !important}.mt-sm-auto{margin-top:auto !important}.me-sm-0{margin-right:0 !important}.me-sm-1{margin-right:.25rem !important}.me-sm-2{margin-right:.5rem !important}.me-sm-3{margin-right:1rem !important}.me-sm-4{margin-right:1.5rem !important}.me-sm-5{margin-right:3rem !important}.me-sm-auto{margin-right:auto !important}.mb-sm-0{margin-bottom:0 !important}.mb-sm-1{margin-bottom:.25rem !important}.mb-sm-2{margin-bottom:.5rem !important}.mb-sm-3{margin-bottom:1rem !important}.mb-sm-4{margin-bottom:1.5rem !important}.mb-sm-5{margin-bottom:3rem !important}.mb-sm-auto{margin-bottom:auto !important}.ms-sm-0{margin-left:0 !important}.ms-sm-1{margin-left:.25rem !important}.ms-sm-2{margin-left:.5rem !important}.ms-sm-3{margin-left:1rem !important}.ms-sm-4{margin-left:1.5rem !important}.ms-sm-5{margin-left:3rem !important}.ms-sm-auto{margin-left:auto !important}.p-sm-0{padding:0 !important}.p-sm-1{padding:.25rem !important}.p-sm-2{padding:.5rem !important}.p-sm-3{padding:1rem !important}.p-sm-4{padding:1.5rem !important}.p-sm-5{padding:3rem !important}.px-sm-0{padding-right:0 !important;padding-left:0 !important}.px-sm-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-sm-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-sm-3{padding-right:1rem !important;padding-left:1rem !important}.px-sm-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-sm-5{padding-right:3rem !important;padding-left:3rem !important}.py-sm-0{padding-top:0 !important;padding-bottom:0 !important}.py-sm-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-sm-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-sm-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-sm-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-sm-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-sm-0{padding-top:0 !important}.pt-sm-1{padding-top:.25rem !important}.pt-sm-2{padding-top:.5rem !important}.pt-sm-3{padding-top:1rem !important}.pt-sm-4{padding-top:1.5rem !important}.pt-sm-5{padding-top:3rem !important}.pe-sm-0{padding-right:0 !important}.pe-sm-1{padding-right:.25rem !important}.pe-sm-2{padding-right:.5rem !important}.pe-sm-3{padding-right:1rem !important}.pe-sm-4{padding-right:1.5rem !important}.pe-sm-5{padding-right:3rem !important}.pb-sm-0{padding-bottom:0 !important}.pb-sm-1{padding-bottom:.25rem !important}.pb-sm-2{padding-bottom:.5rem !important}.pb-sm-3{padding-bottom:1rem !important}.pb-sm-4{padding-bottom:1.5rem !important}.pb-sm-5{padding-bottom:3rem !important}.ps-sm-0{padding-left:0 !important}.ps-sm-1{padding-left:.25rem !important}.ps-sm-2{padding-left:.5rem !important}.ps-sm-3{padding-left:1rem !important}.ps-sm-4{padding-left:1.5rem !important}.ps-sm-5{padding-left:3rem !important}.gap-sm-0{gap:0 !important}.gap-sm-1{gap:.25rem !important}.gap-sm-2{gap:.5rem !important}.gap-sm-3{gap:1rem !important}.gap-sm-4{gap:1.5rem !important}.gap-sm-5{gap:3rem !important}.row-gap-sm-0{row-gap:0 !important}.row-gap-sm-1{row-gap:.25rem !important}.row-gap-sm-2{row-gap:.5rem !important}.row-gap-sm-3{row-gap:1rem !important}.row-gap-sm-4{row-gap:1.5rem !important}.row-gap-sm-5{row-gap:3rem !important}.column-gap-sm-0{column-gap:0 !important}.column-gap-sm-1{column-gap:.25rem !important}.column-gap-sm-2{column-gap:.5rem !important}.column-gap-sm-3{column-gap:1rem !important}.column-gap-sm-4{column-gap:1.5rem !important}.column-gap-sm-5{column-gap:3rem !important}.text-sm-start{text-align:left !important}.text-sm-end{text-align:right !important}.text-sm-center{text-align:center !important}}@media(min-width: 768px){.float-md-start{float:left !important}.float-md-end{float:right !important}.float-md-none{float:none !important}.object-fit-md-contain{object-fit:contain !important}.object-fit-md-cover{object-fit:cover !important}.object-fit-md-fill{object-fit:fill !important}.object-fit-md-scale{object-fit:scale-down !important}.object-fit-md-none{object-fit:none !important}.d-md-inline{display:inline !important}.d-md-inline-block{display:inline-block !important}.d-md-block{display:block !important}.d-md-grid{display:grid !important}.d-md-inline-grid{display:inline-grid !important}.d-md-table{display:table !important}.d-md-table-row{display:table-row !important}.d-md-table-cell{display:table-cell !important}.d-md-flex{display:flex !important}.d-md-inline-flex{display:inline-flex !important}.d-md-none{display:none !important}.flex-md-fill{flex:1 1 auto !important}.flex-md-row{flex-direction:row !important}.flex-md-column{flex-direction:column !important}.flex-md-row-reverse{flex-direction:row-reverse !important}.flex-md-column-reverse{flex-direction:column-reverse !important}.flex-md-grow-0{flex-grow:0 !important}.flex-md-grow-1{flex-grow:1 !important}.flex-md-shrink-0{flex-shrink:0 !important}.flex-md-shrink-1{flex-shrink:1 !important}.flex-md-wrap{flex-wrap:wrap !important}.flex-md-nowrap{flex-wrap:nowrap !important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse !important}.justify-content-md-start{justify-content:flex-start !important}.justify-content-md-end{justify-content:flex-end !important}.justify-content-md-center{justify-content:center !important}.justify-content-md-between{justify-content:space-between !important}.justify-content-md-around{justify-content:space-around !important}.justify-content-md-evenly{justify-content:space-evenly !important}.align-items-md-start{align-items:flex-start !important}.align-items-md-end{align-items:flex-end !important}.align-items-md-center{align-items:center !important}.align-items-md-baseline{align-items:baseline !important}.align-items-md-stretch{align-items:stretch !important}.align-content-md-start{align-content:flex-start !important}.align-content-md-end{align-content:flex-end !important}.align-content-md-center{align-content:center !important}.align-content-md-between{align-content:space-between !important}.align-content-md-around{align-content:space-around !important}.align-content-md-stretch{align-content:stretch !important}.align-self-md-auto{align-self:auto !important}.align-self-md-start{align-self:flex-start !important}.align-self-md-end{align-self:flex-end !important}.align-self-md-center{align-self:center !important}.align-self-md-baseline{align-self:baseline !important}.align-self-md-stretch{align-self:stretch !important}.order-md-first{order:-1 !important}.order-md-0{order:0 !important}.order-md-1{order:1 !important}.order-md-2{order:2 !important}.order-md-3{order:3 !important}.order-md-4{order:4 !important}.order-md-5{order:5 !important}.order-md-last{order:6 !important}.m-md-0{margin:0 !important}.m-md-1{margin:.25rem !important}.m-md-2{margin:.5rem !important}.m-md-3{margin:1rem !important}.m-md-4{margin:1.5rem !important}.m-md-5{margin:3rem !important}.m-md-auto{margin:auto !important}.mx-md-0{margin-right:0 !important;margin-left:0 !important}.mx-md-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-md-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-md-3{margin-right:1rem !important;margin-left:1rem !important}.mx-md-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-md-5{margin-right:3rem !important;margin-left:3rem !important}.mx-md-auto{margin-right:auto !important;margin-left:auto !important}.my-md-0{margin-top:0 !important;margin-bottom:0 !important}.my-md-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-md-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-md-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-md-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-md-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-md-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-md-0{margin-top:0 !important}.mt-md-1{margin-top:.25rem !important}.mt-md-2{margin-top:.5rem !important}.mt-md-3{margin-top:1rem !important}.mt-md-4{margin-top:1.5rem !important}.mt-md-5{margin-top:3rem !important}.mt-md-auto{margin-top:auto !important}.me-md-0{margin-right:0 !important}.me-md-1{margin-right:.25rem !important}.me-md-2{margin-right:.5rem !important}.me-md-3{margin-right:1rem !important}.me-md-4{margin-right:1.5rem !important}.me-md-5{margin-right:3rem !important}.me-md-auto{margin-right:auto !important}.mb-md-0{margin-bottom:0 !important}.mb-md-1{margin-bottom:.25rem !important}.mb-md-2{margin-bottom:.5rem !important}.mb-md-3{margin-bottom:1rem !important}.mb-md-4{margin-bottom:1.5rem !important}.mb-md-5{margin-bottom:3rem !important}.mb-md-auto{margin-bottom:auto !important}.ms-md-0{margin-left:0 !important}.ms-md-1{margin-left:.25rem !important}.ms-md-2{margin-left:.5rem !important}.ms-md-3{margin-left:1rem !important}.ms-md-4{margin-left:1.5rem !important}.ms-md-5{margin-left:3rem !important}.ms-md-auto{margin-left:auto !important}.p-md-0{padding:0 !important}.p-md-1{padding:.25rem !important}.p-md-2{padding:.5rem !important}.p-md-3{padding:1rem !important}.p-md-4{padding:1.5rem !important}.p-md-5{padding:3rem !important}.px-md-0{padding-right:0 !important;padding-left:0 !important}.px-md-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-md-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-md-3{padding-right:1rem !important;padding-left:1rem !important}.px-md-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-md-5{padding-right:3rem !important;padding-left:3rem !important}.py-md-0{padding-top:0 !important;padding-bottom:0 !important}.py-md-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-md-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-md-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-md-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-md-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-md-0{padding-top:0 !important}.pt-md-1{padding-top:.25rem !important}.pt-md-2{padding-top:.5rem !important}.pt-md-3{padding-top:1rem !important}.pt-md-4{padding-top:1.5rem !important}.pt-md-5{padding-top:3rem !important}.pe-md-0{padding-right:0 !important}.pe-md-1{padding-right:.25rem !important}.pe-md-2{padding-right:.5rem !important}.pe-md-3{padding-right:1rem !important}.pe-md-4{padding-right:1.5rem !important}.pe-md-5{padding-right:3rem !important}.pb-md-0{padding-bottom:0 !important}.pb-md-1{padding-bottom:.25rem !important}.pb-md-2{padding-bottom:.5rem !important}.pb-md-3{padding-bottom:1rem !important}.pb-md-4{padding-bottom:1.5rem !important}.pb-md-5{padding-bottom:3rem !important}.ps-md-0{padding-left:0 !important}.ps-md-1{padding-left:.25rem !important}.ps-md-2{padding-left:.5rem !important}.ps-md-3{padding-left:1rem !important}.ps-md-4{padding-left:1.5rem !important}.ps-md-5{padding-left:3rem !important}.gap-md-0{gap:0 !important}.gap-md-1{gap:.25rem !important}.gap-md-2{gap:.5rem !important}.gap-md-3{gap:1rem !important}.gap-md-4{gap:1.5rem !important}.gap-md-5{gap:3rem !important}.row-gap-md-0{row-gap:0 !important}.row-gap-md-1{row-gap:.25rem !important}.row-gap-md-2{row-gap:.5rem !important}.row-gap-md-3{row-gap:1rem !important}.row-gap-md-4{row-gap:1.5rem !important}.row-gap-md-5{row-gap:3rem !important}.column-gap-md-0{column-gap:0 !important}.column-gap-md-1{column-gap:.25rem !important}.column-gap-md-2{column-gap:.5rem !important}.column-gap-md-3{column-gap:1rem !important}.column-gap-md-4{column-gap:1.5rem !important}.column-gap-md-5{column-gap:3rem !important}.text-md-start{text-align:left !important}.text-md-end{text-align:right !important}.text-md-center{text-align:center !important}}@media(min-width: 992px){.float-lg-start{float:left !important}.float-lg-end{float:right !important}.float-lg-none{float:none !important}.object-fit-lg-contain{object-fit:contain !important}.object-fit-lg-cover{object-fit:cover !important}.object-fit-lg-fill{object-fit:fill !important}.object-fit-lg-scale{object-fit:scale-down !important}.object-fit-lg-none{object-fit:none !important}.d-lg-inline{display:inline !important}.d-lg-inline-block{display:inline-block !important}.d-lg-block{display:block !important}.d-lg-grid{display:grid !important}.d-lg-inline-grid{display:inline-grid !important}.d-lg-table{display:table !important}.d-lg-table-row{display:table-row !important}.d-lg-table-cell{display:table-cell !important}.d-lg-flex{display:flex !important}.d-lg-inline-flex{display:inline-flex !important}.d-lg-none{display:none !important}.flex-lg-fill{flex:1 1 auto !important}.flex-lg-row{flex-direction:row !important}.flex-lg-column{flex-direction:column !important}.flex-lg-row-reverse{flex-direction:row-reverse !important}.flex-lg-column-reverse{flex-direction:column-reverse !important}.flex-lg-grow-0{flex-grow:0 !important}.flex-lg-grow-1{flex-grow:1 !important}.flex-lg-shrink-0{flex-shrink:0 !important}.flex-lg-shrink-1{flex-shrink:1 !important}.flex-lg-wrap{flex-wrap:wrap !important}.flex-lg-nowrap{flex-wrap:nowrap !important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse !important}.justify-content-lg-start{justify-content:flex-start !important}.justify-content-lg-end{justify-content:flex-end !important}.justify-content-lg-center{justify-content:center !important}.justify-content-lg-between{justify-content:space-between !important}.justify-content-lg-around{justify-content:space-around !important}.justify-content-lg-evenly{justify-content:space-evenly !important}.align-items-lg-start{align-items:flex-start !important}.align-items-lg-end{align-items:flex-end !important}.align-items-lg-center{align-items:center !important}.align-items-lg-baseline{align-items:baseline !important}.align-items-lg-stretch{align-items:stretch !important}.align-content-lg-start{align-content:flex-start !important}.align-content-lg-end{align-content:flex-end !important}.align-content-lg-center{align-content:center !important}.align-content-lg-between{align-content:space-between !important}.align-content-lg-around{align-content:space-around !important}.align-content-lg-stretch{align-content:stretch !important}.align-self-lg-auto{align-self:auto !important}.align-self-lg-start{align-self:flex-start !important}.align-self-lg-end{align-self:flex-end !important}.align-self-lg-center{align-self:center !important}.align-self-lg-baseline{align-self:baseline !important}.align-self-lg-stretch{align-self:stretch !important}.order-lg-first{order:-1 !important}.order-lg-0{order:0 !important}.order-lg-1{order:1 !important}.order-lg-2{order:2 !important}.order-lg-3{order:3 !important}.order-lg-4{order:4 !important}.order-lg-5{order:5 !important}.order-lg-last{order:6 !important}.m-lg-0{margin:0 !important}.m-lg-1{margin:.25rem !important}.m-lg-2{margin:.5rem !important}.m-lg-3{margin:1rem !important}.m-lg-4{margin:1.5rem !important}.m-lg-5{margin:3rem !important}.m-lg-auto{margin:auto !important}.mx-lg-0{margin-right:0 !important;margin-left:0 !important}.mx-lg-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-lg-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-lg-3{margin-right:1rem !important;margin-left:1rem !important}.mx-lg-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-lg-5{margin-right:3rem !important;margin-left:3rem !important}.mx-lg-auto{margin-right:auto !important;margin-left:auto !important}.my-lg-0{margin-top:0 !important;margin-bottom:0 !important}.my-lg-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-lg-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-lg-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-lg-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-lg-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-lg-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-lg-0{margin-top:0 !important}.mt-lg-1{margin-top:.25rem !important}.mt-lg-2{margin-top:.5rem !important}.mt-lg-3{margin-top:1rem !important}.mt-lg-4{margin-top:1.5rem !important}.mt-lg-5{margin-top:3rem !important}.mt-lg-auto{margin-top:auto !important}.me-lg-0{margin-right:0 !important}.me-lg-1{margin-right:.25rem !important}.me-lg-2{margin-right:.5rem !important}.me-lg-3{margin-right:1rem !important}.me-lg-4{margin-right:1.5rem !important}.me-lg-5{margin-right:3rem !important}.me-lg-auto{margin-right:auto !important}.mb-lg-0{margin-bottom:0 !important}.mb-lg-1{margin-bottom:.25rem !important}.mb-lg-2{margin-bottom:.5rem !important}.mb-lg-3{margin-bottom:1rem !important}.mb-lg-4{margin-bottom:1.5rem !important}.mb-lg-5{margin-bottom:3rem !important}.mb-lg-auto{margin-bottom:auto !important}.ms-lg-0{margin-left:0 !important}.ms-lg-1{margin-left:.25rem !important}.ms-lg-2{margin-left:.5rem !important}.ms-lg-3{margin-left:1rem !important}.ms-lg-4{margin-left:1.5rem !important}.ms-lg-5{margin-left:3rem !important}.ms-lg-auto{margin-left:auto !important}.p-lg-0{padding:0 !important}.p-lg-1{padding:.25rem !important}.p-lg-2{padding:.5rem !important}.p-lg-3{padding:1rem !important}.p-lg-4{padding:1.5rem !important}.p-lg-5{padding:3rem !important}.px-lg-0{padding-right:0 !important;padding-left:0 !important}.px-lg-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-lg-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-lg-3{padding-right:1rem !important;padding-left:1rem !important}.px-lg-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-lg-5{padding-right:3rem !important;padding-left:3rem !important}.py-lg-0{padding-top:0 !important;padding-bottom:0 !important}.py-lg-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-lg-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-lg-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-lg-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-lg-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-lg-0{padding-top:0 !important}.pt-lg-1{padding-top:.25rem !important}.pt-lg-2{padding-top:.5rem !important}.pt-lg-3{padding-top:1rem !important}.pt-lg-4{padding-top:1.5rem !important}.pt-lg-5{padding-top:3rem !important}.pe-lg-0{padding-right:0 !important}.pe-lg-1{padding-right:.25rem !important}.pe-lg-2{padding-right:.5rem !important}.pe-lg-3{padding-right:1rem !important}.pe-lg-4{padding-right:1.5rem !important}.pe-lg-5{padding-right:3rem !important}.pb-lg-0{padding-bottom:0 !important}.pb-lg-1{padding-bottom:.25rem !important}.pb-lg-2{padding-bottom:.5rem !important}.pb-lg-3{padding-bottom:1rem !important}.pb-lg-4{padding-bottom:1.5rem !important}.pb-lg-5{padding-bottom:3rem !important}.ps-lg-0{padding-left:0 !important}.ps-lg-1{padding-left:.25rem !important}.ps-lg-2{padding-left:.5rem !important}.ps-lg-3{padding-left:1rem !important}.ps-lg-4{padding-left:1.5rem !important}.ps-lg-5{padding-left:3rem !important}.gap-lg-0{gap:0 !important}.gap-lg-1{gap:.25rem !important}.gap-lg-2{gap:.5rem !important}.gap-lg-3{gap:1rem !important}.gap-lg-4{gap:1.5rem !important}.gap-lg-5{gap:3rem !important}.row-gap-lg-0{row-gap:0 !important}.row-gap-lg-1{row-gap:.25rem !important}.row-gap-lg-2{row-gap:.5rem !important}.row-gap-lg-3{row-gap:1rem !important}.row-gap-lg-4{row-gap:1.5rem !important}.row-gap-lg-5{row-gap:3rem !important}.column-gap-lg-0{column-gap:0 !important}.column-gap-lg-1{column-gap:.25rem !important}.column-gap-lg-2{column-gap:.5rem !important}.column-gap-lg-3{column-gap:1rem !important}.column-gap-lg-4{column-gap:1.5rem !important}.column-gap-lg-5{column-gap:3rem !important}.text-lg-start{text-align:left !important}.text-lg-end{text-align:right !important}.text-lg-center{text-align:center !important}}@media(min-width: 1200px){.float-xl-start{float:left !important}.float-xl-end{float:right !important}.float-xl-none{float:none !important}.object-fit-xl-contain{object-fit:contain !important}.object-fit-xl-cover{object-fit:cover !important}.object-fit-xl-fill{object-fit:fill !important}.object-fit-xl-scale{object-fit:scale-down !important}.object-fit-xl-none{object-fit:none !important}.d-xl-inline{display:inline !important}.d-xl-inline-block{display:inline-block !important}.d-xl-block{display:block !important}.d-xl-grid{display:grid !important}.d-xl-inline-grid{display:inline-grid !important}.d-xl-table{display:table !important}.d-xl-table-row{display:table-row !important}.d-xl-table-cell{display:table-cell !important}.d-xl-flex{display:flex !important}.d-xl-inline-flex{display:inline-flex !important}.d-xl-none{display:none !important}.flex-xl-fill{flex:1 1 auto !important}.flex-xl-row{flex-direction:row !important}.flex-xl-column{flex-direction:column !important}.flex-xl-row-reverse{flex-direction:row-reverse !important}.flex-xl-column-reverse{flex-direction:column-reverse !important}.flex-xl-grow-0{flex-grow:0 !important}.flex-xl-grow-1{flex-grow:1 !important}.flex-xl-shrink-0{flex-shrink:0 !important}.flex-xl-shrink-1{flex-shrink:1 !important}.flex-xl-wrap{flex-wrap:wrap !important}.flex-xl-nowrap{flex-wrap:nowrap !important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse !important}.justify-content-xl-start{justify-content:flex-start !important}.justify-content-xl-end{justify-content:flex-end !important}.justify-content-xl-center{justify-content:center !important}.justify-content-xl-between{justify-content:space-between !important}.justify-content-xl-around{justify-content:space-around !important}.justify-content-xl-evenly{justify-content:space-evenly !important}.align-items-xl-start{align-items:flex-start !important}.align-items-xl-end{align-items:flex-end !important}.align-items-xl-center{align-items:center !important}.align-items-xl-baseline{align-items:baseline !important}.align-items-xl-stretch{align-items:stretch !important}.align-content-xl-start{align-content:flex-start !important}.align-content-xl-end{align-content:flex-end !important}.align-content-xl-center{align-content:center !important}.align-content-xl-between{align-content:space-between !important}.align-content-xl-around{align-content:space-around !important}.align-content-xl-stretch{align-content:stretch !important}.align-self-xl-auto{align-self:auto !important}.align-self-xl-start{align-self:flex-start !important}.align-self-xl-end{align-self:flex-end !important}.align-self-xl-center{align-self:center !important}.align-self-xl-baseline{align-self:baseline !important}.align-self-xl-stretch{align-self:stretch !important}.order-xl-first{order:-1 !important}.order-xl-0{order:0 !important}.order-xl-1{order:1 !important}.order-xl-2{order:2 !important}.order-xl-3{order:3 !important}.order-xl-4{order:4 !important}.order-xl-5{order:5 !important}.order-xl-last{order:6 !important}.m-xl-0{margin:0 !important}.m-xl-1{margin:.25rem !important}.m-xl-2{margin:.5rem !important}.m-xl-3{margin:1rem !important}.m-xl-4{margin:1.5rem !important}.m-xl-5{margin:3rem !important}.m-xl-auto{margin:auto !important}.mx-xl-0{margin-right:0 !important;margin-left:0 !important}.mx-xl-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-xl-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-xl-3{margin-right:1rem !important;margin-left:1rem !important}.mx-xl-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-xl-5{margin-right:3rem !important;margin-left:3rem !important}.mx-xl-auto{margin-right:auto !important;margin-left:auto !important}.my-xl-0{margin-top:0 !important;margin-bottom:0 !important}.my-xl-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-xl-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-xl-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-xl-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-xl-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-xl-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-xl-0{margin-top:0 !important}.mt-xl-1{margin-top:.25rem !important}.mt-xl-2{margin-top:.5rem !important}.mt-xl-3{margin-top:1rem !important}.mt-xl-4{margin-top:1.5rem !important}.mt-xl-5{margin-top:3rem !important}.mt-xl-auto{margin-top:auto !important}.me-xl-0{margin-right:0 !important}.me-xl-1{margin-right:.25rem !important}.me-xl-2{margin-right:.5rem !important}.me-xl-3{margin-right:1rem !important}.me-xl-4{margin-right:1.5rem !important}.me-xl-5{margin-right:3rem !important}.me-xl-auto{margin-right:auto !important}.mb-xl-0{margin-bottom:0 !important}.mb-xl-1{margin-bottom:.25rem !important}.mb-xl-2{margin-bottom:.5rem !important}.mb-xl-3{margin-bottom:1rem !important}.mb-xl-4{margin-bottom:1.5rem !important}.mb-xl-5{margin-bottom:3rem !important}.mb-xl-auto{margin-bottom:auto !important}.ms-xl-0{margin-left:0 !important}.ms-xl-1{margin-left:.25rem !important}.ms-xl-2{margin-left:.5rem !important}.ms-xl-3{margin-left:1rem !important}.ms-xl-4{margin-left:1.5rem !important}.ms-xl-5{margin-left:3rem !important}.ms-xl-auto{margin-left:auto !important}.p-xl-0{padding:0 !important}.p-xl-1{padding:.25rem !important}.p-xl-2{padding:.5rem !important}.p-xl-3{padding:1rem !important}.p-xl-4{padding:1.5rem !important}.p-xl-5{padding:3rem !important}.px-xl-0{padding-right:0 !important;padding-left:0 !important}.px-xl-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-xl-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-xl-3{padding-right:1rem !important;padding-left:1rem !important}.px-xl-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-xl-5{padding-right:3rem !important;padding-left:3rem !important}.py-xl-0{padding-top:0 !important;padding-bottom:0 !important}.py-xl-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-xl-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-xl-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-xl-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-xl-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-xl-0{padding-top:0 !important}.pt-xl-1{padding-top:.25rem !important}.pt-xl-2{padding-top:.5rem !important}.pt-xl-3{padding-top:1rem !important}.pt-xl-4{padding-top:1.5rem !important}.pt-xl-5{padding-top:3rem !important}.pe-xl-0{padding-right:0 !important}.pe-xl-1{padding-right:.25rem !important}.pe-xl-2{padding-right:.5rem !important}.pe-xl-3{padding-right:1rem !important}.pe-xl-4{padding-right:1.5rem !important}.pe-xl-5{padding-right:3rem !important}.pb-xl-0{padding-bottom:0 !important}.pb-xl-1{padding-bottom:.25rem !important}.pb-xl-2{padding-bottom:.5rem !important}.pb-xl-3{padding-bottom:1rem !important}.pb-xl-4{padding-bottom:1.5rem !important}.pb-xl-5{padding-bottom:3rem !important}.ps-xl-0{padding-left:0 !important}.ps-xl-1{padding-left:.25rem !important}.ps-xl-2{padding-left:.5rem !important}.ps-xl-3{padding-left:1rem !important}.ps-xl-4{padding-left:1.5rem !important}.ps-xl-5{padding-left:3rem !important}.gap-xl-0{gap:0 !important}.gap-xl-1{gap:.25rem !important}.gap-xl-2{gap:.5rem !important}.gap-xl-3{gap:1rem !important}.gap-xl-4{gap:1.5rem !important}.gap-xl-5{gap:3rem !important}.row-gap-xl-0{row-gap:0 !important}.row-gap-xl-1{row-gap:.25rem !important}.row-gap-xl-2{row-gap:.5rem !important}.row-gap-xl-3{row-gap:1rem !important}.row-gap-xl-4{row-gap:1.5rem !important}.row-gap-xl-5{row-gap:3rem !important}.column-gap-xl-0{column-gap:0 !important}.column-gap-xl-1{column-gap:.25rem !important}.column-gap-xl-2{column-gap:.5rem !important}.column-gap-xl-3{column-gap:1rem !important}.column-gap-xl-4{column-gap:1.5rem !important}.column-gap-xl-5{column-gap:3rem !important}.text-xl-start{text-align:left !important}.text-xl-end{text-align:right !important}.text-xl-center{text-align:center !important}}@media(min-width: 1400px){.float-xxl-start{float:left !important}.float-xxl-end{float:right !important}.float-xxl-none{float:none !important}.object-fit-xxl-contain{object-fit:contain !important}.object-fit-xxl-cover{object-fit:cover !important}.object-fit-xxl-fill{object-fit:fill !important}.object-fit-xxl-scale{object-fit:scale-down !important}.object-fit-xxl-none{object-fit:none !important}.d-xxl-inline{display:inline !important}.d-xxl-inline-block{display:inline-block !important}.d-xxl-block{display:block !important}.d-xxl-grid{display:grid !important}.d-xxl-inline-grid{display:inline-grid !important}.d-xxl-table{display:table !important}.d-xxl-table-row{display:table-row !important}.d-xxl-table-cell{display:table-cell !important}.d-xxl-flex{display:flex !important}.d-xxl-inline-flex{display:inline-flex !important}.d-xxl-none{display:none !important}.flex-xxl-fill{flex:1 1 auto !important}.flex-xxl-row{flex-direction:row !important}.flex-xxl-column{flex-direction:column !important}.flex-xxl-row-reverse{flex-direction:row-reverse !important}.flex-xxl-column-reverse{flex-direction:column-reverse !important}.flex-xxl-grow-0{flex-grow:0 !important}.flex-xxl-grow-1{flex-grow:1 !important}.flex-xxl-shrink-0{flex-shrink:0 !important}.flex-xxl-shrink-1{flex-shrink:1 !important}.flex-xxl-wrap{flex-wrap:wrap !important}.flex-xxl-nowrap{flex-wrap:nowrap !important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse !important}.justify-content-xxl-start{justify-content:flex-start !important}.justify-content-xxl-end{justify-content:flex-end !important}.justify-content-xxl-center{justify-content:center !important}.justify-content-xxl-between{justify-content:space-between !important}.justify-content-xxl-around{justify-content:space-around !important}.justify-content-xxl-evenly{justify-content:space-evenly !important}.align-items-xxl-start{align-items:flex-start !important}.align-items-xxl-end{align-items:flex-end !important}.align-items-xxl-center{align-items:center !important}.align-items-xxl-baseline{align-items:baseline !important}.align-items-xxl-stretch{align-items:stretch !important}.align-content-xxl-start{align-content:flex-start !important}.align-content-xxl-end{align-content:flex-end !important}.align-content-xxl-center{align-content:center !important}.align-content-xxl-between{align-content:space-between !important}.align-content-xxl-around{align-content:space-around !important}.align-content-xxl-stretch{align-content:stretch !important}.align-self-xxl-auto{align-self:auto !important}.align-self-xxl-start{align-self:flex-start !important}.align-self-xxl-end{align-self:flex-end !important}.align-self-xxl-center{align-self:center !important}.align-self-xxl-baseline{align-self:baseline !important}.align-self-xxl-stretch{align-self:stretch !important}.order-xxl-first{order:-1 !important}.order-xxl-0{order:0 !important}.order-xxl-1{order:1 !important}.order-xxl-2{order:2 !important}.order-xxl-3{order:3 !important}.order-xxl-4{order:4 !important}.order-xxl-5{order:5 !important}.order-xxl-last{order:6 !important}.m-xxl-0{margin:0 !important}.m-xxl-1{margin:.25rem !important}.m-xxl-2{margin:.5rem !important}.m-xxl-3{margin:1rem !important}.m-xxl-4{margin:1.5rem !important}.m-xxl-5{margin:3rem !important}.m-xxl-auto{margin:auto !important}.mx-xxl-0{margin-right:0 !important;margin-left:0 !important}.mx-xxl-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-xxl-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-xxl-3{margin-right:1rem !important;margin-left:1rem !important}.mx-xxl-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-xxl-5{margin-right:3rem !important;margin-left:3rem !important}.mx-xxl-auto{margin-right:auto !important;margin-left:auto !important}.my-xxl-0{margin-top:0 !important;margin-bottom:0 !important}.my-xxl-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-xxl-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-xxl-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-xxl-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-xxl-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-xxl-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-xxl-0{margin-top:0 !important}.mt-xxl-1{margin-top:.25rem !important}.mt-xxl-2{margin-top:.5rem !important}.mt-xxl-3{margin-top:1rem !important}.mt-xxl-4{margin-top:1.5rem !important}.mt-xxl-5{margin-top:3rem !important}.mt-xxl-auto{margin-top:auto !important}.me-xxl-0{margin-right:0 !important}.me-xxl-1{margin-right:.25rem !important}.me-xxl-2{margin-right:.5rem !important}.me-xxl-3{margin-right:1rem !important}.me-xxl-4{margin-right:1.5rem !important}.me-xxl-5{margin-right:3rem !important}.me-xxl-auto{margin-right:auto !important}.mb-xxl-0{margin-bottom:0 !important}.mb-xxl-1{margin-bottom:.25rem !important}.mb-xxl-2{margin-bottom:.5rem !important}.mb-xxl-3{margin-bottom:1rem !important}.mb-xxl-4{margin-bottom:1.5rem !important}.mb-xxl-5{margin-bottom:3rem !important}.mb-xxl-auto{margin-bottom:auto !important}.ms-xxl-0{margin-left:0 !important}.ms-xxl-1{margin-left:.25rem !important}.ms-xxl-2{margin-left:.5rem !important}.ms-xxl-3{margin-left:1rem !important}.ms-xxl-4{margin-left:1.5rem !important}.ms-xxl-5{margin-left:3rem !important}.ms-xxl-auto{margin-left:auto !important}.p-xxl-0{padding:0 !important}.p-xxl-1{padding:.25rem !important}.p-xxl-2{padding:.5rem !important}.p-xxl-3{padding:1rem !important}.p-xxl-4{padding:1.5rem !important}.p-xxl-5{padding:3rem !important}.px-xxl-0{padding-right:0 !important;padding-left:0 !important}.px-xxl-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-xxl-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-xxl-3{padding-right:1rem !important;padding-left:1rem !important}.px-xxl-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-xxl-5{padding-right:3rem !important;padding-left:3rem !important}.py-xxl-0{padding-top:0 !important;padding-bottom:0 !important}.py-xxl-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-xxl-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-xxl-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-xxl-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-xxl-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-xxl-0{padding-top:0 !important}.pt-xxl-1{padding-top:.25rem !important}.pt-xxl-2{padding-top:.5rem !important}.pt-xxl-3{padding-top:1rem !important}.pt-xxl-4{padding-top:1.5rem !important}.pt-xxl-5{padding-top:3rem !important}.pe-xxl-0{padding-right:0 !important}.pe-xxl-1{padding-right:.25rem !important}.pe-xxl-2{padding-right:.5rem !important}.pe-xxl-3{padding-right:1rem !important}.pe-xxl-4{padding-right:1.5rem !important}.pe-xxl-5{padding-right:3rem !important}.pb-xxl-0{padding-bottom:0 !important}.pb-xxl-1{padding-bottom:.25rem !important}.pb-xxl-2{padding-bottom:.5rem !important}.pb-xxl-3{padding-bottom:1rem !important}.pb-xxl-4{padding-bottom:1.5rem !important}.pb-xxl-5{padding-bottom:3rem !important}.ps-xxl-0{padding-left:0 !important}.ps-xxl-1{padding-left:.25rem !important}.ps-xxl-2{padding-left:.5rem !important}.ps-xxl-3{padding-left:1rem !important}.ps-xxl-4{padding-left:1.5rem !important}.ps-xxl-5{padding-left:3rem !important}.gap-xxl-0{gap:0 !important}.gap-xxl-1{gap:.25rem !important}.gap-xxl-2{gap:.5rem !important}.gap-xxl-3{gap:1rem !important}.gap-xxl-4{gap:1.5rem !important}.gap-xxl-5{gap:3rem !important}.row-gap-xxl-0{row-gap:0 !important}.row-gap-xxl-1{row-gap:.25rem !important}.row-gap-xxl-2{row-gap:.5rem !important}.row-gap-xxl-3{row-gap:1rem !important}.row-gap-xxl-4{row-gap:1.5rem !important}.row-gap-xxl-5{row-gap:3rem !important}.column-gap-xxl-0{column-gap:0 !important}.column-gap-xxl-1{column-gap:.25rem !important}.column-gap-xxl-2{column-gap:.5rem !important}.column-gap-xxl-3{column-gap:1rem !important}.column-gap-xxl-4{column-gap:1.5rem !important}.column-gap-xxl-5{column-gap:3rem !important}.text-xxl-start{text-align:left !important}.text-xxl-end{text-align:right !important}.text-xxl-center{text-align:center !important}}.bg-default{color:#fff}.bg-primary{color:#fff}.bg-secondary{color:#fff}.bg-success{color:#fff}.bg-info{color:#fff}.bg-warning{color:#fff}.bg-danger{color:#fff}.bg-light{color:#000}.bg-dark{color:#fff}@media(min-width: 1200px){.fs-1{font-size:2rem !important}.fs-2{font-size:1.65rem !important}.fs-3{font-size:1.45rem !important}}@media print{.d-print-inline{display:inline !important}.d-print-inline-block{display:inline-block !important}.d-print-block{display:block !important}.d-print-grid{display:grid !important}.d-print-inline-grid{display:inline-grid !important}.d-print-table{display:table !important}.d-print-table-row{display:table-row !important}.d-print-table-cell{display:table-cell !important}.d-print-flex{display:flex !important}.d-print-inline-flex{display:inline-flex !important}.d-print-none{display:none !important}}:root{--bslib-spacer: 1rem;--bslib-mb-spacer: var(--bslib-spacer, 1rem)}.bslib-mb-spacing{margin-bottom:var(--bslib-mb-spacer)}.bslib-gap-spacing{gap:var(--bslib-mb-spacer)}.bslib-gap-spacing>.bslib-mb-spacing,.bslib-gap-spacing>.form-group,.bslib-gap-spacing>p,.bslib-gap-spacing>pre{margin-bottom:0}.html-fill-container>.html-fill-item.bslib-mb-spacing{margin-bottom:0}.tab-content>.tab-pane.html-fill-container{display:none}.tab-content>.active.html-fill-container{display:flex}.tab-content.html-fill-container{padding:0}.bg-blue{--bslib-color-bg: #2780e3;--bslib-color-fg: #fff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-blue{--bslib-color-fg: #2780e3;color:var(--bslib-color-fg)}.bg-indigo{--bslib-color-bg: #6610f2;--bslib-color-fg: #fff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-indigo{--bslib-color-fg: #6610f2;color:var(--bslib-color-fg)}.bg-purple{--bslib-color-bg: #613d7c;--bslib-color-fg: #fff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-purple{--bslib-color-fg: #613d7c;color:var(--bslib-color-fg)}.bg-pink{--bslib-color-bg: #e83e8c;--bslib-color-fg: #fff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-pink{--bslib-color-fg: #e83e8c;color:var(--bslib-color-fg)}.bg-red{--bslib-color-bg: #ff0039;--bslib-color-fg: #fff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-red{--bslib-color-fg: #ff0039;color:var(--bslib-color-fg)}.bg-orange{--bslib-color-bg: #f0ad4e;--bslib-color-fg: #000;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-orange{--bslib-color-fg: #f0ad4e;color:var(--bslib-color-fg)}.bg-yellow{--bslib-color-bg: #ff7518;--bslib-color-fg: #fff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-yellow{--bslib-color-fg: #ff7518;color:var(--bslib-color-fg)}.bg-green{--bslib-color-bg: #3fb618;--bslib-color-fg: #fff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-green{--bslib-color-fg: #3fb618;color:var(--bslib-color-fg)}.bg-teal{--bslib-color-bg: #20c997;--bslib-color-fg: #000;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-teal{--bslib-color-fg: #20c997;color:var(--bslib-color-fg)}.bg-cyan{--bslib-color-bg: #9954bb;--bslib-color-fg: #fff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-cyan{--bslib-color-fg: #9954bb;color:var(--bslib-color-fg)}.text-default{--bslib-color-fg: #343a40}.bg-default{--bslib-color-bg: #343a40;--bslib-color-fg: #fff}.text-primary{--bslib-color-fg: #6D6E71}.bg-primary{--bslib-color-bg: #6D6E71;--bslib-color-fg: #fff}.text-secondary{--bslib-color-fg: #343a40}.bg-secondary{--bslib-color-bg: #343a40;--bslib-color-fg: #fff}.text-success{--bslib-color-fg: #3fb618}.bg-success{--bslib-color-bg: #3fb618;--bslib-color-fg: #fff}.text-info{--bslib-color-fg: #9954bb}.bg-info{--bslib-color-bg: #9954bb;--bslib-color-fg: #fff}.text-warning{--bslib-color-fg: #ff7518}.bg-warning{--bslib-color-bg: #ff7518;--bslib-color-fg: #fff}.text-danger{--bslib-color-fg: #ff0039}.bg-danger{--bslib-color-bg: #ff0039;--bslib-color-fg: #fff}.text-light{--bslib-color-fg: #f8f9fa}.bg-light{--bslib-color-bg: #f8f9fa;--bslib-color-fg: #000}.text-dark{--bslib-color-fg: #343a40}.bg-dark{--bslib-color-bg: #343a40;--bslib-color-fg: #fff}.bg-gradient-blue-indigo{--bslib-color-fg: #fff;--bslib-color-bg: #4053e9;background:linear-gradient(var(--bg-gradient-deg, 140deg), #2780e3 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #4053e9;color:#fff}.bg-gradient-blue-purple{--bslib-color-fg: #fff;--bslib-color-bg: #3e65ba;background:linear-gradient(var(--bg-gradient-deg, 140deg), #2780e3 var(--bg-gradient-start, 36%), #613d7c var(--bg-gradient-end, 180%)) #3e65ba;color:#fff}.bg-gradient-blue-pink{--bslib-color-fg: #fff;--bslib-color-bg: #7466c0;background:linear-gradient(var(--bg-gradient-deg, 140deg), #2780e3 var(--bg-gradient-start, 36%), #e83e8c var(--bg-gradient-end, 180%)) #7466c0;color:#fff}.bg-gradient-blue-red{--bslib-color-fg: #fff;--bslib-color-bg: #7d4d9f;background:linear-gradient(var(--bg-gradient-deg, 140deg), #2780e3 var(--bg-gradient-start, 36%), #ff0039 var(--bg-gradient-end, 180%)) #7d4d9f;color:#fff}.bg-gradient-blue-orange{--bslib-color-fg: #fff;--bslib-color-bg: #7792a7;background:linear-gradient(var(--bg-gradient-deg, 140deg), #2780e3 var(--bg-gradient-start, 36%), #f0ad4e var(--bg-gradient-end, 180%)) #7792a7;color:#fff}.bg-gradient-blue-yellow{--bslib-color-fg: #fff;--bslib-color-bg: #7d7c92;background:linear-gradient(var(--bg-gradient-deg, 140deg), #2780e3 var(--bg-gradient-start, 36%), #ff7518 var(--bg-gradient-end, 180%)) #7d7c92;color:#fff}.bg-gradient-blue-green{--bslib-color-fg: #fff;--bslib-color-bg: #319692;background:linear-gradient(var(--bg-gradient-deg, 140deg), #2780e3 var(--bg-gradient-start, 36%), #3fb618 var(--bg-gradient-end, 180%)) #319692;color:#fff}.bg-gradient-blue-teal{--bslib-color-fg: #fff;--bslib-color-bg: #249dc5;background:linear-gradient(var(--bg-gradient-deg, 140deg), #2780e3 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #249dc5;color:#fff}.bg-gradient-blue-cyan{--bslib-color-fg: #fff;--bslib-color-bg: #556ed3;background:linear-gradient(var(--bg-gradient-deg, 140deg), #2780e3 var(--bg-gradient-start, 36%), #9954bb var(--bg-gradient-end, 180%)) #556ed3;color:#fff}.bg-gradient-indigo-blue{--bslib-color-fg: #fff;--bslib-color-bg: #4d3dec;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #2780e3 var(--bg-gradient-end, 180%)) #4d3dec;color:#fff}.bg-gradient-indigo-purple{--bslib-color-fg: #fff;--bslib-color-bg: #6422c3;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #613d7c var(--bg-gradient-end, 180%)) #6422c3;color:#fff}.bg-gradient-indigo-pink{--bslib-color-fg: #fff;--bslib-color-bg: #9a22c9;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #e83e8c var(--bg-gradient-end, 180%)) #9a22c9;color:#fff}.bg-gradient-indigo-red{--bslib-color-fg: #fff;--bslib-color-bg: #a30aa8;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #ff0039 var(--bg-gradient-end, 180%)) #a30aa8;color:#fff}.bg-gradient-indigo-orange{--bslib-color-fg: #fff;--bslib-color-bg: #9d4fb0;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #f0ad4e var(--bg-gradient-end, 180%)) #9d4fb0;color:#fff}.bg-gradient-indigo-yellow{--bslib-color-fg: #fff;--bslib-color-bg: #a3389b;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #ff7518 var(--bg-gradient-end, 180%)) #a3389b;color:#fff}.bg-gradient-indigo-green{--bslib-color-fg: #fff;--bslib-color-bg: #56529b;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #3fb618 var(--bg-gradient-end, 180%)) #56529b;color:#fff}.bg-gradient-indigo-teal{--bslib-color-fg: #fff;--bslib-color-bg: #4a5ace;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #4a5ace;color:#fff}.bg-gradient-indigo-cyan{--bslib-color-fg: #fff;--bslib-color-bg: #7a2bdc;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #9954bb var(--bg-gradient-end, 180%)) #7a2bdc;color:#fff}.bg-gradient-purple-blue{--bslib-color-fg: #fff;--bslib-color-bg: #4a58a5;background:linear-gradient(var(--bg-gradient-deg, 140deg), #613d7c var(--bg-gradient-start, 36%), #2780e3 var(--bg-gradient-end, 180%)) #4a58a5;color:#fff}.bg-gradient-purple-indigo{--bslib-color-fg: #fff;--bslib-color-bg: #632bab;background:linear-gradient(var(--bg-gradient-deg, 140deg), #613d7c var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #632bab;color:#fff}.bg-gradient-purple-pink{--bslib-color-fg: #fff;--bslib-color-bg: #973d82;background:linear-gradient(var(--bg-gradient-deg, 140deg), #613d7c var(--bg-gradient-start, 36%), #e83e8c var(--bg-gradient-end, 180%)) #973d82;color:#fff}.bg-gradient-purple-red{--bslib-color-fg: #fff;--bslib-color-bg: #a02561;background:linear-gradient(var(--bg-gradient-deg, 140deg), #613d7c var(--bg-gradient-start, 36%), #ff0039 var(--bg-gradient-end, 180%)) #a02561;color:#fff}.bg-gradient-purple-orange{--bslib-color-fg: #fff;--bslib-color-bg: #9a6a6a;background:linear-gradient(var(--bg-gradient-deg, 140deg), #613d7c var(--bg-gradient-start, 36%), #f0ad4e var(--bg-gradient-end, 180%)) #9a6a6a;color:#fff}.bg-gradient-purple-yellow{--bslib-color-fg: #fff;--bslib-color-bg: #a05354;background:linear-gradient(var(--bg-gradient-deg, 140deg), #613d7c var(--bg-gradient-start, 36%), #ff7518 var(--bg-gradient-end, 180%)) #a05354;color:#fff}.bg-gradient-purple-green{--bslib-color-fg: #fff;--bslib-color-bg: #536d54;background:linear-gradient(var(--bg-gradient-deg, 140deg), #613d7c var(--bg-gradient-start, 36%), #3fb618 var(--bg-gradient-end, 180%)) #536d54;color:#fff}.bg-gradient-purple-teal{--bslib-color-fg: #fff;--bslib-color-bg: #477587;background:linear-gradient(var(--bg-gradient-deg, 140deg), #613d7c var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #477587;color:#fff}.bg-gradient-purple-cyan{--bslib-color-fg: #fff;--bslib-color-bg: #774695;background:linear-gradient(var(--bg-gradient-deg, 140deg), #613d7c var(--bg-gradient-start, 36%), #9954bb var(--bg-gradient-end, 180%)) #774695;color:#fff}.bg-gradient-pink-blue{--bslib-color-fg: #fff;--bslib-color-bg: #9b58af;background:linear-gradient(var(--bg-gradient-deg, 140deg), #e83e8c var(--bg-gradient-start, 36%), #2780e3 var(--bg-gradient-end, 180%)) #9b58af;color:#fff}.bg-gradient-pink-indigo{--bslib-color-fg: #fff;--bslib-color-bg: #b42cb5;background:linear-gradient(var(--bg-gradient-deg, 140deg), #e83e8c var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #b42cb5;color:#fff}.bg-gradient-pink-purple{--bslib-color-fg: #fff;--bslib-color-bg: #b23e86;background:linear-gradient(var(--bg-gradient-deg, 140deg), #e83e8c var(--bg-gradient-start, 36%), #613d7c var(--bg-gradient-end, 180%)) #b23e86;color:#fff}.bg-gradient-pink-red{--bslib-color-fg: #fff;--bslib-color-bg: #f1256b;background:linear-gradient(var(--bg-gradient-deg, 140deg), #e83e8c var(--bg-gradient-start, 36%), #ff0039 var(--bg-gradient-end, 180%)) #f1256b;color:#fff}.bg-gradient-pink-orange{--bslib-color-fg: #fff;--bslib-color-bg: #eb6a73;background:linear-gradient(var(--bg-gradient-deg, 140deg), #e83e8c var(--bg-gradient-start, 36%), #f0ad4e var(--bg-gradient-end, 180%)) #eb6a73;color:#fff}.bg-gradient-pink-yellow{--bslib-color-fg: #fff;--bslib-color-bg: #f1545e;background:linear-gradient(var(--bg-gradient-deg, 140deg), #e83e8c var(--bg-gradient-start, 36%), #ff7518 var(--bg-gradient-end, 180%)) #f1545e;color:#fff}.bg-gradient-pink-green{--bslib-color-fg: #fff;--bslib-color-bg: #a46e5e;background:linear-gradient(var(--bg-gradient-deg, 140deg), #e83e8c var(--bg-gradient-start, 36%), #3fb618 var(--bg-gradient-end, 180%)) #a46e5e;color:#fff}.bg-gradient-pink-teal{--bslib-color-fg: #fff;--bslib-color-bg: #987690;background:linear-gradient(var(--bg-gradient-deg, 140deg), #e83e8c var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #987690;color:#fff}.bg-gradient-pink-cyan{--bslib-color-fg: #fff;--bslib-color-bg: #c8479f;background:linear-gradient(var(--bg-gradient-deg, 140deg), #e83e8c var(--bg-gradient-start, 36%), #9954bb var(--bg-gradient-end, 180%)) #c8479f;color:#fff}.bg-gradient-red-blue{--bslib-color-fg: #fff;--bslib-color-bg: #a9337d;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ff0039 var(--bg-gradient-start, 36%), #2780e3 var(--bg-gradient-end, 180%)) #a9337d;color:#fff}.bg-gradient-red-indigo{--bslib-color-fg: #fff;--bslib-color-bg: #c20683;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ff0039 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #c20683;color:#fff}.bg-gradient-red-purple{--bslib-color-fg: #fff;--bslib-color-bg: #c01854;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ff0039 var(--bg-gradient-start, 36%), #613d7c var(--bg-gradient-end, 180%)) #c01854;color:#fff}.bg-gradient-red-pink{--bslib-color-fg: #fff;--bslib-color-bg: #f6195a;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ff0039 var(--bg-gradient-start, 36%), #e83e8c var(--bg-gradient-end, 180%)) #f6195a;color:#fff}.bg-gradient-red-orange{--bslib-color-fg: #fff;--bslib-color-bg: #f94541;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ff0039 var(--bg-gradient-start, 36%), #f0ad4e var(--bg-gradient-end, 180%)) #f94541;color:#fff}.bg-gradient-red-yellow{--bslib-color-fg: #fff;--bslib-color-bg: #ff2f2c;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ff0039 var(--bg-gradient-start, 36%), #ff7518 var(--bg-gradient-end, 180%)) #ff2f2c;color:#fff}.bg-gradient-red-green{--bslib-color-fg: #fff;--bslib-color-bg: #b2492c;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ff0039 var(--bg-gradient-start, 36%), #3fb618 var(--bg-gradient-end, 180%)) #b2492c;color:#fff}.bg-gradient-red-teal{--bslib-color-fg: #fff;--bslib-color-bg: #a6505f;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ff0039 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #a6505f;color:#fff}.bg-gradient-red-cyan{--bslib-color-fg: #fff;--bslib-color-bg: #d6226d;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ff0039 var(--bg-gradient-start, 36%), #9954bb var(--bg-gradient-end, 180%)) #d6226d;color:#fff}.bg-gradient-orange-blue{--bslib-color-fg: #fff;--bslib-color-bg: #a09b8a;background:linear-gradient(var(--bg-gradient-deg, 140deg), #f0ad4e var(--bg-gradient-start, 36%), #2780e3 var(--bg-gradient-end, 180%)) #a09b8a;color:#fff}.bg-gradient-orange-indigo{--bslib-color-fg: #fff;--bslib-color-bg: #b96e90;background:linear-gradient(var(--bg-gradient-deg, 140deg), #f0ad4e var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #b96e90;color:#fff}.bg-gradient-orange-purple{--bslib-color-fg: #fff;--bslib-color-bg: #b78060;background:linear-gradient(var(--bg-gradient-deg, 140deg), #f0ad4e var(--bg-gradient-start, 36%), #613d7c var(--bg-gradient-end, 180%)) #b78060;color:#fff}.bg-gradient-orange-pink{--bslib-color-fg: #fff;--bslib-color-bg: #ed8167;background:linear-gradient(var(--bg-gradient-deg, 140deg), #f0ad4e var(--bg-gradient-start, 36%), #e83e8c var(--bg-gradient-end, 180%)) #ed8167;color:#fff}.bg-gradient-orange-red{--bslib-color-fg: #fff;--bslib-color-bg: #f66846;background:linear-gradient(var(--bg-gradient-deg, 140deg), #f0ad4e var(--bg-gradient-start, 36%), #ff0039 var(--bg-gradient-end, 180%)) #f66846;color:#fff}.bg-gradient-orange-yellow{--bslib-color-fg: #000;--bslib-color-bg: #f69738;background:linear-gradient(var(--bg-gradient-deg, 140deg), #f0ad4e var(--bg-gradient-start, 36%), #ff7518 var(--bg-gradient-end, 180%)) #f69738;color:#000}.bg-gradient-orange-green{--bslib-color-fg: #000;--bslib-color-bg: #a9b138;background:linear-gradient(var(--bg-gradient-deg, 140deg), #f0ad4e var(--bg-gradient-start, 36%), #3fb618 var(--bg-gradient-end, 180%)) #a9b138;color:#000}.bg-gradient-orange-teal{--bslib-color-fg: #000;--bslib-color-bg: #9db86b;background:linear-gradient(var(--bg-gradient-deg, 140deg), #f0ad4e var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #9db86b;color:#000}.bg-gradient-orange-cyan{--bslib-color-fg: #fff;--bslib-color-bg: #cd897a;background:linear-gradient(var(--bg-gradient-deg, 140deg), #f0ad4e var(--bg-gradient-start, 36%), #9954bb var(--bg-gradient-end, 180%)) #cd897a;color:#fff}.bg-gradient-yellow-blue{--bslib-color-fg: #fff;--bslib-color-bg: #a97969;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ff7518 var(--bg-gradient-start, 36%), #2780e3 var(--bg-gradient-end, 180%)) #a97969;color:#fff}.bg-gradient-yellow-indigo{--bslib-color-fg: #fff;--bslib-color-bg: #c24d6f;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ff7518 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #c24d6f;color:#fff}.bg-gradient-yellow-purple{--bslib-color-fg: #fff;--bslib-color-bg: #c05f40;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ff7518 var(--bg-gradient-start, 36%), #613d7c var(--bg-gradient-end, 180%)) #c05f40;color:#fff}.bg-gradient-yellow-pink{--bslib-color-fg: #fff;--bslib-color-bg: #f65f46;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ff7518 var(--bg-gradient-start, 36%), #e83e8c var(--bg-gradient-end, 180%)) #f65f46;color:#fff}.bg-gradient-yellow-red{--bslib-color-fg: #fff;--bslib-color-bg: #ff4625;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ff7518 var(--bg-gradient-start, 36%), #ff0039 var(--bg-gradient-end, 180%)) #ff4625;color:#fff}.bg-gradient-yellow-orange{--bslib-color-fg: #000;--bslib-color-bg: #f98b2e;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ff7518 var(--bg-gradient-start, 36%), #f0ad4e var(--bg-gradient-end, 180%)) #f98b2e;color:#000}.bg-gradient-yellow-green{--bslib-color-fg: #fff;--bslib-color-bg: #b28f18;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ff7518 var(--bg-gradient-start, 36%), #3fb618 var(--bg-gradient-end, 180%)) #b28f18;color:#fff}.bg-gradient-yellow-teal{--bslib-color-fg: #fff;--bslib-color-bg: #a6974b;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ff7518 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #a6974b;color:#fff}.bg-gradient-yellow-cyan{--bslib-color-fg: #fff;--bslib-color-bg: #d66859;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ff7518 var(--bg-gradient-start, 36%), #9954bb var(--bg-gradient-end, 180%)) #d66859;color:#fff}.bg-gradient-green-blue{--bslib-color-fg: #fff;--bslib-color-bg: #35a069;background:linear-gradient(var(--bg-gradient-deg, 140deg), #3fb618 var(--bg-gradient-start, 36%), #2780e3 var(--bg-gradient-end, 180%)) #35a069;color:#fff}.bg-gradient-green-indigo{--bslib-color-fg: #fff;--bslib-color-bg: #4f746f;background:linear-gradient(var(--bg-gradient-deg, 140deg), #3fb618 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #4f746f;color:#fff}.bg-gradient-green-purple{--bslib-color-fg: #fff;--bslib-color-bg: #4d8640;background:linear-gradient(var(--bg-gradient-deg, 140deg), #3fb618 var(--bg-gradient-start, 36%), #613d7c var(--bg-gradient-end, 180%)) #4d8640;color:#fff}.bg-gradient-green-pink{--bslib-color-fg: #fff;--bslib-color-bg: #838646;background:linear-gradient(var(--bg-gradient-deg, 140deg), #3fb618 var(--bg-gradient-start, 36%), #e83e8c var(--bg-gradient-end, 180%)) #838646;color:#fff}.bg-gradient-green-red{--bslib-color-fg: #fff;--bslib-color-bg: #8c6d25;background:linear-gradient(var(--bg-gradient-deg, 140deg), #3fb618 var(--bg-gradient-start, 36%), #ff0039 var(--bg-gradient-end, 180%)) #8c6d25;color:#fff}.bg-gradient-green-orange{--bslib-color-fg: #000;--bslib-color-bg: #86b22e;background:linear-gradient(var(--bg-gradient-deg, 140deg), #3fb618 var(--bg-gradient-start, 36%), #f0ad4e var(--bg-gradient-end, 180%)) #86b22e;color:#000}.bg-gradient-green-yellow{--bslib-color-fg: #fff;--bslib-color-bg: #8c9c18;background:linear-gradient(var(--bg-gradient-deg, 140deg), #3fb618 var(--bg-gradient-start, 36%), #ff7518 var(--bg-gradient-end, 180%)) #8c9c18;color:#fff}.bg-gradient-green-teal{--bslib-color-fg: #000;--bslib-color-bg: #33be4b;background:linear-gradient(var(--bg-gradient-deg, 140deg), #3fb618 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #33be4b;color:#000}.bg-gradient-green-cyan{--bslib-color-fg: #fff;--bslib-color-bg: #638f59;background:linear-gradient(var(--bg-gradient-deg, 140deg), #3fb618 var(--bg-gradient-start, 36%), #9954bb var(--bg-gradient-end, 180%)) #638f59;color:#fff}.bg-gradient-teal-blue{--bslib-color-fg: #fff;--bslib-color-bg: #23acb5;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #2780e3 var(--bg-gradient-end, 180%)) #23acb5;color:#fff}.bg-gradient-teal-indigo{--bslib-color-fg: #fff;--bslib-color-bg: #3c7fbb;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #3c7fbb;color:#fff}.bg-gradient-teal-purple{--bslib-color-fg: #fff;--bslib-color-bg: #3a918c;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #613d7c var(--bg-gradient-end, 180%)) #3a918c;color:#fff}.bg-gradient-teal-pink{--bslib-color-fg: #fff;--bslib-color-bg: #709193;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #e83e8c var(--bg-gradient-end, 180%)) #709193;color:#fff}.bg-gradient-teal-red{--bslib-color-fg: #fff;--bslib-color-bg: #797971;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #ff0039 var(--bg-gradient-end, 180%)) #797971;color:#fff}.bg-gradient-teal-orange{--bslib-color-fg: #000;--bslib-color-bg: #73be7a;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #f0ad4e var(--bg-gradient-end, 180%)) #73be7a;color:#000}.bg-gradient-teal-yellow{--bslib-color-fg: #fff;--bslib-color-bg: #79a764;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #ff7518 var(--bg-gradient-end, 180%)) #79a764;color:#fff}.bg-gradient-teal-green{--bslib-color-fg: #000;--bslib-color-bg: #2cc164;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #3fb618 var(--bg-gradient-end, 180%)) #2cc164;color:#000}.bg-gradient-teal-cyan{--bslib-color-fg: #fff;--bslib-color-bg: #509aa5;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #9954bb var(--bg-gradient-end, 180%)) #509aa5;color:#fff}.bg-gradient-cyan-blue{--bslib-color-fg: #fff;--bslib-color-bg: #6b66cb;background:linear-gradient(var(--bg-gradient-deg, 140deg), #9954bb var(--bg-gradient-start, 36%), #2780e3 var(--bg-gradient-end, 180%)) #6b66cb;color:#fff}.bg-gradient-cyan-indigo{--bslib-color-fg: #fff;--bslib-color-bg: #8539d1;background:linear-gradient(var(--bg-gradient-deg, 140deg), #9954bb var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #8539d1;color:#fff}.bg-gradient-cyan-purple{--bslib-color-fg: #fff;--bslib-color-bg: #834ba2;background:linear-gradient(var(--bg-gradient-deg, 140deg), #9954bb var(--bg-gradient-start, 36%), #613d7c var(--bg-gradient-end, 180%)) #834ba2;color:#fff}.bg-gradient-cyan-pink{--bslib-color-fg: #fff;--bslib-color-bg: #b94ba8;background:linear-gradient(var(--bg-gradient-deg, 140deg), #9954bb var(--bg-gradient-start, 36%), #e83e8c var(--bg-gradient-end, 180%)) #b94ba8;color:#fff}.bg-gradient-cyan-red{--bslib-color-fg: #fff;--bslib-color-bg: #c23287;background:linear-gradient(var(--bg-gradient-deg, 140deg), #9954bb var(--bg-gradient-start, 36%), #ff0039 var(--bg-gradient-end, 180%)) #c23287;color:#fff}.bg-gradient-cyan-orange{--bslib-color-fg: #fff;--bslib-color-bg: #bc788f;background:linear-gradient(var(--bg-gradient-deg, 140deg), #9954bb var(--bg-gradient-start, 36%), #f0ad4e var(--bg-gradient-end, 180%)) #bc788f;color:#fff}.bg-gradient-cyan-yellow{--bslib-color-fg: #fff;--bslib-color-bg: #c2617a;background:linear-gradient(var(--bg-gradient-deg, 140deg), #9954bb var(--bg-gradient-start, 36%), #ff7518 var(--bg-gradient-end, 180%)) #c2617a;color:#fff}.bg-gradient-cyan-green{--bslib-color-fg: #fff;--bslib-color-bg: #757b7a;background:linear-gradient(var(--bg-gradient-deg, 140deg), #9954bb var(--bg-gradient-start, 36%), #3fb618 var(--bg-gradient-end, 180%)) #757b7a;color:#fff}.bg-gradient-cyan-teal{--bslib-color-fg: #fff;--bslib-color-bg: #6983ad;background:linear-gradient(var(--bg-gradient-deg, 140deg), #9954bb var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #6983ad;color:#fff}.tab-content>.tab-pane.html-fill-container{display:none}.tab-content>.active.html-fill-container{display:flex}.tab-content.html-fill-container{padding:0}:root{--bslib-spacer: 1rem;--bslib-mb-spacer: var(--bslib-spacer, 1rem)}.bslib-mb-spacing{margin-bottom:var(--bslib-mb-spacer)}.bslib-gap-spacing{gap:var(--bslib-mb-spacer)}.bslib-gap-spacing>.bslib-mb-spacing,.bslib-gap-spacing>.form-group,.bslib-gap-spacing>p,.bslib-gap-spacing>pre{margin-bottom:0}.html-fill-container>.html-fill-item.bslib-mb-spacing{margin-bottom:0}.bg-blue{--bslib-color-bg: #2780e3;--bslib-color-fg: #fff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-blue{--bslib-color-fg: #2780e3;color:var(--bslib-color-fg)}.bg-indigo{--bslib-color-bg: #6610f2;--bslib-color-fg: #fff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-indigo{--bslib-color-fg: #6610f2;color:var(--bslib-color-fg)}.bg-purple{--bslib-color-bg: #613d7c;--bslib-color-fg: #fff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-purple{--bslib-color-fg: #613d7c;color:var(--bslib-color-fg)}.bg-pink{--bslib-color-bg: #e83e8c;--bslib-color-fg: #fff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-pink{--bslib-color-fg: #e83e8c;color:var(--bslib-color-fg)}.bg-red{--bslib-color-bg: #ff0039;--bslib-color-fg: #fff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-red{--bslib-color-fg: #ff0039;color:var(--bslib-color-fg)}.bg-orange{--bslib-color-bg: #f0ad4e;--bslib-color-fg: #000;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-orange{--bslib-color-fg: #f0ad4e;color:var(--bslib-color-fg)}.bg-yellow{--bslib-color-bg: #ff7518;--bslib-color-fg: #fff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-yellow{--bslib-color-fg: #ff7518;color:var(--bslib-color-fg)}.bg-green{--bslib-color-bg: #3fb618;--bslib-color-fg: #fff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-green{--bslib-color-fg: #3fb618;color:var(--bslib-color-fg)}.bg-teal{--bslib-color-bg: #20c997;--bslib-color-fg: #000;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-teal{--bslib-color-fg: #20c997;color:var(--bslib-color-fg)}.bg-cyan{--bslib-color-bg: #9954bb;--bslib-color-fg: #fff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-cyan{--bslib-color-fg: #9954bb;color:var(--bslib-color-fg)}.text-default{--bslib-color-fg: #343a40}.bg-default{--bslib-color-bg: #343a40;--bslib-color-fg: #fff}.text-primary{--bslib-color-fg: #6D6E71}.bg-primary{--bslib-color-bg: #6D6E71;--bslib-color-fg: #fff}.text-secondary{--bslib-color-fg: #343a40}.bg-secondary{--bslib-color-bg: #343a40;--bslib-color-fg: #fff}.text-success{--bslib-color-fg: #3fb618}.bg-success{--bslib-color-bg: #3fb618;--bslib-color-fg: #fff}.text-info{--bslib-color-fg: #9954bb}.bg-info{--bslib-color-bg: #9954bb;--bslib-color-fg: #fff}.text-warning{--bslib-color-fg: #ff7518}.bg-warning{--bslib-color-bg: #ff7518;--bslib-color-fg: #fff}.text-danger{--bslib-color-fg: #ff0039}.bg-danger{--bslib-color-bg: #ff0039;--bslib-color-fg: #fff}.text-light{--bslib-color-fg: #f8f9fa}.bg-light{--bslib-color-bg: #f8f9fa;--bslib-color-fg: #000}.text-dark{--bslib-color-fg: #343a40}.bg-dark{--bslib-color-bg: #343a40;--bslib-color-fg: #fff}.bg-gradient-blue-indigo{--bslib-color-fg: #fff;--bslib-color-bg: #4053e9;background:linear-gradient(var(--bg-gradient-deg, 140deg), #2780e3 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #4053e9;color:#fff}.bg-gradient-blue-purple{--bslib-color-fg: #fff;--bslib-color-bg: #3e65ba;background:linear-gradient(var(--bg-gradient-deg, 140deg), #2780e3 var(--bg-gradient-start, 36%), #613d7c var(--bg-gradient-end, 180%)) #3e65ba;color:#fff}.bg-gradient-blue-pink{--bslib-color-fg: #fff;--bslib-color-bg: #7466c0;background:linear-gradient(var(--bg-gradient-deg, 140deg), #2780e3 var(--bg-gradient-start, 36%), #e83e8c var(--bg-gradient-end, 180%)) #7466c0;color:#fff}.bg-gradient-blue-red{--bslib-color-fg: #fff;--bslib-color-bg: #7d4d9f;background:linear-gradient(var(--bg-gradient-deg, 140deg), #2780e3 var(--bg-gradient-start, 36%), #ff0039 var(--bg-gradient-end, 180%)) #7d4d9f;color:#fff}.bg-gradient-blue-orange{--bslib-color-fg: #fff;--bslib-color-bg: #7792a7;background:linear-gradient(var(--bg-gradient-deg, 140deg), #2780e3 var(--bg-gradient-start, 36%), #f0ad4e var(--bg-gradient-end, 180%)) #7792a7;color:#fff}.bg-gradient-blue-yellow{--bslib-color-fg: #fff;--bslib-color-bg: #7d7c92;background:linear-gradient(var(--bg-gradient-deg, 140deg), #2780e3 var(--bg-gradient-start, 36%), #ff7518 var(--bg-gradient-end, 180%)) #7d7c92;color:#fff}.bg-gradient-blue-green{--bslib-color-fg: #fff;--bslib-color-bg: #319692;background:linear-gradient(var(--bg-gradient-deg, 140deg), #2780e3 var(--bg-gradient-start, 36%), #3fb618 var(--bg-gradient-end, 180%)) #319692;color:#fff}.bg-gradient-blue-teal{--bslib-color-fg: #fff;--bslib-color-bg: #249dc5;background:linear-gradient(var(--bg-gradient-deg, 140deg), #2780e3 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #249dc5;color:#fff}.bg-gradient-blue-cyan{--bslib-color-fg: #fff;--bslib-color-bg: #556ed3;background:linear-gradient(var(--bg-gradient-deg, 140deg), #2780e3 var(--bg-gradient-start, 36%), #9954bb var(--bg-gradient-end, 180%)) #556ed3;color:#fff}.bg-gradient-indigo-blue{--bslib-color-fg: #fff;--bslib-color-bg: #4d3dec;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #2780e3 var(--bg-gradient-end, 180%)) #4d3dec;color:#fff}.bg-gradient-indigo-purple{--bslib-color-fg: #fff;--bslib-color-bg: #6422c3;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #613d7c var(--bg-gradient-end, 180%)) #6422c3;color:#fff}.bg-gradient-indigo-pink{--bslib-color-fg: #fff;--bslib-color-bg: #9a22c9;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #e83e8c var(--bg-gradient-end, 180%)) #9a22c9;color:#fff}.bg-gradient-indigo-red{--bslib-color-fg: #fff;--bslib-color-bg: #a30aa8;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #ff0039 var(--bg-gradient-end, 180%)) #a30aa8;color:#fff}.bg-gradient-indigo-orange{--bslib-color-fg: #fff;--bslib-color-bg: #9d4fb0;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #f0ad4e var(--bg-gradient-end, 180%)) #9d4fb0;color:#fff}.bg-gradient-indigo-yellow{--bslib-color-fg: #fff;--bslib-color-bg: #a3389b;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #ff7518 var(--bg-gradient-end, 180%)) #a3389b;color:#fff}.bg-gradient-indigo-green{--bslib-color-fg: #fff;--bslib-color-bg: #56529b;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #3fb618 var(--bg-gradient-end, 180%)) #56529b;color:#fff}.bg-gradient-indigo-teal{--bslib-color-fg: #fff;--bslib-color-bg: #4a5ace;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #4a5ace;color:#fff}.bg-gradient-indigo-cyan{--bslib-color-fg: #fff;--bslib-color-bg: #7a2bdc;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #9954bb var(--bg-gradient-end, 180%)) #7a2bdc;color:#fff}.bg-gradient-purple-blue{--bslib-color-fg: #fff;--bslib-color-bg: #4a58a5;background:linear-gradient(var(--bg-gradient-deg, 140deg), #613d7c var(--bg-gradient-start, 36%), #2780e3 var(--bg-gradient-end, 180%)) #4a58a5;color:#fff}.bg-gradient-purple-indigo{--bslib-color-fg: #fff;--bslib-color-bg: #632bab;background:linear-gradient(var(--bg-gradient-deg, 140deg), #613d7c var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #632bab;color:#fff}.bg-gradient-purple-pink{--bslib-color-fg: #fff;--bslib-color-bg: #973d82;background:linear-gradient(var(--bg-gradient-deg, 140deg), #613d7c var(--bg-gradient-start, 36%), #e83e8c var(--bg-gradient-end, 180%)) #973d82;color:#fff}.bg-gradient-purple-red{--bslib-color-fg: #fff;--bslib-color-bg: #a02561;background:linear-gradient(var(--bg-gradient-deg, 140deg), #613d7c var(--bg-gradient-start, 36%), #ff0039 var(--bg-gradient-end, 180%)) #a02561;color:#fff}.bg-gradient-purple-orange{--bslib-color-fg: #fff;--bslib-color-bg: #9a6a6a;background:linear-gradient(var(--bg-gradient-deg, 140deg), #613d7c var(--bg-gradient-start, 36%), #f0ad4e var(--bg-gradient-end, 180%)) #9a6a6a;color:#fff}.bg-gradient-purple-yellow{--bslib-color-fg: #fff;--bslib-color-bg: #a05354;background:linear-gradient(var(--bg-gradient-deg, 140deg), #613d7c var(--bg-gradient-start, 36%), #ff7518 var(--bg-gradient-end, 180%)) #a05354;color:#fff}.bg-gradient-purple-green{--bslib-color-fg: #fff;--bslib-color-bg: #536d54;background:linear-gradient(var(--bg-gradient-deg, 140deg), #613d7c var(--bg-gradient-start, 36%), #3fb618 var(--bg-gradient-end, 180%)) #536d54;color:#fff}.bg-gradient-purple-teal{--bslib-color-fg: #fff;--bslib-color-bg: #477587;background:linear-gradient(var(--bg-gradient-deg, 140deg), #613d7c var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #477587;color:#fff}.bg-gradient-purple-cyan{--bslib-color-fg: #fff;--bslib-color-bg: #774695;background:linear-gradient(var(--bg-gradient-deg, 140deg), #613d7c var(--bg-gradient-start, 36%), #9954bb var(--bg-gradient-end, 180%)) #774695;color:#fff}.bg-gradient-pink-blue{--bslib-color-fg: #fff;--bslib-color-bg: #9b58af;background:linear-gradient(var(--bg-gradient-deg, 140deg), #e83e8c var(--bg-gradient-start, 36%), #2780e3 var(--bg-gradient-end, 180%)) #9b58af;color:#fff}.bg-gradient-pink-indigo{--bslib-color-fg: #fff;--bslib-color-bg: #b42cb5;background:linear-gradient(var(--bg-gradient-deg, 140deg), #e83e8c var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #b42cb5;color:#fff}.bg-gradient-pink-purple{--bslib-color-fg: #fff;--bslib-color-bg: #b23e86;background:linear-gradient(var(--bg-gradient-deg, 140deg), #e83e8c var(--bg-gradient-start, 36%), #613d7c var(--bg-gradient-end, 180%)) #b23e86;color:#fff}.bg-gradient-pink-red{--bslib-color-fg: #fff;--bslib-color-bg: #f1256b;background:linear-gradient(var(--bg-gradient-deg, 140deg), #e83e8c var(--bg-gradient-start, 36%), #ff0039 var(--bg-gradient-end, 180%)) #f1256b;color:#fff}.bg-gradient-pink-orange{--bslib-color-fg: #fff;--bslib-color-bg: #eb6a73;background:linear-gradient(var(--bg-gradient-deg, 140deg), #e83e8c var(--bg-gradient-start, 36%), #f0ad4e var(--bg-gradient-end, 180%)) #eb6a73;color:#fff}.bg-gradient-pink-yellow{--bslib-color-fg: #fff;--bslib-color-bg: #f1545e;background:linear-gradient(var(--bg-gradient-deg, 140deg), #e83e8c var(--bg-gradient-start, 36%), #ff7518 var(--bg-gradient-end, 180%)) #f1545e;color:#fff}.bg-gradient-pink-green{--bslib-color-fg: #fff;--bslib-color-bg: #a46e5e;background:linear-gradient(var(--bg-gradient-deg, 140deg), #e83e8c var(--bg-gradient-start, 36%), #3fb618 var(--bg-gradient-end, 180%)) #a46e5e;color:#fff}.bg-gradient-pink-teal{--bslib-color-fg: #fff;--bslib-color-bg: #987690;background:linear-gradient(var(--bg-gradient-deg, 140deg), #e83e8c var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #987690;color:#fff}.bg-gradient-pink-cyan{--bslib-color-fg: #fff;--bslib-color-bg: #c8479f;background:linear-gradient(var(--bg-gradient-deg, 140deg), #e83e8c var(--bg-gradient-start, 36%), #9954bb var(--bg-gradient-end, 180%)) #c8479f;color:#fff}.bg-gradient-red-blue{--bslib-color-fg: #fff;--bslib-color-bg: #a9337d;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ff0039 var(--bg-gradient-start, 36%), #2780e3 var(--bg-gradient-end, 180%)) #a9337d;color:#fff}.bg-gradient-red-indigo{--bslib-color-fg: #fff;--bslib-color-bg: #c20683;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ff0039 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #c20683;color:#fff}.bg-gradient-red-purple{--bslib-color-fg: #fff;--bslib-color-bg: #c01854;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ff0039 var(--bg-gradient-start, 36%), #613d7c var(--bg-gradient-end, 180%)) #c01854;color:#fff}.bg-gradient-red-pink{--bslib-color-fg: #fff;--bslib-color-bg: #f6195a;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ff0039 var(--bg-gradient-start, 36%), #e83e8c var(--bg-gradient-end, 180%)) #f6195a;color:#fff}.bg-gradient-red-orange{--bslib-color-fg: #fff;--bslib-color-bg: #f94541;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ff0039 var(--bg-gradient-start, 36%), #f0ad4e var(--bg-gradient-end, 180%)) #f94541;color:#fff}.bg-gradient-red-yellow{--bslib-color-fg: #fff;--bslib-color-bg: #ff2f2c;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ff0039 var(--bg-gradient-start, 36%), #ff7518 var(--bg-gradient-end, 180%)) #ff2f2c;color:#fff}.bg-gradient-red-green{--bslib-color-fg: #fff;--bslib-color-bg: #b2492c;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ff0039 var(--bg-gradient-start, 36%), #3fb618 var(--bg-gradient-end, 180%)) #b2492c;color:#fff}.bg-gradient-red-teal{--bslib-color-fg: #fff;--bslib-color-bg: #a6505f;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ff0039 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #a6505f;color:#fff}.bg-gradient-red-cyan{--bslib-color-fg: #fff;--bslib-color-bg: #d6226d;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ff0039 var(--bg-gradient-start, 36%), #9954bb var(--bg-gradient-end, 180%)) #d6226d;color:#fff}.bg-gradient-orange-blue{--bslib-color-fg: #fff;--bslib-color-bg: #a09b8a;background:linear-gradient(var(--bg-gradient-deg, 140deg), #f0ad4e var(--bg-gradient-start, 36%), #2780e3 var(--bg-gradient-end, 180%)) #a09b8a;color:#fff}.bg-gradient-orange-indigo{--bslib-color-fg: #fff;--bslib-color-bg: #b96e90;background:linear-gradient(var(--bg-gradient-deg, 140deg), #f0ad4e var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #b96e90;color:#fff}.bg-gradient-orange-purple{--bslib-color-fg: #fff;--bslib-color-bg: #b78060;background:linear-gradient(var(--bg-gradient-deg, 140deg), #f0ad4e var(--bg-gradient-start, 36%), #613d7c var(--bg-gradient-end, 180%)) #b78060;color:#fff}.bg-gradient-orange-pink{--bslib-color-fg: #fff;--bslib-color-bg: #ed8167;background:linear-gradient(var(--bg-gradient-deg, 140deg), #f0ad4e var(--bg-gradient-start, 36%), #e83e8c var(--bg-gradient-end, 180%)) #ed8167;color:#fff}.bg-gradient-orange-red{--bslib-color-fg: #fff;--bslib-color-bg: #f66846;background:linear-gradient(var(--bg-gradient-deg, 140deg), #f0ad4e var(--bg-gradient-start, 36%), #ff0039 var(--bg-gradient-end, 180%)) #f66846;color:#fff}.bg-gradient-orange-yellow{--bslib-color-fg: #000;--bslib-color-bg: #f69738;background:linear-gradient(var(--bg-gradient-deg, 140deg), #f0ad4e var(--bg-gradient-start, 36%), #ff7518 var(--bg-gradient-end, 180%)) #f69738;color:#000}.bg-gradient-orange-green{--bslib-color-fg: #000;--bslib-color-bg: #a9b138;background:linear-gradient(var(--bg-gradient-deg, 140deg), #f0ad4e var(--bg-gradient-start, 36%), #3fb618 var(--bg-gradient-end, 180%)) #a9b138;color:#000}.bg-gradient-orange-teal{--bslib-color-fg: #000;--bslib-color-bg: #9db86b;background:linear-gradient(var(--bg-gradient-deg, 140deg), #f0ad4e var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #9db86b;color:#000}.bg-gradient-orange-cyan{--bslib-color-fg: #fff;--bslib-color-bg: #cd897a;background:linear-gradient(var(--bg-gradient-deg, 140deg), #f0ad4e var(--bg-gradient-start, 36%), #9954bb var(--bg-gradient-end, 180%)) #cd897a;color:#fff}.bg-gradient-yellow-blue{--bslib-color-fg: #fff;--bslib-color-bg: #a97969;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ff7518 var(--bg-gradient-start, 36%), #2780e3 var(--bg-gradient-end, 180%)) #a97969;color:#fff}.bg-gradient-yellow-indigo{--bslib-color-fg: #fff;--bslib-color-bg: #c24d6f;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ff7518 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #c24d6f;color:#fff}.bg-gradient-yellow-purple{--bslib-color-fg: #fff;--bslib-color-bg: #c05f40;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ff7518 var(--bg-gradient-start, 36%), #613d7c var(--bg-gradient-end, 180%)) #c05f40;color:#fff}.bg-gradient-yellow-pink{--bslib-color-fg: #fff;--bslib-color-bg: #f65f46;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ff7518 var(--bg-gradient-start, 36%), #e83e8c var(--bg-gradient-end, 180%)) #f65f46;color:#fff}.bg-gradient-yellow-red{--bslib-color-fg: #fff;--bslib-color-bg: #ff4625;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ff7518 var(--bg-gradient-start, 36%), #ff0039 var(--bg-gradient-end, 180%)) #ff4625;color:#fff}.bg-gradient-yellow-orange{--bslib-color-fg: #000;--bslib-color-bg: #f98b2e;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ff7518 var(--bg-gradient-start, 36%), #f0ad4e var(--bg-gradient-end, 180%)) #f98b2e;color:#000}.bg-gradient-yellow-green{--bslib-color-fg: #fff;--bslib-color-bg: #b28f18;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ff7518 var(--bg-gradient-start, 36%), #3fb618 var(--bg-gradient-end, 180%)) #b28f18;color:#fff}.bg-gradient-yellow-teal{--bslib-color-fg: #fff;--bslib-color-bg: #a6974b;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ff7518 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #a6974b;color:#fff}.bg-gradient-yellow-cyan{--bslib-color-fg: #fff;--bslib-color-bg: #d66859;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ff7518 var(--bg-gradient-start, 36%), #9954bb var(--bg-gradient-end, 180%)) #d66859;color:#fff}.bg-gradient-green-blue{--bslib-color-fg: #fff;--bslib-color-bg: #35a069;background:linear-gradient(var(--bg-gradient-deg, 140deg), #3fb618 var(--bg-gradient-start, 36%), #2780e3 var(--bg-gradient-end, 180%)) #35a069;color:#fff}.bg-gradient-green-indigo{--bslib-color-fg: #fff;--bslib-color-bg: #4f746f;background:linear-gradient(var(--bg-gradient-deg, 140deg), #3fb618 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #4f746f;color:#fff}.bg-gradient-green-purple{--bslib-color-fg: #fff;--bslib-color-bg: #4d8640;background:linear-gradient(var(--bg-gradient-deg, 140deg), #3fb618 var(--bg-gradient-start, 36%), #613d7c var(--bg-gradient-end, 180%)) #4d8640;color:#fff}.bg-gradient-green-pink{--bslib-color-fg: #fff;--bslib-color-bg: #838646;background:linear-gradient(var(--bg-gradient-deg, 140deg), #3fb618 var(--bg-gradient-start, 36%), #e83e8c var(--bg-gradient-end, 180%)) #838646;color:#fff}.bg-gradient-green-red{--bslib-color-fg: #fff;--bslib-color-bg: #8c6d25;background:linear-gradient(var(--bg-gradient-deg, 140deg), #3fb618 var(--bg-gradient-start, 36%), #ff0039 var(--bg-gradient-end, 180%)) #8c6d25;color:#fff}.bg-gradient-green-orange{--bslib-color-fg: #000;--bslib-color-bg: #86b22e;background:linear-gradient(var(--bg-gradient-deg, 140deg), #3fb618 var(--bg-gradient-start, 36%), #f0ad4e var(--bg-gradient-end, 180%)) #86b22e;color:#000}.bg-gradient-green-yellow{--bslib-color-fg: #fff;--bslib-color-bg: #8c9c18;background:linear-gradient(var(--bg-gradient-deg, 140deg), #3fb618 var(--bg-gradient-start, 36%), #ff7518 var(--bg-gradient-end, 180%)) #8c9c18;color:#fff}.bg-gradient-green-teal{--bslib-color-fg: #000;--bslib-color-bg: #33be4b;background:linear-gradient(var(--bg-gradient-deg, 140deg), #3fb618 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #33be4b;color:#000}.bg-gradient-green-cyan{--bslib-color-fg: #fff;--bslib-color-bg: #638f59;background:linear-gradient(var(--bg-gradient-deg, 140deg), #3fb618 var(--bg-gradient-start, 36%), #9954bb var(--bg-gradient-end, 180%)) #638f59;color:#fff}.bg-gradient-teal-blue{--bslib-color-fg: #fff;--bslib-color-bg: #23acb5;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #2780e3 var(--bg-gradient-end, 180%)) #23acb5;color:#fff}.bg-gradient-teal-indigo{--bslib-color-fg: #fff;--bslib-color-bg: #3c7fbb;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #3c7fbb;color:#fff}.bg-gradient-teal-purple{--bslib-color-fg: #fff;--bslib-color-bg: #3a918c;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #613d7c var(--bg-gradient-end, 180%)) #3a918c;color:#fff}.bg-gradient-teal-pink{--bslib-color-fg: #fff;--bslib-color-bg: #709193;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #e83e8c var(--bg-gradient-end, 180%)) #709193;color:#fff}.bg-gradient-teal-red{--bslib-color-fg: #fff;--bslib-color-bg: #797971;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #ff0039 var(--bg-gradient-end, 180%)) #797971;color:#fff}.bg-gradient-teal-orange{--bslib-color-fg: #000;--bslib-color-bg: #73be7a;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #f0ad4e var(--bg-gradient-end, 180%)) #73be7a;color:#000}.bg-gradient-teal-yellow{--bslib-color-fg: #fff;--bslib-color-bg: #79a764;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #ff7518 var(--bg-gradient-end, 180%)) #79a764;color:#fff}.bg-gradient-teal-green{--bslib-color-fg: #000;--bslib-color-bg: #2cc164;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #3fb618 var(--bg-gradient-end, 180%)) #2cc164;color:#000}.bg-gradient-teal-cyan{--bslib-color-fg: #fff;--bslib-color-bg: #509aa5;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #9954bb var(--bg-gradient-end, 180%)) #509aa5;color:#fff}.bg-gradient-cyan-blue{--bslib-color-fg: #fff;--bslib-color-bg: #6b66cb;background:linear-gradient(var(--bg-gradient-deg, 140deg), #9954bb var(--bg-gradient-start, 36%), #2780e3 var(--bg-gradient-end, 180%)) #6b66cb;color:#fff}.bg-gradient-cyan-indigo{--bslib-color-fg: #fff;--bslib-color-bg: #8539d1;background:linear-gradient(var(--bg-gradient-deg, 140deg), #9954bb var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #8539d1;color:#fff}.bg-gradient-cyan-purple{--bslib-color-fg: #fff;--bslib-color-bg: #834ba2;background:linear-gradient(var(--bg-gradient-deg, 140deg), #9954bb var(--bg-gradient-start, 36%), #613d7c var(--bg-gradient-end, 180%)) #834ba2;color:#fff}.bg-gradient-cyan-pink{--bslib-color-fg: #fff;--bslib-color-bg: #b94ba8;background:linear-gradient(var(--bg-gradient-deg, 140deg), #9954bb var(--bg-gradient-start, 36%), #e83e8c var(--bg-gradient-end, 180%)) #b94ba8;color:#fff}.bg-gradient-cyan-red{--bslib-color-fg: #fff;--bslib-color-bg: #c23287;background:linear-gradient(var(--bg-gradient-deg, 140deg), #9954bb var(--bg-gradient-start, 36%), #ff0039 var(--bg-gradient-end, 180%)) #c23287;color:#fff}.bg-gradient-cyan-orange{--bslib-color-fg: #fff;--bslib-color-bg: #bc788f;background:linear-gradient(var(--bg-gradient-deg, 140deg), #9954bb var(--bg-gradient-start, 36%), #f0ad4e var(--bg-gradient-end, 180%)) #bc788f;color:#fff}.bg-gradient-cyan-yellow{--bslib-color-fg: #fff;--bslib-color-bg: #c2617a;background:linear-gradient(var(--bg-gradient-deg, 140deg), #9954bb var(--bg-gradient-start, 36%), #ff7518 var(--bg-gradient-end, 180%)) #c2617a;color:#fff}.bg-gradient-cyan-green{--bslib-color-fg: #fff;--bslib-color-bg: #757b7a;background:linear-gradient(var(--bg-gradient-deg, 140deg), #9954bb var(--bg-gradient-start, 36%), #3fb618 var(--bg-gradient-end, 180%)) #757b7a;color:#fff}.bg-gradient-cyan-teal{--bslib-color-fg: #fff;--bslib-color-bg: #6983ad;background:linear-gradient(var(--bg-gradient-deg, 140deg), #9954bb var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #6983ad;color:#fff}:root{--bslib-value-box-shadow: none;--bslib-value-box-border-width-auto-yes: var(--bslib-value-box-border-width-baseline);--bslib-value-box-border-width-auto-no: 0;--bslib-value-box-border-width-baseline: 1px}.bslib-value-box{border-width:var(--bslib-value-box-border-width-auto-no, var(--bslib-value-box-border-width-baseline));container-name:bslib-value-box;container-type:inline-size}.bslib-value-box.card{box-shadow:var(--bslib-value-box-shadow)}.bslib-value-box.border-auto{border-width:var(--bslib-value-box-border-width-auto-yes, var(--bslib-value-box-border-width-baseline))}.bslib-value-box.default{--bslib-value-box-bg-default: var(--bs-card-bg, #fff);--bslib-value-box-border-color-default: var(--bs-card-border-color, rgba(0, 0, 0, 0.175));color:var(--bslib-value-box-color);background-color:var(--bslib-value-box-bg, var(--bslib-value-box-bg-default));border-color:var(--bslib-value-box-border-color, var(--bslib-value-box-border-color-default))}.bslib-value-box .value-box-grid{display:grid;grid-template-areas:"left right";align-items:center;overflow:hidden}.bslib-value-box .value-box-showcase{height:100%;max-height:var(---bslib-value-box-showcase-max-h, 100%)}.bslib-value-box .value-box-showcase,.bslib-value-box .value-box-showcase>.html-fill-item{width:100%}.bslib-value-box[data-full-screen=true] .value-box-showcase{max-height:var(---bslib-value-box-showcase-max-h-fs, 100%)}@media screen and (min-width: 575.98px){@container bslib-value-box (max-width: 300px){.bslib-value-box:not(.showcase-bottom) .value-box-grid{grid-template-columns:1fr !important;grid-template-rows:auto auto;grid-template-areas:"top" "bottom"}.bslib-value-box:not(.showcase-bottom) .value-box-grid .value-box-showcase{grid-area:top !important}.bslib-value-box:not(.showcase-bottom) .value-box-grid .value-box-area{grid-area:bottom !important;justify-content:end}}}.bslib-value-box .value-box-area{justify-content:center;padding:1.5rem 1rem;font-size:.9rem;font-weight:500}.bslib-value-box .value-box-area *{margin-bottom:0;margin-top:0}.bslib-value-box .value-box-title{font-size:1rem;margin-top:0;margin-bottom:.5rem;font-weight:400;line-height:1.2}.bslib-value-box .value-box-title:empty::after{content:" "}.bslib-value-box .value-box-value{font-size:calc(1.29rem + 0.48vw);margin-top:0;margin-bottom:.5rem;font-weight:400;line-height:1.2}@media(min-width: 1200px){.bslib-value-box .value-box-value{font-size:1.65rem}}.bslib-value-box .value-box-value:empty::after{content:" "}.bslib-value-box .value-box-showcase{align-items:center;justify-content:center;margin-top:auto;margin-bottom:auto;padding:1rem}.bslib-value-box .value-box-showcase .bi,.bslib-value-box .value-box-showcase .fa,.bslib-value-box .value-box-showcase .fab,.bslib-value-box .value-box-showcase .fas,.bslib-value-box .value-box-showcase .far{opacity:.85;min-width:50px;max-width:125%}.bslib-value-box .value-box-showcase .bi,.bslib-value-box .value-box-showcase .fa,.bslib-value-box .value-box-showcase .fab,.bslib-value-box .value-box-showcase .fas,.bslib-value-box .value-box-showcase .far{font-size:4rem}.bslib-value-box.showcase-top-right .value-box-grid{grid-template-columns:1fr var(---bslib-value-box-showcase-w, 50%)}.bslib-value-box.showcase-top-right .value-box-grid .value-box-showcase{grid-area:right;margin-left:auto;align-self:start;align-items:end;padding-left:0;padding-bottom:0}.bslib-value-box.showcase-top-right .value-box-grid .value-box-area{grid-area:left;align-self:end}.bslib-value-box.showcase-top-right[data-full-screen=true] .value-box-grid{grid-template-columns:auto var(---bslib-value-box-showcase-w-fs, 1fr)}.bslib-value-box.showcase-top-right[data-full-screen=true] .value-box-grid>div{align-self:center}.bslib-value-box.showcase-top-right:not([data-full-screen=true]) .value-box-showcase{margin-top:0}@container bslib-value-box (max-width: 300px){.bslib-value-box.showcase-top-right:not([data-full-screen=true]) .value-box-grid .value-box-showcase{padding-left:1rem}}.bslib-value-box.showcase-left-center .value-box-grid{grid-template-columns:var(---bslib-value-box-showcase-w, 30%) auto}.bslib-value-box.showcase-left-center[data-full-screen=true] .value-box-grid{grid-template-columns:var(---bslib-value-box-showcase-w-fs, 1fr) auto}.bslib-value-box.showcase-left-center:not([data-fill-screen=true]) .value-box-grid .value-box-showcase{grid-area:left}.bslib-value-box.showcase-left-center:not([data-fill-screen=true]) .value-box-grid .value-box-area{grid-area:right}.bslib-value-box.showcase-bottom .value-box-grid{grid-template-columns:1fr;grid-template-rows:1fr var(---bslib-value-box-showcase-h, auto);grid-template-areas:"top" "bottom";overflow:hidden}.bslib-value-box.showcase-bottom .value-box-grid .value-box-showcase{grid-area:bottom;padding:0;margin:0}.bslib-value-box.showcase-bottom .value-box-grid .value-box-area{grid-area:top}.bslib-value-box.showcase-bottom[data-full-screen=true] .value-box-grid{grid-template-rows:1fr var(---bslib-value-box-showcase-h-fs, 2fr)}.bslib-value-box.showcase-bottom[data-full-screen=true] .value-box-grid .value-box-showcase{padding:1rem}[data-bs-theme=dark] .bslib-value-box{--bslib-value-box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 50%)}@media(min-width: 576px){.nav:not(.nav-hidden){display:flex !important;display:-webkit-flex !important}.nav:not(.nav-hidden):not(.nav-stacked):not(.flex-column){float:none !important}.nav:not(.nav-hidden):not(.nav-stacked):not(.flex-column)>.bslib-nav-spacer{margin-left:auto !important}.nav:not(.nav-hidden):not(.nav-stacked):not(.flex-column)>.form-inline{margin-top:auto;margin-bottom:auto}.nav:not(.nav-hidden).nav-stacked{flex-direction:column;-webkit-flex-direction:column;height:100%}.nav:not(.nav-hidden).nav-stacked>.bslib-nav-spacer{margin-top:auto !important}}:root{--bslib-page-sidebar-title-bg: #6D6E71;--bslib-page-sidebar-title-color: #fff}.bslib-page-title{background-color:var(--bslib-page-sidebar-title-bg);color:var(--bslib-page-sidebar-title-color);font-size:1.25rem;font-weight:300;padding:var(--bslib-spacer, 1rem);padding-left:1.5rem;margin-bottom:0;border-bottom:1px solid #dee2e6}html{height:100%}.bslib-page-fill{width:100%;height:100%;margin:0;padding:var(--bslib-spacer, 1rem);gap:var(--bslib-spacer, 1rem)}@media(max-width: 575.98px){.bslib-page-fill{height:var(--bslib-page-fill-mobile-height, auto)}}.bslib-grid{display:grid !important;gap:var(--bslib-spacer, 1rem);height:var(--bslib-grid-height)}.bslib-grid.grid{grid-template-columns:repeat(var(--bs-columns, 12), minmax(0, 1fr));grid-template-rows:unset;grid-auto-rows:var(--bslib-grid--row-heights);--bslib-grid--row-heights--xs: unset;--bslib-grid--row-heights--sm: unset;--bslib-grid--row-heights--md: unset;--bslib-grid--row-heights--lg: unset;--bslib-grid--row-heights--xl: unset;--bslib-grid--row-heights--xxl: unset}.bslib-grid.grid.bslib-grid--row-heights--xs{--bslib-grid--row-heights: var(--bslib-grid--row-heights--xs)}@media(min-width: 576px){.bslib-grid.grid.bslib-grid--row-heights--sm{--bslib-grid--row-heights: var(--bslib-grid--row-heights--sm)}}@media(min-width: 768px){.bslib-grid.grid.bslib-grid--row-heights--md{--bslib-grid--row-heights: var(--bslib-grid--row-heights--md)}}@media(min-width: 992px){.bslib-grid.grid.bslib-grid--row-heights--lg{--bslib-grid--row-heights: var(--bslib-grid--row-heights--lg)}}@media(min-width: 1200px){.bslib-grid.grid.bslib-grid--row-heights--xl{--bslib-grid--row-heights: var(--bslib-grid--row-heights--xl)}}@media(min-width: 1400px){.bslib-grid.grid.bslib-grid--row-heights--xxl{--bslib-grid--row-heights: var(--bslib-grid--row-heights--xxl)}}.bslib-grid>*>.shiny-input-container{width:100%}.bslib-grid-item{grid-column:auto/span 1}@media(max-width: 767.98px){.bslib-grid-item{grid-column:1/-1}}@media(max-width: 575.98px){.bslib-grid{grid-template-columns:1fr !important;height:var(--bslib-grid-height-mobile)}.bslib-grid.grid{height:unset !important;grid-auto-rows:var(--bslib-grid--row-heights--xs, auto)}}.bslib-sidebar-layout{--bslib-sidebar-transition-duration: 500ms;--bslib-sidebar-transition-easing-x: cubic-bezier(0.8, 0.78, 0.22, 1.07);--bslib-sidebar-border: var(--bs-card-border-width, 1px) solid var(--bs-card-border-color, rgba(0, 0, 0, 0.175));--bslib-sidebar-border-radius: var(--bs-border-radius);--bslib-sidebar-vert-border: var(--bs-card-border-width, 1px) solid var(--bs-card-border-color, rgba(0, 0, 0, 0.175));--bslib-sidebar-bg: rgba(var(--bs-emphasis-color-rgb, 0, 0, 0), 0.05);--bslib-sidebar-fg: var(--bs-emphasis-color, black);--bslib-sidebar-main-fg: var(--bs-card-color, var(--bs-body-color));--bslib-sidebar-main-bg: var(--bs-card-bg, var(--bs-body-bg));--bslib-sidebar-toggle-bg: rgba(var(--bs-emphasis-color-rgb, 0, 0, 0), 0.1);--bslib-sidebar-padding: calc(var(--bslib-spacer) * 1.5);--bslib-sidebar-icon-size: var(--bslib-spacer, 1rem);--bslib-sidebar-icon-button-size: calc(var(--bslib-sidebar-icon-size, 1rem) * 2);--bslib-sidebar-padding-icon: calc(var(--bslib-sidebar-icon-button-size, 2rem) * 1.5);--bslib-collapse-toggle-border-radius: var(--bs-border-radius, 0.25rem);--bslib-collapse-toggle-transform: 0deg;--bslib-sidebar-toggle-transition-easing: cubic-bezier(1, 0, 0, 1);--bslib-collapse-toggle-right-transform: 180deg;--bslib-sidebar-column-main: minmax(0, 1fr);display:grid !important;grid-template-columns:min(100% - var(--bslib-sidebar-icon-size),var(--bslib-sidebar-width, 250px)) var(--bslib-sidebar-column-main);position:relative;transition:grid-template-columns ease-in-out var(--bslib-sidebar-transition-duration);border:var(--bslib-sidebar-border);border-radius:var(--bslib-sidebar-border-radius)}@media(prefers-reduced-motion: reduce){.bslib-sidebar-layout{transition:none}}.bslib-sidebar-layout[data-bslib-sidebar-border=false]{border:none}.bslib-sidebar-layout[data-bslib-sidebar-border-radius=false]{border-radius:initial}.bslib-sidebar-layout>.main,.bslib-sidebar-layout>.sidebar{grid-row:1/2;border-radius:inherit;overflow:auto}.bslib-sidebar-layout>.main{grid-column:2/3;border-top-left-radius:0;border-bottom-left-radius:0;padding:var(--bslib-sidebar-padding);transition:padding var(--bslib-sidebar-transition-easing-x) var(--bslib-sidebar-transition-duration);color:var(--bslib-sidebar-main-fg);background-color:var(--bslib-sidebar-main-bg)}.bslib-sidebar-layout>.sidebar{grid-column:1/2;width:100%;height:100%;border-right:var(--bslib-sidebar-vert-border);border-top-right-radius:0;border-bottom-right-radius:0;color:var(--bslib-sidebar-fg);background-color:var(--bslib-sidebar-bg);backdrop-filter:blur(5px)}.bslib-sidebar-layout>.sidebar>.sidebar-content{display:flex;flex-direction:column;gap:var(--bslib-spacer, 1rem);padding:var(--bslib-sidebar-padding);padding-top:var(--bslib-sidebar-padding-icon)}.bslib-sidebar-layout>.sidebar>.sidebar-content>:last-child:not(.sidebar-title){margin-bottom:0}.bslib-sidebar-layout>.sidebar>.sidebar-content>.accordion{margin-left:calc(-1*var(--bslib-sidebar-padding));margin-right:calc(-1*var(--bslib-sidebar-padding))}.bslib-sidebar-layout>.sidebar>.sidebar-content>.accordion:last-child{margin-bottom:calc(-1*var(--bslib-sidebar-padding))}.bslib-sidebar-layout>.sidebar>.sidebar-content>.accordion:not(:last-child){margin-bottom:1rem}.bslib-sidebar-layout>.sidebar>.sidebar-content>.accordion .accordion-body{display:flex;flex-direction:column}.bslib-sidebar-layout>.sidebar>.sidebar-content>.accordion:not(:first-child) .accordion-item:first-child{border-top:var(--bs-accordion-border-width) solid var(--bs-accordion-border-color)}.bslib-sidebar-layout>.sidebar>.sidebar-content>.accordion:not(:last-child) .accordion-item:last-child{border-bottom:var(--bs-accordion-border-width) solid var(--bs-accordion-border-color)}.bslib-sidebar-layout>.sidebar>.sidebar-content.has-accordion>.sidebar-title{border-bottom:none;padding-bottom:0}.bslib-sidebar-layout>.sidebar .shiny-input-container{width:100%}.bslib-sidebar-layout[data-bslib-sidebar-open=always]>.sidebar>.sidebar-content{padding-top:var(--bslib-sidebar-padding)}.bslib-sidebar-layout>.collapse-toggle{grid-row:1/2;grid-column:1/2;display:inline-flex;align-items:center;position:absolute;right:calc(var(--bslib-sidebar-icon-size));top:calc(var(--bslib-sidebar-icon-size, 1rem)/2);border:none;border-radius:var(--bslib-collapse-toggle-border-radius);height:var(--bslib-sidebar-icon-button-size, 2rem);width:var(--bslib-sidebar-icon-button-size, 2rem);display:flex;align-items:center;justify-content:center;padding:0;color:var(--bslib-sidebar-fg);background-color:unset;transition:color var(--bslib-sidebar-transition-easing-x) var(--bslib-sidebar-transition-duration),top var(--bslib-sidebar-transition-easing-x) var(--bslib-sidebar-transition-duration),right var(--bslib-sidebar-transition-easing-x) var(--bslib-sidebar-transition-duration),left var(--bslib-sidebar-transition-easing-x) var(--bslib-sidebar-transition-duration)}.bslib-sidebar-layout>.collapse-toggle:hover{background-color:var(--bslib-sidebar-toggle-bg)}.bslib-sidebar-layout>.collapse-toggle>.collapse-icon{opacity:.8;width:var(--bslib-sidebar-icon-size);height:var(--bslib-sidebar-icon-size);transform:rotateY(var(--bslib-collapse-toggle-transform));transition:transform var(--bslib-sidebar-toggle-transition-easing) var(--bslib-sidebar-transition-duration)}.bslib-sidebar-layout>.collapse-toggle:hover>.collapse-icon{opacity:1}.bslib-sidebar-layout .sidebar-title{font-size:1.25rem;line-height:1.25;margin-top:0;margin-bottom:1rem;padding-bottom:1rem;border-bottom:var(--bslib-sidebar-border)}.bslib-sidebar-layout.sidebar-right{grid-template-columns:var(--bslib-sidebar-column-main) min(100% - var(--bslib-sidebar-icon-size),var(--bslib-sidebar-width, 250px))}.bslib-sidebar-layout.sidebar-right>.main{grid-column:1/2;border-top-right-radius:0;border-bottom-right-radius:0;border-top-left-radius:inherit;border-bottom-left-radius:inherit}.bslib-sidebar-layout.sidebar-right>.sidebar{grid-column:2/3;border-right:none;border-left:var(--bslib-sidebar-vert-border);border-top-left-radius:0;border-bottom-left-radius:0}.bslib-sidebar-layout.sidebar-right>.collapse-toggle{grid-column:2/3;left:var(--bslib-sidebar-icon-size);right:unset;border:var(--bslib-collapse-toggle-border)}.bslib-sidebar-layout.sidebar-right>.collapse-toggle>.collapse-icon{transform:rotateY(var(--bslib-collapse-toggle-right-transform))}.bslib-sidebar-layout.sidebar-collapsed{--bslib-collapse-toggle-transform: 180deg;--bslib-collapse-toggle-right-transform: 0deg;--bslib-sidebar-vert-border: none;grid-template-columns:0 minmax(0, 1fr)}.bslib-sidebar-layout.sidebar-collapsed.sidebar-right{grid-template-columns:minmax(0, 1fr) 0}.bslib-sidebar-layout.sidebar-collapsed:not(.transitioning)>.sidebar>*{display:none}.bslib-sidebar-layout.sidebar-collapsed>.main{border-radius:inherit}.bslib-sidebar-layout.sidebar-collapsed:not(.sidebar-right)>.main{padding-left:var(--bslib-sidebar-padding-icon)}.bslib-sidebar-layout.sidebar-collapsed.sidebar-right>.main{padding-right:var(--bslib-sidebar-padding-icon)}.bslib-sidebar-layout.sidebar-collapsed>.collapse-toggle{color:var(--bslib-sidebar-main-fg);top:calc(var(--bslib-sidebar-overlap-counter, 0)*(var(--bslib-sidebar-icon-size) + var(--bslib-sidebar-padding)) + var(--bslib-sidebar-icon-size, 1rem)/2);right:calc(-2.5*var(--bslib-sidebar-icon-size) - var(--bs-card-border-width, 1px))}.bslib-sidebar-layout.sidebar-collapsed.sidebar-right>.collapse-toggle{left:calc(-2.5*var(--bslib-sidebar-icon-size) - var(--bs-card-border-width, 1px));right:unset}@media(min-width: 576px){.bslib-sidebar-layout.transitioning>.sidebar>.sidebar-content{display:none}}@media(max-width: 575.98px){.bslib-sidebar-layout[data-bslib-sidebar-open=desktop]{--bslib-sidebar-js-init-collapsed: true}.bslib-sidebar-layout>.sidebar,.bslib-sidebar-layout.sidebar-right>.sidebar{border:none}.bslib-sidebar-layout>.main,.bslib-sidebar-layout.sidebar-right>.main{grid-column:1/3}.bslib-sidebar-layout[data-bslib-sidebar-open=always]{display:block !important}.bslib-sidebar-layout[data-bslib-sidebar-open=always]>.sidebar{max-height:var(--bslib-sidebar-max-height-mobile);overflow-y:auto;border-top:var(--bslib-sidebar-vert-border)}.bslib-sidebar-layout:not([data-bslib-sidebar-open=always]){grid-template-columns:100% 0}.bslib-sidebar-layout:not([data-bslib-sidebar-open=always]):not(.sidebar-collapsed)>.sidebar{z-index:1}.bslib-sidebar-layout:not([data-bslib-sidebar-open=always]):not(.sidebar-collapsed)>.collapse-toggle{z-index:1}.bslib-sidebar-layout:not([data-bslib-sidebar-open=always]).sidebar-right{grid-template-columns:0 100%}.bslib-sidebar-layout:not([data-bslib-sidebar-open=always]).sidebar-collapsed{grid-template-columns:0 100%}.bslib-sidebar-layout:not([data-bslib-sidebar-open=always]).sidebar-collapsed.sidebar-right{grid-template-columns:100% 0}.bslib-sidebar-layout:not([data-bslib-sidebar-open=always]):not(.sidebar-right)>.main{padding-left:var(--bslib-sidebar-padding-icon)}.bslib-sidebar-layout:not([data-bslib-sidebar-open=always]).sidebar-right>.main{padding-right:var(--bslib-sidebar-padding-icon)}.bslib-sidebar-layout:not([data-bslib-sidebar-open=always])>.main{opacity:0;transition:opacity var(--bslib-sidebar-transition-easing-x) var(--bslib-sidebar-transition-duration)}.bslib-sidebar-layout:not([data-bslib-sidebar-open=always]).sidebar-collapsed>.main{opacity:1}}.navbar+.container-fluid:has(>.tab-content>.tab-pane.active.html-fill-container),.navbar+.container-sm:has(>.tab-content>.tab-pane.active.html-fill-container),.navbar+.container-md:has(>.tab-content>.tab-pane.active.html-fill-container),.navbar+.container-lg:has(>.tab-content>.tab-pane.active.html-fill-container),.navbar+.container-xl:has(>.tab-content>.tab-pane.active.html-fill-container),.navbar+.container-xxl:has(>.tab-content>.tab-pane.active.html-fill-container){padding-left:0;padding-right:0}.navbar+.container-fluid>.tab-content>.tab-pane.active.html-fill-container,.navbar+.container-sm>.tab-content>.tab-pane.active.html-fill-container,.navbar+.container-md>.tab-content>.tab-pane.active.html-fill-container,.navbar+.container-lg>.tab-content>.tab-pane.active.html-fill-container,.navbar+.container-xl>.tab-content>.tab-pane.active.html-fill-container,.navbar+.container-xxl>.tab-content>.tab-pane.active.html-fill-container{padding:var(--bslib-spacer, 1rem);gap:var(--bslib-spacer, 1rem)}.navbar+.container-fluid>.tab-content>.tab-pane.active.html-fill-container:has(>.bslib-sidebar-layout:only-child),.navbar+.container-sm>.tab-content>.tab-pane.active.html-fill-container:has(>.bslib-sidebar-layout:only-child),.navbar+.container-md>.tab-content>.tab-pane.active.html-fill-container:has(>.bslib-sidebar-layout:only-child),.navbar+.container-lg>.tab-content>.tab-pane.active.html-fill-container:has(>.bslib-sidebar-layout:only-child),.navbar+.container-xl>.tab-content>.tab-pane.active.html-fill-container:has(>.bslib-sidebar-layout:only-child),.navbar+.container-xxl>.tab-content>.tab-pane.active.html-fill-container:has(>.bslib-sidebar-layout:only-child){padding:0}.navbar+.container-fluid>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border=true]),.navbar+.container-sm>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border=true]),.navbar+.container-md>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border=true]),.navbar+.container-lg>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border=true]),.navbar+.container-xl>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border=true]),.navbar+.container-xxl>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border=true]){border-left:none;border-right:none;border-bottom:none}.navbar+.container-fluid>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border-radius=true]),.navbar+.container-sm>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border-radius=true]),.navbar+.container-md>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border-radius=true]),.navbar+.container-lg>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border-radius=true]),.navbar+.container-xl>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border-radius=true]),.navbar+.container-xxl>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border-radius=true]){border-radius:0}.navbar+div>.bslib-sidebar-layout{border-top:var(--bslib-sidebar-border)}.accordion .accordion-header{font-size:calc(1.29rem + 0.48vw);margin-top:0;margin-bottom:.5rem;font-weight:400;line-height:1.2;color:var(--bs-heading-color);margin-bottom:0}@media(min-width: 1200px){.accordion .accordion-header{font-size:1.65rem}}.accordion .accordion-icon:not(:empty){margin-right:.75rem;display:flex}.accordion .accordion-button:not(.collapsed){box-shadow:none}.accordion .accordion-button:not(.collapsed):focus{box-shadow:var(--bs-accordion-btn-focus-box-shadow)}.bslib-card{overflow:auto}.bslib-card .card-body+.card-body{padding-top:0}.bslib-card .card-body{overflow:auto}.bslib-card .card-body p{margin-top:0}.bslib-card .card-body p:last-child{margin-bottom:0}.bslib-card .card-body{max-height:var(--bslib-card-body-max-height, none)}.bslib-card[data-full-screen=true]>.card-body{max-height:var(--bslib-card-body-max-height-full-screen, none)}.bslib-card .card-header .form-group{margin-bottom:0}.bslib-card .card-header .selectize-control{margin-bottom:0}.bslib-card .card-header .selectize-control .item{margin-right:1.15rem}.bslib-card .card-footer{margin-top:auto}.bslib-card .bslib-navs-card-title{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center}.bslib-card .bslib-navs-card-title .nav{margin-left:auto}.bslib-card .bslib-sidebar-layout:not([data-bslib-sidebar-border=true]){border:none}.bslib-card .bslib-sidebar-layout:not([data-bslib-sidebar-border-radius=true]){border-top-left-radius:0;border-top-right-radius:0}[data-full-screen=true]{position:fixed;inset:3.5rem 1rem 1rem;height:auto !important;max-height:none !important;width:auto !important;z-index:1070}.bslib-full-screen-enter{display:none;position:absolute;bottom:var(--bslib-full-screen-enter-bottom, 0.2rem);right:var(--bslib-full-screen-enter-right, 0);top:var(--bslib-full-screen-enter-top);left:var(--bslib-full-screen-enter-left);color:var(--bslib-color-fg, var(--bs-card-color));background-color:var(--bslib-color-bg, var(--bs-card-bg, var(--bs-body-bg)));border:var(--bs-card-border-width) solid var(--bslib-color-fg, var(--bs-card-border-color));box-shadow:0 2px 4px rgba(0,0,0,.15);margin:.2rem .4rem;padding:.55rem !important;font-size:.8rem;cursor:pointer;opacity:.7;z-index:1070}.bslib-full-screen-enter:hover{opacity:1}.card[data-full-screen=false]:hover>*>.bslib-full-screen-enter{display:block}.bslib-has-full-screen .card:hover>*>.bslib-full-screen-enter{display:none}@media(max-width: 575.98px){.bslib-full-screen-enter{display:none !important}}.bslib-full-screen-exit{position:relative;top:1.35rem;font-size:.9rem;cursor:pointer;text-decoration:none;display:flex;float:right;margin-right:2.15rem;align-items:center;color:rgba(var(--bs-body-bg-rgb), 0.8)}.bslib-full-screen-exit:hover{color:rgba(var(--bs-body-bg-rgb), 1)}.bslib-full-screen-exit svg{margin-left:.5rem;font-size:1.5rem}#bslib-full-screen-overlay{position:fixed;inset:0;background-color:rgba(var(--bs-body-color-rgb), 0.6);backdrop-filter:blur(2px);-webkit-backdrop-filter:blur(2px);z-index:1069;animation:bslib-full-screen-overlay-enter 400ms cubic-bezier(0.6, 0.02, 0.65, 1) forwards}@keyframes bslib-full-screen-overlay-enter{0%{opacity:0}100%{opacity:1}}.html-fill-container{display:flex;flex-direction:column;min-height:0;min-width:0}.html-fill-container>.html-fill-item{flex:1 1 auto;min-height:0;min-width:0}.html-fill-container>:not(.html-fill-item){flex:0 0 auto}.quarto-container{min-height:calc(100vh - 132px)}body.hypothesis-enabled #quarto-header{margin-right:16px}footer.footer .nav-footer,#quarto-header>nav{padding-left:1em;padding-right:1em}footer.footer div.nav-footer p:first-child{margin-top:0}footer.footer div.nav-footer p:last-child{margin-bottom:0}#quarto-content>*{padding-top:14px}#quarto-content>#quarto-sidebar-glass{padding-top:0px}@media(max-width: 991.98px){#quarto-content>*{padding-top:0}#quarto-content .subtitle{padding-top:14px}#quarto-content section:first-of-type h2:first-of-type,#quarto-content section:first-of-type .h2:first-of-type{margin-top:1rem}}.headroom-target,header.headroom{will-change:transform;transition:position 200ms linear;transition:all 200ms linear}header.headroom--pinned{transform:translateY(0%)}header.headroom--unpinned{transform:translateY(-100%)}.navbar-container{width:100%}.navbar-brand{overflow:hidden;text-overflow:ellipsis}.navbar-brand-container{max-width:calc(100% - 115px);min-width:0;display:flex;align-items:center}@media(min-width: 992px){.navbar-brand-container{margin-right:1em}}.navbar-brand.navbar-brand-logo{margin-right:4px;display:inline-flex}.navbar-toggler{flex-basis:content;flex-shrink:0}.navbar .navbar-brand-container{order:2}.navbar .navbar-toggler{order:1}.navbar .navbar-container>.navbar-nav{order:20}.navbar .navbar-container>.navbar-brand-container{margin-left:0 !important;margin-right:0 !important}.navbar .navbar-collapse{order:20}.navbar #quarto-search{order:4;margin-left:auto}.navbar .navbar-toggler{margin-right:.5em}.navbar-logo{max-height:24px;width:auto;padding-right:4px}nav .nav-item:not(.compact){padding-top:1px}nav .nav-link i,nav .dropdown-item i{padding-right:1px}.navbar-expand-lg .navbar-nav .nav-link{padding-left:.6rem;padding-right:.6rem}nav .nav-item.compact .nav-link{padding-left:.5rem;padding-right:.5rem;font-size:1.1rem}.navbar .quarto-navbar-tools{order:3}.navbar .quarto-navbar-tools div.dropdown{display:inline-block}.navbar .quarto-navbar-tools .quarto-navigation-tool{color:#fefefe}.navbar .quarto-navbar-tools .quarto-navigation-tool:hover{color:#fefefe}.navbar-nav .dropdown-menu{min-width:220px;font-size:.9rem}.navbar .navbar-nav .nav-link.dropdown-toggle::after{opacity:.75;vertical-align:.175em}.navbar ul.dropdown-menu{padding-top:0;padding-bottom:0}.navbar .dropdown-header{text-transform:uppercase;font-size:.8rem;padding:0 .5rem}.navbar .dropdown-item{padding:.4rem .5rem}.navbar .dropdown-item>i.bi{margin-left:.1rem;margin-right:.25em}.sidebar #quarto-search{margin-top:-1px}.sidebar #quarto-search svg.aa-SubmitIcon{width:16px;height:16px}.sidebar-navigation a{color:inherit}.sidebar-title{margin-top:.25rem;padding-bottom:.5rem;font-size:1.3rem;line-height:1.6rem;visibility:visible}.sidebar-title>a{font-size:inherit;text-decoration:none}.sidebar-title .sidebar-tools-main{margin-top:-6px}@media(max-width: 991.98px){#quarto-sidebar div.sidebar-header{padding-top:.2em}}.sidebar-header-stacked .sidebar-title{margin-top:.6rem}.sidebar-logo{max-width:90%;padding-bottom:.5rem}.sidebar-logo-link{text-decoration:none}.sidebar-navigation li a{text-decoration:none}.sidebar-navigation .quarto-navigation-tool{opacity:.7;font-size:.875rem}#quarto-sidebar>nav>.sidebar-tools-main{margin-left:14px}.sidebar-tools-main{display:inline-flex;margin-left:0px;order:2}.sidebar-tools-main:not(.tools-wide){vertical-align:middle}.sidebar-navigation .quarto-navigation-tool.dropdown-toggle::after{display:none}.sidebar.sidebar-navigation>*{padding-top:1em}.sidebar-item{margin-bottom:.2em;line-height:1rem;margin-top:.4rem}.sidebar-section{padding-left:.5em;padding-bottom:.2em}.sidebar-item .sidebar-item-container{display:flex;justify-content:space-between;cursor:pointer}.sidebar-item-toggle:hover{cursor:pointer}.sidebar-item .sidebar-item-toggle .bi{font-size:.7rem;text-align:center}.sidebar-item .sidebar-item-toggle .bi-chevron-right::before{transition:transform 200ms ease}.sidebar-item .sidebar-item-toggle[aria-expanded=false] .bi-chevron-right::before{transform:none}.sidebar-item .sidebar-item-toggle[aria-expanded=true] .bi-chevron-right::before{transform:rotate(90deg)}.sidebar-item-text{width:100%}.sidebar-navigation .sidebar-divider{margin-left:0;margin-right:0;margin-top:.5rem;margin-bottom:.5rem}@media(max-width: 991.98px){.quarto-secondary-nav{display:block}.quarto-secondary-nav button.quarto-search-button{padding-right:0em;padding-left:2em}.quarto-secondary-nav button.quarto-btn-toggle{margin-left:-0.75rem;margin-right:.15rem}.quarto-secondary-nav nav.quarto-title-breadcrumbs{display:none}.quarto-secondary-nav nav.quarto-page-breadcrumbs{display:flex;align-items:center;padding-right:1em;margin-left:-0.25em}.quarto-secondary-nav nav.quarto-page-breadcrumbs a{text-decoration:none}.quarto-secondary-nav nav.quarto-page-breadcrumbs ol.breadcrumb{margin-bottom:0}}@media(min-width: 992px){.quarto-secondary-nav{display:none}}.quarto-title-breadcrumbs .breadcrumb{margin-bottom:.5em;font-size:.9rem}.quarto-title-breadcrumbs .breadcrumb li:last-of-type a{color:#6c757d}.quarto-secondary-nav .quarto-btn-toggle{color:#595959}.quarto-secondary-nav[aria-expanded=false] .quarto-btn-toggle .bi-chevron-right::before{transform:none}.quarto-secondary-nav[aria-expanded=true] .quarto-btn-toggle .bi-chevron-right::before{transform:rotate(90deg)}.quarto-secondary-nav .quarto-btn-toggle .bi-chevron-right::before{transition:transform 200ms ease}.quarto-secondary-nav{cursor:pointer}.no-decor{text-decoration:none}.quarto-secondary-nav-title{margin-top:.3em;color:#595959;padding-top:4px}.quarto-secondary-nav nav.quarto-page-breadcrumbs{color:#595959}.quarto-secondary-nav nav.quarto-page-breadcrumbs a{color:#595959}.quarto-secondary-nav nav.quarto-page-breadcrumbs a:hover{color:rgba(88,89,92,.8)}.quarto-secondary-nav nav.quarto-page-breadcrumbs .breadcrumb-item::before{color:#8c8c8c}.breadcrumb-item{line-height:1.2rem}div.sidebar-item-container{color:#595959}div.sidebar-item-container:hover,div.sidebar-item-container:focus{color:rgba(88,89,92,.8)}div.sidebar-item-container.disabled{color:rgba(89,89,89,.75)}div.sidebar-item-container .active,div.sidebar-item-container .show>.nav-link,div.sidebar-item-container .sidebar-link>code{color:#58595c}div.sidebar.sidebar-navigation.rollup.quarto-sidebar-toggle-contents,nav.sidebar.sidebar-navigation:not(.rollup){background-color:#fff}@media(max-width: 991.98px){.sidebar-navigation .sidebar-item a,.nav-page .nav-page-text,.sidebar-navigation{font-size:1rem}.sidebar-navigation ul.sidebar-section.depth1 .sidebar-section-item{font-size:1.1rem}.sidebar-logo{display:none}.sidebar.sidebar-navigation{position:static;border-bottom:1px solid #dee2e6}.sidebar.sidebar-navigation.collapsing{position:fixed;z-index:1000}.sidebar.sidebar-navigation.show{position:fixed;z-index:1000}.sidebar.sidebar-navigation{min-height:100%}nav.quarto-secondary-nav{background-color:#fff;border-bottom:1px solid #dee2e6}.quarto-banner nav.quarto-secondary-nav{background-color:#6d6e71;color:#fefefe;border-top:1px solid #dee2e6}.sidebar .sidebar-footer{visibility:visible;padding-top:1rem;position:inherit}.sidebar-tools-collapse{display:block}}#quarto-sidebar{transition:width .15s ease-in}#quarto-sidebar>*{padding-right:1em}@media(max-width: 991.98px){#quarto-sidebar .sidebar-menu-container{white-space:nowrap;min-width:225px}#quarto-sidebar.show{transition:width .15s ease-out}}@media(min-width: 992px){#quarto-sidebar{display:flex;flex-direction:column}.nav-page .nav-page-text,.sidebar-navigation .sidebar-section .sidebar-item{font-size:.875rem}.sidebar-navigation .sidebar-item{font-size:.925rem}.sidebar.sidebar-navigation{display:block;position:sticky}.sidebar-search{width:100%}.sidebar .sidebar-footer{visibility:visible}}@media(max-width: 991.98px){#quarto-sidebar-glass{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(255,255,255,0);transition:background-color .15s ease-in;z-index:-1}#quarto-sidebar-glass.collapsing{z-index:1000}#quarto-sidebar-glass.show{transition:background-color .15s ease-out;background-color:rgba(102,102,102,.4);z-index:1000}}.sidebar .sidebar-footer{padding:.5rem 1rem;align-self:flex-end;color:#6c757d;width:100%}.quarto-page-breadcrumbs .breadcrumb-item+.breadcrumb-item,.quarto-page-breadcrumbs .breadcrumb-item{padding-right:.33em;padding-left:0}.quarto-page-breadcrumbs .breadcrumb-item::before{padding-right:.33em}.quarto-sidebar-footer{font-size:.875em}.sidebar-section .bi-chevron-right{vertical-align:middle}.sidebar-section .bi-chevron-right::before{font-size:.9em}.notransition{-webkit-transition:none !important;-moz-transition:none !important;-o-transition:none !important;transition:none !important}.btn:focus:not(:focus-visible){box-shadow:none}.page-navigation{display:flex;justify-content:space-between}.nav-page{padding-bottom:.75em}.nav-page .bi{font-size:1.8rem;vertical-align:middle}.nav-page .nav-page-text{padding-left:.25em;padding-right:.25em}.nav-page a{color:#6c757d;text-decoration:none;display:flex;align-items:center}.nav-page a:hover{color:#57585a}.nav-footer .toc-actions{padding-bottom:.5em;padding-top:.5em}.nav-footer .toc-actions a,.nav-footer .toc-actions a:hover{text-decoration:none}.nav-footer .toc-actions ul{display:flex;list-style:none}.nav-footer .toc-actions ul :first-child{margin-left:auto}.nav-footer .toc-actions ul :last-child{margin-right:auto}.nav-footer .toc-actions ul li{padding-right:1.5em}.nav-footer .toc-actions ul li i.bi{padding-right:.4em}.nav-footer .toc-actions ul li:last-of-type{padding-right:0}.nav-footer{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between;align-items:baseline;text-align:center;padding-top:.5rem;padding-bottom:.5rem;background-color:#fff}body.nav-fixed{padding-top:64px}.nav-footer-contents{color:#6c757d;margin-top:.25rem}.nav-footer{min-height:3.5em;color:#757575}.nav-footer a{color:#757575}.nav-footer .nav-footer-left{font-size:.825em}.nav-footer .nav-footer-center{font-size:.825em}.nav-footer .nav-footer-right{font-size:.825em}.nav-footer-left .footer-items,.nav-footer-center .footer-items,.nav-footer-right .footer-items{display:inline-flex;padding-top:.3em;padding-bottom:.3em;margin-bottom:0em}.nav-footer-left .footer-items .nav-link,.nav-footer-center .footer-items .nav-link,.nav-footer-right .footer-items .nav-link{padding-left:.6em;padding-right:.6em}.nav-footer-left{flex:1 1 0px;text-align:left}.nav-footer-right{flex:1 1 0px;text-align:right}.nav-footer-center{flex:1 1 0px;min-height:3em;text-align:center}.nav-footer-center .footer-items{justify-content:center}@media(max-width: 767.98px){.nav-footer-center{margin-top:3em}}.navbar .quarto-reader-toggle.reader .quarto-reader-toggle-btn{background-color:#fefefe;border-radius:3px}@media(max-width: 991.98px){.quarto-reader-toggle{display:none}}.quarto-reader-toggle.reader.quarto-navigation-tool .quarto-reader-toggle-btn{background-color:#595959;border-radius:3px}.quarto-reader-toggle .quarto-reader-toggle-btn{display:inline-flex;padding-left:.2em;padding-right:.2em;margin-left:-0.2em;margin-right:-0.2em;text-align:center}.navbar .quarto-reader-toggle:not(.reader) .bi::before{background-image:url('data:image/svg+xml,')}.navbar .quarto-reader-toggle.reader .bi::before{background-image:url('data:image/svg+xml,')}.sidebar-navigation .quarto-reader-toggle:not(.reader) .bi::before{background-image:url('data:image/svg+xml,')}.sidebar-navigation .quarto-reader-toggle.reader .bi::before{background-image:url('data:image/svg+xml,')}#quarto-back-to-top{display:none;position:fixed;bottom:50px;background-color:#fff;border-radius:.25rem;box-shadow:0 .2rem .5rem #6c757d,0 0 .05rem #6c757d;color:#6c757d;text-decoration:none;font-size:.9em;text-align:center;left:50%;padding:.4rem .8rem;transform:translate(-50%, 0)}.aa-DetachedSearchButtonQuery{display:none}.aa-DetachedOverlay ul.aa-List,#quarto-search-results ul.aa-List{list-style:none;padding-left:0}.aa-DetachedOverlay .aa-Panel,#quarto-search-results .aa-Panel{background-color:#fff;position:absolute;z-index:2000}#quarto-search-results .aa-Panel{max-width:400px}#quarto-search input{font-size:.925rem}@media(min-width: 992px){.navbar #quarto-search{margin-left:.25rem;order:999}}.navbar.navbar-expand-sm #quarto-search,.navbar.navbar-expand-md #quarto-search{order:999}@media(min-width: 992px){.navbar .quarto-navbar-tools{margin-left:auto;order:900}}@media(max-width: 991.98px){#quarto-sidebar .sidebar-search{display:none}}#quarto-sidebar .sidebar-search .aa-Autocomplete{width:100%}.navbar .aa-Autocomplete .aa-Form{width:180px}.navbar #quarto-search.type-overlay .aa-Autocomplete{width:40px}.navbar #quarto-search.type-overlay .aa-Autocomplete .aa-Form{background-color:inherit;border:none}.navbar #quarto-search.type-overlay .aa-Autocomplete .aa-Form:focus-within{box-shadow:none;outline:none}.navbar #quarto-search.type-overlay .aa-Autocomplete .aa-Form .aa-InputWrapper{display:none}.navbar #quarto-search.type-overlay .aa-Autocomplete .aa-Form .aa-InputWrapper:focus-within{display:inherit}.navbar #quarto-search.type-overlay .aa-Autocomplete .aa-Form .aa-Label svg,.navbar #quarto-search.type-overlay .aa-Autocomplete .aa-Form .aa-LoadingIndicator svg{width:26px;height:26px;color:#fefefe;opacity:1}.navbar #quarto-search.type-overlay .aa-Autocomplete svg.aa-SubmitIcon{width:26px;height:26px;color:#fefefe;opacity:1}.aa-Autocomplete .aa-Form,.aa-DetachedFormContainer .aa-Form{align-items:center;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;color:#343a40;display:flex;line-height:1em;margin:0;position:relative;width:100%}.aa-Autocomplete .aa-Form:focus-within,.aa-DetachedFormContainer .aa-Form:focus-within{box-shadow:rgba(109,110,113,.6) 0 0 0 1px;outline:currentColor none medium}.aa-Autocomplete .aa-Form .aa-InputWrapperPrefix,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperPrefix{align-items:center;display:flex;flex-shrink:0;order:1}.aa-Autocomplete .aa-Form .aa-InputWrapperPrefix .aa-Label,.aa-Autocomplete .aa-Form .aa-InputWrapperPrefix .aa-LoadingIndicator,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperPrefix .aa-Label,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperPrefix .aa-LoadingIndicator{cursor:initial;flex-shrink:0;padding:0;text-align:left}.aa-Autocomplete .aa-Form .aa-InputWrapperPrefix .aa-Label svg,.aa-Autocomplete .aa-Form .aa-InputWrapperPrefix .aa-LoadingIndicator svg,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperPrefix .aa-Label svg,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperPrefix .aa-LoadingIndicator svg{color:#343a40;opacity:.5}.aa-Autocomplete .aa-Form .aa-InputWrapperPrefix .aa-SubmitButton,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperPrefix .aa-SubmitButton{appearance:none;background:none;border:0;margin:0}.aa-Autocomplete .aa-Form .aa-InputWrapperPrefix .aa-LoadingIndicator,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperPrefix .aa-LoadingIndicator{align-items:center;display:flex;justify-content:center}.aa-Autocomplete .aa-Form .aa-InputWrapperPrefix .aa-LoadingIndicator[hidden],.aa-DetachedFormContainer .aa-Form .aa-InputWrapperPrefix .aa-LoadingIndicator[hidden]{display:none}.aa-Autocomplete .aa-Form .aa-InputWrapper,.aa-DetachedFormContainer .aa-Form .aa-InputWrapper{order:3;position:relative;width:100%}.aa-Autocomplete .aa-Form .aa-InputWrapper .aa-Input,.aa-DetachedFormContainer .aa-Form .aa-InputWrapper .aa-Input{appearance:none;background:none;border:0;color:#343a40;font:inherit;height:calc(1.5em + .1rem + 2px);padding:0;width:100%}.aa-Autocomplete .aa-Form .aa-InputWrapper .aa-Input::placeholder,.aa-DetachedFormContainer .aa-Form .aa-InputWrapper .aa-Input::placeholder{color:#343a40;opacity:.8}.aa-Autocomplete .aa-Form .aa-InputWrapper .aa-Input:focus,.aa-DetachedFormContainer .aa-Form .aa-InputWrapper .aa-Input:focus{border-color:none;box-shadow:none;outline:none}.aa-Autocomplete .aa-Form .aa-InputWrapper .aa-Input::-webkit-search-decoration,.aa-Autocomplete .aa-Form .aa-InputWrapper .aa-Input::-webkit-search-cancel-button,.aa-Autocomplete .aa-Form .aa-InputWrapper .aa-Input::-webkit-search-results-button,.aa-Autocomplete .aa-Form .aa-InputWrapper .aa-Input::-webkit-search-results-decoration,.aa-DetachedFormContainer .aa-Form .aa-InputWrapper .aa-Input::-webkit-search-decoration,.aa-DetachedFormContainer .aa-Form .aa-InputWrapper .aa-Input::-webkit-search-cancel-button,.aa-DetachedFormContainer .aa-Form .aa-InputWrapper .aa-Input::-webkit-search-results-button,.aa-DetachedFormContainer .aa-Form .aa-InputWrapper .aa-Input::-webkit-search-results-decoration{display:none}.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix{align-items:center;display:flex;order:4}.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix .aa-ClearButton,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix .aa-ClearButton{align-items:center;background:none;border:0;color:#343a40;opacity:.8;cursor:pointer;display:flex;margin:0;width:calc(1.5em + .1rem + 2px)}.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix .aa-ClearButton:hover,.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix .aa-ClearButton:focus,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix .aa-ClearButton:hover,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix .aa-ClearButton:focus{color:#343a40;opacity:.8}.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix .aa-ClearButton[hidden],.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix .aa-ClearButton[hidden]{display:none}.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix .aa-ClearButton svg,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix .aa-ClearButton svg{width:calc(1.5em + 0.75rem + calc(1px * 2))}.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix .aa-CopyButton,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix .aa-CopyButton{border:none;align-items:center;background:none;color:#343a40;opacity:.4;font-size:.7rem;cursor:pointer;display:none;margin:0;width:calc(1em + .1rem + 2px)}.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix .aa-CopyButton:hover,.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix .aa-CopyButton:focus,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix .aa-CopyButton:hover,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix .aa-CopyButton:focus{color:#343a40;opacity:.8}.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix .aa-CopyButton[hidden],.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix .aa-CopyButton[hidden]{display:none}.aa-PanelLayout:empty{display:none}.quarto-search-no-results.no-query{display:none}.aa-Source:has(.no-query){display:none}#quarto-search-results .aa-Panel{border:solid #dee2e6 1px}#quarto-search-results .aa-SourceNoResults{width:398px}.aa-DetachedOverlay .aa-Panel,#quarto-search-results .aa-Panel{max-height:65vh;overflow-y:auto;font-size:.925rem}.aa-DetachedOverlay .aa-SourceNoResults,#quarto-search-results .aa-SourceNoResults{height:60px;display:flex;justify-content:center;align-items:center}.aa-DetachedOverlay .search-error,#quarto-search-results .search-error{padding-top:10px;padding-left:20px;padding-right:20px;cursor:default}.aa-DetachedOverlay .search-error .search-error-title,#quarto-search-results .search-error .search-error-title{font-size:1.1rem;margin-bottom:.5rem}.aa-DetachedOverlay .search-error .search-error-title .search-error-icon,#quarto-search-results .search-error .search-error-title .search-error-icon{margin-right:8px}.aa-DetachedOverlay .search-error .search-error-text,#quarto-search-results .search-error .search-error-text{font-weight:300}.aa-DetachedOverlay .search-result-text,#quarto-search-results .search-result-text{font-weight:300;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;line-height:1.2rem;max-height:2.4rem}.aa-DetachedOverlay .aa-SourceHeader .search-result-header,#quarto-search-results .aa-SourceHeader .search-result-header{font-size:.875rem;background-color:#f2f2f2;padding-left:14px;padding-bottom:4px;padding-top:4px}.aa-DetachedOverlay .aa-SourceHeader .search-result-header-no-results,#quarto-search-results .aa-SourceHeader .search-result-header-no-results{display:none}.aa-DetachedOverlay .aa-SourceFooter .algolia-search-logo,#quarto-search-results .aa-SourceFooter .algolia-search-logo{width:110px;opacity:.85;margin:8px;float:right}.aa-DetachedOverlay .search-result-section,#quarto-search-results .search-result-section{font-size:.925em}.aa-DetachedOverlay a.search-result-link,#quarto-search-results a.search-result-link{color:inherit;text-decoration:none}.aa-DetachedOverlay li.aa-Item[aria-selected=true] .search-item,#quarto-search-results li.aa-Item[aria-selected=true] .search-item{background-color:#6d6e71}.aa-DetachedOverlay li.aa-Item[aria-selected=true] .search-item.search-result-more,.aa-DetachedOverlay li.aa-Item[aria-selected=true] .search-item .search-result-section,.aa-DetachedOverlay li.aa-Item[aria-selected=true] .search-item .search-result-text,.aa-DetachedOverlay li.aa-Item[aria-selected=true] .search-item .search-result-title-container,.aa-DetachedOverlay li.aa-Item[aria-selected=true] .search-item .search-result-text-container,#quarto-search-results li.aa-Item[aria-selected=true] .search-item.search-result-more,#quarto-search-results li.aa-Item[aria-selected=true] .search-item .search-result-section,#quarto-search-results li.aa-Item[aria-selected=true] .search-item .search-result-text,#quarto-search-results li.aa-Item[aria-selected=true] .search-item .search-result-title-container,#quarto-search-results li.aa-Item[aria-selected=true] .search-item .search-result-text-container{color:#fff;background-color:#6d6e71}.aa-DetachedOverlay li.aa-Item[aria-selected=true] .search-item mark.search-match,.aa-DetachedOverlay li.aa-Item[aria-selected=true] .search-item .search-match.mark,#quarto-search-results li.aa-Item[aria-selected=true] .search-item mark.search-match,#quarto-search-results li.aa-Item[aria-selected=true] .search-item .search-match.mark{color:#fff;background-color:#818286}.aa-DetachedOverlay li.aa-Item[aria-selected=false] .search-item,#quarto-search-results li.aa-Item[aria-selected=false] .search-item{background-color:#fff}.aa-DetachedOverlay li.aa-Item[aria-selected=false] .search-item.search-result-more,.aa-DetachedOverlay li.aa-Item[aria-selected=false] .search-item .search-result-section,.aa-DetachedOverlay li.aa-Item[aria-selected=false] .search-item .search-result-text,.aa-DetachedOverlay li.aa-Item[aria-selected=false] .search-item .search-result-title-container,.aa-DetachedOverlay li.aa-Item[aria-selected=false] .search-item .search-result-text-container,#quarto-search-results li.aa-Item[aria-selected=false] .search-item.search-result-more,#quarto-search-results li.aa-Item[aria-selected=false] .search-item .search-result-section,#quarto-search-results li.aa-Item[aria-selected=false] .search-item .search-result-text,#quarto-search-results li.aa-Item[aria-selected=false] .search-item .search-result-title-container,#quarto-search-results li.aa-Item[aria-selected=false] .search-item .search-result-text-container{color:#343a40}.aa-DetachedOverlay li.aa-Item[aria-selected=false] .search-item mark.search-match,.aa-DetachedOverlay li.aa-Item[aria-selected=false] .search-item .search-match.mark,#quarto-search-results li.aa-Item[aria-selected=false] .search-item mark.search-match,#quarto-search-results li.aa-Item[aria-selected=false] .search-item .search-match.mark{color:inherit;background-color:#d9dadb}.aa-DetachedOverlay .aa-Item .search-result-doc:not(.document-selectable) .search-result-title-container,#quarto-search-results .aa-Item .search-result-doc:not(.document-selectable) .search-result-title-container{background-color:#fff;color:#343a40}.aa-DetachedOverlay .aa-Item .search-result-doc:not(.document-selectable) .search-result-text-container,#quarto-search-results .aa-Item .search-result-doc:not(.document-selectable) .search-result-text-container{padding-top:0px}.aa-DetachedOverlay li.aa-Item .search-result-doc.document-selectable .search-result-text-container,#quarto-search-results li.aa-Item .search-result-doc.document-selectable .search-result-text-container{margin-top:-4px}.aa-DetachedOverlay .aa-Item,#quarto-search-results .aa-Item{cursor:pointer}.aa-DetachedOverlay .aa-Item .search-item,#quarto-search-results .aa-Item .search-item{border-left:none;border-right:none;border-top:none;background-color:#fff;border-color:#dee2e6;color:#343a40}.aa-DetachedOverlay .aa-Item .search-item p,#quarto-search-results .aa-Item .search-item p{margin-top:0;margin-bottom:0}.aa-DetachedOverlay .aa-Item .search-item i.bi,#quarto-search-results .aa-Item .search-item i.bi{padding-left:8px;padding-right:8px;font-size:1.3em}.aa-DetachedOverlay .aa-Item .search-item .search-result-title,#quarto-search-results .aa-Item .search-item .search-result-title{margin-top:.3em;margin-bottom:0em}.aa-DetachedOverlay .aa-Item .search-item .search-result-crumbs,#quarto-search-results .aa-Item .search-item .search-result-crumbs{white-space:nowrap;text-overflow:ellipsis;font-size:.8em;font-weight:300;margin-right:1em}.aa-DetachedOverlay .aa-Item .search-item .search-result-crumbs:not(.search-result-crumbs-wrap),#quarto-search-results .aa-Item .search-item .search-result-crumbs:not(.search-result-crumbs-wrap){max-width:30%;margin-left:auto;margin-top:.5em;margin-bottom:.1rem}.aa-DetachedOverlay .aa-Item .search-item .search-result-crumbs.search-result-crumbs-wrap,#quarto-search-results .aa-Item .search-item .search-result-crumbs.search-result-crumbs-wrap{flex-basis:100%;margin-top:0em;margin-bottom:.2em;margin-left:37px}.aa-DetachedOverlay .aa-Item .search-result-title-container,#quarto-search-results .aa-Item .search-result-title-container{font-size:1em;display:flex;flex-wrap:wrap;padding:6px 4px 6px 4px}.aa-DetachedOverlay .aa-Item .search-result-text-container,#quarto-search-results .aa-Item .search-result-text-container{padding-bottom:8px;padding-right:8px;margin-left:42px}.aa-DetachedOverlay .aa-Item .search-result-doc-section,.aa-DetachedOverlay .aa-Item .search-result-more,#quarto-search-results .aa-Item .search-result-doc-section,#quarto-search-results .aa-Item .search-result-more{padding-top:8px;padding-bottom:8px;padding-left:44px}.aa-DetachedOverlay .aa-Item .search-result-more,#quarto-search-results .aa-Item .search-result-more{font-size:.8em;font-weight:400}.aa-DetachedOverlay .aa-Item .search-result-doc,#quarto-search-results .aa-Item .search-result-doc{border-top:1px solid #dee2e6}.aa-DetachedSearchButton{background:none;border:none}.aa-DetachedSearchButton .aa-DetachedSearchButtonPlaceholder{display:none}.navbar .aa-DetachedSearchButton .aa-DetachedSearchButtonIcon{color:#fefefe}.sidebar-tools-collapse #quarto-search,.sidebar-tools-main #quarto-search{display:inline}.sidebar-tools-collapse #quarto-search .aa-Autocomplete,.sidebar-tools-main #quarto-search .aa-Autocomplete{display:inline}.sidebar-tools-collapse #quarto-search .aa-DetachedSearchButton,.sidebar-tools-main #quarto-search .aa-DetachedSearchButton{padding-left:4px;padding-right:4px}.sidebar-tools-collapse #quarto-search .aa-DetachedSearchButton .aa-DetachedSearchButtonIcon,.sidebar-tools-main #quarto-search .aa-DetachedSearchButton .aa-DetachedSearchButtonIcon{color:#595959}.sidebar-tools-collapse #quarto-search .aa-DetachedSearchButton .aa-DetachedSearchButtonIcon .aa-SubmitIcon,.sidebar-tools-main #quarto-search .aa-DetachedSearchButton .aa-DetachedSearchButtonIcon .aa-SubmitIcon{margin-top:-3px}.aa-DetachedContainer{background:rgba(255,255,255,.65);width:90%;bottom:0;box-shadow:rgba(222,226,230,.6) 0 0 0 1px;outline:currentColor none medium;display:flex;flex-direction:column;left:0;margin:0;overflow:hidden;padding:0;position:fixed;right:0;top:0;z-index:1101}.aa-DetachedContainer::after{height:32px}.aa-DetachedContainer .aa-SourceHeader{margin:var(--aa-spacing-half) 0 var(--aa-spacing-half) 2px}.aa-DetachedContainer .aa-Panel{background-color:#fff;border-radius:0;box-shadow:none;flex-grow:1;margin:0;padding:0;position:relative}.aa-DetachedContainer .aa-PanelLayout{bottom:0;box-shadow:none;left:0;margin:0;max-height:none;overflow-y:auto;position:absolute;right:0;top:0;width:100%}.aa-DetachedFormContainer{background-color:#fff;border-bottom:1px solid #dee2e6;display:flex;flex-direction:row;justify-content:space-between;margin:0;padding:.5em}.aa-DetachedCancelButton{background:none;font-size:.8em;border:0;border-radius:3px;color:#343a40;cursor:pointer;margin:0 0 0 .5em;padding:0 .5em}.aa-DetachedCancelButton:hover,.aa-DetachedCancelButton:focus{box-shadow:rgba(109,110,113,.6) 0 0 0 1px;outline:currentColor none medium}.aa-DetachedContainer--modal{bottom:inherit;height:auto;margin:0 auto;position:absolute;top:100px;border-radius:6px;max-width:850px}@media(max-width: 575.98px){.aa-DetachedContainer--modal{width:100%;top:0px;border-radius:0px;border:none}}.aa-DetachedContainer--modal .aa-PanelLayout{max-height:var(--aa-detached-modal-max-height);padding-bottom:var(--aa-spacing-half);position:static}.aa-Detached{height:100vh;overflow:hidden}.aa-DetachedOverlay{background-color:rgba(52,58,64,.4);position:fixed;left:0;right:0;top:0;margin:0;padding:0;height:100vh;z-index:1100}.quarto-dashboard.nav-fixed.dashboard-sidebar #quarto-content.quarto-dashboard-content{padding:0em}.quarto-dashboard #quarto-content.quarto-dashboard-content{padding:1em}.quarto-dashboard #quarto-content.quarto-dashboard-content>*{padding-top:0}@media(min-width: 576px){.quarto-dashboard{height:100%}}.quarto-dashboard .card.valuebox.bslib-card.bg-primary{background-color:#5397e9 !important}.quarto-dashboard .card.valuebox.bslib-card.bg-secondary{background-color:#343a40 !important}.quarto-dashboard .card.valuebox.bslib-card.bg-success{background-color:#3aa716 !important}.quarto-dashboard .card.valuebox.bslib-card.bg-info{background-color:rgba(153,84,187,.7019607843) !important}.quarto-dashboard .card.valuebox.bslib-card.bg-warning{background-color:#fa6400 !important}.quarto-dashboard .card.valuebox.bslib-card.bg-danger{background-color:rgba(255,0,57,.7019607843) !important}.quarto-dashboard .card.valuebox.bslib-card.bg-light{background-color:#f8f9fa !important}.quarto-dashboard .card.valuebox.bslib-card.bg-dark{background-color:#343a40 !important}.quarto-dashboard.dashboard-fill{display:flex;flex-direction:column}.quarto-dashboard #quarto-appendix{display:none}.quarto-dashboard #quarto-header #quarto-dashboard-header{border-top:solid 1px #86878b;border-bottom:solid 1px #86878b}.quarto-dashboard #quarto-header #quarto-dashboard-header>nav{padding-left:1em;padding-right:1em}.quarto-dashboard #quarto-header #quarto-dashboard-header>nav .navbar-brand-container{padding-left:0}.quarto-dashboard #quarto-header #quarto-dashboard-header .navbar-toggler{margin-right:0}.quarto-dashboard #quarto-header #quarto-dashboard-header .navbar-toggler-icon{height:1em;width:1em;background-image:url('data:image/svg+xml,')}.quarto-dashboard #quarto-header #quarto-dashboard-header .navbar-brand-container{padding-right:1em}.quarto-dashboard #quarto-header #quarto-dashboard-header .navbar-title{font-size:1.1em}.quarto-dashboard #quarto-header #quarto-dashboard-header .navbar-nav{font-size:.9em}.quarto-dashboard #quarto-dashboard-header .navbar{padding:0}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-container{padding-left:1em}.quarto-dashboard #quarto-dashboard-header .navbar.slim .navbar-brand-container .nav-link,.quarto-dashboard #quarto-dashboard-header .navbar.slim .navbar-nav .nav-link{padding:.7em}.quarto-dashboard #quarto-dashboard-header .navbar .quarto-color-scheme-toggle{order:9}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-toggler{margin-left:.5em;order:10}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-nav .nav-link{padding:.5em;height:100%;display:flex;align-items:center}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-nav .active{background-color:#818286}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-brand-container{padding:.5em .5em .5em 0;display:flex;flex-direction:row;margin-right:2em;align-items:center}@media(max-width: 767.98px){.quarto-dashboard #quarto-dashboard-header .navbar .navbar-brand-container{margin-right:auto}}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-collapse{align-self:stretch}@media(min-width: 768px){.quarto-dashboard #quarto-dashboard-header .navbar .navbar-collapse{order:8}}@media(max-width: 767.98px){.quarto-dashboard #quarto-dashboard-header .navbar .navbar-collapse{order:1000;padding-bottom:.5em}}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-collapse .navbar-nav{align-self:stretch}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-title{font-size:1.25em;line-height:1.1em;display:flex;flex-direction:row;flex-wrap:wrap;align-items:baseline}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-title .navbar-title-text{margin-right:.4em}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-title a{text-decoration:none;color:inherit}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-subtitle,.quarto-dashboard #quarto-dashboard-header .navbar .navbar-author{font-size:.9rem;margin-right:.5em}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-author{margin-left:auto}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-logo{max-height:48px;min-height:30px;object-fit:cover;margin-right:1em}.quarto-dashboard #quarto-dashboard-header .navbar .quarto-dashboard-links{order:9;padding-right:1em}.quarto-dashboard #quarto-dashboard-header .navbar .quarto-dashboard-link-text{margin-left:.25em}.quarto-dashboard #quarto-dashboard-header .navbar .quarto-dashboard-link{padding-right:0em;padding-left:.7em;text-decoration:none;color:#fefefe}.quarto-dashboard .page-layout-custom .tab-content{padding:0;border:none}.quarto-dashboard-img-contain{height:100%;width:100%;object-fit:contain}@media(max-width: 575.98px){.quarto-dashboard .bslib-grid{grid-template-rows:minmax(1em, max-content) !important}.quarto-dashboard .sidebar-content{height:inherit}.quarto-dashboard .page-layout-custom{min-height:100vh}}.quarto-dashboard.dashboard-toolbar>.page-layout-custom,.quarto-dashboard.dashboard-sidebar>.page-layout-custom{padding:0}.quarto-dashboard .quarto-dashboard-content.quarto-dashboard-pages{padding:0}.quarto-dashboard .callout{margin-bottom:0;margin-top:0}.quarto-dashboard .html-fill-container figure{overflow:hidden}.quarto-dashboard bslib-tooltip .rounded-pill{border:solid #6c757d 1px}.quarto-dashboard bslib-tooltip .rounded-pill .svg{fill:#343a40}.quarto-dashboard .tabset .dashboard-card-no-title .nav-tabs{margin-left:0;margin-right:auto}.quarto-dashboard .tabset .tab-content{border:none}.quarto-dashboard .tabset .card-header .nav-link[role=tab]{margin-top:-6px;padding-top:6px;padding-bottom:6px}.quarto-dashboard .card.valuebox,.quarto-dashboard .card.bslib-value-box{min-height:3rem}.quarto-dashboard .card.valuebox .card-body,.quarto-dashboard .card.bslib-value-box .card-body{padding:0}.quarto-dashboard .bslib-value-box .value-box-value{font-size:clamp(.1em,15cqw,5em)}.quarto-dashboard .bslib-value-box .value-box-showcase .bi{font-size:clamp(.1em,max(18cqw,5.2cqh),5em);text-align:center;height:1em}.quarto-dashboard .bslib-value-box .value-box-showcase .bi::before{vertical-align:1em}.quarto-dashboard .bslib-value-box .value-box-area{margin-top:auto;margin-bottom:auto}.quarto-dashboard .card figure.quarto-float{display:flex;flex-direction:column;align-items:center}.quarto-dashboard .dashboard-scrolling{padding:1em}.quarto-dashboard .full-height{height:100%}.quarto-dashboard .showcase-bottom .value-box-grid{display:grid;grid-template-columns:1fr;grid-template-rows:1fr auto;grid-template-areas:"top" "bottom"}.quarto-dashboard .showcase-bottom .value-box-grid .value-box-showcase{grid-area:bottom;padding:0;margin:0}.quarto-dashboard .showcase-bottom .value-box-grid .value-box-showcase i.bi{font-size:4rem}.quarto-dashboard .showcase-bottom .value-box-grid .value-box-area{grid-area:top}.quarto-dashboard .tab-content{margin-bottom:0}.quarto-dashboard .bslib-card .bslib-navs-card-title{justify-content:stretch;align-items:end}.quarto-dashboard .card-header{display:flex;flex-wrap:wrap;justify-content:space-between}.quarto-dashboard .card-header .card-title{display:flex;flex-direction:column;justify-content:center;margin-bottom:0}.quarto-dashboard .tabset .card-toolbar{margin-bottom:1em}.quarto-dashboard .bslib-grid>.bslib-sidebar-layout{border:none;gap:var(--bslib-spacer, 1rem)}.quarto-dashboard .bslib-grid>.bslib-sidebar-layout>.main{padding:0}.quarto-dashboard .bslib-grid>.bslib-sidebar-layout>.sidebar{border-radius:.25rem;border:1px solid rgba(0,0,0,.175)}.quarto-dashboard .bslib-grid>.bslib-sidebar-layout>.collapse-toggle{display:none}@media(max-width: 767.98px){.quarto-dashboard .bslib-grid>.bslib-sidebar-layout{grid-template-columns:1fr;grid-template-rows:max-content 1fr}.quarto-dashboard .bslib-grid>.bslib-sidebar-layout>.main{grid-column:1;grid-row:2}.quarto-dashboard .bslib-grid>.bslib-sidebar-layout .sidebar{grid-column:1;grid-row:1}}.quarto-dashboard .sidebar-right .sidebar{padding-left:2.5em}.quarto-dashboard .sidebar-right .collapse-toggle{left:2px}.quarto-dashboard .quarto-dashboard .sidebar-right button.collapse-toggle:not(.transitioning){left:unset}.quarto-dashboard aside.sidebar{padding-left:1em;padding-right:1em;background-color:rgba(52,58,64,.25);color:#343a40}.quarto-dashboard .bslib-sidebar-layout>div.main{padding:.7em}.quarto-dashboard .bslib-sidebar-layout button.collapse-toggle{margin-top:.3em}.quarto-dashboard .bslib-sidebar-layout .collapse-toggle{top:0}.quarto-dashboard .bslib-sidebar-layout.sidebar-collapsed:not(.transitioning):not(.sidebar-right) .collapse-toggle{left:2px}.quarto-dashboard .sidebar>section>.h3:first-of-type{margin-top:0em}.quarto-dashboard .sidebar .h3,.quarto-dashboard .sidebar .h4,.quarto-dashboard .sidebar .h5,.quarto-dashboard .sidebar .h6{margin-top:.5em}.quarto-dashboard .sidebar form{flex-direction:column;align-items:start;margin-bottom:1em}.quarto-dashboard .sidebar form div[class*=oi-][class$=-input]{flex-direction:column}.quarto-dashboard .sidebar form[class*=oi-][class$=-toggle]{flex-direction:row-reverse;align-items:center;justify-content:start}.quarto-dashboard .sidebar form input[type=range]{margin-top:.5em;margin-right:.8em;margin-left:1em}.quarto-dashboard .sidebar label{width:fit-content}.quarto-dashboard .sidebar .card-body{margin-bottom:2em}.quarto-dashboard .sidebar .shiny-input-container{margin-bottom:1em}.quarto-dashboard .sidebar .shiny-options-group{margin-top:0}.quarto-dashboard .sidebar .control-label{margin-bottom:.3em}.quarto-dashboard .card .card-body .quarto-layout-row{align-items:stretch}.quarto-dashboard .toolbar{font-size:.9em;display:flex;flex-direction:row;border-top:solid 1px #bcbfc0;padding:1em;flex-wrap:wrap;background-color:rgba(52,58,64,.25)}.quarto-dashboard .toolbar .cell-output-display{display:flex}.quarto-dashboard .toolbar .shiny-input-container{padding-bottom:.5em;margin-bottom:.5em;width:inherit}.quarto-dashboard .toolbar .shiny-input-container>.checkbox:first-child{margin-top:6px}.quarto-dashboard .toolbar>*:last-child{margin-right:0}.quarto-dashboard .toolbar>*>*{margin-right:1em;align-items:baseline}.quarto-dashboard .toolbar>*>*>a{text-decoration:none;margin-top:auto;margin-bottom:auto}.quarto-dashboard .toolbar .shiny-input-container{padding-bottom:0;margin-bottom:0}.quarto-dashboard .toolbar .shiny-input-container>*{flex-shrink:0;flex-grow:0}.quarto-dashboard .toolbar .form-group.shiny-input-container:not([role=group])>label{margin-bottom:0}.quarto-dashboard .toolbar .shiny-input-container.no-baseline{align-items:start;padding-top:6px}.quarto-dashboard .toolbar .shiny-input-container{display:flex;align-items:baseline}.quarto-dashboard .toolbar .shiny-input-container label{padding-right:.4em}.quarto-dashboard .toolbar .shiny-input-container .bslib-input-switch{margin-top:6px}.quarto-dashboard .toolbar input[type=text]{line-height:1;width:inherit}.quarto-dashboard .toolbar .input-daterange{width:inherit}.quarto-dashboard .toolbar .input-daterange input[type=text]{height:2.4em;width:10em}.quarto-dashboard .toolbar .input-daterange .input-group-addon{height:auto;padding:0;margin-left:-5px !important;margin-right:-5px}.quarto-dashboard .toolbar .input-daterange .input-group-addon .input-group-text{padding-top:0;padding-bottom:0;height:100%}.quarto-dashboard .toolbar span.irs.irs--shiny{width:10em}.quarto-dashboard .toolbar span.irs.irs--shiny .irs-line{top:9px}.quarto-dashboard .toolbar span.irs.irs--shiny .irs-min,.quarto-dashboard .toolbar span.irs.irs--shiny .irs-max,.quarto-dashboard .toolbar span.irs.irs--shiny .irs-from,.quarto-dashboard .toolbar span.irs.irs--shiny .irs-to,.quarto-dashboard .toolbar span.irs.irs--shiny .irs-single{top:20px}.quarto-dashboard .toolbar span.irs.irs--shiny .irs-bar{top:8px}.quarto-dashboard .toolbar span.irs.irs--shiny .irs-handle{top:0px}.quarto-dashboard .toolbar .shiny-input-checkboxgroup>label{margin-top:6px}.quarto-dashboard .toolbar .shiny-input-checkboxgroup>.shiny-options-group{margin-top:0;align-items:baseline}.quarto-dashboard .toolbar .shiny-input-radiogroup>label{margin-top:6px}.quarto-dashboard .toolbar .shiny-input-radiogroup>.shiny-options-group{align-items:baseline;margin-top:0}.quarto-dashboard .toolbar .shiny-input-radiogroup>.shiny-options-group>.radio{margin-right:.3em}.quarto-dashboard .toolbar .form-select{padding-top:.2em;padding-bottom:.2em}.quarto-dashboard .toolbar .shiny-input-select{min-width:6em}.quarto-dashboard .toolbar div.checkbox{margin-bottom:0px}.quarto-dashboard .toolbar>.checkbox:first-child{margin-top:6px}.quarto-dashboard .toolbar form{width:fit-content}.quarto-dashboard .toolbar form label{padding-top:.2em;padding-bottom:.2em;width:fit-content}.quarto-dashboard .toolbar form input[type=date]{width:fit-content}.quarto-dashboard .toolbar form input[type=color]{width:3em}.quarto-dashboard .toolbar form button{padding:.4em}.quarto-dashboard .toolbar form select{width:fit-content}.quarto-dashboard .toolbar>*{font-size:.9em;flex-grow:0}.quarto-dashboard .toolbar .shiny-input-container label{margin-bottom:1px}.quarto-dashboard .toolbar-bottom{margin-top:1em;margin-bottom:0 !important;order:2}.quarto-dashboard .quarto-dashboard-content>.dashboard-toolbar-container>.toolbar-content>.tab-content>.tab-pane>*:not(.bslib-sidebar-layout){padding:1em}.quarto-dashboard .quarto-dashboard-content>.dashboard-toolbar-container>.toolbar-content>*:not(.tab-content){padding:1em}.quarto-dashboard .quarto-dashboard-content>.tab-content>.dashboard-page>.dashboard-toolbar-container>.toolbar-content,.quarto-dashboard .quarto-dashboard-content>.tab-content>.dashboard-page:not(.dashboard-sidebar-container)>*:not(.dashboard-toolbar-container){padding:1em}.quarto-dashboard .toolbar-content{padding:0}.quarto-dashboard .quarto-dashboard-content.quarto-dashboard-pages .tab-pane>.dashboard-toolbar-container .toolbar{border-radius:0;margin-bottom:0}.quarto-dashboard .dashboard-toolbar-container.toolbar-toplevel .toolbar{border-bottom:1px solid rgba(0,0,0,.175)}.quarto-dashboard .dashboard-toolbar-container.toolbar-toplevel .toolbar-bottom{margin-top:0}.quarto-dashboard .dashboard-toolbar-container:not(.toolbar-toplevel) .toolbar{margin-bottom:1em;border-top:none;border-radius:.25rem;border:1px solid rgba(0,0,0,.175)}.quarto-dashboard .vega-embed.has-actions details{width:1.7em;height:2em;position:absolute !important;top:0;right:0}.quarto-dashboard .dashboard-toolbar-container{padding:0}.quarto-dashboard .card .card-header p:last-child,.quarto-dashboard .card .card-footer p:last-child{margin-bottom:0}.quarto-dashboard .card .card-body>.h4:first-child{margin-top:0}.quarto-dashboard .card .card-body{z-index:1000}@media(max-width: 767.98px){.quarto-dashboard .card .card-body .itables div.dataTables_wrapper div.dataTables_length,.quarto-dashboard .card .card-body .itables div.dataTables_wrapper div.dataTables_info,.quarto-dashboard .card .card-body .itables div.dataTables_wrapper div.dataTables_paginate{text-align:initial}.quarto-dashboard .card .card-body .itables div.dataTables_wrapper div.dataTables_filter{text-align:right}.quarto-dashboard .card .card-body .itables div.dataTables_wrapper div.dataTables_paginate ul.pagination{justify-content:initial}}.quarto-dashboard .card .card-body .itables .dataTables_wrapper{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;padding-top:0}.quarto-dashboard .card .card-body .itables .dataTables_wrapper table{flex-shrink:0}.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dt-buttons{margin-bottom:.5em;margin-left:auto;width:fit-content;float:right}.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dt-buttons.btn-group{background:#fff;border:none}.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dt-buttons .btn-secondary{background-color:#fff;background-image:none;border:solid #dee2e6 1px;padding:.2em .7em}.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dt-buttons .btn span{font-size:.8em;color:#343a40}.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dataTables_info{margin-left:.5em;margin-bottom:.5em;padding-top:0}@media(min-width: 768px){.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dataTables_info{font-size:.875em}}@media(max-width: 767.98px){.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dataTables_info{font-size:.8em}}.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dataTables_filter{margin-bottom:.5em;font-size:.875em}.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dataTables_filter input[type=search]{padding:1px 5px 1px 5px;font-size:.875em}.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dataTables_length{flex-basis:1 1 50%;margin-bottom:.5em;font-size:.875em}.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dataTables_length select{padding:.4em 3em .4em .5em;font-size:.875em;margin-left:.2em;margin-right:.2em}.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dataTables_paginate{flex-shrink:0}@media(min-width: 768px){.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dataTables_paginate{margin-left:auto}}.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dataTables_paginate ul.pagination .paginate_button .page-link{font-size:.8em}.quarto-dashboard .card .card-footer{font-size:.9em}.quarto-dashboard .card .card-toolbar{display:flex;flex-grow:1;flex-direction:row;width:100%;flex-wrap:wrap}.quarto-dashboard .card .card-toolbar>*{font-size:.8em;flex-grow:0}.quarto-dashboard .card .card-toolbar>.card-title{font-size:1em;flex-grow:1;align-self:flex-start;margin-top:.1em}.quarto-dashboard .card .card-toolbar .cell-output-display{display:flex}.quarto-dashboard .card .card-toolbar .shiny-input-container{padding-bottom:.5em;margin-bottom:.5em;width:inherit}.quarto-dashboard .card .card-toolbar .shiny-input-container>.checkbox:first-child{margin-top:6px}.quarto-dashboard .card .card-toolbar>*:last-child{margin-right:0}.quarto-dashboard .card .card-toolbar>*>*{margin-right:1em;align-items:baseline}.quarto-dashboard .card .card-toolbar>*>*>a{text-decoration:none;margin-top:auto;margin-bottom:auto}.quarto-dashboard .card .card-toolbar form{width:fit-content}.quarto-dashboard .card .card-toolbar form label{padding-top:.2em;padding-bottom:.2em;width:fit-content}.quarto-dashboard .card .card-toolbar form input[type=date]{width:fit-content}.quarto-dashboard .card .card-toolbar form input[type=color]{width:3em}.quarto-dashboard .card .card-toolbar form button{padding:.4em}.quarto-dashboard .card .card-toolbar form select{width:fit-content}.quarto-dashboard .card .card-toolbar .cell-output-display{display:flex}.quarto-dashboard .card .card-toolbar .shiny-input-container{padding-bottom:.5em;margin-bottom:.5em;width:inherit}.quarto-dashboard .card .card-toolbar .shiny-input-container>.checkbox:first-child{margin-top:6px}.quarto-dashboard .card .card-toolbar>*:last-child{margin-right:0}.quarto-dashboard .card .card-toolbar>*>*{margin-right:1em;align-items:baseline}.quarto-dashboard .card .card-toolbar>*>*>a{text-decoration:none;margin-top:auto;margin-bottom:auto}.quarto-dashboard .card .card-toolbar .shiny-input-container{padding-bottom:0;margin-bottom:0}.quarto-dashboard .card .card-toolbar .shiny-input-container>*{flex-shrink:0;flex-grow:0}.quarto-dashboard .card .card-toolbar .form-group.shiny-input-container:not([role=group])>label{margin-bottom:0}.quarto-dashboard .card .card-toolbar .shiny-input-container.no-baseline{align-items:start;padding-top:6px}.quarto-dashboard .card .card-toolbar .shiny-input-container{display:flex;align-items:baseline}.quarto-dashboard .card .card-toolbar .shiny-input-container label{padding-right:.4em}.quarto-dashboard .card .card-toolbar .shiny-input-container .bslib-input-switch{margin-top:6px}.quarto-dashboard .card .card-toolbar input[type=text]{line-height:1;width:inherit}.quarto-dashboard .card .card-toolbar .input-daterange{width:inherit}.quarto-dashboard .card .card-toolbar .input-daterange input[type=text]{height:2.4em;width:10em}.quarto-dashboard .card .card-toolbar .input-daterange .input-group-addon{height:auto;padding:0;margin-left:-5px !important;margin-right:-5px}.quarto-dashboard .card .card-toolbar .input-daterange .input-group-addon .input-group-text{padding-top:0;padding-bottom:0;height:100%}.quarto-dashboard .card .card-toolbar span.irs.irs--shiny{width:10em}.quarto-dashboard .card .card-toolbar span.irs.irs--shiny .irs-line{top:9px}.quarto-dashboard .card .card-toolbar span.irs.irs--shiny .irs-min,.quarto-dashboard .card .card-toolbar span.irs.irs--shiny .irs-max,.quarto-dashboard .card .card-toolbar span.irs.irs--shiny .irs-from,.quarto-dashboard .card .card-toolbar span.irs.irs--shiny .irs-to,.quarto-dashboard .card .card-toolbar span.irs.irs--shiny .irs-single{top:20px}.quarto-dashboard .card .card-toolbar span.irs.irs--shiny .irs-bar{top:8px}.quarto-dashboard .card .card-toolbar span.irs.irs--shiny .irs-handle{top:0px}.quarto-dashboard .card .card-toolbar .shiny-input-checkboxgroup>label{margin-top:6px}.quarto-dashboard .card .card-toolbar .shiny-input-checkboxgroup>.shiny-options-group{margin-top:0;align-items:baseline}.quarto-dashboard .card .card-toolbar .shiny-input-radiogroup>label{margin-top:6px}.quarto-dashboard .card .card-toolbar .shiny-input-radiogroup>.shiny-options-group{align-items:baseline;margin-top:0}.quarto-dashboard .card .card-toolbar .shiny-input-radiogroup>.shiny-options-group>.radio{margin-right:.3em}.quarto-dashboard .card .card-toolbar .form-select{padding-top:.2em;padding-bottom:.2em}.quarto-dashboard .card .card-toolbar .shiny-input-select{min-width:6em}.quarto-dashboard .card .card-toolbar div.checkbox{margin-bottom:0px}.quarto-dashboard .card .card-toolbar>.checkbox:first-child{margin-top:6px}.quarto-dashboard .card-body>table>thead{border-top:none}.quarto-dashboard .card-body>.table>:not(caption)>*>*{background-color:#fff}.tableFloatingHeaderOriginal{background-color:#fff;position:sticky !important;top:0 !important}.dashboard-data-table{margin-top:-1px}.quarto-listing{padding-bottom:1em}.listing-pagination{padding-top:.5em}ul.pagination{float:right;padding-left:8px;padding-top:.5em}ul.pagination li{padding-right:.75em}ul.pagination li.disabled a,ul.pagination li.active a{color:#fff;text-decoration:none}ul.pagination li:last-of-type{padding-right:0}.listing-actions-group{display:flex}.quarto-listing-filter{margin-bottom:1em;width:200px;margin-left:auto}.quarto-listing-sort{margin-bottom:1em;margin-right:auto;width:auto}.quarto-listing-sort .input-group-text{font-size:.8em}.input-group-text{border-right:none}.quarto-listing-sort select.form-select{font-size:.8em}.listing-no-matching{text-align:center;padding-top:2em;padding-bottom:3em;font-size:1em}#quarto-margin-sidebar .quarto-listing-category{padding-top:0;font-size:1rem}#quarto-margin-sidebar .quarto-listing-category-title{cursor:pointer;font-weight:600;font-size:1rem}.quarto-listing-category .category{cursor:pointer}.quarto-listing-category .category.active{font-weight:600}.quarto-listing-category.category-cloud{display:flex;flex-wrap:wrap;align-items:baseline}.quarto-listing-category.category-cloud .category{padding-right:5px}.quarto-listing-category.category-cloud .category-cloud-1{font-size:.75em}.quarto-listing-category.category-cloud .category-cloud-2{font-size:.95em}.quarto-listing-category.category-cloud .category-cloud-3{font-size:1.15em}.quarto-listing-category.category-cloud .category-cloud-4{font-size:1.35em}.quarto-listing-category.category-cloud .category-cloud-5{font-size:1.55em}.quarto-listing-category.category-cloud .category-cloud-6{font-size:1.75em}.quarto-listing-category.category-cloud .category-cloud-7{font-size:1.95em}.quarto-listing-category.category-cloud .category-cloud-8{font-size:2.15em}.quarto-listing-category.category-cloud .category-cloud-9{font-size:2.35em}.quarto-listing-category.category-cloud .category-cloud-10{font-size:2.55em}.quarto-listing-cols-1{grid-template-columns:repeat(1, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-1{grid-template-columns:repeat(1, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-1{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-2{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-2{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-2{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-3{grid-template-columns:repeat(3, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-3{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-3{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-4{grid-template-columns:repeat(4, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-4{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-4{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-5{grid-template-columns:repeat(5, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-5{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-5{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-6{grid-template-columns:repeat(6, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-6{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-6{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-7{grid-template-columns:repeat(7, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-7{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-7{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-8{grid-template-columns:repeat(8, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-8{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-8{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-9{grid-template-columns:repeat(9, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-9{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-9{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-10{grid-template-columns:repeat(10, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-10{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-10{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-11{grid-template-columns:repeat(11, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-11{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-11{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-12{grid-template-columns:repeat(12, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-12{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-12{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-grid{gap:1.5em}.quarto-grid-item.borderless{border:none}.quarto-grid-item.borderless .listing-categories .listing-category:last-of-type,.quarto-grid-item.borderless .listing-categories .listing-category:first-of-type{padding-left:0}.quarto-grid-item.borderless .listing-categories .listing-category{border:0}.quarto-grid-link{text-decoration:none;color:inherit}.quarto-grid-link:hover{text-decoration:none;color:inherit}.quarto-grid-item h5.title,.quarto-grid-item .title.h5{margin-top:0;margin-bottom:0}.quarto-grid-item .card-footer{display:flex;justify-content:space-between;font-size:.8em}.quarto-grid-item .card-footer p{margin-bottom:0}.quarto-grid-item p.card-img-top{margin-bottom:0}.quarto-grid-item p.card-img-top>img{object-fit:cover}.quarto-grid-item .card-other-values{margin-top:.5em;font-size:.8em}.quarto-grid-item .card-other-values tr{margin-bottom:.5em}.quarto-grid-item .card-other-values tr>td:first-of-type{font-weight:600;padding-right:1em;padding-left:1em;vertical-align:top}.quarto-grid-item div.post-contents{display:flex;flex-direction:column;text-decoration:none;height:100%}.quarto-grid-item .listing-item-img-placeholder{background-color:rgba(52,58,64,.25);flex-shrink:0}.quarto-grid-item .card-attribution{padding-top:1em;display:flex;gap:1em;text-transform:uppercase;color:#6c757d;font-weight:500;flex-grow:10;align-items:flex-end}.quarto-grid-item .description{padding-bottom:1em}.quarto-grid-item .card-attribution .date{align-self:flex-end}.quarto-grid-item .card-attribution.justify{justify-content:space-between}.quarto-grid-item .card-attribution.start{justify-content:flex-start}.quarto-grid-item .card-attribution.end{justify-content:flex-end}.quarto-grid-item .card-title{margin-bottom:.1em}.quarto-grid-item .card-subtitle{padding-top:.25em}.quarto-grid-item .card-text{font-size:.9em}.quarto-grid-item .listing-reading-time{padding-bottom:.25em}.quarto-grid-item .card-text-small{font-size:.8em}.quarto-grid-item .card-subtitle.subtitle{font-size:.9em;font-weight:600;padding-bottom:.5em}.quarto-grid-item .listing-categories{display:flex;flex-wrap:wrap;padding-bottom:5px}.quarto-grid-item .listing-categories .listing-category{color:#6c757d;border:solid 1px #dee2e6;border-radius:.25rem;text-transform:uppercase;font-size:.65em;padding-left:.5em;padding-right:.5em;padding-top:.15em;padding-bottom:.15em;cursor:pointer;margin-right:4px;margin-bottom:4px}.quarto-grid-item.card-right{text-align:right}.quarto-grid-item.card-right .listing-categories{justify-content:flex-end}.quarto-grid-item.card-left{text-align:left}.quarto-grid-item.card-center{text-align:center}.quarto-grid-item.card-center .listing-description{text-align:justify}.quarto-grid-item.card-center .listing-categories{justify-content:center}table.quarto-listing-table td.image{padding:0px}table.quarto-listing-table td.image img{width:100%;max-width:50px;object-fit:contain}table.quarto-listing-table a{text-decoration:none;word-break:keep-all}table.quarto-listing-table th a{color:inherit}table.quarto-listing-table th a.asc:after{margin-bottom:-2px;margin-left:5px;display:inline-block;height:1rem;width:1rem;background-repeat:no-repeat;background-size:1rem 1rem;background-image:url('data:image/svg+xml,');content:""}table.quarto-listing-table th a.desc:after{margin-bottom:-2px;margin-left:5px;display:inline-block;height:1rem;width:1rem;background-repeat:no-repeat;background-size:1rem 1rem;background-image:url('data:image/svg+xml,');content:""}table.quarto-listing-table.table-hover td{cursor:pointer}.quarto-post.image-left{flex-direction:row}.quarto-post.image-right{flex-direction:row-reverse}@media(max-width: 767.98px){.quarto-post.image-right,.quarto-post.image-left{gap:0em;flex-direction:column}.quarto-post .metadata{padding-bottom:1em;order:2}.quarto-post .body{order:1}.quarto-post .thumbnail{order:3}}.list.quarto-listing-default div:last-of-type{border-bottom:none}@media(min-width: 992px){.quarto-listing-container-default{margin-right:2em}}div.quarto-post{display:flex;gap:2em;margin-bottom:1.5em;border-bottom:1px solid #dee2e6}@media(max-width: 767.98px){div.quarto-post{padding-bottom:1em}}div.quarto-post .metadata{flex-basis:20%;flex-grow:0;margin-top:.2em;flex-shrink:10}div.quarto-post .thumbnail{flex-basis:30%;flex-grow:0;flex-shrink:0}div.quarto-post .thumbnail img{margin-top:.4em;width:100%;object-fit:cover}div.quarto-post .body{flex-basis:45%;flex-grow:1;flex-shrink:0}div.quarto-post .body h3.listing-title,div.quarto-post .body .listing-title.h3{margin-top:0px;margin-bottom:0px;border-bottom:none}div.quarto-post .body .listing-subtitle{font-size:.875em;margin-bottom:.5em;margin-top:.2em}div.quarto-post .body .description{font-size:.9em}div.quarto-post .body pre code{white-space:pre-wrap}div.quarto-post a{color:#343a40;text-decoration:none}div.quarto-post .metadata{display:flex;flex-direction:column;font-size:.8em;font-family:"Source Sans Pro",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";flex-basis:33%}div.quarto-post .listing-categories{display:flex;flex-wrap:wrap;padding-bottom:5px}div.quarto-post .listing-categories .listing-category{color:#6c757d;border:solid 1px #dee2e6;border-radius:.25rem;text-transform:uppercase;font-size:.65em;padding-left:.5em;padding-right:.5em;padding-top:.15em;padding-bottom:.15em;cursor:pointer;margin-right:4px;margin-bottom:4px}div.quarto-post .listing-description{margin-bottom:.5em}div.quarto-about-jolla{display:flex !important;flex-direction:column;align-items:center;margin-top:10%;padding-bottom:1em}div.quarto-about-jolla .about-image{object-fit:cover;margin-left:auto;margin-right:auto;margin-bottom:1.5em}div.quarto-about-jolla img.round{border-radius:50%}div.quarto-about-jolla img.rounded{border-radius:10px}div.quarto-about-jolla .quarto-title h1.title,div.quarto-about-jolla .quarto-title .title.h1{text-align:center}div.quarto-about-jolla .quarto-title .description{text-align:center}div.quarto-about-jolla h2,div.quarto-about-jolla .h2{border-bottom:none}div.quarto-about-jolla .about-sep{width:60%}div.quarto-about-jolla main{text-align:center}div.quarto-about-jolla .about-links{display:flex}@media(min-width: 992px){div.quarto-about-jolla .about-links{flex-direction:row;column-gap:.8em;row-gap:15px;flex-wrap:wrap}}@media(max-width: 991.98px){div.quarto-about-jolla .about-links{flex-direction:column;row-gap:1em;width:100%;padding-bottom:1.5em}}div.quarto-about-jolla .about-link{color:#626d78;text-decoration:none;border:solid 1px}@media(min-width: 992px){div.quarto-about-jolla .about-link{font-size:.8em;padding:.25em .5em;border-radius:4px}}@media(max-width: 991.98px){div.quarto-about-jolla .about-link{font-size:1.1em;padding:.5em .5em;text-align:center;border-radius:6px}}div.quarto-about-jolla .about-link:hover{color:#6d6e71}div.quarto-about-jolla .about-link i.bi{margin-right:.15em}div.quarto-about-solana{display:flex !important;flex-direction:column;padding-top:3em !important;padding-bottom:1em}div.quarto-about-solana .about-entity{display:flex !important;align-items:start;justify-content:space-between}@media(min-width: 992px){div.quarto-about-solana .about-entity{flex-direction:row}}@media(max-width: 991.98px){div.quarto-about-solana .about-entity{flex-direction:column-reverse;align-items:center;text-align:center}}div.quarto-about-solana .about-entity .entity-contents{display:flex;flex-direction:column}@media(max-width: 767.98px){div.quarto-about-solana .about-entity .entity-contents{width:100%}}div.quarto-about-solana .about-entity .about-image{object-fit:cover}@media(max-width: 991.98px){div.quarto-about-solana .about-entity .about-image{margin-bottom:1.5em}}div.quarto-about-solana .about-entity img.round{border-radius:50%}div.quarto-about-solana .about-entity img.rounded{border-radius:10px}div.quarto-about-solana .about-entity .about-links{display:flex;justify-content:left;padding-bottom:1.2em}@media(min-width: 992px){div.quarto-about-solana .about-entity .about-links{flex-direction:row;column-gap:.8em;row-gap:15px;flex-wrap:wrap}}@media(max-width: 991.98px){div.quarto-about-solana .about-entity .about-links{flex-direction:column;row-gap:1em;width:100%;padding-bottom:1.5em}}div.quarto-about-solana .about-entity .about-link{color:#626d78;text-decoration:none;border:solid 1px}@media(min-width: 992px){div.quarto-about-solana .about-entity .about-link{font-size:.8em;padding:.25em .5em;border-radius:4px}}@media(max-width: 991.98px){div.quarto-about-solana .about-entity .about-link{font-size:1.1em;padding:.5em .5em;text-align:center;border-radius:6px}}div.quarto-about-solana .about-entity .about-link:hover{color:#6d6e71}div.quarto-about-solana .about-entity .about-link i.bi{margin-right:.15em}div.quarto-about-solana .about-contents{padding-right:1.5em;flex-basis:0;flex-grow:1}div.quarto-about-solana .about-contents main.content{margin-top:0}div.quarto-about-solana .about-contents h2,div.quarto-about-solana .about-contents .h2{border-bottom:none}div.quarto-about-trestles{display:flex !important;flex-direction:row;padding-top:3em !important;padding-bottom:1em}@media(max-width: 991.98px){div.quarto-about-trestles{flex-direction:column;padding-top:0em !important}}div.quarto-about-trestles .about-entity{display:flex !important;flex-direction:column;align-items:center;text-align:center;padding-right:1em}@media(min-width: 992px){div.quarto-about-trestles .about-entity{flex:0 0 42%}}div.quarto-about-trestles .about-entity .about-image{object-fit:cover;margin-bottom:1.5em}div.quarto-about-trestles .about-entity img.round{border-radius:50%}div.quarto-about-trestles .about-entity img.rounded{border-radius:10px}div.quarto-about-trestles .about-entity .about-links{display:flex;justify-content:center}@media(min-width: 992px){div.quarto-about-trestles .about-entity .about-links{flex-direction:row;column-gap:.8em;row-gap:15px;flex-wrap:wrap}}@media(max-width: 991.98px){div.quarto-about-trestles .about-entity .about-links{flex-direction:column;row-gap:1em;width:100%;padding-bottom:1.5em}}div.quarto-about-trestles .about-entity .about-link{color:#626d78;text-decoration:none;border:solid 1px}@media(min-width: 992px){div.quarto-about-trestles .about-entity .about-link{font-size:.8em;padding:.25em .5em;border-radius:4px}}@media(max-width: 991.98px){div.quarto-about-trestles .about-entity .about-link{font-size:1.1em;padding:.5em .5em;text-align:center;border-radius:6px}}div.quarto-about-trestles .about-entity .about-link:hover{color:#6d6e71}div.quarto-about-trestles .about-entity .about-link i.bi{margin-right:.15em}div.quarto-about-trestles .about-contents{flex-basis:0;flex-grow:1}div.quarto-about-trestles .about-contents h2,div.quarto-about-trestles .about-contents .h2{border-bottom:none}@media(min-width: 992px){div.quarto-about-trestles .about-contents{border-left:solid 1px #dee2e6;padding-left:1.5em}}div.quarto-about-trestles .about-contents main.content{margin-top:0}div.quarto-about-marquee{padding-bottom:1em}div.quarto-about-marquee .about-contents{display:flex;flex-direction:column}div.quarto-about-marquee .about-image{max-height:550px;margin-bottom:1.5em;object-fit:cover}div.quarto-about-marquee img.round{border-radius:50%}div.quarto-about-marquee img.rounded{border-radius:10px}div.quarto-about-marquee h2,div.quarto-about-marquee .h2{border-bottom:none}div.quarto-about-marquee .about-links{display:flex;justify-content:center;padding-top:1.5em}@media(min-width: 992px){div.quarto-about-marquee .about-links{flex-direction:row;column-gap:.8em;row-gap:15px;flex-wrap:wrap}}@media(max-width: 991.98px){div.quarto-about-marquee .about-links{flex-direction:column;row-gap:1em;width:100%;padding-bottom:1.5em}}div.quarto-about-marquee .about-link{color:#626d78;text-decoration:none;border:solid 1px}@media(min-width: 992px){div.quarto-about-marquee .about-link{font-size:.8em;padding:.25em .5em;border-radius:4px}}@media(max-width: 991.98px){div.quarto-about-marquee .about-link{font-size:1.1em;padding:.5em .5em;text-align:center;border-radius:6px}}div.quarto-about-marquee .about-link:hover{color:#6d6e71}div.quarto-about-marquee .about-link i.bi{margin-right:.15em}@media(min-width: 992px){div.quarto-about-marquee .about-link{border:none}}div.quarto-about-broadside{display:flex;flex-direction:column;padding-bottom:1em}div.quarto-about-broadside .about-main{display:flex !important;padding-top:0 !important}@media(min-width: 992px){div.quarto-about-broadside .about-main{flex-direction:row;align-items:flex-start}}@media(max-width: 991.98px){div.quarto-about-broadside .about-main{flex-direction:column}}@media(max-width: 991.98px){div.quarto-about-broadside .about-main .about-entity{flex-shrink:0;width:100%;height:450px;margin-bottom:1.5em;background-size:cover;background-repeat:no-repeat}}@media(min-width: 992px){div.quarto-about-broadside .about-main .about-entity{flex:0 10 50%;margin-right:1.5em;width:100%;height:100%;background-size:100%;background-repeat:no-repeat}}div.quarto-about-broadside .about-main .about-contents{padding-top:14px;flex:0 0 50%}div.quarto-about-broadside h2,div.quarto-about-broadside .h2{border-bottom:none}div.quarto-about-broadside .about-sep{margin-top:1.5em;width:60%;align-self:center}div.quarto-about-broadside .about-links{display:flex;justify-content:center;column-gap:20px;padding-top:1.5em}@media(min-width: 992px){div.quarto-about-broadside .about-links{flex-direction:row;column-gap:.8em;row-gap:15px;flex-wrap:wrap}}@media(max-width: 991.98px){div.quarto-about-broadside .about-links{flex-direction:column;row-gap:1em;width:100%;padding-bottom:1.5em}}div.quarto-about-broadside .about-link{color:#626d78;text-decoration:none;border:solid 1px}@media(min-width: 992px){div.quarto-about-broadside .about-link{font-size:.8em;padding:.25em .5em;border-radius:4px}}@media(max-width: 991.98px){div.quarto-about-broadside .about-link{font-size:1.1em;padding:.5em .5em;text-align:center;border-radius:6px}}div.quarto-about-broadside .about-link:hover{color:#6d6e71}div.quarto-about-broadside .about-link i.bi{margin-right:.15em}@media(min-width: 992px){div.quarto-about-broadside .about-link{border:none}}.tippy-box[data-theme~=quarto]{background-color:#fff;border:solid 1px #dee2e6;border-radius:.25rem;color:#343a40;font-size:.875rem}.tippy-box[data-theme~=quarto]>.tippy-backdrop{background-color:#fff}.tippy-box[data-theme~=quarto]>.tippy-arrow:after,.tippy-box[data-theme~=quarto]>.tippy-svg-arrow:after{content:"";position:absolute;z-index:-1}.tippy-box[data-theme~=quarto]>.tippy-arrow:after{border-color:rgba(0,0,0,0);border-style:solid}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-6px}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-6px}.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-6px}.tippy-box[data-placement^=left]>.tippy-arrow:before{right:-6px}.tippy-box[data-theme~=quarto][data-placement^=top]>.tippy-arrow:before{border-top-color:#fff}.tippy-box[data-theme~=quarto][data-placement^=top]>.tippy-arrow:after{border-top-color:#dee2e6;border-width:7px 7px 0;top:17px;left:1px}.tippy-box[data-theme~=quarto][data-placement^=top]>.tippy-svg-arrow>svg{top:16px}.tippy-box[data-theme~=quarto][data-placement^=top]>.tippy-svg-arrow:after{top:17px}.tippy-box[data-theme~=quarto][data-placement^=bottom]>.tippy-arrow:before{border-bottom-color:#fff;bottom:16px}.tippy-box[data-theme~=quarto][data-placement^=bottom]>.tippy-arrow:after{border-bottom-color:#dee2e6;border-width:0 7px 7px;bottom:17px;left:1px}.tippy-box[data-theme~=quarto][data-placement^=bottom]>.tippy-svg-arrow>svg{bottom:15px}.tippy-box[data-theme~=quarto][data-placement^=bottom]>.tippy-svg-arrow:after{bottom:17px}.tippy-box[data-theme~=quarto][data-placement^=left]>.tippy-arrow:before{border-left-color:#fff}.tippy-box[data-theme~=quarto][data-placement^=left]>.tippy-arrow:after{border-left-color:#dee2e6;border-width:7px 0 7px 7px;left:17px;top:1px}.tippy-box[data-theme~=quarto][data-placement^=left]>.tippy-svg-arrow>svg{left:11px}.tippy-box[data-theme~=quarto][data-placement^=left]>.tippy-svg-arrow:after{left:12px}.tippy-box[data-theme~=quarto][data-placement^=right]>.tippy-arrow:before{border-right-color:#fff;right:16px}.tippy-box[data-theme~=quarto][data-placement^=right]>.tippy-arrow:after{border-width:7px 7px 7px 0;right:17px;top:1px;border-right-color:#dee2e6}.tippy-box[data-theme~=quarto][data-placement^=right]>.tippy-svg-arrow>svg{right:11px}.tippy-box[data-theme~=quarto][data-placement^=right]>.tippy-svg-arrow:after{right:12px}.tippy-box[data-theme~=quarto]>.tippy-svg-arrow{fill:#343a40}.tippy-box[data-theme~=quarto]>.tippy-svg-arrow:after{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMCA2czEuNzk2LS4wMTMgNC42Ny0zLjYxNUM1Ljg1MS45IDYuOTMuMDA2IDggMGMxLjA3LS4wMDYgMi4xNDguODg3IDMuMzQzIDIuMzg1QzE0LjIzMyA2LjAwNSAxNiA2IDE2IDZIMHoiIGZpbGw9InJnYmEoMCwgOCwgMTYsIDAuMikiLz48L3N2Zz4=);background-size:16px 6px;width:16px;height:6px}.top-right{position:absolute;top:1em;right:1em}.visually-hidden{border:0;clip:rect(0 0 0 0);height:auto;margin:0;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap}.hidden{display:none !important}.zindex-bottom{z-index:-1 !important}figure.figure{display:block}.quarto-layout-panel{margin-bottom:1em}.quarto-layout-panel>figure{width:100%}.quarto-layout-panel>figure>figcaption,.quarto-layout-panel>.panel-caption{margin-top:10pt}.quarto-layout-panel>.table-caption{margin-top:0px}.table-caption p{margin-bottom:.5em}.quarto-layout-row{display:flex;flex-direction:row;align-items:flex-start}.quarto-layout-valign-top{align-items:flex-start}.quarto-layout-valign-bottom{align-items:flex-end}.quarto-layout-valign-center{align-items:center}.quarto-layout-cell{position:relative;margin-right:20px}.quarto-layout-cell:last-child{margin-right:0}.quarto-layout-cell figure,.quarto-layout-cell>p{margin:.2em}.quarto-layout-cell img{max-width:100%}.quarto-layout-cell .html-widget{width:100% !important}.quarto-layout-cell div figure p{margin:0}.quarto-layout-cell figure{display:block;margin-inline-start:0;margin-inline-end:0}.quarto-layout-cell table{display:inline-table}.quarto-layout-cell-subref figcaption,figure .quarto-layout-row figure figcaption{text-align:center;font-style:italic}.quarto-figure{position:relative;margin-bottom:1em}.quarto-figure>figure{width:100%;margin-bottom:0}.quarto-figure-left>figure>p,.quarto-figure-left>figure>div{text-align:left}.quarto-figure-center>figure>p,.quarto-figure-center>figure>div{text-align:center}.quarto-figure-right>figure>p,.quarto-figure-right>figure>div{text-align:right}.quarto-figure>figure>div.cell-annotation,.quarto-figure>figure>div code{text-align:left}figure>p:empty{display:none}figure>p:first-child{margin-top:0;margin-bottom:0}figure>figcaption.quarto-float-caption-bottom{margin-bottom:.5em}figure>figcaption.quarto-float-caption-top{margin-top:.5em}div[id^=tbl-]{position:relative}.quarto-figure>.anchorjs-link{position:absolute;top:.6em;right:.5em}div[id^=tbl-]>.anchorjs-link{position:absolute;top:.7em;right:.3em}.quarto-figure:hover>.anchorjs-link,div[id^=tbl-]:hover>.anchorjs-link,h2:hover>.anchorjs-link,.h2:hover>.anchorjs-link,h3:hover>.anchorjs-link,.h3:hover>.anchorjs-link,h4:hover>.anchorjs-link,.h4:hover>.anchorjs-link,h5:hover>.anchorjs-link,.h5:hover>.anchorjs-link,h6:hover>.anchorjs-link,.h6:hover>.anchorjs-link,.reveal-anchorjs-link>.anchorjs-link{opacity:1}#title-block-header{margin-block-end:1rem;position:relative;margin-top:-1px}#title-block-header .abstract{margin-block-start:1rem}#title-block-header .abstract .abstract-title{font-weight:600}#title-block-header a{text-decoration:none}#title-block-header .author,#title-block-header .date,#title-block-header .doi{margin-block-end:.2rem}#title-block-header .quarto-title-block>div{display:flex}#title-block-header .quarto-title-block>div>h1,#title-block-header .quarto-title-block>div>.h1{flex-grow:1}#title-block-header .quarto-title-block>div>button{flex-shrink:0;height:2.25rem;margin-top:0}@media(min-width: 992px){#title-block-header .quarto-title-block>div>button{margin-top:5px}}tr.header>th>p:last-of-type{margin-bottom:0px}table,table.table{margin-top:.5rem;margin-bottom:.5rem}caption,.table-caption{padding-top:.5rem;padding-bottom:.5rem;text-align:center}figure.quarto-float-tbl figcaption.quarto-float-caption-top{margin-top:.5rem;margin-bottom:.25rem;text-align:center}figure.quarto-float-tbl figcaption.quarto-float-caption-bottom{padding-top:.25rem;margin-bottom:.5rem;text-align:center}.utterances{max-width:none;margin-left:-8px}iframe{margin-bottom:1em}details{margin-bottom:1em}details[show]{margin-bottom:0}details>summary{color:#6c757d}details>summary>p:only-child{display:inline}pre.sourceCode,code.sourceCode{position:relative}p code:not(.sourceCode){white-space:pre-wrap}code{white-space:pre}@media print{code{white-space:pre-wrap}}pre>code{display:block}pre>code.sourceCode{white-space:pre}pre>code.sourceCode>span>a:first-child::before{text-decoration:none}pre.code-overflow-wrap>code.sourceCode{white-space:pre-wrap}pre.code-overflow-scroll>code.sourceCode{white-space:pre}code a:any-link{color:inherit;text-decoration:none}code a:hover{color:inherit;text-decoration:underline}ul.task-list{padding-left:1em}[data-tippy-root]{display:inline-block}.tippy-content .footnote-back{display:none}.footnote-back{margin-left:.2em}.tippy-content{overflow-x:auto}.quarto-embedded-source-code{display:none}.quarto-unresolved-ref{font-weight:600}.quarto-cover-image{max-width:35%;float:right;margin-left:30px}.cell-output-display .widget-subarea{margin-bottom:1em}.cell-output-display:not(.no-overflow-x),.knitsql-table:not(.no-overflow-x){overflow-x:auto}.panel-input{margin-bottom:1em}.panel-input>div,.panel-input>div>div{display:inline-block;vertical-align:top;padding-right:12px}.panel-input>p:last-child{margin-bottom:0}.layout-sidebar{margin-bottom:1em}.layout-sidebar .tab-content{border:none}.tab-content>.page-columns.active{display:grid}div.sourceCode>iframe{width:100%;height:300px;margin-bottom:-0.5em}a{text-underline-offset:3px}div.ansi-escaped-output{font-family:monospace;display:block}/*! * * ansi colors from IPython notebook's * -*/.ansi-black-fg{color:#3e424d}.ansi-black-bg{background-color:#3e424d}.ansi-black-intense-fg{color:#282c36}.ansi-black-intense-bg{background-color:#282c36}.ansi-red-fg{color:#e75c58}.ansi-red-bg{background-color:#e75c58}.ansi-red-intense-fg{color:#b22b31}.ansi-red-intense-bg{background-color:#b22b31}.ansi-green-fg{color:#00a250}.ansi-green-bg{background-color:#00a250}.ansi-green-intense-fg{color:#007427}.ansi-green-intense-bg{background-color:#007427}.ansi-yellow-fg{color:#ddb62b}.ansi-yellow-bg{background-color:#ddb62b}.ansi-yellow-intense-fg{color:#b27d12}.ansi-yellow-intense-bg{background-color:#b27d12}.ansi-blue-fg{color:#208ffb}.ansi-blue-bg{background-color:#208ffb}.ansi-blue-intense-fg{color:#0065ca}.ansi-blue-intense-bg{background-color:#0065ca}.ansi-magenta-fg{color:#d160c4}.ansi-magenta-bg{background-color:#d160c4}.ansi-magenta-intense-fg{color:#a03196}.ansi-magenta-intense-bg{background-color:#a03196}.ansi-cyan-fg{color:#60c6c8}.ansi-cyan-bg{background-color:#60c6c8}.ansi-cyan-intense-fg{color:#258f8f}.ansi-cyan-intense-bg{background-color:#258f8f}.ansi-white-fg{color:#c5c1b4}.ansi-white-bg{background-color:#c5c1b4}.ansi-white-intense-fg{color:#a1a6b2}.ansi-white-intense-bg{background-color:#a1a6b2}.ansi-default-inverse-fg{color:#fff}.ansi-default-inverse-bg{background-color:#000}.ansi-bold{font-weight:bold}.ansi-underline{text-decoration:underline}:root{--quarto-body-bg: #fff;--quarto-body-color: #373a3c;--quarto-text-muted: #6c757d;--quarto-border-color: #dee2e6;--quarto-border-width: 1px;--quarto-border-radius: 0.25rem}table.gt_table{color:var(--quarto-body-color);font-size:1em;width:100%;background-color:rgba(0,0,0,0);border-top-width:inherit;border-bottom-width:inherit;border-color:var(--quarto-border-color)}table.gt_table th.gt_column_spanner_outer{color:var(--quarto-body-color);background-color:rgba(0,0,0,0);border-top-width:inherit;border-bottom-width:inherit;border-color:var(--quarto-border-color)}table.gt_table th.gt_col_heading{color:var(--quarto-body-color);font-weight:bold;background-color:rgba(0,0,0,0)}table.gt_table thead.gt_col_headings{border-bottom:1px solid currentColor;border-top-width:inherit;border-top-color:var(--quarto-border-color)}table.gt_table thead.gt_col_headings:not(:first-child){border-top-width:1px;border-top-color:var(--quarto-border-color)}table.gt_table td.gt_row{border-bottom-width:1px;border-bottom-color:var(--quarto-border-color);border-top-width:0px}table.gt_table tbody.gt_table_body{border-top-width:1px;border-bottom-width:1px;border-bottom-color:var(--quarto-border-color);border-top-color:currentColor}div.columns{display:initial;gap:initial}div.column{display:inline-block;overflow-x:initial;vertical-align:top;width:50%}.code-annotation-tip-content{word-wrap:break-word}.code-annotation-container-hidden{display:none !important}dl.code-annotation-container-grid{display:grid;grid-template-columns:min-content auto}dl.code-annotation-container-grid dt{grid-column:1}dl.code-annotation-container-grid dd{grid-column:2}pre.sourceCode.code-annotation-code{padding-right:0}code.sourceCode .code-annotation-anchor{z-index:100;position:absolute;right:.5em;left:inherit;background-color:rgba(0,0,0,0)}:root{--mermaid-bg-color: #fff;--mermaid-edge-color: #373a3c;--mermaid-node-fg-color: #373a3c;--mermaid-fg-color: #373a3c;--mermaid-fg-color--lighter: #4f5457;--mermaid-fg-color--lightest: #686d71;--mermaid-font-family: Source Sans Pro, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;--mermaid-label-bg-color: #fff;--mermaid-label-fg-color: #6D6E71;--mermaid-node-bg-color: rgba(109, 110, 113, 0.1);--mermaid-node-fg-color: #373a3c}@media print{:root{font-size:11pt}#quarto-sidebar,#TOC,.nav-page{display:none}.page-columns .content{grid-column-start:page-start}.fixed-top{position:relative}.panel-caption,.figure-caption,figcaption{color:#666}}.code-copy-button{position:absolute;top:0;right:0;border:0;margin-top:5px;margin-right:5px;background-color:rgba(0,0,0,0);z-index:3}.code-copy-button:focus{outline:none}.code-copy-button-tooltip{font-size:.75em}pre.sourceCode:hover>.code-copy-button>.bi::before{display:inline-block;height:1rem;width:1rem;content:"";vertical-align:-0.125em;background-image:url('data:image/svg+xml,');background-repeat:no-repeat;background-size:1rem 1rem}pre.sourceCode:hover>.code-copy-button-checked>.bi::before{background-image:url('data:image/svg+xml,')}pre.sourceCode:hover>.code-copy-button:hover>.bi::before{background-image:url('data:image/svg+xml,')}pre.sourceCode:hover>.code-copy-button-checked:hover>.bi::before{background-image:url('data:image/svg+xml,')}main ol ol,main ul ul,main ol ul,main ul ol{margin-bottom:1em}ul>li:not(:has(>p))>ul,ol>li:not(:has(>p))>ul,ul>li:not(:has(>p))>ol,ol>li:not(:has(>p))>ol{margin-bottom:0}ul>li:not(:has(>p))>ul>li:has(>p),ol>li:not(:has(>p))>ul>li:has(>p),ul>li:not(:has(>p))>ol>li:has(>p),ol>li:not(:has(>p))>ol>li:has(>p){margin-top:1rem}body{margin:0}main.page-columns>header>h1.title,main.page-columns>header>.title.h1{margin-bottom:0}@media(min-width: 992px){body .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start page-start-inset] 35px [body-start-outset] 35px [body-start] 1.5em [body-content-start] minmax(500px, calc( 850px - 3em )) [body-content-end] 1.5em [body-end] 35px [body-end-outset] minmax(75px, 145px) [page-end-inset] 35px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.fullcontent:not(.floating):not(.docked) .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start page-start-inset] 35px [body-start-outset] 35px [body-start] 1.5em [body-content-start] minmax(500px, calc( 850px - 3em )) [body-content-end] 1.5em [body-end] 35px [body-end-outset] 35px [page-end-inset page-end] 5fr [screen-end-inset] 1.5em}body.slimcontent:not(.floating):not(.docked) .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start page-start-inset] 35px [body-start-outset] 35px [body-start] 1.5em [body-content-start] minmax(500px, calc( 850px - 3em )) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(0px, 200px) [page-end-inset] 35px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.listing:not(.floating):not(.docked) .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start] minmax(50px, 100px) [page-start-inset] 50px [body-start-outset] 50px [body-start] 1.5em [body-content-start] minmax(500px, calc( 850px - 3em )) [body-content-end] 3em [body-end] 50px [body-end-outset] minmax(0px, 250px) [page-end-inset] minmax(50px, 100px) [page-end] 1fr [screen-end-inset] 1.5em [screen-end]}body:not(.floating):not(.docked) .page-columns.toc-left{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] 35px [page-start-inset] minmax(0px, 175px) [body-start-outset] 35px [body-start] 1.5em [body-content-start] minmax(450px, calc( 800px - 3em )) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(0px, 200px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body:not(.floating):not(.docked) .page-columns.toc-left .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] 35px [page-start-inset] minmax(0px, 175px) [body-start-outset] 35px [body-start] 1.5em [body-content-start] minmax(450px, calc( 800px - 3em )) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(0px, 200px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.floating .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] minmax(25px, 50px) [page-start-inset] minmax(50px, 150px) [body-start-outset] minmax(25px, 50px) [body-start] 1.5em [body-content-start] minmax(500px, calc( 800px - 3em )) [body-content-end] 1.5em [body-end] minmax(25px, 50px) [body-end-outset] minmax(50px, 150px) [page-end-inset] minmax(25px, 50px) [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.docked .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start] minmax(50px, 100px) [page-start-inset] 50px [body-start-outset] 50px [body-start] 1.5em [body-content-start] minmax(500px, calc( 1000px - 3em )) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(50px, 100px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.docked.fullcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start] minmax(50px, 100px) [page-start-inset] 50px [body-start-outset] 50px [body-start] 1.5em [body-content-start] minmax(500px, calc( 1000px - 3em )) [body-content-end] 1.5em [body-end body-end-outset page-end-inset page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.floating.fullcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] 50px [page-start-inset] minmax(50px, 150px) [body-start-outset] 50px [body-start] 1.5em [body-content-start] minmax(500px, calc( 800px - 3em )) [body-content-end] 1.5em [body-end body-end-outset page-end-inset page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.docked.slimcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start] minmax(50px, 100px) [page-start-inset] 50px [body-start-outset] 50px [body-start] 1.5em [body-content-start] minmax(450px, calc( 750px - 3em )) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(0px, 200px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.docked.listing .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start] minmax(50px, 100px) [page-start-inset] 50px [body-start-outset] 50px [body-start] 1.5em [body-content-start] minmax(500px, calc( 1000px - 3em )) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(0px, 200px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.floating.slimcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] 50px [page-start-inset] minmax(50px, 150px) [body-start-outset] 50px [body-start] 1.5em [body-content-start] minmax(450px, calc( 750px - 3em )) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(50px, 150px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.floating.listing .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] minmax(25px, 50px) [page-start-inset] minmax(50px, 150px) [body-start-outset] minmax(25px, 50px) [body-start] 1.5em [body-content-start] minmax(500px, calc( 800px - 3em )) [body-content-end] 1.5em [body-end] minmax(25px, 50px) [body-end-outset] minmax(50px, 150px) [page-end-inset] minmax(25px, 50px) [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}}@media(max-width: 991.98px){body .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset] 5fr [body-start] 1.5em [body-content-start] minmax(500px, calc( 800px - 3em )) [body-content-end] 1.5em [body-end] 35px [body-end-outset] minmax(75px, 145px) [page-end-inset] 35px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.fullcontent:not(.floating):not(.docked) .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset] 5fr [body-start] 1.5em [body-content-start] minmax(500px, calc( 800px - 3em )) [body-content-end] 1.5em [body-end body-end-outset page-end-inset page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.slimcontent:not(.floating):not(.docked) .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset] 5fr [body-start] 1.5em [body-content-start] minmax(500px, calc( 800px - 3em )) [body-content-end] 1.5em [body-end] 35px [body-end-outset] minmax(75px, 145px) [page-end-inset] 35px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.listing:not(.floating):not(.docked) .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset] 5fr [body-start] 1.5em [body-content-start] minmax(500px, calc( 1250px - 3em )) [body-content-end body-end body-end-outset page-end-inset page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body:not(.floating):not(.docked) .page-columns.toc-left{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] 35px [page-start-inset] minmax(0px, 145px) [body-start-outset] 35px [body-start] 1.5em [body-content-start] minmax(450px, calc( 800px - 3em )) [body-content-end] 1.5em [body-end body-end-outset page-end-inset page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body:not(.floating):not(.docked) .page-columns.toc-left .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] 35px [page-start-inset] minmax(0px, 145px) [body-start-outset] 35px [body-start] 1.5em [body-content-start] minmax(450px, calc( 800px - 3em )) [body-content-end] 1.5em [body-end body-end-outset page-end-inset page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.floating .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start page-start-inset body-start-outset body-start] 1.5em [body-content-start] minmax(500px, calc( 750px - 3em )) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(75px, 150px) [page-end-inset] 25px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.docked .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset body-start body-content-start] minmax(500px, calc( 750px - 3em )) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(25px, 50px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.docked.fullcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset body-start body-content-start] minmax(500px, calc( 1000px - 3em )) [body-content-end] 1.5em [body-end body-end-outset page-end-inset page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.floating.fullcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start page-start-inset body-start-outset body-start] 1em [body-content-start] minmax(500px, calc( 800px - 3em )) [body-content-end] 1.5em [body-end body-end-outset page-end-inset page-end] 4fr [screen-end-inset] 1.5em [screen-end]}body.docked.slimcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset body-start body-content-start] minmax(500px, calc( 750px - 3em )) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(25px, 50px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.docked.listing .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset body-start body-content-start] minmax(500px, calc( 750px - 3em )) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(25px, 50px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.floating.slimcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start page-start-inset body-start-outset body-start] 1em [body-content-start] minmax(500px, calc( 750px - 3em )) [body-content-end] 1.5em [body-end] 35px [body-end-outset] minmax(75px, 145px) [page-end-inset] 35px [page-end] 4fr [screen-end-inset] 1.5em [screen-end]}body.floating.listing .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start page-start-inset body-start-outset body-start] 1em [body-content-start] minmax(500px, calc( 750px - 3em )) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(75px, 150px) [page-end-inset] 25px [page-end] 4fr [screen-end-inset] 1.5em [screen-end]}}@media(max-width: 767.98px){body .page-columns,body.fullcontent:not(.floating):not(.docked) .page-columns,body.slimcontent:not(.floating):not(.docked) .page-columns,body.docked .page-columns,body.docked.slimcontent .page-columns,body.docked.fullcontent .page-columns,body.floating .page-columns,body.floating.slimcontent .page-columns,body.floating.fullcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset body-start body-content-start] minmax(0px, 1fr) [body-content-end body-end body-end-outset page-end-inset page-end screen-end-inset] 1.5em [screen-end]}body:not(.floating):not(.docked) .page-columns.toc-left{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset body-start body-content-start] minmax(0px, 1fr) [body-content-end body-end body-end-outset page-end-inset page-end screen-end-inset] 1.5em [screen-end]}body:not(.floating):not(.docked) .page-columns.toc-left .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset body-start body-content-start] minmax(0px, 1fr) [body-content-end body-end body-end-outset page-end-inset page-end screen-end-inset] 1.5em [screen-end]}nav[role=doc-toc]{display:none}}body,.page-row-navigation{grid-template-rows:[page-top] max-content [contents-top] max-content [contents-bottom] max-content [page-bottom]}.page-rows-contents{grid-template-rows:[content-top] minmax(max-content, 1fr) [content-bottom] minmax(60px, max-content) [page-bottom]}.page-full{grid-column:screen-start/screen-end !important}.page-columns>*{grid-column:body-content-start/body-content-end}.page-columns.column-page>*{grid-column:page-start/page-end}.page-columns.column-page-left>*{grid-column:page-start/body-content-end}.page-columns.column-page-right>*{grid-column:body-content-start/page-end}.page-rows{grid-auto-rows:auto}.header{grid-column:screen-start/screen-end;grid-row:page-top/contents-top}#quarto-content{padding:0;grid-column:screen-start/screen-end;grid-row:contents-top/contents-bottom}body.floating .sidebar.sidebar-navigation{grid-column:page-start/body-start;grid-row:content-top/page-bottom}body.docked .sidebar.sidebar-navigation{grid-column:screen-start/body-start;grid-row:content-top/page-bottom}.sidebar.toc-left{grid-column:page-start/body-start;grid-row:content-top/page-bottom}.sidebar.margin-sidebar{grid-column:body-end/page-end;grid-row:content-top/page-bottom}.page-columns .content{grid-column:body-content-start/body-content-end;grid-row:content-top/content-bottom;align-content:flex-start}.page-columns .page-navigation{grid-column:body-content-start/body-content-end;grid-row:content-bottom/page-bottom}.page-columns .footer{grid-column:screen-start/screen-end;grid-row:contents-bottom/page-bottom}.page-columns .column-body{grid-column:body-content-start/body-content-end}.page-columns .column-body-fullbleed{grid-column:body-start/body-end}.page-columns .column-body-outset{grid-column:body-start-outset/body-end-outset;z-index:998;transform:translate3d(0, 0, 0)}.page-columns .column-body-outset table{background:#fff}.page-columns .column-body-outset-left{grid-column:body-start-outset/body-content-end;z-index:998;transform:translate3d(0, 0, 0)}.page-columns .column-body-outset-left table{background:#fff}.page-columns .column-body-outset-right{grid-column:body-content-start/body-end-outset;z-index:998;transform:translate3d(0, 0, 0)}.page-columns .column-body-outset-right table{background:#fff}.page-columns .column-page{grid-column:page-start/page-end;z-index:998;transform:translate3d(0, 0, 0)}.page-columns .column-page table{background:#fff}.page-columns .column-page-inset{grid-column:page-start-inset/page-end-inset;z-index:998;transform:translate3d(0, 0, 0)}.page-columns .column-page-inset table{background:#fff}.page-columns .column-page-inset-left{grid-column:page-start-inset/body-content-end;z-index:998;transform:translate3d(0, 0, 0)}.page-columns .column-page-inset-left table{background:#fff}.page-columns .column-page-inset-right{grid-column:body-content-start/page-end-inset;z-index:998;transform:translate3d(0, 0, 0)}.page-columns .column-page-inset-right figcaption table{background:#fff}.page-columns .column-page-left{grid-column:page-start/body-content-end;z-index:998;transform:translate3d(0, 0, 0)}.page-columns .column-page-left table{background:#fff}.page-columns .column-page-right{grid-column:body-content-start/page-end;z-index:998;transform:translate3d(0, 0, 0)}.page-columns .column-page-right figcaption table{background:#fff}#quarto-content.page-columns #quarto-margin-sidebar,#quarto-content.page-columns #quarto-sidebar{z-index:1}@media(max-width: 991.98px){#quarto-content.page-columns #quarto-margin-sidebar.collapse,#quarto-content.page-columns #quarto-sidebar.collapse,#quarto-content.page-columns #quarto-margin-sidebar.collapsing,#quarto-content.page-columns #quarto-sidebar.collapsing{z-index:1055}}#quarto-content.page-columns main.column-page,#quarto-content.page-columns main.column-page-right,#quarto-content.page-columns main.column-page-left{z-index:0}.page-columns .column-screen-inset{grid-column:screen-start-inset/screen-end-inset;z-index:998;transform:translate3d(0, 0, 0)}.page-columns .column-screen-inset table{background:#fff}.page-columns .column-screen-inset-left{grid-column:screen-start-inset/body-content-end;z-index:998;transform:translate3d(0, 0, 0)}.page-columns .column-screen-inset-left table{background:#fff}.page-columns .column-screen-inset-right{grid-column:body-content-start/screen-end-inset;z-index:998;transform:translate3d(0, 0, 0)}.page-columns .column-screen-inset-right table{background:#fff}.page-columns .column-screen{grid-column:screen-start/screen-end;z-index:998;transform:translate3d(0, 0, 0)}.page-columns .column-screen table{background:#fff}.page-columns .column-screen-left{grid-column:screen-start/body-content-end;z-index:998;transform:translate3d(0, 0, 0)}.page-columns .column-screen-left table{background:#fff}.page-columns .column-screen-right{grid-column:body-content-start/screen-end;z-index:998;transform:translate3d(0, 0, 0)}.page-columns .column-screen-right table{background:#fff}.page-columns .column-screen-inset-shaded{grid-column:screen-start/screen-end;padding:1em;background:#f8f9fa;z-index:998;transform:translate3d(0, 0, 0);margin-bottom:1em}.zindex-content{z-index:998;transform:translate3d(0, 0, 0)}.zindex-modal{z-index:1055;transform:translate3d(0, 0, 0)}.zindex-over-content{z-index:999;transform:translate3d(0, 0, 0)}img.img-fluid.column-screen,img.img-fluid.column-screen-inset-shaded,img.img-fluid.column-screen-inset,img.img-fluid.column-screen-inset-left,img.img-fluid.column-screen-inset-right,img.img-fluid.column-screen-left,img.img-fluid.column-screen-right{width:100%}@media(min-width: 992px){.margin-caption,div.aside,aside,.column-margin{grid-column:body-end/page-end !important;z-index:998}.column-sidebar{grid-column:page-start/body-start !important;z-index:998}.column-leftmargin{grid-column:screen-start-inset/body-start !important;z-index:998}.no-row-height{height:1em;overflow:visible}}@media(max-width: 991.98px){.margin-caption,div.aside,aside,.column-margin{grid-column:body-end/page-end !important;z-index:998}.no-row-height{height:1em;overflow:visible}.page-columns.page-full{overflow:visible}.page-columns.toc-left .margin-caption,.page-columns.toc-left div.aside,.page-columns.toc-left aside,.page-columns.toc-left .column-margin{grid-column:body-content-start/body-content-end !important;z-index:998;transform:translate3d(0, 0, 0)}.page-columns.toc-left .no-row-height{height:initial;overflow:initial}}@media(max-width: 767.98px){.margin-caption,div.aside,aside,.column-margin{grid-column:body-content-start/body-content-end !important;z-index:998;transform:translate3d(0, 0, 0)}.no-row-height{height:initial;overflow:initial}#quarto-margin-sidebar{display:none}#quarto-sidebar-toc-left{display:none}.hidden-sm{display:none}}.panel-grid{display:grid;grid-template-rows:repeat(1, 1fr);grid-template-columns:repeat(24, 1fr);gap:1em}.panel-grid .g-col-1{grid-column:auto/span 1}.panel-grid .g-col-2{grid-column:auto/span 2}.panel-grid .g-col-3{grid-column:auto/span 3}.panel-grid .g-col-4{grid-column:auto/span 4}.panel-grid .g-col-5{grid-column:auto/span 5}.panel-grid .g-col-6{grid-column:auto/span 6}.panel-grid .g-col-7{grid-column:auto/span 7}.panel-grid .g-col-8{grid-column:auto/span 8}.panel-grid .g-col-9{grid-column:auto/span 9}.panel-grid .g-col-10{grid-column:auto/span 10}.panel-grid .g-col-11{grid-column:auto/span 11}.panel-grid .g-col-12{grid-column:auto/span 12}.panel-grid .g-col-13{grid-column:auto/span 13}.panel-grid .g-col-14{grid-column:auto/span 14}.panel-grid .g-col-15{grid-column:auto/span 15}.panel-grid .g-col-16{grid-column:auto/span 16}.panel-grid .g-col-17{grid-column:auto/span 17}.panel-grid .g-col-18{grid-column:auto/span 18}.panel-grid .g-col-19{grid-column:auto/span 19}.panel-grid .g-col-20{grid-column:auto/span 20}.panel-grid .g-col-21{grid-column:auto/span 21}.panel-grid .g-col-22{grid-column:auto/span 22}.panel-grid .g-col-23{grid-column:auto/span 23}.panel-grid .g-col-24{grid-column:auto/span 24}.panel-grid .g-start-1{grid-column-start:1}.panel-grid .g-start-2{grid-column-start:2}.panel-grid .g-start-3{grid-column-start:3}.panel-grid .g-start-4{grid-column-start:4}.panel-grid .g-start-5{grid-column-start:5}.panel-grid .g-start-6{grid-column-start:6}.panel-grid .g-start-7{grid-column-start:7}.panel-grid .g-start-8{grid-column-start:8}.panel-grid .g-start-9{grid-column-start:9}.panel-grid .g-start-10{grid-column-start:10}.panel-grid .g-start-11{grid-column-start:11}.panel-grid .g-start-12{grid-column-start:12}.panel-grid .g-start-13{grid-column-start:13}.panel-grid .g-start-14{grid-column-start:14}.panel-grid .g-start-15{grid-column-start:15}.panel-grid .g-start-16{grid-column-start:16}.panel-grid .g-start-17{grid-column-start:17}.panel-grid .g-start-18{grid-column-start:18}.panel-grid .g-start-19{grid-column-start:19}.panel-grid .g-start-20{grid-column-start:20}.panel-grid .g-start-21{grid-column-start:21}.panel-grid .g-start-22{grid-column-start:22}.panel-grid .g-start-23{grid-column-start:23}@media(min-width: 576px){.panel-grid .g-col-sm-1{grid-column:auto/span 1}.panel-grid .g-col-sm-2{grid-column:auto/span 2}.panel-grid .g-col-sm-3{grid-column:auto/span 3}.panel-grid .g-col-sm-4{grid-column:auto/span 4}.panel-grid .g-col-sm-5{grid-column:auto/span 5}.panel-grid .g-col-sm-6{grid-column:auto/span 6}.panel-grid .g-col-sm-7{grid-column:auto/span 7}.panel-grid .g-col-sm-8{grid-column:auto/span 8}.panel-grid .g-col-sm-9{grid-column:auto/span 9}.panel-grid .g-col-sm-10{grid-column:auto/span 10}.panel-grid .g-col-sm-11{grid-column:auto/span 11}.panel-grid .g-col-sm-12{grid-column:auto/span 12}.panel-grid .g-col-sm-13{grid-column:auto/span 13}.panel-grid .g-col-sm-14{grid-column:auto/span 14}.panel-grid .g-col-sm-15{grid-column:auto/span 15}.panel-grid .g-col-sm-16{grid-column:auto/span 16}.panel-grid .g-col-sm-17{grid-column:auto/span 17}.panel-grid .g-col-sm-18{grid-column:auto/span 18}.panel-grid .g-col-sm-19{grid-column:auto/span 19}.panel-grid .g-col-sm-20{grid-column:auto/span 20}.panel-grid .g-col-sm-21{grid-column:auto/span 21}.panel-grid .g-col-sm-22{grid-column:auto/span 22}.panel-grid .g-col-sm-23{grid-column:auto/span 23}.panel-grid .g-col-sm-24{grid-column:auto/span 24}.panel-grid .g-start-sm-1{grid-column-start:1}.panel-grid .g-start-sm-2{grid-column-start:2}.panel-grid .g-start-sm-3{grid-column-start:3}.panel-grid .g-start-sm-4{grid-column-start:4}.panel-grid .g-start-sm-5{grid-column-start:5}.panel-grid .g-start-sm-6{grid-column-start:6}.panel-grid .g-start-sm-7{grid-column-start:7}.panel-grid .g-start-sm-8{grid-column-start:8}.panel-grid .g-start-sm-9{grid-column-start:9}.panel-grid .g-start-sm-10{grid-column-start:10}.panel-grid .g-start-sm-11{grid-column-start:11}.panel-grid .g-start-sm-12{grid-column-start:12}.panel-grid .g-start-sm-13{grid-column-start:13}.panel-grid .g-start-sm-14{grid-column-start:14}.panel-grid .g-start-sm-15{grid-column-start:15}.panel-grid .g-start-sm-16{grid-column-start:16}.panel-grid .g-start-sm-17{grid-column-start:17}.panel-grid .g-start-sm-18{grid-column-start:18}.panel-grid .g-start-sm-19{grid-column-start:19}.panel-grid .g-start-sm-20{grid-column-start:20}.panel-grid .g-start-sm-21{grid-column-start:21}.panel-grid .g-start-sm-22{grid-column-start:22}.panel-grid .g-start-sm-23{grid-column-start:23}}@media(min-width: 768px){.panel-grid .g-col-md-1{grid-column:auto/span 1}.panel-grid .g-col-md-2{grid-column:auto/span 2}.panel-grid .g-col-md-3{grid-column:auto/span 3}.panel-grid .g-col-md-4{grid-column:auto/span 4}.panel-grid .g-col-md-5{grid-column:auto/span 5}.panel-grid .g-col-md-6{grid-column:auto/span 6}.panel-grid .g-col-md-7{grid-column:auto/span 7}.panel-grid .g-col-md-8{grid-column:auto/span 8}.panel-grid .g-col-md-9{grid-column:auto/span 9}.panel-grid .g-col-md-10{grid-column:auto/span 10}.panel-grid .g-col-md-11{grid-column:auto/span 11}.panel-grid .g-col-md-12{grid-column:auto/span 12}.panel-grid .g-col-md-13{grid-column:auto/span 13}.panel-grid .g-col-md-14{grid-column:auto/span 14}.panel-grid .g-col-md-15{grid-column:auto/span 15}.panel-grid .g-col-md-16{grid-column:auto/span 16}.panel-grid .g-col-md-17{grid-column:auto/span 17}.panel-grid .g-col-md-18{grid-column:auto/span 18}.panel-grid .g-col-md-19{grid-column:auto/span 19}.panel-grid .g-col-md-20{grid-column:auto/span 20}.panel-grid .g-col-md-21{grid-column:auto/span 21}.panel-grid .g-col-md-22{grid-column:auto/span 22}.panel-grid .g-col-md-23{grid-column:auto/span 23}.panel-grid .g-col-md-24{grid-column:auto/span 24}.panel-grid .g-start-md-1{grid-column-start:1}.panel-grid .g-start-md-2{grid-column-start:2}.panel-grid .g-start-md-3{grid-column-start:3}.panel-grid .g-start-md-4{grid-column-start:4}.panel-grid .g-start-md-5{grid-column-start:5}.panel-grid .g-start-md-6{grid-column-start:6}.panel-grid .g-start-md-7{grid-column-start:7}.panel-grid .g-start-md-8{grid-column-start:8}.panel-grid .g-start-md-9{grid-column-start:9}.panel-grid .g-start-md-10{grid-column-start:10}.panel-grid .g-start-md-11{grid-column-start:11}.panel-grid .g-start-md-12{grid-column-start:12}.panel-grid .g-start-md-13{grid-column-start:13}.panel-grid .g-start-md-14{grid-column-start:14}.panel-grid .g-start-md-15{grid-column-start:15}.panel-grid .g-start-md-16{grid-column-start:16}.panel-grid .g-start-md-17{grid-column-start:17}.panel-grid .g-start-md-18{grid-column-start:18}.panel-grid .g-start-md-19{grid-column-start:19}.panel-grid .g-start-md-20{grid-column-start:20}.panel-grid .g-start-md-21{grid-column-start:21}.panel-grid .g-start-md-22{grid-column-start:22}.panel-grid .g-start-md-23{grid-column-start:23}}@media(min-width: 992px){.panel-grid .g-col-lg-1{grid-column:auto/span 1}.panel-grid .g-col-lg-2{grid-column:auto/span 2}.panel-grid .g-col-lg-3{grid-column:auto/span 3}.panel-grid .g-col-lg-4{grid-column:auto/span 4}.panel-grid .g-col-lg-5{grid-column:auto/span 5}.panel-grid .g-col-lg-6{grid-column:auto/span 6}.panel-grid .g-col-lg-7{grid-column:auto/span 7}.panel-grid .g-col-lg-8{grid-column:auto/span 8}.panel-grid .g-col-lg-9{grid-column:auto/span 9}.panel-grid .g-col-lg-10{grid-column:auto/span 10}.panel-grid .g-col-lg-11{grid-column:auto/span 11}.panel-grid .g-col-lg-12{grid-column:auto/span 12}.panel-grid .g-col-lg-13{grid-column:auto/span 13}.panel-grid .g-col-lg-14{grid-column:auto/span 14}.panel-grid .g-col-lg-15{grid-column:auto/span 15}.panel-grid .g-col-lg-16{grid-column:auto/span 16}.panel-grid .g-col-lg-17{grid-column:auto/span 17}.panel-grid .g-col-lg-18{grid-column:auto/span 18}.panel-grid .g-col-lg-19{grid-column:auto/span 19}.panel-grid .g-col-lg-20{grid-column:auto/span 20}.panel-grid .g-col-lg-21{grid-column:auto/span 21}.panel-grid .g-col-lg-22{grid-column:auto/span 22}.panel-grid .g-col-lg-23{grid-column:auto/span 23}.panel-grid .g-col-lg-24{grid-column:auto/span 24}.panel-grid .g-start-lg-1{grid-column-start:1}.panel-grid .g-start-lg-2{grid-column-start:2}.panel-grid .g-start-lg-3{grid-column-start:3}.panel-grid .g-start-lg-4{grid-column-start:4}.panel-grid .g-start-lg-5{grid-column-start:5}.panel-grid .g-start-lg-6{grid-column-start:6}.panel-grid .g-start-lg-7{grid-column-start:7}.panel-grid .g-start-lg-8{grid-column-start:8}.panel-grid .g-start-lg-9{grid-column-start:9}.panel-grid .g-start-lg-10{grid-column-start:10}.panel-grid .g-start-lg-11{grid-column-start:11}.panel-grid .g-start-lg-12{grid-column-start:12}.panel-grid .g-start-lg-13{grid-column-start:13}.panel-grid .g-start-lg-14{grid-column-start:14}.panel-grid .g-start-lg-15{grid-column-start:15}.panel-grid .g-start-lg-16{grid-column-start:16}.panel-grid .g-start-lg-17{grid-column-start:17}.panel-grid .g-start-lg-18{grid-column-start:18}.panel-grid .g-start-lg-19{grid-column-start:19}.panel-grid .g-start-lg-20{grid-column-start:20}.panel-grid .g-start-lg-21{grid-column-start:21}.panel-grid .g-start-lg-22{grid-column-start:22}.panel-grid .g-start-lg-23{grid-column-start:23}}@media(min-width: 1200px){.panel-grid .g-col-xl-1{grid-column:auto/span 1}.panel-grid .g-col-xl-2{grid-column:auto/span 2}.panel-grid .g-col-xl-3{grid-column:auto/span 3}.panel-grid .g-col-xl-4{grid-column:auto/span 4}.panel-grid .g-col-xl-5{grid-column:auto/span 5}.panel-grid .g-col-xl-6{grid-column:auto/span 6}.panel-grid .g-col-xl-7{grid-column:auto/span 7}.panel-grid .g-col-xl-8{grid-column:auto/span 8}.panel-grid .g-col-xl-9{grid-column:auto/span 9}.panel-grid .g-col-xl-10{grid-column:auto/span 10}.panel-grid .g-col-xl-11{grid-column:auto/span 11}.panel-grid .g-col-xl-12{grid-column:auto/span 12}.panel-grid .g-col-xl-13{grid-column:auto/span 13}.panel-grid .g-col-xl-14{grid-column:auto/span 14}.panel-grid .g-col-xl-15{grid-column:auto/span 15}.panel-grid .g-col-xl-16{grid-column:auto/span 16}.panel-grid .g-col-xl-17{grid-column:auto/span 17}.panel-grid .g-col-xl-18{grid-column:auto/span 18}.panel-grid .g-col-xl-19{grid-column:auto/span 19}.panel-grid .g-col-xl-20{grid-column:auto/span 20}.panel-grid .g-col-xl-21{grid-column:auto/span 21}.panel-grid .g-col-xl-22{grid-column:auto/span 22}.panel-grid .g-col-xl-23{grid-column:auto/span 23}.panel-grid .g-col-xl-24{grid-column:auto/span 24}.panel-grid .g-start-xl-1{grid-column-start:1}.panel-grid .g-start-xl-2{grid-column-start:2}.panel-grid .g-start-xl-3{grid-column-start:3}.panel-grid .g-start-xl-4{grid-column-start:4}.panel-grid .g-start-xl-5{grid-column-start:5}.panel-grid .g-start-xl-6{grid-column-start:6}.panel-grid .g-start-xl-7{grid-column-start:7}.panel-grid .g-start-xl-8{grid-column-start:8}.panel-grid .g-start-xl-9{grid-column-start:9}.panel-grid .g-start-xl-10{grid-column-start:10}.panel-grid .g-start-xl-11{grid-column-start:11}.panel-grid .g-start-xl-12{grid-column-start:12}.panel-grid .g-start-xl-13{grid-column-start:13}.panel-grid .g-start-xl-14{grid-column-start:14}.panel-grid .g-start-xl-15{grid-column-start:15}.panel-grid .g-start-xl-16{grid-column-start:16}.panel-grid .g-start-xl-17{grid-column-start:17}.panel-grid .g-start-xl-18{grid-column-start:18}.panel-grid .g-start-xl-19{grid-column-start:19}.panel-grid .g-start-xl-20{grid-column-start:20}.panel-grid .g-start-xl-21{grid-column-start:21}.panel-grid .g-start-xl-22{grid-column-start:22}.panel-grid .g-start-xl-23{grid-column-start:23}}@media(min-width: 1400px){.panel-grid .g-col-xxl-1{grid-column:auto/span 1}.panel-grid .g-col-xxl-2{grid-column:auto/span 2}.panel-grid .g-col-xxl-3{grid-column:auto/span 3}.panel-grid .g-col-xxl-4{grid-column:auto/span 4}.panel-grid .g-col-xxl-5{grid-column:auto/span 5}.panel-grid .g-col-xxl-6{grid-column:auto/span 6}.panel-grid .g-col-xxl-7{grid-column:auto/span 7}.panel-grid .g-col-xxl-8{grid-column:auto/span 8}.panel-grid .g-col-xxl-9{grid-column:auto/span 9}.panel-grid .g-col-xxl-10{grid-column:auto/span 10}.panel-grid .g-col-xxl-11{grid-column:auto/span 11}.panel-grid .g-col-xxl-12{grid-column:auto/span 12}.panel-grid .g-col-xxl-13{grid-column:auto/span 13}.panel-grid .g-col-xxl-14{grid-column:auto/span 14}.panel-grid .g-col-xxl-15{grid-column:auto/span 15}.panel-grid .g-col-xxl-16{grid-column:auto/span 16}.panel-grid .g-col-xxl-17{grid-column:auto/span 17}.panel-grid .g-col-xxl-18{grid-column:auto/span 18}.panel-grid .g-col-xxl-19{grid-column:auto/span 19}.panel-grid .g-col-xxl-20{grid-column:auto/span 20}.panel-grid .g-col-xxl-21{grid-column:auto/span 21}.panel-grid .g-col-xxl-22{grid-column:auto/span 22}.panel-grid .g-col-xxl-23{grid-column:auto/span 23}.panel-grid .g-col-xxl-24{grid-column:auto/span 24}.panel-grid .g-start-xxl-1{grid-column-start:1}.panel-grid .g-start-xxl-2{grid-column-start:2}.panel-grid .g-start-xxl-3{grid-column-start:3}.panel-grid .g-start-xxl-4{grid-column-start:4}.panel-grid .g-start-xxl-5{grid-column-start:5}.panel-grid .g-start-xxl-6{grid-column-start:6}.panel-grid .g-start-xxl-7{grid-column-start:7}.panel-grid .g-start-xxl-8{grid-column-start:8}.panel-grid .g-start-xxl-9{grid-column-start:9}.panel-grid .g-start-xxl-10{grid-column-start:10}.panel-grid .g-start-xxl-11{grid-column-start:11}.panel-grid .g-start-xxl-12{grid-column-start:12}.panel-grid .g-start-xxl-13{grid-column-start:13}.panel-grid .g-start-xxl-14{grid-column-start:14}.panel-grid .g-start-xxl-15{grid-column-start:15}.panel-grid .g-start-xxl-16{grid-column-start:16}.panel-grid .g-start-xxl-17{grid-column-start:17}.panel-grid .g-start-xxl-18{grid-column-start:18}.panel-grid .g-start-xxl-19{grid-column-start:19}.panel-grid .g-start-xxl-20{grid-column-start:20}.panel-grid .g-start-xxl-21{grid-column-start:21}.panel-grid .g-start-xxl-22{grid-column-start:22}.panel-grid .g-start-xxl-23{grid-column-start:23}}main{margin-top:1em;margin-bottom:1em}h1,.h1,h2,.h2{opacity:.9;margin-top:2rem;margin-bottom:1rem;font-weight:600}h1.title,.title.h1{margin-top:0}h2,.h2{border-bottom:1px solid #dee2e6;padding-bottom:.5rem}h3,.h3{font-weight:600}h3,.h3,h4,.h4{opacity:.9;margin-top:1.5rem}h5,.h5,h6,.h6{opacity:.9}.header-section-number{color:#747a7f}.nav-link.active .header-section-number{color:inherit}mark,.mark{padding:0em}.panel-caption,caption,.figure-caption{font-size:.9rem}.panel-caption,.figure-caption,figcaption{color:#747a7f}.table-caption,caption{color:#373a3c}.quarto-layout-cell[data-ref-parent] caption{color:#747a7f}.column-margin figcaption,.margin-caption,div.aside,aside,.column-margin{color:#747a7f;font-size:.825rem}.panel-caption.margin-caption{text-align:inherit}.column-margin.column-container p{margin-bottom:0}.column-margin.column-container>*:not(.collapse){padding-top:.5em;padding-bottom:.5em;display:block}.column-margin.column-container>*.collapse:not(.show){display:none}@media(min-width: 768px){.column-margin.column-container .callout-margin-content:first-child{margin-top:4.5em}.column-margin.column-container .callout-margin-content-simple:first-child{margin-top:3.5em}}.margin-caption>*{padding-top:.5em;padding-bottom:.5em}@media(max-width: 767.98px){.quarto-layout-row{flex-direction:column}}.nav-tabs .nav-item{margin-top:1px;cursor:pointer}.tab-content{margin-top:0px;border-left:#dee2e6 1px solid;border-right:#dee2e6 1px solid;border-bottom:#dee2e6 1px solid;margin-left:0;padding:1em;margin-bottom:1em}@media(max-width: 767.98px){.layout-sidebar{margin-left:0;margin-right:0}}.panel-sidebar,.panel-sidebar .form-control,.panel-input,.panel-input .form-control,.selectize-dropdown{font-size:.9rem}.panel-sidebar .form-control,.panel-input .form-control{padding-top:.1rem}.tab-pane div.sourceCode{margin-top:0px}.tab-pane>p{padding-top:1em}.tab-content>.tab-pane:not(.active){display:none !important}div.sourceCode{background-color:rgba(233,236,239,.65);border:1px solid rgba(233,236,239,.65);border-radius:.25rem}pre.sourceCode{background-color:rgba(0,0,0,0)}pre.sourceCode{border:none;font-size:.875em;overflow:visible !important;padding:.4em}.callout pre.sourceCode{padding-left:0}div.sourceCode{overflow-y:hidden}.callout div.sourceCode{margin-left:initial}.blockquote{font-size:inherit;padding-left:1rem;padding-right:1.5rem;color:#747a7f}.blockquote h1:first-child,.blockquote .h1:first-child,.blockquote h2:first-child,.blockquote .h2:first-child,.blockquote h3:first-child,.blockquote .h3:first-child,.blockquote h4:first-child,.blockquote .h4:first-child,.blockquote h5:first-child,.blockquote .h5:first-child{margin-top:0}pre{background-color:initial;padding:initial;border:initial}p code:not(.sourceCode),li code:not(.sourceCode),td code:not(.sourceCode){background-color:#f7f7f7;padding:.2em}nav p code:not(.sourceCode),nav li code:not(.sourceCode),nav td code:not(.sourceCode){background-color:rgba(0,0,0,0);padding:0}td code:not(.sourceCode){white-space:pre-wrap}#quarto-embedded-source-code-modal>.modal-dialog{max-width:1000px;padding-left:1.75rem;padding-right:1.75rem}#quarto-embedded-source-code-modal>.modal-dialog>.modal-content>.modal-body{padding:0}#quarto-embedded-source-code-modal>.modal-dialog>.modal-content>.modal-body div.sourceCode{margin:0;padding:.2rem .2rem;border-radius:0px;border:none}#quarto-embedded-source-code-modal>.modal-dialog>.modal-content>.modal-header{padding:.7rem}.code-tools-button{font-size:1rem;padding:.15rem .15rem;margin-left:5px;color:#6c757d;background-color:rgba(0,0,0,0);transition:initial;cursor:pointer}.code-tools-button>.bi::before{display:inline-block;height:1rem;width:1rem;content:"";vertical-align:-0.125em;background-image:url('data:image/svg+xml,');background-repeat:no-repeat;background-size:1rem 1rem}.code-tools-button:hover>.bi::before{background-image:url('data:image/svg+xml,')}#quarto-embedded-source-code-modal .code-copy-button>.bi::before{background-image:url('data:image/svg+xml,')}#quarto-embedded-source-code-modal .code-copy-button-checked>.bi::before{background-image:url('data:image/svg+xml,')}.sidebar{will-change:top;transition:top 200ms linear;position:sticky;overflow-y:auto;padding-top:1.2em;max-height:100vh}.sidebar.toc-left,.sidebar.margin-sidebar{top:0px;padding-top:1em}.sidebar.toc-left>*,.sidebar.margin-sidebar>*{padding-top:.5em}.sidebar.quarto-banner-title-block-sidebar>*{padding-top:1.65em}figure .quarto-notebook-link{margin-top:.5em}.quarto-notebook-link{font-size:.75em;color:#6c757d;margin-bottom:1em;text-decoration:none;display:block}.quarto-notebook-link:hover{text-decoration:underline;color:#6d6e71}.quarto-notebook-link::before{display:inline-block;height:.75rem;width:.75rem;margin-bottom:0em;margin-right:.25em;content:"";vertical-align:-0.125em;background-image:url('data:image/svg+xml,');background-repeat:no-repeat;background-size:.75rem .75rem}.quarto-alternate-notebooks i.bi,.quarto-alternate-formats i.bi{margin-right:.4em}.quarto-notebook .cell-container{display:flex}.quarto-notebook .cell-container .cell{flex-grow:4}.quarto-notebook .cell-container .cell-decorator{padding-top:1.5em;padding-right:1em;text-align:right}.quarto-notebook h2,.quarto-notebook .h2{border-bottom:none}.sidebar .quarto-alternate-formats a,.sidebar .quarto-alternate-notebooks a{text-decoration:none}.sidebar .quarto-alternate-formats a:hover,.sidebar .quarto-alternate-notebooks a:hover{color:#6d6e71}.sidebar .quarto-alternate-notebooks h2,.sidebar .quarto-alternate-notebooks .h2,.sidebar .quarto-alternate-formats h2,.sidebar .quarto-alternate-formats .h2,.sidebar nav[role=doc-toc]>h2,.sidebar nav[role=doc-toc]>.h2{font-size:.875rem;font-weight:400;margin-bottom:.5rem;margin-top:.3rem;font-family:inherit;border-bottom:0;padding-bottom:0;padding-top:0px}.sidebar .quarto-alternate-notebooks h2,.sidebar .quarto-alternate-notebooks .h2,.sidebar .quarto-alternate-formats h2,.sidebar .quarto-alternate-formats .h2{margin-top:1rem}.sidebar nav[role=doc-toc]>ul a{border-left:1px solid #e9ecef;padding-left:.6rem}.sidebar .quarto-alternate-notebooks h2>ul a,.sidebar .quarto-alternate-notebooks .h2>ul a,.sidebar .quarto-alternate-formats h2>ul a,.sidebar .quarto-alternate-formats .h2>ul a{border-left:none;padding-left:.6rem}.sidebar .quarto-alternate-notebooks ul a:empty,.sidebar .quarto-alternate-formats ul a:empty,.sidebar nav[role=doc-toc]>ul a:empty{display:none}.sidebar .quarto-alternate-notebooks ul,.sidebar .quarto-alternate-formats ul,.sidebar nav[role=doc-toc] ul{padding-left:0;list-style:none;font-size:.875rem;font-weight:300}.sidebar .quarto-alternate-notebooks ul li a,.sidebar .quarto-alternate-formats ul li a,.sidebar nav[role=doc-toc]>ul li a{line-height:1.1rem;padding-bottom:.2rem;padding-top:.2rem;color:inherit}.sidebar nav[role=doc-toc] ul>li>ul>li>a{padding-left:1.2em}.sidebar nav[role=doc-toc] ul>li>ul>li>ul>li>a{padding-left:2.4em}.sidebar nav[role=doc-toc] ul>li>ul>li>ul>li>ul>li>a{padding-left:3.6em}.sidebar nav[role=doc-toc] ul>li>ul>li>ul>li>ul>li>ul>li>a{padding-left:4.8em}.sidebar nav[role=doc-toc] ul>li>ul>li>ul>li>ul>li>ul>li>ul>li>a{padding-left:6em}.sidebar nav[role=doc-toc] ul>li>a.active,.sidebar nav[role=doc-toc] ul>li>ul>li>a.active{border-left:1px solid #6d6e71;color:#6d6e71 !important}.sidebar nav[role=doc-toc] ul>li>a:hover,.sidebar nav[role=doc-toc] ul>li>ul>li>a:hover{color:#6d6e71 !important}kbd,.kbd{color:#373a3c;background-color:#f8f9fa;border:1px solid;border-radius:5px;border-color:#dee2e6}div.hanging-indent{margin-left:1em;text-indent:-1em}.citation a,.footnote-ref{text-decoration:none}.footnotes ol{padding-left:1em}.tippy-content>*{margin-bottom:.7em}.tippy-content>*:last-child{margin-bottom:0}.table a{word-break:break-word}.table>thead{border-top-width:1px;border-top-color:#dee2e6;border-bottom:1px solid #b6babc}.callout{margin-top:1.25rem;margin-bottom:1.25rem;border-radius:.25rem;overflow-wrap:break-word}.callout .callout-title-container{overflow-wrap:anywhere}.callout.callout-style-simple{padding:.4em .7em;border-left:5px solid;border-right:1px solid #dee2e6;border-top:1px solid #dee2e6;border-bottom:1px solid #dee2e6}.callout.callout-style-default{border-left:5px solid;border-right:1px solid #dee2e6;border-top:1px solid #dee2e6;border-bottom:1px solid #dee2e6}.callout .callout-body-container{flex-grow:1}.callout.callout-style-simple .callout-body{font-size:.9rem;font-weight:400}.callout.callout-style-default .callout-body{font-size:.9rem;font-weight:400}.callout.callout-titled .callout-body{margin-top:.2em}.callout:not(.no-icon).callout-titled.callout-style-simple .callout-body{padding-left:1.6em}.callout.callout-titled>.callout-header{padding-top:.2em;margin-bottom:-0.2em}.callout.callout-style-simple>div.callout-header{border-bottom:none;font-size:.9rem;font-weight:600;opacity:75%}.callout.callout-style-default>div.callout-header{border-bottom:none;font-weight:600;opacity:85%;font-size:.9rem;padding-left:.5em;padding-right:.5em}.callout.callout-style-default div.callout-body{padding-left:.5em;padding-right:.5em}.callout.callout-style-default div.callout-body>:first-child{margin-top:.5em}.callout>div.callout-header[data-bs-toggle=collapse]{cursor:pointer}.callout.callout-style-default .callout-header[aria-expanded=false],.callout.callout-style-default .callout-header[aria-expanded=true]{padding-top:0px;margin-bottom:0px;align-items:center}.callout.callout-titled .callout-body>:last-child:not(.sourceCode),.callout.callout-titled .callout-body>div>:last-child:not(.sourceCode){margin-bottom:.5rem}.callout:not(.callout-titled) .callout-body>:first-child,.callout:not(.callout-titled) .callout-body>div>:first-child{margin-top:.25rem}.callout:not(.callout-titled) .callout-body>:last-child,.callout:not(.callout-titled) .callout-body>div>:last-child{margin-bottom:.2rem}.callout.callout-style-simple .callout-icon::before,.callout.callout-style-simple .callout-toggle::before{height:1rem;width:1rem;display:inline-block;content:"";background-repeat:no-repeat;background-size:1rem 1rem}.callout.callout-style-default .callout-icon::before,.callout.callout-style-default .callout-toggle::before{height:.9rem;width:.9rem;display:inline-block;content:"";background-repeat:no-repeat;background-size:.9rem .9rem}.callout.callout-style-default .callout-toggle::before{margin-top:5px}.callout .callout-btn-toggle .callout-toggle::before{transition:transform .2s linear}.callout .callout-header[aria-expanded=false] .callout-toggle::before{transform:rotate(-90deg)}.callout .callout-header[aria-expanded=true] .callout-toggle::before{transform:none}.callout.callout-style-simple:not(.no-icon) div.callout-icon-container{padding-top:.2em;padding-right:.55em}.callout.callout-style-default:not(.no-icon) div.callout-icon-container{padding-top:.1em;padding-right:.35em}.callout.callout-style-default:not(.no-icon) div.callout-title-container{margin-top:-1px}.callout.callout-style-default.callout-caution:not(.no-icon) div.callout-icon-container{padding-top:.3em;padding-right:.35em}.callout>.callout-body>.callout-icon-container>.no-icon,.callout>.callout-header>.callout-icon-container>.no-icon{display:none}div.callout.callout{border-left-color:#6c757d}div.callout.callout-style-default>.callout-header{background-color:#6c757d}div.callout-note.callout{border-left-color:#2780e3}div.callout-note.callout-style-default>.callout-header{background-color:#e9f2fc}div.callout-note:not(.callout-titled) .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-note.callout-titled .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-note .callout-toggle::before{background-image:url('data:image/svg+xml,')}div.callout-tip.callout{border-left-color:#3fb618}div.callout-tip.callout-style-default>.callout-header{background-color:#ecf8e8}div.callout-tip:not(.callout-titled) .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-tip.callout-titled .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-tip .callout-toggle::before{background-image:url('data:image/svg+xml,')}div.callout-warning.callout{border-left-color:#ff7518}div.callout-warning.callout-style-default>.callout-header{background-color:#fff1e8}div.callout-warning:not(.callout-titled) .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-warning.callout-titled .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-warning .callout-toggle::before{background-image:url('data:image/svg+xml,')}div.callout-caution.callout{border-left-color:#f0ad4e}div.callout-caution.callout-style-default>.callout-header{background-color:#fef7ed}div.callout-caution:not(.callout-titled) .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-caution.callout-titled .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-caution .callout-toggle::before{background-image:url('data:image/svg+xml,')}div.callout-important.callout{border-left-color:#ff0039}div.callout-important.callout-style-default>.callout-header{background-color:#ffe6eb}div.callout-important:not(.callout-titled) .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-important.callout-titled .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-important .callout-toggle::before{background-image:url('data:image/svg+xml,')}.quarto-toggle-container{display:flex;align-items:center}.quarto-reader-toggle .bi::before,.quarto-color-scheme-toggle .bi::before{display:inline-block;height:1rem;width:1rem;content:"";background-repeat:no-repeat;background-size:1rem 1rem}.sidebar-navigation{padding-left:20px}.navbar .quarto-color-scheme-toggle:not(.alternate) .bi::before{background-image:url('data:image/svg+xml,')}.navbar .quarto-color-scheme-toggle.alternate .bi::before{background-image:url('data:image/svg+xml,')}.sidebar-navigation .quarto-color-scheme-toggle:not(.alternate) .bi::before{background-image:url('data:image/svg+xml,')}.sidebar-navigation .quarto-color-scheme-toggle.alternate .bi::before{background-image:url('data:image/svg+xml,')}.quarto-sidebar-toggle{border-color:#dee2e6;border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem;border-style:solid;border-width:1px;overflow:hidden;border-top-width:0px;padding-top:0px !important}.quarto-sidebar-toggle-title{cursor:pointer;padding-bottom:2px;margin-left:.25em;text-align:center;font-weight:400;font-size:.775em}#quarto-content .quarto-sidebar-toggle{background:#fafafa}#quarto-content .quarto-sidebar-toggle-title{color:#373a3c}.quarto-sidebar-toggle-icon{color:#dee2e6;margin-right:.5em;float:right;transition:transform .2s ease}.quarto-sidebar-toggle-icon::before{padding-top:5px}.quarto-sidebar-toggle.expanded .quarto-sidebar-toggle-icon{transform:rotate(-180deg)}.quarto-sidebar-toggle.expanded .quarto-sidebar-toggle-title{border-bottom:solid #dee2e6 1px}.quarto-sidebar-toggle-contents{background-color:#fff;padding-right:10px;padding-left:10px;margin-top:0px !important;transition:max-height .5s ease}.quarto-sidebar-toggle.expanded .quarto-sidebar-toggle-contents{padding-top:1em;padding-bottom:10px}.quarto-sidebar-toggle:not(.expanded) .quarto-sidebar-toggle-contents{padding-top:0px !important;padding-bottom:0px}nav[role=doc-toc]{z-index:1020}#quarto-sidebar>*,nav[role=doc-toc]>*{transition:opacity .1s ease,border .1s ease}#quarto-sidebar.slow>*,nav[role=doc-toc].slow>*{transition:opacity .4s ease,border .4s ease}.quarto-color-scheme-toggle:not(.alternate).top-right .bi::before{background-image:url('data:image/svg+xml,')}.quarto-color-scheme-toggle.alternate.top-right .bi::before{background-image:url('data:image/svg+xml,')}#quarto-appendix.default{border-top:1px solid #dee2e6}#quarto-appendix.default{background-color:#fff;padding-top:1.5em;margin-top:2em;z-index:998}#quarto-appendix.default .quarto-appendix-heading{margin-top:0;line-height:1.4em;font-weight:600;opacity:.9;border-bottom:none;margin-bottom:0}#quarto-appendix.default .footnotes ol,#quarto-appendix.default .footnotes ol li>p:last-of-type,#quarto-appendix.default .quarto-appendix-contents>p:last-of-type{margin-bottom:0}#quarto-appendix.default .quarto-appendix-secondary-label{margin-bottom:.4em}#quarto-appendix.default .quarto-appendix-bibtex{font-size:.7em;padding:1em;border:solid 1px #dee2e6;margin-bottom:1em}#quarto-appendix.default .quarto-appendix-bibtex code.sourceCode{white-space:pre-wrap}#quarto-appendix.default .quarto-appendix-citeas{font-size:.9em;padding:1em;border:solid 1px #dee2e6;margin-bottom:1em}#quarto-appendix.default .quarto-appendix-heading{font-size:1em !important}#quarto-appendix.default *[role=doc-endnotes]>ol,#quarto-appendix.default .quarto-appendix-contents>*:not(h2):not(.h2){font-size:.9em}#quarto-appendix.default section{padding-bottom:1.5em}#quarto-appendix.default section *[role=doc-endnotes],#quarto-appendix.default section>*:not(a){opacity:.9;word-wrap:break-word}.btn.btn-quarto,div.cell-output-display .btn-quarto{color:#cbcccc;background-color:#373a3c;border-color:#373a3c}.btn.btn-quarto:hover,div.cell-output-display .btn-quarto:hover{color:#cbcccc;background-color:#555859;border-color:#4b4e50}.btn-check:focus+.btn.btn-quarto,.btn.btn-quarto:focus,.btn-check:focus+div.cell-output-display .btn-quarto,div.cell-output-display .btn-quarto:focus{color:#cbcccc;background-color:#555859;border-color:#4b4e50;box-shadow:0 0 0 .25rem rgba(77,80,82,.5)}.btn-check:checked+.btn.btn-quarto,.btn-check:active+.btn.btn-quarto,.btn.btn-quarto:active,.btn.btn-quarto.active,.show>.btn.btn-quarto.dropdown-toggle,.btn-check:checked+div.cell-output-display .btn-quarto,.btn-check:active+div.cell-output-display .btn-quarto,div.cell-output-display .btn-quarto:active,div.cell-output-display .btn-quarto.active,.show>div.cell-output-display .btn-quarto.dropdown-toggle{color:#fff;background-color:#5f6163;border-color:#4b4e50}.btn-check:checked+.btn.btn-quarto:focus,.btn-check:active+.btn.btn-quarto:focus,.btn.btn-quarto:active:focus,.btn.btn-quarto.active:focus,.show>.btn.btn-quarto.dropdown-toggle:focus,.btn-check:checked+div.cell-output-display .btn-quarto:focus,.btn-check:active+div.cell-output-display .btn-quarto:focus,div.cell-output-display .btn-quarto:active:focus,div.cell-output-display .btn-quarto.active:focus,.show>div.cell-output-display .btn-quarto.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(77,80,82,.5)}.btn.btn-quarto:disabled,.btn.btn-quarto.disabled,div.cell-output-display .btn-quarto:disabled,div.cell-output-display .btn-quarto.disabled{color:#fff;background-color:#373a3c;border-color:#373a3c}nav.quarto-secondary-nav.color-navbar{background-color:#f8f9fa;color:#545555}nav.quarto-secondary-nav.color-navbar h1,nav.quarto-secondary-nav.color-navbar .h1,nav.quarto-secondary-nav.color-navbar .quarto-btn-toggle{color:#545555}@media(max-width: 991.98px){body.nav-sidebar .quarto-title-banner{margin-bottom:0;padding-bottom:0}body.nav-sidebar #title-block-header{margin-block-end:0}}p.subtitle{margin-top:.25em;margin-bottom:.5em}code a:any-link{color:inherit;text-decoration-color:#6c757d}/*! light */div.observablehq table thead tr th{background-color:var(--bs-body-bg)}input,button,select,optgroup,textarea{background-color:var(--bs-body-bg)}.code-annotated .code-copy-button{margin-right:1.25em;margin-top:0;padding-bottom:0;padding-top:3px}.code-annotation-gutter-bg{background-color:#fff}.code-annotation-gutter{background-color:rgba(233,236,239,.65)}.code-annotation-gutter,.code-annotation-gutter-bg{height:100%;width:calc(20px + .5em);position:absolute;top:0;right:0}dl.code-annotation-container-grid dt{margin-right:1em;margin-top:.25rem}dl.code-annotation-container-grid dt{font-family:var(--bs-font-monospace);color:#4f5457;border:solid #4f5457 1px;border-radius:50%;height:22px;width:22px;line-height:22px;font-size:11px;text-align:center;vertical-align:middle;text-decoration:none}dl.code-annotation-container-grid dt[data-target-cell]{cursor:pointer}dl.code-annotation-container-grid dt[data-target-cell].code-annotation-active{color:#fff;border:solid #aaa 1px;background-color:#aaa}pre.code-annotation-code{padding-top:0;padding-bottom:0}pre.code-annotation-code code{z-index:3}#code-annotation-line-highlight-gutter{width:100%;border-top:solid rgba(170,170,170,.2666666667) 1px;border-bottom:solid rgba(170,170,170,.2666666667) 1px;z-index:2;background-color:rgba(170,170,170,.1333333333)}#code-annotation-line-highlight{margin-left:-4em;width:calc(100% + 4em);border-top:solid rgba(170,170,170,.2666666667) 1px;border-bottom:solid rgba(170,170,170,.2666666667) 1px;z-index:2;background-color:rgba(170,170,170,.1333333333)}code.sourceCode .code-annotation-anchor.code-annotation-active{background-color:var(--quarto-hl-normal-color, #aaaaaa);border:solid var(--quarto-hl-normal-color, #aaaaaa) 1px;color:#e9ecef;font-weight:bolder}code.sourceCode .code-annotation-anchor{font-family:var(--bs-font-monospace);color:var(--quarto-hl-co-color);border:solid var(--quarto-hl-co-color) 1px;border-radius:50%;height:18px;width:18px;font-size:9px;margin-top:2px}code.sourceCode button.code-annotation-anchor{padding:2px}code.sourceCode a.code-annotation-anchor{line-height:18px;text-align:center;vertical-align:middle;cursor:default;text-decoration:none}@media print{.page-columns .column-screen-inset{grid-column:page-start-inset/page-end-inset;z-index:998;transform:translate3d(0, 0, 0)}.page-columns .column-screen-inset table{background:#fff}.page-columns .column-screen-inset-left{grid-column:page-start-inset/body-content-end;z-index:998;transform:translate3d(0, 0, 0)}.page-columns .column-screen-inset-left table{background:#fff}.page-columns .column-screen-inset-right{grid-column:body-content-start/page-end-inset;z-index:998;transform:translate3d(0, 0, 0)}.page-columns .column-screen-inset-right table{background:#fff}.page-columns .column-screen{grid-column:page-start/page-end;z-index:998;transform:translate3d(0, 0, 0)}.page-columns .column-screen table{background:#fff}.page-columns .column-screen-left{grid-column:page-start/body-content-end;z-index:998;transform:translate3d(0, 0, 0)}.page-columns .column-screen-left table{background:#fff}.page-columns .column-screen-right{grid-column:body-content-start/page-end;z-index:998;transform:translate3d(0, 0, 0)}.page-columns .column-screen-right table{background:#fff}.page-columns .column-screen-inset-shaded{grid-column:page-start-inset/page-end-inset;padding:1em;background:#f8f9fa;z-index:998;transform:translate3d(0, 0, 0);margin-bottom:1em}}.quarto-video{margin-bottom:1em}.table>thead{border-top-width:0}.table>:not(caption)>*:not(:last-child)>*{border-bottom-color:#ebeced;border-bottom-style:solid;border-bottom-width:1px}.table>:not(:first-child){border-top:1px solid #b6babc;border-bottom:1px solid inherit}.table tbody{border-bottom-color:#b6babc}a.external:after{display:inline-block;height:.75rem;width:.75rem;margin-bottom:.15em;margin-left:.25em;content:"";vertical-align:-0.125em;background-image:url('data:image/svg+xml,');background-repeat:no-repeat;background-size:.75rem .75rem}div.sourceCode code a.external:after{content:none}a.external:after:hover{cursor:pointer}.quarto-ext-icon{display:inline-block;font-size:.75em;padding-left:.3em}.code-with-filename .code-with-filename-file{margin-bottom:0;padding-bottom:2px;padding-top:2px;padding-left:.7em;border:var(--quarto-border-width) solid var(--quarto-border-color);border-radius:var(--quarto-border-radius);border-bottom:0;border-bottom-left-radius:0%;border-bottom-right-radius:0%}.code-with-filename div.sourceCode,.reveal .code-with-filename div.sourceCode{margin-top:0;border-top-left-radius:0%;border-top-right-radius:0%}.code-with-filename .code-with-filename-file pre{margin-bottom:0}.code-with-filename .code-with-filename-file,.code-with-filename .code-with-filename-file pre{background-color:rgba(219,219,219,.8)}.quarto-dark .code-with-filename .code-with-filename-file,.quarto-dark .code-with-filename .code-with-filename-file pre{background-color:#555}.code-with-filename .code-with-filename-file strong{font-weight:400}.quarto-title-banner{margin-bottom:1em;color:#545555;background:#f8f9fa}.quarto-title-banner .code-tools-button{color:#878888}.quarto-title-banner .code-tools-button:hover{color:#545555}.quarto-title-banner .code-tools-button>.bi::before{background-image:url('data:image/svg+xml,')}.quarto-title-banner .code-tools-button:hover>.bi::before{background-image:url('data:image/svg+xml,')}.quarto-title-banner .quarto-title .title{font-weight:600}.quarto-title-banner .quarto-categories{margin-top:.75em}@media(min-width: 992px){.quarto-title-banner{padding-top:2.5em;padding-bottom:2.5em}}@media(max-width: 991.98px){.quarto-title-banner{padding-top:1em;padding-bottom:1em}}main.quarto-banner-title-block>section:first-child>h2,main.quarto-banner-title-block>section:first-child>.h2,main.quarto-banner-title-block>section:first-child>h3,main.quarto-banner-title-block>section:first-child>.h3,main.quarto-banner-title-block>section:first-child>h4,main.quarto-banner-title-block>section:first-child>.h4{margin-top:0}.quarto-title .quarto-categories{display:flex;flex-wrap:wrap;row-gap:.5em;column-gap:.4em;padding-bottom:.5em;margin-top:.75em}.quarto-title .quarto-categories .quarto-category{padding:.25em .75em;font-size:.65em;text-transform:uppercase;border:solid 1px;border-radius:.25rem;opacity:.6}.quarto-title .quarto-categories .quarto-category a{color:inherit}#title-block-header.quarto-title-block.default .quarto-title-meta{display:grid;grid-template-columns:repeat(2, 1fr)}#title-block-header.quarto-title-block.default .quarto-title .title{margin-bottom:0}#title-block-header.quarto-title-block.default .quarto-title-author-orcid img{margin-top:-5px}#title-block-header.quarto-title-block.default .quarto-description p:last-of-type{margin-bottom:0}#title-block-header.quarto-title-block.default .quarto-title-meta-contents p,#title-block-header.quarto-title-block.default .quarto-title-authors p,#title-block-header.quarto-title-block.default .quarto-title-affiliations p{margin-bottom:.1em}#title-block-header.quarto-title-block.default .quarto-title-meta-heading{text-transform:uppercase;margin-top:1em;font-size:.8em;opacity:.8;font-weight:400}#title-block-header.quarto-title-block.default .quarto-title-meta-contents{font-size:.9em}#title-block-header.quarto-title-block.default .quarto-title-meta-contents a{color:#373a3c}#title-block-header.quarto-title-block.default .quarto-title-meta-contents p.affiliation:last-of-type{margin-bottom:.7em}#title-block-header.quarto-title-block.default p.affiliation{margin-bottom:.1em}#title-block-header.quarto-title-block.default .description,#title-block-header.quarto-title-block.default .abstract{margin-top:0}#title-block-header.quarto-title-block.default .description>p,#title-block-header.quarto-title-block.default .abstract>p{font-size:.9em}#title-block-header.quarto-title-block.default .description>p:last-of-type,#title-block-header.quarto-title-block.default .abstract>p:last-of-type{margin-bottom:0}#title-block-header.quarto-title-block.default .description .abstract-title,#title-block-header.quarto-title-block.default .abstract .abstract-title{margin-top:1em;text-transform:uppercase;font-size:.8em;opacity:.8;font-weight:400}#title-block-header.quarto-title-block.default .quarto-title-meta-author{display:grid;grid-template-columns:1fr 1fr}.quarto-title-tools-only{display:flex;justify-content:right}body{-webkit-font-smoothing:antialiased}.badge.bg-light{color:#373a3c}.progress .progress-bar{font-size:8px;line-height:8px}/*# sourceMappingURL=9161419e6f82ea4435380a70856fa72b.css.map */ +* we also add `bright-[color]-` synonyms for the `-[color]-intense` classes since +* that seems to be what ansi_up emits +* +*/.ansi-black-fg{color:#3e424d}.ansi-black-bg{background-color:#3e424d}.ansi-black-intense-black,.ansi-bright-black-fg{color:#282c36}.ansi-black-intense-black,.ansi-bright-black-bg{background-color:#282c36}.ansi-red-fg{color:#e75c58}.ansi-red-bg{background-color:#e75c58}.ansi-red-intense-red,.ansi-bright-red-fg{color:#b22b31}.ansi-red-intense-red,.ansi-bright-red-bg{background-color:#b22b31}.ansi-green-fg{color:#00a250}.ansi-green-bg{background-color:#00a250}.ansi-green-intense-green,.ansi-bright-green-fg{color:#007427}.ansi-green-intense-green,.ansi-bright-green-bg{background-color:#007427}.ansi-yellow-fg{color:#ddb62b}.ansi-yellow-bg{background-color:#ddb62b}.ansi-yellow-intense-yellow,.ansi-bright-yellow-fg{color:#b27d12}.ansi-yellow-intense-yellow,.ansi-bright-yellow-bg{background-color:#b27d12}.ansi-blue-fg{color:#208ffb}.ansi-blue-bg{background-color:#208ffb}.ansi-blue-intense-blue,.ansi-bright-blue-fg{color:#0065ca}.ansi-blue-intense-blue,.ansi-bright-blue-bg{background-color:#0065ca}.ansi-magenta-fg{color:#d160c4}.ansi-magenta-bg{background-color:#d160c4}.ansi-magenta-intense-magenta,.ansi-bright-magenta-fg{color:#a03196}.ansi-magenta-intense-magenta,.ansi-bright-magenta-bg{background-color:#a03196}.ansi-cyan-fg{color:#60c6c8}.ansi-cyan-bg{background-color:#60c6c8}.ansi-cyan-intense-cyan,.ansi-bright-cyan-fg{color:#258f8f}.ansi-cyan-intense-cyan,.ansi-bright-cyan-bg{background-color:#258f8f}.ansi-white-fg{color:#c5c1b4}.ansi-white-bg{background-color:#c5c1b4}.ansi-white-intense-white,.ansi-bright-white-fg{color:#a1a6b2}.ansi-white-intense-white,.ansi-bright-white-bg{background-color:#a1a6b2}.ansi-default-inverse-fg{color:#fff}.ansi-default-inverse-bg{background-color:#000}.ansi-bold{font-weight:bold}.ansi-underline{text-decoration:underline}:root{--quarto-body-bg: #fff;--quarto-body-color: #343a40;--quarto-text-muted: #6c757d;--quarto-border-color: #dee2e6;--quarto-border-width: 1px;--quarto-border-radius: 0.25rem}table.gt_table{color:var(--quarto-body-color);font-size:1em;width:100%;background-color:rgba(0,0,0,0);border-top-width:inherit;border-bottom-width:inherit;border-color:var(--quarto-border-color)}table.gt_table th.gt_column_spanner_outer{color:var(--quarto-body-color);background-color:rgba(0,0,0,0);border-top-width:inherit;border-bottom-width:inherit;border-color:var(--quarto-border-color)}table.gt_table th.gt_col_heading{color:var(--quarto-body-color);font-weight:bold;background-color:rgba(0,0,0,0)}table.gt_table thead.gt_col_headings{border-bottom:1px solid currentColor;border-top-width:inherit;border-top-color:var(--quarto-border-color)}table.gt_table thead.gt_col_headings:not(:first-child){border-top-width:1px;border-top-color:var(--quarto-border-color)}table.gt_table td.gt_row{border-bottom-width:1px;border-bottom-color:var(--quarto-border-color);border-top-width:0px}table.gt_table tbody.gt_table_body{border-top-width:1px;border-bottom-width:1px;border-bottom-color:var(--quarto-border-color);border-top-color:currentColor}div.columns{display:initial;gap:initial}div.column{display:inline-block;overflow-x:initial;vertical-align:top;width:50%}.code-annotation-tip-content{word-wrap:break-word}.code-annotation-container-hidden{display:none !important}dl.code-annotation-container-grid{display:grid;grid-template-columns:min-content auto}dl.code-annotation-container-grid dt{grid-column:1}dl.code-annotation-container-grid dd{grid-column:2}pre.sourceCode.code-annotation-code{padding-right:0}code.sourceCode .code-annotation-anchor{z-index:100;position:relative;float:right;background-color:rgba(0,0,0,0)}input[type=checkbox]{margin-right:.5ch}:root{--mermaid-bg-color: #fff;--mermaid-edge-color: #343a40;--mermaid-node-fg-color: #343a40;--mermaid-fg-color: #343a40;--mermaid-fg-color--lighter: #4b545c;--mermaid-fg-color--lightest: #626d78;--mermaid-font-family: Source Sans Pro, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;--mermaid-label-bg-color: #fff;--mermaid-label-fg-color: #6D6E71;--mermaid-node-bg-color: rgba(109, 110, 113, 0.1);--mermaid-node-fg-color: #343a40}@media print{:root{font-size:11pt}#quarto-sidebar,#TOC,.nav-page{display:none}.page-columns .content{grid-column-start:page-start}.fixed-top{position:relative}.panel-caption,.figure-caption,figcaption{color:#666}}.code-copy-button{position:absolute;top:0;right:0;border:0;margin-top:5px;margin-right:5px;background-color:rgba(0,0,0,0);z-index:3}.code-copy-button:focus{outline:none}.code-copy-button-tooltip{font-size:.75em}pre.sourceCode:hover>.code-copy-button>.bi::before{display:inline-block;height:1rem;width:1rem;content:"";vertical-align:-0.125em;background-image:url('data:image/svg+xml,');background-repeat:no-repeat;background-size:1rem 1rem}pre.sourceCode:hover>.code-copy-button-checked>.bi::before{background-image:url('data:image/svg+xml,')}pre.sourceCode:hover>.code-copy-button:hover>.bi::before{background-image:url('data:image/svg+xml,')}pre.sourceCode:hover>.code-copy-button-checked:hover>.bi::before{background-image:url('data:image/svg+xml,')}main ol ol,main ul ul,main ol ul,main ul ol{margin-bottom:1em}ul>li:not(:has(>p))>ul,ol>li:not(:has(>p))>ul,ul>li:not(:has(>p))>ol,ol>li:not(:has(>p))>ol{margin-bottom:0}ul>li:not(:has(>p))>ul>li:has(>p),ol>li:not(:has(>p))>ul>li:has(>p),ul>li:not(:has(>p))>ol>li:has(>p),ol>li:not(:has(>p))>ol>li:has(>p){margin-top:1rem}body{margin:0}main.page-columns>header>h1.title,main.page-columns>header>.title.h1{margin-bottom:0}@media(min-width: 992px){body .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start page-start-inset] 35px [body-start-outset] 35px [body-start] 1.5em [body-content-start] minmax(500px, calc(850px - 3em)) [body-content-end] 1.5em [body-end] 35px [body-end-outset] minmax(75px, 145px) [page-end-inset] 35px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.fullcontent:not(.floating):not(.docked) .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start page-start-inset] 35px [body-start-outset] 35px [body-start] 1.5em [body-content-start] minmax(500px, calc(850px - 3em)) [body-content-end] 1.5em [body-end] 35px [body-end-outset] 35px [page-end-inset page-end] 5fr [screen-end-inset] 1.5em}body.slimcontent:not(.floating):not(.docked) .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start page-start-inset] 35px [body-start-outset] 35px [body-start] 1.5em [body-content-start] minmax(500px, calc(850px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(0px, 200px) [page-end-inset] 35px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.listing:not(.floating):not(.docked) .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start] minmax(50px, 100px) [page-start-inset] 50px [body-start-outset] 50px [body-start] 1.5em [body-content-start] minmax(500px, calc(850px - 3em)) [body-content-end] 3em [body-end] 50px [body-end-outset] minmax(0px, 250px) [page-end-inset] minmax(50px, 100px) [page-end] 1fr [screen-end-inset] 1.5em [screen-end]}body:not(.floating):not(.docked) .page-columns.toc-left{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] 35px [page-start-inset] minmax(0px, 175px) [body-start-outset] 35px [body-start] 1.5em [body-content-start] minmax(450px, calc(800px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(0px, 200px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body:not(.floating):not(.docked) .page-columns.toc-left .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] 35px [page-start-inset] minmax(0px, 175px) [body-start-outset] 35px [body-start] 1.5em [body-content-start] minmax(450px, calc(800px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(0px, 200px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.floating .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] minmax(25px, 50px) [page-start-inset] minmax(50px, 150px) [body-start-outset] minmax(25px, 50px) [body-start] 1.5em [body-content-start] minmax(500px, calc(800px - 3em)) [body-content-end] 1.5em [body-end] minmax(25px, 50px) [body-end-outset] minmax(50px, 150px) [page-end-inset] minmax(25px, 50px) [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.docked .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start] minmax(50px, 100px) [page-start-inset] 50px [body-start-outset] 50px [body-start] 1.5em [body-content-start] minmax(500px, calc(1000px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(50px, 100px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.docked.fullcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start] minmax(50px, 100px) [page-start-inset] 50px [body-start-outset] 50px [body-start] 1.5em [body-content-start] minmax(500px, calc(1000px - 3em)) [body-content-end] 1.5em [body-end body-end-outset page-end-inset page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.floating.fullcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] 50px [page-start-inset] minmax(50px, 150px) [body-start-outset] 50px [body-start] 1.5em [body-content-start] minmax(500px, calc(800px - 3em)) [body-content-end] 1.5em [body-end body-end-outset page-end-inset page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.docked.slimcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start] minmax(50px, 100px) [page-start-inset] 50px [body-start-outset] 50px [body-start] 1.5em [body-content-start] minmax(450px, calc(750px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(0px, 200px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.docked.listing .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start] minmax(50px, 100px) [page-start-inset] 50px [body-start-outset] 50px [body-start] 1.5em [body-content-start] minmax(500px, calc(1000px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(0px, 200px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.floating.slimcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] 50px [page-start-inset] minmax(50px, 150px) [body-start-outset] 50px [body-start] 1.5em [body-content-start] minmax(450px, calc(750px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(50px, 150px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.floating.listing .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] minmax(25px, 50px) [page-start-inset] minmax(50px, 150px) [body-start-outset] minmax(25px, 50px) [body-start] 1.5em [body-content-start] minmax(500px, calc(800px - 3em)) [body-content-end] 1.5em [body-end] minmax(25px, 50px) [body-end-outset] minmax(50px, 150px) [page-end-inset] minmax(25px, 50px) [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}}@media(max-width: 991.98px){body .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset] 5fr [body-start] 1.5em [body-content-start] minmax(500px, calc(800px - 3em)) [body-content-end] 1.5em [body-end] 35px [body-end-outset] minmax(75px, 145px) [page-end-inset] 35px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.fullcontent:not(.floating):not(.docked) .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset] 5fr [body-start] 1.5em [body-content-start] minmax(500px, calc(800px - 3em)) [body-content-end] 1.5em [body-end body-end-outset page-end-inset page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.slimcontent:not(.floating):not(.docked) .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset] 5fr [body-start] 1.5em [body-content-start] minmax(500px, calc(800px - 3em)) [body-content-end] 1.5em [body-end] 35px [body-end-outset] minmax(75px, 145px) [page-end-inset] 35px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.listing:not(.floating):not(.docked) .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset] 5fr [body-start] 1.5em [body-content-start] minmax(500px, calc(1250px - 3em)) [body-content-end body-end body-end-outset page-end-inset page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body:not(.floating):not(.docked) .page-columns.toc-left{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] 35px [page-start-inset] minmax(0px, 145px) [body-start-outset] 35px [body-start] 1.5em [body-content-start] minmax(450px, calc(800px - 3em)) [body-content-end] 1.5em [body-end body-end-outset page-end-inset page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body:not(.floating):not(.docked) .page-columns.toc-left .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] 35px [page-start-inset] minmax(0px, 145px) [body-start-outset] 35px [body-start] 1.5em [body-content-start] minmax(450px, calc(800px - 3em)) [body-content-end] 1.5em [body-end body-end-outset page-end-inset page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.floating .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start page-start-inset body-start-outset body-start] 1.5em [body-content-start] minmax(500px, calc(750px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(75px, 150px) [page-end-inset] 25px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.docked .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset body-start body-content-start] minmax(500px, calc(750px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(25px, 50px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.docked.fullcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset body-start body-content-start] minmax(500px, calc(1000px - 3em)) [body-content-end] 1.5em [body-end body-end-outset page-end-inset page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.floating.fullcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start page-start-inset body-start-outset body-start] 1em [body-content-start] minmax(500px, calc(800px - 3em)) [body-content-end] 1.5em [body-end body-end-outset page-end-inset page-end] 4fr [screen-end-inset] 1.5em [screen-end]}body.docked.slimcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset body-start body-content-start] minmax(500px, calc(750px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(25px, 50px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.docked.listing .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset body-start body-content-start] minmax(500px, calc(750px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(25px, 50px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.floating.slimcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start page-start-inset body-start-outset body-start] 1em [body-content-start] minmax(500px, calc(750px - 3em)) [body-content-end] 1.5em [body-end] 35px [body-end-outset] minmax(75px, 145px) [page-end-inset] 35px [page-end] 4fr [screen-end-inset] 1.5em [screen-end]}body.floating.listing .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start page-start-inset body-start-outset body-start] 1em [body-content-start] minmax(500px, calc(750px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(75px, 150px) [page-end-inset] 25px [page-end] 4fr [screen-end-inset] 1.5em [screen-end]}}@media(max-width: 767.98px){body .page-columns,body.fullcontent:not(.floating):not(.docked) .page-columns,body.slimcontent:not(.floating):not(.docked) .page-columns,body.docked .page-columns,body.docked.slimcontent .page-columns,body.docked.fullcontent .page-columns,body.floating .page-columns,body.floating.slimcontent .page-columns,body.floating.fullcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset body-start body-content-start] minmax(0px, 1fr) [body-content-end body-end body-end-outset page-end-inset page-end screen-end-inset] 1.5em [screen-end]}body:not(.floating):not(.docked) .page-columns.toc-left{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset body-start body-content-start] minmax(0px, 1fr) [body-content-end body-end body-end-outset page-end-inset page-end screen-end-inset] 1.5em [screen-end]}body:not(.floating):not(.docked) .page-columns.toc-left .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset body-start body-content-start] minmax(0px, 1fr) [body-content-end body-end body-end-outset page-end-inset page-end screen-end-inset] 1.5em [screen-end]}nav[role=doc-toc]{display:none}}body,.page-row-navigation{grid-template-rows:[page-top] max-content [contents-top] max-content [contents-bottom] max-content [page-bottom]}.page-rows-contents{grid-template-rows:[content-top] minmax(max-content, 1fr) [content-bottom] minmax(60px, max-content) [page-bottom]}.page-full{grid-column:screen-start/screen-end !important}.page-columns>*{grid-column:body-content-start/body-content-end}.page-columns.column-page>*{grid-column:page-start/page-end}.page-columns.column-page-left .page-columns.page-full>*,.page-columns.column-page-left>*{grid-column:page-start/body-content-end}.page-columns.column-page-right .page-columns.page-full>*,.page-columns.column-page-right>*{grid-column:body-content-start/page-end}.page-rows{grid-auto-rows:auto}.header{grid-column:screen-start/screen-end;grid-row:page-top/contents-top}#quarto-content{padding:0;grid-column:screen-start/screen-end;grid-row:contents-top/contents-bottom}body.floating .sidebar.sidebar-navigation{grid-column:page-start/body-start;grid-row:content-top/page-bottom}body.docked .sidebar.sidebar-navigation{grid-column:screen-start/body-start;grid-row:content-top/page-bottom}.sidebar.toc-left{grid-column:page-start/body-start;grid-row:content-top/page-bottom}.sidebar.margin-sidebar{grid-column:body-end/page-end;grid-row:content-top/page-bottom}.page-columns .content{grid-column:body-content-start/body-content-end;grid-row:content-top/content-bottom;align-content:flex-start}.page-columns .page-navigation{grid-column:body-content-start/body-content-end;grid-row:content-bottom/page-bottom}.page-columns .footer{grid-column:screen-start/screen-end;grid-row:contents-bottom/page-bottom}.page-columns .column-body{grid-column:body-content-start/body-content-end}.page-columns .column-body-fullbleed{grid-column:body-start/body-end}.page-columns .column-body-outset{grid-column:body-start-outset/body-end-outset;z-index:998;opacity:.999}.page-columns .column-body-outset table{background:#fff}.page-columns .column-body-outset-left{grid-column:body-start-outset/body-content-end;z-index:998;opacity:.999}.page-columns .column-body-outset-left table{background:#fff}.page-columns .column-body-outset-right{grid-column:body-content-start/body-end-outset;z-index:998;opacity:.999}.page-columns .column-body-outset-right table{background:#fff}.page-columns .column-page{grid-column:page-start/page-end;z-index:998;opacity:.999}.page-columns .column-page table{background:#fff}.page-columns .column-page-inset{grid-column:page-start-inset/page-end-inset;z-index:998;opacity:.999}.page-columns .column-page-inset table{background:#fff}.page-columns .column-page-inset-left{grid-column:page-start-inset/body-content-end;z-index:998;opacity:.999}.page-columns .column-page-inset-left table{background:#fff}.page-columns .column-page-inset-right{grid-column:body-content-start/page-end-inset;z-index:998;opacity:.999}.page-columns .column-page-inset-right figcaption table{background:#fff}.page-columns .column-page-left{grid-column:page-start/body-content-end;z-index:998;opacity:.999}.page-columns .column-page-left table{background:#fff}.page-columns .column-page-right{grid-column:body-content-start/page-end;z-index:998;opacity:.999}.page-columns .column-page-right figcaption table{background:#fff}#quarto-content.page-columns #quarto-margin-sidebar,#quarto-content.page-columns #quarto-sidebar{z-index:1}@media(max-width: 991.98px){#quarto-content.page-columns #quarto-margin-sidebar.collapse,#quarto-content.page-columns #quarto-sidebar.collapse,#quarto-content.page-columns #quarto-margin-sidebar.collapsing,#quarto-content.page-columns #quarto-sidebar.collapsing{z-index:1055}}#quarto-content.page-columns main.column-page,#quarto-content.page-columns main.column-page-right,#quarto-content.page-columns main.column-page-left{z-index:0}.page-columns .column-screen-inset{grid-column:screen-start-inset/screen-end-inset;z-index:998;opacity:.999}.page-columns .column-screen-inset table{background:#fff}.page-columns .column-screen-inset-left{grid-column:screen-start-inset/body-content-end;z-index:998;opacity:.999}.page-columns .column-screen-inset-left table{background:#fff}.page-columns .column-screen-inset-right{grid-column:body-content-start/screen-end-inset;z-index:998;opacity:.999}.page-columns .column-screen-inset-right table{background:#fff}.page-columns .column-screen{grid-column:screen-start/screen-end;z-index:998;opacity:.999}.page-columns .column-screen table{background:#fff}.page-columns .column-screen-left{grid-column:screen-start/body-content-end;z-index:998;opacity:.999}.page-columns .column-screen-left table{background:#fff}.page-columns .column-screen-right{grid-column:body-content-start/screen-end;z-index:998;opacity:.999}.page-columns .column-screen-right table{background:#fff}.page-columns .column-screen-inset-shaded{grid-column:screen-start/screen-end;padding:1em;background:#f8f9fa;z-index:998;opacity:.999;margin-bottom:1em}.zindex-content{z-index:998;opacity:.999}.zindex-modal{z-index:1055;opacity:.999}.zindex-over-content{z-index:999;opacity:.999}img.img-fluid.column-screen,img.img-fluid.column-screen-inset-shaded,img.img-fluid.column-screen-inset,img.img-fluid.column-screen-inset-left,img.img-fluid.column-screen-inset-right,img.img-fluid.column-screen-left,img.img-fluid.column-screen-right{width:100%}@media(min-width: 992px){.margin-caption,div.aside,aside:not(.footnotes):not(.sidebar),.column-margin{grid-column:body-end/page-end !important;z-index:998}.column-sidebar{grid-column:page-start/body-start !important;z-index:998}.column-leftmargin{grid-column:screen-start-inset/body-start !important;z-index:998}.no-row-height{height:1em;overflow:visible}}@media(max-width: 991.98px){.margin-caption,div.aside,aside:not(.footnotes):not(.sidebar),.column-margin{grid-column:body-end/page-end !important;z-index:998}.no-row-height{height:1em;overflow:visible}.page-columns.page-full{overflow:visible}.page-columns.toc-left .margin-caption,.page-columns.toc-left div.aside,.page-columns.toc-left aside:not(.footnotes):not(.sidebar),.page-columns.toc-left .column-margin{grid-column:body-content-start/body-content-end !important;z-index:998;opacity:.999}.page-columns.toc-left .no-row-height{height:initial;overflow:initial}}@media(max-width: 767.98px){.margin-caption,div.aside,aside:not(.footnotes):not(.sidebar),.column-margin{grid-column:body-content-start/body-content-end !important;z-index:998;opacity:.999}.no-row-height{height:initial;overflow:initial}#quarto-margin-sidebar{display:none}#quarto-sidebar-toc-left{display:none}.hidden-sm{display:none}}.panel-grid{display:grid;grid-template-rows:repeat(1, 1fr);grid-template-columns:repeat(24, 1fr);gap:1em}.panel-grid .g-col-1{grid-column:auto/span 1}.panel-grid .g-col-2{grid-column:auto/span 2}.panel-grid .g-col-3{grid-column:auto/span 3}.panel-grid .g-col-4{grid-column:auto/span 4}.panel-grid .g-col-5{grid-column:auto/span 5}.panel-grid .g-col-6{grid-column:auto/span 6}.panel-grid .g-col-7{grid-column:auto/span 7}.panel-grid .g-col-8{grid-column:auto/span 8}.panel-grid .g-col-9{grid-column:auto/span 9}.panel-grid .g-col-10{grid-column:auto/span 10}.panel-grid .g-col-11{grid-column:auto/span 11}.panel-grid .g-col-12{grid-column:auto/span 12}.panel-grid .g-col-13{grid-column:auto/span 13}.panel-grid .g-col-14{grid-column:auto/span 14}.panel-grid .g-col-15{grid-column:auto/span 15}.panel-grid .g-col-16{grid-column:auto/span 16}.panel-grid .g-col-17{grid-column:auto/span 17}.panel-grid .g-col-18{grid-column:auto/span 18}.panel-grid .g-col-19{grid-column:auto/span 19}.panel-grid .g-col-20{grid-column:auto/span 20}.panel-grid .g-col-21{grid-column:auto/span 21}.panel-grid .g-col-22{grid-column:auto/span 22}.panel-grid .g-col-23{grid-column:auto/span 23}.panel-grid .g-col-24{grid-column:auto/span 24}.panel-grid .g-start-1{grid-column-start:1}.panel-grid .g-start-2{grid-column-start:2}.panel-grid .g-start-3{grid-column-start:3}.panel-grid .g-start-4{grid-column-start:4}.panel-grid .g-start-5{grid-column-start:5}.panel-grid .g-start-6{grid-column-start:6}.panel-grid .g-start-7{grid-column-start:7}.panel-grid .g-start-8{grid-column-start:8}.panel-grid .g-start-9{grid-column-start:9}.panel-grid .g-start-10{grid-column-start:10}.panel-grid .g-start-11{grid-column-start:11}.panel-grid .g-start-12{grid-column-start:12}.panel-grid .g-start-13{grid-column-start:13}.panel-grid .g-start-14{grid-column-start:14}.panel-grid .g-start-15{grid-column-start:15}.panel-grid .g-start-16{grid-column-start:16}.panel-grid .g-start-17{grid-column-start:17}.panel-grid .g-start-18{grid-column-start:18}.panel-grid .g-start-19{grid-column-start:19}.panel-grid .g-start-20{grid-column-start:20}.panel-grid .g-start-21{grid-column-start:21}.panel-grid .g-start-22{grid-column-start:22}.panel-grid .g-start-23{grid-column-start:23}@media(min-width: 576px){.panel-grid .g-col-sm-1{grid-column:auto/span 1}.panel-grid .g-col-sm-2{grid-column:auto/span 2}.panel-grid .g-col-sm-3{grid-column:auto/span 3}.panel-grid .g-col-sm-4{grid-column:auto/span 4}.panel-grid .g-col-sm-5{grid-column:auto/span 5}.panel-grid .g-col-sm-6{grid-column:auto/span 6}.panel-grid .g-col-sm-7{grid-column:auto/span 7}.panel-grid .g-col-sm-8{grid-column:auto/span 8}.panel-grid .g-col-sm-9{grid-column:auto/span 9}.panel-grid .g-col-sm-10{grid-column:auto/span 10}.panel-grid .g-col-sm-11{grid-column:auto/span 11}.panel-grid .g-col-sm-12{grid-column:auto/span 12}.panel-grid .g-col-sm-13{grid-column:auto/span 13}.panel-grid .g-col-sm-14{grid-column:auto/span 14}.panel-grid .g-col-sm-15{grid-column:auto/span 15}.panel-grid .g-col-sm-16{grid-column:auto/span 16}.panel-grid .g-col-sm-17{grid-column:auto/span 17}.panel-grid .g-col-sm-18{grid-column:auto/span 18}.panel-grid .g-col-sm-19{grid-column:auto/span 19}.panel-grid .g-col-sm-20{grid-column:auto/span 20}.panel-grid .g-col-sm-21{grid-column:auto/span 21}.panel-grid .g-col-sm-22{grid-column:auto/span 22}.panel-grid .g-col-sm-23{grid-column:auto/span 23}.panel-grid .g-col-sm-24{grid-column:auto/span 24}.panel-grid .g-start-sm-1{grid-column-start:1}.panel-grid .g-start-sm-2{grid-column-start:2}.panel-grid .g-start-sm-3{grid-column-start:3}.panel-grid .g-start-sm-4{grid-column-start:4}.panel-grid .g-start-sm-5{grid-column-start:5}.panel-grid .g-start-sm-6{grid-column-start:6}.panel-grid .g-start-sm-7{grid-column-start:7}.panel-grid .g-start-sm-8{grid-column-start:8}.panel-grid .g-start-sm-9{grid-column-start:9}.panel-grid .g-start-sm-10{grid-column-start:10}.panel-grid .g-start-sm-11{grid-column-start:11}.panel-grid .g-start-sm-12{grid-column-start:12}.panel-grid .g-start-sm-13{grid-column-start:13}.panel-grid .g-start-sm-14{grid-column-start:14}.panel-grid .g-start-sm-15{grid-column-start:15}.panel-grid .g-start-sm-16{grid-column-start:16}.panel-grid .g-start-sm-17{grid-column-start:17}.panel-grid .g-start-sm-18{grid-column-start:18}.panel-grid .g-start-sm-19{grid-column-start:19}.panel-grid .g-start-sm-20{grid-column-start:20}.panel-grid .g-start-sm-21{grid-column-start:21}.panel-grid .g-start-sm-22{grid-column-start:22}.panel-grid .g-start-sm-23{grid-column-start:23}}@media(min-width: 768px){.panel-grid .g-col-md-1{grid-column:auto/span 1}.panel-grid .g-col-md-2{grid-column:auto/span 2}.panel-grid .g-col-md-3{grid-column:auto/span 3}.panel-grid .g-col-md-4{grid-column:auto/span 4}.panel-grid .g-col-md-5{grid-column:auto/span 5}.panel-grid .g-col-md-6{grid-column:auto/span 6}.panel-grid .g-col-md-7{grid-column:auto/span 7}.panel-grid .g-col-md-8{grid-column:auto/span 8}.panel-grid .g-col-md-9{grid-column:auto/span 9}.panel-grid .g-col-md-10{grid-column:auto/span 10}.panel-grid .g-col-md-11{grid-column:auto/span 11}.panel-grid .g-col-md-12{grid-column:auto/span 12}.panel-grid .g-col-md-13{grid-column:auto/span 13}.panel-grid .g-col-md-14{grid-column:auto/span 14}.panel-grid .g-col-md-15{grid-column:auto/span 15}.panel-grid .g-col-md-16{grid-column:auto/span 16}.panel-grid .g-col-md-17{grid-column:auto/span 17}.panel-grid .g-col-md-18{grid-column:auto/span 18}.panel-grid .g-col-md-19{grid-column:auto/span 19}.panel-grid .g-col-md-20{grid-column:auto/span 20}.panel-grid .g-col-md-21{grid-column:auto/span 21}.panel-grid .g-col-md-22{grid-column:auto/span 22}.panel-grid .g-col-md-23{grid-column:auto/span 23}.panel-grid .g-col-md-24{grid-column:auto/span 24}.panel-grid .g-start-md-1{grid-column-start:1}.panel-grid .g-start-md-2{grid-column-start:2}.panel-grid .g-start-md-3{grid-column-start:3}.panel-grid .g-start-md-4{grid-column-start:4}.panel-grid .g-start-md-5{grid-column-start:5}.panel-grid .g-start-md-6{grid-column-start:6}.panel-grid .g-start-md-7{grid-column-start:7}.panel-grid .g-start-md-8{grid-column-start:8}.panel-grid .g-start-md-9{grid-column-start:9}.panel-grid .g-start-md-10{grid-column-start:10}.panel-grid .g-start-md-11{grid-column-start:11}.panel-grid .g-start-md-12{grid-column-start:12}.panel-grid .g-start-md-13{grid-column-start:13}.panel-grid .g-start-md-14{grid-column-start:14}.panel-grid .g-start-md-15{grid-column-start:15}.panel-grid .g-start-md-16{grid-column-start:16}.panel-grid .g-start-md-17{grid-column-start:17}.panel-grid .g-start-md-18{grid-column-start:18}.panel-grid .g-start-md-19{grid-column-start:19}.panel-grid .g-start-md-20{grid-column-start:20}.panel-grid .g-start-md-21{grid-column-start:21}.panel-grid .g-start-md-22{grid-column-start:22}.panel-grid .g-start-md-23{grid-column-start:23}}@media(min-width: 992px){.panel-grid .g-col-lg-1{grid-column:auto/span 1}.panel-grid .g-col-lg-2{grid-column:auto/span 2}.panel-grid .g-col-lg-3{grid-column:auto/span 3}.panel-grid .g-col-lg-4{grid-column:auto/span 4}.panel-grid .g-col-lg-5{grid-column:auto/span 5}.panel-grid .g-col-lg-6{grid-column:auto/span 6}.panel-grid .g-col-lg-7{grid-column:auto/span 7}.panel-grid .g-col-lg-8{grid-column:auto/span 8}.panel-grid .g-col-lg-9{grid-column:auto/span 9}.panel-grid .g-col-lg-10{grid-column:auto/span 10}.panel-grid .g-col-lg-11{grid-column:auto/span 11}.panel-grid .g-col-lg-12{grid-column:auto/span 12}.panel-grid .g-col-lg-13{grid-column:auto/span 13}.panel-grid .g-col-lg-14{grid-column:auto/span 14}.panel-grid .g-col-lg-15{grid-column:auto/span 15}.panel-grid .g-col-lg-16{grid-column:auto/span 16}.panel-grid .g-col-lg-17{grid-column:auto/span 17}.panel-grid .g-col-lg-18{grid-column:auto/span 18}.panel-grid .g-col-lg-19{grid-column:auto/span 19}.panel-grid .g-col-lg-20{grid-column:auto/span 20}.panel-grid .g-col-lg-21{grid-column:auto/span 21}.panel-grid .g-col-lg-22{grid-column:auto/span 22}.panel-grid .g-col-lg-23{grid-column:auto/span 23}.panel-grid .g-col-lg-24{grid-column:auto/span 24}.panel-grid .g-start-lg-1{grid-column-start:1}.panel-grid .g-start-lg-2{grid-column-start:2}.panel-grid .g-start-lg-3{grid-column-start:3}.panel-grid .g-start-lg-4{grid-column-start:4}.panel-grid .g-start-lg-5{grid-column-start:5}.panel-grid .g-start-lg-6{grid-column-start:6}.panel-grid .g-start-lg-7{grid-column-start:7}.panel-grid .g-start-lg-8{grid-column-start:8}.panel-grid .g-start-lg-9{grid-column-start:9}.panel-grid .g-start-lg-10{grid-column-start:10}.panel-grid .g-start-lg-11{grid-column-start:11}.panel-grid .g-start-lg-12{grid-column-start:12}.panel-grid .g-start-lg-13{grid-column-start:13}.panel-grid .g-start-lg-14{grid-column-start:14}.panel-grid .g-start-lg-15{grid-column-start:15}.panel-grid .g-start-lg-16{grid-column-start:16}.panel-grid .g-start-lg-17{grid-column-start:17}.panel-grid .g-start-lg-18{grid-column-start:18}.panel-grid .g-start-lg-19{grid-column-start:19}.panel-grid .g-start-lg-20{grid-column-start:20}.panel-grid .g-start-lg-21{grid-column-start:21}.panel-grid .g-start-lg-22{grid-column-start:22}.panel-grid .g-start-lg-23{grid-column-start:23}}@media(min-width: 1200px){.panel-grid .g-col-xl-1{grid-column:auto/span 1}.panel-grid .g-col-xl-2{grid-column:auto/span 2}.panel-grid .g-col-xl-3{grid-column:auto/span 3}.panel-grid .g-col-xl-4{grid-column:auto/span 4}.panel-grid .g-col-xl-5{grid-column:auto/span 5}.panel-grid .g-col-xl-6{grid-column:auto/span 6}.panel-grid .g-col-xl-7{grid-column:auto/span 7}.panel-grid .g-col-xl-8{grid-column:auto/span 8}.panel-grid .g-col-xl-9{grid-column:auto/span 9}.panel-grid .g-col-xl-10{grid-column:auto/span 10}.panel-grid .g-col-xl-11{grid-column:auto/span 11}.panel-grid .g-col-xl-12{grid-column:auto/span 12}.panel-grid .g-col-xl-13{grid-column:auto/span 13}.panel-grid .g-col-xl-14{grid-column:auto/span 14}.panel-grid .g-col-xl-15{grid-column:auto/span 15}.panel-grid .g-col-xl-16{grid-column:auto/span 16}.panel-grid .g-col-xl-17{grid-column:auto/span 17}.panel-grid .g-col-xl-18{grid-column:auto/span 18}.panel-grid .g-col-xl-19{grid-column:auto/span 19}.panel-grid .g-col-xl-20{grid-column:auto/span 20}.panel-grid .g-col-xl-21{grid-column:auto/span 21}.panel-grid .g-col-xl-22{grid-column:auto/span 22}.panel-grid .g-col-xl-23{grid-column:auto/span 23}.panel-grid .g-col-xl-24{grid-column:auto/span 24}.panel-grid .g-start-xl-1{grid-column-start:1}.panel-grid .g-start-xl-2{grid-column-start:2}.panel-grid .g-start-xl-3{grid-column-start:3}.panel-grid .g-start-xl-4{grid-column-start:4}.panel-grid .g-start-xl-5{grid-column-start:5}.panel-grid .g-start-xl-6{grid-column-start:6}.panel-grid .g-start-xl-7{grid-column-start:7}.panel-grid .g-start-xl-8{grid-column-start:8}.panel-grid .g-start-xl-9{grid-column-start:9}.panel-grid .g-start-xl-10{grid-column-start:10}.panel-grid .g-start-xl-11{grid-column-start:11}.panel-grid .g-start-xl-12{grid-column-start:12}.panel-grid .g-start-xl-13{grid-column-start:13}.panel-grid .g-start-xl-14{grid-column-start:14}.panel-grid .g-start-xl-15{grid-column-start:15}.panel-grid .g-start-xl-16{grid-column-start:16}.panel-grid .g-start-xl-17{grid-column-start:17}.panel-grid .g-start-xl-18{grid-column-start:18}.panel-grid .g-start-xl-19{grid-column-start:19}.panel-grid .g-start-xl-20{grid-column-start:20}.panel-grid .g-start-xl-21{grid-column-start:21}.panel-grid .g-start-xl-22{grid-column-start:22}.panel-grid .g-start-xl-23{grid-column-start:23}}@media(min-width: 1400px){.panel-grid .g-col-xxl-1{grid-column:auto/span 1}.panel-grid .g-col-xxl-2{grid-column:auto/span 2}.panel-grid .g-col-xxl-3{grid-column:auto/span 3}.panel-grid .g-col-xxl-4{grid-column:auto/span 4}.panel-grid .g-col-xxl-5{grid-column:auto/span 5}.panel-grid .g-col-xxl-6{grid-column:auto/span 6}.panel-grid .g-col-xxl-7{grid-column:auto/span 7}.panel-grid .g-col-xxl-8{grid-column:auto/span 8}.panel-grid .g-col-xxl-9{grid-column:auto/span 9}.panel-grid .g-col-xxl-10{grid-column:auto/span 10}.panel-grid .g-col-xxl-11{grid-column:auto/span 11}.panel-grid .g-col-xxl-12{grid-column:auto/span 12}.panel-grid .g-col-xxl-13{grid-column:auto/span 13}.panel-grid .g-col-xxl-14{grid-column:auto/span 14}.panel-grid .g-col-xxl-15{grid-column:auto/span 15}.panel-grid .g-col-xxl-16{grid-column:auto/span 16}.panel-grid .g-col-xxl-17{grid-column:auto/span 17}.panel-grid .g-col-xxl-18{grid-column:auto/span 18}.panel-grid .g-col-xxl-19{grid-column:auto/span 19}.panel-grid .g-col-xxl-20{grid-column:auto/span 20}.panel-grid .g-col-xxl-21{grid-column:auto/span 21}.panel-grid .g-col-xxl-22{grid-column:auto/span 22}.panel-grid .g-col-xxl-23{grid-column:auto/span 23}.panel-grid .g-col-xxl-24{grid-column:auto/span 24}.panel-grid .g-start-xxl-1{grid-column-start:1}.panel-grid .g-start-xxl-2{grid-column-start:2}.panel-grid .g-start-xxl-3{grid-column-start:3}.panel-grid .g-start-xxl-4{grid-column-start:4}.panel-grid .g-start-xxl-5{grid-column-start:5}.panel-grid .g-start-xxl-6{grid-column-start:6}.panel-grid .g-start-xxl-7{grid-column-start:7}.panel-grid .g-start-xxl-8{grid-column-start:8}.panel-grid .g-start-xxl-9{grid-column-start:9}.panel-grid .g-start-xxl-10{grid-column-start:10}.panel-grid .g-start-xxl-11{grid-column-start:11}.panel-grid .g-start-xxl-12{grid-column-start:12}.panel-grid .g-start-xxl-13{grid-column-start:13}.panel-grid .g-start-xxl-14{grid-column-start:14}.panel-grid .g-start-xxl-15{grid-column-start:15}.panel-grid .g-start-xxl-16{grid-column-start:16}.panel-grid .g-start-xxl-17{grid-column-start:17}.panel-grid .g-start-xxl-18{grid-column-start:18}.panel-grid .g-start-xxl-19{grid-column-start:19}.panel-grid .g-start-xxl-20{grid-column-start:20}.panel-grid .g-start-xxl-21{grid-column-start:21}.panel-grid .g-start-xxl-22{grid-column-start:22}.panel-grid .g-start-xxl-23{grid-column-start:23}}main{margin-top:1em;margin-bottom:1em}h1,.h1,h2,.h2{color:inherit;margin-top:2rem;margin-bottom:1rem;font-weight:600}h1.title,.title.h1{margin-top:0}main.content>section:first-of-type>h2:first-child,main.content>section:first-of-type>.h2:first-child{margin-top:0}h2,.h2{border-bottom:1px solid #dee2e6;padding-bottom:.5rem}h3,.h3{font-weight:600}h3,.h3,h4,.h4{opacity:.9;margin-top:1.5rem}h5,.h5,h6,.h6{opacity:.9}.header-section-number{color:#6d7a86}.nav-link.active .header-section-number{color:inherit}mark,.mark{padding:0em}.panel-caption,.figure-caption,.subfigure-caption,.table-caption,figcaption,caption{font-size:.9rem;color:#6d7a86}.quarto-layout-cell[data-ref-parent] caption{color:#6d7a86}.column-margin figcaption,.margin-caption,div.aside,aside,.column-margin{color:#6d7a86;font-size:.825rem}.panel-caption.margin-caption{text-align:inherit}.column-margin.column-container p{margin-bottom:0}.column-margin.column-container>*:not(.collapse):first-child{padding-bottom:.5em;display:block}.column-margin.column-container>*:not(.collapse):not(:first-child){padding-top:.5em;padding-bottom:.5em;display:block}.column-margin.column-container>*.collapse:not(.show){display:none}@media(min-width: 768px){.column-margin.column-container .callout-margin-content:first-child{margin-top:4.5em}.column-margin.column-container .callout-margin-content-simple:first-child{margin-top:3.5em}}.margin-caption>*{padding-top:.5em;padding-bottom:.5em}@media(max-width: 767.98px){.quarto-layout-row{flex-direction:column}}.nav-tabs .nav-item{margin-top:1px;cursor:pointer}.tab-content{margin-top:0px;border-left:#dee2e6 1px solid;border-right:#dee2e6 1px solid;border-bottom:#dee2e6 1px solid;margin-left:0;padding:1em;margin-bottom:1em}@media(max-width: 767.98px){.layout-sidebar{margin-left:0;margin-right:0}}.panel-sidebar,.panel-sidebar .form-control,.panel-input,.panel-input .form-control,.selectize-dropdown{font-size:.9rem}.panel-sidebar .form-control,.panel-input .form-control{padding-top:.1rem}.tab-pane div.sourceCode{margin-top:0px}.tab-pane>p{padding-top:0}.tab-pane>p:nth-child(1){padding-top:0}.tab-pane>p:last-child{margin-bottom:0}.tab-pane>pre:last-child{margin-bottom:0}.tab-content>.tab-pane:not(.active){display:none !important}div.sourceCode{background-color:rgba(233,236,239,.65);border:1px solid rgba(233,236,239,.65);border-radius:.25rem}pre.sourceCode{background-color:rgba(0,0,0,0)}pre.sourceCode{border:none;font-size:.875em;overflow:visible !important;padding:.4em}.callout pre.sourceCode{padding-left:0}div.sourceCode{overflow-y:hidden}.callout div.sourceCode{margin-left:initial}.blockquote{font-size:inherit;padding-left:1rem;padding-right:1.5rem;color:#6d7a86}.blockquote h1:first-child,.blockquote .h1:first-child,.blockquote h2:first-child,.blockquote .h2:first-child,.blockquote h3:first-child,.blockquote .h3:first-child,.blockquote h4:first-child,.blockquote .h4:first-child,.blockquote h5:first-child,.blockquote .h5:first-child{margin-top:0}pre{background-color:initial;padding:initial;border:initial}p pre code:not(.sourceCode),li pre code:not(.sourceCode),pre code:not(.sourceCode){background-color:initial}p code:not(.sourceCode),li code:not(.sourceCode),td code:not(.sourceCode){background-color:#f8f9fa;padding:.2em}nav p code:not(.sourceCode),nav li code:not(.sourceCode),nav td code:not(.sourceCode){background-color:rgba(0,0,0,0);padding:0}td code:not(.sourceCode){white-space:pre-wrap}#quarto-embedded-source-code-modal>.modal-dialog{max-width:1000px;padding-left:1.75rem;padding-right:1.75rem}#quarto-embedded-source-code-modal>.modal-dialog>.modal-content>.modal-body{padding:0}#quarto-embedded-source-code-modal>.modal-dialog>.modal-content>.modal-body div.sourceCode{margin:0;padding:.2rem .2rem;border-radius:0px;border:none}#quarto-embedded-source-code-modal>.modal-dialog>.modal-content>.modal-header{padding:.7rem}.code-tools-button{font-size:1rem;padding:.15rem .15rem;margin-left:5px;color:#6c757d;background-color:rgba(0,0,0,0);transition:initial;cursor:pointer}.code-tools-button>.bi::before{display:inline-block;height:1rem;width:1rem;content:"";vertical-align:-0.125em;background-image:url('data:image/svg+xml,');background-repeat:no-repeat;background-size:1rem 1rem}.code-tools-button:hover>.bi::before{background-image:url('data:image/svg+xml,')}#quarto-embedded-source-code-modal .code-copy-button>.bi::before{background-image:url('data:image/svg+xml,')}#quarto-embedded-source-code-modal .code-copy-button-checked>.bi::before{background-image:url('data:image/svg+xml,')}.sidebar{will-change:top;transition:top 200ms linear;position:sticky;overflow-y:auto;padding-top:1.2em;max-height:100vh}.sidebar.toc-left,.sidebar.margin-sidebar{top:0px;padding-top:1em}.sidebar.quarto-banner-title-block-sidebar>*{padding-top:1.65em}figure .quarto-notebook-link{margin-top:.5em}.quarto-notebook-link{font-size:.75em;color:#6c757d;margin-bottom:1em;text-decoration:none;display:block}.quarto-notebook-link:hover{text-decoration:underline;color:#6d6e71}.quarto-notebook-link::before{display:inline-block;height:.75rem;width:.75rem;margin-bottom:0em;margin-right:.25em;content:"";vertical-align:-0.125em;background-image:url('data:image/svg+xml,');background-repeat:no-repeat;background-size:.75rem .75rem}.toc-actions i.bi,.quarto-code-links i.bi,.quarto-other-links i.bi,.quarto-alternate-notebooks i.bi,.quarto-alternate-formats i.bi{margin-right:.4em;font-size:.8rem}.quarto-other-links-text-target .quarto-code-links i.bi,.quarto-other-links-text-target .quarto-other-links i.bi{margin-right:.2em}.quarto-other-formats-text-target .quarto-alternate-formats i.bi{margin-right:.1em}.toc-actions i.bi.empty,.quarto-code-links i.bi.empty,.quarto-other-links i.bi.empty,.quarto-alternate-notebooks i.bi.empty,.quarto-alternate-formats i.bi.empty{padding-left:1em}.quarto-notebook h2,.quarto-notebook .h2{border-bottom:none}.quarto-notebook .cell-container{display:flex}.quarto-notebook .cell-container .cell{flex-grow:4}.quarto-notebook .cell-container .cell-decorator{padding-top:1.5em;padding-right:1em;text-align:right}.quarto-notebook .cell-container.code-fold .cell-decorator{padding-top:3em}.quarto-notebook .cell-code code{white-space:pre-wrap}.quarto-notebook .cell .cell-output-stderr pre code,.quarto-notebook .cell .cell-output-stdout pre code{white-space:pre-wrap;overflow-wrap:anywhere}.toc-actions,.quarto-alternate-formats,.quarto-other-links,.quarto-code-links,.quarto-alternate-notebooks{padding-left:0em}.sidebar .toc-actions a,.sidebar .quarto-alternate-formats a,.sidebar .quarto-other-links a,.sidebar .quarto-code-links a,.sidebar .quarto-alternate-notebooks a,.sidebar nav[role=doc-toc] a{text-decoration:none}.sidebar .toc-actions a:hover,.sidebar .quarto-other-links a:hover,.sidebar .quarto-code-links a:hover,.sidebar .quarto-alternate-formats a:hover,.sidebar .quarto-alternate-notebooks a:hover{color:#6d6e71}.sidebar .toc-actions h2,.sidebar .toc-actions .h2,.sidebar .quarto-code-links h2,.sidebar .quarto-code-links .h2,.sidebar .quarto-other-links h2,.sidebar .quarto-other-links .h2,.sidebar .quarto-alternate-notebooks h2,.sidebar .quarto-alternate-notebooks .h2,.sidebar .quarto-alternate-formats h2,.sidebar .quarto-alternate-formats .h2,.sidebar nav[role=doc-toc]>h2,.sidebar nav[role=doc-toc]>.h2{font-weight:500;margin-bottom:.2rem;margin-top:.3rem;font-family:inherit;border-bottom:0;padding-bottom:0;padding-top:0px}.sidebar .toc-actions>h2,.sidebar .toc-actions>.h2,.sidebar .quarto-code-links>h2,.sidebar .quarto-code-links>.h2,.sidebar .quarto-other-links>h2,.sidebar .quarto-other-links>.h2,.sidebar .quarto-alternate-notebooks>h2,.sidebar .quarto-alternate-notebooks>.h2,.sidebar .quarto-alternate-formats>h2,.sidebar .quarto-alternate-formats>.h2{font-size:.8rem}.sidebar nav[role=doc-toc]>h2,.sidebar nav[role=doc-toc]>.h2{font-size:.875rem}.sidebar nav[role=doc-toc]>ul a{border-left:1px solid #e9ecef;padding-left:.6rem}.sidebar .toc-actions h2>ul a,.sidebar .toc-actions .h2>ul a,.sidebar .quarto-code-links h2>ul a,.sidebar .quarto-code-links .h2>ul a,.sidebar .quarto-other-links h2>ul a,.sidebar .quarto-other-links .h2>ul a,.sidebar .quarto-alternate-notebooks h2>ul a,.sidebar .quarto-alternate-notebooks .h2>ul a,.sidebar .quarto-alternate-formats h2>ul a,.sidebar .quarto-alternate-formats .h2>ul a{border-left:none;padding-left:.6rem}.sidebar .toc-actions ul a:empty,.sidebar .quarto-code-links ul a:empty,.sidebar .quarto-other-links ul a:empty,.sidebar .quarto-alternate-notebooks ul a:empty,.sidebar .quarto-alternate-formats ul a:empty,.sidebar nav[role=doc-toc]>ul a:empty{display:none}.sidebar .toc-actions ul,.sidebar .quarto-code-links ul,.sidebar .quarto-other-links ul,.sidebar .quarto-alternate-notebooks ul,.sidebar .quarto-alternate-formats ul{padding-left:0;list-style:none}.sidebar nav[role=doc-toc] ul{list-style:none;padding-left:0;list-style:none}.sidebar nav[role=doc-toc]>ul{margin-left:.45em}.quarto-margin-sidebar nav[role=doc-toc]{padding-left:.5em}.sidebar .toc-actions>ul,.sidebar .quarto-code-links>ul,.sidebar .quarto-other-links>ul,.sidebar .quarto-alternate-notebooks>ul,.sidebar .quarto-alternate-formats>ul{font-size:.8rem}.sidebar nav[role=doc-toc]>ul{font-size:.875rem}.sidebar .toc-actions ul li a,.sidebar .quarto-code-links ul li a,.sidebar .quarto-other-links ul li a,.sidebar .quarto-alternate-notebooks ul li a,.sidebar .quarto-alternate-formats ul li a,.sidebar nav[role=doc-toc]>ul li a{line-height:1.1rem;padding-bottom:.2rem;padding-top:.2rem;color:inherit}.sidebar nav[role=doc-toc] ul>li>ul>li>a{padding-left:1.2em}.sidebar nav[role=doc-toc] ul>li>ul>li>ul>li>a{padding-left:2.4em}.sidebar nav[role=doc-toc] ul>li>ul>li>ul>li>ul>li>a{padding-left:3.6em}.sidebar nav[role=doc-toc] ul>li>ul>li>ul>li>ul>li>ul>li>a{padding-left:4.8em}.sidebar nav[role=doc-toc] ul>li>ul>li>ul>li>ul>li>ul>li>ul>li>a{padding-left:6em}.sidebar nav[role=doc-toc] ul>li>a.active,.sidebar nav[role=doc-toc] ul>li>ul>li>a.active{border-left:1px solid #6d6e71;color:#6d6e71 !important}.sidebar nav[role=doc-toc] ul>li>a:hover,.sidebar nav[role=doc-toc] ul>li>ul>li>a:hover{color:#6d6e71 !important}kbd,.kbd{color:#343a40;background-color:#f8f9fa;border:1px solid;border-radius:5px;border-color:#dee2e6}.quarto-appendix-contents div.hanging-indent{margin-left:0em}.quarto-appendix-contents div.hanging-indent div.csl-entry{margin-left:1em;text-indent:-1em}.citation a,.footnote-ref{text-decoration:none}.footnotes ol{padding-left:1em}.tippy-content>*{margin-bottom:.7em}.tippy-content>*:last-child{margin-bottom:0}.callout{margin-top:1.25rem;margin-bottom:1.25rem;border-radius:.25rem;overflow-wrap:break-word}.callout .callout-title-container{overflow-wrap:anywhere}.callout.callout-style-simple{padding:.4em .7em;border-left:5px solid;border-right:1px solid #dee2e6;border-top:1px solid #dee2e6;border-bottom:1px solid #dee2e6}.callout.callout-style-default{border-left:5px solid;border-right:1px solid #dee2e6;border-top:1px solid #dee2e6;border-bottom:1px solid #dee2e6}.callout .callout-body-container{flex-grow:1}.callout.callout-style-simple .callout-body{font-size:.9rem;font-weight:400}.callout.callout-style-default .callout-body{font-size:.9rem;font-weight:400}.callout:not(.no-icon).callout-titled.callout-style-simple .callout-body{padding-left:1.6em}.callout.callout-titled>.callout-header{padding-top:.2em;margin-bottom:-0.2em}.callout.callout-style-simple>div.callout-header{border-bottom:none;font-size:.9rem;font-weight:600;opacity:75%}.callout.callout-style-default>div.callout-header{border-bottom:none;font-weight:600;opacity:85%;font-size:.9rem;padding-left:.5em;padding-right:.5em}.callout.callout-style-default .callout-body{padding-left:.5em;padding-right:.5em}.callout.callout-style-default .callout-body>:first-child{padding-top:.5rem;margin-top:0}.callout>div.callout-header[data-bs-toggle=collapse]{cursor:pointer}.callout.callout-style-default .callout-header[aria-expanded=false],.callout.callout-style-default .callout-header[aria-expanded=true]{padding-top:0px;margin-bottom:0px;align-items:center}.callout.callout-titled .callout-body>:last-child:not(.sourceCode),.callout.callout-titled .callout-body>div>:last-child:not(.sourceCode){padding-bottom:.5rem;margin-bottom:0}.callout:not(.callout-titled) .callout-body>:first-child,.callout:not(.callout-titled) .callout-body>div>:first-child{margin-top:.25rem}.callout:not(.callout-titled) .callout-body>:last-child,.callout:not(.callout-titled) .callout-body>div>:last-child{margin-bottom:.2rem}.callout.callout-style-simple .callout-icon::before,.callout.callout-style-simple .callout-toggle::before{height:1rem;width:1rem;display:inline-block;content:"";background-repeat:no-repeat;background-size:1rem 1rem}.callout.callout-style-default .callout-icon::before,.callout.callout-style-default .callout-toggle::before{height:.9rem;width:.9rem;display:inline-block;content:"";background-repeat:no-repeat;background-size:.9rem .9rem}.callout.callout-style-default .callout-toggle::before{margin-top:5px}.callout .callout-btn-toggle .callout-toggle::before{transition:transform .2s linear}.callout .callout-header[aria-expanded=false] .callout-toggle::before{transform:rotate(-90deg)}.callout .callout-header[aria-expanded=true] .callout-toggle::before{transform:none}.callout.callout-style-simple:not(.no-icon) div.callout-icon-container{padding-top:.2em;padding-right:.55em}.callout.callout-style-default:not(.no-icon) div.callout-icon-container{padding-top:.1em;padding-right:.35em}.callout.callout-style-default:not(.no-icon) div.callout-title-container{margin-top:-1px}.callout.callout-style-default.callout-caution:not(.no-icon) div.callout-icon-container{padding-top:.3em;padding-right:.35em}.callout>.callout-body>.callout-icon-container>.no-icon,.callout>.callout-header>.callout-icon-container>.no-icon{display:none}div.callout.callout{border-left-color:#6c757d}div.callout.callout-style-default>.callout-header{background-color:#6c757d}div.callout-note.callout{border-left-color:#2780e3}div.callout-note.callout-style-default>.callout-header{background-color:#e9f2fc}div.callout-note:not(.callout-titled) .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-note.callout-titled .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-note .callout-toggle::before{background-image:url('data:image/svg+xml,')}div.callout-tip.callout{border-left-color:#3fb618}div.callout-tip.callout-style-default>.callout-header{background-color:#ecf8e8}div.callout-tip:not(.callout-titled) .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-tip.callout-titled .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-tip .callout-toggle::before{background-image:url('data:image/svg+xml,')}div.callout-warning.callout{border-left-color:#ff7518}div.callout-warning.callout-style-default>.callout-header{background-color:#fff1e8}div.callout-warning:not(.callout-titled) .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-warning.callout-titled .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-warning .callout-toggle::before{background-image:url('data:image/svg+xml,')}div.callout-caution.callout{border-left-color:#f0ad4e}div.callout-caution.callout-style-default>.callout-header{background-color:#fef7ed}div.callout-caution:not(.callout-titled) .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-caution.callout-titled .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-caution .callout-toggle::before{background-image:url('data:image/svg+xml,')}div.callout-important.callout{border-left-color:#ff0039}div.callout-important.callout-style-default>.callout-header{background-color:#ffe6eb}div.callout-important:not(.callout-titled) .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-important.callout-titled .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-important .callout-toggle::before{background-image:url('data:image/svg+xml,')}.quarto-toggle-container{display:flex;align-items:center}.quarto-reader-toggle .bi::before,.quarto-color-scheme-toggle .bi::before{display:inline-block;height:1rem;width:1rem;content:"";background-repeat:no-repeat;background-size:1rem 1rem}.sidebar-navigation{padding-left:20px}.navbar{background-color:#6d6e71;color:#fefefe}.navbar .quarto-color-scheme-toggle:not(.alternate) .bi::before{background-image:url('data:image/svg+xml,')}.navbar .quarto-color-scheme-toggle.alternate .bi::before{background-image:url('data:image/svg+xml,')}.sidebar-navigation .quarto-color-scheme-toggle:not(.alternate) .bi::before{background-image:url('data:image/svg+xml,')}.sidebar-navigation .quarto-color-scheme-toggle.alternate .bi::before{background-image:url('data:image/svg+xml,')}.quarto-sidebar-toggle{border-color:#dee2e6;border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem;border-style:solid;border-width:1px;overflow:hidden;border-top-width:0px;padding-top:0px !important}.quarto-sidebar-toggle-title{cursor:pointer;padding-bottom:2px;margin-left:.25em;text-align:center;font-weight:400;font-size:.775em}#quarto-content .quarto-sidebar-toggle{background:#fafafa}#quarto-content .quarto-sidebar-toggle-title{color:#343a40}.quarto-sidebar-toggle-icon{color:#dee2e6;margin-right:.5em;float:right;transition:transform .2s ease}.quarto-sidebar-toggle-icon::before{padding-top:5px}.quarto-sidebar-toggle.expanded .quarto-sidebar-toggle-icon{transform:rotate(-180deg)}.quarto-sidebar-toggle.expanded .quarto-sidebar-toggle-title{border-bottom:solid #dee2e6 1px}.quarto-sidebar-toggle-contents{background-color:#fff;padding-right:10px;padding-left:10px;margin-top:0px !important;transition:max-height .5s ease}.quarto-sidebar-toggle.expanded .quarto-sidebar-toggle-contents{padding-top:1em;padding-bottom:10px}@media(max-width: 767.98px){.sidebar-menu-container{padding-bottom:5em}}.quarto-sidebar-toggle:not(.expanded) .quarto-sidebar-toggle-contents{padding-top:0px !important;padding-bottom:0px}nav[role=doc-toc]{z-index:1020}#quarto-sidebar>*,nav[role=doc-toc]>*{transition:opacity .1s ease,border .1s ease}#quarto-sidebar.slow>*,nav[role=doc-toc].slow>*{transition:opacity .4s ease,border .4s ease}.quarto-color-scheme-toggle:not(.alternate).top-right .bi::before{background-image:url('data:image/svg+xml,')}.quarto-color-scheme-toggle.alternate.top-right .bi::before{background-image:url('data:image/svg+xml,')}#quarto-appendix.default{border-top:1px solid #dee2e6}#quarto-appendix.default{background-color:#fff;padding-top:1.5em;margin-top:2em;z-index:998}#quarto-appendix.default .quarto-appendix-heading{margin-top:0;line-height:1.4em;font-weight:600;opacity:.9;border-bottom:none;margin-bottom:0}#quarto-appendix.default .footnotes ol,#quarto-appendix.default .footnotes ol li>p:last-of-type,#quarto-appendix.default .quarto-appendix-contents>p:last-of-type{margin-bottom:0}#quarto-appendix.default .footnotes ol{margin-left:.5em}#quarto-appendix.default .quarto-appendix-secondary-label{margin-bottom:.4em}#quarto-appendix.default .quarto-appendix-bibtex{font-size:.7em;padding:1em;border:solid 1px #dee2e6;margin-bottom:1em}#quarto-appendix.default .quarto-appendix-bibtex code.sourceCode{white-space:pre-wrap}#quarto-appendix.default .quarto-appendix-citeas{font-size:.9em;padding:1em;border:solid 1px #dee2e6;margin-bottom:1em}#quarto-appendix.default .quarto-appendix-heading{font-size:1em !important}#quarto-appendix.default *[role=doc-endnotes]>ol,#quarto-appendix.default .quarto-appendix-contents>*:not(h2):not(.h2){font-size:.9em}#quarto-appendix.default section{padding-bottom:1.5em}#quarto-appendix.default section *[role=doc-endnotes],#quarto-appendix.default section>*:not(a){opacity:.9;word-wrap:break-word}.btn.btn-quarto,div.cell-output-display .btn-quarto{--bs-btn-color: #cacccd;--bs-btn-bg: #343a40;--bs-btn-border-color: #343a40;--bs-btn-hover-color: #cacccd;--bs-btn-hover-bg: #52585d;--bs-btn-hover-border-color: #484e53;--bs-btn-focus-shadow-rgb: 75, 80, 85;--bs-btn-active-color: #fff;--bs-btn-active-bg: #5d6166;--bs-btn-active-border-color: #484e53;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #fff;--bs-btn-disabled-bg: #343a40;--bs-btn-disabled-border-color: #343a40}nav.quarto-secondary-nav.color-navbar{background-color:#6d6e71;color:#fefefe}nav.quarto-secondary-nav.color-navbar h1,nav.quarto-secondary-nav.color-navbar .h1,nav.quarto-secondary-nav.color-navbar .quarto-btn-toggle{color:#fefefe}@media(max-width: 991.98px){body.nav-sidebar .quarto-title-banner{margin-bottom:0;padding-bottom:1em}body.nav-sidebar #title-block-header{margin-block-end:0}}p.subtitle{margin-top:.25em;margin-bottom:.5em}code a:any-link{color:inherit;text-decoration-color:#6c757d}/*! light */div.observablehq table thead tr th{background-color:var(--bs-body-bg)}input,button,select,optgroup,textarea{background-color:var(--bs-body-bg)}.code-annotated .code-copy-button{margin-right:1.25em;margin-top:0;padding-bottom:0;padding-top:3px}.code-annotation-gutter-bg{background-color:#fff}.code-annotation-gutter{background-color:rgba(233,236,239,.65)}.code-annotation-gutter,.code-annotation-gutter-bg{height:100%;width:calc(20px + .5em);position:absolute;top:0;right:0}dl.code-annotation-container-grid dt{margin-right:1em;margin-top:.25rem}dl.code-annotation-container-grid dt{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;color:#4b545c;border:solid #4b545c 1px;border-radius:50%;height:22px;width:22px;line-height:22px;font-size:11px;text-align:center;vertical-align:middle;text-decoration:none}dl.code-annotation-container-grid dt[data-target-cell]{cursor:pointer}dl.code-annotation-container-grid dt[data-target-cell].code-annotation-active{color:#fff;border:solid #aaa 1px;background-color:#aaa}pre.code-annotation-code{padding-top:0;padding-bottom:0}pre.code-annotation-code code{z-index:3}#code-annotation-line-highlight-gutter{width:100%;border-top:solid rgba(170,170,170,.2666666667) 1px;border-bottom:solid rgba(170,170,170,.2666666667) 1px;z-index:2;background-color:rgba(170,170,170,.1333333333)}#code-annotation-line-highlight{margin-left:-4em;width:calc(100% + 4em);border-top:solid rgba(170,170,170,.2666666667) 1px;border-bottom:solid rgba(170,170,170,.2666666667) 1px;z-index:2;background-color:rgba(170,170,170,.1333333333)}code.sourceCode .code-annotation-anchor.code-annotation-active{background-color:var(--quarto-hl-normal-color, #aaaaaa);border:solid var(--quarto-hl-normal-color, #aaaaaa) 1px;color:#e9ecef;font-weight:bolder}code.sourceCode .code-annotation-anchor{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;color:var(--quarto-hl-co-color);border:solid var(--quarto-hl-co-color) 1px;border-radius:50%;height:18px;width:18px;font-size:9px;margin-top:2px}code.sourceCode button.code-annotation-anchor{padding:2px;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none}code.sourceCode a.code-annotation-anchor{line-height:18px;text-align:center;vertical-align:middle;cursor:default;text-decoration:none}@media print{.page-columns .column-screen-inset{grid-column:page-start-inset/page-end-inset;z-index:998;opacity:.999}.page-columns .column-screen-inset table{background:#fff}.page-columns .column-screen-inset-left{grid-column:page-start-inset/body-content-end;z-index:998;opacity:.999}.page-columns .column-screen-inset-left table{background:#fff}.page-columns .column-screen-inset-right{grid-column:body-content-start/page-end-inset;z-index:998;opacity:.999}.page-columns .column-screen-inset-right table{background:#fff}.page-columns .column-screen{grid-column:page-start/page-end;z-index:998;opacity:.999}.page-columns .column-screen table{background:#fff}.page-columns .column-screen-left{grid-column:page-start/body-content-end;z-index:998;opacity:.999}.page-columns .column-screen-left table{background:#fff}.page-columns .column-screen-right{grid-column:body-content-start/page-end;z-index:998;opacity:.999}.page-columns .column-screen-right table{background:#fff}.page-columns .column-screen-inset-shaded{grid-column:page-start-inset/page-end-inset;padding:1em;background:#f8f9fa;z-index:998;opacity:.999;margin-bottom:1em}}.quarto-video{margin-bottom:1em}.table{border-top:1px solid #ebedee;border-bottom:1px solid #ebedee}.table>thead{border-top-width:0;border-bottom:1px solid #b2bac1}.table a{word-break:break-word}.table>:not(caption)>*>*{background-color:unset;color:unset}#quarto-document-content .crosstalk-input .checkbox input[type=checkbox],#quarto-document-content .crosstalk-input .checkbox-inline input[type=checkbox]{position:unset;margin-top:unset;margin-left:unset}#quarto-document-content .row{margin-left:unset;margin-right:unset}.quarto-xref{white-space:nowrap}a.external:after{content:"";background-image:url('data:image/svg+xml,');background-size:contain;background-repeat:no-repeat;background-position:center center;margin-left:.2em;padding-right:.75em}div.sourceCode code a.external:after{content:none}a.external:after:hover{cursor:pointer}.quarto-ext-icon{display:inline-block;font-size:.75em;padding-left:.3em}.code-with-filename .code-with-filename-file{margin-bottom:0;padding-bottom:2px;padding-top:2px;padding-left:.7em;border:var(--quarto-border-width) solid var(--quarto-border-color);border-radius:var(--quarto-border-radius);border-bottom:0;border-bottom-left-radius:0%;border-bottom-right-radius:0%}.code-with-filename div.sourceCode,.reveal .code-with-filename div.sourceCode{margin-top:0;border-top-left-radius:0%;border-top-right-radius:0%}.code-with-filename .code-with-filename-file pre{margin-bottom:0}.code-with-filename .code-with-filename-file{background-color:rgba(219,219,219,.8)}.quarto-dark .code-with-filename .code-with-filename-file{background-color:#555}.code-with-filename .code-with-filename-file strong{font-weight:400}.quarto-title-banner{margin-bottom:1em;color:#fefefe;background:#6d6e71}.quarto-title-banner a{color:#fefefe}.quarto-title-banner h1,.quarto-title-banner .h1,.quarto-title-banner h2,.quarto-title-banner .h2{color:#fefefe}.quarto-title-banner .code-tools-button{color:#cbcbcb}.quarto-title-banner .code-tools-button:hover{color:#fefefe}.quarto-title-banner .code-tools-button>.bi::before{background-image:url('data:image/svg+xml,')}.quarto-title-banner .code-tools-button:hover>.bi::before{background-image:url('data:image/svg+xml,')}.quarto-title-banner .quarto-title .title{font-weight:600}.quarto-title-banner .quarto-categories{margin-top:.75em}@media(min-width: 992px){.quarto-title-banner{padding-top:2.5em;padding-bottom:2.5em}}@media(max-width: 991.98px){.quarto-title-banner{padding-top:1em;padding-bottom:1em}}@media(max-width: 767.98px){body.hypothesis-enabled #title-block-header>*{padding-right:20px}}main.quarto-banner-title-block>section:first-child>h2,main.quarto-banner-title-block>section:first-child>.h2,main.quarto-banner-title-block>section:first-child>h3,main.quarto-banner-title-block>section:first-child>.h3,main.quarto-banner-title-block>section:first-child>h4,main.quarto-banner-title-block>section:first-child>.h4{margin-top:0}.quarto-title .quarto-categories{display:flex;flex-wrap:wrap;row-gap:.5em;column-gap:.4em;padding-bottom:.5em;margin-top:.75em}.quarto-title .quarto-categories .quarto-category{padding:.25em .75em;font-size:.65em;text-transform:uppercase;border:solid 1px;border-radius:.25rem;opacity:.6}.quarto-title .quarto-categories .quarto-category a{color:inherit}.quarto-title-meta-container{display:grid;grid-template-columns:1fr auto}.quarto-title-meta-column-end{display:flex;flex-direction:column;padding-left:1em}.quarto-title-meta-column-end a .bi{margin-right:.3em}#title-block-header.quarto-title-block.default .quarto-title-meta{display:grid;grid-template-columns:minmax(max-content, 1fr) 1fr;grid-column-gap:1em}#title-block-header.quarto-title-block.default .quarto-title .title{margin-bottom:0}#title-block-header.quarto-title-block.default .quarto-title-author-orcid img{margin-top:-0.2em;height:.8em;width:.8em}#title-block-header.quarto-title-block.default .quarto-title-author-email{opacity:.7}#title-block-header.quarto-title-block.default .quarto-description p:last-of-type{margin-bottom:0}#title-block-header.quarto-title-block.default .quarto-title-meta-contents p,#title-block-header.quarto-title-block.default .quarto-title-authors p,#title-block-header.quarto-title-block.default .quarto-title-affiliations p{margin-bottom:.1em}#title-block-header.quarto-title-block.default .quarto-title-meta-heading{text-transform:uppercase;margin-top:1em;font-size:.8em;opacity:.8;font-weight:400}#title-block-header.quarto-title-block.default .quarto-title-meta-contents{font-size:.9em}#title-block-header.quarto-title-block.default .quarto-title-meta-contents p.affiliation:last-of-type{margin-bottom:.1em}#title-block-header.quarto-title-block.default p.affiliation{margin-bottom:.1em}#title-block-header.quarto-title-block.default .keywords,#title-block-header.quarto-title-block.default .description,#title-block-header.quarto-title-block.default .abstract{margin-top:0}#title-block-header.quarto-title-block.default .keywords>p,#title-block-header.quarto-title-block.default .description>p,#title-block-header.quarto-title-block.default .abstract>p{font-size:.9em}#title-block-header.quarto-title-block.default .keywords>p:last-of-type,#title-block-header.quarto-title-block.default .description>p:last-of-type,#title-block-header.quarto-title-block.default .abstract>p:last-of-type{margin-bottom:0}#title-block-header.quarto-title-block.default .keywords .block-title,#title-block-header.quarto-title-block.default .description .block-title,#title-block-header.quarto-title-block.default .abstract .block-title{margin-top:1em;text-transform:uppercase;font-size:.8em;opacity:.8;font-weight:400}#title-block-header.quarto-title-block.default .quarto-title-meta-author{display:grid;grid-template-columns:minmax(max-content, 1fr) 1fr;grid-column-gap:1em}.quarto-title-tools-only{display:flex;justify-content:right}body{-webkit-font-smoothing:antialiased}.badge.bg-light{color:#343a40}.progress .progress-bar{font-size:8px;line-height:8px} diff --git a/site_libs/bootstrap/bootstrap.min.js b/site_libs/bootstrap/bootstrap.min.js index cc0a255..e8f21f7 100644 --- a/site_libs/bootstrap/bootstrap.min.js +++ b/site_libs/bootstrap/bootstrap.min.js @@ -1,7 +1,7 @@ /*! - * Bootstrap v5.1.3 (https://getbootstrap.com/) - * Copyright 2011-2021 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors) + * Bootstrap v5.3.1 (https://getbootstrap.com/) + * Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors) * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) */ -!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).bootstrap=e()}(this,(function(){"use strict";const t="transitionend",e=t=>{let e=t.getAttribute("data-bs-target");if(!e||"#"===e){let i=t.getAttribute("href");if(!i||!i.includes("#")&&!i.startsWith("."))return null;i.includes("#")&&!i.startsWith("#")&&(i=`#${i.split("#")[1]}`),e=i&&"#"!==i?i.trim():null}return e},i=t=>{const i=e(t);return i&&document.querySelector(i)?i:null},n=t=>{const i=e(t);return i?document.querySelector(i):null},s=e=>{e.dispatchEvent(new Event(t))},o=t=>!(!t||"object"!=typeof t)&&(void 0!==t.jquery&&(t=t[0]),void 0!==t.nodeType),r=t=>o(t)?t.jquery?t[0]:t:"string"==typeof t&&t.length>0?document.querySelector(t):null,a=(t,e,i)=>{Object.keys(i).forEach((n=>{const s=i[n],r=e[n],a=r&&o(r)?"element":null==(l=r)?`${l}`:{}.toString.call(l).match(/\s([a-z]+)/i)[1].toLowerCase();var l;if(!new RegExp(s).test(a))throw new TypeError(`${t.toUpperCase()}: Option "${n}" provided type "${a}" but expected type "${s}".`)}))},l=t=>!(!o(t)||0===t.getClientRects().length)&&"visible"===getComputedStyle(t).getPropertyValue("visibility"),c=t=>!t||t.nodeType!==Node.ELEMENT_NODE||!!t.classList.contains("disabled")||(void 0!==t.disabled?t.disabled:t.hasAttribute("disabled")&&"false"!==t.getAttribute("disabled")),h=t=>{if(!document.documentElement.attachShadow)return null;if("function"==typeof t.getRootNode){const e=t.getRootNode();return e instanceof ShadowRoot?e:null}return t instanceof ShadowRoot?t:t.parentNode?h(t.parentNode):null},d=()=>{},u=t=>{t.offsetHeight},f=()=>{const{jQuery:t}=window;return t&&!document.body.hasAttribute("data-bs-no-jquery")?t:null},p=[],m=()=>"rtl"===document.documentElement.dir,g=t=>{var e;e=()=>{const e=f();if(e){const i=t.NAME,n=e.fn[i];e.fn[i]=t.jQueryInterface,e.fn[i].Constructor=t,e.fn[i].noConflict=()=>(e.fn[i]=n,t.jQueryInterface)}},"loading"===document.readyState?(p.length||document.addEventListener("DOMContentLoaded",(()=>{p.forEach((t=>t()))})),p.push(e)):e()},_=t=>{"function"==typeof t&&t()},b=(e,i,n=!0)=>{if(!n)return void _(e);const o=(t=>{if(!t)return 0;let{transitionDuration:e,transitionDelay:i}=window.getComputedStyle(t);const n=Number.parseFloat(e),s=Number.parseFloat(i);return n||s?(e=e.split(",")[0],i=i.split(",")[0],1e3*(Number.parseFloat(e)+Number.parseFloat(i))):0})(i)+5;let r=!1;const a=({target:n})=>{n===i&&(r=!0,i.removeEventListener(t,a),_(e))};i.addEventListener(t,a),setTimeout((()=>{r||s(i)}),o)},v=(t,e,i,n)=>{let s=t.indexOf(e);if(-1===s)return t[!i&&n?t.length-1:0];const o=t.length;return s+=i?1:-1,n&&(s=(s+o)%o),t[Math.max(0,Math.min(s,o-1))]},y=/[^.]*(?=\..*)\.|.*/,w=/\..*/,E=/::\d+$/,A={};let T=1;const O={mouseenter:"mouseover",mouseleave:"mouseout"},C=/^(mouseenter|mouseleave)/i,k=new Set(["click","dblclick","mouseup","mousedown","contextmenu","mousewheel","DOMMouseScroll","mouseover","mouseout","mousemove","selectstart","selectend","keydown","keypress","keyup","orientationchange","touchstart","touchmove","touchend","touchcancel","pointerdown","pointermove","pointerup","pointerleave","pointercancel","gesturestart","gesturechange","gestureend","focus","blur","change","reset","select","submit","focusin","focusout","load","unload","beforeunload","resize","move","DOMContentLoaded","readystatechange","error","abort","scroll"]);function L(t,e){return e&&`${e}::${T++}`||t.uidEvent||T++}function x(t){const e=L(t);return t.uidEvent=e,A[e]=A[e]||{},A[e]}function D(t,e,i=null){const n=Object.keys(t);for(let s=0,o=n.length;sfunction(e){if(!e.relatedTarget||e.relatedTarget!==e.delegateTarget&&!e.delegateTarget.contains(e.relatedTarget))return t.call(this,e)};n?n=t(n):i=t(i)}const[o,r,a]=S(e,i,n),l=x(t),c=l[a]||(l[a]={}),h=D(c,r,o?i:null);if(h)return void(h.oneOff=h.oneOff&&s);const d=L(r,e.replace(y,"")),u=o?function(t,e,i){return function n(s){const o=t.querySelectorAll(e);for(let{target:r}=s;r&&r!==this;r=r.parentNode)for(let a=o.length;a--;)if(o[a]===r)return s.delegateTarget=r,n.oneOff&&j.off(t,s.type,e,i),i.apply(r,[s]);return null}}(t,i,n):function(t,e){return function i(n){return n.delegateTarget=t,i.oneOff&&j.off(t,n.type,e),e.apply(t,[n])}}(t,i);u.delegationSelector=o?i:null,u.originalHandler=r,u.oneOff=s,u.uidEvent=d,c[d]=u,t.addEventListener(a,u,o)}function I(t,e,i,n,s){const o=D(e[i],n,s);o&&(t.removeEventListener(i,o,Boolean(s)),delete e[i][o.uidEvent])}function P(t){return t=t.replace(w,""),O[t]||t}const j={on(t,e,i,n){N(t,e,i,n,!1)},one(t,e,i,n){N(t,e,i,n,!0)},off(t,e,i,n){if("string"!=typeof e||!t)return;const[s,o,r]=S(e,i,n),a=r!==e,l=x(t),c=e.startsWith(".");if(void 0!==o){if(!l||!l[r])return;return void I(t,l,r,o,s?i:null)}c&&Object.keys(l).forEach((i=>{!function(t,e,i,n){const s=e[i]||{};Object.keys(s).forEach((o=>{if(o.includes(n)){const n=s[o];I(t,e,i,n.originalHandler,n.delegationSelector)}}))}(t,l,i,e.slice(1))}));const h=l[r]||{};Object.keys(h).forEach((i=>{const n=i.replace(E,"");if(!a||e.includes(n)){const e=h[i];I(t,l,r,e.originalHandler,e.delegationSelector)}}))},trigger(t,e,i){if("string"!=typeof e||!t)return null;const n=f(),s=P(e),o=e!==s,r=k.has(s);let a,l=!0,c=!0,h=!1,d=null;return o&&n&&(a=n.Event(e,i),n(t).trigger(a),l=!a.isPropagationStopped(),c=!a.isImmediatePropagationStopped(),h=a.isDefaultPrevented()),r?(d=document.createEvent("HTMLEvents"),d.initEvent(s,l,!0)):d=new CustomEvent(e,{bubbles:l,cancelable:!0}),void 0!==i&&Object.keys(i).forEach((t=>{Object.defineProperty(d,t,{get:()=>i[t]})})),h&&d.preventDefault(),c&&t.dispatchEvent(d),d.defaultPrevented&&void 0!==a&&a.preventDefault(),d}},M=new Map,H={set(t,e,i){M.has(t)||M.set(t,new Map);const n=M.get(t);n.has(e)||0===n.size?n.set(e,i):console.error(`Bootstrap doesn't allow more than one instance per element. Bound instance: ${Array.from(n.keys())[0]}.`)},get:(t,e)=>M.has(t)&&M.get(t).get(e)||null,remove(t,e){if(!M.has(t))return;const i=M.get(t);i.delete(e),0===i.size&&M.delete(t)}};class B{constructor(t){(t=r(t))&&(this._element=t,H.set(this._element,this.constructor.DATA_KEY,this))}dispose(){H.remove(this._element,this.constructor.DATA_KEY),j.off(this._element,this.constructor.EVENT_KEY),Object.getOwnPropertyNames(this).forEach((t=>{this[t]=null}))}_queueCallback(t,e,i=!0){b(t,e,i)}static getInstance(t){return H.get(r(t),this.DATA_KEY)}static getOrCreateInstance(t,e={}){return this.getInstance(t)||new this(t,"object"==typeof e?e:null)}static get VERSION(){return"5.1.3"}static get NAME(){throw new Error('You have to implement the static method "NAME", for each component!')}static get DATA_KEY(){return`bs.${this.NAME}`}static get EVENT_KEY(){return`.${this.DATA_KEY}`}}const R=(t,e="hide")=>{const i=`click.dismiss${t.EVENT_KEY}`,s=t.NAME;j.on(document,i,`[data-bs-dismiss="${s}"]`,(function(i){if(["A","AREA"].includes(this.tagName)&&i.preventDefault(),c(this))return;const o=n(this)||this.closest(`.${s}`);t.getOrCreateInstance(o)[e]()}))};class W extends B{static get NAME(){return"alert"}close(){if(j.trigger(this._element,"close.bs.alert").defaultPrevented)return;this._element.classList.remove("show");const t=this._element.classList.contains("fade");this._queueCallback((()=>this._destroyElement()),this._element,t)}_destroyElement(){this._element.remove(),j.trigger(this._element,"closed.bs.alert"),this.dispose()}static jQueryInterface(t){return this.each((function(){const e=W.getOrCreateInstance(this);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}R(W,"close"),g(W);const $='[data-bs-toggle="button"]';class z extends B{static get NAME(){return"button"}toggle(){this._element.setAttribute("aria-pressed",this._element.classList.toggle("active"))}static jQueryInterface(t){return this.each((function(){const e=z.getOrCreateInstance(this);"toggle"===t&&e[t]()}))}}function q(t){return"true"===t||"false"!==t&&(t===Number(t).toString()?Number(t):""===t||"null"===t?null:t)}function F(t){return t.replace(/[A-Z]/g,(t=>`-${t.toLowerCase()}`))}j.on(document,"click.bs.button.data-api",$,(t=>{t.preventDefault();const e=t.target.closest($);z.getOrCreateInstance(e).toggle()})),g(z);const U={setDataAttribute(t,e,i){t.setAttribute(`data-bs-${F(e)}`,i)},removeDataAttribute(t,e){t.removeAttribute(`data-bs-${F(e)}`)},getDataAttributes(t){if(!t)return{};const e={};return Object.keys(t.dataset).filter((t=>t.startsWith("bs"))).forEach((i=>{let n=i.replace(/^bs/,"");n=n.charAt(0).toLowerCase()+n.slice(1,n.length),e[n]=q(t.dataset[i])})),e},getDataAttribute:(t,e)=>q(t.getAttribute(`data-bs-${F(e)}`)),offset(t){const e=t.getBoundingClientRect();return{top:e.top+window.pageYOffset,left:e.left+window.pageXOffset}},position:t=>({top:t.offsetTop,left:t.offsetLeft})},V={find:(t,e=document.documentElement)=>[].concat(...Element.prototype.querySelectorAll.call(e,t)),findOne:(t,e=document.documentElement)=>Element.prototype.querySelector.call(e,t),children:(t,e)=>[].concat(...t.children).filter((t=>t.matches(e))),parents(t,e){const i=[];let n=t.parentNode;for(;n&&n.nodeType===Node.ELEMENT_NODE&&3!==n.nodeType;)n.matches(e)&&i.push(n),n=n.parentNode;return i},prev(t,e){let i=t.previousElementSibling;for(;i;){if(i.matches(e))return[i];i=i.previousElementSibling}return[]},next(t,e){let i=t.nextElementSibling;for(;i;){if(i.matches(e))return[i];i=i.nextElementSibling}return[]},focusableChildren(t){const e=["a","button","input","textarea","select","details","[tabindex]",'[contenteditable="true"]'].map((t=>`${t}:not([tabindex^="-"])`)).join(", ");return this.find(e,t).filter((t=>!c(t)&&l(t)))}},K="carousel",X={interval:5e3,keyboard:!0,slide:!1,pause:"hover",wrap:!0,touch:!0},Y={interval:"(number|boolean)",keyboard:"boolean",slide:"(boolean|string)",pause:"(string|boolean)",wrap:"boolean",touch:"boolean"},Q="next",G="prev",Z="left",J="right",tt={ArrowLeft:J,ArrowRight:Z},et="slid.bs.carousel",it="active",nt=".active.carousel-item";class st extends B{constructor(t,e){super(t),this._items=null,this._interval=null,this._activeElement=null,this._isPaused=!1,this._isSliding=!1,this.touchTimeout=null,this.touchStartX=0,this.touchDeltaX=0,this._config=this._getConfig(e),this._indicatorsElement=V.findOne(".carousel-indicators",this._element),this._touchSupported="ontouchstart"in document.documentElement||navigator.maxTouchPoints>0,this._pointerEvent=Boolean(window.PointerEvent),this._addEventListeners()}static get Default(){return X}static get NAME(){return K}next(){this._slide(Q)}nextWhenVisible(){!document.hidden&&l(this._element)&&this.next()}prev(){this._slide(G)}pause(t){t||(this._isPaused=!0),V.findOne(".carousel-item-next, .carousel-item-prev",this._element)&&(s(this._element),this.cycle(!0)),clearInterval(this._interval),this._interval=null}cycle(t){t||(this._isPaused=!1),this._interval&&(clearInterval(this._interval),this._interval=null),this._config&&this._config.interval&&!this._isPaused&&(this._updateInterval(),this._interval=setInterval((document.visibilityState?this.nextWhenVisible:this.next).bind(this),this._config.interval))}to(t){this._activeElement=V.findOne(nt,this._element);const e=this._getItemIndex(this._activeElement);if(t>this._items.length-1||t<0)return;if(this._isSliding)return void j.one(this._element,et,(()=>this.to(t)));if(e===t)return this.pause(),void this.cycle();const i=t>e?Q:G;this._slide(i,this._items[t])}_getConfig(t){return t={...X,...U.getDataAttributes(this._element),..."object"==typeof t?t:{}},a(K,t,Y),t}_handleSwipe(){const t=Math.abs(this.touchDeltaX);if(t<=40)return;const e=t/this.touchDeltaX;this.touchDeltaX=0,e&&this._slide(e>0?J:Z)}_addEventListeners(){this._config.keyboard&&j.on(this._element,"keydown.bs.carousel",(t=>this._keydown(t))),"hover"===this._config.pause&&(j.on(this._element,"mouseenter.bs.carousel",(t=>this.pause(t))),j.on(this._element,"mouseleave.bs.carousel",(t=>this.cycle(t)))),this._config.touch&&this._touchSupported&&this._addTouchEventListeners()}_addTouchEventListeners(){const t=t=>this._pointerEvent&&("pen"===t.pointerType||"touch"===t.pointerType),e=e=>{t(e)?this.touchStartX=e.clientX:this._pointerEvent||(this.touchStartX=e.touches[0].clientX)},i=t=>{this.touchDeltaX=t.touches&&t.touches.length>1?0:t.touches[0].clientX-this.touchStartX},n=e=>{t(e)&&(this.touchDeltaX=e.clientX-this.touchStartX),this._handleSwipe(),"hover"===this._config.pause&&(this.pause(),this.touchTimeout&&clearTimeout(this.touchTimeout),this.touchTimeout=setTimeout((t=>this.cycle(t)),500+this._config.interval))};V.find(".carousel-item img",this._element).forEach((t=>{j.on(t,"dragstart.bs.carousel",(t=>t.preventDefault()))})),this._pointerEvent?(j.on(this._element,"pointerdown.bs.carousel",(t=>e(t))),j.on(this._element,"pointerup.bs.carousel",(t=>n(t))),this._element.classList.add("pointer-event")):(j.on(this._element,"touchstart.bs.carousel",(t=>e(t))),j.on(this._element,"touchmove.bs.carousel",(t=>i(t))),j.on(this._element,"touchend.bs.carousel",(t=>n(t))))}_keydown(t){if(/input|textarea/i.test(t.target.tagName))return;const e=tt[t.key];e&&(t.preventDefault(),this._slide(e))}_getItemIndex(t){return this._items=t&&t.parentNode?V.find(".carousel-item",t.parentNode):[],this._items.indexOf(t)}_getItemByOrder(t,e){const i=t===Q;return v(this._items,e,i,this._config.wrap)}_triggerSlideEvent(t,e){const i=this._getItemIndex(t),n=this._getItemIndex(V.findOne(nt,this._element));return j.trigger(this._element,"slide.bs.carousel",{relatedTarget:t,direction:e,from:n,to:i})}_setActiveIndicatorElement(t){if(this._indicatorsElement){const e=V.findOne(".active",this._indicatorsElement);e.classList.remove(it),e.removeAttribute("aria-current");const i=V.find("[data-bs-target]",this._indicatorsElement);for(let e=0;e{j.trigger(this._element,et,{relatedTarget:o,direction:d,from:s,to:r})};if(this._element.classList.contains("slide")){o.classList.add(h),u(o),n.classList.add(c),o.classList.add(c);const t=()=>{o.classList.remove(c,h),o.classList.add(it),n.classList.remove(it,h,c),this._isSliding=!1,setTimeout(f,0)};this._queueCallback(t,n,!0)}else n.classList.remove(it),o.classList.add(it),this._isSliding=!1,f();a&&this.cycle()}_directionToOrder(t){return[J,Z].includes(t)?m()?t===Z?G:Q:t===Z?Q:G:t}_orderToDirection(t){return[Q,G].includes(t)?m()?t===G?Z:J:t===G?J:Z:t}static carouselInterface(t,e){const i=st.getOrCreateInstance(t,e);let{_config:n}=i;"object"==typeof e&&(n={...n,...e});const s="string"==typeof e?e:n.slide;if("number"==typeof e)i.to(e);else if("string"==typeof s){if(void 0===i[s])throw new TypeError(`No method named "${s}"`);i[s]()}else n.interval&&n.ride&&(i.pause(),i.cycle())}static jQueryInterface(t){return this.each((function(){st.carouselInterface(this,t)}))}static dataApiClickHandler(t){const e=n(this);if(!e||!e.classList.contains("carousel"))return;const i={...U.getDataAttributes(e),...U.getDataAttributes(this)},s=this.getAttribute("data-bs-slide-to");s&&(i.interval=!1),st.carouselInterface(e,i),s&&st.getInstance(e).to(s),t.preventDefault()}}j.on(document,"click.bs.carousel.data-api","[data-bs-slide], [data-bs-slide-to]",st.dataApiClickHandler),j.on(window,"load.bs.carousel.data-api",(()=>{const t=V.find('[data-bs-ride="carousel"]');for(let e=0,i=t.length;et===this._element));null!==s&&o.length&&(this._selector=s,this._triggerArray.push(e))}this._initializeChildren(),this._config.parent||this._addAriaAndCollapsedClass(this._triggerArray,this._isShown()),this._config.toggle&&this.toggle()}static get Default(){return rt}static get NAME(){return ot}toggle(){this._isShown()?this.hide():this.show()}show(){if(this._isTransitioning||this._isShown())return;let t,e=[];if(this._config.parent){const t=V.find(ut,this._config.parent);e=V.find(".collapse.show, .collapse.collapsing",this._config.parent).filter((e=>!t.includes(e)))}const i=V.findOne(this._selector);if(e.length){const n=e.find((t=>i!==t));if(t=n?pt.getInstance(n):null,t&&t._isTransitioning)return}if(j.trigger(this._element,"show.bs.collapse").defaultPrevented)return;e.forEach((e=>{i!==e&&pt.getOrCreateInstance(e,{toggle:!1}).hide(),t||H.set(e,"bs.collapse",null)}));const n=this._getDimension();this._element.classList.remove(ct),this._element.classList.add(ht),this._element.style[n]=0,this._addAriaAndCollapsedClass(this._triggerArray,!0),this._isTransitioning=!0;const s=`scroll${n[0].toUpperCase()+n.slice(1)}`;this._queueCallback((()=>{this._isTransitioning=!1,this._element.classList.remove(ht),this._element.classList.add(ct,lt),this._element.style[n]="",j.trigger(this._element,"shown.bs.collapse")}),this._element,!0),this._element.style[n]=`${this._element[s]}px`}hide(){if(this._isTransitioning||!this._isShown())return;if(j.trigger(this._element,"hide.bs.collapse").defaultPrevented)return;const t=this._getDimension();this._element.style[t]=`${this._element.getBoundingClientRect()[t]}px`,u(this._element),this._element.classList.add(ht),this._element.classList.remove(ct,lt);const e=this._triggerArray.length;for(let t=0;t{this._isTransitioning=!1,this._element.classList.remove(ht),this._element.classList.add(ct),j.trigger(this._element,"hidden.bs.collapse")}),this._element,!0)}_isShown(t=this._element){return t.classList.contains(lt)}_getConfig(t){return(t={...rt,...U.getDataAttributes(this._element),...t}).toggle=Boolean(t.toggle),t.parent=r(t.parent),a(ot,t,at),t}_getDimension(){return this._element.classList.contains("collapse-horizontal")?"width":"height"}_initializeChildren(){if(!this._config.parent)return;const t=V.find(ut,this._config.parent);V.find(ft,this._config.parent).filter((e=>!t.includes(e))).forEach((t=>{const e=n(t);e&&this._addAriaAndCollapsedClass([t],this._isShown(e))}))}_addAriaAndCollapsedClass(t,e){t.length&&t.forEach((t=>{e?t.classList.remove(dt):t.classList.add(dt),t.setAttribute("aria-expanded",e)}))}static jQueryInterface(t){return this.each((function(){const e={};"string"==typeof t&&/show|hide/.test(t)&&(e.toggle=!1);const i=pt.getOrCreateInstance(this,e);if("string"==typeof t){if(void 0===i[t])throw new TypeError(`No method named "${t}"`);i[t]()}}))}}j.on(document,"click.bs.collapse.data-api",ft,(function(t){("A"===t.target.tagName||t.delegateTarget&&"A"===t.delegateTarget.tagName)&&t.preventDefault();const e=i(this);V.find(e).forEach((t=>{pt.getOrCreateInstance(t,{toggle:!1}).toggle()}))})),g(pt);var mt="top",gt="bottom",_t="right",bt="left",vt="auto",yt=[mt,gt,_t,bt],wt="start",Et="end",At="clippingParents",Tt="viewport",Ot="popper",Ct="reference",kt=yt.reduce((function(t,e){return t.concat([e+"-"+wt,e+"-"+Et])}),[]),Lt=[].concat(yt,[vt]).reduce((function(t,e){return t.concat([e,e+"-"+wt,e+"-"+Et])}),[]),xt="beforeRead",Dt="read",St="afterRead",Nt="beforeMain",It="main",Pt="afterMain",jt="beforeWrite",Mt="write",Ht="afterWrite",Bt=[xt,Dt,St,Nt,It,Pt,jt,Mt,Ht];function Rt(t){return t?(t.nodeName||"").toLowerCase():null}function Wt(t){if(null==t)return window;if("[object Window]"!==t.toString()){var e=t.ownerDocument;return e&&e.defaultView||window}return t}function $t(t){return t instanceof Wt(t).Element||t instanceof Element}function zt(t){return t instanceof Wt(t).HTMLElement||t instanceof HTMLElement}function qt(t){return"undefined"!=typeof ShadowRoot&&(t instanceof Wt(t).ShadowRoot||t instanceof ShadowRoot)}const Ft={name:"applyStyles",enabled:!0,phase:"write",fn:function(t){var e=t.state;Object.keys(e.elements).forEach((function(t){var i=e.styles[t]||{},n=e.attributes[t]||{},s=e.elements[t];zt(s)&&Rt(s)&&(Object.assign(s.style,i),Object.keys(n).forEach((function(t){var e=n[t];!1===e?s.removeAttribute(t):s.setAttribute(t,!0===e?"":e)})))}))},effect:function(t){var e=t.state,i={popper:{position:e.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(e.elements.popper.style,i.popper),e.styles=i,e.elements.arrow&&Object.assign(e.elements.arrow.style,i.arrow),function(){Object.keys(e.elements).forEach((function(t){var n=e.elements[t],s=e.attributes[t]||{},o=Object.keys(e.styles.hasOwnProperty(t)?e.styles[t]:i[t]).reduce((function(t,e){return t[e]="",t}),{});zt(n)&&Rt(n)&&(Object.assign(n.style,o),Object.keys(s).forEach((function(t){n.removeAttribute(t)})))}))}},requires:["computeStyles"]};function Ut(t){return t.split("-")[0]}function Vt(t,e){var i=t.getBoundingClientRect();return{width:i.width/1,height:i.height/1,top:i.top/1,right:i.right/1,bottom:i.bottom/1,left:i.left/1,x:i.left/1,y:i.top/1}}function Kt(t){var e=Vt(t),i=t.offsetWidth,n=t.offsetHeight;return Math.abs(e.width-i)<=1&&(i=e.width),Math.abs(e.height-n)<=1&&(n=e.height),{x:t.offsetLeft,y:t.offsetTop,width:i,height:n}}function Xt(t,e){var i=e.getRootNode&&e.getRootNode();if(t.contains(e))return!0;if(i&&qt(i)){var n=e;do{if(n&&t.isSameNode(n))return!0;n=n.parentNode||n.host}while(n)}return!1}function Yt(t){return Wt(t).getComputedStyle(t)}function Qt(t){return["table","td","th"].indexOf(Rt(t))>=0}function Gt(t){return(($t(t)?t.ownerDocument:t.document)||window.document).documentElement}function Zt(t){return"html"===Rt(t)?t:t.assignedSlot||t.parentNode||(qt(t)?t.host:null)||Gt(t)}function Jt(t){return zt(t)&&"fixed"!==Yt(t).position?t.offsetParent:null}function te(t){for(var e=Wt(t),i=Jt(t);i&&Qt(i)&&"static"===Yt(i).position;)i=Jt(i);return i&&("html"===Rt(i)||"body"===Rt(i)&&"static"===Yt(i).position)?e:i||function(t){var e=-1!==navigator.userAgent.toLowerCase().indexOf("firefox");if(-1!==navigator.userAgent.indexOf("Trident")&&zt(t)&&"fixed"===Yt(t).position)return null;for(var i=Zt(t);zt(i)&&["html","body"].indexOf(Rt(i))<0;){var n=Yt(i);if("none"!==n.transform||"none"!==n.perspective||"paint"===n.contain||-1!==["transform","perspective"].indexOf(n.willChange)||e&&"filter"===n.willChange||e&&n.filter&&"none"!==n.filter)return i;i=i.parentNode}return null}(t)||e}function ee(t){return["top","bottom"].indexOf(t)>=0?"x":"y"}var ie=Math.max,ne=Math.min,se=Math.round;function oe(t,e,i){return ie(t,ne(e,i))}function re(t){return Object.assign({},{top:0,right:0,bottom:0,left:0},t)}function ae(t,e){return e.reduce((function(e,i){return e[i]=t,e}),{})}const le={name:"arrow",enabled:!0,phase:"main",fn:function(t){var e,i=t.state,n=t.name,s=t.options,o=i.elements.arrow,r=i.modifiersData.popperOffsets,a=Ut(i.placement),l=ee(a),c=[bt,_t].indexOf(a)>=0?"height":"width";if(o&&r){var h=function(t,e){return re("number"!=typeof(t="function"==typeof t?t(Object.assign({},e.rects,{placement:e.placement})):t)?t:ae(t,yt))}(s.padding,i),d=Kt(o),u="y"===l?mt:bt,f="y"===l?gt:_t,p=i.rects.reference[c]+i.rects.reference[l]-r[l]-i.rects.popper[c],m=r[l]-i.rects.reference[l],g=te(o),_=g?"y"===l?g.clientHeight||0:g.clientWidth||0:0,b=p/2-m/2,v=h[u],y=_-d[c]-h[f],w=_/2-d[c]/2+b,E=oe(v,w,y),A=l;i.modifiersData[n]=((e={})[A]=E,e.centerOffset=E-w,e)}},effect:function(t){var e=t.state,i=t.options.element,n=void 0===i?"[data-popper-arrow]":i;null!=n&&("string"!=typeof n||(n=e.elements.popper.querySelector(n)))&&Xt(e.elements.popper,n)&&(e.elements.arrow=n)},requires:["popperOffsets"],requiresIfExists:["preventOverflow"]};function ce(t){return t.split("-")[1]}var he={top:"auto",right:"auto",bottom:"auto",left:"auto"};function de(t){var e,i=t.popper,n=t.popperRect,s=t.placement,o=t.variation,r=t.offsets,a=t.position,l=t.gpuAcceleration,c=t.adaptive,h=t.roundOffsets,d=!0===h?function(t){var e=t.x,i=t.y,n=window.devicePixelRatio||1;return{x:se(se(e*n)/n)||0,y:se(se(i*n)/n)||0}}(r):"function"==typeof h?h(r):r,u=d.x,f=void 0===u?0:u,p=d.y,m=void 0===p?0:p,g=r.hasOwnProperty("x"),_=r.hasOwnProperty("y"),b=bt,v=mt,y=window;if(c){var w=te(i),E="clientHeight",A="clientWidth";w===Wt(i)&&"static"!==Yt(w=Gt(i)).position&&"absolute"===a&&(E="scrollHeight",A="scrollWidth"),w=w,s!==mt&&(s!==bt&&s!==_t||o!==Et)||(v=gt,m-=w[E]-n.height,m*=l?1:-1),s!==bt&&(s!==mt&&s!==gt||o!==Et)||(b=_t,f-=w[A]-n.width,f*=l?1:-1)}var T,O=Object.assign({position:a},c&&he);return l?Object.assign({},O,((T={})[v]=_?"0":"",T[b]=g?"0":"",T.transform=(y.devicePixelRatio||1)<=1?"translate("+f+"px, "+m+"px)":"translate3d("+f+"px, "+m+"px, 0)",T)):Object.assign({},O,((e={})[v]=_?m+"px":"",e[b]=g?f+"px":"",e.transform="",e))}const ue={name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:function(t){var e=t.state,i=t.options,n=i.gpuAcceleration,s=void 0===n||n,o=i.adaptive,r=void 0===o||o,a=i.roundOffsets,l=void 0===a||a,c={placement:Ut(e.placement),variation:ce(e.placement),popper:e.elements.popper,popperRect:e.rects.popper,gpuAcceleration:s};null!=e.modifiersData.popperOffsets&&(e.styles.popper=Object.assign({},e.styles.popper,de(Object.assign({},c,{offsets:e.modifiersData.popperOffsets,position:e.options.strategy,adaptive:r,roundOffsets:l})))),null!=e.modifiersData.arrow&&(e.styles.arrow=Object.assign({},e.styles.arrow,de(Object.assign({},c,{offsets:e.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:l})))),e.attributes.popper=Object.assign({},e.attributes.popper,{"data-popper-placement":e.placement})},data:{}};var fe={passive:!0};const pe={name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:function(t){var e=t.state,i=t.instance,n=t.options,s=n.scroll,o=void 0===s||s,r=n.resize,a=void 0===r||r,l=Wt(e.elements.popper),c=[].concat(e.scrollParents.reference,e.scrollParents.popper);return o&&c.forEach((function(t){t.addEventListener("scroll",i.update,fe)})),a&&l.addEventListener("resize",i.update,fe),function(){o&&c.forEach((function(t){t.removeEventListener("scroll",i.update,fe)})),a&&l.removeEventListener("resize",i.update,fe)}},data:{}};var me={left:"right",right:"left",bottom:"top",top:"bottom"};function ge(t){return t.replace(/left|right|bottom|top/g,(function(t){return me[t]}))}var _e={start:"end",end:"start"};function be(t){return t.replace(/start|end/g,(function(t){return _e[t]}))}function ve(t){var e=Wt(t);return{scrollLeft:e.pageXOffset,scrollTop:e.pageYOffset}}function ye(t){return Vt(Gt(t)).left+ve(t).scrollLeft}function we(t){var e=Yt(t),i=e.overflow,n=e.overflowX,s=e.overflowY;return/auto|scroll|overlay|hidden/.test(i+s+n)}function Ee(t){return["html","body","#document"].indexOf(Rt(t))>=0?t.ownerDocument.body:zt(t)&&we(t)?t:Ee(Zt(t))}function Ae(t,e){var i;void 0===e&&(e=[]);var n=Ee(t),s=n===(null==(i=t.ownerDocument)?void 0:i.body),o=Wt(n),r=s?[o].concat(o.visualViewport||[],we(n)?n:[]):n,a=e.concat(r);return s?a:a.concat(Ae(Zt(r)))}function Te(t){return Object.assign({},t,{left:t.x,top:t.y,right:t.x+t.width,bottom:t.y+t.height})}function Oe(t,e){return e===Tt?Te(function(t){var e=Wt(t),i=Gt(t),n=e.visualViewport,s=i.clientWidth,o=i.clientHeight,r=0,a=0;return n&&(s=n.width,o=n.height,/^((?!chrome|android).)*safari/i.test(navigator.userAgent)||(r=n.offsetLeft,a=n.offsetTop)),{width:s,height:o,x:r+ye(t),y:a}}(t)):zt(e)?function(t){var e=Vt(t);return e.top=e.top+t.clientTop,e.left=e.left+t.clientLeft,e.bottom=e.top+t.clientHeight,e.right=e.left+t.clientWidth,e.width=t.clientWidth,e.height=t.clientHeight,e.x=e.left,e.y=e.top,e}(e):Te(function(t){var e,i=Gt(t),n=ve(t),s=null==(e=t.ownerDocument)?void 0:e.body,o=ie(i.scrollWidth,i.clientWidth,s?s.scrollWidth:0,s?s.clientWidth:0),r=ie(i.scrollHeight,i.clientHeight,s?s.scrollHeight:0,s?s.clientHeight:0),a=-n.scrollLeft+ye(t),l=-n.scrollTop;return"rtl"===Yt(s||i).direction&&(a+=ie(i.clientWidth,s?s.clientWidth:0)-o),{width:o,height:r,x:a,y:l}}(Gt(t)))}function Ce(t){var e,i=t.reference,n=t.element,s=t.placement,o=s?Ut(s):null,r=s?ce(s):null,a=i.x+i.width/2-n.width/2,l=i.y+i.height/2-n.height/2;switch(o){case mt:e={x:a,y:i.y-n.height};break;case gt:e={x:a,y:i.y+i.height};break;case _t:e={x:i.x+i.width,y:l};break;case bt:e={x:i.x-n.width,y:l};break;default:e={x:i.x,y:i.y}}var c=o?ee(o):null;if(null!=c){var h="y"===c?"height":"width";switch(r){case wt:e[c]=e[c]-(i[h]/2-n[h]/2);break;case Et:e[c]=e[c]+(i[h]/2-n[h]/2)}}return e}function ke(t,e){void 0===e&&(e={});var i=e,n=i.placement,s=void 0===n?t.placement:n,o=i.boundary,r=void 0===o?At:o,a=i.rootBoundary,l=void 0===a?Tt:a,c=i.elementContext,h=void 0===c?Ot:c,d=i.altBoundary,u=void 0!==d&&d,f=i.padding,p=void 0===f?0:f,m=re("number"!=typeof p?p:ae(p,yt)),g=h===Ot?Ct:Ot,_=t.rects.popper,b=t.elements[u?g:h],v=function(t,e,i){var n="clippingParents"===e?function(t){var e=Ae(Zt(t)),i=["absolute","fixed"].indexOf(Yt(t).position)>=0&&zt(t)?te(t):t;return $t(i)?e.filter((function(t){return $t(t)&&Xt(t,i)&&"body"!==Rt(t)})):[]}(t):[].concat(e),s=[].concat(n,[i]),o=s[0],r=s.reduce((function(e,i){var n=Oe(t,i);return e.top=ie(n.top,e.top),e.right=ne(n.right,e.right),e.bottom=ne(n.bottom,e.bottom),e.left=ie(n.left,e.left),e}),Oe(t,o));return r.width=r.right-r.left,r.height=r.bottom-r.top,r.x=r.left,r.y=r.top,r}($t(b)?b:b.contextElement||Gt(t.elements.popper),r,l),y=Vt(t.elements.reference),w=Ce({reference:y,element:_,strategy:"absolute",placement:s}),E=Te(Object.assign({},_,w)),A=h===Ot?E:y,T={top:v.top-A.top+m.top,bottom:A.bottom-v.bottom+m.bottom,left:v.left-A.left+m.left,right:A.right-v.right+m.right},O=t.modifiersData.offset;if(h===Ot&&O){var C=O[s];Object.keys(T).forEach((function(t){var e=[_t,gt].indexOf(t)>=0?1:-1,i=[mt,gt].indexOf(t)>=0?"y":"x";T[t]+=C[i]*e}))}return T}function Le(t,e){void 0===e&&(e={});var i=e,n=i.placement,s=i.boundary,o=i.rootBoundary,r=i.padding,a=i.flipVariations,l=i.allowedAutoPlacements,c=void 0===l?Lt:l,h=ce(n),d=h?a?kt:kt.filter((function(t){return ce(t)===h})):yt,u=d.filter((function(t){return c.indexOf(t)>=0}));0===u.length&&(u=d);var f=u.reduce((function(e,i){return e[i]=ke(t,{placement:i,boundary:s,rootBoundary:o,padding:r})[Ut(i)],e}),{});return Object.keys(f).sort((function(t,e){return f[t]-f[e]}))}const xe={name:"flip",enabled:!0,phase:"main",fn:function(t){var e=t.state,i=t.options,n=t.name;if(!e.modifiersData[n]._skip){for(var s=i.mainAxis,o=void 0===s||s,r=i.altAxis,a=void 0===r||r,l=i.fallbackPlacements,c=i.padding,h=i.boundary,d=i.rootBoundary,u=i.altBoundary,f=i.flipVariations,p=void 0===f||f,m=i.allowedAutoPlacements,g=e.options.placement,_=Ut(g),b=l||(_!==g&&p?function(t){if(Ut(t)===vt)return[];var e=ge(t);return[be(t),e,be(e)]}(g):[ge(g)]),v=[g].concat(b).reduce((function(t,i){return t.concat(Ut(i)===vt?Le(e,{placement:i,boundary:h,rootBoundary:d,padding:c,flipVariations:p,allowedAutoPlacements:m}):i)}),[]),y=e.rects.reference,w=e.rects.popper,E=new Map,A=!0,T=v[0],O=0;O=0,D=x?"width":"height",S=ke(e,{placement:C,boundary:h,rootBoundary:d,altBoundary:u,padding:c}),N=x?L?_t:bt:L?gt:mt;y[D]>w[D]&&(N=ge(N));var I=ge(N),P=[];if(o&&P.push(S[k]<=0),a&&P.push(S[N]<=0,S[I]<=0),P.every((function(t){return t}))){T=C,A=!1;break}E.set(C,P)}if(A)for(var j=function(t){var e=v.find((function(e){var i=E.get(e);if(i)return i.slice(0,t).every((function(t){return t}))}));if(e)return T=e,"break"},M=p?3:1;M>0&&"break"!==j(M);M--);e.placement!==T&&(e.modifiersData[n]._skip=!0,e.placement=T,e.reset=!0)}},requiresIfExists:["offset"],data:{_skip:!1}};function De(t,e,i){return void 0===i&&(i={x:0,y:0}),{top:t.top-e.height-i.y,right:t.right-e.width+i.x,bottom:t.bottom-e.height+i.y,left:t.left-e.width-i.x}}function Se(t){return[mt,_t,gt,bt].some((function(e){return t[e]>=0}))}const Ne={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:function(t){var e=t.state,i=t.name,n=e.rects.reference,s=e.rects.popper,o=e.modifiersData.preventOverflow,r=ke(e,{elementContext:"reference"}),a=ke(e,{altBoundary:!0}),l=De(r,n),c=De(a,s,o),h=Se(l),d=Se(c);e.modifiersData[i]={referenceClippingOffsets:l,popperEscapeOffsets:c,isReferenceHidden:h,hasPopperEscaped:d},e.attributes.popper=Object.assign({},e.attributes.popper,{"data-popper-reference-hidden":h,"data-popper-escaped":d})}},Ie={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:function(t){var e=t.state,i=t.options,n=t.name,s=i.offset,o=void 0===s?[0,0]:s,r=Lt.reduce((function(t,i){return t[i]=function(t,e,i){var n=Ut(t),s=[bt,mt].indexOf(n)>=0?-1:1,o="function"==typeof i?i(Object.assign({},e,{placement:t})):i,r=o[0],a=o[1];return r=r||0,a=(a||0)*s,[bt,_t].indexOf(n)>=0?{x:a,y:r}:{x:r,y:a}}(i,e.rects,o),t}),{}),a=r[e.placement],l=a.x,c=a.y;null!=e.modifiersData.popperOffsets&&(e.modifiersData.popperOffsets.x+=l,e.modifiersData.popperOffsets.y+=c),e.modifiersData[n]=r}},Pe={name:"popperOffsets",enabled:!0,phase:"read",fn:function(t){var e=t.state,i=t.name;e.modifiersData[i]=Ce({reference:e.rects.reference,element:e.rects.popper,strategy:"absolute",placement:e.placement})},data:{}},je={name:"preventOverflow",enabled:!0,phase:"main",fn:function(t){var e=t.state,i=t.options,n=t.name,s=i.mainAxis,o=void 0===s||s,r=i.altAxis,a=void 0!==r&&r,l=i.boundary,c=i.rootBoundary,h=i.altBoundary,d=i.padding,u=i.tether,f=void 0===u||u,p=i.tetherOffset,m=void 0===p?0:p,g=ke(e,{boundary:l,rootBoundary:c,padding:d,altBoundary:h}),_=Ut(e.placement),b=ce(e.placement),v=!b,y=ee(_),w="x"===y?"y":"x",E=e.modifiersData.popperOffsets,A=e.rects.reference,T=e.rects.popper,O="function"==typeof m?m(Object.assign({},e.rects,{placement:e.placement})):m,C={x:0,y:0};if(E){if(o||a){var k="y"===y?mt:bt,L="y"===y?gt:_t,x="y"===y?"height":"width",D=E[y],S=E[y]+g[k],N=E[y]-g[L],I=f?-T[x]/2:0,P=b===wt?A[x]:T[x],j=b===wt?-T[x]:-A[x],M=e.elements.arrow,H=f&&M?Kt(M):{width:0,height:0},B=e.modifiersData["arrow#persistent"]?e.modifiersData["arrow#persistent"].padding:{top:0,right:0,bottom:0,left:0},R=B[k],W=B[L],$=oe(0,A[x],H[x]),z=v?A[x]/2-I-$-R-O:P-$-R-O,q=v?-A[x]/2+I+$+W+O:j+$+W+O,F=e.elements.arrow&&te(e.elements.arrow),U=F?"y"===y?F.clientTop||0:F.clientLeft||0:0,V=e.modifiersData.offset?e.modifiersData.offset[e.placement][y]:0,K=E[y]+z-V-U,X=E[y]+q-V;if(o){var Y=oe(f?ne(S,K):S,D,f?ie(N,X):N);E[y]=Y,C[y]=Y-D}if(a){var Q="x"===y?mt:bt,G="x"===y?gt:_t,Z=E[w],J=Z+g[Q],tt=Z-g[G],et=oe(f?ne(J,K):J,Z,f?ie(tt,X):tt);E[w]=et,C[w]=et-Z}}e.modifiersData[n]=C}},requiresIfExists:["offset"]};function Me(t,e,i){void 0===i&&(i=!1);var n=zt(e);zt(e)&&function(t){var e=t.getBoundingClientRect();e.width,t.offsetWidth,e.height,t.offsetHeight}(e);var s,o,r=Gt(e),a=Vt(t),l={scrollLeft:0,scrollTop:0},c={x:0,y:0};return(n||!n&&!i)&&(("body"!==Rt(e)||we(r))&&(l=(s=e)!==Wt(s)&&zt(s)?{scrollLeft:(o=s).scrollLeft,scrollTop:o.scrollTop}:ve(s)),zt(e)?((c=Vt(e)).x+=e.clientLeft,c.y+=e.clientTop):r&&(c.x=ye(r))),{x:a.left+l.scrollLeft-c.x,y:a.top+l.scrollTop-c.y,width:a.width,height:a.height}}function He(t){var e=new Map,i=new Set,n=[];function s(t){i.add(t.name),[].concat(t.requires||[],t.requiresIfExists||[]).forEach((function(t){if(!i.has(t)){var n=e.get(t);n&&s(n)}})),n.push(t)}return t.forEach((function(t){e.set(t.name,t)})),t.forEach((function(t){i.has(t.name)||s(t)})),n}var Be={placement:"bottom",modifiers:[],strategy:"absolute"};function Re(){for(var t=arguments.length,e=new Array(t),i=0;ij.on(t,"mouseover",d))),this._element.focus(),this._element.setAttribute("aria-expanded",!0),this._menu.classList.add(Je),this._element.classList.add(Je),j.trigger(this._element,"shown.bs.dropdown",t)}hide(){if(c(this._element)||!this._isShown(this._menu))return;const t={relatedTarget:this._element};this._completeHide(t)}dispose(){this._popper&&this._popper.destroy(),super.dispose()}update(){this._inNavbar=this._detectNavbar(),this._popper&&this._popper.update()}_completeHide(t){j.trigger(this._element,"hide.bs.dropdown",t).defaultPrevented||("ontouchstart"in document.documentElement&&[].concat(...document.body.children).forEach((t=>j.off(t,"mouseover",d))),this._popper&&this._popper.destroy(),this._menu.classList.remove(Je),this._element.classList.remove(Je),this._element.setAttribute("aria-expanded","false"),U.removeDataAttribute(this._menu,"popper"),j.trigger(this._element,"hidden.bs.dropdown",t))}_getConfig(t){if(t={...this.constructor.Default,...U.getDataAttributes(this._element),...t},a(Ue,t,this.constructor.DefaultType),"object"==typeof t.reference&&!o(t.reference)&&"function"!=typeof t.reference.getBoundingClientRect)throw new TypeError(`${Ue.toUpperCase()}: Option "reference" provided type "object" without a required "getBoundingClientRect" method.`);return t}_createPopper(t){if(void 0===Fe)throw new TypeError("Bootstrap's dropdowns require Popper (https://popper.js.org)");let e=this._element;"parent"===this._config.reference?e=t:o(this._config.reference)?e=r(this._config.reference):"object"==typeof this._config.reference&&(e=this._config.reference);const i=this._getPopperConfig(),n=i.modifiers.find((t=>"applyStyles"===t.name&&!1===t.enabled));this._popper=qe(e,this._menu,i),n&&U.setDataAttribute(this._menu,"popper","static")}_isShown(t=this._element){return t.classList.contains(Je)}_getMenuElement(){return V.next(this._element,ei)[0]}_getPlacement(){const t=this._element.parentNode;if(t.classList.contains("dropend"))return ri;if(t.classList.contains("dropstart"))return ai;const e="end"===getComputedStyle(this._menu).getPropertyValue("--bs-position").trim();return t.classList.contains("dropup")?e?ni:ii:e?oi:si}_detectNavbar(){return null!==this._element.closest(".navbar")}_getOffset(){const{offset:t}=this._config;return"string"==typeof t?t.split(",").map((t=>Number.parseInt(t,10))):"function"==typeof t?e=>t(e,this._element):t}_getPopperConfig(){const t={placement:this._getPlacement(),modifiers:[{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"offset",options:{offset:this._getOffset()}}]};return"static"===this._config.display&&(t.modifiers=[{name:"applyStyles",enabled:!1}]),{...t,..."function"==typeof this._config.popperConfig?this._config.popperConfig(t):this._config.popperConfig}}_selectMenuItem({key:t,target:e}){const i=V.find(".dropdown-menu .dropdown-item:not(.disabled):not(:disabled)",this._menu).filter(l);i.length&&v(i,e,t===Ye,!i.includes(e)).focus()}static jQueryInterface(t){return this.each((function(){const e=hi.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}static clearMenus(t){if(t&&(2===t.button||"keyup"===t.type&&"Tab"!==t.key))return;const e=V.find(ti);for(let i=0,n=e.length;ie+t)),this._setElementAttributes(di,"paddingRight",(e=>e+t)),this._setElementAttributes(ui,"marginRight",(e=>e-t))}_disableOverFlow(){this._saveInitialAttribute(this._element,"overflow"),this._element.style.overflow="hidden"}_setElementAttributes(t,e,i){const n=this.getWidth();this._applyManipulationCallback(t,(t=>{if(t!==this._element&&window.innerWidth>t.clientWidth+n)return;this._saveInitialAttribute(t,e);const s=window.getComputedStyle(t)[e];t.style[e]=`${i(Number.parseFloat(s))}px`}))}reset(){this._resetElementAttributes(this._element,"overflow"),this._resetElementAttributes(this._element,"paddingRight"),this._resetElementAttributes(di,"paddingRight"),this._resetElementAttributes(ui,"marginRight")}_saveInitialAttribute(t,e){const i=t.style[e];i&&U.setDataAttribute(t,e,i)}_resetElementAttributes(t,e){this._applyManipulationCallback(t,(t=>{const i=U.getDataAttribute(t,e);void 0===i?t.style.removeProperty(e):(U.removeDataAttribute(t,e),t.style[e]=i)}))}_applyManipulationCallback(t,e){o(t)?e(t):V.find(t,this._element).forEach(e)}isOverflowing(){return this.getWidth()>0}}const pi={className:"modal-backdrop",isVisible:!0,isAnimated:!1,rootElement:"body",clickCallback:null},mi={className:"string",isVisible:"boolean",isAnimated:"boolean",rootElement:"(element|string)",clickCallback:"(function|null)"},gi="show",_i="mousedown.bs.backdrop";class bi{constructor(t){this._config=this._getConfig(t),this._isAppended=!1,this._element=null}show(t){this._config.isVisible?(this._append(),this._config.isAnimated&&u(this._getElement()),this._getElement().classList.add(gi),this._emulateAnimation((()=>{_(t)}))):_(t)}hide(t){this._config.isVisible?(this._getElement().classList.remove(gi),this._emulateAnimation((()=>{this.dispose(),_(t)}))):_(t)}_getElement(){if(!this._element){const t=document.createElement("div");t.className=this._config.className,this._config.isAnimated&&t.classList.add("fade"),this._element=t}return this._element}_getConfig(t){return(t={...pi,..."object"==typeof t?t:{}}).rootElement=r(t.rootElement),a("backdrop",t,mi),t}_append(){this._isAppended||(this._config.rootElement.append(this._getElement()),j.on(this._getElement(),_i,(()=>{_(this._config.clickCallback)})),this._isAppended=!0)}dispose(){this._isAppended&&(j.off(this._element,_i),this._element.remove(),this._isAppended=!1)}_emulateAnimation(t){b(t,this._getElement(),this._config.isAnimated)}}const vi={trapElement:null,autofocus:!0},yi={trapElement:"element",autofocus:"boolean"},wi=".bs.focustrap",Ei="backward";class Ai{constructor(t){this._config=this._getConfig(t),this._isActive=!1,this._lastTabNavDirection=null}activate(){const{trapElement:t,autofocus:e}=this._config;this._isActive||(e&&t.focus(),j.off(document,wi),j.on(document,"focusin.bs.focustrap",(t=>this._handleFocusin(t))),j.on(document,"keydown.tab.bs.focustrap",(t=>this._handleKeydown(t))),this._isActive=!0)}deactivate(){this._isActive&&(this._isActive=!1,j.off(document,wi))}_handleFocusin(t){const{target:e}=t,{trapElement:i}=this._config;if(e===document||e===i||i.contains(e))return;const n=V.focusableChildren(i);0===n.length?i.focus():this._lastTabNavDirection===Ei?n[n.length-1].focus():n[0].focus()}_handleKeydown(t){"Tab"===t.key&&(this._lastTabNavDirection=t.shiftKey?Ei:"forward")}_getConfig(t){return t={...vi,..."object"==typeof t?t:{}},a("focustrap",t,yi),t}}const Ti="modal",Oi="Escape",Ci={backdrop:!0,keyboard:!0,focus:!0},ki={backdrop:"(boolean|string)",keyboard:"boolean",focus:"boolean"},Li="hidden.bs.modal",xi="show.bs.modal",Di="resize.bs.modal",Si="click.dismiss.bs.modal",Ni="keydown.dismiss.bs.modal",Ii="mousedown.dismiss.bs.modal",Pi="modal-open",ji="show",Mi="modal-static";class Hi extends B{constructor(t,e){super(t),this._config=this._getConfig(e),this._dialog=V.findOne(".modal-dialog",this._element),this._backdrop=this._initializeBackDrop(),this._focustrap=this._initializeFocusTrap(),this._isShown=!1,this._ignoreBackdropClick=!1,this._isTransitioning=!1,this._scrollBar=new fi}static get Default(){return Ci}static get NAME(){return Ti}toggle(t){return this._isShown?this.hide():this.show(t)}show(t){this._isShown||this._isTransitioning||j.trigger(this._element,xi,{relatedTarget:t}).defaultPrevented||(this._isShown=!0,this._isAnimated()&&(this._isTransitioning=!0),this._scrollBar.hide(),document.body.classList.add(Pi),this._adjustDialog(),this._setEscapeEvent(),this._setResizeEvent(),j.on(this._dialog,Ii,(()=>{j.one(this._element,"mouseup.dismiss.bs.modal",(t=>{t.target===this._element&&(this._ignoreBackdropClick=!0)}))})),this._showBackdrop((()=>this._showElement(t))))}hide(){if(!this._isShown||this._isTransitioning)return;if(j.trigger(this._element,"hide.bs.modal").defaultPrevented)return;this._isShown=!1;const t=this._isAnimated();t&&(this._isTransitioning=!0),this._setEscapeEvent(),this._setResizeEvent(),this._focustrap.deactivate(),this._element.classList.remove(ji),j.off(this._element,Si),j.off(this._dialog,Ii),this._queueCallback((()=>this._hideModal()),this._element,t)}dispose(){[window,this._dialog].forEach((t=>j.off(t,".bs.modal"))),this._backdrop.dispose(),this._focustrap.deactivate(),super.dispose()}handleUpdate(){this._adjustDialog()}_initializeBackDrop(){return new bi({isVisible:Boolean(this._config.backdrop),isAnimated:this._isAnimated()})}_initializeFocusTrap(){return new Ai({trapElement:this._element})}_getConfig(t){return t={...Ci,...U.getDataAttributes(this._element),..."object"==typeof t?t:{}},a(Ti,t,ki),t}_showElement(t){const e=this._isAnimated(),i=V.findOne(".modal-body",this._dialog);this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE||document.body.append(this._element),this._element.style.display="block",this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.scrollTop=0,i&&(i.scrollTop=0),e&&u(this._element),this._element.classList.add(ji),this._queueCallback((()=>{this._config.focus&&this._focustrap.activate(),this._isTransitioning=!1,j.trigger(this._element,"shown.bs.modal",{relatedTarget:t})}),this._dialog,e)}_setEscapeEvent(){this._isShown?j.on(this._element,Ni,(t=>{this._config.keyboard&&t.key===Oi?(t.preventDefault(),this.hide()):this._config.keyboard||t.key!==Oi||this._triggerBackdropTransition()})):j.off(this._element,Ni)}_setResizeEvent(){this._isShown?j.on(window,Di,(()=>this._adjustDialog())):j.off(window,Di)}_hideModal(){this._element.style.display="none",this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._isTransitioning=!1,this._backdrop.hide((()=>{document.body.classList.remove(Pi),this._resetAdjustments(),this._scrollBar.reset(),j.trigger(this._element,Li)}))}_showBackdrop(t){j.on(this._element,Si,(t=>{this._ignoreBackdropClick?this._ignoreBackdropClick=!1:t.target===t.currentTarget&&(!0===this._config.backdrop?this.hide():"static"===this._config.backdrop&&this._triggerBackdropTransition())})),this._backdrop.show(t)}_isAnimated(){return this._element.classList.contains("fade")}_triggerBackdropTransition(){if(j.trigger(this._element,"hidePrevented.bs.modal").defaultPrevented)return;const{classList:t,scrollHeight:e,style:i}=this._element,n=e>document.documentElement.clientHeight;!n&&"hidden"===i.overflowY||t.contains(Mi)||(n||(i.overflowY="hidden"),t.add(Mi),this._queueCallback((()=>{t.remove(Mi),n||this._queueCallback((()=>{i.overflowY=""}),this._dialog)}),this._dialog),this._element.focus())}_adjustDialog(){const t=this._element.scrollHeight>document.documentElement.clientHeight,e=this._scrollBar.getWidth(),i=e>0;(!i&&t&&!m()||i&&!t&&m())&&(this._element.style.paddingLeft=`${e}px`),(i&&!t&&!m()||!i&&t&&m())&&(this._element.style.paddingRight=`${e}px`)}_resetAdjustments(){this._element.style.paddingLeft="",this._element.style.paddingRight=""}static jQueryInterface(t,e){return this.each((function(){const i=Hi.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===i[t])throw new TypeError(`No method named "${t}"`);i[t](e)}}))}}j.on(document,"click.bs.modal.data-api",'[data-bs-toggle="modal"]',(function(t){const e=n(this);["A","AREA"].includes(this.tagName)&&t.preventDefault(),j.one(e,xi,(t=>{t.defaultPrevented||j.one(e,Li,(()=>{l(this)&&this.focus()}))}));const i=V.findOne(".modal.show");i&&Hi.getInstance(i).hide(),Hi.getOrCreateInstance(e).toggle(this)})),R(Hi),g(Hi);const Bi="offcanvas",Ri={backdrop:!0,keyboard:!0,scroll:!1},Wi={backdrop:"boolean",keyboard:"boolean",scroll:"boolean"},$i="show",zi=".offcanvas.show",qi="hidden.bs.offcanvas";class Fi extends B{constructor(t,e){super(t),this._config=this._getConfig(e),this._isShown=!1,this._backdrop=this._initializeBackDrop(),this._focustrap=this._initializeFocusTrap(),this._addEventListeners()}static get NAME(){return Bi}static get Default(){return Ri}toggle(t){return this._isShown?this.hide():this.show(t)}show(t){this._isShown||j.trigger(this._element,"show.bs.offcanvas",{relatedTarget:t}).defaultPrevented||(this._isShown=!0,this._element.style.visibility="visible",this._backdrop.show(),this._config.scroll||(new fi).hide(),this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.classList.add($i),this._queueCallback((()=>{this._config.scroll||this._focustrap.activate(),j.trigger(this._element,"shown.bs.offcanvas",{relatedTarget:t})}),this._element,!0))}hide(){this._isShown&&(j.trigger(this._element,"hide.bs.offcanvas").defaultPrevented||(this._focustrap.deactivate(),this._element.blur(),this._isShown=!1,this._element.classList.remove($i),this._backdrop.hide(),this._queueCallback((()=>{this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._element.style.visibility="hidden",this._config.scroll||(new fi).reset(),j.trigger(this._element,qi)}),this._element,!0)))}dispose(){this._backdrop.dispose(),this._focustrap.deactivate(),super.dispose()}_getConfig(t){return t={...Ri,...U.getDataAttributes(this._element),..."object"==typeof t?t:{}},a(Bi,t,Wi),t}_initializeBackDrop(){return new bi({className:"offcanvas-backdrop",isVisible:this._config.backdrop,isAnimated:!0,rootElement:this._element.parentNode,clickCallback:()=>this.hide()})}_initializeFocusTrap(){return new Ai({trapElement:this._element})}_addEventListeners(){j.on(this._element,"keydown.dismiss.bs.offcanvas",(t=>{this._config.keyboard&&"Escape"===t.key&&this.hide()}))}static jQueryInterface(t){return this.each((function(){const e=Fi.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}j.on(document,"click.bs.offcanvas.data-api",'[data-bs-toggle="offcanvas"]',(function(t){const e=n(this);if(["A","AREA"].includes(this.tagName)&&t.preventDefault(),c(this))return;j.one(e,qi,(()=>{l(this)&&this.focus()}));const i=V.findOne(zi);i&&i!==e&&Fi.getInstance(i).hide(),Fi.getOrCreateInstance(e).toggle(this)})),j.on(window,"load.bs.offcanvas.data-api",(()=>V.find(zi).forEach((t=>Fi.getOrCreateInstance(t).show())))),R(Fi),g(Fi);const Ui=new Set(["background","cite","href","itemtype","longdesc","poster","src","xlink:href"]),Vi=/^(?:(?:https?|mailto|ftp|tel|file|sms):|[^#&/:?]*(?:[#/?]|$))/i,Ki=/^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[\d+/a-z]+=*$/i,Xi=(t,e)=>{const i=t.nodeName.toLowerCase();if(e.includes(i))return!Ui.has(i)||Boolean(Vi.test(t.nodeValue)||Ki.test(t.nodeValue));const n=e.filter((t=>t instanceof RegExp));for(let t=0,e=n.length;t{Xi(t,r)||i.removeAttribute(t.nodeName)}))}return n.body.innerHTML}const Qi="tooltip",Gi=new Set(["sanitize","allowList","sanitizeFn"]),Zi={animation:"boolean",template:"string",title:"(string|element|function)",trigger:"string",delay:"(number|object)",html:"boolean",selector:"(string|boolean)",placement:"(string|function)",offset:"(array|string|function)",container:"(string|element|boolean)",fallbackPlacements:"array",boundary:"(string|element)",customClass:"(string|function)",sanitize:"boolean",sanitizeFn:"(null|function)",allowList:"object",popperConfig:"(null|object|function)"},Ji={AUTO:"auto",TOP:"top",RIGHT:m()?"left":"right",BOTTOM:"bottom",LEFT:m()?"right":"left"},tn={animation:!0,template:'',trigger:"hover focus",title:"",delay:0,html:!1,selector:!1,placement:"top",offset:[0,0],container:!1,fallbackPlacements:["top","right","bottom","left"],boundary:"clippingParents",customClass:"",sanitize:!0,sanitizeFn:null,allowList:{"*":["class","dir","id","lang","role",/^aria-[\w-]*$/i],a:["target","href","title","rel"],area:[],b:[],br:[],col:[],code:[],div:[],em:[],hr:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],i:[],img:["src","srcset","alt","title","width","height"],li:[],ol:[],p:[],pre:[],s:[],small:[],span:[],sub:[],sup:[],strong:[],u:[],ul:[]},popperConfig:null},en={HIDE:"hide.bs.tooltip",HIDDEN:"hidden.bs.tooltip",SHOW:"show.bs.tooltip",SHOWN:"shown.bs.tooltip",INSERTED:"inserted.bs.tooltip",CLICK:"click.bs.tooltip",FOCUSIN:"focusin.bs.tooltip",FOCUSOUT:"focusout.bs.tooltip",MOUSEENTER:"mouseenter.bs.tooltip",MOUSELEAVE:"mouseleave.bs.tooltip"},nn="fade",sn="show",on="show",rn="out",an=".tooltip-inner",ln=".modal",cn="hide.bs.modal",hn="hover",dn="focus";class un extends B{constructor(t,e){if(void 0===Fe)throw new TypeError("Bootstrap's tooltips require Popper (https://popper.js.org)");super(t),this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this._config=this._getConfig(e),this.tip=null,this._setListeners()}static get Default(){return tn}static get NAME(){return Qi}static get Event(){return en}static get DefaultType(){return Zi}enable(){this._isEnabled=!0}disable(){this._isEnabled=!1}toggleEnabled(){this._isEnabled=!this._isEnabled}toggle(t){if(this._isEnabled)if(t){const e=this._initializeOnDelegatedTarget(t);e._activeTrigger.click=!e._activeTrigger.click,e._isWithActiveTrigger()?e._enter(null,e):e._leave(null,e)}else{if(this.getTipElement().classList.contains(sn))return void this._leave(null,this);this._enter(null,this)}}dispose(){clearTimeout(this._timeout),j.off(this._element.closest(ln),cn,this._hideModalHandler),this.tip&&this.tip.remove(),this._disposePopper(),super.dispose()}show(){if("none"===this._element.style.display)throw new Error("Please use show on visible elements");if(!this.isWithContent()||!this._isEnabled)return;const t=j.trigger(this._element,this.constructor.Event.SHOW),e=h(this._element),i=null===e?this._element.ownerDocument.documentElement.contains(this._element):e.contains(this._element);if(t.defaultPrevented||!i)return;"tooltip"===this.constructor.NAME&&this.tip&&this.getTitle()!==this.tip.querySelector(an).innerHTML&&(this._disposePopper(),this.tip.remove(),this.tip=null);const n=this.getTipElement(),s=(t=>{do{t+=Math.floor(1e6*Math.random())}while(document.getElementById(t));return t})(this.constructor.NAME);n.setAttribute("id",s),this._element.setAttribute("aria-describedby",s),this._config.animation&&n.classList.add(nn);const o="function"==typeof this._config.placement?this._config.placement.call(this,n,this._element):this._config.placement,r=this._getAttachment(o);this._addAttachmentClass(r);const{container:a}=this._config;H.set(n,this.constructor.DATA_KEY,this),this._element.ownerDocument.documentElement.contains(this.tip)||(a.append(n),j.trigger(this._element,this.constructor.Event.INSERTED)),this._popper?this._popper.update():this._popper=qe(this._element,n,this._getPopperConfig(r)),n.classList.add(sn);const l=this._resolvePossibleFunction(this._config.customClass);l&&n.classList.add(...l.split(" ")),"ontouchstart"in document.documentElement&&[].concat(...document.body.children).forEach((t=>{j.on(t,"mouseover",d)}));const c=this.tip.classList.contains(nn);this._queueCallback((()=>{const t=this._hoverState;this._hoverState=null,j.trigger(this._element,this.constructor.Event.SHOWN),t===rn&&this._leave(null,this)}),this.tip,c)}hide(){if(!this._popper)return;const t=this.getTipElement();if(j.trigger(this._element,this.constructor.Event.HIDE).defaultPrevented)return;t.classList.remove(sn),"ontouchstart"in document.documentElement&&[].concat(...document.body.children).forEach((t=>j.off(t,"mouseover",d))),this._activeTrigger.click=!1,this._activeTrigger.focus=!1,this._activeTrigger.hover=!1;const e=this.tip.classList.contains(nn);this._queueCallback((()=>{this._isWithActiveTrigger()||(this._hoverState!==on&&t.remove(),this._cleanTipClass(),this._element.removeAttribute("aria-describedby"),j.trigger(this._element,this.constructor.Event.HIDDEN),this._disposePopper())}),this.tip,e),this._hoverState=""}update(){null!==this._popper&&this._popper.update()}isWithContent(){return Boolean(this.getTitle())}getTipElement(){if(this.tip)return this.tip;const t=document.createElement("div");t.innerHTML=this._config.template;const e=t.children[0];return this.setContent(e),e.classList.remove(nn,sn),this.tip=e,this.tip}setContent(t){this._sanitizeAndSetContent(t,this.getTitle(),an)}_sanitizeAndSetContent(t,e,i){const n=V.findOne(i,t);e||!n?this.setElementContent(n,e):n.remove()}setElementContent(t,e){if(null!==t)return o(e)?(e=r(e),void(this._config.html?e.parentNode!==t&&(t.innerHTML="",t.append(e)):t.textContent=e.textContent)):void(this._config.html?(this._config.sanitize&&(e=Yi(e,this._config.allowList,this._config.sanitizeFn)),t.innerHTML=e):t.textContent=e)}getTitle(){const t=this._element.getAttribute("data-bs-original-title")||this._config.title;return this._resolvePossibleFunction(t)}updateAttachment(t){return"right"===t?"end":"left"===t?"start":t}_initializeOnDelegatedTarget(t,e){return e||this.constructor.getOrCreateInstance(t.delegateTarget,this._getDelegateConfig())}_getOffset(){const{offset:t}=this._config;return"string"==typeof t?t.split(",").map((t=>Number.parseInt(t,10))):"function"==typeof t?e=>t(e,this._element):t}_resolvePossibleFunction(t){return"function"==typeof t?t.call(this._element):t}_getPopperConfig(t){const e={placement:t,modifiers:[{name:"flip",options:{fallbackPlacements:this._config.fallbackPlacements}},{name:"offset",options:{offset:this._getOffset()}},{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"arrow",options:{element:`.${this.constructor.NAME}-arrow`}},{name:"onChange",enabled:!0,phase:"afterWrite",fn:t=>this._handlePopperPlacementChange(t)}],onFirstUpdate:t=>{t.options.placement!==t.placement&&this._handlePopperPlacementChange(t)}};return{...e,..."function"==typeof this._config.popperConfig?this._config.popperConfig(e):this._config.popperConfig}}_addAttachmentClass(t){this.getTipElement().classList.add(`${this._getBasicClassPrefix()}-${this.updateAttachment(t)}`)}_getAttachment(t){return Ji[t.toUpperCase()]}_setListeners(){this._config.trigger.split(" ").forEach((t=>{if("click"===t)j.on(this._element,this.constructor.Event.CLICK,this._config.selector,(t=>this.toggle(t)));else if("manual"!==t){const e=t===hn?this.constructor.Event.MOUSEENTER:this.constructor.Event.FOCUSIN,i=t===hn?this.constructor.Event.MOUSELEAVE:this.constructor.Event.FOCUSOUT;j.on(this._element,e,this._config.selector,(t=>this._enter(t))),j.on(this._element,i,this._config.selector,(t=>this._leave(t)))}})),this._hideModalHandler=()=>{this._element&&this.hide()},j.on(this._element.closest(ln),cn,this._hideModalHandler),this._config.selector?this._config={...this._config,trigger:"manual",selector:""}:this._fixTitle()}_fixTitle(){const t=this._element.getAttribute("title"),e=typeof this._element.getAttribute("data-bs-original-title");(t||"string"!==e)&&(this._element.setAttribute("data-bs-original-title",t||""),!t||this._element.getAttribute("aria-label")||this._element.textContent||this._element.setAttribute("aria-label",t),this._element.setAttribute("title",""))}_enter(t,e){e=this._initializeOnDelegatedTarget(t,e),t&&(e._activeTrigger["focusin"===t.type?dn:hn]=!0),e.getTipElement().classList.contains(sn)||e._hoverState===on?e._hoverState=on:(clearTimeout(e._timeout),e._hoverState=on,e._config.delay&&e._config.delay.show?e._timeout=setTimeout((()=>{e._hoverState===on&&e.show()}),e._config.delay.show):e.show())}_leave(t,e){e=this._initializeOnDelegatedTarget(t,e),t&&(e._activeTrigger["focusout"===t.type?dn:hn]=e._element.contains(t.relatedTarget)),e._isWithActiveTrigger()||(clearTimeout(e._timeout),e._hoverState=rn,e._config.delay&&e._config.delay.hide?e._timeout=setTimeout((()=>{e._hoverState===rn&&e.hide()}),e._config.delay.hide):e.hide())}_isWithActiveTrigger(){for(const t in this._activeTrigger)if(this._activeTrigger[t])return!0;return!1}_getConfig(t){const e=U.getDataAttributes(this._element);return Object.keys(e).forEach((t=>{Gi.has(t)&&delete e[t]})),(t={...this.constructor.Default,...e,..."object"==typeof t&&t?t:{}}).container=!1===t.container?document.body:r(t.container),"number"==typeof t.delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),a(Qi,t,this.constructor.DefaultType),t.sanitize&&(t.template=Yi(t.template,t.allowList,t.sanitizeFn)),t}_getDelegateConfig(){const t={};for(const e in this._config)this.constructor.Default[e]!==this._config[e]&&(t[e]=this._config[e]);return t}_cleanTipClass(){const t=this.getTipElement(),e=new RegExp(`(^|\\s)${this._getBasicClassPrefix()}\\S+`,"g"),i=t.getAttribute("class").match(e);null!==i&&i.length>0&&i.map((t=>t.trim())).forEach((e=>t.classList.remove(e)))}_getBasicClassPrefix(){return"bs-tooltip"}_handlePopperPlacementChange(t){const{state:e}=t;e&&(this.tip=e.elements.popper,this._cleanTipClass(),this._addAttachmentClass(this._getAttachment(e.placement)))}_disposePopper(){this._popper&&(this._popper.destroy(),this._popper=null)}static jQueryInterface(t){return this.each((function(){const e=un.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}g(un);const fn={...un.Default,placement:"right",offset:[0,8],trigger:"click",content:"",template:''},pn={...un.DefaultType,content:"(string|element|function)"},mn={HIDE:"hide.bs.popover",HIDDEN:"hidden.bs.popover",SHOW:"show.bs.popover",SHOWN:"shown.bs.popover",INSERTED:"inserted.bs.popover",CLICK:"click.bs.popover",FOCUSIN:"focusin.bs.popover",FOCUSOUT:"focusout.bs.popover",MOUSEENTER:"mouseenter.bs.popover",MOUSELEAVE:"mouseleave.bs.popover"};class gn extends un{static get Default(){return fn}static get NAME(){return"popover"}static get Event(){return mn}static get DefaultType(){return pn}isWithContent(){return this.getTitle()||this._getContent()}setContent(t){this._sanitizeAndSetContent(t,this.getTitle(),".popover-header"),this._sanitizeAndSetContent(t,this._getContent(),".popover-body")}_getContent(){return this._resolvePossibleFunction(this._config.content)}_getBasicClassPrefix(){return"bs-popover"}static jQueryInterface(t){return this.each((function(){const e=gn.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}g(gn);const _n="scrollspy",bn={offset:10,method:"auto",target:""},vn={offset:"number",method:"string",target:"(string|element)"},yn="active",wn=".nav-link, .list-group-item, .dropdown-item",En="position";class An extends B{constructor(t,e){super(t),this._scrollElement="BODY"===this._element.tagName?window:this._element,this._config=this._getConfig(e),this._offsets=[],this._targets=[],this._activeTarget=null,this._scrollHeight=0,j.on(this._scrollElement,"scroll.bs.scrollspy",(()=>this._process())),this.refresh(),this._process()}static get Default(){return bn}static get NAME(){return _n}refresh(){const t=this._scrollElement===this._scrollElement.window?"offset":En,e="auto"===this._config.method?t:this._config.method,n=e===En?this._getScrollTop():0;this._offsets=[],this._targets=[],this._scrollHeight=this._getScrollHeight(),V.find(wn,this._config.target).map((t=>{const s=i(t),o=s?V.findOne(s):null;if(o){const t=o.getBoundingClientRect();if(t.width||t.height)return[U[e](o).top+n,s]}return null})).filter((t=>t)).sort(((t,e)=>t[0]-e[0])).forEach((t=>{this._offsets.push(t[0]),this._targets.push(t[1])}))}dispose(){j.off(this._scrollElement,".bs.scrollspy"),super.dispose()}_getConfig(t){return(t={...bn,...U.getDataAttributes(this._element),..."object"==typeof t&&t?t:{}}).target=r(t.target)||document.documentElement,a(_n,t,vn),t}_getScrollTop(){return this._scrollElement===window?this._scrollElement.pageYOffset:this._scrollElement.scrollTop}_getScrollHeight(){return this._scrollElement.scrollHeight||Math.max(document.body.scrollHeight,document.documentElement.scrollHeight)}_getOffsetHeight(){return this._scrollElement===window?window.innerHeight:this._scrollElement.getBoundingClientRect().height}_process(){const t=this._getScrollTop()+this._config.offset,e=this._getScrollHeight(),i=this._config.offset+e-this._getOffsetHeight();if(this._scrollHeight!==e&&this.refresh(),t>=i){const t=this._targets[this._targets.length-1];this._activeTarget!==t&&this._activate(t)}else{if(this._activeTarget&&t0)return this._activeTarget=null,void this._clear();for(let e=this._offsets.length;e--;)this._activeTarget!==this._targets[e]&&t>=this._offsets[e]&&(void 0===this._offsets[e+1]||t`${e}[data-bs-target="${t}"],${e}[href="${t}"]`)),i=V.findOne(e.join(","),this._config.target);i.classList.add(yn),i.classList.contains("dropdown-item")?V.findOne(".dropdown-toggle",i.closest(".dropdown")).classList.add(yn):V.parents(i,".nav, .list-group").forEach((t=>{V.prev(t,".nav-link, .list-group-item").forEach((t=>t.classList.add(yn))),V.prev(t,".nav-item").forEach((t=>{V.children(t,".nav-link").forEach((t=>t.classList.add(yn)))}))})),j.trigger(this._scrollElement,"activate.bs.scrollspy",{relatedTarget:t})}_clear(){V.find(wn,this._config.target).filter((t=>t.classList.contains(yn))).forEach((t=>t.classList.remove(yn)))}static jQueryInterface(t){return this.each((function(){const e=An.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}j.on(window,"load.bs.scrollspy.data-api",(()=>{V.find('[data-bs-spy="scroll"]').forEach((t=>new An(t)))})),g(An);const Tn="active",On="fade",Cn="show",kn=".active",Ln=":scope > li > .active";class xn extends B{static get NAME(){return"tab"}show(){if(this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE&&this._element.classList.contains(Tn))return;let t;const e=n(this._element),i=this._element.closest(".nav, .list-group");if(i){const e="UL"===i.nodeName||"OL"===i.nodeName?Ln:kn;t=V.find(e,i),t=t[t.length-1]}const s=t?j.trigger(t,"hide.bs.tab",{relatedTarget:this._element}):null;if(j.trigger(this._element,"show.bs.tab",{relatedTarget:t}).defaultPrevented||null!==s&&s.defaultPrevented)return;this._activate(this._element,i);const o=()=>{j.trigger(t,"hidden.bs.tab",{relatedTarget:this._element}),j.trigger(this._element,"shown.bs.tab",{relatedTarget:t})};e?this._activate(e,e.parentNode,o):o()}_activate(t,e,i){const n=(!e||"UL"!==e.nodeName&&"OL"!==e.nodeName?V.children(e,kn):V.find(Ln,e))[0],s=i&&n&&n.classList.contains(On),o=()=>this._transitionComplete(t,n,i);n&&s?(n.classList.remove(Cn),this._queueCallback(o,t,!0)):o()}_transitionComplete(t,e,i){if(e){e.classList.remove(Tn);const t=V.findOne(":scope > .dropdown-menu .active",e.parentNode);t&&t.classList.remove(Tn),"tab"===e.getAttribute("role")&&e.setAttribute("aria-selected",!1)}t.classList.add(Tn),"tab"===t.getAttribute("role")&&t.setAttribute("aria-selected",!0),u(t),t.classList.contains(On)&&t.classList.add(Cn);let n=t.parentNode;if(n&&"LI"===n.nodeName&&(n=n.parentNode),n&&n.classList.contains("dropdown-menu")){const e=t.closest(".dropdown");e&&V.find(".dropdown-toggle",e).forEach((t=>t.classList.add(Tn))),t.setAttribute("aria-expanded",!0)}i&&i()}static jQueryInterface(t){return this.each((function(){const e=xn.getOrCreateInstance(this);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}j.on(document,"click.bs.tab.data-api",'[data-bs-toggle="tab"], [data-bs-toggle="pill"], [data-bs-toggle="list"]',(function(t){["A","AREA"].includes(this.tagName)&&t.preventDefault(),c(this)||xn.getOrCreateInstance(this).show()})),g(xn);const Dn="toast",Sn="hide",Nn="show",In="showing",Pn={animation:"boolean",autohide:"boolean",delay:"number"},jn={animation:!0,autohide:!0,delay:5e3};class Mn extends B{constructor(t,e){super(t),this._config=this._getConfig(e),this._timeout=null,this._hasMouseInteraction=!1,this._hasKeyboardInteraction=!1,this._setListeners()}static get DefaultType(){return Pn}static get Default(){return jn}static get NAME(){return Dn}show(){j.trigger(this._element,"show.bs.toast").defaultPrevented||(this._clearTimeout(),this._config.animation&&this._element.classList.add("fade"),this._element.classList.remove(Sn),u(this._element),this._element.classList.add(Nn),this._element.classList.add(In),this._queueCallback((()=>{this._element.classList.remove(In),j.trigger(this._element,"shown.bs.toast"),this._maybeScheduleHide()}),this._element,this._config.animation))}hide(){this._element.classList.contains(Nn)&&(j.trigger(this._element,"hide.bs.toast").defaultPrevented||(this._element.classList.add(In),this._queueCallback((()=>{this._element.classList.add(Sn),this._element.classList.remove(In),this._element.classList.remove(Nn),j.trigger(this._element,"hidden.bs.toast")}),this._element,this._config.animation)))}dispose(){this._clearTimeout(),this._element.classList.contains(Nn)&&this._element.classList.remove(Nn),super.dispose()}_getConfig(t){return t={...jn,...U.getDataAttributes(this._element),..."object"==typeof t&&t?t:{}},a(Dn,t,this.constructor.DefaultType),t}_maybeScheduleHide(){this._config.autohide&&(this._hasMouseInteraction||this._hasKeyboardInteraction||(this._timeout=setTimeout((()=>{this.hide()}),this._config.delay)))}_onInteraction(t,e){switch(t.type){case"mouseover":case"mouseout":this._hasMouseInteraction=e;break;case"focusin":case"focusout":this._hasKeyboardInteraction=e}if(e)return void this._clearTimeout();const i=t.relatedTarget;this._element===i||this._element.contains(i)||this._maybeScheduleHide()}_setListeners(){j.on(this._element,"mouseover.bs.toast",(t=>this._onInteraction(t,!0))),j.on(this._element,"mouseout.bs.toast",(t=>this._onInteraction(t,!1))),j.on(this._element,"focusin.bs.toast",(t=>this._onInteraction(t,!0))),j.on(this._element,"focusout.bs.toast",(t=>this._onInteraction(t,!1)))}_clearTimeout(){clearTimeout(this._timeout),this._timeout=null}static jQueryInterface(t){return this.each((function(){const e=Mn.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}return R(Mn),g(Mn),{Alert:W,Button:z,Carousel:st,Collapse:pt,Dropdown:hi,Modal:Hi,Offcanvas:Fi,Popover:gn,ScrollSpy:An,Tab:xn,Toast:Mn,Tooltip:un}})); +!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).bootstrap=e()}(this,(function(){"use strict";const t=new Map,e={set(e,i,n){t.has(e)||t.set(e,new Map);const s=t.get(e);s.has(i)||0===s.size?s.set(i,n):console.error(`Bootstrap doesn't allow more than one instance per element. Bound instance: ${Array.from(s.keys())[0]}.`)},get:(e,i)=>t.has(e)&&t.get(e).get(i)||null,remove(e,i){if(!t.has(e))return;const n=t.get(e);n.delete(i),0===n.size&&t.delete(e)}},i="transitionend",n=t=>(t&&window.CSS&&window.CSS.escape&&(t=t.replace(/#([^\s"#']+)/g,((t,e)=>`#${CSS.escape(e)}`))),t),s=t=>{t.dispatchEvent(new Event(i))},o=t=>!(!t||"object"!=typeof t)&&(void 0!==t.jquery&&(t=t[0]),void 0!==t.nodeType),r=t=>o(t)?t.jquery?t[0]:t:"string"==typeof t&&t.length>0?document.querySelector(n(t)):null,a=t=>{if(!o(t)||0===t.getClientRects().length)return!1;const e="visible"===getComputedStyle(t).getPropertyValue("visibility"),i=t.closest("details:not([open])");if(!i)return e;if(i!==t){const e=t.closest("summary");if(e&&e.parentNode!==i)return!1;if(null===e)return!1}return e},l=t=>!t||t.nodeType!==Node.ELEMENT_NODE||!!t.classList.contains("disabled")||(void 0!==t.disabled?t.disabled:t.hasAttribute("disabled")&&"false"!==t.getAttribute("disabled")),c=t=>{if(!document.documentElement.attachShadow)return null;if("function"==typeof t.getRootNode){const e=t.getRootNode();return e instanceof ShadowRoot?e:null}return t instanceof ShadowRoot?t:t.parentNode?c(t.parentNode):null},h=()=>{},d=t=>{t.offsetHeight},u=()=>window.jQuery&&!document.body.hasAttribute("data-bs-no-jquery")?window.jQuery:null,f=[],p=()=>"rtl"===document.documentElement.dir,m=t=>{var e;e=()=>{const e=u();if(e){const i=t.NAME,n=e.fn[i];e.fn[i]=t.jQueryInterface,e.fn[i].Constructor=t,e.fn[i].noConflict=()=>(e.fn[i]=n,t.jQueryInterface)}},"loading"===document.readyState?(f.length||document.addEventListener("DOMContentLoaded",(()=>{for(const t of f)t()})),f.push(e)):e()},g=(t,e=[],i=t)=>"function"==typeof t?t(...e):i,_=(t,e,n=!0)=>{if(!n)return void g(t);const o=(t=>{if(!t)return 0;let{transitionDuration:e,transitionDelay:i}=window.getComputedStyle(t);const n=Number.parseFloat(e),s=Number.parseFloat(i);return n||s?(e=e.split(",")[0],i=i.split(",")[0],1e3*(Number.parseFloat(e)+Number.parseFloat(i))):0})(e)+5;let r=!1;const a=({target:n})=>{n===e&&(r=!0,e.removeEventListener(i,a),g(t))};e.addEventListener(i,a),setTimeout((()=>{r||s(e)}),o)},b=(t,e,i,n)=>{const s=t.length;let o=t.indexOf(e);return-1===o?!i&&n?t[s-1]:t[0]:(o+=i?1:-1,n&&(o=(o+s)%s),t[Math.max(0,Math.min(o,s-1))])},v=/[^.]*(?=\..*)\.|.*/,y=/\..*/,w=/::\d+$/,A={};let E=1;const T={mouseenter:"mouseover",mouseleave:"mouseout"},C=new Set(["click","dblclick","mouseup","mousedown","contextmenu","mousewheel","DOMMouseScroll","mouseover","mouseout","mousemove","selectstart","selectend","keydown","keypress","keyup","orientationchange","touchstart","touchmove","touchend","touchcancel","pointerdown","pointermove","pointerup","pointerleave","pointercancel","gesturestart","gesturechange","gestureend","focus","blur","change","reset","select","submit","focusin","focusout","load","unload","beforeunload","resize","move","DOMContentLoaded","readystatechange","error","abort","scroll"]);function O(t,e){return e&&`${e}::${E++}`||t.uidEvent||E++}function x(t){const e=O(t);return t.uidEvent=e,A[e]=A[e]||{},A[e]}function k(t,e,i=null){return Object.values(t).find((t=>t.callable===e&&t.delegationSelector===i))}function L(t,e,i){const n="string"==typeof e,s=n?i:e||i;let o=I(t);return C.has(o)||(o=t),[n,s,o]}function S(t,e,i,n,s){if("string"!=typeof e||!t)return;let[o,r,a]=L(e,i,n);if(e in T){const t=t=>function(e){if(!e.relatedTarget||e.relatedTarget!==e.delegateTarget&&!e.delegateTarget.contains(e.relatedTarget))return t.call(this,e)};r=t(r)}const l=x(t),c=l[a]||(l[a]={}),h=k(c,r,o?i:null);if(h)return void(h.oneOff=h.oneOff&&s);const d=O(r,e.replace(v,"")),u=o?function(t,e,i){return function n(s){const o=t.querySelectorAll(e);for(let{target:r}=s;r&&r!==this;r=r.parentNode)for(const a of o)if(a===r)return P(s,{delegateTarget:r}),n.oneOff&&N.off(t,s.type,e,i),i.apply(r,[s])}}(t,i,r):function(t,e){return function i(n){return P(n,{delegateTarget:t}),i.oneOff&&N.off(t,n.type,e),e.apply(t,[n])}}(t,r);u.delegationSelector=o?i:null,u.callable=r,u.oneOff=s,u.uidEvent=d,c[d]=u,t.addEventListener(a,u,o)}function D(t,e,i,n,s){const o=k(e[i],n,s);o&&(t.removeEventListener(i,o,Boolean(s)),delete e[i][o.uidEvent])}function $(t,e,i,n){const s=e[i]||{};for(const[o,r]of Object.entries(s))o.includes(n)&&D(t,e,i,r.callable,r.delegationSelector)}function I(t){return t=t.replace(y,""),T[t]||t}const N={on(t,e,i,n){S(t,e,i,n,!1)},one(t,e,i,n){S(t,e,i,n,!0)},off(t,e,i,n){if("string"!=typeof e||!t)return;const[s,o,r]=L(e,i,n),a=r!==e,l=x(t),c=l[r]||{},h=e.startsWith(".");if(void 0===o){if(h)for(const i of Object.keys(l))$(t,l,i,e.slice(1));for(const[i,n]of Object.entries(c)){const s=i.replace(w,"");a&&!e.includes(s)||D(t,l,r,n.callable,n.delegationSelector)}}else{if(!Object.keys(c).length)return;D(t,l,r,o,s?i:null)}},trigger(t,e,i){if("string"!=typeof e||!t)return null;const n=u();let s=null,o=!0,r=!0,a=!1;e!==I(e)&&n&&(s=n.Event(e,i),n(t).trigger(s),o=!s.isPropagationStopped(),r=!s.isImmediatePropagationStopped(),a=s.isDefaultPrevented());const l=P(new Event(e,{bubbles:o,cancelable:!0}),i);return a&&l.preventDefault(),r&&t.dispatchEvent(l),l.defaultPrevented&&s&&s.preventDefault(),l}};function P(t,e={}){for(const[i,n]of Object.entries(e))try{t[i]=n}catch(e){Object.defineProperty(t,i,{configurable:!0,get:()=>n})}return t}function M(t){if("true"===t)return!0;if("false"===t)return!1;if(t===Number(t).toString())return Number(t);if(""===t||"null"===t)return null;if("string"!=typeof t)return t;try{return JSON.parse(decodeURIComponent(t))}catch(e){return t}}function j(t){return t.replace(/[A-Z]/g,(t=>`-${t.toLowerCase()}`))}const F={setDataAttribute(t,e,i){t.setAttribute(`data-bs-${j(e)}`,i)},removeDataAttribute(t,e){t.removeAttribute(`data-bs-${j(e)}`)},getDataAttributes(t){if(!t)return{};const e={},i=Object.keys(t.dataset).filter((t=>t.startsWith("bs")&&!t.startsWith("bsConfig")));for(const n of i){let i=n.replace(/^bs/,"");i=i.charAt(0).toLowerCase()+i.slice(1,i.length),e[i]=M(t.dataset[n])}return e},getDataAttribute:(t,e)=>M(t.getAttribute(`data-bs-${j(e)}`))};class H{static get Default(){return{}}static get DefaultType(){return{}}static get NAME(){throw new Error('You have to implement the static method "NAME", for each component!')}_getConfig(t){return t=this._mergeConfigObj(t),t=this._configAfterMerge(t),this._typeCheckConfig(t),t}_configAfterMerge(t){return t}_mergeConfigObj(t,e){const i=o(e)?F.getDataAttribute(e,"config"):{};return{...this.constructor.Default,..."object"==typeof i?i:{},...o(e)?F.getDataAttributes(e):{},..."object"==typeof t?t:{}}}_typeCheckConfig(t,e=this.constructor.DefaultType){for(const[n,s]of Object.entries(e)){const e=t[n],r=o(e)?"element":null==(i=e)?`${i}`:Object.prototype.toString.call(i).match(/\s([a-z]+)/i)[1].toLowerCase();if(!new RegExp(s).test(r))throw new TypeError(`${this.constructor.NAME.toUpperCase()}: Option "${n}" provided type "${r}" but expected type "${s}".`)}var i}}class W extends H{constructor(t,i){super(),(t=r(t))&&(this._element=t,this._config=this._getConfig(i),e.set(this._element,this.constructor.DATA_KEY,this))}dispose(){e.remove(this._element,this.constructor.DATA_KEY),N.off(this._element,this.constructor.EVENT_KEY);for(const t of Object.getOwnPropertyNames(this))this[t]=null}_queueCallback(t,e,i=!0){_(t,e,i)}_getConfig(t){return t=this._mergeConfigObj(t,this._element),t=this._configAfterMerge(t),this._typeCheckConfig(t),t}static getInstance(t){return e.get(r(t),this.DATA_KEY)}static getOrCreateInstance(t,e={}){return this.getInstance(t)||new this(t,"object"==typeof e?e:null)}static get VERSION(){return"5.3.1"}static get DATA_KEY(){return`bs.${this.NAME}`}static get EVENT_KEY(){return`.${this.DATA_KEY}`}static eventName(t){return`${t}${this.EVENT_KEY}`}}const B=t=>{let e=t.getAttribute("data-bs-target");if(!e||"#"===e){let i=t.getAttribute("href");if(!i||!i.includes("#")&&!i.startsWith("."))return null;i.includes("#")&&!i.startsWith("#")&&(i=`#${i.split("#")[1]}`),e=i&&"#"!==i?i.trim():null}return n(e)},z={find:(t,e=document.documentElement)=>[].concat(...Element.prototype.querySelectorAll.call(e,t)),findOne:(t,e=document.documentElement)=>Element.prototype.querySelector.call(e,t),children:(t,e)=>[].concat(...t.children).filter((t=>t.matches(e))),parents(t,e){const i=[];let n=t.parentNode.closest(e);for(;n;)i.push(n),n=n.parentNode.closest(e);return i},prev(t,e){let i=t.previousElementSibling;for(;i;){if(i.matches(e))return[i];i=i.previousElementSibling}return[]},next(t,e){let i=t.nextElementSibling;for(;i;){if(i.matches(e))return[i];i=i.nextElementSibling}return[]},focusableChildren(t){const e=["a","button","input","textarea","select","details","[tabindex]",'[contenteditable="true"]'].map((t=>`${t}:not([tabindex^="-"])`)).join(",");return this.find(e,t).filter((t=>!l(t)&&a(t)))},getSelectorFromElement(t){const e=B(t);return e&&z.findOne(e)?e:null},getElementFromSelector(t){const e=B(t);return e?z.findOne(e):null},getMultipleElementsFromSelector(t){const e=B(t);return e?z.find(e):[]}},R=(t,e="hide")=>{const i=`click.dismiss${t.EVENT_KEY}`,n=t.NAME;N.on(document,i,`[data-bs-dismiss="${n}"]`,(function(i){if(["A","AREA"].includes(this.tagName)&&i.preventDefault(),l(this))return;const s=z.getElementFromSelector(this)||this.closest(`.${n}`);t.getOrCreateInstance(s)[e]()}))},q=".bs.alert",V=`close${q}`,K=`closed${q}`;class Q extends W{static get NAME(){return"alert"}close(){if(N.trigger(this._element,V).defaultPrevented)return;this._element.classList.remove("show");const t=this._element.classList.contains("fade");this._queueCallback((()=>this._destroyElement()),this._element,t)}_destroyElement(){this._element.remove(),N.trigger(this._element,K),this.dispose()}static jQueryInterface(t){return this.each((function(){const e=Q.getOrCreateInstance(this);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}R(Q,"close"),m(Q);const X='[data-bs-toggle="button"]';class Y extends W{static get NAME(){return"button"}toggle(){this._element.setAttribute("aria-pressed",this._element.classList.toggle("active"))}static jQueryInterface(t){return this.each((function(){const e=Y.getOrCreateInstance(this);"toggle"===t&&e[t]()}))}}N.on(document,"click.bs.button.data-api",X,(t=>{t.preventDefault();const e=t.target.closest(X);Y.getOrCreateInstance(e).toggle()})),m(Y);const U=".bs.swipe",G=`touchstart${U}`,J=`touchmove${U}`,Z=`touchend${U}`,tt=`pointerdown${U}`,et=`pointerup${U}`,it={endCallback:null,leftCallback:null,rightCallback:null},nt={endCallback:"(function|null)",leftCallback:"(function|null)",rightCallback:"(function|null)"};class st extends H{constructor(t,e){super(),this._element=t,t&&st.isSupported()&&(this._config=this._getConfig(e),this._deltaX=0,this._supportPointerEvents=Boolean(window.PointerEvent),this._initEvents())}static get Default(){return it}static get DefaultType(){return nt}static get NAME(){return"swipe"}dispose(){N.off(this._element,U)}_start(t){this._supportPointerEvents?this._eventIsPointerPenTouch(t)&&(this._deltaX=t.clientX):this._deltaX=t.touches[0].clientX}_end(t){this._eventIsPointerPenTouch(t)&&(this._deltaX=t.clientX-this._deltaX),this._handleSwipe(),g(this._config.endCallback)}_move(t){this._deltaX=t.touches&&t.touches.length>1?0:t.touches[0].clientX-this._deltaX}_handleSwipe(){const t=Math.abs(this._deltaX);if(t<=40)return;const e=t/this._deltaX;this._deltaX=0,e&&g(e>0?this._config.rightCallback:this._config.leftCallback)}_initEvents(){this._supportPointerEvents?(N.on(this._element,tt,(t=>this._start(t))),N.on(this._element,et,(t=>this._end(t))),this._element.classList.add("pointer-event")):(N.on(this._element,G,(t=>this._start(t))),N.on(this._element,J,(t=>this._move(t))),N.on(this._element,Z,(t=>this._end(t))))}_eventIsPointerPenTouch(t){return this._supportPointerEvents&&("pen"===t.pointerType||"touch"===t.pointerType)}static isSupported(){return"ontouchstart"in document.documentElement||navigator.maxTouchPoints>0}}const ot=".bs.carousel",rt=".data-api",at="next",lt="prev",ct="left",ht="right",dt=`slide${ot}`,ut=`slid${ot}`,ft=`keydown${ot}`,pt=`mouseenter${ot}`,mt=`mouseleave${ot}`,gt=`dragstart${ot}`,_t=`load${ot}${rt}`,bt=`click${ot}${rt}`,vt="carousel",yt="active",wt=".active",At=".carousel-item",Et=wt+At,Tt={ArrowLeft:ht,ArrowRight:ct},Ct={interval:5e3,keyboard:!0,pause:"hover",ride:!1,touch:!0,wrap:!0},Ot={interval:"(number|boolean)",keyboard:"boolean",pause:"(string|boolean)",ride:"(boolean|string)",touch:"boolean",wrap:"boolean"};class xt extends W{constructor(t,e){super(t,e),this._interval=null,this._activeElement=null,this._isSliding=!1,this.touchTimeout=null,this._swipeHelper=null,this._indicatorsElement=z.findOne(".carousel-indicators",this._element),this._addEventListeners(),this._config.ride===vt&&this.cycle()}static get Default(){return Ct}static get DefaultType(){return Ot}static get NAME(){return"carousel"}next(){this._slide(at)}nextWhenVisible(){!document.hidden&&a(this._element)&&this.next()}prev(){this._slide(lt)}pause(){this._isSliding&&s(this._element),this._clearInterval()}cycle(){this._clearInterval(),this._updateInterval(),this._interval=setInterval((()=>this.nextWhenVisible()),this._config.interval)}_maybeEnableCycle(){this._config.ride&&(this._isSliding?N.one(this._element,ut,(()=>this.cycle())):this.cycle())}to(t){const e=this._getItems();if(t>e.length-1||t<0)return;if(this._isSliding)return void N.one(this._element,ut,(()=>this.to(t)));const i=this._getItemIndex(this._getActive());if(i===t)return;const n=t>i?at:lt;this._slide(n,e[t])}dispose(){this._swipeHelper&&this._swipeHelper.dispose(),super.dispose()}_configAfterMerge(t){return t.defaultInterval=t.interval,t}_addEventListeners(){this._config.keyboard&&N.on(this._element,ft,(t=>this._keydown(t))),"hover"===this._config.pause&&(N.on(this._element,pt,(()=>this.pause())),N.on(this._element,mt,(()=>this._maybeEnableCycle()))),this._config.touch&&st.isSupported()&&this._addTouchEventListeners()}_addTouchEventListeners(){for(const t of z.find(".carousel-item img",this._element))N.on(t,gt,(t=>t.preventDefault()));const t={leftCallback:()=>this._slide(this._directionToOrder(ct)),rightCallback:()=>this._slide(this._directionToOrder(ht)),endCallback:()=>{"hover"===this._config.pause&&(this.pause(),this.touchTimeout&&clearTimeout(this.touchTimeout),this.touchTimeout=setTimeout((()=>this._maybeEnableCycle()),500+this._config.interval))}};this._swipeHelper=new st(this._element,t)}_keydown(t){if(/input|textarea/i.test(t.target.tagName))return;const e=Tt[t.key];e&&(t.preventDefault(),this._slide(this._directionToOrder(e)))}_getItemIndex(t){return this._getItems().indexOf(t)}_setActiveIndicatorElement(t){if(!this._indicatorsElement)return;const e=z.findOne(wt,this._indicatorsElement);e.classList.remove(yt),e.removeAttribute("aria-current");const i=z.findOne(`[data-bs-slide-to="${t}"]`,this._indicatorsElement);i&&(i.classList.add(yt),i.setAttribute("aria-current","true"))}_updateInterval(){const t=this._activeElement||this._getActive();if(!t)return;const e=Number.parseInt(t.getAttribute("data-bs-interval"),10);this._config.interval=e||this._config.defaultInterval}_slide(t,e=null){if(this._isSliding)return;const i=this._getActive(),n=t===at,s=e||b(this._getItems(),i,n,this._config.wrap);if(s===i)return;const o=this._getItemIndex(s),r=e=>N.trigger(this._element,e,{relatedTarget:s,direction:this._orderToDirection(t),from:this._getItemIndex(i),to:o});if(r(dt).defaultPrevented)return;if(!i||!s)return;const a=Boolean(this._interval);this.pause(),this._isSliding=!0,this._setActiveIndicatorElement(o),this._activeElement=s;const l=n?"carousel-item-start":"carousel-item-end",c=n?"carousel-item-next":"carousel-item-prev";s.classList.add(c),d(s),i.classList.add(l),s.classList.add(l),this._queueCallback((()=>{s.classList.remove(l,c),s.classList.add(yt),i.classList.remove(yt,c,l),this._isSliding=!1,r(ut)}),i,this._isAnimated()),a&&this.cycle()}_isAnimated(){return this._element.classList.contains("slide")}_getActive(){return z.findOne(Et,this._element)}_getItems(){return z.find(At,this._element)}_clearInterval(){this._interval&&(clearInterval(this._interval),this._interval=null)}_directionToOrder(t){return p()?t===ct?lt:at:t===ct?at:lt}_orderToDirection(t){return p()?t===lt?ct:ht:t===lt?ht:ct}static jQueryInterface(t){return this.each((function(){const e=xt.getOrCreateInstance(this,t);if("number"!=typeof t){if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t]()}}else e.to(t)}))}}N.on(document,bt,"[data-bs-slide], [data-bs-slide-to]",(function(t){const e=z.getElementFromSelector(this);if(!e||!e.classList.contains(vt))return;t.preventDefault();const i=xt.getOrCreateInstance(e),n=this.getAttribute("data-bs-slide-to");return n?(i.to(n),void i._maybeEnableCycle()):"next"===F.getDataAttribute(this,"slide")?(i.next(),void i._maybeEnableCycle()):(i.prev(),void i._maybeEnableCycle())})),N.on(window,_t,(()=>{const t=z.find('[data-bs-ride="carousel"]');for(const e of t)xt.getOrCreateInstance(e)})),m(xt);const kt=".bs.collapse",Lt=`show${kt}`,St=`shown${kt}`,Dt=`hide${kt}`,$t=`hidden${kt}`,It=`click${kt}.data-api`,Nt="show",Pt="collapse",Mt="collapsing",jt=`:scope .${Pt} .${Pt}`,Ft='[data-bs-toggle="collapse"]',Ht={parent:null,toggle:!0},Wt={parent:"(null|element)",toggle:"boolean"};class Bt extends W{constructor(t,e){super(t,e),this._isTransitioning=!1,this._triggerArray=[];const i=z.find(Ft);for(const t of i){const e=z.getSelectorFromElement(t),i=z.find(e).filter((t=>t===this._element));null!==e&&i.length&&this._triggerArray.push(t)}this._initializeChildren(),this._config.parent||this._addAriaAndCollapsedClass(this._triggerArray,this._isShown()),this._config.toggle&&this.toggle()}static get Default(){return Ht}static get DefaultType(){return Wt}static get NAME(){return"collapse"}toggle(){this._isShown()?this.hide():this.show()}show(){if(this._isTransitioning||this._isShown())return;let t=[];if(this._config.parent&&(t=this._getFirstLevelChildren(".collapse.show, .collapse.collapsing").filter((t=>t!==this._element)).map((t=>Bt.getOrCreateInstance(t,{toggle:!1})))),t.length&&t[0]._isTransitioning)return;if(N.trigger(this._element,Lt).defaultPrevented)return;for(const e of t)e.hide();const e=this._getDimension();this._element.classList.remove(Pt),this._element.classList.add(Mt),this._element.style[e]=0,this._addAriaAndCollapsedClass(this._triggerArray,!0),this._isTransitioning=!0;const i=`scroll${e[0].toUpperCase()+e.slice(1)}`;this._queueCallback((()=>{this._isTransitioning=!1,this._element.classList.remove(Mt),this._element.classList.add(Pt,Nt),this._element.style[e]="",N.trigger(this._element,St)}),this._element,!0),this._element.style[e]=`${this._element[i]}px`}hide(){if(this._isTransitioning||!this._isShown())return;if(N.trigger(this._element,Dt).defaultPrevented)return;const t=this._getDimension();this._element.style[t]=`${this._element.getBoundingClientRect()[t]}px`,d(this._element),this._element.classList.add(Mt),this._element.classList.remove(Pt,Nt);for(const t of this._triggerArray){const e=z.getElementFromSelector(t);e&&!this._isShown(e)&&this._addAriaAndCollapsedClass([t],!1)}this._isTransitioning=!0,this._element.style[t]="",this._queueCallback((()=>{this._isTransitioning=!1,this._element.classList.remove(Mt),this._element.classList.add(Pt),N.trigger(this._element,$t)}),this._element,!0)}_isShown(t=this._element){return t.classList.contains(Nt)}_configAfterMerge(t){return t.toggle=Boolean(t.toggle),t.parent=r(t.parent),t}_getDimension(){return this._element.classList.contains("collapse-horizontal")?"width":"height"}_initializeChildren(){if(!this._config.parent)return;const t=this._getFirstLevelChildren(Ft);for(const e of t){const t=z.getElementFromSelector(e);t&&this._addAriaAndCollapsedClass([e],this._isShown(t))}}_getFirstLevelChildren(t){const e=z.find(jt,this._config.parent);return z.find(t,this._config.parent).filter((t=>!e.includes(t)))}_addAriaAndCollapsedClass(t,e){if(t.length)for(const i of t)i.classList.toggle("collapsed",!e),i.setAttribute("aria-expanded",e)}static jQueryInterface(t){const e={};return"string"==typeof t&&/show|hide/.test(t)&&(e.toggle=!1),this.each((function(){const i=Bt.getOrCreateInstance(this,e);if("string"==typeof t){if(void 0===i[t])throw new TypeError(`No method named "${t}"`);i[t]()}}))}}N.on(document,It,Ft,(function(t){("A"===t.target.tagName||t.delegateTarget&&"A"===t.delegateTarget.tagName)&&t.preventDefault();for(const t of z.getMultipleElementsFromSelector(this))Bt.getOrCreateInstance(t,{toggle:!1}).toggle()})),m(Bt);var zt="top",Rt="bottom",qt="right",Vt="left",Kt="auto",Qt=[zt,Rt,qt,Vt],Xt="start",Yt="end",Ut="clippingParents",Gt="viewport",Jt="popper",Zt="reference",te=Qt.reduce((function(t,e){return t.concat([e+"-"+Xt,e+"-"+Yt])}),[]),ee=[].concat(Qt,[Kt]).reduce((function(t,e){return t.concat([e,e+"-"+Xt,e+"-"+Yt])}),[]),ie="beforeRead",ne="read",se="afterRead",oe="beforeMain",re="main",ae="afterMain",le="beforeWrite",ce="write",he="afterWrite",de=[ie,ne,se,oe,re,ae,le,ce,he];function ue(t){return t?(t.nodeName||"").toLowerCase():null}function fe(t){if(null==t)return window;if("[object Window]"!==t.toString()){var e=t.ownerDocument;return e&&e.defaultView||window}return t}function pe(t){return t instanceof fe(t).Element||t instanceof Element}function me(t){return t instanceof fe(t).HTMLElement||t instanceof HTMLElement}function ge(t){return"undefined"!=typeof ShadowRoot&&(t instanceof fe(t).ShadowRoot||t instanceof ShadowRoot)}const _e={name:"applyStyles",enabled:!0,phase:"write",fn:function(t){var e=t.state;Object.keys(e.elements).forEach((function(t){var i=e.styles[t]||{},n=e.attributes[t]||{},s=e.elements[t];me(s)&&ue(s)&&(Object.assign(s.style,i),Object.keys(n).forEach((function(t){var e=n[t];!1===e?s.removeAttribute(t):s.setAttribute(t,!0===e?"":e)})))}))},effect:function(t){var e=t.state,i={popper:{position:e.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(e.elements.popper.style,i.popper),e.styles=i,e.elements.arrow&&Object.assign(e.elements.arrow.style,i.arrow),function(){Object.keys(e.elements).forEach((function(t){var n=e.elements[t],s=e.attributes[t]||{},o=Object.keys(e.styles.hasOwnProperty(t)?e.styles[t]:i[t]).reduce((function(t,e){return t[e]="",t}),{});me(n)&&ue(n)&&(Object.assign(n.style,o),Object.keys(s).forEach((function(t){n.removeAttribute(t)})))}))}},requires:["computeStyles"]};function be(t){return t.split("-")[0]}var ve=Math.max,ye=Math.min,we=Math.round;function Ae(){var t=navigator.userAgentData;return null!=t&&t.brands&&Array.isArray(t.brands)?t.brands.map((function(t){return t.brand+"/"+t.version})).join(" "):navigator.userAgent}function Ee(){return!/^((?!chrome|android).)*safari/i.test(Ae())}function Te(t,e,i){void 0===e&&(e=!1),void 0===i&&(i=!1);var n=t.getBoundingClientRect(),s=1,o=1;e&&me(t)&&(s=t.offsetWidth>0&&we(n.width)/t.offsetWidth||1,o=t.offsetHeight>0&&we(n.height)/t.offsetHeight||1);var r=(pe(t)?fe(t):window).visualViewport,a=!Ee()&&i,l=(n.left+(a&&r?r.offsetLeft:0))/s,c=(n.top+(a&&r?r.offsetTop:0))/o,h=n.width/s,d=n.height/o;return{width:h,height:d,top:c,right:l+h,bottom:c+d,left:l,x:l,y:c}}function Ce(t){var e=Te(t),i=t.offsetWidth,n=t.offsetHeight;return Math.abs(e.width-i)<=1&&(i=e.width),Math.abs(e.height-n)<=1&&(n=e.height),{x:t.offsetLeft,y:t.offsetTop,width:i,height:n}}function Oe(t,e){var i=e.getRootNode&&e.getRootNode();if(t.contains(e))return!0;if(i&&ge(i)){var n=e;do{if(n&&t.isSameNode(n))return!0;n=n.parentNode||n.host}while(n)}return!1}function xe(t){return fe(t).getComputedStyle(t)}function ke(t){return["table","td","th"].indexOf(ue(t))>=0}function Le(t){return((pe(t)?t.ownerDocument:t.document)||window.document).documentElement}function Se(t){return"html"===ue(t)?t:t.assignedSlot||t.parentNode||(ge(t)?t.host:null)||Le(t)}function De(t){return me(t)&&"fixed"!==xe(t).position?t.offsetParent:null}function $e(t){for(var e=fe(t),i=De(t);i&&ke(i)&&"static"===xe(i).position;)i=De(i);return i&&("html"===ue(i)||"body"===ue(i)&&"static"===xe(i).position)?e:i||function(t){var e=/firefox/i.test(Ae());if(/Trident/i.test(Ae())&&me(t)&&"fixed"===xe(t).position)return null;var i=Se(t);for(ge(i)&&(i=i.host);me(i)&&["html","body"].indexOf(ue(i))<0;){var n=xe(i);if("none"!==n.transform||"none"!==n.perspective||"paint"===n.contain||-1!==["transform","perspective"].indexOf(n.willChange)||e&&"filter"===n.willChange||e&&n.filter&&"none"!==n.filter)return i;i=i.parentNode}return null}(t)||e}function Ie(t){return["top","bottom"].indexOf(t)>=0?"x":"y"}function Ne(t,e,i){return ve(t,ye(e,i))}function Pe(t){return Object.assign({},{top:0,right:0,bottom:0,left:0},t)}function Me(t,e){return e.reduce((function(e,i){return e[i]=t,e}),{})}const je={name:"arrow",enabled:!0,phase:"main",fn:function(t){var e,i=t.state,n=t.name,s=t.options,o=i.elements.arrow,r=i.modifiersData.popperOffsets,a=be(i.placement),l=Ie(a),c=[Vt,qt].indexOf(a)>=0?"height":"width";if(o&&r){var h=function(t,e){return Pe("number"!=typeof(t="function"==typeof t?t(Object.assign({},e.rects,{placement:e.placement})):t)?t:Me(t,Qt))}(s.padding,i),d=Ce(o),u="y"===l?zt:Vt,f="y"===l?Rt:qt,p=i.rects.reference[c]+i.rects.reference[l]-r[l]-i.rects.popper[c],m=r[l]-i.rects.reference[l],g=$e(o),_=g?"y"===l?g.clientHeight||0:g.clientWidth||0:0,b=p/2-m/2,v=h[u],y=_-d[c]-h[f],w=_/2-d[c]/2+b,A=Ne(v,w,y),E=l;i.modifiersData[n]=((e={})[E]=A,e.centerOffset=A-w,e)}},effect:function(t){var e=t.state,i=t.options.element,n=void 0===i?"[data-popper-arrow]":i;null!=n&&("string"!=typeof n||(n=e.elements.popper.querySelector(n)))&&Oe(e.elements.popper,n)&&(e.elements.arrow=n)},requires:["popperOffsets"],requiresIfExists:["preventOverflow"]};function Fe(t){return t.split("-")[1]}var He={top:"auto",right:"auto",bottom:"auto",left:"auto"};function We(t){var e,i=t.popper,n=t.popperRect,s=t.placement,o=t.variation,r=t.offsets,a=t.position,l=t.gpuAcceleration,c=t.adaptive,h=t.roundOffsets,d=t.isFixed,u=r.x,f=void 0===u?0:u,p=r.y,m=void 0===p?0:p,g="function"==typeof h?h({x:f,y:m}):{x:f,y:m};f=g.x,m=g.y;var _=r.hasOwnProperty("x"),b=r.hasOwnProperty("y"),v=Vt,y=zt,w=window;if(c){var A=$e(i),E="clientHeight",T="clientWidth";A===fe(i)&&"static"!==xe(A=Le(i)).position&&"absolute"===a&&(E="scrollHeight",T="scrollWidth"),(s===zt||(s===Vt||s===qt)&&o===Yt)&&(y=Rt,m-=(d&&A===w&&w.visualViewport?w.visualViewport.height:A[E])-n.height,m*=l?1:-1),s!==Vt&&(s!==zt&&s!==Rt||o!==Yt)||(v=qt,f-=(d&&A===w&&w.visualViewport?w.visualViewport.width:A[T])-n.width,f*=l?1:-1)}var C,O=Object.assign({position:a},c&&He),x=!0===h?function(t,e){var i=t.x,n=t.y,s=e.devicePixelRatio||1;return{x:we(i*s)/s||0,y:we(n*s)/s||0}}({x:f,y:m},fe(i)):{x:f,y:m};return f=x.x,m=x.y,l?Object.assign({},O,((C={})[y]=b?"0":"",C[v]=_?"0":"",C.transform=(w.devicePixelRatio||1)<=1?"translate("+f+"px, "+m+"px)":"translate3d("+f+"px, "+m+"px, 0)",C)):Object.assign({},O,((e={})[y]=b?m+"px":"",e[v]=_?f+"px":"",e.transform="",e))}const Be={name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:function(t){var e=t.state,i=t.options,n=i.gpuAcceleration,s=void 0===n||n,o=i.adaptive,r=void 0===o||o,a=i.roundOffsets,l=void 0===a||a,c={placement:be(e.placement),variation:Fe(e.placement),popper:e.elements.popper,popperRect:e.rects.popper,gpuAcceleration:s,isFixed:"fixed"===e.options.strategy};null!=e.modifiersData.popperOffsets&&(e.styles.popper=Object.assign({},e.styles.popper,We(Object.assign({},c,{offsets:e.modifiersData.popperOffsets,position:e.options.strategy,adaptive:r,roundOffsets:l})))),null!=e.modifiersData.arrow&&(e.styles.arrow=Object.assign({},e.styles.arrow,We(Object.assign({},c,{offsets:e.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:l})))),e.attributes.popper=Object.assign({},e.attributes.popper,{"data-popper-placement":e.placement})},data:{}};var ze={passive:!0};const Re={name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:function(t){var e=t.state,i=t.instance,n=t.options,s=n.scroll,o=void 0===s||s,r=n.resize,a=void 0===r||r,l=fe(e.elements.popper),c=[].concat(e.scrollParents.reference,e.scrollParents.popper);return o&&c.forEach((function(t){t.addEventListener("scroll",i.update,ze)})),a&&l.addEventListener("resize",i.update,ze),function(){o&&c.forEach((function(t){t.removeEventListener("scroll",i.update,ze)})),a&&l.removeEventListener("resize",i.update,ze)}},data:{}};var qe={left:"right",right:"left",bottom:"top",top:"bottom"};function Ve(t){return t.replace(/left|right|bottom|top/g,(function(t){return qe[t]}))}var Ke={start:"end",end:"start"};function Qe(t){return t.replace(/start|end/g,(function(t){return Ke[t]}))}function Xe(t){var e=fe(t);return{scrollLeft:e.pageXOffset,scrollTop:e.pageYOffset}}function Ye(t){return Te(Le(t)).left+Xe(t).scrollLeft}function Ue(t){var e=xe(t),i=e.overflow,n=e.overflowX,s=e.overflowY;return/auto|scroll|overlay|hidden/.test(i+s+n)}function Ge(t){return["html","body","#document"].indexOf(ue(t))>=0?t.ownerDocument.body:me(t)&&Ue(t)?t:Ge(Se(t))}function Je(t,e){var i;void 0===e&&(e=[]);var n=Ge(t),s=n===(null==(i=t.ownerDocument)?void 0:i.body),o=fe(n),r=s?[o].concat(o.visualViewport||[],Ue(n)?n:[]):n,a=e.concat(r);return s?a:a.concat(Je(Se(r)))}function Ze(t){return Object.assign({},t,{left:t.x,top:t.y,right:t.x+t.width,bottom:t.y+t.height})}function ti(t,e,i){return e===Gt?Ze(function(t,e){var i=fe(t),n=Le(t),s=i.visualViewport,o=n.clientWidth,r=n.clientHeight,a=0,l=0;if(s){o=s.width,r=s.height;var c=Ee();(c||!c&&"fixed"===e)&&(a=s.offsetLeft,l=s.offsetTop)}return{width:o,height:r,x:a+Ye(t),y:l}}(t,i)):pe(e)?function(t,e){var i=Te(t,!1,"fixed"===e);return i.top=i.top+t.clientTop,i.left=i.left+t.clientLeft,i.bottom=i.top+t.clientHeight,i.right=i.left+t.clientWidth,i.width=t.clientWidth,i.height=t.clientHeight,i.x=i.left,i.y=i.top,i}(e,i):Ze(function(t){var e,i=Le(t),n=Xe(t),s=null==(e=t.ownerDocument)?void 0:e.body,o=ve(i.scrollWidth,i.clientWidth,s?s.scrollWidth:0,s?s.clientWidth:0),r=ve(i.scrollHeight,i.clientHeight,s?s.scrollHeight:0,s?s.clientHeight:0),a=-n.scrollLeft+Ye(t),l=-n.scrollTop;return"rtl"===xe(s||i).direction&&(a+=ve(i.clientWidth,s?s.clientWidth:0)-o),{width:o,height:r,x:a,y:l}}(Le(t)))}function ei(t){var e,i=t.reference,n=t.element,s=t.placement,o=s?be(s):null,r=s?Fe(s):null,a=i.x+i.width/2-n.width/2,l=i.y+i.height/2-n.height/2;switch(o){case zt:e={x:a,y:i.y-n.height};break;case Rt:e={x:a,y:i.y+i.height};break;case qt:e={x:i.x+i.width,y:l};break;case Vt:e={x:i.x-n.width,y:l};break;default:e={x:i.x,y:i.y}}var c=o?Ie(o):null;if(null!=c){var h="y"===c?"height":"width";switch(r){case Xt:e[c]=e[c]-(i[h]/2-n[h]/2);break;case Yt:e[c]=e[c]+(i[h]/2-n[h]/2)}}return e}function ii(t,e){void 0===e&&(e={});var i=e,n=i.placement,s=void 0===n?t.placement:n,o=i.strategy,r=void 0===o?t.strategy:o,a=i.boundary,l=void 0===a?Ut:a,c=i.rootBoundary,h=void 0===c?Gt:c,d=i.elementContext,u=void 0===d?Jt:d,f=i.altBoundary,p=void 0!==f&&f,m=i.padding,g=void 0===m?0:m,_=Pe("number"!=typeof g?g:Me(g,Qt)),b=u===Jt?Zt:Jt,v=t.rects.popper,y=t.elements[p?b:u],w=function(t,e,i,n){var s="clippingParents"===e?function(t){var e=Je(Se(t)),i=["absolute","fixed"].indexOf(xe(t).position)>=0&&me(t)?$e(t):t;return pe(i)?e.filter((function(t){return pe(t)&&Oe(t,i)&&"body"!==ue(t)})):[]}(t):[].concat(e),o=[].concat(s,[i]),r=o[0],a=o.reduce((function(e,i){var s=ti(t,i,n);return e.top=ve(s.top,e.top),e.right=ye(s.right,e.right),e.bottom=ye(s.bottom,e.bottom),e.left=ve(s.left,e.left),e}),ti(t,r,n));return a.width=a.right-a.left,a.height=a.bottom-a.top,a.x=a.left,a.y=a.top,a}(pe(y)?y:y.contextElement||Le(t.elements.popper),l,h,r),A=Te(t.elements.reference),E=ei({reference:A,element:v,strategy:"absolute",placement:s}),T=Ze(Object.assign({},v,E)),C=u===Jt?T:A,O={top:w.top-C.top+_.top,bottom:C.bottom-w.bottom+_.bottom,left:w.left-C.left+_.left,right:C.right-w.right+_.right},x=t.modifiersData.offset;if(u===Jt&&x){var k=x[s];Object.keys(O).forEach((function(t){var e=[qt,Rt].indexOf(t)>=0?1:-1,i=[zt,Rt].indexOf(t)>=0?"y":"x";O[t]+=k[i]*e}))}return O}function ni(t,e){void 0===e&&(e={});var i=e,n=i.placement,s=i.boundary,o=i.rootBoundary,r=i.padding,a=i.flipVariations,l=i.allowedAutoPlacements,c=void 0===l?ee:l,h=Fe(n),d=h?a?te:te.filter((function(t){return Fe(t)===h})):Qt,u=d.filter((function(t){return c.indexOf(t)>=0}));0===u.length&&(u=d);var f=u.reduce((function(e,i){return e[i]=ii(t,{placement:i,boundary:s,rootBoundary:o,padding:r})[be(i)],e}),{});return Object.keys(f).sort((function(t,e){return f[t]-f[e]}))}const si={name:"flip",enabled:!0,phase:"main",fn:function(t){var e=t.state,i=t.options,n=t.name;if(!e.modifiersData[n]._skip){for(var s=i.mainAxis,o=void 0===s||s,r=i.altAxis,a=void 0===r||r,l=i.fallbackPlacements,c=i.padding,h=i.boundary,d=i.rootBoundary,u=i.altBoundary,f=i.flipVariations,p=void 0===f||f,m=i.allowedAutoPlacements,g=e.options.placement,_=be(g),b=l||(_!==g&&p?function(t){if(be(t)===Kt)return[];var e=Ve(t);return[Qe(t),e,Qe(e)]}(g):[Ve(g)]),v=[g].concat(b).reduce((function(t,i){return t.concat(be(i)===Kt?ni(e,{placement:i,boundary:h,rootBoundary:d,padding:c,flipVariations:p,allowedAutoPlacements:m}):i)}),[]),y=e.rects.reference,w=e.rects.popper,A=new Map,E=!0,T=v[0],C=0;C=0,S=L?"width":"height",D=ii(e,{placement:O,boundary:h,rootBoundary:d,altBoundary:u,padding:c}),$=L?k?qt:Vt:k?Rt:zt;y[S]>w[S]&&($=Ve($));var I=Ve($),N=[];if(o&&N.push(D[x]<=0),a&&N.push(D[$]<=0,D[I]<=0),N.every((function(t){return t}))){T=O,E=!1;break}A.set(O,N)}if(E)for(var P=function(t){var e=v.find((function(e){var i=A.get(e);if(i)return i.slice(0,t).every((function(t){return t}))}));if(e)return T=e,"break"},M=p?3:1;M>0&&"break"!==P(M);M--);e.placement!==T&&(e.modifiersData[n]._skip=!0,e.placement=T,e.reset=!0)}},requiresIfExists:["offset"],data:{_skip:!1}};function oi(t,e,i){return void 0===i&&(i={x:0,y:0}),{top:t.top-e.height-i.y,right:t.right-e.width+i.x,bottom:t.bottom-e.height+i.y,left:t.left-e.width-i.x}}function ri(t){return[zt,qt,Rt,Vt].some((function(e){return t[e]>=0}))}const ai={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:function(t){var e=t.state,i=t.name,n=e.rects.reference,s=e.rects.popper,o=e.modifiersData.preventOverflow,r=ii(e,{elementContext:"reference"}),a=ii(e,{altBoundary:!0}),l=oi(r,n),c=oi(a,s,o),h=ri(l),d=ri(c);e.modifiersData[i]={referenceClippingOffsets:l,popperEscapeOffsets:c,isReferenceHidden:h,hasPopperEscaped:d},e.attributes.popper=Object.assign({},e.attributes.popper,{"data-popper-reference-hidden":h,"data-popper-escaped":d})}},li={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:function(t){var e=t.state,i=t.options,n=t.name,s=i.offset,o=void 0===s?[0,0]:s,r=ee.reduce((function(t,i){return t[i]=function(t,e,i){var n=be(t),s=[Vt,zt].indexOf(n)>=0?-1:1,o="function"==typeof i?i(Object.assign({},e,{placement:t})):i,r=o[0],a=o[1];return r=r||0,a=(a||0)*s,[Vt,qt].indexOf(n)>=0?{x:a,y:r}:{x:r,y:a}}(i,e.rects,o),t}),{}),a=r[e.placement],l=a.x,c=a.y;null!=e.modifiersData.popperOffsets&&(e.modifiersData.popperOffsets.x+=l,e.modifiersData.popperOffsets.y+=c),e.modifiersData[n]=r}},ci={name:"popperOffsets",enabled:!0,phase:"read",fn:function(t){var e=t.state,i=t.name;e.modifiersData[i]=ei({reference:e.rects.reference,element:e.rects.popper,strategy:"absolute",placement:e.placement})},data:{}},hi={name:"preventOverflow",enabled:!0,phase:"main",fn:function(t){var e=t.state,i=t.options,n=t.name,s=i.mainAxis,o=void 0===s||s,r=i.altAxis,a=void 0!==r&&r,l=i.boundary,c=i.rootBoundary,h=i.altBoundary,d=i.padding,u=i.tether,f=void 0===u||u,p=i.tetherOffset,m=void 0===p?0:p,g=ii(e,{boundary:l,rootBoundary:c,padding:d,altBoundary:h}),_=be(e.placement),b=Fe(e.placement),v=!b,y=Ie(_),w="x"===y?"y":"x",A=e.modifiersData.popperOffsets,E=e.rects.reference,T=e.rects.popper,C="function"==typeof m?m(Object.assign({},e.rects,{placement:e.placement})):m,O="number"==typeof C?{mainAxis:C,altAxis:C}:Object.assign({mainAxis:0,altAxis:0},C),x=e.modifiersData.offset?e.modifiersData.offset[e.placement]:null,k={x:0,y:0};if(A){if(o){var L,S="y"===y?zt:Vt,D="y"===y?Rt:qt,$="y"===y?"height":"width",I=A[y],N=I+g[S],P=I-g[D],M=f?-T[$]/2:0,j=b===Xt?E[$]:T[$],F=b===Xt?-T[$]:-E[$],H=e.elements.arrow,W=f&&H?Ce(H):{width:0,height:0},B=e.modifiersData["arrow#persistent"]?e.modifiersData["arrow#persistent"].padding:{top:0,right:0,bottom:0,left:0},z=B[S],R=B[D],q=Ne(0,E[$],W[$]),V=v?E[$]/2-M-q-z-O.mainAxis:j-q-z-O.mainAxis,K=v?-E[$]/2+M+q+R+O.mainAxis:F+q+R+O.mainAxis,Q=e.elements.arrow&&$e(e.elements.arrow),X=Q?"y"===y?Q.clientTop||0:Q.clientLeft||0:0,Y=null!=(L=null==x?void 0:x[y])?L:0,U=I+K-Y,G=Ne(f?ye(N,I+V-Y-X):N,I,f?ve(P,U):P);A[y]=G,k[y]=G-I}if(a){var J,Z="x"===y?zt:Vt,tt="x"===y?Rt:qt,et=A[w],it="y"===w?"height":"width",nt=et+g[Z],st=et-g[tt],ot=-1!==[zt,Vt].indexOf(_),rt=null!=(J=null==x?void 0:x[w])?J:0,at=ot?nt:et-E[it]-T[it]-rt+O.altAxis,lt=ot?et+E[it]+T[it]-rt-O.altAxis:st,ct=f&&ot?function(t,e,i){var n=Ne(t,e,i);return n>i?i:n}(at,et,lt):Ne(f?at:nt,et,f?lt:st);A[w]=ct,k[w]=ct-et}e.modifiersData[n]=k}},requiresIfExists:["offset"]};function di(t,e,i){void 0===i&&(i=!1);var n,s,o=me(e),r=me(e)&&function(t){var e=t.getBoundingClientRect(),i=we(e.width)/t.offsetWidth||1,n=we(e.height)/t.offsetHeight||1;return 1!==i||1!==n}(e),a=Le(e),l=Te(t,r,i),c={scrollLeft:0,scrollTop:0},h={x:0,y:0};return(o||!o&&!i)&&(("body"!==ue(e)||Ue(a))&&(c=(n=e)!==fe(n)&&me(n)?{scrollLeft:(s=n).scrollLeft,scrollTop:s.scrollTop}:Xe(n)),me(e)?((h=Te(e,!0)).x+=e.clientLeft,h.y+=e.clientTop):a&&(h.x=Ye(a))),{x:l.left+c.scrollLeft-h.x,y:l.top+c.scrollTop-h.y,width:l.width,height:l.height}}function ui(t){var e=new Map,i=new Set,n=[];function s(t){i.add(t.name),[].concat(t.requires||[],t.requiresIfExists||[]).forEach((function(t){if(!i.has(t)){var n=e.get(t);n&&s(n)}})),n.push(t)}return t.forEach((function(t){e.set(t.name,t)})),t.forEach((function(t){i.has(t.name)||s(t)})),n}var fi={placement:"bottom",modifiers:[],strategy:"absolute"};function pi(){for(var t=arguments.length,e=new Array(t),i=0;iNumber.parseInt(t,10))):"function"==typeof t?e=>t(e,this._element):t}_getPopperConfig(){const t={placement:this._getPlacement(),modifiers:[{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"offset",options:{offset:this._getOffset()}}]};return(this._inNavbar||"static"===this._config.display)&&(F.setDataAttribute(this._menu,"popper","static"),t.modifiers=[{name:"applyStyles",enabled:!1}]),{...t,...g(this._config.popperConfig,[t])}}_selectMenuItem({key:t,target:e}){const i=z.find(".dropdown-menu .dropdown-item:not(.disabled):not(:disabled)",this._menu).filter((t=>a(t)));i.length&&b(i,e,t===Ti,!i.includes(e)).focus()}static jQueryInterface(t){return this.each((function(){const e=qi.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}static clearMenus(t){if(2===t.button||"keyup"===t.type&&"Tab"!==t.key)return;const e=z.find(Ni);for(const i of e){const e=qi.getInstance(i);if(!e||!1===e._config.autoClose)continue;const n=t.composedPath(),s=n.includes(e._menu);if(n.includes(e._element)||"inside"===e._config.autoClose&&!s||"outside"===e._config.autoClose&&s)continue;if(e._menu.contains(t.target)&&("keyup"===t.type&&"Tab"===t.key||/input|select|option|textarea|form/i.test(t.target.tagName)))continue;const o={relatedTarget:e._element};"click"===t.type&&(o.clickEvent=t),e._completeHide(o)}}static dataApiKeydownHandler(t){const e=/input|textarea/i.test(t.target.tagName),i="Escape"===t.key,n=[Ei,Ti].includes(t.key);if(!n&&!i)return;if(e&&!i)return;t.preventDefault();const s=this.matches(Ii)?this:z.prev(this,Ii)[0]||z.next(this,Ii)[0]||z.findOne(Ii,t.delegateTarget.parentNode),o=qi.getOrCreateInstance(s);if(n)return t.stopPropagation(),o.show(),void o._selectMenuItem(t);o._isShown()&&(t.stopPropagation(),o.hide(),s.focus())}}N.on(document,Si,Ii,qi.dataApiKeydownHandler),N.on(document,Si,Pi,qi.dataApiKeydownHandler),N.on(document,Li,qi.clearMenus),N.on(document,Di,qi.clearMenus),N.on(document,Li,Ii,(function(t){t.preventDefault(),qi.getOrCreateInstance(this).toggle()})),m(qi);const Vi="backdrop",Ki="show",Qi=`mousedown.bs.${Vi}`,Xi={className:"modal-backdrop",clickCallback:null,isAnimated:!1,isVisible:!0,rootElement:"body"},Yi={className:"string",clickCallback:"(function|null)",isAnimated:"boolean",isVisible:"boolean",rootElement:"(element|string)"};class Ui extends H{constructor(t){super(),this._config=this._getConfig(t),this._isAppended=!1,this._element=null}static get Default(){return Xi}static get DefaultType(){return Yi}static get NAME(){return Vi}show(t){if(!this._config.isVisible)return void g(t);this._append();const e=this._getElement();this._config.isAnimated&&d(e),e.classList.add(Ki),this._emulateAnimation((()=>{g(t)}))}hide(t){this._config.isVisible?(this._getElement().classList.remove(Ki),this._emulateAnimation((()=>{this.dispose(),g(t)}))):g(t)}dispose(){this._isAppended&&(N.off(this._element,Qi),this._element.remove(),this._isAppended=!1)}_getElement(){if(!this._element){const t=document.createElement("div");t.className=this._config.className,this._config.isAnimated&&t.classList.add("fade"),this._element=t}return this._element}_configAfterMerge(t){return t.rootElement=r(t.rootElement),t}_append(){if(this._isAppended)return;const t=this._getElement();this._config.rootElement.append(t),N.on(t,Qi,(()=>{g(this._config.clickCallback)})),this._isAppended=!0}_emulateAnimation(t){_(t,this._getElement(),this._config.isAnimated)}}const Gi=".bs.focustrap",Ji=`focusin${Gi}`,Zi=`keydown.tab${Gi}`,tn="backward",en={autofocus:!0,trapElement:null},nn={autofocus:"boolean",trapElement:"element"};class sn extends H{constructor(t){super(),this._config=this._getConfig(t),this._isActive=!1,this._lastTabNavDirection=null}static get Default(){return en}static get DefaultType(){return nn}static get NAME(){return"focustrap"}activate(){this._isActive||(this._config.autofocus&&this._config.trapElement.focus(),N.off(document,Gi),N.on(document,Ji,(t=>this._handleFocusin(t))),N.on(document,Zi,(t=>this._handleKeydown(t))),this._isActive=!0)}deactivate(){this._isActive&&(this._isActive=!1,N.off(document,Gi))}_handleFocusin(t){const{trapElement:e}=this._config;if(t.target===document||t.target===e||e.contains(t.target))return;const i=z.focusableChildren(e);0===i.length?e.focus():this._lastTabNavDirection===tn?i[i.length-1].focus():i[0].focus()}_handleKeydown(t){"Tab"===t.key&&(this._lastTabNavDirection=t.shiftKey?tn:"forward")}}const on=".fixed-top, .fixed-bottom, .is-fixed, .sticky-top",rn=".sticky-top",an="padding-right",ln="margin-right";class cn{constructor(){this._element=document.body}getWidth(){const t=document.documentElement.clientWidth;return Math.abs(window.innerWidth-t)}hide(){const t=this.getWidth();this._disableOverFlow(),this._setElementAttributes(this._element,an,(e=>e+t)),this._setElementAttributes(on,an,(e=>e+t)),this._setElementAttributes(rn,ln,(e=>e-t))}reset(){this._resetElementAttributes(this._element,"overflow"),this._resetElementAttributes(this._element,an),this._resetElementAttributes(on,an),this._resetElementAttributes(rn,ln)}isOverflowing(){return this.getWidth()>0}_disableOverFlow(){this._saveInitialAttribute(this._element,"overflow"),this._element.style.overflow="hidden"}_setElementAttributes(t,e,i){const n=this.getWidth();this._applyManipulationCallback(t,(t=>{if(t!==this._element&&window.innerWidth>t.clientWidth+n)return;this._saveInitialAttribute(t,e);const s=window.getComputedStyle(t).getPropertyValue(e);t.style.setProperty(e,`${i(Number.parseFloat(s))}px`)}))}_saveInitialAttribute(t,e){const i=t.style.getPropertyValue(e);i&&F.setDataAttribute(t,e,i)}_resetElementAttributes(t,e){this._applyManipulationCallback(t,(t=>{const i=F.getDataAttribute(t,e);null!==i?(F.removeDataAttribute(t,e),t.style.setProperty(e,i)):t.style.removeProperty(e)}))}_applyManipulationCallback(t,e){if(o(t))e(t);else for(const i of z.find(t,this._element))e(i)}}const hn=".bs.modal",dn=`hide${hn}`,un=`hidePrevented${hn}`,fn=`hidden${hn}`,pn=`show${hn}`,mn=`shown${hn}`,gn=`resize${hn}`,_n=`click.dismiss${hn}`,bn=`mousedown.dismiss${hn}`,vn=`keydown.dismiss${hn}`,yn=`click${hn}.data-api`,wn="modal-open",An="show",En="modal-static",Tn={backdrop:!0,focus:!0,keyboard:!0},Cn={backdrop:"(boolean|string)",focus:"boolean",keyboard:"boolean"};class On extends W{constructor(t,e){super(t,e),this._dialog=z.findOne(".modal-dialog",this._element),this._backdrop=this._initializeBackDrop(),this._focustrap=this._initializeFocusTrap(),this._isShown=!1,this._isTransitioning=!1,this._scrollBar=new cn,this._addEventListeners()}static get Default(){return Tn}static get DefaultType(){return Cn}static get NAME(){return"modal"}toggle(t){return this._isShown?this.hide():this.show(t)}show(t){this._isShown||this._isTransitioning||N.trigger(this._element,pn,{relatedTarget:t}).defaultPrevented||(this._isShown=!0,this._isTransitioning=!0,this._scrollBar.hide(),document.body.classList.add(wn),this._adjustDialog(),this._backdrop.show((()=>this._showElement(t))))}hide(){this._isShown&&!this._isTransitioning&&(N.trigger(this._element,dn).defaultPrevented||(this._isShown=!1,this._isTransitioning=!0,this._focustrap.deactivate(),this._element.classList.remove(An),this._queueCallback((()=>this._hideModal()),this._element,this._isAnimated())))}dispose(){N.off(window,hn),N.off(this._dialog,hn),this._backdrop.dispose(),this._focustrap.deactivate(),super.dispose()}handleUpdate(){this._adjustDialog()}_initializeBackDrop(){return new Ui({isVisible:Boolean(this._config.backdrop),isAnimated:this._isAnimated()})}_initializeFocusTrap(){return new sn({trapElement:this._element})}_showElement(t){document.body.contains(this._element)||document.body.append(this._element),this._element.style.display="block",this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.scrollTop=0;const e=z.findOne(".modal-body",this._dialog);e&&(e.scrollTop=0),d(this._element),this._element.classList.add(An),this._queueCallback((()=>{this._config.focus&&this._focustrap.activate(),this._isTransitioning=!1,N.trigger(this._element,mn,{relatedTarget:t})}),this._dialog,this._isAnimated())}_addEventListeners(){N.on(this._element,vn,(t=>{"Escape"===t.key&&(this._config.keyboard?this.hide():this._triggerBackdropTransition())})),N.on(window,gn,(()=>{this._isShown&&!this._isTransitioning&&this._adjustDialog()})),N.on(this._element,bn,(t=>{N.one(this._element,_n,(e=>{this._element===t.target&&this._element===e.target&&("static"!==this._config.backdrop?this._config.backdrop&&this.hide():this._triggerBackdropTransition())}))}))}_hideModal(){this._element.style.display="none",this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._isTransitioning=!1,this._backdrop.hide((()=>{document.body.classList.remove(wn),this._resetAdjustments(),this._scrollBar.reset(),N.trigger(this._element,fn)}))}_isAnimated(){return this._element.classList.contains("fade")}_triggerBackdropTransition(){if(N.trigger(this._element,un).defaultPrevented)return;const t=this._element.scrollHeight>document.documentElement.clientHeight,e=this._element.style.overflowY;"hidden"===e||this._element.classList.contains(En)||(t||(this._element.style.overflowY="hidden"),this._element.classList.add(En),this._queueCallback((()=>{this._element.classList.remove(En),this._queueCallback((()=>{this._element.style.overflowY=e}),this._dialog)}),this._dialog),this._element.focus())}_adjustDialog(){const t=this._element.scrollHeight>document.documentElement.clientHeight,e=this._scrollBar.getWidth(),i=e>0;if(i&&!t){const t=p()?"paddingLeft":"paddingRight";this._element.style[t]=`${e}px`}if(!i&&t){const t=p()?"paddingRight":"paddingLeft";this._element.style[t]=`${e}px`}}_resetAdjustments(){this._element.style.paddingLeft="",this._element.style.paddingRight=""}static jQueryInterface(t,e){return this.each((function(){const i=On.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===i[t])throw new TypeError(`No method named "${t}"`);i[t](e)}}))}}N.on(document,yn,'[data-bs-toggle="modal"]',(function(t){const e=z.getElementFromSelector(this);["A","AREA"].includes(this.tagName)&&t.preventDefault(),N.one(e,pn,(t=>{t.defaultPrevented||N.one(e,fn,(()=>{a(this)&&this.focus()}))}));const i=z.findOne(".modal.show");i&&On.getInstance(i).hide(),On.getOrCreateInstance(e).toggle(this)})),R(On),m(On);const xn=".bs.offcanvas",kn=".data-api",Ln=`load${xn}${kn}`,Sn="show",Dn="showing",$n="hiding",In=".offcanvas.show",Nn=`show${xn}`,Pn=`shown${xn}`,Mn=`hide${xn}`,jn=`hidePrevented${xn}`,Fn=`hidden${xn}`,Hn=`resize${xn}`,Wn=`click${xn}${kn}`,Bn=`keydown.dismiss${xn}`,zn={backdrop:!0,keyboard:!0,scroll:!1},Rn={backdrop:"(boolean|string)",keyboard:"boolean",scroll:"boolean"};class qn extends W{constructor(t,e){super(t,e),this._isShown=!1,this._backdrop=this._initializeBackDrop(),this._focustrap=this._initializeFocusTrap(),this._addEventListeners()}static get Default(){return zn}static get DefaultType(){return Rn}static get NAME(){return"offcanvas"}toggle(t){return this._isShown?this.hide():this.show(t)}show(t){this._isShown||N.trigger(this._element,Nn,{relatedTarget:t}).defaultPrevented||(this._isShown=!0,this._backdrop.show(),this._config.scroll||(new cn).hide(),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.classList.add(Dn),this._queueCallback((()=>{this._config.scroll&&!this._config.backdrop||this._focustrap.activate(),this._element.classList.add(Sn),this._element.classList.remove(Dn),N.trigger(this._element,Pn,{relatedTarget:t})}),this._element,!0))}hide(){this._isShown&&(N.trigger(this._element,Mn).defaultPrevented||(this._focustrap.deactivate(),this._element.blur(),this._isShown=!1,this._element.classList.add($n),this._backdrop.hide(),this._queueCallback((()=>{this._element.classList.remove(Sn,$n),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._config.scroll||(new cn).reset(),N.trigger(this._element,Fn)}),this._element,!0)))}dispose(){this._backdrop.dispose(),this._focustrap.deactivate(),super.dispose()}_initializeBackDrop(){const t=Boolean(this._config.backdrop);return new Ui({className:"offcanvas-backdrop",isVisible:t,isAnimated:!0,rootElement:this._element.parentNode,clickCallback:t?()=>{"static"!==this._config.backdrop?this.hide():N.trigger(this._element,jn)}:null})}_initializeFocusTrap(){return new sn({trapElement:this._element})}_addEventListeners(){N.on(this._element,Bn,(t=>{"Escape"===t.key&&(this._config.keyboard?this.hide():N.trigger(this._element,jn))}))}static jQueryInterface(t){return this.each((function(){const e=qn.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}N.on(document,Wn,'[data-bs-toggle="offcanvas"]',(function(t){const e=z.getElementFromSelector(this);if(["A","AREA"].includes(this.tagName)&&t.preventDefault(),l(this))return;N.one(e,Fn,(()=>{a(this)&&this.focus()}));const i=z.findOne(In);i&&i!==e&&qn.getInstance(i).hide(),qn.getOrCreateInstance(e).toggle(this)})),N.on(window,Ln,(()=>{for(const t of z.find(In))qn.getOrCreateInstance(t).show()})),N.on(window,Hn,(()=>{for(const t of z.find("[aria-modal][class*=show][class*=offcanvas-]"))"fixed"!==getComputedStyle(t).position&&qn.getOrCreateInstance(t).hide()})),R(qn),m(qn);const Vn={"*":["class","dir","id","lang","role",/^aria-[\w-]*$/i],a:["target","href","title","rel"],area:[],b:[],br:[],col:[],code:[],div:[],em:[],hr:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],i:[],img:["src","srcset","alt","title","width","height"],li:[],ol:[],p:[],pre:[],s:[],small:[],span:[],sub:[],sup:[],strong:[],u:[],ul:[]},Kn=new Set(["background","cite","href","itemtype","longdesc","poster","src","xlink:href"]),Qn=/^(?!javascript:)(?:[a-z0-9+.-]+:|[^&:/?#]*(?:[/?#]|$))/i,Xn=(t,e)=>{const i=t.nodeName.toLowerCase();return e.includes(i)?!Kn.has(i)||Boolean(Qn.test(t.nodeValue)):e.filter((t=>t instanceof RegExp)).some((t=>t.test(i)))},Yn={allowList:Vn,content:{},extraClass:"",html:!1,sanitize:!0,sanitizeFn:null,template:"
"},Un={allowList:"object",content:"object",extraClass:"(string|function)",html:"boolean",sanitize:"boolean",sanitizeFn:"(null|function)",template:"string"},Gn={entry:"(string|element|function|null)",selector:"(string|element)"};class Jn extends H{constructor(t){super(),this._config=this._getConfig(t)}static get Default(){return Yn}static get DefaultType(){return Un}static get NAME(){return"TemplateFactory"}getContent(){return Object.values(this._config.content).map((t=>this._resolvePossibleFunction(t))).filter(Boolean)}hasContent(){return this.getContent().length>0}changeContent(t){return this._checkContent(t),this._config.content={...this._config.content,...t},this}toHtml(){const t=document.createElement("div");t.innerHTML=this._maybeSanitize(this._config.template);for(const[e,i]of Object.entries(this._config.content))this._setContent(t,i,e);const e=t.children[0],i=this._resolvePossibleFunction(this._config.extraClass);return i&&e.classList.add(...i.split(" ")),e}_typeCheckConfig(t){super._typeCheckConfig(t),this._checkContent(t.content)}_checkContent(t){for(const[e,i]of Object.entries(t))super._typeCheckConfig({selector:e,entry:i},Gn)}_setContent(t,e,i){const n=z.findOne(i,t);n&&((e=this._resolvePossibleFunction(e))?o(e)?this._putElementInTemplate(r(e),n):this._config.html?n.innerHTML=this._maybeSanitize(e):n.textContent=e:n.remove())}_maybeSanitize(t){return this._config.sanitize?function(t,e,i){if(!t.length)return t;if(i&&"function"==typeof i)return i(t);const n=(new window.DOMParser).parseFromString(t,"text/html"),s=[].concat(...n.body.querySelectorAll("*"));for(const t of s){const i=t.nodeName.toLowerCase();if(!Object.keys(e).includes(i)){t.remove();continue}const n=[].concat(...t.attributes),s=[].concat(e["*"]||[],e[i]||[]);for(const e of n)Xn(e,s)||t.removeAttribute(e.nodeName)}return n.body.innerHTML}(t,this._config.allowList,this._config.sanitizeFn):t}_resolvePossibleFunction(t){return g(t,[this])}_putElementInTemplate(t,e){if(this._config.html)return e.innerHTML="",void e.append(t);e.textContent=t.textContent}}const Zn=new Set(["sanitize","allowList","sanitizeFn"]),ts="fade",es="show",is=".modal",ns="hide.bs.modal",ss="hover",os="focus",rs={AUTO:"auto",TOP:"top",RIGHT:p()?"left":"right",BOTTOM:"bottom",LEFT:p()?"right":"left"},as={allowList:Vn,animation:!0,boundary:"clippingParents",container:!1,customClass:"",delay:0,fallbackPlacements:["top","right","bottom","left"],html:!1,offset:[0,6],placement:"top",popperConfig:null,sanitize:!0,sanitizeFn:null,selector:!1,template:'',title:"",trigger:"hover focus"},ls={allowList:"object",animation:"boolean",boundary:"(string|element)",container:"(string|element|boolean)",customClass:"(string|function)",delay:"(number|object)",fallbackPlacements:"array",html:"boolean",offset:"(array|string|function)",placement:"(string|function)",popperConfig:"(null|object|function)",sanitize:"boolean",sanitizeFn:"(null|function)",selector:"(string|boolean)",template:"string",title:"(string|element|function)",trigger:"string"};class cs extends W{constructor(t,e){if(void 0===vi)throw new TypeError("Bootstrap's tooltips require Popper (https://popper.js.org)");super(t,e),this._isEnabled=!0,this._timeout=0,this._isHovered=null,this._activeTrigger={},this._popper=null,this._templateFactory=null,this._newContent=null,this.tip=null,this._setListeners(),this._config.selector||this._fixTitle()}static get Default(){return as}static get DefaultType(){return ls}static get NAME(){return"tooltip"}enable(){this._isEnabled=!0}disable(){this._isEnabled=!1}toggleEnabled(){this._isEnabled=!this._isEnabled}toggle(){this._isEnabled&&(this._activeTrigger.click=!this._activeTrigger.click,this._isShown()?this._leave():this._enter())}dispose(){clearTimeout(this._timeout),N.off(this._element.closest(is),ns,this._hideModalHandler),this._element.getAttribute("data-bs-original-title")&&this._element.setAttribute("title",this._element.getAttribute("data-bs-original-title")),this._disposePopper(),super.dispose()}show(){if("none"===this._element.style.display)throw new Error("Please use show on visible elements");if(!this._isWithContent()||!this._isEnabled)return;const t=N.trigger(this._element,this.constructor.eventName("show")),e=(c(this._element)||this._element.ownerDocument.documentElement).contains(this._element);if(t.defaultPrevented||!e)return;this._disposePopper();const i=this._getTipElement();this._element.setAttribute("aria-describedby",i.getAttribute("id"));const{container:n}=this._config;if(this._element.ownerDocument.documentElement.contains(this.tip)||(n.append(i),N.trigger(this._element,this.constructor.eventName("inserted"))),this._popper=this._createPopper(i),i.classList.add(es),"ontouchstart"in document.documentElement)for(const t of[].concat(...document.body.children))N.on(t,"mouseover",h);this._queueCallback((()=>{N.trigger(this._element,this.constructor.eventName("shown")),!1===this._isHovered&&this._leave(),this._isHovered=!1}),this.tip,this._isAnimated())}hide(){if(this._isShown()&&!N.trigger(this._element,this.constructor.eventName("hide")).defaultPrevented){if(this._getTipElement().classList.remove(es),"ontouchstart"in document.documentElement)for(const t of[].concat(...document.body.children))N.off(t,"mouseover",h);this._activeTrigger.click=!1,this._activeTrigger[os]=!1,this._activeTrigger[ss]=!1,this._isHovered=null,this._queueCallback((()=>{this._isWithActiveTrigger()||(this._isHovered||this._disposePopper(),this._element.removeAttribute("aria-describedby"),N.trigger(this._element,this.constructor.eventName("hidden")))}),this.tip,this._isAnimated())}}update(){this._popper&&this._popper.update()}_isWithContent(){return Boolean(this._getTitle())}_getTipElement(){return this.tip||(this.tip=this._createTipElement(this._newContent||this._getContentForTemplate())),this.tip}_createTipElement(t){const e=this._getTemplateFactory(t).toHtml();if(!e)return null;e.classList.remove(ts,es),e.classList.add(`bs-${this.constructor.NAME}-auto`);const i=(t=>{do{t+=Math.floor(1e6*Math.random())}while(document.getElementById(t));return t})(this.constructor.NAME).toString();return e.setAttribute("id",i),this._isAnimated()&&e.classList.add(ts),e}setContent(t){this._newContent=t,this._isShown()&&(this._disposePopper(),this.show())}_getTemplateFactory(t){return this._templateFactory?this._templateFactory.changeContent(t):this._templateFactory=new Jn({...this._config,content:t,extraClass:this._resolvePossibleFunction(this._config.customClass)}),this._templateFactory}_getContentForTemplate(){return{".tooltip-inner":this._getTitle()}}_getTitle(){return this._resolvePossibleFunction(this._config.title)||this._element.getAttribute("data-bs-original-title")}_initializeOnDelegatedTarget(t){return this.constructor.getOrCreateInstance(t.delegateTarget,this._getDelegateConfig())}_isAnimated(){return this._config.animation||this.tip&&this.tip.classList.contains(ts)}_isShown(){return this.tip&&this.tip.classList.contains(es)}_createPopper(t){const e=g(this._config.placement,[this,t,this._element]),i=rs[e.toUpperCase()];return bi(this._element,t,this._getPopperConfig(i))}_getOffset(){const{offset:t}=this._config;return"string"==typeof t?t.split(",").map((t=>Number.parseInt(t,10))):"function"==typeof t?e=>t(e,this._element):t}_resolvePossibleFunction(t){return g(t,[this._element])}_getPopperConfig(t){const e={placement:t,modifiers:[{name:"flip",options:{fallbackPlacements:this._config.fallbackPlacements}},{name:"offset",options:{offset:this._getOffset()}},{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"arrow",options:{element:`.${this.constructor.NAME}-arrow`}},{name:"preSetPlacement",enabled:!0,phase:"beforeMain",fn:t=>{this._getTipElement().setAttribute("data-popper-placement",t.state.placement)}}]};return{...e,...g(this._config.popperConfig,[e])}}_setListeners(){const t=this._config.trigger.split(" ");for(const e of t)if("click"===e)N.on(this._element,this.constructor.eventName("click"),this._config.selector,(t=>{this._initializeOnDelegatedTarget(t).toggle()}));else if("manual"!==e){const t=e===ss?this.constructor.eventName("mouseenter"):this.constructor.eventName("focusin"),i=e===ss?this.constructor.eventName("mouseleave"):this.constructor.eventName("focusout");N.on(this._element,t,this._config.selector,(t=>{const e=this._initializeOnDelegatedTarget(t);e._activeTrigger["focusin"===t.type?os:ss]=!0,e._enter()})),N.on(this._element,i,this._config.selector,(t=>{const e=this._initializeOnDelegatedTarget(t);e._activeTrigger["focusout"===t.type?os:ss]=e._element.contains(t.relatedTarget),e._leave()}))}this._hideModalHandler=()=>{this._element&&this.hide()},N.on(this._element.closest(is),ns,this._hideModalHandler)}_fixTitle(){const t=this._element.getAttribute("title");t&&(this._element.getAttribute("aria-label")||this._element.textContent.trim()||this._element.setAttribute("aria-label",t),this._element.setAttribute("data-bs-original-title",t),this._element.removeAttribute("title"))}_enter(){this._isShown()||this._isHovered?this._isHovered=!0:(this._isHovered=!0,this._setTimeout((()=>{this._isHovered&&this.show()}),this._config.delay.show))}_leave(){this._isWithActiveTrigger()||(this._isHovered=!1,this._setTimeout((()=>{this._isHovered||this.hide()}),this._config.delay.hide))}_setTimeout(t,e){clearTimeout(this._timeout),this._timeout=setTimeout(t,e)}_isWithActiveTrigger(){return Object.values(this._activeTrigger).includes(!0)}_getConfig(t){const e=F.getDataAttributes(this._element);for(const t of Object.keys(e))Zn.has(t)&&delete e[t];return t={...e,..."object"==typeof t&&t?t:{}},t=this._mergeConfigObj(t),t=this._configAfterMerge(t),this._typeCheckConfig(t),t}_configAfterMerge(t){return t.container=!1===t.container?document.body:r(t.container),"number"==typeof t.delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),t}_getDelegateConfig(){const t={};for(const[e,i]of Object.entries(this._config))this.constructor.Default[e]!==i&&(t[e]=i);return t.selector=!1,t.trigger="manual",t}_disposePopper(){this._popper&&(this._popper.destroy(),this._popper=null),this.tip&&(this.tip.remove(),this.tip=null)}static jQueryInterface(t){return this.each((function(){const e=cs.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}m(cs);const hs={...cs.Default,content:"",offset:[0,8],placement:"right",template:'',trigger:"click"},ds={...cs.DefaultType,content:"(null|string|element|function)"};class us extends cs{static get Default(){return hs}static get DefaultType(){return ds}static get NAME(){return"popover"}_isWithContent(){return this._getTitle()||this._getContent()}_getContentForTemplate(){return{".popover-header":this._getTitle(),".popover-body":this._getContent()}}_getContent(){return this._resolvePossibleFunction(this._config.content)}static jQueryInterface(t){return this.each((function(){const e=us.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}m(us);const fs=".bs.scrollspy",ps=`activate${fs}`,ms=`click${fs}`,gs=`load${fs}.data-api`,_s="active",bs="[href]",vs=".nav-link",ys=`${vs}, .nav-item > ${vs}, .list-group-item`,ws={offset:null,rootMargin:"0px 0px -25%",smoothScroll:!1,target:null,threshold:[.1,.5,1]},As={offset:"(number|null)",rootMargin:"string",smoothScroll:"boolean",target:"element",threshold:"array"};class Es extends W{constructor(t,e){super(t,e),this._targetLinks=new Map,this._observableSections=new Map,this._rootElement="visible"===getComputedStyle(this._element).overflowY?null:this._element,this._activeTarget=null,this._observer=null,this._previousScrollData={visibleEntryTop:0,parentScrollTop:0},this.refresh()}static get Default(){return ws}static get DefaultType(){return As}static get NAME(){return"scrollspy"}refresh(){this._initializeTargetsAndObservables(),this._maybeEnableSmoothScroll(),this._observer?this._observer.disconnect():this._observer=this._getNewObserver();for(const t of this._observableSections.values())this._observer.observe(t)}dispose(){this._observer.disconnect(),super.dispose()}_configAfterMerge(t){return t.target=r(t.target)||document.body,t.rootMargin=t.offset?`${t.offset}px 0px -30%`:t.rootMargin,"string"==typeof t.threshold&&(t.threshold=t.threshold.split(",").map((t=>Number.parseFloat(t)))),t}_maybeEnableSmoothScroll(){this._config.smoothScroll&&(N.off(this._config.target,ms),N.on(this._config.target,ms,bs,(t=>{const e=this._observableSections.get(t.target.hash);if(e){t.preventDefault();const i=this._rootElement||window,n=e.offsetTop-this._element.offsetTop;if(i.scrollTo)return void i.scrollTo({top:n,behavior:"smooth"});i.scrollTop=n}})))}_getNewObserver(){const t={root:this._rootElement,threshold:this._config.threshold,rootMargin:this._config.rootMargin};return new IntersectionObserver((t=>this._observerCallback(t)),t)}_observerCallback(t){const e=t=>this._targetLinks.get(`#${t.target.id}`),i=t=>{this._previousScrollData.visibleEntryTop=t.target.offsetTop,this._process(e(t))},n=(this._rootElement||document.documentElement).scrollTop,s=n>=this._previousScrollData.parentScrollTop;this._previousScrollData.parentScrollTop=n;for(const o of t){if(!o.isIntersecting){this._activeTarget=null,this._clearActiveClass(e(o));continue}const t=o.target.offsetTop>=this._previousScrollData.visibleEntryTop;if(s&&t){if(i(o),!n)return}else s||t||i(o)}}_initializeTargetsAndObservables(){this._targetLinks=new Map,this._observableSections=new Map;const t=z.find(bs,this._config.target);for(const e of t){if(!e.hash||l(e))continue;const t=z.findOne(decodeURI(e.hash),this._element);a(t)&&(this._targetLinks.set(decodeURI(e.hash),e),this._observableSections.set(e.hash,t))}}_process(t){this._activeTarget!==t&&(this._clearActiveClass(this._config.target),this._activeTarget=t,t.classList.add(_s),this._activateParents(t),N.trigger(this._element,ps,{relatedTarget:t}))}_activateParents(t){if(t.classList.contains("dropdown-item"))z.findOne(".dropdown-toggle",t.closest(".dropdown")).classList.add(_s);else for(const e of z.parents(t,".nav, .list-group"))for(const t of z.prev(e,ys))t.classList.add(_s)}_clearActiveClass(t){t.classList.remove(_s);const e=z.find(`${bs}.${_s}`,t);for(const t of e)t.classList.remove(_s)}static jQueryInterface(t){return this.each((function(){const e=Es.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t]()}}))}}N.on(window,gs,(()=>{for(const t of z.find('[data-bs-spy="scroll"]'))Es.getOrCreateInstance(t)})),m(Es);const Ts=".bs.tab",Cs=`hide${Ts}`,Os=`hidden${Ts}`,xs=`show${Ts}`,ks=`shown${Ts}`,Ls=`click${Ts}`,Ss=`keydown${Ts}`,Ds=`load${Ts}`,$s="ArrowLeft",Is="ArrowRight",Ns="ArrowUp",Ps="ArrowDown",Ms="Home",js="End",Fs="active",Hs="fade",Ws="show",Bs=":not(.dropdown-toggle)",zs='[data-bs-toggle="tab"], [data-bs-toggle="pill"], [data-bs-toggle="list"]',Rs=`.nav-link${Bs}, .list-group-item${Bs}, [role="tab"]${Bs}, ${zs}`,qs=`.${Fs}[data-bs-toggle="tab"], .${Fs}[data-bs-toggle="pill"], .${Fs}[data-bs-toggle="list"]`;class Vs extends W{constructor(t){super(t),this._parent=this._element.closest('.list-group, .nav, [role="tablist"]'),this._parent&&(this._setInitialAttributes(this._parent,this._getChildren()),N.on(this._element,Ss,(t=>this._keydown(t))))}static get NAME(){return"tab"}show(){const t=this._element;if(this._elemIsActive(t))return;const e=this._getActiveElem(),i=e?N.trigger(e,Cs,{relatedTarget:t}):null;N.trigger(t,xs,{relatedTarget:e}).defaultPrevented||i&&i.defaultPrevented||(this._deactivate(e,t),this._activate(t,e))}_activate(t,e){t&&(t.classList.add(Fs),this._activate(z.getElementFromSelector(t)),this._queueCallback((()=>{"tab"===t.getAttribute("role")?(t.removeAttribute("tabindex"),t.setAttribute("aria-selected",!0),this._toggleDropDown(t,!0),N.trigger(t,ks,{relatedTarget:e})):t.classList.add(Ws)}),t,t.classList.contains(Hs)))}_deactivate(t,e){t&&(t.classList.remove(Fs),t.blur(),this._deactivate(z.getElementFromSelector(t)),this._queueCallback((()=>{"tab"===t.getAttribute("role")?(t.setAttribute("aria-selected",!1),t.setAttribute("tabindex","-1"),this._toggleDropDown(t,!1),N.trigger(t,Os,{relatedTarget:e})):t.classList.remove(Ws)}),t,t.classList.contains(Hs)))}_keydown(t){if(![$s,Is,Ns,Ps,Ms,js].includes(t.key))return;t.stopPropagation(),t.preventDefault();const e=this._getChildren().filter((t=>!l(t)));let i;if([Ms,js].includes(t.key))i=e[t.key===Ms?0:e.length-1];else{const n=[Is,Ps].includes(t.key);i=b(e,t.target,n,!0)}i&&(i.focus({preventScroll:!0}),Vs.getOrCreateInstance(i).show())}_getChildren(){return z.find(Rs,this._parent)}_getActiveElem(){return this._getChildren().find((t=>this._elemIsActive(t)))||null}_setInitialAttributes(t,e){this._setAttributeIfNotExists(t,"role","tablist");for(const t of e)this._setInitialAttributesOnChild(t)}_setInitialAttributesOnChild(t){t=this._getInnerElement(t);const e=this._elemIsActive(t),i=this._getOuterElement(t);t.setAttribute("aria-selected",e),i!==t&&this._setAttributeIfNotExists(i,"role","presentation"),e||t.setAttribute("tabindex","-1"),this._setAttributeIfNotExists(t,"role","tab"),this._setInitialAttributesOnTargetPanel(t)}_setInitialAttributesOnTargetPanel(t){const e=z.getElementFromSelector(t);e&&(this._setAttributeIfNotExists(e,"role","tabpanel"),t.id&&this._setAttributeIfNotExists(e,"aria-labelledby",`${t.id}`))}_toggleDropDown(t,e){const i=this._getOuterElement(t);if(!i.classList.contains("dropdown"))return;const n=(t,n)=>{const s=z.findOne(t,i);s&&s.classList.toggle(n,e)};n(".dropdown-toggle",Fs),n(".dropdown-menu",Ws),i.setAttribute("aria-expanded",e)}_setAttributeIfNotExists(t,e,i){t.hasAttribute(e)||t.setAttribute(e,i)}_elemIsActive(t){return t.classList.contains(Fs)}_getInnerElement(t){return t.matches(Rs)?t:z.findOne(Rs,t)}_getOuterElement(t){return t.closest(".nav-item, .list-group-item")||t}static jQueryInterface(t){return this.each((function(){const e=Vs.getOrCreateInstance(this);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t]()}}))}}N.on(document,Ls,zs,(function(t){["A","AREA"].includes(this.tagName)&&t.preventDefault(),l(this)||Vs.getOrCreateInstance(this).show()})),N.on(window,Ds,(()=>{for(const t of z.find(qs))Vs.getOrCreateInstance(t)})),m(Vs);const Ks=".bs.toast",Qs=`mouseover${Ks}`,Xs=`mouseout${Ks}`,Ys=`focusin${Ks}`,Us=`focusout${Ks}`,Gs=`hide${Ks}`,Js=`hidden${Ks}`,Zs=`show${Ks}`,to=`shown${Ks}`,eo="hide",io="show",no="showing",so={animation:"boolean",autohide:"boolean",delay:"number"},oo={animation:!0,autohide:!0,delay:5e3};class ro extends W{constructor(t,e){super(t,e),this._timeout=null,this._hasMouseInteraction=!1,this._hasKeyboardInteraction=!1,this._setListeners()}static get Default(){return oo}static get DefaultType(){return so}static get NAME(){return"toast"}show(){N.trigger(this._element,Zs).defaultPrevented||(this._clearTimeout(),this._config.animation&&this._element.classList.add("fade"),this._element.classList.remove(eo),d(this._element),this._element.classList.add(io,no),this._queueCallback((()=>{this._element.classList.remove(no),N.trigger(this._element,to),this._maybeScheduleHide()}),this._element,this._config.animation))}hide(){this.isShown()&&(N.trigger(this._element,Gs).defaultPrevented||(this._element.classList.add(no),this._queueCallback((()=>{this._element.classList.add(eo),this._element.classList.remove(no,io),N.trigger(this._element,Js)}),this._element,this._config.animation)))}dispose(){this._clearTimeout(),this.isShown()&&this._element.classList.remove(io),super.dispose()}isShown(){return this._element.classList.contains(io)}_maybeScheduleHide(){this._config.autohide&&(this._hasMouseInteraction||this._hasKeyboardInteraction||(this._timeout=setTimeout((()=>{this.hide()}),this._config.delay)))}_onInteraction(t,e){switch(t.type){case"mouseover":case"mouseout":this._hasMouseInteraction=e;break;case"focusin":case"focusout":this._hasKeyboardInteraction=e}if(e)return void this._clearTimeout();const i=t.relatedTarget;this._element===i||this._element.contains(i)||this._maybeScheduleHide()}_setListeners(){N.on(this._element,Qs,(t=>this._onInteraction(t,!0))),N.on(this._element,Xs,(t=>this._onInteraction(t,!1))),N.on(this._element,Ys,(t=>this._onInteraction(t,!0))),N.on(this._element,Us,(t=>this._onInteraction(t,!1)))}_clearTimeout(){clearTimeout(this._timeout),this._timeout=null}static jQueryInterface(t){return this.each((function(){const e=ro.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}return R(ro),m(ro),{Alert:Q,Button:Y,Carousel:xt,Collapse:Bt,Dropdown:qi,Modal:On,Offcanvas:qn,Popover:us,ScrollSpy:Es,Tab:Vs,Toast:ro,Tooltip:cs}})); //# sourceMappingURL=bootstrap.bundle.min.js.map \ No newline at end of file diff --git a/site_libs/quarto-html/anchor.min.js b/site_libs/quarto-html/anchor.min.js index 1c2b86f..5ac814d 100644 --- a/site_libs/quarto-html/anchor.min.js +++ b/site_libs/quarto-html/anchor.min.js @@ -1,9 +1,9 @@ // @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt Expat // -// AnchorJS - v4.3.1 - 2021-04-17 +// AnchorJS - v5.0.0 - 2023-01-18 // https://www.bryanbraun.com/anchorjs/ -// Copyright (c) 2021 Bryan Braun; Licensed MIT +// Copyright (c) 2023 Bryan Braun; Licensed MIT // // @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt Expat -!function(A,e){"use strict";"function"==typeof define&&define.amd?define([],e):"object"==typeof module&&module.exports?module.exports=e():(A.AnchorJS=e(),A.anchors=new A.AnchorJS)}(this,function(){"use strict";return function(A){function d(A){A.icon=Object.prototype.hasOwnProperty.call(A,"icon")?A.icon:"",A.visible=Object.prototype.hasOwnProperty.call(A,"visible")?A.visible:"hover",A.placement=Object.prototype.hasOwnProperty.call(A,"placement")?A.placement:"right",A.ariaLabel=Object.prototype.hasOwnProperty.call(A,"ariaLabel")?A.ariaLabel:"Anchor",A.class=Object.prototype.hasOwnProperty.call(A,"class")?A.class:"",A.base=Object.prototype.hasOwnProperty.call(A,"base")?A.base:"",A.truncate=Object.prototype.hasOwnProperty.call(A,"truncate")?Math.floor(A.truncate):64,A.titleText=Object.prototype.hasOwnProperty.call(A,"titleText")?A.titleText:""}function w(A){var e;if("string"==typeof A||A instanceof String)e=[].slice.call(document.querySelectorAll(A));else{if(!(Array.isArray(A)||A instanceof NodeList))throw new TypeError("The selector provided to AnchorJS was invalid.");e=[].slice.call(A)}return e}this.options=A||{},this.elements=[],d(this.options),this.isTouchDevice=function(){return Boolean("ontouchstart"in window||window.TouchEvent||window.DocumentTouch&&document instanceof DocumentTouch)},this.add=function(A){var e,t,o,i,n,s,a,c,r,l,h,u,p=[];if(d(this.options),"touch"===(l=this.options.visible)&&(l=this.isTouchDevice()?"always":"hover"),0===(e=w(A=A||"h2, h3, h4, h5, h6")).length)return this;for(null===document.head.querySelector("style.anchorjs")&&((u=document.createElement("style")).className="anchorjs",u.appendChild(document.createTextNode("")),void 0===(A=document.head.querySelector('[rel="stylesheet"],style'))?document.head.appendChild(u):document.head.insertBefore(u,A),u.sheet.insertRule(".anchorjs-link{opacity:0;text-decoration:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}",u.sheet.cssRules.length),u.sheet.insertRule(":hover>.anchorjs-link,.anchorjs-link:focus{opacity:1}",u.sheet.cssRules.length),u.sheet.insertRule("[data-anchorjs-icon]::after{content:attr(data-anchorjs-icon)}",u.sheet.cssRules.length),u.sheet.insertRule('@font-face{font-family:anchorjs-icons;src:url(data:n/a;base64,AAEAAAALAIAAAwAwT1MvMg8yG2cAAAE4AAAAYGNtYXDp3gC3AAABpAAAAExnYXNwAAAAEAAAA9wAAAAIZ2x5ZlQCcfwAAAH4AAABCGhlYWQHFvHyAAAAvAAAADZoaGVhBnACFwAAAPQAAAAkaG10eASAADEAAAGYAAAADGxvY2EACACEAAAB8AAAAAhtYXhwAAYAVwAAARgAAAAgbmFtZQGOH9cAAAMAAAAAunBvc3QAAwAAAAADvAAAACAAAQAAAAEAAHzE2p9fDzz1AAkEAAAAAADRecUWAAAAANQA6R8AAAAAAoACwAAAAAgAAgAAAAAAAAABAAADwP/AAAACgAAA/9MCrQABAAAAAAAAAAAAAAAAAAAAAwABAAAAAwBVAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAMCQAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAg//0DwP/AAEADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAAIAAAACgAAxAAAAAwAAAAMAAAAcAAEAAwAAABwAAwABAAAAHAAEADAAAAAIAAgAAgAAACDpy//9//8AAAAg6cv//f///+EWNwADAAEAAAAAAAAAAAAAAAAACACEAAEAAAAAAAAAAAAAAAAxAAACAAQARAKAAsAAKwBUAAABIiYnJjQ3NzY2MzIWFxYUBwcGIicmNDc3NjQnJiYjIgYHBwYUFxYUBwYGIwciJicmNDc3NjIXFhQHBwYUFxYWMzI2Nzc2NCcmNDc2MhcWFAcHBgYjARQGDAUtLXoWOR8fORYtLTgKGwoKCjgaGg0gEhIgDXoaGgkJBQwHdR85Fi0tOAobCgoKOBoaDSASEiANehoaCQkKGwotLXoWOR8BMwUFLYEuehYXFxYugC44CQkKGwo4GkoaDQ0NDXoaShoKGwoFBe8XFi6ALjgJCQobCjgaShoNDQ0NehpKGgobCgoKLYEuehYXAAAADACWAAEAAAAAAAEACAAAAAEAAAAAAAIAAwAIAAEAAAAAAAMACAAAAAEAAAAAAAQACAAAAAEAAAAAAAUAAQALAAEAAAAAAAYACAAAAAMAAQQJAAEAEAAMAAMAAQQJAAIABgAcAAMAAQQJAAMAEAAMAAMAAQQJAAQAEAAMAAMAAQQJAAUAAgAiAAMAAQQJAAYAEAAMYW5jaG9yanM0MDBAAGEAbgBjAGgAbwByAGoAcwA0ADAAMABAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAH//wAP) format("truetype")}',u.sheet.cssRules.length)),u=document.querySelectorAll("[id]"),t=[].map.call(u,function(A){return A.id}),i=0;i\]./()*\\\n\t\b\v\u00A0]/g,"-").replace(/-{2,}/g,"-").substring(0,this.options.truncate).replace(/^-+|-+$/gm,"").toLowerCase()},this.hasAnchorJSLink=function(A){var e=A.firstChild&&-1<(" "+A.firstChild.className+" ").indexOf(" anchorjs-link "),A=A.lastChild&&-1<(" "+A.lastChild.className+" ").indexOf(" anchorjs-link ");return e||A||!1}}}); +!function(A,e){"use strict";"function"==typeof define&&define.amd?define([],e):"object"==typeof module&&module.exports?module.exports=e():(A.AnchorJS=e(),A.anchors=new A.AnchorJS)}(globalThis,function(){"use strict";return function(A){function u(A){A.icon=Object.prototype.hasOwnProperty.call(A,"icon")?A.icon:"",A.visible=Object.prototype.hasOwnProperty.call(A,"visible")?A.visible:"hover",A.placement=Object.prototype.hasOwnProperty.call(A,"placement")?A.placement:"right",A.ariaLabel=Object.prototype.hasOwnProperty.call(A,"ariaLabel")?A.ariaLabel:"Anchor",A.class=Object.prototype.hasOwnProperty.call(A,"class")?A.class:"",A.base=Object.prototype.hasOwnProperty.call(A,"base")?A.base:"",A.truncate=Object.prototype.hasOwnProperty.call(A,"truncate")?Math.floor(A.truncate):64,A.titleText=Object.prototype.hasOwnProperty.call(A,"titleText")?A.titleText:""}function d(A){var e;if("string"==typeof A||A instanceof String)e=[].slice.call(document.querySelectorAll(A));else{if(!(Array.isArray(A)||A instanceof NodeList))throw new TypeError("The selector provided to AnchorJS was invalid.");e=[].slice.call(A)}return e}this.options=A||{},this.elements=[],u(this.options),this.add=function(A){var e,t,o,i,n,s,a,r,l,c,h,p=[];if(u(this.options),0!==(e=d(A=A||"h2, h3, h4, h5, h6")).length){for(null===document.head.querySelector("style.anchorjs")&&((A=document.createElement("style")).className="anchorjs",A.appendChild(document.createTextNode("")),void 0===(h=document.head.querySelector('[rel="stylesheet"],style'))?document.head.appendChild(A):document.head.insertBefore(A,h),A.sheet.insertRule(".anchorjs-link{opacity:0;text-decoration:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}",A.sheet.cssRules.length),A.sheet.insertRule(":hover>.anchorjs-link,.anchorjs-link:focus{opacity:1}",A.sheet.cssRules.length),A.sheet.insertRule("[data-anchorjs-icon]::after{content:attr(data-anchorjs-icon)}",A.sheet.cssRules.length),A.sheet.insertRule('@font-face{font-family:anchorjs-icons;src:url(data:n/a;base64,AAEAAAALAIAAAwAwT1MvMg8yG2cAAAE4AAAAYGNtYXDp3gC3AAABpAAAAExnYXNwAAAAEAAAA9wAAAAIZ2x5ZlQCcfwAAAH4AAABCGhlYWQHFvHyAAAAvAAAADZoaGVhBnACFwAAAPQAAAAkaG10eASAADEAAAGYAAAADGxvY2EACACEAAAB8AAAAAhtYXhwAAYAVwAAARgAAAAgbmFtZQGOH9cAAAMAAAAAunBvc3QAAwAAAAADvAAAACAAAQAAAAEAAHzE2p9fDzz1AAkEAAAAAADRecUWAAAAANQA6R8AAAAAAoACwAAAAAgAAgAAAAAAAAABAAADwP/AAAACgAAA/9MCrQABAAAAAAAAAAAAAAAAAAAAAwABAAAAAwBVAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAMCQAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAg//0DwP/AAEADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAAIAAAACgAAxAAAAAwAAAAMAAAAcAAEAAwAAABwAAwABAAAAHAAEADAAAAAIAAgAAgAAACDpy//9//8AAAAg6cv//f///+EWNwADAAEAAAAAAAAAAAAAAAAACACEAAEAAAAAAAAAAAAAAAAxAAACAAQARAKAAsAAKwBUAAABIiYnJjQ3NzY2MzIWFxYUBwcGIicmNDc3NjQnJiYjIgYHBwYUFxYUBwYGIwciJicmNDc3NjIXFhQHBwYUFxYWMzI2Nzc2NCcmNDc2MhcWFAcHBgYjARQGDAUtLXoWOR8fORYtLTgKGwoKCjgaGg0gEhIgDXoaGgkJBQwHdR85Fi0tOAobCgoKOBoaDSASEiANehoaCQkKGwotLXoWOR8BMwUFLYEuehYXFxYugC44CQkKGwo4GkoaDQ0NDXoaShoKGwoFBe8XFi6ALjgJCQobCjgaShoNDQ0NehpKGgobCgoKLYEuehYXAAAADACWAAEAAAAAAAEACAAAAAEAAAAAAAIAAwAIAAEAAAAAAAMACAAAAAEAAAAAAAQACAAAAAEAAAAAAAUAAQALAAEAAAAAAAYACAAAAAMAAQQJAAEAEAAMAAMAAQQJAAIABgAcAAMAAQQJAAMAEAAMAAMAAQQJAAQAEAAMAAMAAQQJAAUAAgAiAAMAAQQJAAYAEAAMYW5jaG9yanM0MDBAAGEAbgBjAGgAbwByAGoAcwA0ADAAMABAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAH//wAP) format("truetype")}',A.sheet.cssRules.length)),h=document.querySelectorAll("[id]"),t=[].map.call(h,function(A){return A.id}),i=0;i\]./()*\\\n\t\b\v\u00A0]/g,"-").replace(/-{2,}/g,"-").substring(0,this.options.truncate).replace(/^-+|-+$/gm,"").toLowerCase()},this.hasAnchorJSLink=function(A){var e=A.firstChild&&-1<(" "+A.firstChild.className+" ").indexOf(" anchorjs-link "),A=A.lastChild&&-1<(" "+A.lastChild.className+" ").indexOf(" anchorjs-link ");return e||A||!1}}}); // @license-end \ No newline at end of file diff --git a/site_libs/quarto-html/popper.min.js b/site_libs/quarto-html/popper.min.js index 2269d66..e3726d7 100644 --- a/site_libs/quarto-html/popper.min.js +++ b/site_libs/quarto-html/popper.min.js @@ -1,6 +1,6 @@ /** - * @popperjs/core v2.11.4 - MIT License + * @popperjs/core v2.11.7 - MIT License */ -!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports):"function"==typeof define&&define.amd?define(["exports"],t):t((e="undefined"!=typeof globalThis?globalThis:e||self).Popper={})}(this,(function(e){"use strict";function t(e){if(null==e)return window;if("[object Window]"!==e.toString()){var t=e.ownerDocument;return t&&t.defaultView||window}return e}function n(e){return e instanceof t(e).Element||e instanceof Element}function r(e){return e instanceof t(e).HTMLElement||e instanceof HTMLElement}function o(e){return"undefined"!=typeof ShadowRoot&&(e instanceof t(e).ShadowRoot||e instanceof ShadowRoot)}var i=Math.max,a=Math.min,s=Math.round;function f(e,t){void 0===t&&(t=!1);var n=e.getBoundingClientRect(),o=1,i=1;if(r(e)&&t){var a=e.offsetHeight,f=e.offsetWidth;f>0&&(o=s(n.width)/f||1),a>0&&(i=s(n.height)/a||1)}return{width:n.width/o,height:n.height/i,top:n.top/i,right:n.right/o,bottom:n.bottom/i,left:n.left/o,x:n.left/o,y:n.top/i}}function c(e){var n=t(e);return{scrollLeft:n.pageXOffset,scrollTop:n.pageYOffset}}function p(e){return e?(e.nodeName||"").toLowerCase():null}function u(e){return((n(e)?e.ownerDocument:e.document)||window.document).documentElement}function l(e){return f(u(e)).left+c(e).scrollLeft}function d(e){return t(e).getComputedStyle(e)}function h(e){var t=d(e),n=t.overflow,r=t.overflowX,o=t.overflowY;return/auto|scroll|overlay|hidden/.test(n+o+r)}function m(e,n,o){void 0===o&&(o=!1);var i,a,d=r(n),m=r(n)&&function(e){var t=e.getBoundingClientRect(),n=s(t.width)/e.offsetWidth||1,r=s(t.height)/e.offsetHeight||1;return 1!==n||1!==r}(n),v=u(n),g=f(e,m),y={scrollLeft:0,scrollTop:0},b={x:0,y:0};return(d||!d&&!o)&&(("body"!==p(n)||h(v))&&(y=(i=n)!==t(i)&&r(i)?{scrollLeft:(a=i).scrollLeft,scrollTop:a.scrollTop}:c(i)),r(n)?((b=f(n,!0)).x+=n.clientLeft,b.y+=n.clientTop):v&&(b.x=l(v))),{x:g.left+y.scrollLeft-b.x,y:g.top+y.scrollTop-b.y,width:g.width,height:g.height}}function v(e){var t=f(e),n=e.offsetWidth,r=e.offsetHeight;return Math.abs(t.width-n)<=1&&(n=t.width),Math.abs(t.height-r)<=1&&(r=t.height),{x:e.offsetLeft,y:e.offsetTop,width:n,height:r}}function g(e){return"html"===p(e)?e:e.assignedSlot||e.parentNode||(o(e)?e.host:null)||u(e)}function y(e){return["html","body","#document"].indexOf(p(e))>=0?e.ownerDocument.body:r(e)&&h(e)?e:y(g(e))}function b(e,n){var r;void 0===n&&(n=[]);var o=y(e),i=o===(null==(r=e.ownerDocument)?void 0:r.body),a=t(o),s=i?[a].concat(a.visualViewport||[],h(o)?o:[]):o,f=n.concat(s);return i?f:f.concat(b(g(s)))}function x(e){return["table","td","th"].indexOf(p(e))>=0}function w(e){return r(e)&&"fixed"!==d(e).position?e.offsetParent:null}function O(e){for(var n=t(e),i=w(e);i&&x(i)&&"static"===d(i).position;)i=w(i);return i&&("html"===p(i)||"body"===p(i)&&"static"===d(i).position)?n:i||function(e){var t=-1!==navigator.userAgent.toLowerCase().indexOf("firefox");if(-1!==navigator.userAgent.indexOf("Trident")&&r(e)&&"fixed"===d(e).position)return null;var n=g(e);for(o(n)&&(n=n.host);r(n)&&["html","body"].indexOf(p(n))<0;){var i=d(n);if("none"!==i.transform||"none"!==i.perspective||"paint"===i.contain||-1!==["transform","perspective"].indexOf(i.willChange)||t&&"filter"===i.willChange||t&&i.filter&&"none"!==i.filter)return n;n=n.parentNode}return null}(e)||n}var j="top",E="bottom",D="right",A="left",L="auto",P=[j,E,D,A],M="start",k="end",W="viewport",B="popper",H=P.reduce((function(e,t){return e.concat([t+"-"+M,t+"-"+k])}),[]),T=[].concat(P,[L]).reduce((function(e,t){return e.concat([t,t+"-"+M,t+"-"+k])}),[]),R=["beforeRead","read","afterRead","beforeMain","main","afterMain","beforeWrite","write","afterWrite"];function S(e){var t=new Map,n=new Set,r=[];function o(e){n.add(e.name),[].concat(e.requires||[],e.requiresIfExists||[]).forEach((function(e){if(!n.has(e)){var r=t.get(e);r&&o(r)}})),r.push(e)}return e.forEach((function(e){t.set(e.name,e)})),e.forEach((function(e){n.has(e.name)||o(e)})),r}function C(e){return e.split("-")[0]}function q(e,t){var n=t.getRootNode&&t.getRootNode();if(e.contains(t))return!0;if(n&&o(n)){var r=t;do{if(r&&e.isSameNode(r))return!0;r=r.parentNode||r.host}while(r)}return!1}function V(e){return Object.assign({},e,{left:e.x,top:e.y,right:e.x+e.width,bottom:e.y+e.height})}function N(e,r){return r===W?V(function(e){var n=t(e),r=u(e),o=n.visualViewport,i=r.clientWidth,a=r.clientHeight,s=0,f=0;return o&&(i=o.width,a=o.height,/^((?!chrome|android).)*safari/i.test(navigator.userAgent)||(s=o.offsetLeft,f=o.offsetTop)),{width:i,height:a,x:s+l(e),y:f}}(e)):n(r)?function(e){var t=f(e);return t.top=t.top+e.clientTop,t.left=t.left+e.clientLeft,t.bottom=t.top+e.clientHeight,t.right=t.left+e.clientWidth,t.width=e.clientWidth,t.height=e.clientHeight,t.x=t.left,t.y=t.top,t}(r):V(function(e){var t,n=u(e),r=c(e),o=null==(t=e.ownerDocument)?void 0:t.body,a=i(n.scrollWidth,n.clientWidth,o?o.scrollWidth:0,o?o.clientWidth:0),s=i(n.scrollHeight,n.clientHeight,o?o.scrollHeight:0,o?o.clientHeight:0),f=-r.scrollLeft+l(e),p=-r.scrollTop;return"rtl"===d(o||n).direction&&(f+=i(n.clientWidth,o?o.clientWidth:0)-a),{width:a,height:s,x:f,y:p}}(u(e)))}function I(e,t,o){var s="clippingParents"===t?function(e){var t=b(g(e)),o=["absolute","fixed"].indexOf(d(e).position)>=0&&r(e)?O(e):e;return n(o)?t.filter((function(e){return n(e)&&q(e,o)&&"body"!==p(e)})):[]}(e):[].concat(t),f=[].concat(s,[o]),c=f[0],u=f.reduce((function(t,n){var r=N(e,n);return t.top=i(r.top,t.top),t.right=a(r.right,t.right),t.bottom=a(r.bottom,t.bottom),t.left=i(r.left,t.left),t}),N(e,c));return u.width=u.right-u.left,u.height=u.bottom-u.top,u.x=u.left,u.y=u.top,u}function _(e){return e.split("-")[1]}function F(e){return["top","bottom"].indexOf(e)>=0?"x":"y"}function U(e){var t,n=e.reference,r=e.element,o=e.placement,i=o?C(o):null,a=o?_(o):null,s=n.x+n.width/2-r.width/2,f=n.y+n.height/2-r.height/2;switch(i){case j:t={x:s,y:n.y-r.height};break;case E:t={x:s,y:n.y+n.height};break;case D:t={x:n.x+n.width,y:f};break;case A:t={x:n.x-r.width,y:f};break;default:t={x:n.x,y:n.y}}var c=i?F(i):null;if(null!=c){var p="y"===c?"height":"width";switch(a){case M:t[c]=t[c]-(n[p]/2-r[p]/2);break;case k:t[c]=t[c]+(n[p]/2-r[p]/2)}}return t}function z(e){return Object.assign({},{top:0,right:0,bottom:0,left:0},e)}function X(e,t){return t.reduce((function(t,n){return t[n]=e,t}),{})}function Y(e,t){void 0===t&&(t={});var r=t,o=r.placement,i=void 0===o?e.placement:o,a=r.boundary,s=void 0===a?"clippingParents":a,c=r.rootBoundary,p=void 0===c?W:c,l=r.elementContext,d=void 0===l?B:l,h=r.altBoundary,m=void 0!==h&&h,v=r.padding,g=void 0===v?0:v,y=z("number"!=typeof g?g:X(g,P)),b=d===B?"reference":B,x=e.rects.popper,w=e.elements[m?b:d],O=I(n(w)?w:w.contextElement||u(e.elements.popper),s,p),A=f(e.elements.reference),L=U({reference:A,element:x,strategy:"absolute",placement:i}),M=V(Object.assign({},x,L)),k=d===B?M:A,H={top:O.top-k.top+y.top,bottom:k.bottom-O.bottom+y.bottom,left:O.left-k.left+y.left,right:k.right-O.right+y.right},T=e.modifiersData.offset;if(d===B&&T){var R=T[i];Object.keys(H).forEach((function(e){var t=[D,E].indexOf(e)>=0?1:-1,n=[j,E].indexOf(e)>=0?"y":"x";H[e]+=R[n]*t}))}return H}var G={placement:"bottom",modifiers:[],strategy:"absolute"};function J(){for(var e=arguments.length,t=new Array(e),n=0;n=0?-1:1,i="function"==typeof n?n(Object.assign({},t,{placement:e})):n,a=i[0],s=i[1];return a=a||0,s=(s||0)*o,[A,D].indexOf(r)>=0?{x:s,y:a}:{x:a,y:s}}(n,t.rects,i),e}),{}),s=a[t.placement],f=s.x,c=s.y;null!=t.modifiersData.popperOffsets&&(t.modifiersData.popperOffsets.x+=f,t.modifiersData.popperOffsets.y+=c),t.modifiersData[r]=a}},ie={left:"right",right:"left",bottom:"top",top:"bottom"};function ae(e){return e.replace(/left|right|bottom|top/g,(function(e){return ie[e]}))}var se={start:"end",end:"start"};function fe(e){return e.replace(/start|end/g,(function(e){return se[e]}))}function ce(e,t){void 0===t&&(t={});var n=t,r=n.placement,o=n.boundary,i=n.rootBoundary,a=n.padding,s=n.flipVariations,f=n.allowedAutoPlacements,c=void 0===f?T:f,p=_(r),u=p?s?H:H.filter((function(e){return _(e)===p})):P,l=u.filter((function(e){return c.indexOf(e)>=0}));0===l.length&&(l=u);var d=l.reduce((function(t,n){return t[n]=Y(e,{placement:n,boundary:o,rootBoundary:i,padding:a})[C(n)],t}),{});return Object.keys(d).sort((function(e,t){return d[e]-d[t]}))}var pe={name:"flip",enabled:!0,phase:"main",fn:function(e){var t=e.state,n=e.options,r=e.name;if(!t.modifiersData[r]._skip){for(var o=n.mainAxis,i=void 0===o||o,a=n.altAxis,s=void 0===a||a,f=n.fallbackPlacements,c=n.padding,p=n.boundary,u=n.rootBoundary,l=n.altBoundary,d=n.flipVariations,h=void 0===d||d,m=n.allowedAutoPlacements,v=t.options.placement,g=C(v),y=f||(g===v||!h?[ae(v)]:function(e){if(C(e)===L)return[];var t=ae(e);return[fe(e),t,fe(t)]}(v)),b=[v].concat(y).reduce((function(e,n){return e.concat(C(n)===L?ce(t,{placement:n,boundary:p,rootBoundary:u,padding:c,flipVariations:h,allowedAutoPlacements:m}):n)}),[]),x=t.rects.reference,w=t.rects.popper,O=new Map,P=!0,k=b[0],W=0;W=0,S=R?"width":"height",q=Y(t,{placement:B,boundary:p,rootBoundary:u,altBoundary:l,padding:c}),V=R?T?D:A:T?E:j;x[S]>w[S]&&(V=ae(V));var N=ae(V),I=[];if(i&&I.push(q[H]<=0),s&&I.push(q[V]<=0,q[N]<=0),I.every((function(e){return e}))){k=B,P=!1;break}O.set(B,I)}if(P)for(var F=function(e){var t=b.find((function(t){var n=O.get(t);if(n)return n.slice(0,e).every((function(e){return e}))}));if(t)return k=t,"break"},U=h?3:1;U>0;U--){if("break"===F(U))break}t.placement!==k&&(t.modifiersData[r]._skip=!0,t.placement=k,t.reset=!0)}},requiresIfExists:["offset"],data:{_skip:!1}};function ue(e,t,n){return i(e,a(t,n))}var le={name:"preventOverflow",enabled:!0,phase:"main",fn:function(e){var t=e.state,n=e.options,r=e.name,o=n.mainAxis,s=void 0===o||o,f=n.altAxis,c=void 0!==f&&f,p=n.boundary,u=n.rootBoundary,l=n.altBoundary,d=n.padding,h=n.tether,m=void 0===h||h,g=n.tetherOffset,y=void 0===g?0:g,b=Y(t,{boundary:p,rootBoundary:u,padding:d,altBoundary:l}),x=C(t.placement),w=_(t.placement),L=!w,P=F(x),k="x"===P?"y":"x",W=t.modifiersData.popperOffsets,B=t.rects.reference,H=t.rects.popper,T="function"==typeof y?y(Object.assign({},t.rects,{placement:t.placement})):y,R="number"==typeof T?{mainAxis:T,altAxis:T}:Object.assign({mainAxis:0,altAxis:0},T),S=t.modifiersData.offset?t.modifiersData.offset[t.placement]:null,q={x:0,y:0};if(W){if(s){var V,N="y"===P?j:A,I="y"===P?E:D,U="y"===P?"height":"width",z=W[P],X=z+b[N],G=z-b[I],J=m?-H[U]/2:0,K=w===M?B[U]:H[U],Q=w===M?-H[U]:-B[U],Z=t.elements.arrow,$=m&&Z?v(Z):{width:0,height:0},ee=t.modifiersData["arrow#persistent"]?t.modifiersData["arrow#persistent"].padding:{top:0,right:0,bottom:0,left:0},te=ee[N],ne=ee[I],re=ue(0,B[U],$[U]),oe=L?B[U]/2-J-re-te-R.mainAxis:K-re-te-R.mainAxis,ie=L?-B[U]/2+J+re+ne+R.mainAxis:Q+re+ne+R.mainAxis,ae=t.elements.arrow&&O(t.elements.arrow),se=ae?"y"===P?ae.clientTop||0:ae.clientLeft||0:0,fe=null!=(V=null==S?void 0:S[P])?V:0,ce=z+ie-fe,pe=ue(m?a(X,z+oe-fe-se):X,z,m?i(G,ce):G);W[P]=pe,q[P]=pe-z}if(c){var le,de="x"===P?j:A,he="x"===P?E:D,me=W[k],ve="y"===k?"height":"width",ge=me+b[de],ye=me-b[he],be=-1!==[j,A].indexOf(x),xe=null!=(le=null==S?void 0:S[k])?le:0,we=be?ge:me-B[ve]-H[ve]-xe+R.altAxis,Oe=be?me+B[ve]+H[ve]-xe-R.altAxis:ye,je=m&&be?function(e,t,n){var r=ue(e,t,n);return r>n?n:r}(we,me,Oe):ue(m?we:ge,me,m?Oe:ye);W[k]=je,q[k]=je-me}t.modifiersData[r]=q}},requiresIfExists:["offset"]};var de={name:"arrow",enabled:!0,phase:"main",fn:function(e){var t,n=e.state,r=e.name,o=e.options,i=n.elements.arrow,a=n.modifiersData.popperOffsets,s=C(n.placement),f=F(s),c=[A,D].indexOf(s)>=0?"height":"width";if(i&&a){var p=function(e,t){return z("number"!=typeof(e="function"==typeof e?e(Object.assign({},t.rects,{placement:t.placement})):e)?e:X(e,P))}(o.padding,n),u=v(i),l="y"===f?j:A,d="y"===f?E:D,h=n.rects.reference[c]+n.rects.reference[f]-a[f]-n.rects.popper[c],m=a[f]-n.rects.reference[f],g=O(i),y=g?"y"===f?g.clientHeight||0:g.clientWidth||0:0,b=h/2-m/2,x=p[l],w=y-u[c]-p[d],L=y/2-u[c]/2+b,M=ue(x,L,w),k=f;n.modifiersData[r]=((t={})[k]=M,t.centerOffset=M-L,t)}},effect:function(e){var t=e.state,n=e.options.element,r=void 0===n?"[data-popper-arrow]":n;null!=r&&("string"!=typeof r||(r=t.elements.popper.querySelector(r)))&&q(t.elements.popper,r)&&(t.elements.arrow=r)},requires:["popperOffsets"],requiresIfExists:["preventOverflow"]};function he(e,t,n){return void 0===n&&(n={x:0,y:0}),{top:e.top-t.height-n.y,right:e.right-t.width+n.x,bottom:e.bottom-t.height+n.y,left:e.left-t.width-n.x}}function me(e){return[j,D,E,A].some((function(t){return e[t]>=0}))}var ve={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:function(e){var t=e.state,n=e.name,r=t.rects.reference,o=t.rects.popper,i=t.modifiersData.preventOverflow,a=Y(t,{elementContext:"reference"}),s=Y(t,{altBoundary:!0}),f=he(a,r),c=he(s,o,i),p=me(f),u=me(c);t.modifiersData[n]={referenceClippingOffsets:f,popperEscapeOffsets:c,isReferenceHidden:p,hasPopperEscaped:u},t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-reference-hidden":p,"data-popper-escaped":u})}},ge=K({defaultModifiers:[Z,$,ne,re]}),ye=[Z,$,ne,re,oe,pe,le,de,ve],be=K({defaultModifiers:ye});e.applyStyles=re,e.arrow=de,e.computeStyles=ne,e.createPopper=be,e.createPopperLite=ge,e.defaultModifiers=ye,e.detectOverflow=Y,e.eventListeners=Z,e.flip=pe,e.hide=ve,e.offset=oe,e.popperGenerator=K,e.popperOffsets=$,e.preventOverflow=le,Object.defineProperty(e,"__esModule",{value:!0})})); +!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports):"function"==typeof define&&define.amd?define(["exports"],t):t((e="undefined"!=typeof globalThis?globalThis:e||self).Popper={})}(this,(function(e){"use strict";function t(e){if(null==e)return window;if("[object Window]"!==e.toString()){var t=e.ownerDocument;return t&&t.defaultView||window}return e}function n(e){return e instanceof t(e).Element||e instanceof Element}function r(e){return e instanceof t(e).HTMLElement||e instanceof HTMLElement}function o(e){return"undefined"!=typeof ShadowRoot&&(e instanceof t(e).ShadowRoot||e instanceof ShadowRoot)}var i=Math.max,a=Math.min,s=Math.round;function f(){var e=navigator.userAgentData;return null!=e&&e.brands&&Array.isArray(e.brands)?e.brands.map((function(e){return e.brand+"/"+e.version})).join(" "):navigator.userAgent}function c(){return!/^((?!chrome|android).)*safari/i.test(f())}function p(e,o,i){void 0===o&&(o=!1),void 0===i&&(i=!1);var a=e.getBoundingClientRect(),f=1,p=1;o&&r(e)&&(f=e.offsetWidth>0&&s(a.width)/e.offsetWidth||1,p=e.offsetHeight>0&&s(a.height)/e.offsetHeight||1);var u=(n(e)?t(e):window).visualViewport,l=!c()&&i,d=(a.left+(l&&u?u.offsetLeft:0))/f,h=(a.top+(l&&u?u.offsetTop:0))/p,m=a.width/f,v=a.height/p;return{width:m,height:v,top:h,right:d+m,bottom:h+v,left:d,x:d,y:h}}function u(e){var n=t(e);return{scrollLeft:n.pageXOffset,scrollTop:n.pageYOffset}}function l(e){return e?(e.nodeName||"").toLowerCase():null}function d(e){return((n(e)?e.ownerDocument:e.document)||window.document).documentElement}function h(e){return p(d(e)).left+u(e).scrollLeft}function m(e){return t(e).getComputedStyle(e)}function v(e){var t=m(e),n=t.overflow,r=t.overflowX,o=t.overflowY;return/auto|scroll|overlay|hidden/.test(n+o+r)}function y(e,n,o){void 0===o&&(o=!1);var i,a,f=r(n),c=r(n)&&function(e){var t=e.getBoundingClientRect(),n=s(t.width)/e.offsetWidth||1,r=s(t.height)/e.offsetHeight||1;return 1!==n||1!==r}(n),m=d(n),y=p(e,c,o),g={scrollLeft:0,scrollTop:0},b={x:0,y:0};return(f||!f&&!o)&&(("body"!==l(n)||v(m))&&(g=(i=n)!==t(i)&&r(i)?{scrollLeft:(a=i).scrollLeft,scrollTop:a.scrollTop}:u(i)),r(n)?((b=p(n,!0)).x+=n.clientLeft,b.y+=n.clientTop):m&&(b.x=h(m))),{x:y.left+g.scrollLeft-b.x,y:y.top+g.scrollTop-b.y,width:y.width,height:y.height}}function g(e){var t=p(e),n=e.offsetWidth,r=e.offsetHeight;return Math.abs(t.width-n)<=1&&(n=t.width),Math.abs(t.height-r)<=1&&(r=t.height),{x:e.offsetLeft,y:e.offsetTop,width:n,height:r}}function b(e){return"html"===l(e)?e:e.assignedSlot||e.parentNode||(o(e)?e.host:null)||d(e)}function x(e){return["html","body","#document"].indexOf(l(e))>=0?e.ownerDocument.body:r(e)&&v(e)?e:x(b(e))}function w(e,n){var r;void 0===n&&(n=[]);var o=x(e),i=o===(null==(r=e.ownerDocument)?void 0:r.body),a=t(o),s=i?[a].concat(a.visualViewport||[],v(o)?o:[]):o,f=n.concat(s);return i?f:f.concat(w(b(s)))}function O(e){return["table","td","th"].indexOf(l(e))>=0}function j(e){return r(e)&&"fixed"!==m(e).position?e.offsetParent:null}function E(e){for(var n=t(e),i=j(e);i&&O(i)&&"static"===m(i).position;)i=j(i);return i&&("html"===l(i)||"body"===l(i)&&"static"===m(i).position)?n:i||function(e){var t=/firefox/i.test(f());if(/Trident/i.test(f())&&r(e)&&"fixed"===m(e).position)return null;var n=b(e);for(o(n)&&(n=n.host);r(n)&&["html","body"].indexOf(l(n))<0;){var i=m(n);if("none"!==i.transform||"none"!==i.perspective||"paint"===i.contain||-1!==["transform","perspective"].indexOf(i.willChange)||t&&"filter"===i.willChange||t&&i.filter&&"none"!==i.filter)return n;n=n.parentNode}return null}(e)||n}var D="top",A="bottom",L="right",P="left",M="auto",k=[D,A,L,P],W="start",B="end",H="viewport",T="popper",R=k.reduce((function(e,t){return e.concat([t+"-"+W,t+"-"+B])}),[]),S=[].concat(k,[M]).reduce((function(e,t){return e.concat([t,t+"-"+W,t+"-"+B])}),[]),V=["beforeRead","read","afterRead","beforeMain","main","afterMain","beforeWrite","write","afterWrite"];function q(e){var t=new Map,n=new Set,r=[];function o(e){n.add(e.name),[].concat(e.requires||[],e.requiresIfExists||[]).forEach((function(e){if(!n.has(e)){var r=t.get(e);r&&o(r)}})),r.push(e)}return e.forEach((function(e){t.set(e.name,e)})),e.forEach((function(e){n.has(e.name)||o(e)})),r}function C(e){return e.split("-")[0]}function N(e,t){var n=t.getRootNode&&t.getRootNode();if(e.contains(t))return!0;if(n&&o(n)){var r=t;do{if(r&&e.isSameNode(r))return!0;r=r.parentNode||r.host}while(r)}return!1}function I(e){return Object.assign({},e,{left:e.x,top:e.y,right:e.x+e.width,bottom:e.y+e.height})}function _(e,r,o){return r===H?I(function(e,n){var r=t(e),o=d(e),i=r.visualViewport,a=o.clientWidth,s=o.clientHeight,f=0,p=0;if(i){a=i.width,s=i.height;var u=c();(u||!u&&"fixed"===n)&&(f=i.offsetLeft,p=i.offsetTop)}return{width:a,height:s,x:f+h(e),y:p}}(e,o)):n(r)?function(e,t){var n=p(e,!1,"fixed"===t);return n.top=n.top+e.clientTop,n.left=n.left+e.clientLeft,n.bottom=n.top+e.clientHeight,n.right=n.left+e.clientWidth,n.width=e.clientWidth,n.height=e.clientHeight,n.x=n.left,n.y=n.top,n}(r,o):I(function(e){var t,n=d(e),r=u(e),o=null==(t=e.ownerDocument)?void 0:t.body,a=i(n.scrollWidth,n.clientWidth,o?o.scrollWidth:0,o?o.clientWidth:0),s=i(n.scrollHeight,n.clientHeight,o?o.scrollHeight:0,o?o.clientHeight:0),f=-r.scrollLeft+h(e),c=-r.scrollTop;return"rtl"===m(o||n).direction&&(f+=i(n.clientWidth,o?o.clientWidth:0)-a),{width:a,height:s,x:f,y:c}}(d(e)))}function F(e,t,o,s){var f="clippingParents"===t?function(e){var t=w(b(e)),o=["absolute","fixed"].indexOf(m(e).position)>=0&&r(e)?E(e):e;return n(o)?t.filter((function(e){return n(e)&&N(e,o)&&"body"!==l(e)})):[]}(e):[].concat(t),c=[].concat(f,[o]),p=c[0],u=c.reduce((function(t,n){var r=_(e,n,s);return t.top=i(r.top,t.top),t.right=a(r.right,t.right),t.bottom=a(r.bottom,t.bottom),t.left=i(r.left,t.left),t}),_(e,p,s));return u.width=u.right-u.left,u.height=u.bottom-u.top,u.x=u.left,u.y=u.top,u}function U(e){return e.split("-")[1]}function z(e){return["top","bottom"].indexOf(e)>=0?"x":"y"}function X(e){var t,n=e.reference,r=e.element,o=e.placement,i=o?C(o):null,a=o?U(o):null,s=n.x+n.width/2-r.width/2,f=n.y+n.height/2-r.height/2;switch(i){case D:t={x:s,y:n.y-r.height};break;case A:t={x:s,y:n.y+n.height};break;case L:t={x:n.x+n.width,y:f};break;case P:t={x:n.x-r.width,y:f};break;default:t={x:n.x,y:n.y}}var c=i?z(i):null;if(null!=c){var p="y"===c?"height":"width";switch(a){case W:t[c]=t[c]-(n[p]/2-r[p]/2);break;case B:t[c]=t[c]+(n[p]/2-r[p]/2)}}return t}function Y(e){return Object.assign({},{top:0,right:0,bottom:0,left:0},e)}function G(e,t){return t.reduce((function(t,n){return t[n]=e,t}),{})}function J(e,t){void 0===t&&(t={});var r=t,o=r.placement,i=void 0===o?e.placement:o,a=r.strategy,s=void 0===a?e.strategy:a,f=r.boundary,c=void 0===f?"clippingParents":f,u=r.rootBoundary,l=void 0===u?H:u,h=r.elementContext,m=void 0===h?T:h,v=r.altBoundary,y=void 0!==v&&v,g=r.padding,b=void 0===g?0:g,x=Y("number"!=typeof b?b:G(b,k)),w=m===T?"reference":T,O=e.rects.popper,j=e.elements[y?w:m],E=F(n(j)?j:j.contextElement||d(e.elements.popper),c,l,s),P=p(e.elements.reference),M=X({reference:P,element:O,strategy:"absolute",placement:i}),W=I(Object.assign({},O,M)),B=m===T?W:P,R={top:E.top-B.top+x.top,bottom:B.bottom-E.bottom+x.bottom,left:E.left-B.left+x.left,right:B.right-E.right+x.right},S=e.modifiersData.offset;if(m===T&&S){var V=S[i];Object.keys(R).forEach((function(e){var t=[L,A].indexOf(e)>=0?1:-1,n=[D,A].indexOf(e)>=0?"y":"x";R[e]+=V[n]*t}))}return R}var K={placement:"bottom",modifiers:[],strategy:"absolute"};function Q(){for(var e=arguments.length,t=new Array(e),n=0;n=0?-1:1,i="function"==typeof n?n(Object.assign({},t,{placement:e})):n,a=i[0],s=i[1];return a=a||0,s=(s||0)*o,[P,L].indexOf(r)>=0?{x:s,y:a}:{x:a,y:s}}(n,t.rects,i),e}),{}),s=a[t.placement],f=s.x,c=s.y;null!=t.modifiersData.popperOffsets&&(t.modifiersData.popperOffsets.x+=f,t.modifiersData.popperOffsets.y+=c),t.modifiersData[r]=a}},se={left:"right",right:"left",bottom:"top",top:"bottom"};function fe(e){return e.replace(/left|right|bottom|top/g,(function(e){return se[e]}))}var ce={start:"end",end:"start"};function pe(e){return e.replace(/start|end/g,(function(e){return ce[e]}))}function ue(e,t){void 0===t&&(t={});var n=t,r=n.placement,o=n.boundary,i=n.rootBoundary,a=n.padding,s=n.flipVariations,f=n.allowedAutoPlacements,c=void 0===f?S:f,p=U(r),u=p?s?R:R.filter((function(e){return U(e)===p})):k,l=u.filter((function(e){return c.indexOf(e)>=0}));0===l.length&&(l=u);var d=l.reduce((function(t,n){return t[n]=J(e,{placement:n,boundary:o,rootBoundary:i,padding:a})[C(n)],t}),{});return Object.keys(d).sort((function(e,t){return d[e]-d[t]}))}var le={name:"flip",enabled:!0,phase:"main",fn:function(e){var t=e.state,n=e.options,r=e.name;if(!t.modifiersData[r]._skip){for(var o=n.mainAxis,i=void 0===o||o,a=n.altAxis,s=void 0===a||a,f=n.fallbackPlacements,c=n.padding,p=n.boundary,u=n.rootBoundary,l=n.altBoundary,d=n.flipVariations,h=void 0===d||d,m=n.allowedAutoPlacements,v=t.options.placement,y=C(v),g=f||(y===v||!h?[fe(v)]:function(e){if(C(e)===M)return[];var t=fe(e);return[pe(e),t,pe(t)]}(v)),b=[v].concat(g).reduce((function(e,n){return e.concat(C(n)===M?ue(t,{placement:n,boundary:p,rootBoundary:u,padding:c,flipVariations:h,allowedAutoPlacements:m}):n)}),[]),x=t.rects.reference,w=t.rects.popper,O=new Map,j=!0,E=b[0],k=0;k=0,S=R?"width":"height",V=J(t,{placement:B,boundary:p,rootBoundary:u,altBoundary:l,padding:c}),q=R?T?L:P:T?A:D;x[S]>w[S]&&(q=fe(q));var N=fe(q),I=[];if(i&&I.push(V[H]<=0),s&&I.push(V[q]<=0,V[N]<=0),I.every((function(e){return e}))){E=B,j=!1;break}O.set(B,I)}if(j)for(var _=function(e){var t=b.find((function(t){var n=O.get(t);if(n)return n.slice(0,e).every((function(e){return e}))}));if(t)return E=t,"break"},F=h?3:1;F>0;F--){if("break"===_(F))break}t.placement!==E&&(t.modifiersData[r]._skip=!0,t.placement=E,t.reset=!0)}},requiresIfExists:["offset"],data:{_skip:!1}};function de(e,t,n){return i(e,a(t,n))}var he={name:"preventOverflow",enabled:!0,phase:"main",fn:function(e){var t=e.state,n=e.options,r=e.name,o=n.mainAxis,s=void 0===o||o,f=n.altAxis,c=void 0!==f&&f,p=n.boundary,u=n.rootBoundary,l=n.altBoundary,d=n.padding,h=n.tether,m=void 0===h||h,v=n.tetherOffset,y=void 0===v?0:v,b=J(t,{boundary:p,rootBoundary:u,padding:d,altBoundary:l}),x=C(t.placement),w=U(t.placement),O=!w,j=z(x),M="x"===j?"y":"x",k=t.modifiersData.popperOffsets,B=t.rects.reference,H=t.rects.popper,T="function"==typeof y?y(Object.assign({},t.rects,{placement:t.placement})):y,R="number"==typeof T?{mainAxis:T,altAxis:T}:Object.assign({mainAxis:0,altAxis:0},T),S=t.modifiersData.offset?t.modifiersData.offset[t.placement]:null,V={x:0,y:0};if(k){if(s){var q,N="y"===j?D:P,I="y"===j?A:L,_="y"===j?"height":"width",F=k[j],X=F+b[N],Y=F-b[I],G=m?-H[_]/2:0,K=w===W?B[_]:H[_],Q=w===W?-H[_]:-B[_],Z=t.elements.arrow,$=m&&Z?g(Z):{width:0,height:0},ee=t.modifiersData["arrow#persistent"]?t.modifiersData["arrow#persistent"].padding:{top:0,right:0,bottom:0,left:0},te=ee[N],ne=ee[I],re=de(0,B[_],$[_]),oe=O?B[_]/2-G-re-te-R.mainAxis:K-re-te-R.mainAxis,ie=O?-B[_]/2+G+re+ne+R.mainAxis:Q+re+ne+R.mainAxis,ae=t.elements.arrow&&E(t.elements.arrow),se=ae?"y"===j?ae.clientTop||0:ae.clientLeft||0:0,fe=null!=(q=null==S?void 0:S[j])?q:0,ce=F+ie-fe,pe=de(m?a(X,F+oe-fe-se):X,F,m?i(Y,ce):Y);k[j]=pe,V[j]=pe-F}if(c){var ue,le="x"===j?D:P,he="x"===j?A:L,me=k[M],ve="y"===M?"height":"width",ye=me+b[le],ge=me-b[he],be=-1!==[D,P].indexOf(x),xe=null!=(ue=null==S?void 0:S[M])?ue:0,we=be?ye:me-B[ve]-H[ve]-xe+R.altAxis,Oe=be?me+B[ve]+H[ve]-xe-R.altAxis:ge,je=m&&be?function(e,t,n){var r=de(e,t,n);return r>n?n:r}(we,me,Oe):de(m?we:ye,me,m?Oe:ge);k[M]=je,V[M]=je-me}t.modifiersData[r]=V}},requiresIfExists:["offset"]};var me={name:"arrow",enabled:!0,phase:"main",fn:function(e){var t,n=e.state,r=e.name,o=e.options,i=n.elements.arrow,a=n.modifiersData.popperOffsets,s=C(n.placement),f=z(s),c=[P,L].indexOf(s)>=0?"height":"width";if(i&&a){var p=function(e,t){return Y("number"!=typeof(e="function"==typeof e?e(Object.assign({},t.rects,{placement:t.placement})):e)?e:G(e,k))}(o.padding,n),u=g(i),l="y"===f?D:P,d="y"===f?A:L,h=n.rects.reference[c]+n.rects.reference[f]-a[f]-n.rects.popper[c],m=a[f]-n.rects.reference[f],v=E(i),y=v?"y"===f?v.clientHeight||0:v.clientWidth||0:0,b=h/2-m/2,x=p[l],w=y-u[c]-p[d],O=y/2-u[c]/2+b,j=de(x,O,w),M=f;n.modifiersData[r]=((t={})[M]=j,t.centerOffset=j-O,t)}},effect:function(e){var t=e.state,n=e.options.element,r=void 0===n?"[data-popper-arrow]":n;null!=r&&("string"!=typeof r||(r=t.elements.popper.querySelector(r)))&&N(t.elements.popper,r)&&(t.elements.arrow=r)},requires:["popperOffsets"],requiresIfExists:["preventOverflow"]};function ve(e,t,n){return void 0===n&&(n={x:0,y:0}),{top:e.top-t.height-n.y,right:e.right-t.width+n.x,bottom:e.bottom-t.height+n.y,left:e.left-t.width-n.x}}function ye(e){return[D,L,A,P].some((function(t){return e[t]>=0}))}var ge={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:function(e){var t=e.state,n=e.name,r=t.rects.reference,o=t.rects.popper,i=t.modifiersData.preventOverflow,a=J(t,{elementContext:"reference"}),s=J(t,{altBoundary:!0}),f=ve(a,r),c=ve(s,o,i),p=ye(f),u=ye(c);t.modifiersData[n]={referenceClippingOffsets:f,popperEscapeOffsets:c,isReferenceHidden:p,hasPopperEscaped:u},t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-reference-hidden":p,"data-popper-escaped":u})}},be=Z({defaultModifiers:[ee,te,oe,ie]}),xe=[ee,te,oe,ie,ae,le,he,me,ge],we=Z({defaultModifiers:xe});e.applyStyles=ie,e.arrow=me,e.computeStyles=oe,e.createPopper=we,e.createPopperLite=be,e.defaultModifiers=xe,e.detectOverflow=J,e.eventListeners=ee,e.flip=le,e.hide=ge,e.offset=ae,e.popperGenerator=Z,e.popperOffsets=te,e.preventOverflow=he,Object.defineProperty(e,"__esModule",{value:!0})})); diff --git a/site_libs/quarto-html/quarto.js b/site_libs/quarto-html/quarto.js index c3935c7..3ebd49c 100644 --- a/site_libs/quarto-html/quarto.js +++ b/site_libs/quarto-html/quarto.js @@ -9,7 +9,7 @@ const layoutMarginEls = () => { // Find any conflicting margin elements and add margins to the // top to prevent overlap const marginChildren = window.document.querySelectorAll( - ".column-margin.column-container > * " + ".column-margin.column-container > *, .margin-caption, .aside" ); let lastBottom = 0; @@ -18,25 +18,14 @@ const layoutMarginEls = () => { // clear the top margin so we recompute it marginChild.style.marginTop = null; const top = marginChild.getBoundingClientRect().top + window.scrollY; - console.log({ - childtop: marginChild.getBoundingClientRect().top, - scroll: window.scrollY, - top, - lastBottom, - }); if (top < lastBottom) { - const margin = lastBottom - top; + const marginChildStyle = window.getComputedStyle(marginChild); + const marginBottom = parseFloat(marginChildStyle["marginBottom"]); + const margin = lastBottom - top + marginBottom; marginChild.style.marginTop = `${margin}px`; } const styles = window.getComputedStyle(marginChild); const marginTop = parseFloat(styles["marginTop"]); - - console.log({ - top, - height: marginChild.getBoundingClientRect().height, - marginTop, - total: top + marginChild.getBoundingClientRect().height + marginTop, - }); lastBottom = top + marginChild.getBoundingClientRect().height + marginTop; } } @@ -46,7 +35,15 @@ window.document.addEventListener("DOMContentLoaded", function (_event) { // Recompute the position of margin elements anytime the body size changes if (window.ResizeObserver) { const resizeObserver = new window.ResizeObserver( - throttle(layoutMarginEls, 50) + throttle(() => { + layoutMarginEls(); + if ( + window.document.body.getBoundingClientRect().width < 990 && + isReaderMode() + ) { + quartoToggleReader(); + } + }, 50) ); resizeObserver.observe(window.document.body); } diff --git a/site_libs/quarto-nav/quarto-nav.js b/site_libs/quarto-nav/quarto-nav.js index 3b21201..ebfc262 100644 --- a/site_libs/quarto-nav/quarto-nav.js +++ b/site_libs/quarto-nav/quarto-nav.js @@ -85,6 +85,17 @@ window.document.addEventListener("DOMContentLoaded", function () { } } + function dashboardOffset() { + const dashboardNavEl = window.document.getElementById( + "quarto-dashboard-header" + ); + if (dashboardNavEl !== null) { + return dashboardNavEl.clientHeight; + } else { + return 0; + } + } + function updateDocumentOffsetWithoutAnimation() { updateDocumentOffset(false); } @@ -92,7 +103,7 @@ window.document.addEventListener("DOMContentLoaded", function () { function updateDocumentOffset(animated) { // set body offset const topOffset = headerOffset(); - const bodyOffset = topOffset + footerOffset(); + const bodyOffset = topOffset + footerOffset() + dashboardOffset(); const bodyEl = window.document.body; bodyEl.setAttribute("data-bs-offset", topOffset); bodyEl.style.paddingTop = topOffset + "px"; @@ -205,9 +216,9 @@ window.document.addEventListener("DOMContentLoaded", function () { // Observe size changed for the header const headerEl = window.document.querySelector("header.fixed-top"); if (headerEl && window.ResizeObserver) { - const observer = new window.ResizeObserver( - updateDocumentOffsetWithoutAnimation - ); + const observer = new window.ResizeObserver(() => { + setTimeout(updateDocumentOffsetWithoutAnimation, 0); + }); observer.observe(headerEl, { attributes: true, childList: true, @@ -233,7 +244,7 @@ window.document.addEventListener("DOMContentLoaded", function () { // Fixup any sharing links that require urls // Append url to any sharing urls const sharingLinks = window.document.querySelectorAll( - "a.sidebar-tools-main-item" + "a.sidebar-tools-main-item, a.quarto-navigation-tool, a.quarto-navbar-tools, a.quarto-navbar-tools-item" ); for (let i = 0; i < sharingLinks.length; i++) { const sharingLink = sharingLinks[i]; diff --git a/site_libs/quarto-search/autocomplete.umd.js b/site_libs/quarto-search/autocomplete.umd.js index 619c57c..ae0063a 100644 --- a/site_libs/quarto-search/autocomplete.umd.js +++ b/site_libs/quarto-search/autocomplete.umd.js @@ -1,3 +1,3 @@ -/*! @algolia/autocomplete-js 1.7.3 | MIT License | © Algolia, Inc. and contributors | https://github.com/algolia/autocomplete */ -!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports):"function"==typeof define&&define.amd?define(["exports"],t):t((e="undefined"!=typeof globalThis?globalThis:e||self)["@algolia/autocomplete-js"]={})}(this,(function(e){"use strict";function t(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function n(e){for(var n=1;n=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}function a(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null==n)return;var r,o,i=[],u=!0,a=!1;try{for(n=n.call(e);!(u=(r=n.next()).done)&&(i.push(r.value),!t||i.length!==t);u=!0);}catch(e){a=!0,o=e}finally{try{u||null==n.return||n.return()}finally{if(a)throw o}}return i}(e,t)||l(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function c(e){return function(e){if(Array.isArray(e))return s(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||l(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function l(e,t){if(e){if("string"==typeof e)return s(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?s(e,t):void 0}}function s(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n=n?null===r?null:0:o}function S(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function I(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function E(e,t){var n=[];return Promise.resolve(e(t)).then((function(e){return Promise.all(e.filter((function(e){return Boolean(e)})).map((function(e){if(e.sourceId,n.includes(e.sourceId))throw new Error("[Autocomplete] The `sourceId` ".concat(JSON.stringify(e.sourceId)," is not unique."));n.push(e.sourceId);var t=function(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,r=new Array(t);ne.length)&&(t=e.length);for(var n=0,r=new Array(t);n=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}var ae,ce,le,se=null,pe=(ae=-1,ce=-1,le=void 0,function(e){var t=++ae;return Promise.resolve(e).then((function(e){return le&&t=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}var ye=["props","refresh","store"],be=["inputElement","formElement","panelElement"],Oe=["inputElement"],_e=["inputElement","maxLength"],Pe=["item","source"];function je(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function we(e){for(var t=1;t=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}function Ee(e){var t=e.props,n=e.refresh,r=e.store,o=Ie(e,ye);return{getEnvironmentProps:function(e){var n=e.inputElement,o=e.formElement,i=e.panelElement;function u(e){!r.getState().isOpen&&r.pendingRequests.isEmpty()||e.target===n||!1===[o,i].some((function(t){return n=t,r=e.target,n===r||n.contains(r);var n,r}))&&(r.dispatch("blur",null),t.debug||r.pendingRequests.cancelAll())}return we({onTouchStart:u,onMouseDown:u,onTouchMove:function(e){!1!==r.getState().isOpen&&n===t.environment.document.activeElement&&e.target!==n&&n.blur()}},Ie(e,be))},getRootProps:function(e){return we({role:"combobox","aria-expanded":r.getState().isOpen,"aria-haspopup":"listbox","aria-owns":r.getState().isOpen?"".concat(t.id,"-list"):void 0,"aria-labelledby":"".concat(t.id,"-label")},e)},getFormProps:function(e){return e.inputElement,we({action:"",noValidate:!0,role:"search",onSubmit:function(i){var u;i.preventDefault(),t.onSubmit(we({event:i,refresh:n,state:r.getState()},o)),r.dispatch("submit",null),null===(u=e.inputElement)||void 0===u||u.blur()},onReset:function(i){var u;i.preventDefault(),t.onReset(we({event:i,refresh:n,state:r.getState()},o)),r.dispatch("reset",null),null===(u=e.inputElement)||void 0===u||u.focus()}},Ie(e,Oe))},getLabelProps:function(e){return we({htmlFor:"".concat(t.id,"-input"),id:"".concat(t.id,"-label")},e)},getInputProps:function(e){var i;function u(e){(t.openOnFocus||Boolean(r.getState().query))&&fe(we({event:e,props:t,query:r.getState().completion||r.getState().query,refresh:n,store:r},o)),r.dispatch("focus",null)}var a=e||{};a.inputElement;var c=a.maxLength,l=void 0===c?512:c,s=Ie(a,_e),p=A(r.getState()),f=function(e){return Boolean(e&&e.match(C))}((null===(i=t.environment.navigator)||void 0===i?void 0:i.userAgent)||""),d=null!=p&&p.itemUrl&&!f?"go":"search";return we({"aria-autocomplete":"both","aria-activedescendant":r.getState().isOpen&&null!==r.getState().activeItemId?"".concat(t.id,"-item-").concat(r.getState().activeItemId):void 0,"aria-controls":r.getState().isOpen?"".concat(t.id,"-list"):void 0,"aria-labelledby":"".concat(t.id,"-label"),value:r.getState().completion||r.getState().query,id:"".concat(t.id,"-input"),autoComplete:"off",autoCorrect:"off",autoCapitalize:"off",enterKeyHint:d,spellCheck:"false",autoFocus:t.autoFocus,placeholder:t.placeholder,maxLength:l,type:"search",onChange:function(e){fe(we({event:e,props:t,query:e.currentTarget.value.slice(0,l),refresh:n,store:r},o))},onKeyDown:function(e){!function(e){var t=e.event,n=e.props,r=e.refresh,o=e.store,i=ge(e,de);if("ArrowUp"===t.key||"ArrowDown"===t.key){var u=function(){var e=n.environment.document.getElementById("".concat(n.id,"-item-").concat(o.getState().activeItemId));e&&(e.scrollIntoViewIfNeeded?e.scrollIntoViewIfNeeded(!1):e.scrollIntoView(!1))},a=function(){var e=A(o.getState());if(null!==o.getState().activeItemId&&e){var n=e.item,u=e.itemInputValue,a=e.itemUrl,c=e.source;c.onActive(ve({event:t,item:n,itemInputValue:u,itemUrl:a,refresh:r,source:c,state:o.getState()},i))}};t.preventDefault(),!1===o.getState().isOpen&&(n.openOnFocus||Boolean(o.getState().query))?fe(ve({event:t,props:n,query:o.getState().query,refresh:r,store:o},i)).then((function(){o.dispatch(t.key,{nextActiveItemId:n.defaultActiveItemId}),a(),setTimeout(u,0)})):(o.dispatch(t.key,{}),a(),u())}else if("Escape"===t.key)t.preventDefault(),o.dispatch(t.key,null),o.pendingRequests.cancelAll();else if("Tab"===t.key)o.dispatch("blur",null),o.pendingRequests.cancelAll();else if("Enter"===t.key){if(null===o.getState().activeItemId||o.getState().collections.every((function(e){return 0===e.items.length})))return void(n.debug||o.pendingRequests.cancelAll());t.preventDefault();var c=A(o.getState()),l=c.item,s=c.itemInputValue,p=c.itemUrl,f=c.source;if(t.metaKey||t.ctrlKey)void 0!==p&&(f.onSelect(ve({event:t,item:l,itemInputValue:s,itemUrl:p,refresh:r,source:f,state:o.getState()},i)),n.navigator.navigateNewTab({itemUrl:p,item:l,state:o.getState()}));else if(t.shiftKey)void 0!==p&&(f.onSelect(ve({event:t,item:l,itemInputValue:s,itemUrl:p,refresh:r,source:f,state:o.getState()},i)),n.navigator.navigateNewWindow({itemUrl:p,item:l,state:o.getState()}));else if(t.altKey);else{if(void 0!==p)return f.onSelect(ve({event:t,item:l,itemInputValue:s,itemUrl:p,refresh:r,source:f,state:o.getState()},i)),void n.navigator.navigate({itemUrl:p,item:l,state:o.getState()});fe(ve({event:t,nextState:{isOpen:!1},props:n,query:s,refresh:r,store:o},i)).then((function(){f.onSelect(ve({event:t,item:l,itemInputValue:s,itemUrl:p,refresh:r,source:f,state:o.getState()},i))}))}}}(we({event:e,props:t,refresh:n,store:r},o))},onFocus:u,onBlur:y,onClick:function(n){e.inputElement!==t.environment.document.activeElement||r.getState().isOpen||u(n)}},s)},getPanelProps:function(e){return we({onMouseDown:function(e){e.preventDefault()},onMouseLeave:function(){r.dispatch("mouseleave",null)}},e)},getListProps:function(e){return we({role:"listbox","aria-labelledby":"".concat(t.id,"-label"),id:"".concat(t.id,"-list")},e)},getItemProps:function(e){var i=e.item,u=e.source,a=Ie(e,Pe);return we({id:"".concat(t.id,"-item-").concat(i.__autocomplete_id),role:"option","aria-selected":r.getState().activeItemId===i.__autocomplete_id,onMouseMove:function(e){if(i.__autocomplete_id!==r.getState().activeItemId){r.dispatch("mousemove",i.__autocomplete_id);var t=A(r.getState());if(null!==r.getState().activeItemId&&t){var u=t.item,a=t.itemInputValue,c=t.itemUrl,l=t.source;l.onActive(we({event:e,item:u,itemInputValue:a,itemUrl:c,refresh:n,source:l,state:r.getState()},o))}}},onMouseDown:function(e){e.preventDefault()},onClick:function(e){var a=u.getItemInputValue({item:i,state:r.getState()}),c=u.getItemUrl({item:i,state:r.getState()});(c?Promise.resolve():fe(we({event:e,nextState:{isOpen:!1},props:t,query:a,refresh:n,store:r},o))).then((function(){u.onSelect(we({event:e,item:i,itemInputValue:a,itemUrl:c,refresh:n,source:u,state:r.getState()},o))}))}},a)}}}function Ae(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Ce(e){for(var t=1;t0},reshape:function(e){return e.sources}},e),{},{id:null!==(n=e.id)&&void 0!==n?n:v(),plugins:o,initialState:H({activeItemId:null,query:"",completion:null,collections:[],isOpen:!1,status:"idle",context:{}},e.initialState),onStateChange:function(t){var n;null===(n=e.onStateChange)||void 0===n||n.call(e,t),o.forEach((function(e){var n;return null===(n=e.onStateChange)||void 0===n?void 0:n.call(e,t)}))},onSubmit:function(t){var n;null===(n=e.onSubmit)||void 0===n||n.call(e,t),o.forEach((function(e){var n;return null===(n=e.onSubmit)||void 0===n?void 0:n.call(e,t)}))},onReset:function(t){var n;null===(n=e.onReset)||void 0===n||n.call(e,t),o.forEach((function(e){var n;return null===(n=e.onReset)||void 0===n?void 0:n.call(e,t)}))},getSources:function(n){return Promise.all([].concat(F(o.map((function(e){return e.getSources}))),[e.getSources]).filter(Boolean).map((function(e){return E(e,n)}))).then((function(e){return d(e)})).then((function(e){return e.map((function(e){return H(H({},e),{},{onSelect:function(n){e.onSelect(n),t.forEach((function(e){var t;return null===(t=e.onSelect)||void 0===t?void 0:t.call(e,n)}))},onActive:function(n){e.onActive(n),t.forEach((function(e){var t;return null===(t=e.onActive)||void 0===t?void 0:t.call(e,n)}))}})}))}))},navigator:H({navigate:function(e){var t=e.itemUrl;r.location.assign(t)},navigateNewTab:function(e){var t=e.itemUrl,n=r.open(t,"_blank","noopener");null==n||n.focus()},navigateNewWindow:function(e){var t=e.itemUrl;r.open(t,"_blank","noopener")}},e.navigator)})}(e,t),r=R(Te,n,(function(e){var t=e.prevState,r=e.state;n.onStateChange(Be({prevState:t,state:r,refresh:u},o))})),o=function(e){var t=e.store;return{setActiveItemId:function(e){t.dispatch("setActiveItemId",e)},setQuery:function(e){t.dispatch("setQuery",e)},setCollections:function(e){var n=0,r=e.map((function(e){return L(L({},e),{},{items:d(e.items).map((function(e){return L(L({},e),{},{__autocomplete_id:n++})}))})}));t.dispatch("setCollections",r)},setIsOpen:function(e){t.dispatch("setIsOpen",e)},setStatus:function(e){t.dispatch("setStatus",e)},setContext:function(e){t.dispatch("setContext",e)}}}({store:r}),i=Ee(Be({props:n,refresh:u,store:r},o));function u(){return fe(Be({event:new Event("input"),nextState:{isOpen:r.getState().isOpen},props:n,query:r.getState().query,refresh:u,store:r},o))}return n.plugins.forEach((function(e){var n;return null===(n=e.subscribe)||void 0===n?void 0:n.call(e,Be(Be({},o),{},{refresh:u,onSelect:function(e){t.push({onSelect:e})},onActive:function(e){t.push({onActive:e})}}))})),function(e){var t,n,r=e.metadata,o=e.environment;if(null===(t=o.navigator)||void 0===t||null===(n=t.userAgent)||void 0===n?void 0:n.includes("Algolia Crawler")){var i=o.document.createElement("meta"),u=o.document.querySelector("head");i.name="algolia:metadata",setTimeout((function(){i.content=JSON.stringify(r),u.appendChild(i)}),0)}}({metadata:ke({plugins:n.plugins,options:e}),environment:n.environment}),Be(Be({refresh:u},i),o)}var Ue=function(e,t,n,r){var o;t[0]=0;for(var i=1;i=5&&((o||!e&&5===r)&&(u.push(r,0,o,n),r=6),e&&(u.push(r,e,0,n),r=6)),o=""},c=0;c"===t?(r=1,o=""):o=t+o[0]:i?t===i?i="":o+=t:'"'===t||"'"===t?i=t:">"===t?(a(),r=1):r&&("="===t?(r=5,n=o,o=""):"/"===t&&(r<5||">"===e[c][l+1])?(a(),3===r&&(u=u[0]),r=u,(u=u[0]).push(2,0,r),r=0):" "===t||"\t"===t||"\n"===t||"\r"===t?(a(),r=2):o+=t),3===r&&"!--"===o&&(r=4,u=u[0])}return a(),u}(e)),t),arguments,[])).length>1?t:t[0]}var We=function(e){var t=e.environment,n=t.document.createElementNS("http://www.w3.org/2000/svg","svg");n.setAttribute("class","aa-ClearIcon"),n.setAttribute("viewBox","0 0 24 24"),n.setAttribute("width","18"),n.setAttribute("height","18"),n.setAttribute("fill","currentColor");var r=t.document.createElementNS("http://www.w3.org/2000/svg","path");return r.setAttribute("d","M5.293 6.707l5.293 5.293-5.293 5.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l5.293-5.293 5.293 5.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-5.293-5.293 5.293-5.293c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-5.293 5.293-5.293-5.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z"),n.appendChild(r),n};function Qe(e,t){if("string"==typeof t){var n=e.document.querySelector(t);return"The element ".concat(JSON.stringify(t)," is not in the document."),n}return t}function $e(){for(var e=arguments.length,t=new Array(e),n=0;n2&&(u.children=arguments.length>3?lt.call(arguments,2):n),"function"==typeof e&&null!=e.defaultProps)for(i in e.defaultProps)void 0===u[i]&&(u[i]=e.defaultProps[i]);return _t(e,u,r,o,null)}function _t(e,t,n,r,o){var i={type:e,props:t,key:n,ref:r,__k:null,__:null,__b:0,__e:null,__d:void 0,__c:null,__h:null,constructor:void 0,__v:null==o?++pt:o};return null==o&&null!=st.vnode&&st.vnode(i),i}function Pt(e){return e.children}function jt(e,t){this.props=e,this.context=t}function wt(e,t){if(null==t)return e.__?wt(e.__,e.__.__k.indexOf(e)+1):null;for(var n;t0?_t(d.type,d.props,d.key,null,d.__v):d)){if(d.__=n,d.__b=n.__b+1,null===(f=g[s])||f&&d.key==f.key&&d.type===f.type)g[s]=void 0;else for(p=0;p0&&void 0!==arguments[0]?arguments[0]:[];return{get:function(){return e},add:function(t){var n=e[e.length-1];(null==n?void 0:n.isHighlighted)===t.isHighlighted?e[e.length-1]={value:n.value+t.value,isHighlighted:n.isHighlighted}:e.push(t)}}}(n?[{value:n,isHighlighted:!1}]:[]);return t.forEach((function(e){var t=e.split(Ht);r.add({value:t[0],isHighlighted:!0}),""!==t[1]&&r.add({value:t[1],isHighlighted:!1})})),r.get()}function Wt(e){return function(e){if(Array.isArray(e))return Qt(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return Qt(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Qt(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Qt(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n",""":'"',"'":"'"},Gt=new RegExp(/\w/i),Kt=/&(amp|quot|lt|gt|#39);/g,Jt=RegExp(Kt.source);function Yt(e,t){var n,r,o,i=e[t],u=(null===(n=e[t+1])||void 0===n?void 0:n.isHighlighted)||!0,a=(null===(r=e[t-1])||void 0===r?void 0:r.isHighlighted)||!0;return Gt.test((o=i.value)&&Jt.test(o)?o.replace(Kt,(function(e){return zt[e]})):o)||a!==u?i.isHighlighted:a}function Xt(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Zt(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,r=new Array(t);n=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}function mn(e){return function(e){if(Array.isArray(e))return vn(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return vn(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return vn(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function vn(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n0;if(!O.value.core.openOnFocus&&!t.query)return n;var r=Boolean(h.current||O.value.renderer.renderNoResults);return!n&&r||n},__autocomplete_metadata:{userAgents:Sn,options:e}}))})),j=p(n({collections:[],completion:null,context:{},isOpen:!1,query:"",activeItemId:null,status:"idle"},O.value.core.initialState)),w={getEnvironmentProps:O.value.renderer.getEnvironmentProps,getFormProps:O.value.renderer.getFormProps,getInputProps:O.value.renderer.getInputProps,getItemProps:O.value.renderer.getItemProps,getLabelProps:O.value.renderer.getLabelProps,getListProps:O.value.renderer.getListProps,getPanelProps:O.value.renderer.getPanelProps,getRootProps:O.value.renderer.getRootProps},S={setActiveItemId:P.value.setActiveItemId,setQuery:P.value.setQuery,setCollections:P.value.setCollections,setIsOpen:P.value.setIsOpen,setStatus:P.value.setStatus,setContext:P.value.setContext,refresh:P.value.refresh},I=d((function(){return Ve.bind(O.value.renderer.renderer.createElement)})),E=d((function(){return ct({autocomplete:P.value,autocompleteScopeApi:S,classNames:O.value.renderer.classNames,environment:O.value.core.environment,isDetached:_.value,placeholder:O.value.core.placeholder,propGetters:w,setIsModalOpen:k,state:j.current,translations:O.value.renderer.translations})}));function A(){tt(E.value.panel,{style:_.value?{}:wn({panelPlacement:O.value.renderer.panelPlacement,container:E.value.root,form:E.value.form,environment:O.value.core.environment})})}function C(e){j.current=e;var t={autocomplete:P.value,autocompleteScopeApi:S,classNames:O.value.renderer.classNames,components:O.value.renderer.components,container:O.value.renderer.container,html:I.value,dom:E.value,panelContainer:_.value?E.value.detachedContainer:O.value.renderer.panelContainer,propGetters:w,state:j.current,renderer:O.value.renderer.renderer},r=!g(e)&&!h.current&&O.value.renderer.renderNoResults||O.value.renderer.render;!function(e){var t=e.autocomplete,r=e.autocompleteScopeApi,o=e.dom,i=e.propGetters,u=e.state;nt(o.root,i.getRootProps(n({state:u,props:t.getRootProps({})},r))),nt(o.input,i.getInputProps(n({state:u,props:t.getInputProps({inputElement:o.input}),inputElement:o.input},r))),tt(o.label,{hidden:"stalled"===u.status}),tt(o.loadingIndicator,{hidden:"stalled"!==u.status}),tt(o.clearButton,{hidden:!u.query})}(t),function(e,t){var r=t.autocomplete,o=t.autocompleteScopeApi,u=t.classNames,a=t.html,c=t.dom,l=t.panelContainer,s=t.propGetters,p=t.state,f=t.components,d=t.renderer;if(p.isOpen){l.contains(c.panel)||"loading"===p.status||l.appendChild(c.panel),c.panel.classList.toggle("aa-Panel--stalled","stalled"===p.status);var m=p.collections.filter((function(e){var t=e.source,n=e.items;return t.templates.noResults||n.length>0})).map((function(e,t){var c=e.source,l=e.items;return d.createElement("section",{key:t,className:u.source,"data-autocomplete-source-id":c.sourceId},c.templates.header&&d.createElement("div",{className:u.sourceHeader},c.templates.header({components:f,createElement:d.createElement,Fragment:d.Fragment,items:l,source:c,state:p,html:a})),c.templates.noResults&&0===l.length?d.createElement("div",{className:u.sourceNoResults},c.templates.noResults({components:f,createElement:d.createElement,Fragment:d.Fragment,source:c,state:p,html:a})):d.createElement("ul",i({className:u.list},s.getListProps(n({state:p,props:r.getListProps({})},o))),l.map((function(e){var t=r.getItemProps({item:e,source:c});return d.createElement("li",i({key:t.id,className:u.item},s.getItemProps(n({state:p,props:t},o))),c.templates.item({components:f,createElement:d.createElement,Fragment:d.Fragment,item:e,state:p,html:a}))}))),c.templates.footer&&d.createElement("div",{className:u.sourceFooter},c.templates.footer({components:f,createElement:d.createElement,Fragment:d.Fragment,items:l,source:c,state:p,html:a})))})),v=d.createElement(d.Fragment,null,d.createElement("div",{className:u.panelLayout},m),d.createElement("div",{className:"aa-GradientBottom"})),h=m.reduce((function(e,t){return e[t.props["data-autocomplete-source-id"]]=t,e}),{});e(n(n({children:v,state:p,sections:m,elements:h},d),{},{components:f,html:a},o),c.panel)}else l.contains(c.panel)&&l.removeChild(c.panel)}(r,t)}function D(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};c();var t=O.value.renderer,n=t.components,r=u(t,In);y.current=Ge(r,O.value.core,{components:Ke(n,(function(e){return!e.value.hasOwnProperty("__autocomplete_componentName")})),initialState:j.current},e),m(),l(),P.value.refresh().then((function(){C(j.current)}))}function k(e){requestAnimationFrame((function(){var t=O.value.core.environment.document.body.contains(E.value.detachedOverlay);e!==t&&(e?(O.value.core.environment.document.body.appendChild(E.value.detachedOverlay),O.value.core.environment.document.body.classList.add("aa-Detached"),E.value.input.focus()):(O.value.core.environment.document.body.removeChild(E.value.detachedOverlay),O.value.core.environment.document.body.classList.remove("aa-Detached"),P.value.setQuery(""),P.value.refresh()))}))}return a((function(){var e=P.value.getEnvironmentProps({formElement:E.value.form,panelElement:E.value.panel,inputElement:E.value.input});return tt(O.value.core.environment,e),function(){tt(O.value.core.environment,Object.keys(e).reduce((function(e,t){return n(n({},e),{},o({},t,void 0))}),{}))}})),a((function(){var e=_.value?O.value.core.environment.document.body:O.value.renderer.panelContainer,t=_.value?E.value.detachedOverlay:E.value.panel;return _.value&&j.current.isOpen&&k(!0),C(j.current),function(){e.contains(t)&&e.removeChild(t)}})),a((function(){var e=O.value.renderer.container;return e.appendChild(E.value.root),function(){e.removeChild(E.value.root)}})),a((function(){var e=f((function(e){C(e.state)}),0);return b.current=function(t){var n=t.state,r=t.prevState;(_.value&&r.isOpen!==n.isOpen&&k(n.isOpen),_.value||!n.isOpen||r.isOpen||A(),n.query!==r.query)&&O.value.core.environment.document.querySelectorAll(".aa-Panel--scrollable").forEach((function(e){0!==e.scrollTop&&(e.scrollTop=0)}));e({state:n})},function(){b.current=void 0}})),a((function(){var e=f((function(){var e=_.value;_.value=O.value.core.environment.matchMedia(O.value.renderer.detachedMediaQuery).matches,e!==_.value?D({}):requestAnimationFrame(A)}),20);return O.value.core.environment.addEventListener("resize",e),function(){O.value.core.environment.removeEventListener("resize",e)}})),a((function(){if(!_.value)return function(){};function e(e){E.value.detachedContainer.classList.toggle("aa-DetachedContainer--modal",e)}function t(t){e(t.matches)}var n=O.value.core.environment.matchMedia(getComputedStyle(O.value.core.environment.document.documentElement).getPropertyValue("--aa-detached-modal-media-query"));e(n.matches);var r=Boolean(n.addEventListener);return r?n.addEventListener("change",t):n.addListener(t),function(){r?n.removeEventListener("change",t):n.removeListener(t)}})),a((function(){return requestAnimationFrame(A),function(){}})),n(n({},S),{},{update:D,destroy:function(){c()}})},e.getAlgoliaFacets=function(e){var t=En({transformResponse:function(e){return e.facetHits}}),r=e.queries.map((function(e){return n(n({},e),{},{type:"facet"})}));return t(n(n({},e),{},{queries:r}))},e.getAlgoliaResults=An,Object.defineProperty(e,"__esModule",{value:!0})})); +/*! @algolia/autocomplete-js 1.11.1 | MIT License | © Algolia, Inc. and contributors | https://github.com/algolia/autocomplete */ +!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports):"function"==typeof define&&define.amd?define(["exports"],t):t((e="undefined"!=typeof globalThis?globalThis:e||self)["@algolia/autocomplete-js"]={})}(this,(function(e){"use strict";function t(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function n(e){for(var n=1;n=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}function a(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,u,a=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(a.push(r.value),a.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(u=n.return(),Object(u)!==u))return}finally{if(c)throw o}}return a}}(e,t)||c(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function l(e){return function(e){if(Array.isArray(e))return s(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||c(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function c(e,t){if(e){if("string"==typeof e)return s(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?s(e,t):void 0}}function s(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);ne.length)&&(t=e.length);for(var n=0,r=new Array(t);ne.length)&&(t=e.length);for(var n=0,r=new Array(t);n=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}function x(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function N(e){for(var t=1;t1&&void 0!==arguments[1]?arguments[1]:20,n=[],r=0;r=3||2===n&&r>=4||1===n&&r>=10);function i(t,n,r){if(o&&void 0!==r){var i=r[0].__autocomplete_algoliaCredentials,u={"X-Algolia-Application-Id":i.appId,"X-Algolia-API-Key":i.apiKey};e.apply(void 0,[t].concat(D(n),[{headers:u}]))}else e.apply(void 0,[t].concat(D(n)))}return{init:function(t,n){e("init",{appId:t,apiKey:n})},setUserToken:function(t){e("setUserToken",t)},clickedObjectIDsAfterSearch:function(){for(var e=arguments.length,t=new Array(e),n=0;n0&&i("clickedObjectIDsAfterSearch",B(t),t[0].items)},clickedObjectIDs:function(){for(var e=arguments.length,t=new Array(e),n=0;n0&&i("clickedObjectIDs",B(t),t[0].items)},clickedFilters:function(){for(var t=arguments.length,n=new Array(t),r=0;r0&&e.apply(void 0,["clickedFilters"].concat(n))},convertedObjectIDsAfterSearch:function(){for(var e=arguments.length,t=new Array(e),n=0;n0&&i("convertedObjectIDsAfterSearch",B(t),t[0].items)},convertedObjectIDs:function(){for(var e=arguments.length,t=new Array(e),n=0;n0&&i("convertedObjectIDs",B(t),t[0].items)},convertedFilters:function(){for(var t=arguments.length,n=new Array(t),r=0;r0&&e.apply(void 0,["convertedFilters"].concat(n))},viewedObjectIDs:function(){for(var e=arguments.length,t=new Array(e),n=0;n0&&t.reduce((function(e,t){var n=t.items,r=k(t,A);return[].concat(D(e),D(q(N(N({},r),{},{objectIDs:(null==n?void 0:n.map((function(e){return e.objectID})))||r.objectIDs})).map((function(e){return{items:n,payload:e}}))))}),[]).forEach((function(e){var t=e.items;return i("viewedObjectIDs",[e.payload],t)}))},viewedFilters:function(){for(var t=arguments.length,n=new Array(t),r=0;r0&&e.apply(void 0,["viewedFilters"].concat(n))}}}function F(e){var t=e.items.reduce((function(e,t){var n;return e[t.__autocomplete_indexName]=(null!==(n=e[t.__autocomplete_indexName])&&void 0!==n?n:[]).concat(t),e}),{});return Object.keys(t).map((function(e){return{index:e,items:t[e],algoliaSource:["autocomplete"]}}))}function L(e){return e.objectID&&e.__autocomplete_indexName&&e.__autocomplete_queryID}function U(e){return U="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},U(e)}function M(e){return function(e){if(Array.isArray(e))return H(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return H(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return H(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function H(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n0&&z({onItemsChange:r,items:n,insights:a,state:t}))}}),0);return{name:"aa.algoliaInsightsPlugin",subscribe:function(e){var t=e.setContext,n=e.onSelect,r=e.onActive;function l(e){t({algoliaInsightsPlugin:{__algoliaSearchParameters:W({clickAnalytics:!0},e?{userToken:e}:{}),insights:a}})}u("addAlgoliaAgent","insights-plugin"),l(),u("onUserTokenChange",l),u("getUserToken",null,(function(e,t){l(t)})),n((function(e){var t=e.item,n=e.state,r=e.event,i=e.source;L(t)&&o({state:n,event:r,insights:a,item:t,insightsEvents:[W({eventName:"Item Selected"},j({item:t,items:i.getItems().filter(L)}))]})})),r((function(e){var t=e.item,n=e.source,r=e.state,o=e.event;L(t)&&i({state:r,event:o,insights:a,item:t,insightsEvents:[W({eventName:"Item Active"},j({item:t,items:n.getItems().filter(L)}))]})}))},onStateChange:function(e){var t=e.state;c({state:t})},__autocomplete_pluginOptions:e}}function J(e,t){var n=t;return{then:function(t,r){return J(e.then(Y(t,n,e),Y(r,n,e)),n)},catch:function(t){return J(e.catch(Y(t,n,e)),n)},finally:function(t){return t&&n.onCancelList.push(t),J(e.finally(Y(t&&function(){return n.onCancelList=[],t()},n,e)),n)},cancel:function(){n.isCanceled=!0;var e=n.onCancelList;n.onCancelList=[],e.forEach((function(e){e()}))},isCanceled:function(){return!0===n.isCanceled}}}function X(e){return J(e,{isCanceled:!1,onCancelList:[]})}function Y(e,t,n){return e?function(n){return t.isCanceled?n:e(n)}:n}function Z(e,t,n,r){if(!n)return null;if(e<0&&(null===t||null!==r&&0===t))return n+e;var o=(null===t?-1:t)+e;return o<=-1||o>=n?null===r?null:0:o}function ee(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function te(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,r=new Array(t);n0},reshape:function(e){return e.sources}},e),{},{id:null!==(n=e.id)&&void 0!==n?n:d(),plugins:o,initialState:he({activeItemId:null,query:"",completion:null,collections:[],isOpen:!1,status:"idle",context:{}},e.initialState),onStateChange:function(t){var n;null===(n=e.onStateChange)||void 0===n||n.call(e,t),o.forEach((function(e){var n;return null===(n=e.onStateChange)||void 0===n?void 0:n.call(e,t)}))},onSubmit:function(t){var n;null===(n=e.onSubmit)||void 0===n||n.call(e,t),o.forEach((function(e){var n;return null===(n=e.onSubmit)||void 0===n?void 0:n.call(e,t)}))},onReset:function(t){var n;null===(n=e.onReset)||void 0===n||n.call(e,t),o.forEach((function(e){var n;return null===(n=e.onReset)||void 0===n?void 0:n.call(e,t)}))},getSources:function(n){return Promise.all([].concat(ye(o.map((function(e){return e.getSources}))),[e.getSources]).filter(Boolean).map((function(e){return function(e,t){var n=[];return Promise.resolve(e(t)).then((function(e){return Promise.all(e.filter((function(e){return Boolean(e)})).map((function(e){if(e.sourceId,n.includes(e.sourceId))throw new Error("[Autocomplete] The `sourceId` ".concat(JSON.stringify(e.sourceId)," is not unique."));n.push(e.sourceId);var t={getItemInputValue:function(e){return e.state.query},getItemUrl:function(){},onSelect:function(e){(0,e.setIsOpen)(!1)},onActive:O,onResolve:O};Object.keys(t).forEach((function(e){t[e].__default=!0}));var r=te(te({},t),e);return Promise.resolve(r)})))}))}(e,n)}))).then((function(e){return m(e)})).then((function(e){return e.map((function(e){return he(he({},e),{},{onSelect:function(n){e.onSelect(n),t.forEach((function(e){var t;return null===(t=e.onSelect)||void 0===t?void 0:t.call(e,n)}))},onActive:function(n){e.onActive(n),t.forEach((function(e){var t;return null===(t=e.onActive)||void 0===t?void 0:t.call(e,n)}))},onResolve:function(n){e.onResolve(n),t.forEach((function(e){var t;return null===(t=e.onResolve)||void 0===t?void 0:t.call(e,n)}))}})}))}))},navigator:he({navigate:function(e){var t=e.itemUrl;r.location.assign(t)},navigateNewTab:function(e){var t=e.itemUrl,n=r.open(t,"_blank","noopener");null==n||n.focus()},navigateNewWindow:function(e){var t=e.itemUrl;r.open(t,"_blank","noopener")}},e.navigator)})}function Se(e){return Se="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Se(e)}function je(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Pe(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,r=new Array(t);n=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}var He,Ve,We,Ke=null,Qe=(He=-1,Ve=-1,We=void 0,function(e){var t=++He;return Promise.resolve(e).then((function(e){return We&&t=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}function et(e){return et="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},et(e)}var tt=["props","refresh","store"],nt=["inputElement","formElement","panelElement"],rt=["inputElement"],ot=["inputElement","maxLength"],it=["source"],ut=["item","source"];function at(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function lt(e){for(var t=1;t=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}function ft(e){var t=e.props,n=e.refresh,r=e.store,o=st(e,tt);return{getEnvironmentProps:function(e){var n=e.inputElement,o=e.formElement,i=e.panelElement;function u(e){!r.getState().isOpen&&r.pendingRequests.isEmpty()||e.target===n||!1===[o,i].some((function(t){return n=t,r=e.target,n===r||n.contains(r);var n,r}))&&(r.dispatch("blur",null),t.debug||r.pendingRequests.cancelAll())}return lt({onTouchStart:u,onMouseDown:u,onTouchMove:function(e){!1!==r.getState().isOpen&&n===t.environment.document.activeElement&&e.target!==n&&n.blur()}},st(e,nt))},getRootProps:function(e){return lt({role:"combobox","aria-expanded":r.getState().isOpen,"aria-haspopup":"listbox","aria-owns":r.getState().isOpen?r.getState().collections.map((function(e){var n=e.source;return ie(t.id,"list",n)})).join(" "):void 0,"aria-labelledby":ie(t.id,"label")},e)},getFormProps:function(e){return e.inputElement,lt({action:"",noValidate:!0,role:"search",onSubmit:function(i){var u;i.preventDefault(),t.onSubmit(lt({event:i,refresh:n,state:r.getState()},o)),r.dispatch("submit",null),null===(u=e.inputElement)||void 0===u||u.blur()},onReset:function(i){var u;i.preventDefault(),t.onReset(lt({event:i,refresh:n,state:r.getState()},o)),r.dispatch("reset",null),null===(u=e.inputElement)||void 0===u||u.focus()}},st(e,rt))},getLabelProps:function(e){return lt({htmlFor:ie(t.id,"input"),id:ie(t.id,"label")},e)},getInputProps:function(e){var i;function u(e){(t.openOnFocus||Boolean(r.getState().query))&&$e(lt({event:e,props:t,query:r.getState().completion||r.getState().query,refresh:n,store:r},o)),r.dispatch("focus",null)}var a=e||{};a.inputElement;var l=a.maxLength,c=void 0===l?512:l,s=st(a,ot),f=oe(r.getState()),p=function(e){return Boolean(e&&e.match(ue))}((null===(i=t.environment.navigator)||void 0===i?void 0:i.userAgent)||""),m=t.enterKeyHint||(null!=f&&f.itemUrl&&!p?"go":"search");return lt({"aria-autocomplete":"both","aria-activedescendant":r.getState().isOpen&&null!==r.getState().activeItemId?ie(t.id,"item-".concat(r.getState().activeItemId),null==f?void 0:f.source):void 0,"aria-controls":r.getState().isOpen?r.getState().collections.map((function(e){var n=e.source;return ie(t.id,"list",n)})).join(" "):void 0,"aria-labelledby":ie(t.id,"label"),value:r.getState().completion||r.getState().query,id:ie(t.id,"input"),autoComplete:"off",autoCorrect:"off",autoCapitalize:"off",enterKeyHint:m,spellCheck:"false",autoFocus:t.autoFocus,placeholder:t.placeholder,maxLength:c,type:"search",onChange:function(e){$e(lt({event:e,props:t,query:e.currentTarget.value.slice(0,c),refresh:n,store:r},o))},onKeyDown:function(e){!function(e){var t=e.event,n=e.props,r=e.refresh,o=e.store,i=Ze(e,Ge);if("ArrowUp"===t.key||"ArrowDown"===t.key){var u=function(){var e=oe(o.getState()),t=n.environment.document.getElementById(ie(n.id,"item-".concat(o.getState().activeItemId),null==e?void 0:e.source));t&&(t.scrollIntoViewIfNeeded?t.scrollIntoViewIfNeeded(!1):t.scrollIntoView(!1))},a=function(){var e=oe(o.getState());if(null!==o.getState().activeItemId&&e){var n=e.item,u=e.itemInputValue,a=e.itemUrl,l=e.source;l.onActive(Xe({event:t,item:n,itemInputValue:u,itemUrl:a,refresh:r,source:l,state:o.getState()},i))}};t.preventDefault(),!1===o.getState().isOpen&&(n.openOnFocus||Boolean(o.getState().query))?$e(Xe({event:t,props:n,query:o.getState().query,refresh:r,store:o},i)).then((function(){o.dispatch(t.key,{nextActiveItemId:n.defaultActiveItemId}),a(),setTimeout(u,0)})):(o.dispatch(t.key,{}),a(),u())}else if("Escape"===t.key)t.preventDefault(),o.dispatch(t.key,null),o.pendingRequests.cancelAll();else if("Tab"===t.key)o.dispatch("blur",null),o.pendingRequests.cancelAll();else if("Enter"===t.key){if(null===o.getState().activeItemId||o.getState().collections.every((function(e){return 0===e.items.length})))return void(n.debug||o.pendingRequests.cancelAll());t.preventDefault();var l=oe(o.getState()),c=l.item,s=l.itemInputValue,f=l.itemUrl,p=l.source;if(t.metaKey||t.ctrlKey)void 0!==f&&(p.onSelect(Xe({event:t,item:c,itemInputValue:s,itemUrl:f,refresh:r,source:p,state:o.getState()},i)),n.navigator.navigateNewTab({itemUrl:f,item:c,state:o.getState()}));else if(t.shiftKey)void 0!==f&&(p.onSelect(Xe({event:t,item:c,itemInputValue:s,itemUrl:f,refresh:r,source:p,state:o.getState()},i)),n.navigator.navigateNewWindow({itemUrl:f,item:c,state:o.getState()}));else if(t.altKey);else{if(void 0!==f)return p.onSelect(Xe({event:t,item:c,itemInputValue:s,itemUrl:f,refresh:r,source:p,state:o.getState()},i)),void n.navigator.navigate({itemUrl:f,item:c,state:o.getState()});$e(Xe({event:t,nextState:{isOpen:!1},props:n,query:s,refresh:r,store:o},i)).then((function(){p.onSelect(Xe({event:t,item:c,itemInputValue:s,itemUrl:f,refresh:r,source:p,state:o.getState()},i))}))}}}(lt({event:e,props:t,refresh:n,store:r},o))},onFocus:u,onBlur:O,onClick:function(n){e.inputElement!==t.environment.document.activeElement||r.getState().isOpen||u(n)}},s)},getPanelProps:function(e){return lt({onMouseDown:function(e){e.preventDefault()},onMouseLeave:function(){r.dispatch("mouseleave",null)}},e)},getListProps:function(e){var n=e||{},r=n.source,o=st(n,it);return lt({role:"listbox","aria-labelledby":ie(t.id,"label"),id:ie(t.id,"list",r)},o)},getItemProps:function(e){var i=e.item,u=e.source,a=st(e,ut);return lt({id:ie(t.id,"item-".concat(i.__autocomplete_id),u),role:"option","aria-selected":r.getState().activeItemId===i.__autocomplete_id,onMouseMove:function(e){if(i.__autocomplete_id!==r.getState().activeItemId){r.dispatch("mousemove",i.__autocomplete_id);var t=oe(r.getState());if(null!==r.getState().activeItemId&&t){var u=t.item,a=t.itemInputValue,l=t.itemUrl,c=t.source;c.onActive(lt({event:e,item:u,itemInputValue:a,itemUrl:l,refresh:n,source:c,state:r.getState()},o))}}},onMouseDown:function(e){e.preventDefault()},onClick:function(e){var a=u.getItemInputValue({item:i,state:r.getState()}),l=u.getItemUrl({item:i,state:r.getState()});(l?Promise.resolve():$e(lt({event:e,nextState:{isOpen:!1},props:t,query:a,refresh:n,store:r},o))).then((function(){u.onSelect(lt({event:e,item:i,itemInputValue:a,itemUrl:l,refresh:n,source:u,state:r.getState()},o))}))}},a)}}}function pt(e){return pt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},pt(e)}function mt(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function vt(e){for(var t=1;t=5&&((o||!e&&5===r)&&(u.push(r,0,o,n),r=6),e&&(u.push(r,e,0,n),r=6)),o=""},l=0;l"===t?(r=1,o=""):o=t+o[0]:i?t===i?i="":o+=t:'"'===t||"'"===t?i=t:">"===t?(a(),r=1):r&&("="===t?(r=5,n=o,o=""):"/"===t&&(r<5||">"===e[l][c+1])?(a(),3===r&&(u=u[0]),r=u,(u=u[0]).push(2,0,r),r=0):" "===t||"\t"===t||"\n"===t||"\r"===t?(a(),r=2):o+=t),3===r&&"!--"===o&&(r=4,u=u[0])}return a(),u}(e)),t),arguments,[])).length>1?t:t[0]}var kt=function(e){var t=e.environment,n=t.document.createElementNS("http://www.w3.org/2000/svg","svg");n.setAttribute("class","aa-ClearIcon"),n.setAttribute("viewBox","0 0 24 24"),n.setAttribute("width","18"),n.setAttribute("height","18"),n.setAttribute("fill","currentColor");var r=t.document.createElementNS("http://www.w3.org/2000/svg","path");return r.setAttribute("d","M5.293 6.707l5.293 5.293-5.293 5.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l5.293-5.293 5.293 5.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-5.293-5.293 5.293-5.293c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-5.293 5.293-5.293-5.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z"),n.appendChild(r),n};function xt(e,t){if("string"==typeof t){var n=e.document.querySelector(t);return"The element ".concat(JSON.stringify(t)," is not in the document."),n}return t}function Nt(){for(var e=arguments.length,t=new Array(e),n=0;n2&&(u.children=arguments.length>3?Jt.call(arguments,2):n),"function"==typeof e&&null!=e.defaultProps)for(i in e.defaultProps)void 0===u[i]&&(u[i]=e.defaultProps[i]);return sn(e,u,r,o,null)}function sn(e,t,n,r,o){var i={type:e,props:t,key:n,ref:r,__k:null,__:null,__b:0,__e:null,__d:void 0,__c:null,__h:null,constructor:void 0,__v:null==o?++Yt:o};return null==o&&null!=Xt.vnode&&Xt.vnode(i),i}function fn(e){return e.children}function pn(e,t){this.props=e,this.context=t}function mn(e,t){if(null==t)return e.__?mn(e.__,e.__.__k.indexOf(e)+1):null;for(var n;tt&&Zt.sort(nn));yn.__r=0}function bn(e,t,n,r,o,i,u,a,l,c){var s,f,p,m,v,d,y,b=r&&r.__k||on,g=b.length;for(n.__k=[],s=0;s0?sn(m.type,m.props,m.key,m.ref?m.ref:null,m.__v):m)){if(m.__=n,m.__b=n.__b+1,null===(p=b[s])||p&&m.key==p.key&&m.type===p.type)b[s]=void 0;else for(f=0;f=0;t--)if((n=e.__k[t])&&(r=On(n)))return r;return null}function _n(e,t,n){"-"===t[0]?e.setProperty(t,null==n?"":n):e[t]=null==n?"":"number"!=typeof n||un.test(t)?n:n+"px"}function Sn(e,t,n,r,o){var i;e:if("style"===t)if("string"==typeof n)e.style.cssText=n;else{if("string"==typeof r&&(e.style.cssText=r=""),r)for(t in r)n&&t in n||_n(e.style,t,"");if(n)for(t in n)r&&n[t]===r[t]||_n(e.style,t,n[t])}else if("o"===t[0]&&"n"===t[1])i=t!==(t=t.replace(/Capture$/,"")),t=t.toLowerCase()in e?t.toLowerCase().slice(2):t.slice(2),e.l||(e.l={}),e.l[t+i]=n,n?r||e.addEventListener(t,i?Pn:jn,i):e.removeEventListener(t,i?Pn:jn,i);else if("dangerouslySetInnerHTML"!==t){if(o)t=t.replace(/xlink(H|:h)/,"h").replace(/sName$/,"s");else if("width"!==t&&"height"!==t&&"href"!==t&&"list"!==t&&"form"!==t&&"tabIndex"!==t&&"download"!==t&&t in e)try{e[t]=null==n?"":n;break e}catch(e){}"function"==typeof n||(null==n||!1===n&&"-"!==t[4]?e.removeAttribute(t):e.setAttribute(t,n))}}function jn(e){return this.l[e.type+!1](Xt.event?Xt.event(e):e)}function Pn(e){return this.l[e.type+!0](Xt.event?Xt.event(e):e)}function wn(e,t,n,r,o,i,u,a,l){var c,s,f,p,m,v,d,y,b,g,h,O,_,S,j,P=t.type;if(void 0!==t.constructor)return null;null!=n.__h&&(l=n.__h,a=t.__e=n.__e,t.__h=null,i=[a]),(c=Xt.__b)&&c(t);try{e:if("function"==typeof P){if(y=t.props,b=(c=P.contextType)&&r[c.__c],g=c?b?b.props.value:c.__:r,n.__c?d=(s=t.__c=n.__c).__=s.__E:("prototype"in P&&P.prototype.render?t.__c=s=new P(y,g):(t.__c=s=new pn(y,g),s.constructor=P,s.render=Cn),b&&b.sub(s),s.props=y,s.state||(s.state={}),s.context=g,s.__n=r,f=s.__d=!0,s.__h=[],s._sb=[]),null==s.__s&&(s.__s=s.state),null!=P.getDerivedStateFromProps&&(s.__s==s.state&&(s.__s=an({},s.__s)),an(s.__s,P.getDerivedStateFromProps(y,s.__s))),p=s.props,m=s.state,s.__v=t,f)null==P.getDerivedStateFromProps&&null!=s.componentWillMount&&s.componentWillMount(),null!=s.componentDidMount&&s.__h.push(s.componentDidMount);else{if(null==P.getDerivedStateFromProps&&y!==p&&null!=s.componentWillReceiveProps&&s.componentWillReceiveProps(y,g),!s.__e&&null!=s.shouldComponentUpdate&&!1===s.shouldComponentUpdate(y,s.__s,g)||t.__v===n.__v){for(t.__v!==n.__v&&(s.props=y,s.state=s.__s,s.__d=!1),s.__e=!1,t.__e=n.__e,t.__k=n.__k,t.__k.forEach((function(e){e&&(e.__=t)})),h=0;h0&&void 0!==arguments[0]?arguments[0]:[];return{get:function(){return e},add:function(t){var n=e[e.length-1];(null==n?void 0:n.isHighlighted)===t.isHighlighted?e[e.length-1]={value:n.value+t.value,isHighlighted:n.isHighlighted}:e.push(t)}}}(n?[{value:n,isHighlighted:!1}]:[]);return t.forEach((function(e){var t=e.split(xn);r.add({value:t[0],isHighlighted:!0}),""!==t[1]&&r.add({value:t[1],isHighlighted:!1})})),r.get()}function Tn(e){return function(e){if(Array.isArray(e))return qn(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return qn(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return qn(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function qn(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n",""":'"',"'":"'"},Fn=new RegExp(/\w/i),Ln=/&(amp|quot|lt|gt|#39);/g,Un=RegExp(Ln.source);function Mn(e,t){var n,r,o,i=e[t],u=(null===(n=e[t+1])||void 0===n?void 0:n.isHighlighted)||!0,a=(null===(r=e[t-1])||void 0===r?void 0:r.isHighlighted)||!0;return Fn.test((o=i.value)&&Un.test(o)?o.replace(Ln,(function(e){return Rn[e]})):o)||a!==u?i.isHighlighted:a}function Hn(e){return Hn="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Hn(e)}function Vn(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Wn(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,r=new Array(t);n=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}function ur(e){return function(e){if(Array.isArray(e))return ar(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return ar(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return ar(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function ar(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n0;if(!O.value.core.openOnFocus&&!t.query)return n;var r=Boolean(y.current||O.value.renderer.renderNoResults);return!n&&r||n},__autocomplete_metadata:{userAgents:br,options:e}}))})),j=f(n({collections:[],completion:null,context:{},isOpen:!1,query:"",activeItemId:null,status:"idle"},O.value.core.initialState)),P={getEnvironmentProps:O.value.renderer.getEnvironmentProps,getFormProps:O.value.renderer.getFormProps,getInputProps:O.value.renderer.getInputProps,getItemProps:O.value.renderer.getItemProps,getLabelProps:O.value.renderer.getLabelProps,getListProps:O.value.renderer.getListProps,getPanelProps:O.value.renderer.getPanelProps,getRootProps:O.value.renderer.getRootProps},w={setActiveItemId:S.value.setActiveItemId,setQuery:S.value.setQuery,setCollections:S.value.setCollections,setIsOpen:S.value.setIsOpen,setStatus:S.value.setStatus,setContext:S.value.setContext,refresh:S.value.refresh,navigator:S.value.navigator},I=m((function(){return Ct.bind(O.value.renderer.renderer.createElement)})),A=m((function(){return Gt({autocomplete:S.value,autocompleteScopeApi:w,classNames:O.value.renderer.classNames,environment:O.value.core.environment,isDetached:_.value,placeholder:O.value.core.placeholder,propGetters:P,setIsModalOpen:k,state:j.current,translations:O.value.renderer.translations})}));function E(){Ht(A.value.panel,{style:_.value?{}:yr({panelPlacement:O.value.renderer.panelPlacement,container:A.value.root,form:A.value.form,environment:O.value.core.environment})})}function D(e){j.current=e;var t={autocomplete:S.value,autocompleteScopeApi:w,classNames:O.value.renderer.classNames,components:O.value.renderer.components,container:O.value.renderer.container,html:I.value,dom:A.value,panelContainer:_.value?A.value.detachedContainer:O.value.renderer.panelContainer,propGetters:P,state:j.current,renderer:O.value.renderer.renderer},r=!b(e)&&!y.current&&O.value.renderer.renderNoResults||O.value.renderer.render;!function(e){var t=e.autocomplete,r=e.autocompleteScopeApi,o=e.dom,i=e.propGetters,u=e.state;Vt(o.root,i.getRootProps(n({state:u,props:t.getRootProps({})},r))),Vt(o.input,i.getInputProps(n({state:u,props:t.getInputProps({inputElement:o.input}),inputElement:o.input},r))),Ht(o.label,{hidden:"stalled"===u.status}),Ht(o.loadingIndicator,{hidden:"stalled"!==u.status}),Ht(o.clearButton,{hidden:!u.query}),Ht(o.detachedSearchButtonQuery,{textContent:u.query}),Ht(o.detachedSearchButtonPlaceholder,{hidden:Boolean(u.query)})}(t),function(e,t){var r=t.autocomplete,o=t.autocompleteScopeApi,u=t.classNames,a=t.html,l=t.dom,c=t.panelContainer,s=t.propGetters,f=t.state,p=t.components,m=t.renderer;if(f.isOpen){c.contains(l.panel)||"loading"===f.status||c.appendChild(l.panel),l.panel.classList.toggle("aa-Panel--stalled","stalled"===f.status);var v=f.collections.filter((function(e){var t=e.source,n=e.items;return t.templates.noResults||n.length>0})).map((function(e,t){var l=e.source,c=e.items;return m.createElement("section",{key:t,className:u.source,"data-autocomplete-source-id":l.sourceId},l.templates.header&&m.createElement("div",{className:u.sourceHeader},l.templates.header({components:p,createElement:m.createElement,Fragment:m.Fragment,items:c,source:l,state:f,html:a})),l.templates.noResults&&0===c.length?m.createElement("div",{className:u.sourceNoResults},l.templates.noResults({components:p,createElement:m.createElement,Fragment:m.Fragment,source:l,state:f,html:a})):m.createElement("ul",i({className:u.list},s.getListProps(n({state:f,props:r.getListProps({source:l})},o))),c.map((function(e){var t=r.getItemProps({item:e,source:l});return m.createElement("li",i({key:t.id,className:u.item},s.getItemProps(n({state:f,props:t},o))),l.templates.item({components:p,createElement:m.createElement,Fragment:m.Fragment,item:e,state:f,html:a}))}))),l.templates.footer&&m.createElement("div",{className:u.sourceFooter},l.templates.footer({components:p,createElement:m.createElement,Fragment:m.Fragment,items:c,source:l,state:f,html:a})))})),d=m.createElement(m.Fragment,null,m.createElement("div",{className:u.panelLayout},v),m.createElement("div",{className:"aa-GradientBottom"})),y=v.reduce((function(e,t){return e[t.props["data-autocomplete-source-id"]]=t,e}),{});e(n(n({children:d,state:f,sections:v,elements:y},m),{},{components:p,html:a},o),l.panel)}else c.contains(l.panel)&&c.removeChild(l.panel)}(r,t)}function C(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};l();var t=O.value.renderer,n=t.components,r=u(t,gr);g.current=qt(r,O.value.core,{components:Bt(n,(function(e){return!e.value.hasOwnProperty("__autocomplete_componentName")})),initialState:j.current},e),v(),c(),S.value.refresh().then((function(){D(j.current)}))}function k(e){requestAnimationFrame((function(){var t=O.value.core.environment.document.body.contains(A.value.detachedOverlay);e!==t&&(e?(O.value.core.environment.document.body.appendChild(A.value.detachedOverlay),O.value.core.environment.document.body.classList.add("aa-Detached"),A.value.input.focus()):(O.value.core.environment.document.body.removeChild(A.value.detachedOverlay),O.value.core.environment.document.body.classList.remove("aa-Detached")))}))}return a((function(){var e=S.value.getEnvironmentProps({formElement:A.value.form,panelElement:A.value.panel,inputElement:A.value.input});return Ht(O.value.core.environment,e),function(){Ht(O.value.core.environment,Object.keys(e).reduce((function(e,t){return n(n({},e),{},o({},t,void 0))}),{}))}})),a((function(){var e=_.value?O.value.core.environment.document.body:O.value.renderer.panelContainer,t=_.value?A.value.detachedOverlay:A.value.panel;return _.value&&j.current.isOpen&&k(!0),D(j.current),function(){e.contains(t)&&e.removeChild(t)}})),a((function(){var e=O.value.renderer.container;return e.appendChild(A.value.root),function(){e.removeChild(A.value.root)}})),a((function(){var e=p((function(e){D(e.state)}),0);return h.current=function(t){var n=t.state,r=t.prevState;(_.value&&r.isOpen!==n.isOpen&&k(n.isOpen),_.value||!n.isOpen||r.isOpen||E(),n.query!==r.query)&&O.value.core.environment.document.querySelectorAll(".aa-Panel--scrollable").forEach((function(e){0!==e.scrollTop&&(e.scrollTop=0)}));e({state:n})},function(){h.current=void 0}})),a((function(){var e=p((function(){var e=_.value;_.value=O.value.core.environment.matchMedia(O.value.renderer.detachedMediaQuery).matches,e!==_.value?C({}):requestAnimationFrame(E)}),20);return O.value.core.environment.addEventListener("resize",e),function(){O.value.core.environment.removeEventListener("resize",e)}})),a((function(){if(!_.value)return function(){};function e(e){A.value.detachedContainer.classList.toggle("aa-DetachedContainer--modal",e)}function t(t){e(t.matches)}var n=O.value.core.environment.matchMedia(getComputedStyle(O.value.core.environment.document.documentElement).getPropertyValue("--aa-detached-modal-media-query"));e(n.matches);var r=Boolean(n.addEventListener);return r?n.addEventListener("change",t):n.addListener(t),function(){r?n.removeEventListener("change",t):n.removeListener(t)}})),a((function(){return requestAnimationFrame(E),function(){}})),n(n({},w),{},{update:C,destroy:function(){l()}})},e.getAlgoliaFacets=function(e){var t=hr({transformResponse:function(e){return e.facetHits}}),r=e.queries.map((function(e){return n(n({},e),{},{type:"facet"})}));return t(n(n({},e),{},{queries:r}))},e.getAlgoliaResults=Or,Object.defineProperty(e,"__esModule",{value:!0})})); diff --git a/site_libs/quarto-search/quarto-search.js b/site_libs/quarto-search/quarto-search.js index f5d852d..5f723d7 100644 --- a/site_libs/quarto-search/quarto-search.js +++ b/site_libs/quarto-search/quarto-search.js @@ -43,7 +43,7 @@ window.document.addEventListener("DOMContentLoaded", function (_event) { const mainEl = window.document.querySelector("main"); // highlight matches on the page - if (query !== null && mainEl) { + if (query && mainEl) { // perform any highlighting highlight(escapeRegExp(query), mainEl); @@ -57,7 +57,7 @@ window.document.addEventListener("DOMContentLoaded", function (_event) { // (e.g. if the user edits the query or clears it) let highlighting = true; const resetHighlighting = (searchTerm) => { - if (mainEl && highlighting && query !== null && searchTerm !== query) { + if (mainEl && highlighting && query && searchTerm !== query) { clearHighlight(query, mainEl); highlighting = false; } @@ -98,6 +98,7 @@ window.document.addEventListener("DOMContentLoaded", function (_event) { classNames: { form: "d-flex", }, + placeholder: language["search-text-placeholder"], translations: { clearButtonTitle: language["search-clear-button-title"], detachedCancelButtonText: language["search-detached-cancel-button-title"], @@ -110,6 +111,8 @@ window.document.addEventListener("DOMContentLoaded", function (_event) { return item.href; }, onStateChange({ state }) { + // If this is a file URL, note that + // Perhaps reset highlighting resetHighlighting(state.query); @@ -359,7 +362,8 @@ window.document.addEventListener("DOMContentLoaded", function (_event) { state, setActiveItemId, setContext, - refresh + refresh, + quartoSearchOptions ); }, }, @@ -374,6 +378,32 @@ window.document.addEventListener("DOMContentLoaded", function (_event) { focusSearchInput(); }; + document.addEventListener("keyup", (event) => { + const { key } = event; + const kbds = quartoSearchOptions["keyboard-shortcut"]; + const focusedEl = document.activeElement; + + const isFormElFocused = [ + "input", + "select", + "textarea", + "button", + "option", + ].find((tag) => { + return focusedEl.tagName.toLowerCase() === tag; + }); + + if ( + kbds && + kbds.includes(key) && + !isFormElFocused && + !document.activeElement.isContentEditable + ) { + event.preventDefault(); + window.quartoOpenSearch(); + } + }); + // Remove the labeleledby attribute since it is pointing // to a non-existent label if (quartoSearchOptions.type === "overlay") { @@ -385,11 +415,30 @@ window.document.addEventListener("DOMContentLoaded", function (_event) { } } + function throttle(func, wait) { + let waiting = false; + return function () { + if (!waiting) { + func.apply(this, arguments); + waiting = true; + setTimeout(function () { + waiting = false; + }, wait); + } + }; + } + // If the main document scrolls dismiss the search results // (otherwise, since they're floating in the document they can scroll with the document) - window.document.body.onscroll = () => { - setIsOpen(false); - }; + window.document.body.onscroll = throttle(() => { + // Only do this if we're not detached + // Bug #7117 + // This will happen when the keyboard is shown on ios (resulting in a scroll) + // which then closed the search UI + if (!window.matchMedia(detachedMediaQuery).matches) { + setIsOpen(false); + } + }, 50); if (showSearchResults) { setIsOpen(true); @@ -429,15 +478,27 @@ function configurePlugins(quartoSearchOptions) { const algoliaInsightsPlugin = createAlgoliaInsightsPlugin({ insightsClient: window.aa, onItemsChange({ insights, insightsEvents }) { - const events = insightsEvents.map((event) => { - const maxEvents = event.objectIDs.slice(0, 20); - return { - ...event, - objectIDs: maxEvents, - }; + const events = insightsEvents.flatMap((event) => { + // This API limits the number of items per event to 20 + const chunkSize = 20; + const itemChunks = []; + const eventItems = event.items; + for (let i = 0; i < eventItems.length; i += chunkSize) { + itemChunks.push(eventItems.slice(i, i + chunkSize)); + } + // Split the items into multiple events that can be sent + const events = itemChunks.map((items) => { + return { + ...event, + items, + }; + }); + return events; }); - insights.viewedObjectIDs(...events); + for (const event of events) { + insights.viewedObjectIDs(event); + } }, }); return algoliaInsightsPlugin; @@ -613,20 +674,30 @@ function showCopyLink(query, options) { /* Search Index Handling */ // create the index var fuseIndex = undefined; +var shownWarning = false; + +// fuse index options +const kFuseIndexOptions = { + keys: [ + { name: "title", weight: 20 }, + { name: "section", weight: 20 }, + { name: "text", weight: 10 }, + ], + ignoreLocation: true, + threshold: 0.1, +}; + async function readSearchData() { // Initialize the search index on demand if (fuseIndex === undefined) { - // create fuse index - const options = { - keys: [ - { name: "title", weight: 20 }, - { name: "section", weight: 20 }, - { name: "text", weight: 10 }, - ], - ignoreLocation: true, - threshold: 0.1, - }; - const fuse = new window.Fuse([], options); + if (window.location.protocol === "file:" && !shownWarning) { + window.alert( + "Search requires JavaScript features disabled when running in file://... URLs. In order to use search, please run this document in a web server." + ); + shownWarning = true; + return; + } + const fuse = new window.Fuse([], kFuseIndexOptions); // fetch the main search.json const response = await fetch(offsetURL("search.json")); @@ -646,6 +717,7 @@ async function readSearchData() { ); } } + return fuseIndex; } @@ -674,7 +746,8 @@ function renderItem( state, setActiveItemId, setContext, - refresh + refresh, + quartoSearchOptions ) { switch (item.type) { case kItemTypeDoc: @@ -684,7 +757,9 @@ function renderItem( item.title, item.section, item.text, - item.href + item.href, + item.crumbs, + quartoSearchOptions ); case kItemTypeMore: return createMoreCard( @@ -709,15 +784,46 @@ function renderItem( } } -function createDocumentCard(createElement, icon, title, section, text, href) { +function createDocumentCard( + createElement, + icon, + title, + section, + text, + href, + crumbs, + quartoSearchOptions +) { const iconEl = createElement("i", { class: `bi bi-${icon} search-result-icon`, }); const titleEl = createElement("p", { class: "search-result-title" }, title); + const titleContents = [iconEl, titleEl]; + const showParent = quartoSearchOptions["show-item-context"]; + if (crumbs && showParent) { + let crumbsOut = undefined; + const crumbClz = ["search-result-crumbs"]; + if (showParent === "root") { + crumbsOut = crumbs.length > 1 ? crumbs[0] : undefined; + } else if (showParent === "parent") { + crumbsOut = crumbs.length > 1 ? crumbs[crumbs.length - 2] : undefined; + } else { + crumbsOut = crumbs.length > 1 ? crumbs.join(" > ") : undefined; + crumbClz.push("search-result-crumbs-wrap"); + } + + const crumbEl = createElement( + "p", + { class: crumbClz.join(" ") }, + crumbsOut + ); + titleContents.push(crumbEl); + } + const titleContainerEl = createElement( "div", { class: "search-result-title-container" }, - [iconEl, titleEl] + titleContents ); const textEls = []; @@ -1099,17 +1205,19 @@ function algoliaSearch(query, limit, algoliaOptions) { const remappedHits = response.hits.map((hit) => { return hit.map((item) => { const newItem = { ...item }; - ["href", "section", "title", "text"].forEach((keyName) => { - const mappedName = indexFields[keyName]; - if ( - mappedName && - item[mappedName] !== undefined && - mappedName !== keyName - ) { - newItem[keyName] = item[mappedName]; - delete newItem[mappedName]; + ["href", "section", "title", "text", "crumbs"].forEach( + (keyName) => { + const mappedName = indexFields[keyName]; + if ( + mappedName && + item[mappedName] !== undefined && + mappedName !== keyName + ) { + newItem[keyName] = item[mappedName]; + delete newItem[mappedName]; + } } - }); + ); newItem.text = highlightMatch(query, newItem.text); return newItem; }); @@ -1120,8 +1228,34 @@ function algoliaSearch(query, limit, algoliaOptions) { }); } -function fuseSearch(query, fuse, fuseOptions) { - return fuse.search(query, fuseOptions).map((result) => { +let subSearchTerm = undefined; +let subSearchFuse = undefined; +const kFuseMaxWait = 125; + +async function fuseSearch(query, fuse, fuseOptions) { + let index = fuse; + // Fuse.js using the Bitap algorithm for text matching which runs in + // O(nm) time (no matter the structure of the text). In our case this + // means that long search terms mixed with large index gets very slow + // + // This injects a subIndex that will be used once the terms get long enough + // Usually making this subindex is cheap since there will typically be + // a subset of results matching the existing query + if (subSearchFuse !== undefined && query.startsWith(subSearchTerm)) { + // Use the existing subSearchFuse + index = subSearchFuse; + } else if (subSearchFuse !== undefined) { + // The term changed, discard the existing fuse + subSearchFuse = undefined; + subSearchTerm = undefined; + } + + // Search using the active fuse + const then = performance.now(); + const resultsRaw = await index.search(query, fuseOptions); + const now = performance.now(); + + const results = resultsRaw.map((result) => { const addParam = (url, name, value) => { const anchorParts = url.split("#"); const baseUrl = anchorParts[0]; @@ -1135,6 +1269,18 @@ function fuseSearch(query, fuse, fuseOptions) { section: result.item.section, href: addParam(result.item.href, kQueryArg, query), text: highlightMatch(query, result.item.text), + crumbs: result.item.crumbs, }; }); + + // If we don't have a subfuse and the query is long enough, go ahead + // and create a subfuse to use for subsequent queries + if (now - then > kFuseMaxWait && subSearchFuse === undefined) { + subSearchTerm = query; + subSearchFuse = new window.Fuse([], kFuseIndexOptions); + resultsRaw.forEach((rr) => { + subSearchFuse.add(rr.item); + }); + } + return results; } diff --git a/sitemap.xml b/sitemap.xml index 962f021..56fac42 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -1,107 +1,119 @@ - https://data.scorenetwork.org/esports/lol-buff-nerf.html - 2023-08-03T21:58:24.225Z + https://data.scorenetwork.org/data-sources.html + 2024-03-05T15:06:01.023Z - https://data.scorenetwork.org/wrestling/sumo_wrestingling_since_1957.html - 2023-08-03T21:58:21.241Z + https://data.scorenetwork.org/lacrosse/lacrosse_ncaa_div1.html + 2024-03-05T15:06:01.071Z - https://data.scorenetwork.org/hockey/phf-shots.html - 2023-08-03T21:58:20.149Z + https://data.scorenetwork.org/motor_sports/NASCAR_driver_ratings.html + 2024-03-05T15:06:01.071Z - https://data.scorenetwork.org/baseball/verlander-pitches.html - 2023-08-03T21:58:19.085Z + https://data.scorenetwork.org/tennis/wta-grand-slam-matches.html + 2024-03-05T15:06:01.075Z - https://data.scorenetwork.org/tennis/australian-open.html - 2023-08-03T21:58:18.005Z + https://data.scorenetwork.org/running/boston_marathon_2023.html + 2024-03-05T15:06:01.071Z - https://data.scorenetwork.org/volleyball/volleyball_ncaa_team_stats.html - 2023-08-03T21:58:16.869Z + https://data.scorenetwork.org/soccer/D3_wsoc2022.html + 2024-03-05T15:06:01.071Z - https://data.scorenetwork.org/basketball/wnba-shots.html - 2023-08-03T21:58:15.717Z + https://data.scorenetwork.org/hockey/nhl_powerplay.html + 2024-03-05T15:06:01.071Z - https://data.scorenetwork.org/soccer/nwsl-team-stats.html - 2023-08-03T21:58:14.729Z + https://data.scorenetwork.org/hockey/phf-shots.html + 2024-03-05T15:06:01.071Z - https://data.scorenetwork.org/football/nfl-draft-combine.html - 2023-08-03T21:58:13.537Z + https://data.scorenetwork.org/golf/pga_drive_putt.html + 2024-03-05T15:06:01.071Z - https://data.scorenetwork.org/motor_sports/NASCAR_driver_ratings.html - 2023-08-03T21:58:12.541Z + https://data.scorenetwork.org/basketball/wnba-shots.html + 2024-03-05T15:06:01.023Z - https://data.scorenetwork.org/golf/pga_drive_putt.html - 2023-08-03T21:58:11.353Z + https://data.scorenetwork.org/basketball/WNBA20Yrs.html + 2024-03-05T15:06:01.023Z - https://data.scorenetwork.org/data-sources.html - 2023-08-03T21:58:10.397Z + https://data.scorenetwork.org/esports/lol-buff-nerf.html + 2024-03-05T15:06:01.071Z - https://data.scorenetwork.org/lacrosse/lacrosse_pll_vs_nll.html - 2023-08-03T21:58:09.217Z + https://data.scorenetwork.org/baseball/verlander-pitches.html + 2024-03-05T15:06:01.023Z - https://data.scorenetwork.org/running/boston_marathon_2023.html - 2023-08-03T21:58:08.348Z + https://data.scorenetwork.org/football/nfl-draft-combine.html + 2024-03-05T15:06:01.071Z - https://data.scorenetwork.org/lacrosse/lacrosse_ncaa_div1.html - 2023-08-03T21:58:10.001Z + https://data.scorenetwork.org/by-statsds-topic.html + 2024-03-05T15:06:01.023Z + + + https://data.scorenetwork.org/football/nfl-team-statistics.html + 2024-03-05T15:06:01.071Z https://data.scorenetwork.org/index.html - 2023-08-03T21:58:10.793Z + 2024-03-05T15:06:01.071Z https://data.scorenetwork.org/softball/softball_d1_2021-2022.html - 2023-08-03T21:58:11.997Z + 2024-03-05T15:06:01.075Z https://data.scorenetwork.org/triathlon/triathlon_lakeplacid_women_ironman.html - 2023-08-03T21:58:13.081Z + 2024-03-05T15:06:01.075Z - https://data.scorenetwork.org/football/nfl-team-statistics.html - 2023-08-03T21:58:14.193Z + https://data.scorenetwork.org/basketball/nba-player-stats.html + 2024-03-05T15:06:01.023Z - https://data.scorenetwork.org/soccer/soccer-heights.html - 2023-08-03T21:58:15.181Z + https://data.scorenetwork.org/volleyball/volleyball_ncaa_team_stats.html + 2024-03-05T15:06:01.075Z - https://data.scorenetwork.org/basketball/nba-player-stats.html - 2023-08-03T21:58:16.289Z + https://data.scorenetwork.org/hockey/nhl_2223.html + 2024-03-05T15:06:01.071Z - https://data.scorenetwork.org/tennis/wta-grand-slam-matches.html - 2023-08-03T21:58:17.453Z + https://data.scorenetwork.org/hockey/nhl-shots.html + 2024-03-05T15:06:01.071Z - https://data.scorenetwork.org/submit-data.html - 2023-08-03T21:58:18.557Z + https://data.scorenetwork.org/soccer/nwsl-team-stats.html + 2024-03-05T15:06:01.071Z - https://data.scorenetwork.org/hockey/nhl_powerplay.html - 2023-08-03T21:58:19.597Z + https://data.scorenetwork.org/soccer/soccer-heights.html + 2024-03-05T15:06:01.075Z - https://data.scorenetwork.org/hockey/nhl-shots.html - 2023-08-03T21:58:20.725Z + https://data.scorenetwork.org/tennis/australian-open.html + 2024-03-05T15:06:01.075Z - https://data.scorenetwork.org/by-statsds-topic.html - 2023-08-03T21:58:23.709Z + https://data.scorenetwork.org/submit-data.html + 2024-03-05T15:06:01.075Z + + + https://data.scorenetwork.org/wrestling/sumo_wrestingling_since_1957.html + 2024-03-05T15:06:01.075Z + + + https://data.scorenetwork.org/lacrosse/lacrosse_pll_vs_nll.html + 2024-03-05T15:06:01.071Z diff --git a/soccer/D3_wsoc2022.html b/soccer/D3_wsoc2022.html new file mode 100644 index 0000000..b4fcdc6 --- /dev/null +++ b/soccer/D3_wsoc2022.html @@ -0,0 +1,996 @@ + + + + + + + + + + + +SCORE Sports Data Repository - 2022 Divison III Women’s Soccer Results + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+ +
+ + +
+ + + +
+ +
+
+

2022 Divison III Women’s Soccer Results

+
+
Correlation
+
Chi-square test for association
+
+
+ +
+
+ Division III women’s soccer teams game results from 2022 season +
+
+ + +
+ +
+
Author
+
+

Hope Donoghue, Robin Lock

+
+
+ + + +
+ + + +
+ + +
+

Motivation

+

Have you ever wondered if you know how many goals the home team scored in a soccer game then can you predict how many goals the opponent scored? Is there a relationship between this? With this data set on NCAA Division III women’s soccer data from the 2022 season you will be able to explore this question.

+
+
+

Data

+

The data set consists of 3753 games among 431 teams in the 2022 Division III women’s soccer season. Each row represents one game in the season.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
D3_wsoc2022.csv
VariableDescription
away_teamName away team
away_scoreThe number of goals the away team scored in game
home_teamName of home team
home_scoreThe number of goals the home team scored in game
dateDate of game
+
+
+

Questions

+
    +
  1. Do you think the correlation value for Home Score vs. Away Score will be negative or positive? Explain your answer.

  2. +
  3. Find the correlation value for Home Score vs. Away Score from the data set. Interpret the correlation value in context.

  4. +
  5. Perform a test for association to see if the correlation value from above is statistically significant. Make sure to state the hypotheses clearly.

  6. +
  7. Describe the distribution of home scores or away scores. Would a normal (symmetric, bell-shaped) distribution be reasonable for scores?

  8. +
  9. There are a lot of games in the data set with many different scorelines that range from 0-0 all the way to 18-0. But there are very few games with high scores. Treat the scores as categories, but lump all of the larger scores into one category (e.g. 0, 1, 2, 3 or more). Create a two-way contingency table of home vs, away scores using these categories and test for an association.

  10. +
+
+
+

References

+

Data web scraped from the D3soccer.com website. https://www.d3soccer.com/seasons/women/2022/schedule

+ + +
+ +
+ +
+ + + + + + \ No newline at end of file diff --git a/soccer/nwsl-team-stats.html b/soccer/nwsl-team-stats.html index c87bd5a..5afb23b 100644 --- a/soccer/nwsl-team-stats.html +++ b/soccer/nwsl-team-stats.html @@ -2,7 +2,7 @@ - + @@ -48,7 +48,13 @@ "collapse-after": 3, "panel-placement": "end", "type": "overlay", - "limit": 20, + "limit": 50, + "keyboard-shortcut": [ + "f", + "/", + "s" + ], + "show-item-context": false, "language": { "search-no-results-text": "No results", "search-matching-documents-text": "matching documents", @@ -57,6 +63,7 @@ "search-more-match-text": "more match in this document", "search-more-matches-text": "more matches in this document", "search-clear-button-title": "Clear", + "search-text-placeholder": "", "search-detached-cancel-button-title": "Cancel", "search-submit-button-title": "Submit", "search-label": "Search" @@ -70,9 +77,9 @@
-
-
-
+
-
+

National Women’s Soccer League Team Statistics

@@ -509,8 +534,10 @@

National Women’s Soccer League Team Statistics

+
+

Motivation

The National Women’s Soccer League (NWSL) is the top professional women’s soccer league in the United States. While a team’s record ultimately determines their ranking, goal differential (goals scored - goals conceded) is often a better indicator of a team’s ability. But what aspects of a team’s performance are related to their goal differential? The NWSL records a variety of statistics describing a team’s performance, such as the percentage of time they maintain possession, percentage of shots on target, etc. With this dataset, you can explore variation between teams as well as which statistics are relevant predictor variables of goal differential.

@@ -677,10 +704,9 @@

References

// clear code selection e.clearSelection(); }); - function tippyHover(el, contentFn) { + function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) { const config = { allowHTML: true, - content: contentFn, maxWidth: 500, delay: 100, arrow: false, @@ -690,8 +716,17 @@

References

interactive: true, interactiveBorder: 10, theme: 'quarto', - placement: 'bottom-start' + placement: 'bottom-start', }; + if (contentFn) { + config.content = contentFn; + } + if (onTriggerFn) { + config.onTrigger = onTriggerFn; + } + if (onUntriggerFn) { + config.onUntrigger = onUntriggerFn; + } window.tippy(el, config); } const noterefs = window.document.querySelectorAll('a[role="doc-noteref"]'); @@ -705,6 +740,125 @@

References

const note = window.document.getElementById(id); return note.innerHTML; }); + } + const xrefs = window.document.querySelectorAll('a.quarto-xref'); + const processXRef = (id, note) => { + // Strip column container classes + const stripColumnClz = (el) => { + el.classList.remove("page-full", "page-columns"); + if (el.children) { + for (const child of el.children) { + stripColumnClz(child); + } + } + } + stripColumnClz(note) + if (id === null || id.startsWith('sec-')) { + // Special case sections, only their first couple elements + const container = document.createElement("div"); + if (note.children && note.children.length > 2) { + container.appendChild(note.children[0].cloneNode(true)); + for (let i = 1; i < note.children.length; i++) { + const child = note.children[i]; + if (child.tagName === "P" && child.innerText === "") { + continue; + } else { + container.appendChild(child.cloneNode(true)); + break; + } + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(container); + } + return container.innerHTML + } else { + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + return note.innerHTML; + } + } else { + // Remove any anchor links if they are present + const anchorLink = note.querySelector('a.anchorjs-link'); + if (anchorLink) { + anchorLink.remove(); + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + // TODO in 1.5, we should make sure this works without a callout special case + if (note.classList.contains("callout")) { + return note.outerHTML; + } else { + return note.innerHTML; + } + } + } + for (var i=0; i res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.getElementById(id); + if (note !== null) { + const html = processXRef(id, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + } else { + // See if we can fetch a full url (with no hash to target) + // This is a special case and we should probably do some content thinning / targeting + fetch(url) + .then(res => res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.querySelector('main.content'); + if (note !== null) { + // This should only happen for chapter cross references + // (since there is no id in the URL) + // remove the first header + if (note.children.length > 0 && note.children[0].tagName === "HEADER") { + note.children[0].remove(); + } + const html = processXRef(null, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + }, function(instance) { + }); } let selectedAnnoteEl; const selectorForAnnotation = ( cell, annotation) => { @@ -747,6 +901,7 @@

References

} div.style.top = top - 2 + "px"; div.style.height = height + 4 + "px"; + div.style.left = 0; let gutterDiv = window.document.getElementById("code-annotation-line-highlight-gutter"); if (gutterDiv === null) { gutterDiv = window.document.createElement("div"); @@ -772,6 +927,32 @@

References

}); selectedAnnoteEl = undefined; }; + // Handle positioning of the toggle + window.addEventListener( + "resize", + throttle(() => { + elRect = undefined; + if (selectedAnnoteEl) { + selectCodeLines(selectedAnnoteEl); + } + }, 10) + ); + function throttle(fn, ms) { + let throttle = false; + let timer; + return (...args) => { + if(!throttle) { // first call gets through + fn.apply(this, args); + throttle = true; + } else { // all the others get throttled + if(timer) clearTimeout(timer); // cancel #2 + timer = setTimeout(() => { + fn.apply(this, args); + timer = throttle = false; + }, ms); + } + }; + } // Attach click handler to the DT const annoteDls = window.document.querySelectorAll('dt[data-target-cell]'); for (const annoteDlNode of annoteDls) { @@ -837,7 +1018,9 @@

References

- + @@ -846,4 +1029,5 @@

References

+ \ No newline at end of file diff --git a/soccer/soccer-heights.html b/soccer/soccer-heights.html index 5efc1e9..1f32c1e 100644 --- a/soccer/soccer-heights.html +++ b/soccer/soccer-heights.html @@ -2,7 +2,7 @@ - + @@ -48,7 +48,13 @@ "collapse-after": 3, "panel-placement": "end", "type": "overlay", - "limit": 20, + "limit": 50, + "keyboard-shortcut": [ + "f", + "/", + "s" + ], + "show-item-context": false, "language": { "search-no-results-text": "No results", "search-matching-documents-text": "matching documents", @@ -57,6 +63,7 @@ "search-more-match-text": "more match in this document", "search-more-matches-text": "more matches in this document", "search-clear-button-title": "Clear", + "search-text-placeholder": "", "search-detached-cancel-button-title": "Cancel", "search-submit-button-title": "Submit", "search-label": "Search" @@ -70,9 +77,9 @@
-
-
-
+
-
+

Soccer Heights

@@ -509,8 +534,10 @@

Soccer Heights

+
+

Motivation

A researcher wants to investigate whether there are differences among the mean height for different positions (Goalkeeper, Defender, Midfield, Attack, or Missing) of soccer players. Goalkeepers are typically thought to be taller than other positions to make up in wingspan to cover the goal better. The dataset contains information on each player including their name, position, preferred foot, and height. For this analysis, only the position and height of the player will be used. A sample of 20 players was taken from each position for this analysis.

@@ -641,10 +668,9 @@

References

// clear code selection e.clearSelection(); }); - function tippyHover(el, contentFn) { + function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) { const config = { allowHTML: true, - content: contentFn, maxWidth: 500, delay: 100, arrow: false, @@ -654,8 +680,17 @@

References

interactive: true, interactiveBorder: 10, theme: 'quarto', - placement: 'bottom-start' + placement: 'bottom-start', }; + if (contentFn) { + config.content = contentFn; + } + if (onTriggerFn) { + config.onTrigger = onTriggerFn; + } + if (onUntriggerFn) { + config.onUntrigger = onUntriggerFn; + } window.tippy(el, config); } const noterefs = window.document.querySelectorAll('a[role="doc-noteref"]'); @@ -669,6 +704,125 @@

References

const note = window.document.getElementById(id); return note.innerHTML; }); + } + const xrefs = window.document.querySelectorAll('a.quarto-xref'); + const processXRef = (id, note) => { + // Strip column container classes + const stripColumnClz = (el) => { + el.classList.remove("page-full", "page-columns"); + if (el.children) { + for (const child of el.children) { + stripColumnClz(child); + } + } + } + stripColumnClz(note) + if (id === null || id.startsWith('sec-')) { + // Special case sections, only their first couple elements + const container = document.createElement("div"); + if (note.children && note.children.length > 2) { + container.appendChild(note.children[0].cloneNode(true)); + for (let i = 1; i < note.children.length; i++) { + const child = note.children[i]; + if (child.tagName === "P" && child.innerText === "") { + continue; + } else { + container.appendChild(child.cloneNode(true)); + break; + } + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(container); + } + return container.innerHTML + } else { + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + return note.innerHTML; + } + } else { + // Remove any anchor links if they are present + const anchorLink = note.querySelector('a.anchorjs-link'); + if (anchorLink) { + anchorLink.remove(); + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + // TODO in 1.5, we should make sure this works without a callout special case + if (note.classList.contains("callout")) { + return note.outerHTML; + } else { + return note.innerHTML; + } + } + } + for (var i=0; i res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.getElementById(id); + if (note !== null) { + const html = processXRef(id, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + } else { + // See if we can fetch a full url (with no hash to target) + // This is a special case and we should probably do some content thinning / targeting + fetch(url) + .then(res => res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.querySelector('main.content'); + if (note !== null) { + // This should only happen for chapter cross references + // (since there is no id in the URL) + // remove the first header + if (note.children.length > 0 && note.children[0].tagName === "HEADER") { + note.children[0].remove(); + } + const html = processXRef(null, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + }, function(instance) { + }); } let selectedAnnoteEl; const selectorForAnnotation = ( cell, annotation) => { @@ -711,6 +865,7 @@

References

} div.style.top = top - 2 + "px"; div.style.height = height + 4 + "px"; + div.style.left = 0; let gutterDiv = window.document.getElementById("code-annotation-line-highlight-gutter"); if (gutterDiv === null) { gutterDiv = window.document.createElement("div"); @@ -736,6 +891,32 @@

References

}); selectedAnnoteEl = undefined; }; + // Handle positioning of the toggle + window.addEventListener( + "resize", + throttle(() => { + elRect = undefined; + if (selectedAnnoteEl) { + selectCodeLines(selectedAnnoteEl); + } + }, 10) + ); + function throttle(fn, ms) { + let throttle = false; + let timer; + return (...args) => { + if(!throttle) { // first call gets through + fn.apply(this, args); + throttle = true; + } else { // all the others get throttled + if(timer) clearTimeout(timer); // cancel #2 + timer = setTimeout(() => { + fn.apply(this, args); + timer = throttle = false; + }, ms); + } + }; + } // Attach click handler to the DT const annoteDls = window.document.querySelectorAll('dt[data-target-cell]'); for (const annoteDlNode of annoteDls) { @@ -801,7 +982,9 @@

References

- + @@ -810,4 +993,5 @@

References

+ \ No newline at end of file diff --git a/softball/softball_d1_2021-2022.html b/softball/softball_d1_2021-2022.html index e4bd1ad..37bab79 100644 --- a/softball/softball_d1_2021-2022.html +++ b/softball/softball_d1_2021-2022.html @@ -2,7 +2,7 @@ - + @@ -48,7 +48,13 @@ "collapse-after": 3, "panel-placement": "end", "type": "overlay", - "limit": 20, + "limit": 50, + "keyboard-shortcut": [ + "f", + "/", + "s" + ], + "show-item-context": false, "language": { "search-no-results-text": "No results", "search-matching-documents-text": "matching documents", @@ -57,6 +63,7 @@ "search-more-match-text": "more match in this document", "search-more-matches-text": "more matches in this document", "search-clear-button-title": "Clear", + "search-text-placeholder": "", "search-detached-cancel-button-title": "Cancel", "search-submit-button-title": "Submit", "search-label": "Search" @@ -70,9 +77,9 @@
-
-
-
+
-
+

Batting Statistics for Division I Softball

@@ -510,8 +535,10 @@

Batting Statistics for Division I Softball

+
+

Motivation

Data for a particular sport is often stored across numerous locations. For example, in NCAA Division I Softball, batting statistics for each season are typically stored in separate tables. (See for example the statistics hosted by https://d1softball.com/)

@@ -733,10 +760,9 @@

References

// clear code selection e.clearSelection(); }); - function tippyHover(el, contentFn) { + function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) { const config = { allowHTML: true, - content: contentFn, maxWidth: 500, delay: 100, arrow: false, @@ -746,8 +772,17 @@

References

interactive: true, interactiveBorder: 10, theme: 'quarto', - placement: 'bottom-start' + placement: 'bottom-start', }; + if (contentFn) { + config.content = contentFn; + } + if (onTriggerFn) { + config.onTrigger = onTriggerFn; + } + if (onUntriggerFn) { + config.onUntrigger = onUntriggerFn; + } window.tippy(el, config); } const noterefs = window.document.querySelectorAll('a[role="doc-noteref"]'); @@ -761,6 +796,125 @@

References

const note = window.document.getElementById(id); return note.innerHTML; }); + } + const xrefs = window.document.querySelectorAll('a.quarto-xref'); + const processXRef = (id, note) => { + // Strip column container classes + const stripColumnClz = (el) => { + el.classList.remove("page-full", "page-columns"); + if (el.children) { + for (const child of el.children) { + stripColumnClz(child); + } + } + } + stripColumnClz(note) + if (id === null || id.startsWith('sec-')) { + // Special case sections, only their first couple elements + const container = document.createElement("div"); + if (note.children && note.children.length > 2) { + container.appendChild(note.children[0].cloneNode(true)); + for (let i = 1; i < note.children.length; i++) { + const child = note.children[i]; + if (child.tagName === "P" && child.innerText === "") { + continue; + } else { + container.appendChild(child.cloneNode(true)); + break; + } + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(container); + } + return container.innerHTML + } else { + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + return note.innerHTML; + } + } else { + // Remove any anchor links if they are present + const anchorLink = note.querySelector('a.anchorjs-link'); + if (anchorLink) { + anchorLink.remove(); + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + // TODO in 1.5, we should make sure this works without a callout special case + if (note.classList.contains("callout")) { + return note.outerHTML; + } else { + return note.innerHTML; + } + } + } + for (var i=0; i res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.getElementById(id); + if (note !== null) { + const html = processXRef(id, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + } else { + // See if we can fetch a full url (with no hash to target) + // This is a special case and we should probably do some content thinning / targeting + fetch(url) + .then(res => res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.querySelector('main.content'); + if (note !== null) { + // This should only happen for chapter cross references + // (since there is no id in the URL) + // remove the first header + if (note.children.length > 0 && note.children[0].tagName === "HEADER") { + note.children[0].remove(); + } + const html = processXRef(null, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + }, function(instance) { + }); } let selectedAnnoteEl; const selectorForAnnotation = ( cell, annotation) => { @@ -803,6 +957,7 @@

References

} div.style.top = top - 2 + "px"; div.style.height = height + 4 + "px"; + div.style.left = 0; let gutterDiv = window.document.getElementById("code-annotation-line-highlight-gutter"); if (gutterDiv === null) { gutterDiv = window.document.createElement("div"); @@ -828,6 +983,32 @@

References

}); selectedAnnoteEl = undefined; }; + // Handle positioning of the toggle + window.addEventListener( + "resize", + throttle(() => { + elRect = undefined; + if (selectedAnnoteEl) { + selectCodeLines(selectedAnnoteEl); + } + }, 10) + ); + function throttle(fn, ms) { + let throttle = false; + let timer; + return (...args) => { + if(!throttle) { // first call gets through + fn.apply(this, args); + throttle = true; + } else { // all the others get throttled + if(timer) clearTimeout(timer); // cancel #2 + timer = setTimeout(() => { + fn.apply(this, args); + timer = throttle = false; + }, ms); + } + }; + } // Attach click handler to the DT const annoteDls = window.document.querySelectorAll('dt[data-target-cell]'); for (const annoteDlNode of annoteDls) { @@ -893,7 +1074,9 @@

References

- + @@ -902,4 +1085,5 @@

References

+ \ No newline at end of file diff --git a/submit-data.html b/submit-data.html index 81c88f2..d10b390 100644 --- a/submit-data.html +++ b/submit-data.html @@ -2,7 +2,7 @@ - + @@ -45,7 +45,13 @@ "collapse-after": 3, "panel-placement": "end", "type": "overlay", - "limit": 20, + "limit": 50, + "keyboard-shortcut": [ + "f", + "/", + "s" + ], + "show-item-context": false, "language": { "search-no-results-text": "No results", "search-matching-documents-text": "matching documents", @@ -54,6 +60,7 @@ "search-more-match-text": "more match in this document", "search-more-matches-text": "more matches in this document", "search-clear-button-title": "Clear", + "search-text-placeholder": "", "search-detached-cancel-button-title": "Cancel", "search-submit-button-title": "Submit", "search-label": "Search" @@ -67,9 +74,9 @@
-
-
-
+
@@ -487,8 +512,10 @@

Submit a Dataset

+
+

The goal of this repository is to provide a collection of relevant and engaging sports datasets to be used in class, handouts, assignments, projects, and SCORE modules. We are always looking for new datasets and welcome public submissions, but these datasets will need to meet the following requirements:

  • The data must be publicly shareable, and there should not be any licensing restrictions that prevent us from sharing it for educational purposes. By submitting, you certify that the dataset can be made public, and that you accept all responsibility for the publication of the data. The SCORE Network is not responsible for publication of the data.
  • @@ -617,10 +644,9 @@

    Submitting templa // clear code selection e.clearSelection(); }); - function tippyHover(el, contentFn) { + function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) { const config = { allowHTML: true, - content: contentFn, maxWidth: 500, delay: 100, arrow: false, @@ -630,8 +656,17 @@

    Submitting templa interactive: true, interactiveBorder: 10, theme: 'quarto', - placement: 'bottom-start' + placement: 'bottom-start', }; + if (contentFn) { + config.content = contentFn; + } + if (onTriggerFn) { + config.onTrigger = onTriggerFn; + } + if (onUntriggerFn) { + config.onUntrigger = onUntriggerFn; + } window.tippy(el, config); } const noterefs = window.document.querySelectorAll('a[role="doc-noteref"]'); @@ -645,6 +680,125 @@

    Submitting templa const note = window.document.getElementById(id); return note.innerHTML; }); + } + const xrefs = window.document.querySelectorAll('a.quarto-xref'); + const processXRef = (id, note) => { + // Strip column container classes + const stripColumnClz = (el) => { + el.classList.remove("page-full", "page-columns"); + if (el.children) { + for (const child of el.children) { + stripColumnClz(child); + } + } + } + stripColumnClz(note) + if (id === null || id.startsWith('sec-')) { + // Special case sections, only their first couple elements + const container = document.createElement("div"); + if (note.children && note.children.length > 2) { + container.appendChild(note.children[0].cloneNode(true)); + for (let i = 1; i < note.children.length; i++) { + const child = note.children[i]; + if (child.tagName === "P" && child.innerText === "") { + continue; + } else { + container.appendChild(child.cloneNode(true)); + break; + } + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(container); + } + return container.innerHTML + } else { + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + return note.innerHTML; + } + } else { + // Remove any anchor links if they are present + const anchorLink = note.querySelector('a.anchorjs-link'); + if (anchorLink) { + anchorLink.remove(); + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + // TODO in 1.5, we should make sure this works without a callout special case + if (note.classList.contains("callout")) { + return note.outerHTML; + } else { + return note.innerHTML; + } + } + } + for (var i=0; i res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.getElementById(id); + if (note !== null) { + const html = processXRef(id, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + } else { + // See if we can fetch a full url (with no hash to target) + // This is a special case and we should probably do some content thinning / targeting + fetch(url) + .then(res => res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.querySelector('main.content'); + if (note !== null) { + // This should only happen for chapter cross references + // (since there is no id in the URL) + // remove the first header + if (note.children.length > 0 && note.children[0].tagName === "HEADER") { + note.children[0].remove(); + } + const html = processXRef(null, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + }, function(instance) { + }); } let selectedAnnoteEl; const selectorForAnnotation = ( cell, annotation) => { @@ -687,6 +841,7 @@

    Submitting templa } div.style.top = top - 2 + "px"; div.style.height = height + 4 + "px"; + div.style.left = 0; let gutterDiv = window.document.getElementById("code-annotation-line-highlight-gutter"); if (gutterDiv === null) { gutterDiv = window.document.createElement("div"); @@ -712,6 +867,32 @@

    Submitting templa }); selectedAnnoteEl = undefined; }; + // Handle positioning of the toggle + window.addEventListener( + "resize", + throttle(() => { + elRect = undefined; + if (selectedAnnoteEl) { + selectCodeLines(selectedAnnoteEl); + } + }, 10) + ); + function throttle(fn, ms) { + let throttle = false; + let timer; + return (...args) => { + if(!throttle) { // first call gets through + fn.apply(this, args); + throttle = true; + } else { // all the others get throttled + if(timer) clearTimeout(timer); // cancel #2 + timer = setTimeout(() => { + fn.apply(this, args); + timer = throttle = false; + }, ms); + } + }; + } // Attach click handler to the DT const annoteDls = window.document.querySelectorAll('dt[data-target-cell]'); for (const annoteDlNode of annoteDls) { @@ -777,7 +958,9 @@

    Submitting templa - + @@ -786,4 +969,5 @@

    Submitting templa + \ No newline at end of file diff --git a/tennis/australian-open.html b/tennis/australian-open.html index dd0368e..87ac31b 100644 --- a/tennis/australian-open.html +++ b/tennis/australian-open.html @@ -2,7 +2,7 @@ - + @@ -48,7 +48,13 @@ "collapse-after": 3, "panel-placement": "end", "type": "overlay", - "limit": 20, + "limit": 50, + "keyboard-shortcut": [ + "f", + "/", + "s" + ], + "show-item-context": false, "language": { "search-no-results-text": "No results", "search-matching-documents-text": "matching documents", @@ -57,6 +63,7 @@ "search-more-match-text": "more match in this document", "search-more-matches-text": "more matches in this document", "search-clear-button-title": "Clear", + "search-text-placeholder": "", "search-detached-cancel-button-title": "Cancel", "search-submit-button-title": "Submit", "search-label": "Search" @@ -70,9 +77,9 @@
    -
    -

@@ -264,6 +277,12 @@ - +
-
+

Australian Open Tennis (2008-2022)

@@ -509,8 +534,10 @@

Australian Open Tennis (2008-2022)

+
+

Motivation

The Australian Open is an annual tennis tournament in Melbourne, Australia. We have data from the men’s tournament in the years 2008-2022, with variables for both the winner and loser of each match, along with information such as what hand they play with and their Association of Tennis Professionals (ATP) rank and characteristics of the players. Which characteristics might help predict the outcome of the matches?

@@ -704,10 +731,9 @@

References

// clear code selection e.clearSelection(); }); - function tippyHover(el, contentFn) { + function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) { const config = { allowHTML: true, - content: contentFn, maxWidth: 500, delay: 100, arrow: false, @@ -717,8 +743,17 @@

References

interactive: true, interactiveBorder: 10, theme: 'quarto', - placement: 'bottom-start' + placement: 'bottom-start', }; + if (contentFn) { + config.content = contentFn; + } + if (onTriggerFn) { + config.onTrigger = onTriggerFn; + } + if (onUntriggerFn) { + config.onUntrigger = onUntriggerFn; + } window.tippy(el, config); } const noterefs = window.document.querySelectorAll('a[role="doc-noteref"]'); @@ -732,6 +767,125 @@

References

const note = window.document.getElementById(id); return note.innerHTML; }); + } + const xrefs = window.document.querySelectorAll('a.quarto-xref'); + const processXRef = (id, note) => { + // Strip column container classes + const stripColumnClz = (el) => { + el.classList.remove("page-full", "page-columns"); + if (el.children) { + for (const child of el.children) { + stripColumnClz(child); + } + } + } + stripColumnClz(note) + if (id === null || id.startsWith('sec-')) { + // Special case sections, only their first couple elements + const container = document.createElement("div"); + if (note.children && note.children.length > 2) { + container.appendChild(note.children[0].cloneNode(true)); + for (let i = 1; i < note.children.length; i++) { + const child = note.children[i]; + if (child.tagName === "P" && child.innerText === "") { + continue; + } else { + container.appendChild(child.cloneNode(true)); + break; + } + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(container); + } + return container.innerHTML + } else { + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + return note.innerHTML; + } + } else { + // Remove any anchor links if they are present + const anchorLink = note.querySelector('a.anchorjs-link'); + if (anchorLink) { + anchorLink.remove(); + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + // TODO in 1.5, we should make sure this works without a callout special case + if (note.classList.contains("callout")) { + return note.outerHTML; + } else { + return note.innerHTML; + } + } + } + for (var i=0; i res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.getElementById(id); + if (note !== null) { + const html = processXRef(id, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + } else { + // See if we can fetch a full url (with no hash to target) + // This is a special case and we should probably do some content thinning / targeting + fetch(url) + .then(res => res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.querySelector('main.content'); + if (note !== null) { + // This should only happen for chapter cross references + // (since there is no id in the URL) + // remove the first header + if (note.children.length > 0 && note.children[0].tagName === "HEADER") { + note.children[0].remove(); + } + const html = processXRef(null, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + }, function(instance) { + }); } let selectedAnnoteEl; const selectorForAnnotation = ( cell, annotation) => { @@ -774,6 +928,7 @@

References

} div.style.top = top - 2 + "px"; div.style.height = height + 4 + "px"; + div.style.left = 0; let gutterDiv = window.document.getElementById("code-annotation-line-highlight-gutter"); if (gutterDiv === null) { gutterDiv = window.document.createElement("div"); @@ -799,6 +954,32 @@

References

}); selectedAnnoteEl = undefined; }; + // Handle positioning of the toggle + window.addEventListener( + "resize", + throttle(() => { + elRect = undefined; + if (selectedAnnoteEl) { + selectCodeLines(selectedAnnoteEl); + } + }, 10) + ); + function throttle(fn, ms) { + let throttle = false; + let timer; + return (...args) => { + if(!throttle) { // first call gets through + fn.apply(this, args); + throttle = true; + } else { // all the others get throttled + if(timer) clearTimeout(timer); // cancel #2 + timer = setTimeout(() => { + fn.apply(this, args); + timer = throttle = false; + }, ms); + } + }; + } // Attach click handler to the DT const annoteDls = window.document.querySelectorAll('dt[data-target-cell]'); for (const annoteDlNode of annoteDls) { @@ -864,7 +1045,9 @@

References

- + @@ -873,4 +1056,5 @@

References

+ \ No newline at end of file diff --git a/tennis/wta-grand-slam-matches.html b/tennis/wta-grand-slam-matches.html index 1b4c8fb..c3abc65 100644 --- a/tennis/wta-grand-slam-matches.html +++ b/tennis/wta-grand-slam-matches.html @@ -2,7 +2,7 @@ - + @@ -48,7 +48,13 @@ "collapse-after": 3, "panel-placement": "end", "type": "overlay", - "limit": 20, + "limit": 50, + "keyboard-shortcut": [ + "f", + "/", + "s" + ], + "show-item-context": false, "language": { "search-no-results-text": "No results", "search-matching-documents-text": "matching documents", @@ -57,6 +63,7 @@ "search-more-match-text": "more match in this document", "search-more-matches-text": "more matches in this document", "search-clear-button-title": "Clear", + "search-text-placeholder": "", "search-detached-cancel-button-title": "Cancel", "search-submit-button-title": "Submit", "search-label": "Search" @@ -70,9 +77,9 @@
-
-
-
+
-
+

WTA Grand Slam Matches

@@ -512,8 +537,10 @@

WTA Grand Slam Matches

+
+

Motivation

The Women’s Tennis Associate (WTA) organizes the top women’s professional tennis tour in the world. Throughout the year, there are four major tournaments yielding the most ranking points, prize money, and fame. These are known as the Grand Slam tournaments, consisting of (in order): Australian Open, French Open (aka Roland Garros), Wimbledon, and the US Open. With this dataset of information about winners and losers in WTA Grand Slam matches from 2018 to 2022, you’ll be able to explore statistics collected during matches and information about the athletes to predict match outcomes.

@@ -718,10 +745,9 @@

References

// clear code selection e.clearSelection(); }); - function tippyHover(el, contentFn) { + function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) { const config = { allowHTML: true, - content: contentFn, maxWidth: 500, delay: 100, arrow: false, @@ -731,8 +757,17 @@

References

interactive: true, interactiveBorder: 10, theme: 'quarto', - placement: 'bottom-start' + placement: 'bottom-start', }; + if (contentFn) { + config.content = contentFn; + } + if (onTriggerFn) { + config.onTrigger = onTriggerFn; + } + if (onUntriggerFn) { + config.onUntrigger = onUntriggerFn; + } window.tippy(el, config); } const noterefs = window.document.querySelectorAll('a[role="doc-noteref"]'); @@ -746,6 +781,125 @@

References

const note = window.document.getElementById(id); return note.innerHTML; }); + } + const xrefs = window.document.querySelectorAll('a.quarto-xref'); + const processXRef = (id, note) => { + // Strip column container classes + const stripColumnClz = (el) => { + el.classList.remove("page-full", "page-columns"); + if (el.children) { + for (const child of el.children) { + stripColumnClz(child); + } + } + } + stripColumnClz(note) + if (id === null || id.startsWith('sec-')) { + // Special case sections, only their first couple elements + const container = document.createElement("div"); + if (note.children && note.children.length > 2) { + container.appendChild(note.children[0].cloneNode(true)); + for (let i = 1; i < note.children.length; i++) { + const child = note.children[i]; + if (child.tagName === "P" && child.innerText === "") { + continue; + } else { + container.appendChild(child.cloneNode(true)); + break; + } + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(container); + } + return container.innerHTML + } else { + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + return note.innerHTML; + } + } else { + // Remove any anchor links if they are present + const anchorLink = note.querySelector('a.anchorjs-link'); + if (anchorLink) { + anchorLink.remove(); + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + // TODO in 1.5, we should make sure this works without a callout special case + if (note.classList.contains("callout")) { + return note.outerHTML; + } else { + return note.innerHTML; + } + } + } + for (var i=0; i res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.getElementById(id); + if (note !== null) { + const html = processXRef(id, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + } else { + // See if we can fetch a full url (with no hash to target) + // This is a special case and we should probably do some content thinning / targeting + fetch(url) + .then(res => res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.querySelector('main.content'); + if (note !== null) { + // This should only happen for chapter cross references + // (since there is no id in the URL) + // remove the first header + if (note.children.length > 0 && note.children[0].tagName === "HEADER") { + note.children[0].remove(); + } + const html = processXRef(null, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + }, function(instance) { + }); } let selectedAnnoteEl; const selectorForAnnotation = ( cell, annotation) => { @@ -788,6 +942,7 @@

References

} div.style.top = top - 2 + "px"; div.style.height = height + 4 + "px"; + div.style.left = 0; let gutterDiv = window.document.getElementById("code-annotation-line-highlight-gutter"); if (gutterDiv === null) { gutterDiv = window.document.createElement("div"); @@ -813,6 +968,32 @@

References

}); selectedAnnoteEl = undefined; }; + // Handle positioning of the toggle + window.addEventListener( + "resize", + throttle(() => { + elRect = undefined; + if (selectedAnnoteEl) { + selectCodeLines(selectedAnnoteEl); + } + }, 10) + ); + function throttle(fn, ms) { + let throttle = false; + let timer; + return (...args) => { + if(!throttle) { // first call gets through + fn.apply(this, args); + throttle = true; + } else { // all the others get throttled + if(timer) clearTimeout(timer); // cancel #2 + timer = setTimeout(() => { + fn.apply(this, args); + timer = throttle = false; + }, ms); + } + }; + } // Attach click handler to the DT const annoteDls = window.document.querySelectorAll('dt[data-target-cell]'); for (const annoteDlNode of annoteDls) { @@ -878,7 +1059,9 @@

References

- + @@ -887,4 +1070,5 @@

References

+ \ No newline at end of file diff --git a/triathlon/triathlon_lakeplacid_women_ironman.html b/triathlon/triathlon_lakeplacid_women_ironman.html index 2cd205b..cdb30c4 100644 --- a/triathlon/triathlon_lakeplacid_women_ironman.html +++ b/triathlon/triathlon_lakeplacid_women_ironman.html @@ -2,7 +2,7 @@ - + @@ -48,7 +48,13 @@ "collapse-after": 3, "panel-placement": "end", "type": "overlay", - "limit": 20, + "limit": 50, + "keyboard-shortcut": [ + "f", + "/", + "s" + ], + "show-item-context": false, "language": { "search-no-results-text": "No results", "search-matching-documents-text": "matching documents", @@ -57,6 +63,7 @@ "search-more-match-text": "more match in this document", "search-more-matches-text": "more matches in this document", "search-clear-button-title": "Clear", + "search-text-placeholder": "", "search-detached-cancel-button-title": "Cancel", "search-submit-button-title": "Submit", "search-label": "Search" @@ -70,9 +77,9 @@
-
-
-
+
-
+

Lake Placid Women’s Ironman Triathlon

@@ -512,8 +537,10 @@

Lake Placid Women’s Ironman Triathlon

+
+

Motivation

The motivation for this data analysis is to explore the relationships between swim times, bike times, and run times (in minutes) in order to gain insights into the performance patterns of the athletes. By analyzing these relationships, we can understand the interplay between different segments of the race and potentially identify areas of improvement for athletes.

@@ -715,10 +742,9 @@

References

// clear code selection e.clearSelection(); }); - function tippyHover(el, contentFn) { + function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) { const config = { allowHTML: true, - content: contentFn, maxWidth: 500, delay: 100, arrow: false, @@ -728,8 +754,17 @@

References

interactive: true, interactiveBorder: 10, theme: 'quarto', - placement: 'bottom-start' + placement: 'bottom-start', }; + if (contentFn) { + config.content = contentFn; + } + if (onTriggerFn) { + config.onTrigger = onTriggerFn; + } + if (onUntriggerFn) { + config.onUntrigger = onUntriggerFn; + } window.tippy(el, config); } const noterefs = window.document.querySelectorAll('a[role="doc-noteref"]'); @@ -743,6 +778,125 @@

References

const note = window.document.getElementById(id); return note.innerHTML; }); + } + const xrefs = window.document.querySelectorAll('a.quarto-xref'); + const processXRef = (id, note) => { + // Strip column container classes + const stripColumnClz = (el) => { + el.classList.remove("page-full", "page-columns"); + if (el.children) { + for (const child of el.children) { + stripColumnClz(child); + } + } + } + stripColumnClz(note) + if (id === null || id.startsWith('sec-')) { + // Special case sections, only their first couple elements + const container = document.createElement("div"); + if (note.children && note.children.length > 2) { + container.appendChild(note.children[0].cloneNode(true)); + for (let i = 1; i < note.children.length; i++) { + const child = note.children[i]; + if (child.tagName === "P" && child.innerText === "") { + continue; + } else { + container.appendChild(child.cloneNode(true)); + break; + } + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(container); + } + return container.innerHTML + } else { + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + return note.innerHTML; + } + } else { + // Remove any anchor links if they are present + const anchorLink = note.querySelector('a.anchorjs-link'); + if (anchorLink) { + anchorLink.remove(); + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + // TODO in 1.5, we should make sure this works without a callout special case + if (note.classList.contains("callout")) { + return note.outerHTML; + } else { + return note.innerHTML; + } + } + } + for (var i=0; i res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.getElementById(id); + if (note !== null) { + const html = processXRef(id, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + } else { + // See if we can fetch a full url (with no hash to target) + // This is a special case and we should probably do some content thinning / targeting + fetch(url) + .then(res => res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.querySelector('main.content'); + if (note !== null) { + // This should only happen for chapter cross references + // (since there is no id in the URL) + // remove the first header + if (note.children.length > 0 && note.children[0].tagName === "HEADER") { + note.children[0].remove(); + } + const html = processXRef(null, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + }, function(instance) { + }); } let selectedAnnoteEl; const selectorForAnnotation = ( cell, annotation) => { @@ -785,6 +939,7 @@

References

} div.style.top = top - 2 + "px"; div.style.height = height + 4 + "px"; + div.style.left = 0; let gutterDiv = window.document.getElementById("code-annotation-line-highlight-gutter"); if (gutterDiv === null) { gutterDiv = window.document.createElement("div"); @@ -810,6 +965,32 @@

References

}); selectedAnnoteEl = undefined; }; + // Handle positioning of the toggle + window.addEventListener( + "resize", + throttle(() => { + elRect = undefined; + if (selectedAnnoteEl) { + selectCodeLines(selectedAnnoteEl); + } + }, 10) + ); + function throttle(fn, ms) { + let throttle = false; + let timer; + return (...args) => { + if(!throttle) { // first call gets through + fn.apply(this, args); + throttle = true; + } else { // all the others get throttled + if(timer) clearTimeout(timer); // cancel #2 + timer = setTimeout(() => { + fn.apply(this, args); + timer = throttle = false; + }, ms); + } + }; + } // Attach click handler to the DT const annoteDls = window.document.querySelectorAll('dt[data-target-cell]'); for (const annoteDlNode of annoteDls) { @@ -875,7 +1056,9 @@

References

- + @@ -884,4 +1067,5 @@

References

+ \ No newline at end of file diff --git a/volleyball/volleyball_ncaa_team_stats.html b/volleyball/volleyball_ncaa_team_stats.html index 0fb8d6d..86c64c5 100644 --- a/volleyball/volleyball_ncaa_team_stats.html +++ b/volleyball/volleyball_ncaa_team_stats.html @@ -2,7 +2,7 @@ - + @@ -48,7 +48,13 @@ "collapse-after": 3, "panel-placement": "end", "type": "overlay", - "limit": 20, + "limit": 50, + "keyboard-shortcut": [ + "f", + "/", + "s" + ], + "show-item-context": false, "language": { "search-no-results-text": "No results", "search-matching-documents-text": "matching documents", @@ -57,6 +63,7 @@ "search-more-match-text": "more match in this document", "search-more-matches-text": "more matches in this document", "search-clear-button-title": "Clear", + "search-text-placeholder": "", "search-detached-cancel-button-title": "Cancel", "search-submit-button-title": "Submit", "search-label": "Search" @@ -70,9 +77,9 @@
-
-
-
+
-
+

Team Statistics for Division I Women’s Volleyball

@@ -511,8 +536,10 @@

Team Statistics for Division I Women’s Volleyball

+
+

Motivation

Division 1 NCAA women’s volleyball is the highest level of collegiate competition for women’s volleyball in the United States. With well over 300 teams compete at the Division 1 level, there is fierce competition each year as only 64 teams make the post-season Volleyball Championship. The division demands high-level athletic performances, teamwork, and strategic game play from a variety of aspects. With each team having their own strengths and weaknesses, there is no exception of exciting matchups and and shocking results.

@@ -685,10 +712,9 @@

References

// clear code selection e.clearSelection(); }); - function tippyHover(el, contentFn) { + function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) { const config = { allowHTML: true, - content: contentFn, maxWidth: 500, delay: 100, arrow: false, @@ -698,8 +724,17 @@

References

interactive: true, interactiveBorder: 10, theme: 'quarto', - placement: 'bottom-start' + placement: 'bottom-start', }; + if (contentFn) { + config.content = contentFn; + } + if (onTriggerFn) { + config.onTrigger = onTriggerFn; + } + if (onUntriggerFn) { + config.onUntrigger = onUntriggerFn; + } window.tippy(el, config); } const noterefs = window.document.querySelectorAll('a[role="doc-noteref"]'); @@ -713,6 +748,125 @@

References

const note = window.document.getElementById(id); return note.innerHTML; }); + } + const xrefs = window.document.querySelectorAll('a.quarto-xref'); + const processXRef = (id, note) => { + // Strip column container classes + const stripColumnClz = (el) => { + el.classList.remove("page-full", "page-columns"); + if (el.children) { + for (const child of el.children) { + stripColumnClz(child); + } + } + } + stripColumnClz(note) + if (id === null || id.startsWith('sec-')) { + // Special case sections, only their first couple elements + const container = document.createElement("div"); + if (note.children && note.children.length > 2) { + container.appendChild(note.children[0].cloneNode(true)); + for (let i = 1; i < note.children.length; i++) { + const child = note.children[i]; + if (child.tagName === "P" && child.innerText === "") { + continue; + } else { + container.appendChild(child.cloneNode(true)); + break; + } + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(container); + } + return container.innerHTML + } else { + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + return note.innerHTML; + } + } else { + // Remove any anchor links if they are present + const anchorLink = note.querySelector('a.anchorjs-link'); + if (anchorLink) { + anchorLink.remove(); + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + // TODO in 1.5, we should make sure this works without a callout special case + if (note.classList.contains("callout")) { + return note.outerHTML; + } else { + return note.innerHTML; + } + } + } + for (var i=0; i res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.getElementById(id); + if (note !== null) { + const html = processXRef(id, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + } else { + // See if we can fetch a full url (with no hash to target) + // This is a special case and we should probably do some content thinning / targeting + fetch(url) + .then(res => res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.querySelector('main.content'); + if (note !== null) { + // This should only happen for chapter cross references + // (since there is no id in the URL) + // remove the first header + if (note.children.length > 0 && note.children[0].tagName === "HEADER") { + note.children[0].remove(); + } + const html = processXRef(null, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + }, function(instance) { + }); } let selectedAnnoteEl; const selectorForAnnotation = ( cell, annotation) => { @@ -755,6 +909,7 @@

References

} div.style.top = top - 2 + "px"; div.style.height = height + 4 + "px"; + div.style.left = 0; let gutterDiv = window.document.getElementById("code-annotation-line-highlight-gutter"); if (gutterDiv === null) { gutterDiv = window.document.createElement("div"); @@ -780,6 +935,32 @@

References

}); selectedAnnoteEl = undefined; }; + // Handle positioning of the toggle + window.addEventListener( + "resize", + throttle(() => { + elRect = undefined; + if (selectedAnnoteEl) { + selectCodeLines(selectedAnnoteEl); + } + }, 10) + ); + function throttle(fn, ms) { + let throttle = false; + let timer; + return (...args) => { + if(!throttle) { // first call gets through + fn.apply(this, args); + throttle = true; + } else { // all the others get throttled + if(timer) clearTimeout(timer); // cancel #2 + timer = setTimeout(() => { + fn.apply(this, args); + timer = throttle = false; + }, ms); + } + }; + } // Attach click handler to the DT const annoteDls = window.document.querySelectorAll('dt[data-target-cell]'); for (const annoteDlNode of annoteDls) { @@ -845,7 +1026,9 @@

References

- + @@ -854,4 +1037,5 @@

References

+ \ No newline at end of file diff --git a/wrestling/sumo_wrestingling_since_1957.html b/wrestling/sumo_wrestingling_since_1957.html index fe901bf..73416b4 100644 --- a/wrestling/sumo_wrestingling_since_1957.html +++ b/wrestling/sumo_wrestingling_since_1957.html @@ -2,7 +2,7 @@ - + @@ -48,7 +48,13 @@ "collapse-after": 3, "panel-placement": "end", "type": "overlay", - "limit": 20, + "limit": 50, + "keyboard-shortcut": [ + "f", + "/", + "s" + ], + "show-item-context": false, "language": { "search-no-results-text": "No results", "search-matching-documents-text": "matching documents", @@ -57,6 +63,7 @@ "search-more-match-text": "more match in this document", "search-more-matches-text": "more matches in this document", "search-clear-button-title": "Clear", + "search-text-placeholder": "", "search-detached-cancel-button-title": "Cancel", "search-submit-button-title": "Submit", "search-label": "Search" @@ -70,9 +77,9 @@
-
-
-
+
-
+

Sumo wrestler characteristics

@@ -509,8 +534,10 @@

Sumo wrestler characteristics

+
+

Motivation

The Banzuke is a ranking system used in Japanese sumo wrestling to determine the order and matchups for tournaments. In the Makuuchi Banzuke division, which is the top division, the history can be traced back to the 18th century. The Banzuke lists the wrestlers’ ranks, names, stables, and more in a hierarchical order based on their performance and records in previous tournaments. Over the years, the Makuuchi Banzuke has evolved, incorporating changes in the number of ranks and divisions. Today, it plays a crucial role in organizing and structuring sumo tournaments, reflecting the wrestlers’ skill, rank, and accomplishments in the sport.

@@ -667,10 +694,9 @@

References

// clear code selection e.clearSelection(); }); - function tippyHover(el, contentFn) { + function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) { const config = { allowHTML: true, - content: contentFn, maxWidth: 500, delay: 100, arrow: false, @@ -680,8 +706,17 @@

References

interactive: true, interactiveBorder: 10, theme: 'quarto', - placement: 'bottom-start' + placement: 'bottom-start', }; + if (contentFn) { + config.content = contentFn; + } + if (onTriggerFn) { + config.onTrigger = onTriggerFn; + } + if (onUntriggerFn) { + config.onUntrigger = onUntriggerFn; + } window.tippy(el, config); } const noterefs = window.document.querySelectorAll('a[role="doc-noteref"]'); @@ -695,6 +730,125 @@

References

const note = window.document.getElementById(id); return note.innerHTML; }); + } + const xrefs = window.document.querySelectorAll('a.quarto-xref'); + const processXRef = (id, note) => { + // Strip column container classes + const stripColumnClz = (el) => { + el.classList.remove("page-full", "page-columns"); + if (el.children) { + for (const child of el.children) { + stripColumnClz(child); + } + } + } + stripColumnClz(note) + if (id === null || id.startsWith('sec-')) { + // Special case sections, only their first couple elements + const container = document.createElement("div"); + if (note.children && note.children.length > 2) { + container.appendChild(note.children[0].cloneNode(true)); + for (let i = 1; i < note.children.length; i++) { + const child = note.children[i]; + if (child.tagName === "P" && child.innerText === "") { + continue; + } else { + container.appendChild(child.cloneNode(true)); + break; + } + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(container); + } + return container.innerHTML + } else { + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + return note.innerHTML; + } + } else { + // Remove any anchor links if they are present + const anchorLink = note.querySelector('a.anchorjs-link'); + if (anchorLink) { + anchorLink.remove(); + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + // TODO in 1.5, we should make sure this works without a callout special case + if (note.classList.contains("callout")) { + return note.outerHTML; + } else { + return note.innerHTML; + } + } + } + for (var i=0; i res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.getElementById(id); + if (note !== null) { + const html = processXRef(id, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + } else { + // See if we can fetch a full url (with no hash to target) + // This is a special case and we should probably do some content thinning / targeting + fetch(url) + .then(res => res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.querySelector('main.content'); + if (note !== null) { + // This should only happen for chapter cross references + // (since there is no id in the URL) + // remove the first header + if (note.children.length > 0 && note.children[0].tagName === "HEADER") { + note.children[0].remove(); + } + const html = processXRef(null, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + }, function(instance) { + }); } let selectedAnnoteEl; const selectorForAnnotation = ( cell, annotation) => { @@ -737,6 +891,7 @@

References

} div.style.top = top - 2 + "px"; div.style.height = height + 4 + "px"; + div.style.left = 0; let gutterDiv = window.document.getElementById("code-annotation-line-highlight-gutter"); if (gutterDiv === null) { gutterDiv = window.document.createElement("div"); @@ -762,6 +917,32 @@

References

}); selectedAnnoteEl = undefined; }; + // Handle positioning of the toggle + window.addEventListener( + "resize", + throttle(() => { + elRect = undefined; + if (selectedAnnoteEl) { + selectCodeLines(selectedAnnoteEl); + } + }, 10) + ); + function throttle(fn, ms) { + let throttle = false; + let timer; + return (...args) => { + if(!throttle) { // first call gets through + fn.apply(this, args); + throttle = true; + } else { // all the others get throttled + if(timer) clearTimeout(timer); // cancel #2 + timer = setTimeout(() => { + fn.apply(this, args); + timer = throttle = false; + }, ms); + } + }; + } // Attach click handler to the DT const annoteDls = window.document.querySelectorAll('dt[data-target-cell]'); for (const annoteDlNode of annoteDls) { @@ -827,7 +1008,9 @@

References

- + @@ -836,4 +1019,5 @@

References

+ \ No newline at end of file