├── .browserslistrc ├── .editorconfig ├── .github └── workflows │ └── nodejs.yml ├── .gitignore ├── .husky └── pre-commit ├── .prettierignore ├── .prettierrc ├── CHANGELOG.md ├── CLA-entity.md ├── CLA-individual.md ├── LICENSE.md ├── README.md ├── TODO ├── analysis ├── .gitignore ├── low-ovr-good-team-football │ ├── README.md │ └── process.py ├── player-ovr-basketball │ ├── README.md │ └── process.py ├── player-ovr-hockey │ ├── README.md │ └── process.py ├── player-value-vs-contract-amount │ ├── README.md │ └── process.py ├── pos-basketball │ ├── README.md │ └── process.py ├── pot-estimator-baseball │ ├── README.md │ └── process.py ├── pot-estimator-basketball │ └── process.py ├── pot-estimator-football │ └── process.R ├── pot-estimator-hockey │ └── process.py ├── requirements.txt ├── team-ovr-basketball │ ├── README.md │ └── process.py ├── team-ovr-football │ ├── README.md │ └── process.py └── team-ovr-hockey │ ├── README.md │ └── process.py ├── data ├── injuries.ods ├── names-female.json ├── names.json ├── penalties.ods ├── real-player-data.basketball.json ├── real-player-stats.basketball.json └── real-schedules.football.json ├── eslint.config.js ├── package.json ├── pnpm-lock.yaml ├── public ├── .htaccess ├── baseball │ ├── .htaccess │ ├── .well-known │ │ └── assetlinks.json │ ├── ico │ │ ├── apple-touch-icon.png │ │ ├── icon-gold.svg │ │ ├── icon.svg │ │ ├── icon128.png │ │ ├── icon180.png │ │ ├── icon192.png │ │ ├── icon512.png │ │ ├── icon64.png │ │ ├── icon70.png │ │ ├── logo-gold.png │ │ ├── logo.png │ │ └── maskable.png │ ├── img │ │ ├── logos-primary │ │ │ ├── JAX.svg │ │ │ ├── KC.svg │ │ │ ├── KEN.svg │ │ │ ├── LAE.svg │ │ │ ├── MIL.svg │ │ │ ├── MXC.svg │ │ │ ├── NOL.svg │ │ │ ├── OAK.svg │ │ │ ├── ORL.svg │ │ │ ├── PHI.svg │ │ │ ├── SF.svg │ │ │ ├── TOR.svg │ │ │ ├── VB.svg │ │ │ └── WAS.svg │ │ └── logos-secondary │ │ │ ├── CGY.svg │ │ │ ├── CIN.svg │ │ │ ├── CLE.svg │ │ │ ├── HAW.svg │ │ │ ├── LA.svg │ │ │ ├── MIN.svg │ │ │ ├── MXC.svg │ │ │ ├── ORL.svg │ │ │ ├── PIT.svg │ │ │ ├── RYD.svg │ │ │ ├── SF.svg │ │ │ ├── TOR.svg │ │ │ └── WAS.svg │ └── manifest.webmanifest ├── basketball │ ├── .well-known │ │ └── assetlinks.json │ ├── ico │ │ ├── apple-touch-icon.png │ │ ├── icon-gold.svg │ │ ├── icon.svg │ │ ├── icon128.png │ │ ├── icon180.png │ │ ├── icon192.png │ │ ├── icon512.png │ │ ├── icon64.png │ │ ├── icon70.png │ │ ├── logo-gold.png │ │ ├── logo.png │ │ └── maskable.png │ ├── img │ │ ├── blank-face.png │ │ ├── lavar.jpg │ │ ├── obama.jpg │ │ ├── players │ │ │ └── seemebo01.jpg │ │ └── trump.jpg │ └── manifest.webmanifest ├── css │ ├── bbgm-notifications.scss │ ├── dark.scss │ ├── datatable.scss │ ├── glyphicons.scss │ ├── light.scss │ └── sidebar.scss ├── fonts │ └── glyphicons-halflings-regular.woff2 ├── football │ ├── .well-known │ │ └── assetlinks.json │ ├── ico │ │ ├── apple-touch-icon.png │ │ ├── icon-gold.svg │ │ ├── icon.svg │ │ ├── icon128.png │ │ ├── icon180.png │ │ ├── icon192.png │ │ ├── icon512.png │ │ ├── icon64.png │ │ ├── icon70.png │ │ ├── logo-gold.png │ │ ├── logo.png │ │ └── maskable.png │ ├── img │ │ ├── logos-primary │ │ │ ├── BKN.svg │ │ │ ├── CHA.svg │ │ │ ├── CLE.svg │ │ │ ├── JAX.svg │ │ │ ├── KC.svg │ │ │ ├── KEN.svg │ │ │ ├── LA.svg │ │ │ ├── LAE.svg │ │ │ ├── MEM.svg │ │ │ ├── MIL.svg │ │ │ ├── MIN.svg │ │ │ ├── MXC.svg │ │ │ ├── NOL.svg │ │ │ ├── NYC.svg │ │ │ ├── OAK.svg │ │ │ ├── OKC.svg │ │ │ ├── ORL.svg │ │ │ ├── PHI.svg │ │ │ ├── POR.svg │ │ │ ├── SEA.svg │ │ │ ├── SF.svg │ │ │ ├── STL.svg │ │ │ ├── TOR.svg │ │ │ ├── TPA.svg │ │ │ ├── VB.svg │ │ │ └── WAS.svg │ │ └── logos-secondary │ │ │ ├── BKN.svg │ │ │ ├── CGY.svg │ │ │ ├── CHA.svg │ │ │ ├── CHW.svg │ │ │ ├── CIN.svg │ │ │ ├── CLE.svg │ │ │ ├── HAW.svg │ │ │ ├── LA.svg │ │ │ ├── MEM.svg │ │ │ ├── MIN.svg │ │ │ ├── MXC.svg │ │ │ ├── NYC.svg │ │ │ ├── OKC.svg │ │ │ ├── ORL.svg │ │ │ ├── PIT.svg │ │ │ ├── RYD.svg │ │ │ ├── SF.svg │ │ │ ├── STL.svg │ │ │ ├── TOR.svg │ │ │ ├── TPA.svg │ │ │ └── WAS.svg │ └── manifest.webmanifest ├── hockey │ ├── .htaccess │ ├── .well-known │ │ └── assetlinks.json │ ├── ico │ │ ├── apple-touch-icon.png │ │ ├── icon.svg │ │ ├── icon128.png │ │ ├── icon180.png │ │ ├── icon192.png │ │ ├── icon512.png │ │ ├── icon64.png │ │ ├── icon70.png │ │ ├── logo-gold.png │ │ ├── logo.png │ │ └── maskable.png │ ├── img │ │ ├── logos-primary │ │ │ ├── BKN.svg │ │ │ ├── CHA.svg │ │ │ ├── CLE.svg │ │ │ ├── JAX.svg │ │ │ ├── KC.svg │ │ │ ├── KEN.svg │ │ │ ├── LAE.svg │ │ │ ├── MEM.svg │ │ │ ├── MIL.svg │ │ │ ├── MIN.svg │ │ │ ├── MXC.svg │ │ │ ├── NOL.svg │ │ │ ├── NYC.svg │ │ │ ├── OAK.svg │ │ │ ├── ORL.svg │ │ │ ├── PHI.svg │ │ │ ├── POR.svg │ │ │ ├── SEA.svg │ │ │ ├── SF.svg │ │ │ ├── STL.svg │ │ │ ├── TOR.svg │ │ │ ├── TPA.svg │ │ │ ├── VB.svg │ │ │ └── WAS.svg │ │ └── logos-secondary │ │ │ ├── BKN.svg │ │ │ ├── BKN2.svg │ │ │ ├── CGY.svg │ │ │ ├── CHA.svg │ │ │ ├── CIN.svg │ │ │ ├── CLE.svg │ │ │ ├── HAW.svg │ │ │ ├── LA.svg │ │ │ ├── MEM.svg │ │ │ ├── MIN.svg │ │ │ ├── MXC.svg │ │ │ ├── NYC.svg │ │ │ ├── OKC.svg │ │ │ ├── ORL.svg │ │ │ ├── PIT.svg │ │ │ ├── RYD.svg │ │ │ ├── SF.svg │ │ │ ├── STL.svg │ │ │ ├── TOR.svg │ │ │ ├── TPA.svg │ │ │ └── WAS.svg │ └── manifest.webmanifest ├── ico │ └── new_window.svg ├── img │ ├── ChromeWebStore_BadgeWBorder_v2_206x58.png │ ├── ChromeWebStore_Badge_v2_206x58.png │ ├── logo.png │ ├── logo.xcf │ ├── logos-primary │ │ ├── ABQ.svg │ │ ├── AMS.svg │ │ ├── ANC.svg │ │ ├── ATH.svg │ │ ├── ATL.svg │ │ ├── AUS.svg │ │ ├── BAL.svg │ │ ├── BEI.svg │ │ ├── BEL.svg │ │ ├── BER.svg │ │ ├── BKN.svg │ │ ├── BOG.svg │ │ ├── BOI.svg │ │ ├── BOS.svg │ │ ├── BRU.svg │ │ ├── BUE.svg │ │ ├── BUF.svg │ │ ├── CAI.svg │ │ ├── CGY.svg │ │ ├── CHA.svg │ │ ├── CHI.svg │ │ ├── CHW.svg │ │ ├── CIN.svg │ │ ├── CLB.svg │ │ ├── CLE.svg │ │ ├── CPH.svg │ │ ├── DAL.svg │ │ ├── DEL.svg │ │ ├── DEN.svg │ │ ├── DET.svg │ │ ├── EDM.svg │ │ ├── HAW.svg │ │ ├── HOU.svg │ │ ├── IND.svg │ │ ├── IST.svg │ │ ├── JAX.svg │ │ ├── JKT.svg │ │ ├── JNB.svg │ │ ├── KAU.svg │ │ ├── KC.svg │ │ ├── KEN.svg │ │ ├── KYV.svg │ │ ├── LA.svg │ │ ├── LAE.svg │ │ ├── LAG.svg │ │ ├── LIM.svg │ │ ├── LIS.svg │ │ ├── LON.svg │ │ ├── LV.svg │ │ ├── MAD.svg │ │ ├── MCM.svg │ │ ├── MEM.svg │ │ ├── MIA.svg │ │ ├── MIL.svg │ │ ├── MIN.svg │ │ ├── MLB.svg │ │ ├── MNL.svg │ │ ├── MON.svg │ │ ├── MOS.svg │ │ ├── MXC.svg │ │ ├── NJ.svg │ │ ├── NOL.svg │ │ ├── NSH.svg │ │ ├── NYC.svg │ │ ├── OAK.svg │ │ ├── OKC.svg │ │ ├── OMA.svg │ │ ├── ORL.svg │ │ ├── OTT.svg │ │ ├── PAR.svg │ │ ├── PHI.svg │ │ ├── PHO.svg │ │ ├── PIT.svg │ │ ├── POR.svg │ │ ├── PRO.svg │ │ ├── QUE.svg │ │ ├── RAL.svg │ │ ├── RIO.svg │ │ ├── ROM.svg │ │ ├── RYD.svg │ │ ├── SA.svg │ │ ├── SAC.svg │ │ ├── SD.svg │ │ ├── SEA.svg │ │ ├── SEL.svg │ │ ├── SF.svg │ │ ├── SGO.svg │ │ ├── SIN.svg │ │ ├── SJ.svg │ │ ├── STL.svg │ │ ├── STO.svg │ │ ├── SYD.svg │ │ ├── THR.svg │ │ ├── TLV.svg │ │ ├── TOK.svg │ │ ├── TOR.svg │ │ ├── TPA.svg │ │ ├── TPE.svg │ │ ├── UTA.svg │ │ ├── VAN.svg │ │ ├── VB.svg │ │ ├── WAS.svg │ │ ├── WAW.svg │ │ └── WPG.svg │ ├── logos-secondary │ │ ├── ABQ.svg │ │ ├── AMS.svg │ │ ├── ANC.svg │ │ ├── ATH.svg │ │ ├── ATL.svg │ │ ├── AUS.svg │ │ ├── BAL.svg │ │ ├── BEI.svg │ │ ├── BEL.svg │ │ ├── BER.svg │ │ ├── BKN.svg │ │ ├── BOG.svg │ │ ├── BOI.svg │ │ ├── BOS.svg │ │ ├── BRU.svg │ │ ├── BUE.svg │ │ ├── BUF.svg │ │ ├── CAI.svg │ │ ├── CGY.svg │ │ ├── CHA.svg │ │ ├── CHI.svg │ │ ├── CHW.svg │ │ ├── CIN.svg │ │ ├── CLB.svg │ │ ├── CLE.svg │ │ ├── CPH.svg │ │ ├── DAL.svg │ │ ├── DEL.svg │ │ ├── DEN.svg │ │ ├── DET.svg │ │ ├── EDM.svg │ │ ├── HAW.svg │ │ ├── HOU.svg │ │ ├── IND.svg │ │ ├── IST.svg │ │ ├── JAX.svg │ │ ├── JKT.svg │ │ ├── JNB.svg │ │ ├── KAU.svg │ │ ├── KC.svg │ │ ├── KEN.svg │ │ ├── KYV.svg │ │ ├── LA.svg │ │ ├── LAG.svg │ │ ├── LIM.svg │ │ ├── LIS.svg │ │ ├── LON.svg │ │ ├── LV.svg │ │ ├── MAD.svg │ │ ├── MCM.svg │ │ ├── MEM.svg │ │ ├── MIA.svg │ │ ├── MIL.svg │ │ ├── MIN.svg │ │ ├── MLB.svg │ │ ├── MNL.svg │ │ ├── MON.svg │ │ ├── MOS.svg │ │ ├── MXC.svg │ │ ├── NJ.svg │ │ ├── NOL.svg │ │ ├── NSH.svg │ │ ├── NYC.svg │ │ ├── OAK.svg │ │ ├── OKC.svg │ │ ├── OMA.svg │ │ ├── ORL.svg │ │ ├── OTT.svg │ │ ├── PAR.svg │ │ ├── PHI.svg │ │ ├── PHO.svg │ │ ├── PIT.svg │ │ ├── POR.svg │ │ ├── PRO.svg │ │ ├── QUE.svg │ │ ├── RAL.svg │ │ ├── RIO.svg │ │ ├── ROM.svg │ │ ├── RYD.svg │ │ ├── SA.svg │ │ ├── SAC.svg │ │ ├── SD.svg │ │ ├── SEA.svg │ │ ├── SEL.svg │ │ ├── SF.svg │ │ ├── SGO.svg │ │ ├── SIN.svg │ │ ├── SJ.svg │ │ ├── STL.svg │ │ ├── STO.svg │ │ ├── SYD.svg │ │ ├── THR.svg │ │ ├── TLV.svg │ │ ├── TOK.svg │ │ ├── TOR.svg │ │ ├── TPA.svg │ │ ├── TPE.svg │ │ ├── UTA.svg │ │ ├── VB.svg │ │ ├── WAS.svg │ │ ├── WAW.svg │ │ └── WPG.svg │ └── logos │ │ └── .htaccess ├── index.html ├── robots.txt ├── sw.js └── upgrade-50 │ ├── index.html │ └── upgrade-50.js ├── src ├── common │ ├── advancedPlayerSearch.ts │ ├── allowForceTie.ts │ ├── analyticsEventLocal.ts │ ├── applyRealTeamInfo.test.ts │ ├── applyRealTeamInfo.ts │ ├── budgetLevels.ts │ ├── bySport.ts │ ├── constants.baseball.ts │ ├── constants.basketball.ts │ ├── constants.football.ts │ ├── constants.hockey.ts │ ├── constants.ts │ ├── createLogger.ts │ ├── defaultGameAttributes.ts │ ├── draftLottery.ts │ ├── dunkContest.ts │ ├── fetchWrapper.ts │ ├── filterPlayerStats.ts │ ├── formatClock.ts │ ├── formatScoreWithShootout.ts │ ├── formatScoringSummaryEvent.baseball.ts │ ├── formatScoringSummaryEvent.football.ts │ ├── formatScoringSummaryEvent.hockey.ts │ ├── gameAttributeHasHistory.ts │ ├── gameAttributesArrayToObject.ts │ ├── gameAttributesSyncedToUi.ts │ ├── geographicCoordinates.test.ts │ ├── geographicCoordinates.ts │ ├── getAdjustedTicketPrice.ts │ ├── getBestPlayerBoxScore.ts │ ├── getCol.ts │ ├── getCols.ts │ ├── getPeriodName.ts │ ├── getTeamInfos.ts │ ├── getUnusedAbbrevs.ts │ ├── getWinner.ts │ ├── hashSavedTrade.ts │ ├── helpers.test.ts │ ├── helpers.ts │ ├── index.ts │ ├── isSport.ts │ ├── lowerIsBetter.ts │ ├── names.ts │ ├── normalizeIntl.ts │ ├── playThroughInjuriesFactor.ts │ ├── polyfills.ts │ ├── posRatings.baseball.ts │ ├── posRatings.football.ts │ ├── posRatings.hockey.ts │ ├── posRatings.ts │ ├── processPlayerStats.baseball.ts │ ├── processPlayerStats.basketball.ts │ ├── processPlayerStats.football.ts │ ├── processPlayerStats.hockey.ts │ ├── processPlayerStats.ts │ ├── random.test.ts │ ├── random.ts │ ├── roundContract.ts │ ├── simpleGameAttributesUpgrade.ts │ ├── teamInfos.ts │ ├── timeBetweenGames.ts │ ├── transactionInfo.ts │ ├── types.baseball.ts │ ├── types.basketball.ts │ ├── types.football.ts │ ├── types.hockey.ts │ ├── types.ts │ ├── unwrapGameAttribute.ts │ ├── utils.test.ts │ ├── utils.ts │ └── wait.ts ├── test │ ├── fixtures │ │ └── sampleTiebreakers.ts │ ├── helpers.ts │ ├── overridePostMessage.ts │ ├── setup-e2e.ts │ ├── setup.ts │ └── smoke.test.browser.ts ├── ui │ ├── api │ │ └── index.ts │ ├── components │ │ ├── ActionButton.tsx │ │ ├── AgeAtDeath.tsx │ │ ├── BarGraph.tsx │ │ ├── BoxPlot.tsx │ │ ├── BoxScore.baseball.tsx │ │ ├── BoxScore.basketball.tsx │ │ ├── BoxScore.football.tsx │ │ ├── BoxScore.hockey.tsx │ │ ├── BoxScore.tsx │ │ ├── BoxScoreRow.basketball.tsx │ │ ├── BoxScoreRow.football.tsx │ │ ├── BoxScoreRow.tsx │ │ ├── BoxScoreWrapper.tsx │ │ ├── CheckmarkOrCross.tsx │ │ ├── CollapseArrow.tsx │ │ ├── ColorPicker │ │ │ ├── Sketch.tsx │ │ │ └── index.tsx │ │ ├── CommandPalette │ │ │ └── index.tsx │ │ ├── Confetti.tsx │ │ ├── Controller.tsx │ │ ├── CountryFlag.tsx │ │ ├── CurrencyInputGroup.tsx │ │ ├── DataTable │ │ │ ├── BulkActions.tsx │ │ │ ├── Controls.tsx │ │ │ ├── CustomizeColumns.tsx │ │ │ ├── Footer.tsx │ │ │ ├── Header.tsx │ │ │ ├── Info.tsx │ │ │ ├── Pagination.tsx │ │ │ ├── PerPage.tsx │ │ │ ├── Row.tsx │ │ │ ├── SettingsCache.ts │ │ │ ├── contexts.ts │ │ │ ├── createFilterFunction.ts │ │ │ ├── getSearchVal.tsx │ │ │ ├── getSortVal.tsx │ │ │ ├── getStickyColsClass.ts │ │ │ ├── index.tsx │ │ │ ├── loadStateFromCache.ts │ │ │ ├── processRows.ts │ │ │ ├── sortableRows.tsx │ │ │ ├── updateSortBys.ts │ │ │ ├── useBulkSelectRows.ts │ │ │ ├── useDataTableState.ts │ │ │ ├── useStickyTableHeader.ts │ │ │ ├── useStickyXX.ts │ │ │ └── watchListDialog.tsx │ │ ├── DraftAbbrev.tsx │ │ ├── Dropdown.tsx │ │ ├── DropdownLinks.tsx │ │ ├── ErrorBoundary.tsx │ │ ├── Footer.tsx │ │ ├── ForceWin.tsx │ │ ├── GameLinks.tsx │ │ ├── Header.tsx │ │ ├── Height.tsx │ │ ├── HelpPopover.tsx │ │ ├── HideableSection.tsx │ │ ├── InjuryIcon.tsx │ │ ├── JerseyNumber.tsx │ │ ├── LeagueFileUpload.tsx │ │ ├── LeagueTopBar.tsx │ │ ├── LogoAndText.tsx │ │ ├── Modal.tsx │ │ ├── Mood.tsx │ │ ├── MoreLinks.tsx │ │ ├── MovOrDiff.tsx │ │ ├── MultiTeamMenu.tsx │ │ ├── MyFace.tsx │ │ ├── NagModal.tsx │ │ ├── NavBar.tsx │ │ ├── NegotiateButtons.tsx │ │ ├── NewWindowLink.tsx │ │ ├── NewsBlock.tsx │ │ ├── NextPrevButtons.tsx │ │ ├── Notifications.tsx │ │ ├── PlayMenu.tsx │ │ ├── PlayPauseNext.tsx │ │ ├── PlayerNameLabels.tsx │ │ ├── PlayerPicture.tsx │ │ ├── PlayoffMatchup.tsx │ │ ├── PlusMinus.tsx │ │ ├── PopText.tsx │ │ ├── ProgressBarText.tsx │ │ ├── RatingWithChange.tsx │ │ ├── RatingsStatsPopover │ │ │ ├── RatingsStats.baseball.tsx │ │ │ ├── RatingsStats.basketball.tsx │ │ │ ├── RatingsStats.football.tsx │ │ │ ├── RatingsStats.hockey.tsx │ │ │ ├── RatingsStats.tsx │ │ │ └── index.tsx │ │ ├── RecordAndPlayoffs.tsx │ │ ├── ResponsivePopover.tsx │ │ ├── ResponsiveTableWrapper.tsx │ │ ├── RetiredPlayers.tsx │ │ ├── RosterComposition.tsx │ │ ├── RosterSalarySummary.tsx │ │ ├── SafeHtml.tsx │ │ ├── SaveTrade.tsx │ │ ├── ScoreBox │ │ │ └── index.tsx │ │ ├── SelectMultiple │ │ │ ├── components.tsx │ │ │ └── index.tsx │ │ ├── SideBar.tsx │ │ ├── SkillsBlock.tsx │ │ ├── Skyscraper.tsx │ │ ├── StatWithChange.tsx │ │ ├── StickyBottomButtons.tsx │ │ ├── TeamAbbrevLink.tsx │ │ ├── TeamLogoAndName.tsx │ │ ├── TeamLogoInline.tsx │ │ ├── TeamLogoJerseyInfo.tsx │ │ ├── TeamsSplitNorthAmericaWorld.tsx │ │ ├── TitleBar.tsx │ │ ├── WatchBlock.tsx │ │ ├── Weight.tsx │ │ ├── contract.tsx │ │ ├── index.tsx │ │ └── wrappedCurrency.ts │ ├── hooks │ │ ├── useBlocker.ts │ │ ├── useClickable.tsx │ │ ├── useDropdownOptions.tsx │ │ ├── useIsStuck.ts │ │ ├── useTitleBar.tsx │ │ └── useTradeOffersSwitch.tsx │ ├── index.tsx │ ├── router │ │ ├── index.test.browser.ts │ │ └── index.ts │ ├── util │ │ ├── ads.ts │ │ ├── analyticsEvent.ts │ │ ├── autoPlayDialog.tsx │ │ ├── compareVersions.ts │ │ ├── confirm.tsx │ │ ├── confirmDeleteAllLeagues.tsx │ │ ├── crossTabEmitter.ts │ │ ├── downloadFile.ts │ │ ├── downloadFileStream.ts │ │ ├── dropbox.ts │ │ ├── expandFieldingStats.baseball.ts │ │ ├── exportLeague.ts │ │ ├── formatModifierKeyLabel.ts │ │ ├── framerMotionFeatures.ts │ │ ├── genStaticPage.tsx │ │ ├── getScript.ts │ │ ├── gradientStyleFactory.ts │ │ ├── groupAwards.ts │ │ ├── helpers.test.ts │ │ ├── helpers.ts │ │ ├── index.ts │ │ ├── initBugsnag.ts │ │ ├── initServiceWorker.ts │ │ ├── initView.ts │ │ ├── leagueNotFoundMessage.tsx │ │ ├── local.ts │ │ ├── logEvent.ts │ │ ├── makeExportStream.ts │ │ ├── menuItems.tsx │ │ ├── notify.ts │ │ ├── parseCurrencyFormat.test.ts │ │ ├── parseCurrencyFormat.ts │ │ ├── prefixStatOpp.ts │ │ ├── processLiveGameEvents.baseball.tsx │ │ ├── processLiveGameEvents.basketball.tsx │ │ ├── processLiveGameEvents.football.tsx │ │ ├── processLiveGameEvents.hockey.tsx │ │ ├── processLiveGameEvents.ts │ │ ├── processPlayerStats.ts │ │ ├── realtimeUpdate.ts │ │ ├── requestPersistentStorage.ts │ │ ├── resetFileInput.ts │ │ ├── routeInfos.ts │ │ ├── routes.ts │ │ ├── safeLocalStorage.ts │ │ ├── sanitize.ts │ │ ├── takeScreenshot.ts │ │ ├── takeScreenshotChunk.ts │ │ ├── toWorker.ts │ │ ├── unregisterServiceWorkers.ts │ │ └── viewManager.tsx │ └── views │ │ ├── Account │ │ ├── AccountInfoForm.tsx │ │ ├── DeleteAccountForm.tsx │ │ └── index.tsx │ │ ├── AccountUpdateCard.tsx │ │ ├── Achievements.tsx │ │ ├── AdvancedPlayerSearch.tsx │ │ ├── AllStar.tsx │ │ ├── AllStarDunk.tsx │ │ ├── AllStarHistory.tsx │ │ ├── AllStarTeams │ │ ├── EditAllStars.tsx │ │ └── index.tsx │ │ ├── AllStarThree.tsx │ │ ├── AutoExpand.tsx │ │ ├── AutoRelocate.tsx │ │ ├── AwardRaces.tsx │ │ ├── AwardsRecords.tsx │ │ ├── Colleges.tsx │ │ ├── ComparePlayers │ │ ├── PlayersForm.tsx │ │ └── index.tsx │ │ ├── Countries.tsx │ │ ├── CustomizePlayer │ │ ├── CustomMoodItemsForm.tsx │ │ ├── Face.tsx │ │ ├── RatingsForm.tsx │ │ ├── RelativesForm.tsx │ │ └── index.tsx │ │ ├── DailySchedule.tsx │ │ ├── DangerZone │ │ ├── AutoSave.tsx │ │ ├── WorkerConsole.tsx │ │ └── index.tsx │ │ ├── Dashboard.tsx │ │ ├── DefaultNewLeagueSettings │ │ ├── ExportButton.tsx │ │ ├── ImportButton.tsx │ │ └── index.tsx │ │ ├── DeleteOldData.tsx │ │ ├── Depth.tsx │ │ ├── Draft │ │ ├── DraftButtons.tsx │ │ ├── StickyDraftInfo.tsx │ │ └── index.tsx │ │ ├── DraftHistory.tsx │ │ ├── DraftLottery.tsx │ │ ├── DraftPicks.tsx │ │ ├── DraftScouting │ │ ├── DraftClass.tsx │ │ └── index.tsx │ │ ├── DraftTeamHistory.tsx │ │ ├── Dropbox.tsx │ │ ├── EditAwards.tsx │ │ ├── Exhibition.tsx │ │ ├── ExhibitionGame.tsx │ │ ├── ExpansionDraft.tsx │ │ ├── ExportLeague.tsx │ │ ├── ExportPlayers.tsx │ │ ├── ExportStats.tsx │ │ ├── FantasyDraft.tsx │ │ ├── FreeAgents.tsx │ │ ├── Frivolities.tsx │ │ ├── FrivolitiesDraftClasses.tsx │ │ ├── FrivolitiesDraftPosition.tsx │ │ ├── FrivolitiesJerseyNumbers.tsx │ │ ├── FrivolitiesTeamSeasons.tsx │ │ ├── FrivolitiesTrades.tsx │ │ ├── GameLog.tsx │ │ ├── GlobalSettings │ │ ├── RealData.tsx │ │ ├── Storage.tsx │ │ └── index.tsx │ │ ├── GmHistory.tsx │ │ ├── GodMode.tsx │ │ ├── HallOfFame.tsx │ │ ├── HeadToHead.tsx │ │ ├── HeadToHeadAll.tsx │ │ ├── History.baseball │ │ ├── AwardsAndChamp.tsx │ │ ├── Team.tsx │ │ └── index.tsx │ │ ├── History.basketball │ │ ├── AwardsAndChamp.tsx │ │ ├── Team.tsx │ │ └── index.tsx │ │ ├── History.football │ │ ├── AwardsAndChamp.tsx │ │ ├── Team.tsx │ │ └── index.tsx │ │ ├── History.hockey │ │ ├── AwardsAndChamp.tsx │ │ ├── Team.tsx │ │ └── index.tsx │ │ ├── History.tsx │ │ ├── HistoryAll.tsx │ │ ├── ImportPlayers.tsx │ │ ├── ImportPlayersReal.tsx │ │ ├── Inbox.tsx │ │ ├── Injuries.tsx │ │ ├── Leaders.tsx │ │ ├── LeadersProgressive.tsx │ │ ├── LeadersYears.tsx │ │ ├── LeagueDashboard │ │ ├── Headlines.tsx │ │ ├── Leaders.tsx │ │ ├── Standings.tsx │ │ ├── StartingLineup.tsx │ │ ├── TeamStats.tsx │ │ └── index.tsx │ │ ├── LeagueFinances.tsx │ │ ├── LeagueStats.tsx │ │ ├── LiveGame.tsx │ │ ├── LoginOrRegister │ │ ├── Login.tsx │ │ ├── Register.tsx │ │ └── index.tsx │ │ ├── LostPassword.tsx │ │ ├── ManageConfs.tsx │ │ ├── ManageTeams │ │ ├── AddRemove.tsx │ │ ├── MoveModal.tsx │ │ ├── TeamForm.tsx │ │ └── index.tsx │ │ ├── Message │ │ ├── OwnerMoodsChart.tsx │ │ └── index.tsx │ │ ├── Most │ │ ├── GOATFormula.tsx │ │ └── index.tsx │ │ ├── MultiTeamMode.tsx │ │ ├── Negotiation.tsx │ │ ├── NegotiationList.tsx │ │ ├── NewLeague │ │ ├── CustomizeSettings.tsx │ │ ├── CustomizeTeams.tsx │ │ ├── LeagueMenu.tsx │ │ ├── LeaguePartPicker.tsx │ │ ├── RandomizeTeamsModal.tsx │ │ ├── SelectSeasonRange.tsx │ │ ├── UpsertTeamModal.tsx │ │ ├── confirmDeleteWithChildren.tsx │ │ ├── index.tsx │ │ └── types.ts │ │ ├── NewTeam.tsx │ │ ├── News.tsx │ │ ├── Notes.tsx │ │ ├── Player │ │ ├── AwardsSummary.tsx │ │ ├── Injuries.tsx │ │ ├── Note.tsx │ │ ├── RatingsOverview.tsx │ │ ├── SeasonIcons.tsx │ │ ├── StatsTable.tsx │ │ ├── TopStuff.tsx │ │ ├── common.tsx │ │ ├── index.tsx │ │ └── useRangeFooter.ts │ │ ├── PlayerBios.tsx │ │ ├── PlayerFeats.tsx │ │ ├── PlayerGameLog.tsx │ │ ├── PlayerGraphs │ │ ├── ScatterPlot.tsx │ │ └── index.tsx │ │ ├── PlayerRatingDists.tsx │ │ ├── PlayerRatings.tsx │ │ ├── PlayerStatDists.tsx │ │ ├── PlayerStats.tsx │ │ ├── Playoffs.tsx │ │ ├── PowerRankings.tsx │ │ ├── ProtectPlayers.tsx │ │ ├── Relatives.tsx │ │ ├── ResetPassword.tsx │ │ ├── Roster │ │ ├── InstructionsAndSortButtons.tsx │ │ ├── PlayThroughInjuriesSliders.tsx │ │ ├── PlayingTime.tsx │ │ ├── TopStuff.tsx │ │ └── index.tsx │ │ ├── RosterContinuity.tsx │ │ ├── SavedTrades.tsx │ │ ├── Schedule.tsx │ │ ├── ScheduleEditor │ │ ├── FancySelect.tsx │ │ ├── RegenerateScheduleModal.tsx │ │ ├── SummaryTable.tsx │ │ ├── getGradientStyle.ts │ │ └── index.tsx │ │ ├── ScheduledEvents.tsx │ │ ├── SeasonPreview.tsx │ │ ├── Settings │ │ ├── PlayerBioInfo.tsx │ │ ├── PlayerBioInfoCountries.tsx │ │ ├── PlayerBioInfoEditors.tsx │ │ ├── PlayerBioInfoSortButton.tsx │ │ ├── RowsEditor.tsx │ │ ├── SettingsForm.tsx │ │ ├── SettingsFormOptions.tsx │ │ ├── categories.tsx │ │ ├── gameSimPresets.ts │ │ ├── index.tsx │ │ ├── settings.tsx │ │ ├── types.ts │ │ └── useSettingsFormState.ts │ │ ├── Standings.tsx │ │ ├── TeamFinances.tsx │ │ ├── TeamGraphs │ │ └── index.tsx │ │ ├── TeamHistory │ │ ├── Overall.tsx │ │ ├── Players.tsx │ │ ├── RetiredJerseyNumbers.tsx │ │ ├── Seasons.tsx │ │ ├── index.tsx │ │ └── playerRetireJerseyNumberDialog.tsx │ │ ├── TeamRecords.tsx │ │ ├── TeamStatDists.tsx │ │ ├── TeamStats.tsx │ │ ├── Trade │ │ ├── AssetList.tsx │ │ ├── Buttons.tsx │ │ ├── Summary.tsx │ │ └── index.tsx │ │ ├── TradeProposals.tsx │ │ ├── TradeSummary │ │ ├── Charts.tsx │ │ ├── PickText.tsx │ │ └── index.tsx │ │ ├── TradingBlock │ │ ├── LookingFor.tsx │ │ ├── index.tsx │ │ └── useLookingForState.ts │ │ ├── TragicDeaths.tsx │ │ ├── Transactions.tsx │ │ ├── UpcomingFreeAgents.tsx │ │ ├── Upgrade65.tsx │ │ ├── WatchList.tsx │ │ └── index.ts └── worker │ ├── api │ ├── actions.ts │ ├── advancedPlayerSearch.ts │ ├── exhibitionGame.ts │ ├── getRandomTeams.ts │ ├── index.ts │ ├── leagueFileUpload.ts │ ├── playMenu.ts │ ├── processInputs.test.ts │ ├── processInputs.ts │ └── toolsMenu.ts │ ├── core │ ├── GameSim.baseball │ │ ├── PlayByPlayLogger.ts │ │ ├── Team.ts │ │ ├── fatigueFactor.ts │ │ ├── getStartingPitcher.ts │ │ ├── index.ts │ │ └── types.ts │ ├── GameSim.basketball │ │ ├── PlayByPlayLogger.ts │ │ ├── getInjuryRate.ts │ │ ├── index.ts │ │ ├── jumpBallWinnerStartsThisPeriodWithPossession.test.ts │ │ └── jumpBallWinnerStartsThisPeriodWithPossession.ts │ ├── GameSim.football │ │ ├── LngTracker.test.ts │ │ ├── LngTracker.ts │ │ ├── Play.test.ts │ │ ├── Play.ts │ │ ├── PlayByPlayLogger.ts │ │ ├── formations.ts │ │ ├── getBestPenaltyResult.ts │ │ ├── getCompositeFactor.ts │ │ ├── getPlayers.ts │ │ ├── index.test.ts │ │ ├── index.ts │ │ ├── penalties.test.ts │ │ ├── penalties.ts │ │ └── types.ts │ ├── GameSim.hockey │ │ ├── PenaltyBox.ts │ │ ├── PlayByPlayLogger.ts │ │ ├── getCompositeFactor.ts │ │ ├── getPlayers.ts │ │ ├── getStartingAndBackupGoalies.ts │ │ ├── index.ts │ │ ├── penalties.ts │ │ └── types.ts │ ├── GameSim.ts │ ├── GameSimBase.ts │ ├── allStar │ │ ├── contest.ts │ │ ├── create.ts │ │ ├── draftAll.ts │ │ ├── draftOne.ts │ │ ├── draftUser.ts │ │ ├── dunkContest.ts │ │ ├── futureGameIsAllStar.ts │ │ ├── getOrCreate.ts │ │ ├── index.ts │ │ ├── nextGameIsAllStar.ts │ │ └── threeContest.ts │ ├── contractNegotiation │ │ ├── accept.test.ts │ │ ├── accept.ts │ │ ├── cancel.ts │ │ ├── cancelAll.ts │ │ ├── create.test.ts │ │ ├── create.ts │ │ ├── index.ts │ │ └── testHelpers.ts │ ├── debug │ │ ├── averageCareerArc.ts │ │ ├── avgRatingDists.ts │ │ ├── compositeRatingDists.ts │ │ ├── countPositions.ts │ │ ├── countSkills.ts │ │ ├── index.ts │ │ ├── maxRatingDists.ts │ │ ├── percentageDraftPicksSigned.ts │ │ ├── recomputeHallOfFame.ts │ │ ├── recomputeOvr.ts │ │ └── recomputeRealSeasonLeaders.ts │ ├── draft │ │ ├── afterPicks.ts │ │ ├── deleteLotteryResultIfNoDraftYet.ts │ │ ├── divideChancesOverTiedTeams.test.ts │ │ ├── divideChancesOverTiedTeams.ts │ │ ├── genOrder.ts │ │ ├── genOrderFantasy.ts │ │ ├── genOrderGetPicks.ts │ │ ├── genOrderNBA.test.ts │ │ ├── genPicks.ts │ │ ├── genPlayers.test.ts │ │ ├── genPlayers.ts │ │ ├── genPlayersWithoutSaving.ts │ │ ├── getOrder.ts │ │ ├── getRookieContractLength.ts │ │ ├── getRookieSalaries.ts │ │ ├── getTeamsByRound.ts │ │ ├── index.ts │ │ ├── logAction.ts │ │ ├── logLotteryChances.ts │ │ ├── logLotteryTxt.ts │ │ ├── logLotteryWinners.ts │ │ ├── lotterySort.ts │ │ ├── runPicks.test.ts │ │ ├── runPicks.ts │ │ ├── selectPlayer.ts │ │ └── testHelpers.ts │ ├── expansionDraft │ │ ├── advanceToPlayerProtection.ts │ │ ├── autoProtect.ts │ │ ├── finalize.ts │ │ ├── index.ts │ │ ├── start.ts │ │ ├── updateProtectedPids.ts │ │ └── validateExpansionDraftSetup.ts │ ├── finances │ │ ├── assessPayrollMinLuxury.test.ts │ │ ├── assessPayrollMinLuxury.ts │ │ ├── defaultBudgetLevel.ts │ │ ├── getLevelLastThree.ts │ │ ├── getLuxuryTaxAmount.ts │ │ ├── getMinPayrollAmount.ts │ │ └── index.ts │ ├── freeAgents │ │ ├── autoSign.ts │ │ ├── decreaseDemands.ts │ │ ├── ensureEnoughPlayers.ts │ │ ├── getBest.ts │ │ ├── index.ts │ │ ├── normalizeContractDemands.ts │ │ └── play.ts │ ├── game │ │ ├── attendance.test.ts │ │ ├── attendance.ts │ │ ├── index.ts │ │ ├── loadTeams.ts │ │ ├── play.ts │ │ ├── setLiveSimRatingsStatsPopoverPlayers.ts │ │ ├── updatePlayoffSeries.ts │ │ ├── writeGameStats.ts │ │ ├── writePlayerStats.ts │ │ └── writeTeamStats.ts │ ├── headToHead │ │ ├── addGame.ts │ │ ├── index.ts │ │ └── iterate.ts │ ├── index.ts │ ├── league │ │ ├── autoPlay.ts │ │ ├── clone.test.ts │ │ ├── clone.ts │ │ ├── close.ts │ │ ├── create.test.ts │ │ ├── create │ │ │ ├── addDraftProspects.ts │ │ │ ├── createRandomPlayers.ts │ │ │ ├── createStreamFromLeagueObject.ts │ │ │ └── getRealTeamPlayerData.ts │ │ ├── createGameAttributes.test.ts │ │ ├── createGameAttributes.ts │ │ ├── createStream.ts │ │ ├── gameAttributesToUI.ts │ │ ├── getName.ts │ │ ├── getValidNumGamesPlayoffSeries.test.ts │ │ ├── getValidNumGamesPlayoffSeries.ts │ │ ├── index.ts │ │ ├── initAutoPlay.ts │ │ ├── initRandomDebutsForRandomPlayersLeague.ts │ │ ├── loadGameAttributes.ts │ │ ├── processPlayerNewLeague.ts │ │ ├── remove.ts │ │ ├── setGameAttributes.ts │ │ ├── setRepeatSeason.ts │ │ ├── swapWorstRoster.ts │ │ └── updateMeta.ts │ ├── phase │ │ ├── finalize.ts │ │ ├── index.ts │ │ ├── newPhase.ts │ │ ├── newPhaseAfterDraft.ts │ │ ├── newPhaseAfterTradeDeadline.ts │ │ ├── newPhaseBeforeDraft.ts │ │ ├── newPhaseDraft.ts │ │ ├── newPhaseExpansionDraft.ts │ │ ├── newPhaseFantasyDraft.ts │ │ ├── newPhaseFreeAgency.ts │ │ ├── newPhasePlayoffs.ts │ │ ├── newPhasePreseason.ts │ │ ├── newPhaseRegularSeason.ts │ │ ├── newPhaseResignPlayers.ts │ │ └── relocateExpand.ts │ ├── player │ │ ├── addAward.ts │ │ ├── addRatingsRow.ts │ │ ├── addRelatives.test.ts │ │ ├── addRelatives.ts │ │ ├── addStatsRow.ts │ │ ├── addToFreeAgents.ts │ │ ├── augmentPartialPlayer.ts │ │ ├── bonus.ts │ │ ├── checkJerseyNumberRetirement.ts │ │ ├── checkStatisticalFeat.baseball.ts │ │ ├── checkStatisticalFeat.basketball.ts │ │ ├── checkStatisticalFeat.football.ts │ │ ├── checkStatisticalFeat.hockey.ts │ │ ├── checkStatisticalFeat.ts │ │ ├── compositeRating.ts │ │ ├── contractSeasonsRemaining.ts │ │ ├── develop.ts │ │ ├── developSeason.baseball.ts │ │ ├── developSeason.basketball.ts │ │ ├── developSeason.football.ts │ │ ├── developSeason.hockey.ts │ │ ├── developSeason.ts │ │ ├── fuzzOvrs.ts │ │ ├── fuzzRating.ts │ │ ├── genContract.ts │ │ ├── genFuzz.ts │ │ ├── genJerseyNumber.test.ts │ │ ├── genJerseyNumber.ts │ │ ├── genMoodTraits.ts │ │ ├── genRandomFreeAgent.ts │ │ ├── genRatings.baseball.ts │ │ ├── genRatings.basketball.ts │ │ ├── genRatings.football.ts │ │ ├── genRatings.hockey.ts │ │ ├── genRatings.test.ts │ │ ├── genRatings.ts │ │ ├── genWeight.ts │ │ ├── generate.test.ts │ │ ├── generate.ts │ │ ├── getLeaders.ts │ │ ├── getPlayerFakeAge.test.ts │ │ ├── getPlayerFakeAge.ts │ │ ├── heightToRating.ts │ │ ├── index.ts │ │ ├── injury.ts │ │ ├── killOne.ts │ │ ├── limitRating.ts │ │ ├── madeHof.baseball.ts │ │ ├── madeHof.basketball.test.ts │ │ ├── madeHof.basketball.ts │ │ ├── madeHof.football.ts │ │ ├── madeHof.hockey.ts │ │ ├── madeHof.ts │ │ ├── moodComponents.ts │ │ ├── moodInfo.ts │ │ ├── moodInfos.ts │ │ ├── name.ts │ │ ├── ovr.baseball.ts │ │ ├── ovr.basketball.ts │ │ ├── ovr.football.ts │ │ ├── ovr.hockey.ts │ │ ├── ovr.ts │ │ ├── pos.baseball.ts │ │ ├── pos.basketball.ts │ │ ├── pos.football.ts │ │ ├── pos.hockey.ts │ │ ├── pos.ts │ │ ├── potEstimator.ts │ │ ├── release.ts │ │ ├── remove.ts │ │ ├── retire.ts │ │ ├── setContract.ts │ │ ├── setJerseyNumber.ts │ │ ├── shouldRetire.ts │ │ ├── sign.ts │ │ ├── skills.ts │ │ ├── stats.baseball.ts │ │ ├── stats.basketball.ts │ │ ├── stats.football.ts │ │ ├── stats.hockey.ts │ │ ├── stats.ts │ │ ├── statsRowIsCurrent.ts │ │ ├── updateOvrMeanStd.ts │ │ ├── updateValues.ts │ │ ├── value.ts │ │ └── valueCombineOvrPot.ts │ ├── realRosters │ │ ├── addRelatives.ts │ │ ├── addRetiredJerseyNumbers.ts │ │ ├── addSeasonInfoToTeams.ts │ │ ├── averageSalary.ts │ │ ├── checkDisableForceHistoricalRosters.ts │ │ ├── formatPlayerFactory.ts │ │ ├── formatScheduledEvents.ts │ │ ├── genPlayoffSeries.ts │ │ ├── getAwards.ts │ │ ├── getDraftProspects.ts │ │ ├── getGameAttributes.ts │ │ ├── getInjury.ts │ │ ├── getLeague.ts │ │ ├── getLeagueInfo.test.ts │ │ ├── getLeagueInfo.ts │ │ ├── getOnlyRatings.ts │ │ ├── getPlayerActiveSeasons.ts │ │ ├── index.ts │ │ ├── loadData.basketball.ts │ │ ├── loadStats.basketball.ts │ │ ├── nerfDraftProspect.ts │ │ ├── oldAbbrevTo2020BBGMAbbrev.ts │ │ ├── setDraftProspectRatingsBasedOnDraftPosition.ts │ │ └── updateRandomDebutsForever.ts │ ├── season │ │ ├── addDaysToSchedule.ts │ │ ├── awards.ts │ │ ├── doAwards.baseball.ts │ │ ├── doAwards.basketball.ts │ │ ├── doAwards.football.ts │ │ ├── doAwards.hockey.ts │ │ ├── doAwards.ts │ │ ├── genPlayoffSeeds.ts │ │ ├── genPlayoffSeries.test.ts │ │ ├── genPlayoffSeries.ts │ │ ├── getAwardCandidates.baseball.ts │ │ ├── getAwardCandidates.basketball.ts │ │ ├── getAwardCandidates.football.ts │ │ ├── getAwardCandidates.hockey.ts │ │ ├── getAwardCandidates.ts │ │ ├── getDaysLeftSchedule.ts │ │ ├── getInitialNumGamesConfDivSettings.ts │ │ ├── getLeaderRequirements.ts │ │ ├── getNumPlayoffByes.ts │ │ ├── getNumPlayoffTeams.ts │ │ ├── getPlayoffsByConf.ts │ │ ├── getRealSchedule.football.ts │ │ ├── getSchedule.ts │ │ ├── getSeasonLeaders.ts │ │ ├── groupScheduleCompact.ts │ │ ├── groupScheduleSeries.ts │ │ ├── hasTies.ts │ │ ├── index.ts │ │ ├── isFinals.ts │ │ ├── newSchedule.ts │ │ ├── newScheduleGood.football.test.ts │ │ ├── newScheduleGood.test.ts │ │ ├── newScheduleGood.ts │ │ ├── newSchedulePlayoffsDay.ts │ │ ├── setSchedule.ts │ │ ├── updateOwnerMood.ts │ │ └── validatePlayoffSettings.ts │ ├── team │ │ ├── addNewTeamToExistingLeague.ts │ │ ├── avgAge.ts │ │ ├── checkRosterSizes.test.ts │ │ ├── checkRosterSizes.ts │ │ ├── cluster.ts │ │ ├── deleteUnreadMessages.ts │ │ ├── disable.ts │ │ ├── ensureValidDivsConfs.ts │ │ ├── evaluatePointsFormula.test.ts │ │ ├── evaluatePointsFormula.ts │ │ ├── expandVote.ts │ │ ├── genDepth.baseball.ts │ │ ├── genDepth.football.ts │ │ ├── genDepth.hockey.ts │ │ ├── genDepth.ts │ │ ├── genSeasonRow.ts │ │ ├── genStatsRow.ts │ │ ├── generate.ts │ │ ├── getContracts.ts │ │ ├── getDepthPlayers.football.test.ts │ │ ├── getDepthPlayers.ts │ │ ├── getPayroll.ts │ │ ├── getPayrolls.ts │ │ ├── index.ts │ │ ├── ovr.baseball.ts │ │ ├── ovr.basketball.ts │ │ ├── ovr.football.ts │ │ ├── ovr.hockey.ts │ │ ├── ovr.ts │ │ ├── ovrByPosFactory.ts │ │ ├── processStats.baseball.ts │ │ ├── processStats.basketball.ts │ │ ├── processStats.football.ts │ │ ├── processStats.hockey.ts │ │ ├── processStats.ts │ │ ├── ptsMax.ts │ │ ├── ptsPct.ts │ │ ├── relocateVote.ts │ │ ├── resetTicketPrice.ts │ │ ├── rosterAutoSort.baseball.ts │ │ ├── rosterAutoSort.basketball.test.ts │ │ ├── rosterAutoSort.basketball.ts │ │ ├── rosterAutoSort.football.ts │ │ ├── rosterAutoSort.hockey.ts │ │ ├── rosterAutoSort.ts │ │ ├── stats.baseball.ts │ │ ├── stats.basketball.ts │ │ ├── stats.football.ts │ │ ├── stats.hockey.ts │ │ ├── stats.ts │ │ ├── switchTo.ts │ │ ├── updateClinchedPlayoffs.ts │ │ ├── updateStrategies.ts │ │ └── valueChange.ts │ └── trade │ │ ├── betweenAiTeams.ts │ │ ├── clear.ts │ │ ├── create.test.ts │ │ ├── create.ts │ │ ├── get.ts │ │ ├── getOtherTid.ts │ │ ├── getPickValues.ts │ │ ├── index.ts │ │ ├── isUntradable.ts │ │ ├── makeItWork.ts │ │ ├── makeItWorkTrade.ts │ │ ├── processTrade.ts │ │ ├── propose.ts │ │ ├── summary.ts │ │ ├── testHelpers.ts │ │ ├── updatePlayers.test.ts │ │ └── updatePlayers.ts │ ├── data │ ├── defaultColleges.ts │ ├── defaultCountries.ts │ └── defaultRaces.ts │ ├── db │ ├── Cache.test.ts │ ├── Cache.ts │ ├── SafeIdb.ts │ ├── cmp.ts │ ├── connectIndexedDB.ts │ ├── connectLeague.ts │ ├── connectMeta.ts │ ├── getAll.ts │ ├── getCopies │ │ ├── allStars.ts │ │ ├── awards.ts │ │ ├── draftLotteryResults.ts │ │ ├── draftPicks.ts │ │ ├── events.ts │ │ ├── games.ts │ │ ├── headToHeads.ts │ │ ├── helpers.ts │ │ ├── index.ts │ │ ├── messages.ts │ │ ├── playerFeats.ts │ │ ├── players.ts │ │ ├── playersPlus.test.ts │ │ ├── playersPlus.ts │ │ ├── playoffSeries.ts │ │ ├── scheduledEvents.ts │ │ ├── teamSeasons.ts │ │ ├── teamsPlus.test.ts │ │ └── teamsPlus.ts │ ├── getCopy │ │ ├── allStars.ts │ │ ├── awards.ts │ │ ├── draftLotteryResults.ts │ │ ├── events.ts │ │ ├── games.ts │ │ ├── headToHeads.ts │ │ ├── index.ts │ │ ├── messages.ts │ │ ├── players.ts │ │ ├── playersPlus.ts │ │ ├── playoffSeries.ts │ │ ├── teamSeasons.ts │ │ └── teamsPlus.ts │ ├── index.ts │ ├── iterate.ts │ └── reset.ts │ ├── index.ts │ ├── util │ ├── FormulaEvaluator.ts │ ├── achievement.ts │ ├── achievements.basketball.test.ts │ ├── achievements.test.ts │ ├── achievements.ts │ ├── actualPhase.ts │ ├── addFirstNameShort.test.ts │ ├── addFirstNameShort.ts │ ├── advStats.baseball.ts │ ├── advStats.basketball.ts │ ├── advStats.football.ts │ ├── advStats.hockey.ts │ ├── advStats.ts │ ├── advStatsSave.ts │ ├── beforeView.ts │ ├── checkAccount.ts │ ├── checkChanges.ts │ ├── checkNaNs.ts │ ├── defaultInjuries.ts │ ├── defaultTragicDeaths.ts │ ├── env.ts │ ├── face.ts │ ├── formatEventText.ts │ ├── g.ts │ ├── genMessage.test.ts │ ├── genMessage.ts │ ├── getGlobalSettings.ts │ ├── getNewLeagueLid.ts │ ├── getProcessedGames.ts │ ├── getTeamColors.ts │ ├── getTeamInfoBySeason.ts │ ├── goatFormula.ts │ ├── helpers.test.ts │ ├── helpers.ts │ ├── index.ts │ ├── initUILocalGames.ts │ ├── loadNames.ts │ ├── local.ts │ ├── lock.ts │ ├── logEvent.ts │ ├── newLeagueGodModeLimits.ts │ ├── orderTeams.test.ts │ ├── orderTeams.ts │ ├── processPlayerStats.ts │ ├── processPlayersHallOfFame.ts │ ├── processScheduledEvents.ts │ ├── recomputeLocalUITeamOvrs.ts │ ├── romanNumerals.test.ts │ ├── romanNumerals.ts │ ├── toUI.ts │ ├── updatePhase.ts │ ├── updatePlayMenu.ts │ └── updateStatus.ts │ └── views │ ├── account.ts │ ├── accountUpdateCard.ts │ ├── achievements.ts │ ├── advancedPlayerSearch.ts │ ├── allStar.ts │ ├── allStarDunk.ts │ ├── allStarHistory.ts │ ├── allStarTeams.ts │ ├── allStarThree.ts │ ├── autoExpand.ts │ ├── autoRelocate.ts │ ├── awardRaces.ts │ ├── awardsRecords.ts │ ├── colleges.ts │ ├── comparePlayers.ts │ ├── countries.ts │ ├── customizePlayer.ts │ ├── dailySchedule.ts │ ├── dangerZone.ts │ ├── dashboard.ts │ ├── defaultNewLeagueSettings.ts │ ├── depth.ts │ ├── draft.ts │ ├── draftHistory.ts │ ├── draftLottery.ts │ ├── draftPicks.ts │ ├── draftScouting.ts │ ├── draftTeamHistory.ts │ ├── editAwards.ts │ ├── exhibition.ts │ ├── exhibitionGame.ts │ ├── expansionDraft.ts │ ├── exportLeague.ts │ ├── exportPlayers.ts │ ├── exportStats.ts │ ├── fantasyDraft.ts │ ├── freeAgents.ts │ ├── frivolitiesDraftClasses.ts │ ├── frivolitiesDraftPosition.ts │ ├── frivolitiesJerseyNumbers.ts │ ├── frivolitiesTeamSeasons.ts │ ├── frivolitiesTrades.ts │ ├── gameLog.ts │ ├── globalSettings.ts │ ├── gmHistory.ts │ ├── godMode.ts │ ├── hallOfFame.ts │ ├── headToHead.ts │ ├── headToHeadAll.ts │ ├── history.ts │ ├── historyAll.ts │ ├── importPlayers.ts │ ├── importPlayersReal.ts │ ├── inbox.ts │ ├── index.ts │ ├── injuries.ts │ ├── leaders.ts │ ├── leadersProgressive.ts │ ├── leadersYears.ts │ ├── leagueDashboard.ts │ ├── leagueFinances.ts │ ├── leagueStats.ts │ ├── liveGame.ts │ ├── manageConfs.ts │ ├── manageTeams.ts │ ├── message.ts │ ├── most.ts │ ├── multiTeamMode.ts │ ├── negotiation.ts │ ├── negotiationList.ts │ ├── newLeague.ts │ ├── newTeam.ts │ ├── news.ts │ ├── notes.ts │ ├── player.ts │ ├── playerBios.ts │ ├── playerFeats.ts │ ├── playerGameLog.ts │ ├── playerGraphs.ts │ ├── playerRatingDists.ts │ ├── playerRatings.ts │ ├── playerStatDists.ts │ ├── playerStats.ts │ ├── playoffs.ts │ ├── powerRankings.ts │ ├── protectPlayers.ts │ ├── relatives.ts │ ├── resetPassword.ts │ ├── roster.ts │ ├── rosterContinuity.ts │ ├── savedTrades.ts │ ├── schedule.ts │ ├── scheduleEditor.ts │ ├── scheduledEvents.ts │ ├── seasonPreview.ts │ ├── settings.ts │ ├── standings.ts │ ├── teamFinances.ts │ ├── teamGraphs.ts │ ├── teamHistory.ts │ ├── teamRecords.ts │ ├── teamStatDists.ts │ ├── teamStats.ts │ ├── trade.ts │ ├── tradeProposals.ts │ ├── tradeSummary.ts │ ├── tradingBlock.ts │ ├── tragicDeaths.ts │ ├── transactions.ts │ ├── upcomingFreeAgents.ts │ └── watchList.ts ├── tools ├── babel-plugin-sport-functions │ ├── index.test.ts │ └── index.ts ├── build │ ├── build.ts │ ├── buildCss.ts │ ├── buildJs.ts │ ├── buildJsWorker.ts │ ├── buildSw.ts │ ├── cli.ts │ ├── copyFiles.ts │ ├── createJsonSchemaFile.ts │ ├── fileHash.ts │ ├── generateJsonSchema.ts │ ├── generateVersionNumber.ts │ ├── minifyIndexHtml.ts │ ├── replace.ts │ ├── reset.ts │ └── setTimestamps.ts ├── change-starting-season.js ├── colleges-basketball.js ├── colleges-football.js ├── deploy-all.ts ├── deploy.ts ├── lib │ ├── bySport.ts │ ├── deploy.ts │ ├── getSport.ts │ ├── namesBasketball.js │ ├── namesFootball.js │ ├── namesHelpers.ts │ ├── rolldownConfig.ts │ ├── rollupConfig.ts │ └── server.ts ├── names-gen-basketball-football.js ├── names-manual │ ├── README.md │ ├── basketball.json │ ├── country-Albania-first.csv │ ├── country-Albania-last.csv │ ├── country-Algeria-first.csv │ ├── country-Algeria-last.csv │ ├── country-American Samoa-first.csv │ ├── country-American Samoa-last.csv │ ├── country-Argentina-female.csv │ ├── country-Armenia-first.csv │ ├── country-Armenia-last.csv │ ├── country-Australia-female.csv │ ├── country-Austria-first.csv │ ├── country-Austria-last.csv │ ├── country-Azerbaijan-first.csv │ ├── country-Azerbaijan-last.csv │ ├── country-Bahamas-first.csv │ ├── country-Bahamas-last.csv │ ├── country-Belarus-first.csv │ ├── country-Belarus-last.csv │ ├── country-Belgium-first.csv │ ├── country-Belgium-last.csv │ ├── country-Benin-first.csv │ ├── country-Benin-last.csv │ ├── country-Bosnia and Herzegovina-female.csv │ ├── country-Brazil-female.csv │ ├── country-Bulgaria-first.csv │ ├── country-Bulgaria-last.csv │ ├── country-Cameroon-first.csv │ ├── country-Cameroon-last.csv │ ├── country-Canada-female.csv │ ├── country-Canada-first.csv │ ├── country-Canada-last.csv │ ├── country-Central African Republic-first.csv │ ├── country-Central African Republic-last.csv │ ├── country-Chad-first.csv │ ├── country-Chad-last.csv │ ├── country-China-female.csv │ ├── country-China-first.csv │ ├── country-China-last.csv │ ├── country-Congo-first.csv │ ├── country-Congo-last.csv │ ├── country-Croatia-female.csv │ ├── country-Czech Republic-female.csv │ ├── country-Czech Republic-first.csv │ ├── country-Czech Republic-last.csv │ ├── country-Denmark-first.csv │ ├── country-Denmark-last.csv │ ├── country-Egypt-first.csv │ ├── country-Egypt-last.csv │ ├── country-England-female.csv │ ├── country-England-first.csv │ ├── country-England-last.csv │ ├── country-Estonia-first.csv │ ├── country-Estonia-last.csv │ ├── country-Ethiopia-first.csv │ ├── country-Ethiopia-last.csv │ ├── country-Finland-first.csv │ ├── country-Finland-last.csv │ ├── country-France-female.csv │ ├── country-France-first.csv │ ├── country-France-last.csv │ ├── country-French Guiana-first.csv │ ├── country-French Guiana-last.csv │ ├── country-Gabon-first.csv │ ├── country-Gabon-last.csv │ ├── country-Georgia-first.csv │ ├── country-Georgia-last.csv │ ├── country-Germany-female.csv │ ├── country-Germany-first.csv │ ├── country-Germany-last.csv │ ├── country-Ghana-first.csv │ ├── country-Ghana-last.csv │ ├── country-Greece-female.csv │ ├── country-Greece-first.csv │ ├── country-Greece-last.csv │ ├── country-Guadeloupe-first.csv │ ├── country-Guadeloupe-last.csv │ ├── country-Guinea-first.csv │ ├── country-Guinea-last.csv │ ├── country-Haiti-first.csv │ ├── country-Haiti-last.csv │ ├── country-Hungary-first.csv │ ├── country-Hungary-last.csv │ ├── country-Iceland-first.csv │ ├── country-Iceland-last.csv │ ├── country-India-first.csv │ ├── country-India-last.csv │ ├── country-Indonesia-first.csv │ ├── country-Indonesia-last.csv │ ├── country-Iran-first.csv │ ├── country-Iran-last.csv │ ├── country-Ireland-first.csv │ ├── country-Ireland-last.csv │ ├── country-Israel-first.csv │ ├── country-Israel-last.csv │ ├── country-Italy-female.csv │ ├── country-Italy-first.csv │ ├── country-Italy-last.csv │ ├── country-Ivory Coast-first.csv │ ├── country-Ivory Coast-last.csv │ ├── country-Jamaica-first.csv │ ├── country-Jamaica-last.csv │ ├── country-Japan-first.csv │ ├── country-Japan-last.csv │ ├── country-Kazakhstan-first.csv │ ├── country-Kazakhstan-last.csv │ ├── country-Kenya-first.csv │ ├── country-Kenya-last.csv │ ├── country-Kosovo-last.csv │ ├── country-Kyrgyzstan-first.csv │ ├── country-Kyrgyzstan-last.csv │ ├── country-Laos-first.csv │ ├── country-Laos-last.csv │ ├── country-Latvia-first.csv │ ├── country-Latvia-last.csv │ ├── country-Liberia-first.csv │ ├── country-Liberia-last.csv │ ├── country-Lithuania-female.csv │ ├── country-Luxembourg-first.csv │ ├── country-Luxembourg-last.csv │ ├── country-Mali-first.csv │ ├── country-Mali-last.csv │ ├── country-Moldova-first.csv │ ├── country-Moldova-last.csv │ ├── country-Montenegro-female.csv │ ├── country-Montenegro-first.csv │ ├── country-Montenegro-last.csv │ ├── country-Morocco-first.csv │ ├── country-Morocco-last.csv │ ├── country-Nepal-first.csv │ ├── country-Nepal-last.csv │ ├── country-Netherlands-first.csv │ ├── country-Netherlands-last.csv │ ├── country-New Zealand-first.csv │ ├── country-New Zealand-last.csv │ ├── country-Nigeria-female.csv │ ├── country-North Macedonia-first.csv │ ├── country-North Macedonia-last.csv │ ├── country-Norway-first.csv │ ├── country-Norway-last.csv │ ├── country-Pakistan-first.csv │ ├── country-Pakistan-last.csv │ ├── country-Papua New Guinea-first.csv │ ├── country-Papua New Guinea-last.csv │ ├── country-Philippines-first.csv │ ├── country-Philippines-last.csv │ ├── country-Poland-female.csv │ ├── country-Poland-first.csv │ ├── country-Poland-last.csv │ ├── country-Romania-first.csv │ ├── country-Romania-last.csv │ ├── country-Russia-female.csv │ ├── country-Russia-first.csv │ ├── country-Russia-last.csv │ ├── country-Samoa-first.csv │ ├── country-Samoa-last.csv │ ├── country-Scotland-first.csv │ ├── country-Scotland-last.csv │ ├── country-Senegal-female.csv │ ├── country-Senegal-first.csv │ ├── country-Senegal-last.csv │ ├── country-Serbia-female.csv │ ├── country-Slovakia-first.csv │ ├── country-Slovakia-last.csv │ ├── country-Slovenia-female.csv │ ├── country-Slovenia-first.csv │ ├── country-Slovenia-last.csv │ ├── country-South Africa-first.csv │ ├── country-South Africa-last.csv │ ├── country-South Sudan-first.csv │ ├── country-South Sudan-last.csv │ ├── country-Spain-female.csv │ ├── country-Sudan-first.csv │ ├── country-Sudan-last.csv │ ├── country-Sweden-female.csv │ ├── country-Sweden-first.csv │ ├── country-Sweden-last.csv │ ├── country-Switzerland-first.csv │ ├── country-Switzerland-last.csv │ ├── country-Thailand-first.csv │ ├── country-Thailand-last.csv │ ├── country-Trinidad and Tobago-first.csv │ ├── country-Trinidad and Tobago-last.csv │ ├── country-Turkey-female.csv │ ├── country-Turkey-first.csv │ ├── country-Turkey-last.csv │ ├── country-USA-female.csv │ ├── country-Ukraine-first.csv │ ├── country-Ukraine-last.csv │ ├── country-Uzbekistan-first.csv │ ├── country-Uzbekistan-last.csv │ ├── country-Vietnam-first.csv │ ├── country-Vietnam-last.csv │ ├── country-Virgin Islands-first.csv │ ├── country-Virgin Islands-last.csv │ ├── country-Wales-first.csv │ ├── country-Wales-last.csv │ ├── football.json │ ├── group-hispanic-first.csv │ ├── group-hispanic-last.csv │ ├── group-korean-first.csv │ ├── group-korean-last.csv │ ├── group-portuguese-first.csv │ └── group-portuguese-last.csv ├── names.js ├── playoff-seed-odds-winning.js ├── pre-test.ts ├── preview.ts ├── races.csv ├── races.js └── watch │ ├── cli.ts │ ├── log.ts │ ├── spinners.ts │ ├── watchCss.ts │ ├── watchCssWorker.ts │ ├── watchFiles.ts │ ├── watchJs.ts │ ├── watchJsWorker.ts │ └── watchJsonSchema.ts ├── tsconfig.json ├── vitest-e2e.config.ts └── vitest.config.ts /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | pnpm lint-staged 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "useTabs": true 3 | } 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLA-entity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/CLA-entity.md -------------------------------------------------------------------------------- /CLA-individual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/CLA-individual.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/TODO -------------------------------------------------------------------------------- /analysis/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/analysis/.gitignore -------------------------------------------------------------------------------- /analysis/pos-basketball/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/analysis/pos-basketball/README.md -------------------------------------------------------------------------------- /analysis/pos-basketball/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/analysis/pos-basketball/process.py -------------------------------------------------------------------------------- /analysis/pot-estimator-baseball/README.md: -------------------------------------------------------------------------------- 1 | data.csv is one league generated with NUM_SIMULATIONS set to 1000 2 | -------------------------------------------------------------------------------- /analysis/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/analysis/requirements.txt -------------------------------------------------------------------------------- /analysis/team-ovr-hockey/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/analysis/team-ovr-hockey/README.md -------------------------------------------------------------------------------- /analysis/team-ovr-hockey/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/analysis/team-ovr-hockey/process.py -------------------------------------------------------------------------------- /data/injuries.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/data/injuries.ods -------------------------------------------------------------------------------- /data/names-female.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/data/names-female.json -------------------------------------------------------------------------------- /data/names.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/data/names.json -------------------------------------------------------------------------------- /data/penalties.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/data/penalties.ods -------------------------------------------------------------------------------- /data/real-schedules.football.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/data/real-schedules.football.json -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/baseball/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/baseball/.htaccess -------------------------------------------------------------------------------- /public/baseball/ico/icon-gold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/baseball/ico/icon-gold.svg -------------------------------------------------------------------------------- /public/baseball/ico/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/baseball/ico/icon.svg -------------------------------------------------------------------------------- /public/baseball/ico/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/baseball/ico/icon128.png -------------------------------------------------------------------------------- /public/baseball/ico/icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/baseball/ico/icon180.png -------------------------------------------------------------------------------- /public/baseball/ico/icon192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/baseball/ico/icon192.png -------------------------------------------------------------------------------- /public/baseball/ico/icon512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/baseball/ico/icon512.png -------------------------------------------------------------------------------- /public/baseball/ico/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/baseball/ico/icon64.png -------------------------------------------------------------------------------- /public/baseball/ico/icon70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/baseball/ico/icon70.png -------------------------------------------------------------------------------- /public/baseball/ico/logo-gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/baseball/ico/logo-gold.png -------------------------------------------------------------------------------- /public/baseball/ico/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/baseball/ico/logo.png -------------------------------------------------------------------------------- /public/baseball/ico/maskable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/baseball/ico/maskable.png -------------------------------------------------------------------------------- /public/basketball/ico/icon-gold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/basketball/ico/icon-gold.svg -------------------------------------------------------------------------------- /public/basketball/ico/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/basketball/ico/icon.svg -------------------------------------------------------------------------------- /public/basketball/ico/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/basketball/ico/icon128.png -------------------------------------------------------------------------------- /public/basketball/ico/icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/basketball/ico/icon180.png -------------------------------------------------------------------------------- /public/basketball/ico/icon192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/basketball/ico/icon192.png -------------------------------------------------------------------------------- /public/basketball/ico/icon512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/basketball/ico/icon512.png -------------------------------------------------------------------------------- /public/basketball/ico/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/basketball/ico/icon64.png -------------------------------------------------------------------------------- /public/basketball/ico/icon70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/basketball/ico/icon70.png -------------------------------------------------------------------------------- /public/basketball/ico/logo-gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/basketball/ico/logo-gold.png -------------------------------------------------------------------------------- /public/basketball/ico/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/basketball/ico/logo.png -------------------------------------------------------------------------------- /public/basketball/ico/maskable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/basketball/ico/maskable.png -------------------------------------------------------------------------------- /public/basketball/img/lavar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/basketball/img/lavar.jpg -------------------------------------------------------------------------------- /public/basketball/img/obama.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/basketball/img/obama.jpg -------------------------------------------------------------------------------- /public/basketball/img/trump.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/basketball/img/trump.jpg -------------------------------------------------------------------------------- /public/css/bbgm-notifications.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/css/bbgm-notifications.scss -------------------------------------------------------------------------------- /public/css/dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/css/dark.scss -------------------------------------------------------------------------------- /public/css/datatable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/css/datatable.scss -------------------------------------------------------------------------------- /public/css/glyphicons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/css/glyphicons.scss -------------------------------------------------------------------------------- /public/css/light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/css/light.scss -------------------------------------------------------------------------------- /public/css/sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/css/sidebar.scss -------------------------------------------------------------------------------- /public/football/ico/icon-gold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/football/ico/icon-gold.svg -------------------------------------------------------------------------------- /public/football/ico/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/football/ico/icon.svg -------------------------------------------------------------------------------- /public/football/ico/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/football/ico/icon128.png -------------------------------------------------------------------------------- /public/football/ico/icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/football/ico/icon180.png -------------------------------------------------------------------------------- /public/football/ico/icon192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/football/ico/icon192.png -------------------------------------------------------------------------------- /public/football/ico/icon512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/football/ico/icon512.png -------------------------------------------------------------------------------- /public/football/ico/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/football/ico/icon64.png -------------------------------------------------------------------------------- /public/football/ico/icon70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/football/ico/icon70.png -------------------------------------------------------------------------------- /public/football/ico/logo-gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/football/ico/logo-gold.png -------------------------------------------------------------------------------- /public/football/ico/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/football/ico/logo.png -------------------------------------------------------------------------------- /public/football/ico/maskable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/football/ico/maskable.png -------------------------------------------------------------------------------- /public/hockey/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/hockey/.htaccess -------------------------------------------------------------------------------- /public/hockey/ico/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/hockey/ico/icon.svg -------------------------------------------------------------------------------- /public/hockey/ico/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/hockey/ico/icon128.png -------------------------------------------------------------------------------- /public/hockey/ico/icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/hockey/ico/icon180.png -------------------------------------------------------------------------------- /public/hockey/ico/icon192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/hockey/ico/icon192.png -------------------------------------------------------------------------------- /public/hockey/ico/icon512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/hockey/ico/icon512.png -------------------------------------------------------------------------------- /public/hockey/ico/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/hockey/ico/icon64.png -------------------------------------------------------------------------------- /public/hockey/ico/icon70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/hockey/ico/icon70.png -------------------------------------------------------------------------------- /public/hockey/ico/logo-gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/hockey/ico/logo-gold.png -------------------------------------------------------------------------------- /public/hockey/ico/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/hockey/ico/logo.png -------------------------------------------------------------------------------- /public/hockey/ico/maskable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/hockey/ico/maskable.png -------------------------------------------------------------------------------- /public/hockey/manifest.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/hockey/manifest.webmanifest -------------------------------------------------------------------------------- /public/ico/new_window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/ico/new_window.svg -------------------------------------------------------------------------------- /public/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logo.png -------------------------------------------------------------------------------- /public/img/logo.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logo.xcf -------------------------------------------------------------------------------- /public/img/logos-primary/ABQ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/ABQ.svg -------------------------------------------------------------------------------- /public/img/logos-primary/AMS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/AMS.svg -------------------------------------------------------------------------------- /public/img/logos-primary/ANC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/ANC.svg -------------------------------------------------------------------------------- /public/img/logos-primary/ATH.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/ATH.svg -------------------------------------------------------------------------------- /public/img/logos-primary/ATL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/ATL.svg -------------------------------------------------------------------------------- /public/img/logos-primary/AUS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/AUS.svg -------------------------------------------------------------------------------- /public/img/logos-primary/BAL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/BAL.svg -------------------------------------------------------------------------------- /public/img/logos-primary/BEI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/BEI.svg -------------------------------------------------------------------------------- /public/img/logos-primary/BEL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/BEL.svg -------------------------------------------------------------------------------- /public/img/logos-primary/BER.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/BER.svg -------------------------------------------------------------------------------- /public/img/logos-primary/BKN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/BKN.svg -------------------------------------------------------------------------------- /public/img/logos-primary/BOG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/BOG.svg -------------------------------------------------------------------------------- /public/img/logos-primary/BOI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/BOI.svg -------------------------------------------------------------------------------- /public/img/logos-primary/BOS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/BOS.svg -------------------------------------------------------------------------------- /public/img/logos-primary/BRU.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/BRU.svg -------------------------------------------------------------------------------- /public/img/logos-primary/BUE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/BUE.svg -------------------------------------------------------------------------------- /public/img/logos-primary/BUF.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/BUF.svg -------------------------------------------------------------------------------- /public/img/logos-primary/CAI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/CAI.svg -------------------------------------------------------------------------------- /public/img/logos-primary/CGY.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/CGY.svg -------------------------------------------------------------------------------- /public/img/logos-primary/CHA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/CHA.svg -------------------------------------------------------------------------------- /public/img/logos-primary/CHI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/CHI.svg -------------------------------------------------------------------------------- /public/img/logos-primary/CHW.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/CHW.svg -------------------------------------------------------------------------------- /public/img/logos-primary/CIN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/CIN.svg -------------------------------------------------------------------------------- /public/img/logos-primary/CLB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/CLB.svg -------------------------------------------------------------------------------- /public/img/logos-primary/CLE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/CLE.svg -------------------------------------------------------------------------------- /public/img/logos-primary/CPH.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/CPH.svg -------------------------------------------------------------------------------- /public/img/logos-primary/DAL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/DAL.svg -------------------------------------------------------------------------------- /public/img/logos-primary/DEL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/DEL.svg -------------------------------------------------------------------------------- /public/img/logos-primary/DEN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/DEN.svg -------------------------------------------------------------------------------- /public/img/logos-primary/DET.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/DET.svg -------------------------------------------------------------------------------- /public/img/logos-primary/EDM.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/EDM.svg -------------------------------------------------------------------------------- /public/img/logos-primary/HAW.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/HAW.svg -------------------------------------------------------------------------------- /public/img/logos-primary/HOU.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/HOU.svg -------------------------------------------------------------------------------- /public/img/logos-primary/IND.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/IND.svg -------------------------------------------------------------------------------- /public/img/logos-primary/IST.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/IST.svg -------------------------------------------------------------------------------- /public/img/logos-primary/JAX.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/JAX.svg -------------------------------------------------------------------------------- /public/img/logos-primary/JKT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/JKT.svg -------------------------------------------------------------------------------- /public/img/logos-primary/JNB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/JNB.svg -------------------------------------------------------------------------------- /public/img/logos-primary/KAU.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/KAU.svg -------------------------------------------------------------------------------- /public/img/logos-primary/KC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/KC.svg -------------------------------------------------------------------------------- /public/img/logos-primary/KEN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/KEN.svg -------------------------------------------------------------------------------- /public/img/logos-primary/KYV.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/KYV.svg -------------------------------------------------------------------------------- /public/img/logos-primary/LA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/LA.svg -------------------------------------------------------------------------------- /public/img/logos-primary/LAE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/LAE.svg -------------------------------------------------------------------------------- /public/img/logos-primary/LAG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/LAG.svg -------------------------------------------------------------------------------- /public/img/logos-primary/LIM.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/LIM.svg -------------------------------------------------------------------------------- /public/img/logos-primary/LIS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/LIS.svg -------------------------------------------------------------------------------- /public/img/logos-primary/LON.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/LON.svg -------------------------------------------------------------------------------- /public/img/logos-primary/LV.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/LV.svg -------------------------------------------------------------------------------- /public/img/logos-primary/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/MAD.svg -------------------------------------------------------------------------------- /public/img/logos-primary/MCM.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/MCM.svg -------------------------------------------------------------------------------- /public/img/logos-primary/MEM.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/MEM.svg -------------------------------------------------------------------------------- /public/img/logos-primary/MIA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/MIA.svg -------------------------------------------------------------------------------- /public/img/logos-primary/MIL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/MIL.svg -------------------------------------------------------------------------------- /public/img/logos-primary/MIN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/MIN.svg -------------------------------------------------------------------------------- /public/img/logos-primary/MLB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/MLB.svg -------------------------------------------------------------------------------- /public/img/logos-primary/MNL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/MNL.svg -------------------------------------------------------------------------------- /public/img/logos-primary/MON.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/MON.svg -------------------------------------------------------------------------------- /public/img/logos-primary/MOS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/MOS.svg -------------------------------------------------------------------------------- /public/img/logos-primary/MXC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/MXC.svg -------------------------------------------------------------------------------- /public/img/logos-primary/NJ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/NJ.svg -------------------------------------------------------------------------------- /public/img/logos-primary/NOL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/NOL.svg -------------------------------------------------------------------------------- /public/img/logos-primary/NSH.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/NSH.svg -------------------------------------------------------------------------------- /public/img/logos-primary/NYC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/NYC.svg -------------------------------------------------------------------------------- /public/img/logos-primary/OAK.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/OAK.svg -------------------------------------------------------------------------------- /public/img/logos-primary/OKC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/OKC.svg -------------------------------------------------------------------------------- /public/img/logos-primary/OMA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/OMA.svg -------------------------------------------------------------------------------- /public/img/logos-primary/ORL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/ORL.svg -------------------------------------------------------------------------------- /public/img/logos-primary/OTT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/OTT.svg -------------------------------------------------------------------------------- /public/img/logos-primary/PAR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/PAR.svg -------------------------------------------------------------------------------- /public/img/logos-primary/PHI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/PHI.svg -------------------------------------------------------------------------------- /public/img/logos-primary/PHO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/PHO.svg -------------------------------------------------------------------------------- /public/img/logos-primary/PIT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/PIT.svg -------------------------------------------------------------------------------- /public/img/logos-primary/POR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/POR.svg -------------------------------------------------------------------------------- /public/img/logos-primary/PRO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/PRO.svg -------------------------------------------------------------------------------- /public/img/logos-primary/QUE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/QUE.svg -------------------------------------------------------------------------------- /public/img/logos-primary/RAL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/RAL.svg -------------------------------------------------------------------------------- /public/img/logos-primary/RIO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/RIO.svg -------------------------------------------------------------------------------- /public/img/logos-primary/ROM.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/ROM.svg -------------------------------------------------------------------------------- /public/img/logos-primary/RYD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/RYD.svg -------------------------------------------------------------------------------- /public/img/logos-primary/SA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/SA.svg -------------------------------------------------------------------------------- /public/img/logos-primary/SAC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/SAC.svg -------------------------------------------------------------------------------- /public/img/logos-primary/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/SD.svg -------------------------------------------------------------------------------- /public/img/logos-primary/SEA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/SEA.svg -------------------------------------------------------------------------------- /public/img/logos-primary/SEL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/SEL.svg -------------------------------------------------------------------------------- /public/img/logos-primary/SF.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/SF.svg -------------------------------------------------------------------------------- /public/img/logos-primary/SGO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/SGO.svg -------------------------------------------------------------------------------- /public/img/logos-primary/SIN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/SIN.svg -------------------------------------------------------------------------------- /public/img/logos-primary/SJ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/SJ.svg -------------------------------------------------------------------------------- /public/img/logos-primary/STL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/STL.svg -------------------------------------------------------------------------------- /public/img/logos-primary/STO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/STO.svg -------------------------------------------------------------------------------- /public/img/logos-primary/SYD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/SYD.svg -------------------------------------------------------------------------------- /public/img/logos-primary/THR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/THR.svg -------------------------------------------------------------------------------- /public/img/logos-primary/TLV.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/TLV.svg -------------------------------------------------------------------------------- /public/img/logos-primary/TOK.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/TOK.svg -------------------------------------------------------------------------------- /public/img/logos-primary/TOR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/TOR.svg -------------------------------------------------------------------------------- /public/img/logos-primary/TPA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/TPA.svg -------------------------------------------------------------------------------- /public/img/logos-primary/TPE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/TPE.svg -------------------------------------------------------------------------------- /public/img/logos-primary/UTA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/UTA.svg -------------------------------------------------------------------------------- /public/img/logos-primary/VAN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/VAN.svg -------------------------------------------------------------------------------- /public/img/logos-primary/VB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/VB.svg -------------------------------------------------------------------------------- /public/img/logos-primary/WAS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/WAS.svg -------------------------------------------------------------------------------- /public/img/logos-primary/WAW.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/WAW.svg -------------------------------------------------------------------------------- /public/img/logos-primary/WPG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-primary/WPG.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/ABQ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/ABQ.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/AMS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/AMS.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/ANC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/ANC.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/ATH.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/ATH.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/ATL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/ATL.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/AUS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/AUS.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/BAL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/BAL.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/BEI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/BEI.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/BEL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/BEL.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/BER.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/BER.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/BKN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/BKN.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/BOG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/BOG.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/BOI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/BOI.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/BOS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/BOS.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/BRU.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/BRU.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/BUE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/BUE.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/BUF.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/BUF.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/CAI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/CAI.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/CGY.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/CGY.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/CHA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/CHA.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/CHI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/CHI.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/CHW.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/CHW.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/CIN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/CIN.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/CLB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/CLB.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/CLE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/CLE.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/CPH.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/CPH.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/DAL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/DAL.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/DEL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/DEL.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/DEN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/DEN.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/DET.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/DET.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/EDM.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/EDM.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/HAW.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/HAW.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/HOU.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/HOU.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/IND.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/IND.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/IST.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/IST.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/JAX.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/JAX.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/JKT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/JKT.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/JNB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/JNB.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/KAU.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/KAU.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/KC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/KC.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/KEN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/KEN.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/KYV.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/KYV.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/LA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/LA.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/LAG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/LAG.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/LIM.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/LIM.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/LIS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/LIS.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/LON.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/LON.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/LV.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/LV.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/MAD.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/MCM.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/MCM.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/MEM.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/MEM.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/MIA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/MIA.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/MIL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/MIL.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/MIN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/MIN.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/MLB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/MLB.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/MNL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/MNL.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/MON.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/MON.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/MOS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/MOS.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/MXC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/MXC.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/NJ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/NJ.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/NOL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/NOL.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/NSH.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/NSH.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/NYC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/NYC.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/OAK.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/OAK.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/OKC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/OKC.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/OMA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/OMA.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/ORL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/ORL.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/OTT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/OTT.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/PAR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/PAR.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/PHI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/PHI.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/PHO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/PHO.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/PIT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/PIT.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/POR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/POR.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/PRO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/PRO.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/QUE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/QUE.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/RAL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/RAL.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/RIO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/RIO.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/ROM.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/ROM.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/RYD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/RYD.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/SA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/SA.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/SAC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/SAC.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/SD.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/SEA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/SEA.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/SEL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/SEL.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/SF.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/SF.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/SGO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/SGO.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/SIN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/SIN.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/SJ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/SJ.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/STL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/STL.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/STO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/STO.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/SYD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/SYD.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/THR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/THR.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/TLV.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/TLV.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/TOK.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/TOK.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/TOR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/TOR.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/TPA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/TPA.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/TPE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/TPE.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/UTA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/UTA.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/VB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/VB.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/WAS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/WAS.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/WAW.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/WAW.svg -------------------------------------------------------------------------------- /public/img/logos-secondary/WPG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos-secondary/WPG.svg -------------------------------------------------------------------------------- /public/img/logos/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/img/logos/.htaccess -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/index.html -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/sw.js -------------------------------------------------------------------------------- /public/upgrade-50/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/upgrade-50/index.html -------------------------------------------------------------------------------- /public/upgrade-50/upgrade-50.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/public/upgrade-50/upgrade-50.js -------------------------------------------------------------------------------- /src/common/advancedPlayerSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/advancedPlayerSearch.ts -------------------------------------------------------------------------------- /src/common/allowForceTie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/allowForceTie.ts -------------------------------------------------------------------------------- /src/common/analyticsEventLocal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/analyticsEventLocal.ts -------------------------------------------------------------------------------- /src/common/applyRealTeamInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/applyRealTeamInfo.ts -------------------------------------------------------------------------------- /src/common/budgetLevels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/budgetLevels.ts -------------------------------------------------------------------------------- /src/common/bySport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/bySport.ts -------------------------------------------------------------------------------- /src/common/constants.baseball.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/constants.baseball.ts -------------------------------------------------------------------------------- /src/common/constants.basketball.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/constants.basketball.ts -------------------------------------------------------------------------------- /src/common/constants.football.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/constants.football.ts -------------------------------------------------------------------------------- /src/common/constants.hockey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/constants.hockey.ts -------------------------------------------------------------------------------- /src/common/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/constants.ts -------------------------------------------------------------------------------- /src/common/createLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/createLogger.ts -------------------------------------------------------------------------------- /src/common/defaultGameAttributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/defaultGameAttributes.ts -------------------------------------------------------------------------------- /src/common/draftLottery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/draftLottery.ts -------------------------------------------------------------------------------- /src/common/dunkContest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/dunkContest.ts -------------------------------------------------------------------------------- /src/common/fetchWrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/fetchWrapper.ts -------------------------------------------------------------------------------- /src/common/filterPlayerStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/filterPlayerStats.ts -------------------------------------------------------------------------------- /src/common/formatClock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/formatClock.ts -------------------------------------------------------------------------------- /src/common/geographicCoordinates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/geographicCoordinates.ts -------------------------------------------------------------------------------- /src/common/getBestPlayerBoxScore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/getBestPlayerBoxScore.ts -------------------------------------------------------------------------------- /src/common/getCol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/getCol.ts -------------------------------------------------------------------------------- /src/common/getCols.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/getCols.ts -------------------------------------------------------------------------------- /src/common/getPeriodName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/getPeriodName.ts -------------------------------------------------------------------------------- /src/common/getTeamInfos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/getTeamInfos.ts -------------------------------------------------------------------------------- /src/common/getUnusedAbbrevs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/getUnusedAbbrevs.ts -------------------------------------------------------------------------------- /src/common/getWinner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/getWinner.ts -------------------------------------------------------------------------------- /src/common/hashSavedTrade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/hashSavedTrade.ts -------------------------------------------------------------------------------- /src/common/helpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/helpers.test.ts -------------------------------------------------------------------------------- /src/common/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/helpers.ts -------------------------------------------------------------------------------- /src/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/index.ts -------------------------------------------------------------------------------- /src/common/isSport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/isSport.ts -------------------------------------------------------------------------------- /src/common/lowerIsBetter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/lowerIsBetter.ts -------------------------------------------------------------------------------- /src/common/names.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/names.ts -------------------------------------------------------------------------------- /src/common/normalizeIntl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/normalizeIntl.ts -------------------------------------------------------------------------------- /src/common/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/polyfills.ts -------------------------------------------------------------------------------- /src/common/posRatings.baseball.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/posRatings.baseball.ts -------------------------------------------------------------------------------- /src/common/posRatings.football.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/posRatings.football.ts -------------------------------------------------------------------------------- /src/common/posRatings.hockey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/posRatings.hockey.ts -------------------------------------------------------------------------------- /src/common/posRatings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/posRatings.ts -------------------------------------------------------------------------------- /src/common/processPlayerStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/processPlayerStats.ts -------------------------------------------------------------------------------- /src/common/random.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/random.test.ts -------------------------------------------------------------------------------- /src/common/random.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/random.ts -------------------------------------------------------------------------------- /src/common/roundContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/roundContract.ts -------------------------------------------------------------------------------- /src/common/teamInfos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/teamInfos.ts -------------------------------------------------------------------------------- /src/common/timeBetweenGames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/timeBetweenGames.ts -------------------------------------------------------------------------------- /src/common/transactionInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/transactionInfo.ts -------------------------------------------------------------------------------- /src/common/types.baseball.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/types.baseball.ts -------------------------------------------------------------------------------- /src/common/types.basketball.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/types.basketball.ts -------------------------------------------------------------------------------- /src/common/types.football.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/types.football.ts -------------------------------------------------------------------------------- /src/common/types.hockey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/types.hockey.ts -------------------------------------------------------------------------------- /src/common/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/types.ts -------------------------------------------------------------------------------- /src/common/unwrapGameAttribute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/unwrapGameAttribute.ts -------------------------------------------------------------------------------- /src/common/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/utils.test.ts -------------------------------------------------------------------------------- /src/common/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/utils.ts -------------------------------------------------------------------------------- /src/common/wait.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/common/wait.ts -------------------------------------------------------------------------------- /src/test/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/test/helpers.ts -------------------------------------------------------------------------------- /src/test/overridePostMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/test/overridePostMessage.ts -------------------------------------------------------------------------------- /src/test/setup-e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/test/setup-e2e.ts -------------------------------------------------------------------------------- /src/test/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/test/setup.ts -------------------------------------------------------------------------------- /src/test/smoke.test.browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/test/smoke.test.browser.ts -------------------------------------------------------------------------------- /src/ui/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/api/index.ts -------------------------------------------------------------------------------- /src/ui/components/ActionButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/ActionButton.tsx -------------------------------------------------------------------------------- /src/ui/components/AgeAtDeath.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/AgeAtDeath.tsx -------------------------------------------------------------------------------- /src/ui/components/BarGraph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/BarGraph.tsx -------------------------------------------------------------------------------- /src/ui/components/BoxPlot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/BoxPlot.tsx -------------------------------------------------------------------------------- /src/ui/components/BoxScore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/BoxScore.tsx -------------------------------------------------------------------------------- /src/ui/components/BoxScoreRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/BoxScoreRow.tsx -------------------------------------------------------------------------------- /src/ui/components/CollapseArrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/CollapseArrow.tsx -------------------------------------------------------------------------------- /src/ui/components/Confetti.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/Confetti.tsx -------------------------------------------------------------------------------- /src/ui/components/Controller.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/Controller.tsx -------------------------------------------------------------------------------- /src/ui/components/CountryFlag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/CountryFlag.tsx -------------------------------------------------------------------------------- /src/ui/components/DataTable/Row.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/DataTable/Row.tsx -------------------------------------------------------------------------------- /src/ui/components/DraftAbbrev.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/DraftAbbrev.tsx -------------------------------------------------------------------------------- /src/ui/components/Dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/Dropdown.tsx -------------------------------------------------------------------------------- /src/ui/components/DropdownLinks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/DropdownLinks.tsx -------------------------------------------------------------------------------- /src/ui/components/ErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/ErrorBoundary.tsx -------------------------------------------------------------------------------- /src/ui/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/Footer.tsx -------------------------------------------------------------------------------- /src/ui/components/ForceWin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/ForceWin.tsx -------------------------------------------------------------------------------- /src/ui/components/GameLinks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/GameLinks.tsx -------------------------------------------------------------------------------- /src/ui/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/Header.tsx -------------------------------------------------------------------------------- /src/ui/components/Height.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/Height.tsx -------------------------------------------------------------------------------- /src/ui/components/HelpPopover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/HelpPopover.tsx -------------------------------------------------------------------------------- /src/ui/components/InjuryIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/InjuryIcon.tsx -------------------------------------------------------------------------------- /src/ui/components/JerseyNumber.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/JerseyNumber.tsx -------------------------------------------------------------------------------- /src/ui/components/LeagueTopBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/LeagueTopBar.tsx -------------------------------------------------------------------------------- /src/ui/components/LogoAndText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/LogoAndText.tsx -------------------------------------------------------------------------------- /src/ui/components/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/Modal.tsx -------------------------------------------------------------------------------- /src/ui/components/Mood.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/Mood.tsx -------------------------------------------------------------------------------- /src/ui/components/MoreLinks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/MoreLinks.tsx -------------------------------------------------------------------------------- /src/ui/components/MovOrDiff.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/MovOrDiff.tsx -------------------------------------------------------------------------------- /src/ui/components/MultiTeamMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/MultiTeamMenu.tsx -------------------------------------------------------------------------------- /src/ui/components/MyFace.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/MyFace.tsx -------------------------------------------------------------------------------- /src/ui/components/NagModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/NagModal.tsx -------------------------------------------------------------------------------- /src/ui/components/NavBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/NavBar.tsx -------------------------------------------------------------------------------- /src/ui/components/NewWindowLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/NewWindowLink.tsx -------------------------------------------------------------------------------- /src/ui/components/NewsBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/NewsBlock.tsx -------------------------------------------------------------------------------- /src/ui/components/Notifications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/Notifications.tsx -------------------------------------------------------------------------------- /src/ui/components/PlayMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/PlayMenu.tsx -------------------------------------------------------------------------------- /src/ui/components/PlayPauseNext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/PlayPauseNext.tsx -------------------------------------------------------------------------------- /src/ui/components/PlayerPicture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/PlayerPicture.tsx -------------------------------------------------------------------------------- /src/ui/components/PlusMinus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/PlusMinus.tsx -------------------------------------------------------------------------------- /src/ui/components/PopText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/PopText.tsx -------------------------------------------------------------------------------- /src/ui/components/SafeHtml.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/SafeHtml.tsx -------------------------------------------------------------------------------- /src/ui/components/SaveTrade.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/SaveTrade.tsx -------------------------------------------------------------------------------- /src/ui/components/SideBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/SideBar.tsx -------------------------------------------------------------------------------- /src/ui/components/SkillsBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/SkillsBlock.tsx -------------------------------------------------------------------------------- /src/ui/components/Skyscraper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/Skyscraper.tsx -------------------------------------------------------------------------------- /src/ui/components/TitleBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/TitleBar.tsx -------------------------------------------------------------------------------- /src/ui/components/WatchBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/WatchBlock.tsx -------------------------------------------------------------------------------- /src/ui/components/Weight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/Weight.tsx -------------------------------------------------------------------------------- /src/ui/components/contract.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/contract.tsx -------------------------------------------------------------------------------- /src/ui/components/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/components/index.tsx -------------------------------------------------------------------------------- /src/ui/hooks/useBlocker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/hooks/useBlocker.ts -------------------------------------------------------------------------------- /src/ui/hooks/useClickable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/hooks/useClickable.tsx -------------------------------------------------------------------------------- /src/ui/hooks/useDropdownOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/hooks/useDropdownOptions.tsx -------------------------------------------------------------------------------- /src/ui/hooks/useIsStuck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/hooks/useIsStuck.ts -------------------------------------------------------------------------------- /src/ui/hooks/useTitleBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/hooks/useTitleBar.tsx -------------------------------------------------------------------------------- /src/ui/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/index.tsx -------------------------------------------------------------------------------- /src/ui/router/index.test.browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/router/index.test.browser.ts -------------------------------------------------------------------------------- /src/ui/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/router/index.ts -------------------------------------------------------------------------------- /src/ui/util/ads.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/util/ads.ts -------------------------------------------------------------------------------- /src/ui/util/analyticsEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/util/analyticsEvent.ts -------------------------------------------------------------------------------- /src/ui/util/autoPlayDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/util/autoPlayDialog.tsx -------------------------------------------------------------------------------- /src/ui/util/compareVersions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/util/compareVersions.ts -------------------------------------------------------------------------------- /src/ui/util/confirm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/util/confirm.tsx -------------------------------------------------------------------------------- /src/ui/util/crossTabEmitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/util/crossTabEmitter.ts -------------------------------------------------------------------------------- /src/ui/util/downloadFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/util/downloadFile.ts -------------------------------------------------------------------------------- /src/ui/util/downloadFileStream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/util/downloadFileStream.ts -------------------------------------------------------------------------------- /src/ui/util/dropbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/util/dropbox.ts -------------------------------------------------------------------------------- /src/ui/util/exportLeague.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/util/exportLeague.ts -------------------------------------------------------------------------------- /src/ui/util/framerMotionFeatures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/util/framerMotionFeatures.ts -------------------------------------------------------------------------------- /src/ui/util/genStaticPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/util/genStaticPage.tsx -------------------------------------------------------------------------------- /src/ui/util/getScript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/util/getScript.ts -------------------------------------------------------------------------------- /src/ui/util/gradientStyleFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/util/gradientStyleFactory.ts -------------------------------------------------------------------------------- /src/ui/util/groupAwards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/util/groupAwards.ts -------------------------------------------------------------------------------- /src/ui/util/helpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/util/helpers.test.ts -------------------------------------------------------------------------------- /src/ui/util/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/util/helpers.ts -------------------------------------------------------------------------------- /src/ui/util/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/util/index.ts -------------------------------------------------------------------------------- /src/ui/util/initBugsnag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/util/initBugsnag.ts -------------------------------------------------------------------------------- /src/ui/util/initServiceWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/util/initServiceWorker.ts -------------------------------------------------------------------------------- /src/ui/util/initView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/util/initView.ts -------------------------------------------------------------------------------- /src/ui/util/local.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/util/local.ts -------------------------------------------------------------------------------- /src/ui/util/logEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/util/logEvent.ts -------------------------------------------------------------------------------- /src/ui/util/makeExportStream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/util/makeExportStream.ts -------------------------------------------------------------------------------- /src/ui/util/menuItems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/util/menuItems.tsx -------------------------------------------------------------------------------- /src/ui/util/notify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/util/notify.ts -------------------------------------------------------------------------------- /src/ui/util/parseCurrencyFormat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/util/parseCurrencyFormat.ts -------------------------------------------------------------------------------- /src/ui/util/prefixStatOpp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/util/prefixStatOpp.ts -------------------------------------------------------------------------------- /src/ui/util/processPlayerStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/util/processPlayerStats.ts -------------------------------------------------------------------------------- /src/ui/util/realtimeUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/util/realtimeUpdate.ts -------------------------------------------------------------------------------- /src/ui/util/resetFileInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/util/resetFileInput.ts -------------------------------------------------------------------------------- /src/ui/util/routeInfos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/util/routeInfos.ts -------------------------------------------------------------------------------- /src/ui/util/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/util/routes.ts -------------------------------------------------------------------------------- /src/ui/util/safeLocalStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/util/safeLocalStorage.ts -------------------------------------------------------------------------------- /src/ui/util/sanitize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/util/sanitize.ts -------------------------------------------------------------------------------- /src/ui/util/takeScreenshot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/util/takeScreenshot.ts -------------------------------------------------------------------------------- /src/ui/util/takeScreenshotChunk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/util/takeScreenshotChunk.ts -------------------------------------------------------------------------------- /src/ui/util/toWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/util/toWorker.ts -------------------------------------------------------------------------------- /src/ui/util/viewManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/util/viewManager.tsx -------------------------------------------------------------------------------- /src/ui/views/Account/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/Account/index.tsx -------------------------------------------------------------------------------- /src/ui/views/AccountUpdateCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/AccountUpdateCard.tsx -------------------------------------------------------------------------------- /src/ui/views/Achievements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/Achievements.tsx -------------------------------------------------------------------------------- /src/ui/views/AllStar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/AllStar.tsx -------------------------------------------------------------------------------- /src/ui/views/AllStarDunk.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/AllStarDunk.tsx -------------------------------------------------------------------------------- /src/ui/views/AllStarHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/AllStarHistory.tsx -------------------------------------------------------------------------------- /src/ui/views/AllStarTeams/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/AllStarTeams/index.tsx -------------------------------------------------------------------------------- /src/ui/views/AllStarThree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/AllStarThree.tsx -------------------------------------------------------------------------------- /src/ui/views/AutoExpand.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/AutoExpand.tsx -------------------------------------------------------------------------------- /src/ui/views/AutoRelocate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/AutoRelocate.tsx -------------------------------------------------------------------------------- /src/ui/views/AwardRaces.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/AwardRaces.tsx -------------------------------------------------------------------------------- /src/ui/views/AwardsRecords.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/AwardsRecords.tsx -------------------------------------------------------------------------------- /src/ui/views/Colleges.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/Colleges.tsx -------------------------------------------------------------------------------- /src/ui/views/Countries.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/Countries.tsx -------------------------------------------------------------------------------- /src/ui/views/DailySchedule.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/DailySchedule.tsx -------------------------------------------------------------------------------- /src/ui/views/DangerZone/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/DangerZone/index.tsx -------------------------------------------------------------------------------- /src/ui/views/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/Dashboard.tsx -------------------------------------------------------------------------------- /src/ui/views/DeleteOldData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/DeleteOldData.tsx -------------------------------------------------------------------------------- /src/ui/views/Depth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/Depth.tsx -------------------------------------------------------------------------------- /src/ui/views/Draft/DraftButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/Draft/DraftButtons.tsx -------------------------------------------------------------------------------- /src/ui/views/Draft/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/Draft/index.tsx -------------------------------------------------------------------------------- /src/ui/views/DraftHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/DraftHistory.tsx -------------------------------------------------------------------------------- /src/ui/views/DraftLottery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/DraftLottery.tsx -------------------------------------------------------------------------------- /src/ui/views/DraftPicks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/DraftPicks.tsx -------------------------------------------------------------------------------- /src/ui/views/DraftTeamHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/DraftTeamHistory.tsx -------------------------------------------------------------------------------- /src/ui/views/Dropbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/Dropbox.tsx -------------------------------------------------------------------------------- /src/ui/views/EditAwards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/EditAwards.tsx -------------------------------------------------------------------------------- /src/ui/views/Exhibition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/Exhibition.tsx -------------------------------------------------------------------------------- /src/ui/views/ExhibitionGame.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/ExhibitionGame.tsx -------------------------------------------------------------------------------- /src/ui/views/ExpansionDraft.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/ExpansionDraft.tsx -------------------------------------------------------------------------------- /src/ui/views/ExportLeague.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/ExportLeague.tsx -------------------------------------------------------------------------------- /src/ui/views/ExportPlayers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/ExportPlayers.tsx -------------------------------------------------------------------------------- /src/ui/views/ExportStats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/ExportStats.tsx -------------------------------------------------------------------------------- /src/ui/views/FantasyDraft.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/FantasyDraft.tsx -------------------------------------------------------------------------------- /src/ui/views/FreeAgents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/FreeAgents.tsx -------------------------------------------------------------------------------- /src/ui/views/Frivolities.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/Frivolities.tsx -------------------------------------------------------------------------------- /src/ui/views/FrivolitiesTrades.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/FrivolitiesTrades.tsx -------------------------------------------------------------------------------- /src/ui/views/GameLog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/GameLog.tsx -------------------------------------------------------------------------------- /src/ui/views/GmHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/GmHistory.tsx -------------------------------------------------------------------------------- /src/ui/views/GodMode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/GodMode.tsx -------------------------------------------------------------------------------- /src/ui/views/HallOfFame.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/HallOfFame.tsx -------------------------------------------------------------------------------- /src/ui/views/HeadToHead.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/HeadToHead.tsx -------------------------------------------------------------------------------- /src/ui/views/HeadToHeadAll.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/HeadToHeadAll.tsx -------------------------------------------------------------------------------- /src/ui/views/History.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/History.tsx -------------------------------------------------------------------------------- /src/ui/views/HistoryAll.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/HistoryAll.tsx -------------------------------------------------------------------------------- /src/ui/views/ImportPlayers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/ImportPlayers.tsx -------------------------------------------------------------------------------- /src/ui/views/ImportPlayersReal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/ImportPlayersReal.tsx -------------------------------------------------------------------------------- /src/ui/views/Inbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/Inbox.tsx -------------------------------------------------------------------------------- /src/ui/views/Injuries.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/Injuries.tsx -------------------------------------------------------------------------------- /src/ui/views/Leaders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/Leaders.tsx -------------------------------------------------------------------------------- /src/ui/views/LeadersProgressive.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/LeadersProgressive.tsx -------------------------------------------------------------------------------- /src/ui/views/LeadersYears.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/LeadersYears.tsx -------------------------------------------------------------------------------- /src/ui/views/LeagueFinances.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/LeagueFinances.tsx -------------------------------------------------------------------------------- /src/ui/views/LeagueStats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/LeagueStats.tsx -------------------------------------------------------------------------------- /src/ui/views/LiveGame.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/LiveGame.tsx -------------------------------------------------------------------------------- /src/ui/views/LostPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/LostPassword.tsx -------------------------------------------------------------------------------- /src/ui/views/ManageConfs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/ManageConfs.tsx -------------------------------------------------------------------------------- /src/ui/views/ManageTeams/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/ManageTeams/index.tsx -------------------------------------------------------------------------------- /src/ui/views/Message/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/Message/index.tsx -------------------------------------------------------------------------------- /src/ui/views/Most/GOATFormula.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/Most/GOATFormula.tsx -------------------------------------------------------------------------------- /src/ui/views/Most/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/Most/index.tsx -------------------------------------------------------------------------------- /src/ui/views/MultiTeamMode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/MultiTeamMode.tsx -------------------------------------------------------------------------------- /src/ui/views/Negotiation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/Negotiation.tsx -------------------------------------------------------------------------------- /src/ui/views/NegotiationList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/NegotiationList.tsx -------------------------------------------------------------------------------- /src/ui/views/NewLeague/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/NewLeague/index.tsx -------------------------------------------------------------------------------- /src/ui/views/NewLeague/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/NewLeague/types.ts -------------------------------------------------------------------------------- /src/ui/views/NewTeam.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/NewTeam.tsx -------------------------------------------------------------------------------- /src/ui/views/News.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/News.tsx -------------------------------------------------------------------------------- /src/ui/views/Notes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/Notes.tsx -------------------------------------------------------------------------------- /src/ui/views/Player/Injuries.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/Player/Injuries.tsx -------------------------------------------------------------------------------- /src/ui/views/Player/Note.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/Player/Note.tsx -------------------------------------------------------------------------------- /src/ui/views/Player/SeasonIcons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/Player/SeasonIcons.tsx -------------------------------------------------------------------------------- /src/ui/views/Player/StatsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/Player/StatsTable.tsx -------------------------------------------------------------------------------- /src/ui/views/Player/TopStuff.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/Player/TopStuff.tsx -------------------------------------------------------------------------------- /src/ui/views/Player/common.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/Player/common.tsx -------------------------------------------------------------------------------- /src/ui/views/Player/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/Player/index.tsx -------------------------------------------------------------------------------- /src/ui/views/PlayerBios.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/PlayerBios.tsx -------------------------------------------------------------------------------- /src/ui/views/PlayerFeats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/PlayerFeats.tsx -------------------------------------------------------------------------------- /src/ui/views/PlayerGameLog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/PlayerGameLog.tsx -------------------------------------------------------------------------------- /src/ui/views/PlayerGraphs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/PlayerGraphs/index.tsx -------------------------------------------------------------------------------- /src/ui/views/PlayerRatingDists.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/PlayerRatingDists.tsx -------------------------------------------------------------------------------- /src/ui/views/PlayerRatings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/PlayerRatings.tsx -------------------------------------------------------------------------------- /src/ui/views/PlayerStatDists.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/PlayerStatDists.tsx -------------------------------------------------------------------------------- /src/ui/views/PlayerStats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/PlayerStats.tsx -------------------------------------------------------------------------------- /src/ui/views/Playoffs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/Playoffs.tsx -------------------------------------------------------------------------------- /src/ui/views/PowerRankings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/PowerRankings.tsx -------------------------------------------------------------------------------- /src/ui/views/ProtectPlayers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/ProtectPlayers.tsx -------------------------------------------------------------------------------- /src/ui/views/Relatives.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/Relatives.tsx -------------------------------------------------------------------------------- /src/ui/views/ResetPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/ResetPassword.tsx -------------------------------------------------------------------------------- /src/ui/views/Roster/PlayingTime.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/Roster/PlayingTime.tsx -------------------------------------------------------------------------------- /src/ui/views/Roster/TopStuff.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/Roster/TopStuff.tsx -------------------------------------------------------------------------------- /src/ui/views/Roster/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/Roster/index.tsx -------------------------------------------------------------------------------- /src/ui/views/RosterContinuity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/RosterContinuity.tsx -------------------------------------------------------------------------------- /src/ui/views/SavedTrades.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/SavedTrades.tsx -------------------------------------------------------------------------------- /src/ui/views/Schedule.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/Schedule.tsx -------------------------------------------------------------------------------- /src/ui/views/ScheduledEvents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/ScheduledEvents.tsx -------------------------------------------------------------------------------- /src/ui/views/SeasonPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/SeasonPreview.tsx -------------------------------------------------------------------------------- /src/ui/views/Settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/Settings/index.tsx -------------------------------------------------------------------------------- /src/ui/views/Settings/settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/Settings/settings.tsx -------------------------------------------------------------------------------- /src/ui/views/Settings/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/Settings/types.ts -------------------------------------------------------------------------------- /src/ui/views/Standings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/Standings.tsx -------------------------------------------------------------------------------- /src/ui/views/TeamFinances.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/TeamFinances.tsx -------------------------------------------------------------------------------- /src/ui/views/TeamGraphs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/TeamGraphs/index.tsx -------------------------------------------------------------------------------- /src/ui/views/TeamHistory/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/TeamHistory/index.tsx -------------------------------------------------------------------------------- /src/ui/views/TeamRecords.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/TeamRecords.tsx -------------------------------------------------------------------------------- /src/ui/views/TeamStatDists.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/TeamStatDists.tsx -------------------------------------------------------------------------------- /src/ui/views/TeamStats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/TeamStats.tsx -------------------------------------------------------------------------------- /src/ui/views/Trade/AssetList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/Trade/AssetList.tsx -------------------------------------------------------------------------------- /src/ui/views/Trade/Buttons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/Trade/Buttons.tsx -------------------------------------------------------------------------------- /src/ui/views/Trade/Summary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/Trade/Summary.tsx -------------------------------------------------------------------------------- /src/ui/views/Trade/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/Trade/index.tsx -------------------------------------------------------------------------------- /src/ui/views/TradeProposals.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/TradeProposals.tsx -------------------------------------------------------------------------------- /src/ui/views/TradeSummary/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/TradeSummary/index.tsx -------------------------------------------------------------------------------- /src/ui/views/TradingBlock/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/TradingBlock/index.tsx -------------------------------------------------------------------------------- /src/ui/views/TragicDeaths.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/TragicDeaths.tsx -------------------------------------------------------------------------------- /src/ui/views/Transactions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/Transactions.tsx -------------------------------------------------------------------------------- /src/ui/views/UpcomingFreeAgents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/UpcomingFreeAgents.tsx -------------------------------------------------------------------------------- /src/ui/views/Upgrade65.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/Upgrade65.tsx -------------------------------------------------------------------------------- /src/ui/views/WatchList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/WatchList.tsx -------------------------------------------------------------------------------- /src/ui/views/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/ui/views/index.ts -------------------------------------------------------------------------------- /src/worker/api/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/api/actions.ts -------------------------------------------------------------------------------- /src/worker/api/exhibitionGame.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/api/exhibitionGame.ts -------------------------------------------------------------------------------- /src/worker/api/getRandomTeams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/api/getRandomTeams.ts -------------------------------------------------------------------------------- /src/worker/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/api/index.ts -------------------------------------------------------------------------------- /src/worker/api/leagueFileUpload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/api/leagueFileUpload.ts -------------------------------------------------------------------------------- /src/worker/api/playMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/api/playMenu.ts -------------------------------------------------------------------------------- /src/worker/api/processInputs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/api/processInputs.ts -------------------------------------------------------------------------------- /src/worker/api/toolsMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/api/toolsMenu.ts -------------------------------------------------------------------------------- /src/worker/core/GameSim.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/GameSim.ts -------------------------------------------------------------------------------- /src/worker/core/GameSimBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/GameSimBase.ts -------------------------------------------------------------------------------- /src/worker/core/allStar/contest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/allStar/contest.ts -------------------------------------------------------------------------------- /src/worker/core/allStar/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/allStar/create.ts -------------------------------------------------------------------------------- /src/worker/core/allStar/draftAll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/allStar/draftAll.ts -------------------------------------------------------------------------------- /src/worker/core/allStar/draftOne.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/allStar/draftOne.ts -------------------------------------------------------------------------------- /src/worker/core/allStar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/allStar/index.ts -------------------------------------------------------------------------------- /src/worker/core/debug/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/debug/index.ts -------------------------------------------------------------------------------- /src/worker/core/draft/afterPicks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/draft/afterPicks.ts -------------------------------------------------------------------------------- /src/worker/core/draft/genOrder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/draft/genOrder.ts -------------------------------------------------------------------------------- /src/worker/core/draft/genPicks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/draft/genPicks.ts -------------------------------------------------------------------------------- /src/worker/core/draft/genPlayers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/draft/genPlayers.ts -------------------------------------------------------------------------------- /src/worker/core/draft/getOrder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/draft/getOrder.ts -------------------------------------------------------------------------------- /src/worker/core/draft/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/draft/index.ts -------------------------------------------------------------------------------- /src/worker/core/draft/logAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/draft/logAction.ts -------------------------------------------------------------------------------- /src/worker/core/draft/runPicks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/draft/runPicks.ts -------------------------------------------------------------------------------- /src/worker/core/finances/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/finances/index.ts -------------------------------------------------------------------------------- /src/worker/core/freeAgents/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/freeAgents/index.ts -------------------------------------------------------------------------------- /src/worker/core/freeAgents/play.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/freeAgents/play.ts -------------------------------------------------------------------------------- /src/worker/core/game/attendance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/game/attendance.ts -------------------------------------------------------------------------------- /src/worker/core/game/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/game/index.ts -------------------------------------------------------------------------------- /src/worker/core/game/loadTeams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/game/loadTeams.ts -------------------------------------------------------------------------------- /src/worker/core/game/play.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/game/play.ts -------------------------------------------------------------------------------- /src/worker/core/headToHead/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/headToHead/index.ts -------------------------------------------------------------------------------- /src/worker/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/index.ts -------------------------------------------------------------------------------- /src/worker/core/league/autoPlay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/league/autoPlay.ts -------------------------------------------------------------------------------- /src/worker/core/league/clone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/league/clone.ts -------------------------------------------------------------------------------- /src/worker/core/league/close.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/league/close.ts -------------------------------------------------------------------------------- /src/worker/core/league/getName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/league/getName.ts -------------------------------------------------------------------------------- /src/worker/core/league/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/league/index.ts -------------------------------------------------------------------------------- /src/worker/core/league/remove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/league/remove.ts -------------------------------------------------------------------------------- /src/worker/core/phase/finalize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/phase/finalize.ts -------------------------------------------------------------------------------- /src/worker/core/phase/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/phase/index.ts -------------------------------------------------------------------------------- /src/worker/core/phase/newPhase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/phase/newPhase.ts -------------------------------------------------------------------------------- /src/worker/core/player/addAward.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/player/addAward.ts -------------------------------------------------------------------------------- /src/worker/core/player/bonus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/player/bonus.ts -------------------------------------------------------------------------------- /src/worker/core/player/develop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/player/develop.ts -------------------------------------------------------------------------------- /src/worker/core/player/fuzzOvrs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/player/fuzzOvrs.ts -------------------------------------------------------------------------------- /src/worker/core/player/genFuzz.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/player/genFuzz.ts -------------------------------------------------------------------------------- /src/worker/core/player/genWeight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/player/genWeight.ts -------------------------------------------------------------------------------- /src/worker/core/player/generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/player/generate.ts -------------------------------------------------------------------------------- /src/worker/core/player/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/player/index.ts -------------------------------------------------------------------------------- /src/worker/core/player/injury.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/player/injury.ts -------------------------------------------------------------------------------- /src/worker/core/player/killOne.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/player/killOne.ts -------------------------------------------------------------------------------- /src/worker/core/player/madeHof.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/player/madeHof.ts -------------------------------------------------------------------------------- /src/worker/core/player/moodInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/player/moodInfo.ts -------------------------------------------------------------------------------- /src/worker/core/player/moodInfos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/player/moodInfos.ts -------------------------------------------------------------------------------- /src/worker/core/player/name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/player/name.ts -------------------------------------------------------------------------------- /src/worker/core/player/ovr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/player/ovr.ts -------------------------------------------------------------------------------- /src/worker/core/player/pos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/player/pos.ts -------------------------------------------------------------------------------- /src/worker/core/player/release.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/player/release.ts -------------------------------------------------------------------------------- /src/worker/core/player/remove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/player/remove.ts -------------------------------------------------------------------------------- /src/worker/core/player/retire.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/player/retire.ts -------------------------------------------------------------------------------- /src/worker/core/player/sign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/player/sign.ts -------------------------------------------------------------------------------- /src/worker/core/player/skills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/player/skills.ts -------------------------------------------------------------------------------- /src/worker/core/player/stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/player/stats.ts -------------------------------------------------------------------------------- /src/worker/core/player/value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/player/value.ts -------------------------------------------------------------------------------- /src/worker/core/season/awards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/season/awards.ts -------------------------------------------------------------------------------- /src/worker/core/season/doAwards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/season/doAwards.ts -------------------------------------------------------------------------------- /src/worker/core/season/hasTies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/season/hasTies.ts -------------------------------------------------------------------------------- /src/worker/core/season/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/season/index.ts -------------------------------------------------------------------------------- /src/worker/core/season/isFinals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/season/isFinals.ts -------------------------------------------------------------------------------- /src/worker/core/team/avgAge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/team/avgAge.ts -------------------------------------------------------------------------------- /src/worker/core/team/cluster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/team/cluster.ts -------------------------------------------------------------------------------- /src/worker/core/team/disable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/team/disable.ts -------------------------------------------------------------------------------- /src/worker/core/team/expandVote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/team/expandVote.ts -------------------------------------------------------------------------------- /src/worker/core/team/genDepth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/team/genDepth.ts -------------------------------------------------------------------------------- /src/worker/core/team/genStatsRow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/team/genStatsRow.ts -------------------------------------------------------------------------------- /src/worker/core/team/generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/team/generate.ts -------------------------------------------------------------------------------- /src/worker/core/team/getPayroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/team/getPayroll.ts -------------------------------------------------------------------------------- /src/worker/core/team/getPayrolls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/team/getPayrolls.ts -------------------------------------------------------------------------------- /src/worker/core/team/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/team/index.ts -------------------------------------------------------------------------------- /src/worker/core/team/ovr.hockey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/team/ovr.hockey.ts -------------------------------------------------------------------------------- /src/worker/core/team/ovr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/team/ovr.ts -------------------------------------------------------------------------------- /src/worker/core/team/ptsMax.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/team/ptsMax.ts -------------------------------------------------------------------------------- /src/worker/core/team/ptsPct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/team/ptsPct.ts -------------------------------------------------------------------------------- /src/worker/core/team/stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/team/stats.ts -------------------------------------------------------------------------------- /src/worker/core/team/switchTo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/team/switchTo.ts -------------------------------------------------------------------------------- /src/worker/core/team/valueChange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/team/valueChange.ts -------------------------------------------------------------------------------- /src/worker/core/trade/clear.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/trade/clear.ts -------------------------------------------------------------------------------- /src/worker/core/trade/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/trade/create.ts -------------------------------------------------------------------------------- /src/worker/core/trade/get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/trade/get.ts -------------------------------------------------------------------------------- /src/worker/core/trade/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/trade/index.ts -------------------------------------------------------------------------------- /src/worker/core/trade/makeItWork.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/trade/makeItWork.ts -------------------------------------------------------------------------------- /src/worker/core/trade/propose.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/trade/propose.ts -------------------------------------------------------------------------------- /src/worker/core/trade/summary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/core/trade/summary.ts -------------------------------------------------------------------------------- /src/worker/data/defaultColleges.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/data/defaultColleges.ts -------------------------------------------------------------------------------- /src/worker/data/defaultCountries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/data/defaultCountries.ts -------------------------------------------------------------------------------- /src/worker/data/defaultRaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/data/defaultRaces.ts -------------------------------------------------------------------------------- /src/worker/db/Cache.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/db/Cache.test.ts -------------------------------------------------------------------------------- /src/worker/db/Cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/db/Cache.ts -------------------------------------------------------------------------------- /src/worker/db/SafeIdb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/db/SafeIdb.ts -------------------------------------------------------------------------------- /src/worker/db/cmp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/db/cmp.ts -------------------------------------------------------------------------------- /src/worker/db/connectIndexedDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/db/connectIndexedDB.ts -------------------------------------------------------------------------------- /src/worker/db/connectLeague.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/db/connectLeague.ts -------------------------------------------------------------------------------- /src/worker/db/connectMeta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/db/connectMeta.ts -------------------------------------------------------------------------------- /src/worker/db/getAll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/db/getAll.ts -------------------------------------------------------------------------------- /src/worker/db/getCopies/allStars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/db/getCopies/allStars.ts -------------------------------------------------------------------------------- /src/worker/db/getCopies/awards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/db/getCopies/awards.ts -------------------------------------------------------------------------------- /src/worker/db/getCopies/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/db/getCopies/events.ts -------------------------------------------------------------------------------- /src/worker/db/getCopies/games.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/db/getCopies/games.ts -------------------------------------------------------------------------------- /src/worker/db/getCopies/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/db/getCopies/helpers.ts -------------------------------------------------------------------------------- /src/worker/db/getCopies/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/db/getCopies/index.ts -------------------------------------------------------------------------------- /src/worker/db/getCopies/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/db/getCopies/messages.ts -------------------------------------------------------------------------------- /src/worker/db/getCopies/players.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/db/getCopies/players.ts -------------------------------------------------------------------------------- /src/worker/db/getCopy/allStars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/db/getCopy/allStars.ts -------------------------------------------------------------------------------- /src/worker/db/getCopy/awards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/db/getCopy/awards.ts -------------------------------------------------------------------------------- /src/worker/db/getCopy/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/db/getCopy/events.ts -------------------------------------------------------------------------------- /src/worker/db/getCopy/games.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/db/getCopy/games.ts -------------------------------------------------------------------------------- /src/worker/db/getCopy/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/db/getCopy/index.ts -------------------------------------------------------------------------------- /src/worker/db/getCopy/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/db/getCopy/messages.ts -------------------------------------------------------------------------------- /src/worker/db/getCopy/players.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/db/getCopy/players.ts -------------------------------------------------------------------------------- /src/worker/db/getCopy/teamsPlus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/db/getCopy/teamsPlus.ts -------------------------------------------------------------------------------- /src/worker/db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/db/index.ts -------------------------------------------------------------------------------- /src/worker/db/iterate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/db/iterate.ts -------------------------------------------------------------------------------- /src/worker/db/reset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/db/reset.ts -------------------------------------------------------------------------------- /src/worker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/index.ts -------------------------------------------------------------------------------- /src/worker/util/FormulaEvaluator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/util/FormulaEvaluator.ts -------------------------------------------------------------------------------- /src/worker/util/achievement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/util/achievement.ts -------------------------------------------------------------------------------- /src/worker/util/achievements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/util/achievements.ts -------------------------------------------------------------------------------- /src/worker/util/actualPhase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/util/actualPhase.ts -------------------------------------------------------------------------------- /src/worker/util/advStats.hockey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/util/advStats.hockey.ts -------------------------------------------------------------------------------- /src/worker/util/advStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/util/advStats.ts -------------------------------------------------------------------------------- /src/worker/util/advStatsSave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/util/advStatsSave.ts -------------------------------------------------------------------------------- /src/worker/util/beforeView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/util/beforeView.ts -------------------------------------------------------------------------------- /src/worker/util/checkAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/util/checkAccount.ts -------------------------------------------------------------------------------- /src/worker/util/checkChanges.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/util/checkChanges.ts -------------------------------------------------------------------------------- /src/worker/util/checkNaNs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/util/checkNaNs.ts -------------------------------------------------------------------------------- /src/worker/util/defaultInjuries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/util/defaultInjuries.ts -------------------------------------------------------------------------------- /src/worker/util/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/util/env.ts -------------------------------------------------------------------------------- /src/worker/util/face.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/util/face.ts -------------------------------------------------------------------------------- /src/worker/util/formatEventText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/util/formatEventText.ts -------------------------------------------------------------------------------- /src/worker/util/g.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/util/g.ts -------------------------------------------------------------------------------- /src/worker/util/genMessage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/util/genMessage.test.ts -------------------------------------------------------------------------------- /src/worker/util/genMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/util/genMessage.ts -------------------------------------------------------------------------------- /src/worker/util/getNewLeagueLid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/util/getNewLeagueLid.ts -------------------------------------------------------------------------------- /src/worker/util/getTeamColors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/util/getTeamColors.ts -------------------------------------------------------------------------------- /src/worker/util/goatFormula.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/util/goatFormula.ts -------------------------------------------------------------------------------- /src/worker/util/helpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/util/helpers.test.ts -------------------------------------------------------------------------------- /src/worker/util/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/util/helpers.ts -------------------------------------------------------------------------------- /src/worker/util/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/util/index.ts -------------------------------------------------------------------------------- /src/worker/util/initUILocalGames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/util/initUILocalGames.ts -------------------------------------------------------------------------------- /src/worker/util/loadNames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/util/loadNames.ts -------------------------------------------------------------------------------- /src/worker/util/local.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/util/local.ts -------------------------------------------------------------------------------- /src/worker/util/lock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/util/lock.ts -------------------------------------------------------------------------------- /src/worker/util/logEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/util/logEvent.ts -------------------------------------------------------------------------------- /src/worker/util/orderTeams.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/util/orderTeams.test.ts -------------------------------------------------------------------------------- /src/worker/util/orderTeams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/util/orderTeams.ts -------------------------------------------------------------------------------- /src/worker/util/romanNumerals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/util/romanNumerals.ts -------------------------------------------------------------------------------- /src/worker/util/toUI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/util/toUI.ts -------------------------------------------------------------------------------- /src/worker/util/updatePhase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/util/updatePhase.ts -------------------------------------------------------------------------------- /src/worker/util/updatePlayMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/util/updatePlayMenu.ts -------------------------------------------------------------------------------- /src/worker/util/updateStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/util/updateStatus.ts -------------------------------------------------------------------------------- /src/worker/views/account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/account.ts -------------------------------------------------------------------------------- /src/worker/views/achievements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/achievements.ts -------------------------------------------------------------------------------- /src/worker/views/allStar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/allStar.ts -------------------------------------------------------------------------------- /src/worker/views/allStarDunk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/allStarDunk.ts -------------------------------------------------------------------------------- /src/worker/views/allStarHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/allStarHistory.ts -------------------------------------------------------------------------------- /src/worker/views/allStarTeams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/allStarTeams.ts -------------------------------------------------------------------------------- /src/worker/views/allStarThree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/allStarThree.ts -------------------------------------------------------------------------------- /src/worker/views/autoExpand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/autoExpand.ts -------------------------------------------------------------------------------- /src/worker/views/autoRelocate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/autoRelocate.ts -------------------------------------------------------------------------------- /src/worker/views/awardRaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/awardRaces.ts -------------------------------------------------------------------------------- /src/worker/views/awardsRecords.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/awardsRecords.ts -------------------------------------------------------------------------------- /src/worker/views/colleges.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/colleges.ts -------------------------------------------------------------------------------- /src/worker/views/comparePlayers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/comparePlayers.ts -------------------------------------------------------------------------------- /src/worker/views/countries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/countries.ts -------------------------------------------------------------------------------- /src/worker/views/customizePlayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/customizePlayer.ts -------------------------------------------------------------------------------- /src/worker/views/dailySchedule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/dailySchedule.ts -------------------------------------------------------------------------------- /src/worker/views/dangerZone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/dangerZone.ts -------------------------------------------------------------------------------- /src/worker/views/dashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/dashboard.ts -------------------------------------------------------------------------------- /src/worker/views/depth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/depth.ts -------------------------------------------------------------------------------- /src/worker/views/draft.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/draft.ts -------------------------------------------------------------------------------- /src/worker/views/draftHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/draftHistory.ts -------------------------------------------------------------------------------- /src/worker/views/draftLottery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/draftLottery.ts -------------------------------------------------------------------------------- /src/worker/views/draftPicks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/draftPicks.ts -------------------------------------------------------------------------------- /src/worker/views/draftScouting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/draftScouting.ts -------------------------------------------------------------------------------- /src/worker/views/editAwards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/editAwards.ts -------------------------------------------------------------------------------- /src/worker/views/exhibition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/exhibition.ts -------------------------------------------------------------------------------- /src/worker/views/exhibitionGame.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/exhibitionGame.ts -------------------------------------------------------------------------------- /src/worker/views/expansionDraft.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/expansionDraft.ts -------------------------------------------------------------------------------- /src/worker/views/exportLeague.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/exportLeague.ts -------------------------------------------------------------------------------- /src/worker/views/exportPlayers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/exportPlayers.ts -------------------------------------------------------------------------------- /src/worker/views/exportStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/exportStats.ts -------------------------------------------------------------------------------- /src/worker/views/fantasyDraft.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/fantasyDraft.ts -------------------------------------------------------------------------------- /src/worker/views/freeAgents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/freeAgents.ts -------------------------------------------------------------------------------- /src/worker/views/gameLog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/gameLog.ts -------------------------------------------------------------------------------- /src/worker/views/globalSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/globalSettings.ts -------------------------------------------------------------------------------- /src/worker/views/gmHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/gmHistory.ts -------------------------------------------------------------------------------- /src/worker/views/godMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/godMode.ts -------------------------------------------------------------------------------- /src/worker/views/hallOfFame.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/hallOfFame.ts -------------------------------------------------------------------------------- /src/worker/views/headToHead.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/headToHead.ts -------------------------------------------------------------------------------- /src/worker/views/headToHeadAll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/headToHeadAll.ts -------------------------------------------------------------------------------- /src/worker/views/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/history.ts -------------------------------------------------------------------------------- /src/worker/views/historyAll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/historyAll.ts -------------------------------------------------------------------------------- /src/worker/views/importPlayers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/importPlayers.ts -------------------------------------------------------------------------------- /src/worker/views/inbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/inbox.ts -------------------------------------------------------------------------------- /src/worker/views/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/index.ts -------------------------------------------------------------------------------- /src/worker/views/injuries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/injuries.ts -------------------------------------------------------------------------------- /src/worker/views/leaders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/leaders.ts -------------------------------------------------------------------------------- /src/worker/views/leadersYears.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/leadersYears.ts -------------------------------------------------------------------------------- /src/worker/views/leagueDashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/leagueDashboard.ts -------------------------------------------------------------------------------- /src/worker/views/leagueFinances.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/leagueFinances.ts -------------------------------------------------------------------------------- /src/worker/views/leagueStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/leagueStats.ts -------------------------------------------------------------------------------- /src/worker/views/liveGame.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/liveGame.ts -------------------------------------------------------------------------------- /src/worker/views/manageConfs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/manageConfs.ts -------------------------------------------------------------------------------- /src/worker/views/manageTeams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/manageTeams.ts -------------------------------------------------------------------------------- /src/worker/views/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/message.ts -------------------------------------------------------------------------------- /src/worker/views/most.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/most.ts -------------------------------------------------------------------------------- /src/worker/views/multiTeamMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/multiTeamMode.ts -------------------------------------------------------------------------------- /src/worker/views/negotiation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/negotiation.ts -------------------------------------------------------------------------------- /src/worker/views/negotiationList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/negotiationList.ts -------------------------------------------------------------------------------- /src/worker/views/newLeague.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/newLeague.ts -------------------------------------------------------------------------------- /src/worker/views/newTeam.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/newTeam.ts -------------------------------------------------------------------------------- /src/worker/views/news.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/news.ts -------------------------------------------------------------------------------- /src/worker/views/notes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/notes.ts -------------------------------------------------------------------------------- /src/worker/views/player.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/player.ts -------------------------------------------------------------------------------- /src/worker/views/playerBios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/playerBios.ts -------------------------------------------------------------------------------- /src/worker/views/playerFeats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/playerFeats.ts -------------------------------------------------------------------------------- /src/worker/views/playerGameLog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/playerGameLog.ts -------------------------------------------------------------------------------- /src/worker/views/playerGraphs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/playerGraphs.ts -------------------------------------------------------------------------------- /src/worker/views/playerRatings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/playerRatings.ts -------------------------------------------------------------------------------- /src/worker/views/playerStatDists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/playerStatDists.ts -------------------------------------------------------------------------------- /src/worker/views/playerStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/playerStats.ts -------------------------------------------------------------------------------- /src/worker/views/playoffs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/playoffs.ts -------------------------------------------------------------------------------- /src/worker/views/powerRankings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/powerRankings.ts -------------------------------------------------------------------------------- /src/worker/views/relatives.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/relatives.ts -------------------------------------------------------------------------------- /src/worker/views/roster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/roster.ts -------------------------------------------------------------------------------- /src/worker/views/savedTrades.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/savedTrades.ts -------------------------------------------------------------------------------- /src/worker/views/schedule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/schedule.ts -------------------------------------------------------------------------------- /src/worker/views/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/settings.ts -------------------------------------------------------------------------------- /src/worker/views/standings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/standings.ts -------------------------------------------------------------------------------- /src/worker/views/teamFinances.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/teamFinances.ts -------------------------------------------------------------------------------- /src/worker/views/teamGraphs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/teamGraphs.ts -------------------------------------------------------------------------------- /src/worker/views/teamHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/teamHistory.ts -------------------------------------------------------------------------------- /src/worker/views/teamRecords.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/teamRecords.ts -------------------------------------------------------------------------------- /src/worker/views/teamStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/teamStats.ts -------------------------------------------------------------------------------- /src/worker/views/trade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/trade.ts -------------------------------------------------------------------------------- /src/worker/views/tradeSummary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/tradeSummary.ts -------------------------------------------------------------------------------- /src/worker/views/tradingBlock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/tradingBlock.ts -------------------------------------------------------------------------------- /src/worker/views/tragicDeaths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/tragicDeaths.ts -------------------------------------------------------------------------------- /src/worker/views/transactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/transactions.ts -------------------------------------------------------------------------------- /src/worker/views/watchList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/src/worker/views/watchList.ts -------------------------------------------------------------------------------- /tools/build/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/tools/build/build.ts -------------------------------------------------------------------------------- /tools/build/buildCss.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/tools/build/buildCss.ts -------------------------------------------------------------------------------- /tools/build/buildJs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/tools/build/buildJs.ts -------------------------------------------------------------------------------- /tools/build/buildJsWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/tools/build/buildJsWorker.ts -------------------------------------------------------------------------------- /tools/build/buildSw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/tools/build/buildSw.ts -------------------------------------------------------------------------------- /tools/build/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/tools/build/cli.ts -------------------------------------------------------------------------------- /tools/build/copyFiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/tools/build/copyFiles.ts -------------------------------------------------------------------------------- /tools/build/fileHash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/tools/build/fileHash.ts -------------------------------------------------------------------------------- /tools/build/minifyIndexHtml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/tools/build/minifyIndexHtml.ts -------------------------------------------------------------------------------- /tools/build/replace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/tools/build/replace.ts -------------------------------------------------------------------------------- /tools/build/reset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/tools/build/reset.ts -------------------------------------------------------------------------------- /tools/build/setTimestamps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/tools/build/setTimestamps.ts -------------------------------------------------------------------------------- /tools/change-starting-season.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/tools/change-starting-season.js -------------------------------------------------------------------------------- /tools/colleges-basketball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/tools/colleges-basketball.js -------------------------------------------------------------------------------- /tools/colleges-football.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/tools/colleges-football.js -------------------------------------------------------------------------------- /tools/deploy-all.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/tools/deploy-all.ts -------------------------------------------------------------------------------- /tools/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/tools/deploy.ts -------------------------------------------------------------------------------- /tools/lib/bySport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/tools/lib/bySport.ts -------------------------------------------------------------------------------- /tools/lib/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/tools/lib/deploy.ts -------------------------------------------------------------------------------- /tools/lib/getSport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/tools/lib/getSport.ts -------------------------------------------------------------------------------- /tools/lib/namesBasketball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/tools/lib/namesBasketball.js -------------------------------------------------------------------------------- /tools/lib/namesFootball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/tools/lib/namesFootball.js -------------------------------------------------------------------------------- /tools/lib/namesHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/tools/lib/namesHelpers.ts -------------------------------------------------------------------------------- /tools/lib/rolldownConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/tools/lib/rolldownConfig.ts -------------------------------------------------------------------------------- /tools/lib/rollupConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/tools/lib/rollupConfig.ts -------------------------------------------------------------------------------- /tools/lib/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/tools/lib/server.ts -------------------------------------------------------------------------------- /tools/names-manual/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/tools/names-manual/README.md -------------------------------------------------------------------------------- /tools/names-manual/football.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/tools/names-manual/football.json -------------------------------------------------------------------------------- /tools/names.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/tools/names.js -------------------------------------------------------------------------------- /tools/pre-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/tools/pre-test.ts -------------------------------------------------------------------------------- /tools/preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/tools/preview.ts -------------------------------------------------------------------------------- /tools/races.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/tools/races.csv -------------------------------------------------------------------------------- /tools/races.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/tools/races.js -------------------------------------------------------------------------------- /tools/watch/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/tools/watch/cli.ts -------------------------------------------------------------------------------- /tools/watch/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/tools/watch/log.ts -------------------------------------------------------------------------------- /tools/watch/spinners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/tools/watch/spinners.ts -------------------------------------------------------------------------------- /tools/watch/watchCss.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/tools/watch/watchCss.ts -------------------------------------------------------------------------------- /tools/watch/watchCssWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/tools/watch/watchCssWorker.ts -------------------------------------------------------------------------------- /tools/watch/watchFiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/tools/watch/watchFiles.ts -------------------------------------------------------------------------------- /tools/watch/watchJs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/tools/watch/watchJs.ts -------------------------------------------------------------------------------- /tools/watch/watchJsWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/tools/watch/watchJsWorker.ts -------------------------------------------------------------------------------- /tools/watch/watchJsonSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/tools/watch/watchJsonSchema.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest-e2e.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/vitest-e2e.config.ts -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengm-games/zengm/HEAD/vitest.config.ts --------------------------------------------------------------------------------