Initial Commit

This commit is contained in:
2026-02-13 12:22:06 -05:00
parent 43fdccf67b
commit 8fec41e3e6
612 changed files with 1313484 additions and 2 deletions

View File

@@ -219,7 +219,7 @@ If you develop a new program, and you want it to be of the greatest possible use
To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found.
EOJHL-LED-Scoreboard
EOJHL-LED-Matrix
Copyright (C) 2026 rick
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

339
README.md
View File

@@ -1,2 +1,339 @@
# EOJHL-LED-Scoreboard
# EOJHL LED Scoreboard
### This is my personal development fork.
- Any details you need about hardware or setting up the RPI can be found on the main ChuckBuilds github page.
- This fork will be for EOJHL/CCHL only. Besides the clock, I have or will be removing all other modules that are not sports related.
### Connect with ChuckBuilds
- Git Address: https://github.com/ChuckBuilds/LEDMatrix
-----------------------------------------------------------------------------------
### Matrix Details
<details>
<summary>About</summary>
The system supports live, recent, and upcoming game information for multiple sports leagues:
- NHL (Hockey) (2x 64x32 Displays 4mm Pixel Pitch)
![DSC01356](https://github.com/user-attachments/assets/64c359b6-4b99-4dee-aca0-b74debda30e0)
![DSC01339](https://github.com/user-attachments/assets/2ccc52af-b4ed-4c06-a341-581506c02153)
![DSC01337](https://github.com/user-attachments/assets/f4faf678-9f43-4d37-be56-89ecbd09acf6)
- NBA (Basketball)
- MLB (Baseball) (2x 64x32 Displays 4mm Pixel Pitch)
![DSC01359](https://github.com/user-attachments/assets/71e985f1-d2c9-4f0e-8ea1-13eaefeec01c)
- NFL (Football) (2x 96x48 Displays 2.5mm Pixel Pitch)
<img width="2109" height="541" alt="image" src="https://github.com/user-attachments/assets/d10212c9-0d45-4f87-b61d-0a33afb9f160" />
- NCAA Football (2x 96x48 Displays 2.5mm Pixel Pitch)
<img width="2417" height="610" alt="image" src="https://github.com/user-attachments/assets/9be92869-ee29-4809-9337-69977f228e23" />
- NCAA Men's Basketball
- NCAA Men's Baseball
- Soccer (Premier League, La Liga, Bundesliga, Serie A, Ligue 1, Liga Portugal, Champions League, Europa League, MLS)
- (Note, some of these sports seasons were not active during development and might need fine tuning when games are active)
### Custom Display Features
- Custom Text display (2x 64x32 Displays 4mm Pixel Pitch)
![DSC01379](https://github.com/user-attachments/assets/338b7578-9d4b-4465-851c-7e6a1d999e07)
- Font testing Display (not in rotation)
</details>
-----------------------------------------------------------------------------------
## Installation Steps
<details>
<summary>System Setup & Installation</summary>
# System Setup & Installation
1. Open PowerShell and ssh into your Raspberry Pi with ledpi@ledpi (or Username@Hostname)
```bash
ssh ledpi@ledpi
```
2. Update repositories, upgrade raspberry pi OS, install git
```bash
sudo apt update && sudo apt upgrade -y
sudo apt install -y git python3-pip cython3 build-essential python3-dev python3-pillow scons
```
3. Clone this repository:
```bash
git clone https://github.com/rampar20/LEDMatrix.git
cd LEDMatrix
```
4. First-time installation (recommended)
```bash
chmod +x first_time_install.sh
sudo ./first_time_install.sh
```
This single script installs services, dependencies, configures permissions and sudoers, and validates the setup.
</details>
<details>
<summary>Sports Configuration (Football Example)</summary>
## Football Game-Based Configuration (NFL & NCAA FB)
For NFL and NCAA Football, the system now uses a game-based fetch approach instead of time-based windows. This is more practical for football since games are weekly and you want to show specific numbers of games rather than arbitrary time periods.
### Configuration Options
Instead of using `past_fetch_days` and `future_fetch_days`, the system now uses:
- **`fetch_past_games`**: Number of recent games to fetch (default: 1)
- **`fetch_future_games`**: Number of upcoming games to fetch (default: 1)
### Example Configuration
```json
{
"nfl_scoreboard": {
"enabled": true,
"fetch_past_games": 1,
"fetch_future_games": 1,
"favorite_teams": ["TB", "DAL"]
},
"ncaa_fb_scoreboard": {
"enabled": true,
"fetch_past_games": 1,
"fetch_future_games": 1,
"favorite_teams": ["UGA", "AUB"]
}
}
```
### How It Works
- **`fetch_past_games: 1`**: Shows the most recent game for your favorite teams
- **`fetch_future_games: 1`**: Shows the next upcoming game for your favorite teams
- **`fetch_future_games: 2`**: Shows the next two upcoming games (e.g., Week 1 and Week 2 matchups)
### Benefits
1. **Predictable Results**: Always shows exactly the number of games you specify
2. **Season Flexibility**: Works well both during the season and in the off-season
3. **Future Planning**: Can show games far in the future (e.g., Week 1 when it's 40 days away)
4. **Efficient**: Only fetches the games you actually want to see
### Use Cases
- **During Season**: `fetch_future_games: 1` shows next week's game
- **Off-Season**: `fetch_future_games: 1` shows the first scheduled game (even if it's months away)
- **Planning**: `fetch_future_games: 2` shows the next two matchups for planning purposes
</details>
-----------------------------------------------------------------------------------
### Managing the Service
<details>
<summary>Service Commands</summary>
The following commands are available to manage the service:
```bash
# Stop the display
sudo systemctl stop ledmatrix.service
# Start the display
sudo systemctl start ledmatrix.service
# Check service status
sudo systemctl status ledmatrix.service
# View logs
journalctl -u ledmatrix.service
# Disable autostart
sudo systemctl disable ledmatrix.service
# Enable autostart
sudo systemctl enable ledmatrix.service
```
</details>
<details>
<summary>Convenience Scripts</summary>
### Convenience Scripts
Two convenience scripts are provided for easy service management:
- `start_display.sh` - Starts the LED matrix display service
- `stop_display.sh` - Stops the LED matrix display service
Make them executable with:
```bash
chmod +x start_display.sh stop_display.sh
```
Then use them to control the service:
```bash
sudo ./start_display.sh
sudo ./stop_display.sh
```
</details>
-----------------------------------------------------------------------------------
## Information
<details>
<summary>Display Settings from RGBLEDMatrix Library</summary>
## Display Settings
If you are copying my setup, you can likely leave this alone.
- hardware: Configures how the matrix is driven.
- rows, cols, chain_length: Physical panel configuration.
- brightness: Display brightness (0100).
- hardware_mapping: Use "adafruit-hat-pwm" for Adafruit bonnet WITH the jumper mod. Remove -pwm if you did not solder the jumper.
- pwm_bits, pwm_dither_bits, pwm_lsb_nanoseconds: Affect color fidelity.
- limit_refresh_rate_hz: Cap refresh rate for better stability.
- runtime:
- gpio_slowdown: Tweak this depending on your Pi model. Match it to the generation (e.g., Pi 3 → 3, Pi 4 -> 4).
- display_durations:
- Control how long each display module stays visible in seconds. For example, if you want more focus on stocks, increase that value.
### Modules
- Each module (weather, stocks, crypto, calendar, etc.) has enabled, update_interval, and often display_format settings.
- Sports modules also support test_mode, live_update_interval, and favorite_teams.
- Logos are loaded from the logo_dir path under assets/sports/...
</details>
<details>
<summary>Cache Information</summary>
### Persistent Caching Setup
The LEDMatrix system uses persistent caching to improve performance and reduce API calls. When running with `sudo`, the system needs a persistent cache directory that survives restarts.
**First-Time Setup:**
Run the setup script to create a persistent cache directory:
```bash
chmod +x setup_cache.sh
./setup_cache.sh
```
This will:
- Create `/var/cache/ledmatrix/` directory
- Set proper ownership to your user account
- Set permissions to allow the daemon user (which the system runs as) to write
- Test writability for both your user and the daemon user
**If You Still See Cache Warnings:**
If you see warnings about using temporary cache directory, run the permissions fix:
```bash
chmod +x fix_cache_permissions.sh
./fix_cache_permissions.sh
```
**Manual Setup:**
If you prefer to set up manually:
```bash
sudo mkdir -p /var/cache/ledmatrix
sudo chown $USER:$USER /var/cache/ledmatrix
sudo chmod 777 /var/cache/ledmatrix
```
**Cache Locations (in order of preference):**
1. `~/.ledmatrix_cache/` (user's home directory) - **Most persistent**
2. `/var/cache/ledmatrix/` (system cache directory) - **Persistent across restarts**
3. `/opt/ledmatrix/cache/` (alternative persistent location)
4. `/tmp/ledmatrix_cache/` (temporary directory) - **NOT persistent**
**Note:** If the system falls back to `/tmp/ledmatrix_cache/`, you'll see a warning message and the cache will not persist across restarts.
## Caching System
The LEDMatrix system includes a robust caching mechanism to optimize API calls and reduce network traffic:
### Cache Location
- Default cache directory: `/tmp/ledmatrix_cache`
- Cache files are stored with proper permissions (755 for directories, 644 for files)
- When running as root/sudo, cache ownership is automatically adjusted to the real user
### Cached Data Types
- Weather data (current conditions and forecasts)
- Stock prices and market data
- Stock news headlines
- ESPN game information
### Cache Behavior
- Data is cached based on update intervals defined in `config.json`
- Cache is automatically invalidated when:
- Update interval has elapsed
- Market is closed (for stock data)
- Data has changed significantly
- Failed API calls fall back to cached data when available
- Cache files use atomic operations to prevent corruption
### Cache Management
- Cache files are automatically created and managed
- No manual intervention required
- Cache directory is created with proper permissions on first run
- Temporary files are used for safe updates
- JSON serialization handles all data types including timestamps
</details>
<details>
<summary>Date Format Configuration </summary>
## Date Format Configuration
You can customize the date format for upcoming games across all sports displays. The `use_short_date_format` setting in `config/config.json` under the `display` section controls this behavior.
- **`"use_short_date_format": true`**: Displays dates in a short, numerical format (e.g., "8/30").
- **`"use_short_date_format": false`** (Default): Displays dates in a more descriptive format with an ordinal suffix (e.g., "Aug 30th").
### Example `config.json`
```json
"display": {
"hardware": {
...
},
"runtime": {
...
},
"display_durations": {
...
},
"use_short_date_format": false // Set to true for "8/30" format
},
```
</details>
## Final Notes
- Most configuration is done via config/config.json
- A caching system reduces API strain and helps ensure the display doesn't hammer external services (and ruin it for everyone)
- I purposely did not include the same detailed information as the main project readme, if you need those details please visit the main project GIT.
### If you've read this far — thanks!

View File

@@ -0,0 +1,4 @@
{
"last_updated": 0,
"map": {}
}

BIN
assets/fonts/4x6-font.ttf Normal file

Binary file not shown.

11981
assets/fonts/4x6.bdf Normal file

File diff suppressed because it is too large Load Diff

Binary file not shown.

25905
assets/fonts/5x7.bdf Normal file

File diff suppressed because it is too large Load Diff

21422
assets/fonts/5x8.bdf Normal file

File diff suppressed because it is too large Load Diff

20768
assets/fonts/6x9.bdf Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

10184
assets/fonts/MatrixLight8X.bdf Normal file

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@@ -0,0 +1,70 @@
""" Pasted from cursor chat to be able to use bdf fonts easier in the future """
""" Font Loading """
import freetype
face = freetype.Face("path/to/font.bdf")
""" rendering the character """
# Load the character
face.load_char(char)
# Get the bitmap data
bitmap = face.glyph.bitmap
# The bitmap data is stored in a packed format where:
# - Each byte represents 8 pixels
# - bitmap.pitch is the number of bytes per row
# - bitmap.width is the width in pixels
# - bitmap.rows is the height in pixels
" Drawing the character "
#For each row in the bitmap
for i in range(bitmap.rows):
# For each pixel in the row
for j in range(bitmap.width):
# Calculate which byte contains this pixel
byte_index = i * bitmap.pitch + (j // 8)
# Get the byte
byte = bitmap.buffer[byte_index]
# Check if the specific bit is set (1 = draw pixel)
if byte & (1 << (7 - (j % 8))):
# Draw the pixel at (x + j, y + i)
draw.point((x + j, y + i), fill=(255, 255, 255))
" Character Spacing "
# Move to next character position using the font's advance
x += face.glyph.advance.x >> 6 # Advance is in 1/64th of pixels
""" Key Points:
BDF fonts are bitmap fonts, so they have a fixed size
The bitmap data is stored in a packed format (8 pixels per byte)
Each bit in a byte represents whether a pixel should be drawn (1) or not (0)
The pitch value tells you how many bytes are in each row
The advance value tells you how far to move for the next character
Example Usage: """
def draw_bdf_text(draw, text, x, y, font_path):
face = freetype.Face(font_path)
for char in text:
face.load_char(char)
bitmap = face.glyph.bitmap
# Draw the character
for i in range(bitmap.rows):
for j in range(bitmap.width):
byte_index = i * bitmap.pitch + (j // 8)
if byte_index < len(bitmap.buffer):
byte = bitmap.buffer[byte_index]
if byte & (1 << (7 - (j % 8))):
draw.point((x + j, y + i), fill=(255, 255, 255))
# Move to next character
x += face.glyph.advance.x >> 6

9993
assets/fonts/ic8x8u.bdf Normal file

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 141 KiB

BIN
assets/sponsors/bmr.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

BIN
assets/sponsors/btlock.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 156 KiB

BIN
assets/sponsors/eardley.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 KiB

BIN
assets/sponsors/fred.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

BIN
assets/sponsors/legion.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

BIN
assets/sponsors/sbdodge.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 98 KiB

View File

@@ -0,0 +1,972 @@
NCAAF
AMH => Amherst Mammoths
ANN => Anna Maria College Amcats
ARIZ => Arizona Wildcats
ARK => Arkansas Razorbacks
ASU => Arizona State Sun Devils
AUB => Auburn Tigers
BOIS => Boise State Broncos
BRST => Bridgewater State Bears
BUENA => Buena Vista Beavers
CAL => California Golden Bears
CAR => Carroll University (WI) Pioneers
CLA => Claremont-Mudd-Scripps College Stags
COLBY => Colby College White Mules
COLO => Colorado Buffaloes
CONN => UConn Huskies
CP => Cal Poly Mustangs
CSU => Colorado State Rams
CUR => Curry College Colonels
DEL => Delaware Blue Hens
DUB => Dubuque Spartans
ELM => Elmhurst Bluejays
FAMU => Florida A&M Rattlers
FLA => Florida Gators
FSU => Florida State Seminoles
GRI => Grinnell Pioneers
GT => Georgia Tech Yellow Jackets
GTWN => Georgetown Hoyas
HAW => Hawai'i Rainbow Warriors
HOW => Howard Bison
IDHO => Idaho Vandals
ISU => Iowa State Cyclones
JXST => Jacksonville State Gamecocks
LUT => Luther Norse
MESA => Colorado Mesa Mavericks
MIL => Millikin Big Blue
MOR => Morehouse College Maroon Tigers
NOR => North Park Vikings
RED => Redlands Bulldogs
SAC => Sacramento State Hornets
SDSU => San Diego State Aztecs
SJSU => San José State Spartans
STAN => Stanford Cardinal
STET => Stetson Hatters
UAB => UAB Blazers
UCLA => UCLA Bruins
UGA => Georgia Bulldogs
USA => South Alabama Jaguars
USC => USC Trojans
USF => South Florida Bulls
YALE => Yale Bulldogs
NBA
ATL => Atlanta Hawks
BKN => Brooklyn Nets
BOS => Boston Celtics
CHA => Charlotte Hornets
CHI => Chicago Bulls
CLE => Cleveland Cavaliers
DAL => Dallas Mavericks
DEN => Denver Nuggets
DET => Detroit Pistons
GS => Golden State Warriors
HOU => Houston Rockets
IND => Indiana Pacers
LAC => LA Clippers
LAL => Los Angeles Lakers
MEM => Memphis Grizzlies
MIA => Miami Heat
MIL => Milwaukee Bucks
MIN => Minnesota Timberwolves
NO => New Orleans Pelicans
NY => New York Knicks
OKC => Oklahoma City Thunder
ORL => Orlando Magic
PHI => Philadelphia 76ers
PHX => Phoenix Suns
POR => Portland Trail Blazers
SA => San Antonio Spurs
SAC => Sacramento Kings
TOR => Toronto Raptors
UTAH => Utah Jazz
WSH => Washington Wizards
NFL
ARI => Arizona Cardinals
ATL => Atlanta Falcons
BAL => Baltimore Ravens
BUF => Buffalo Bills
CAR => Carolina Panthers
CHI => Chicago Bears
CIN => Cincinnati Bengals
CLE => Cleveland Browns
DAL => Dallas Cowboys
DEN => Denver Broncos
DET => Detroit Lions
GB => Green Bay Packers
HOU => Houston Texans
IND => Indianapolis Colts
JAX => Jacksonville Jaguars
KC => Kansas City Chiefs
LAC => Los Angeles Chargers
LAR => Los Angeles Rams
LV => Las Vegas Raiders
MIA => Miami Dolphins
MIN => Minnesota Vikings
NE => New England Patriots
NO => New Orleans Saints
NYG => New York Giants
NYJ => New York Jets
PHI => Philadelphia Eagles
PIT => Pittsburgh Steelers
SEA => Seattle Seahawks
SF => San Francisco 49ers
TB => Tampa Bay Buccaneers
TEN => Tennessee Titans
WSH => Washington
NCAA BASKETBALL
AAMU => Alabama A&M Bulldogs
ACU => Abilene Christian Wildcats
AFA => Air Force Falcons
AKR => Akron Zips
ALA => Alabama Crimson Tide
ALB => Albany Great Danes
ALCN => Alcorn State Braves
ALST => Alabama State Hornets
AMCC => Texas A&M-CC Islanders
AMER => American Eagles
APP => Appalachian State Mountaineers
APSU => Austin Peay Governors
ARIZ => Arizona Wildcats
ARK => Arkansas Razorbacks
ARMY => Army Black Knights
ARST => Arkansas State Red Wolves
ASU => Arizona State Sun Devils
AUB => Auburn Tigers
BALL => Ball State Cardinals
BAY => Baylor Bears
BC => Boston College Eagles
BEL => Belmont Bruins
BELL => Bellarmine Knights
BGSU => Bowling Green Falcons
BING => Binghamton Bearcats
BRAD => Bradley Braves
BRWN => Brown Bears
BRY => Bryant Bulldogs
BSU => Boise State Broncos
BU => Boston University Terriers
BUCK => Bucknell Bison
BUFF => Buffalo Bulls
BUT => Butler Bulldogs
BYU => BYU Cougars
CAL => California Golden Bears
CAM => Campbell Fighting Camels
CAN => Canisius Golden Griffins
CCAR => Coastal Carolina Chanticleers
CCSU => Central Connecticut Blue Devils
CHAR => Charlotte 49ers
CHIC => Chicago State Cougars
CHSO => Charleston Southern Buccaneers
CIN => Cincinnati Bearcats
CLEM => Clemson Tigers
CLEV => Cleveland State Vikings
CLMB => Columbia Lions
CMU => Central Michigan Chippewas
COFC => Charleston Cougars
COLG => Colgate Raiders
COLO => Colorado Buffaloes
CONN => UConn Huskies
COPP => Coppin State Eagles
COR => Cornell Big Red
CP => Cal Poly Mustangs
CREI => Creighton Bluejays
CSU => Colorado State Rams
CSUB => CSU Bakersfield Roadrunners
CSUF => CSU Fullerton Titans
CSUN => CSU Northridge Matadors
DART => Dartmouth Big Green
DAV => Davidson Wildcats
DAY => Dayton Flyers
DEL => Delaware Blue Hens
DEN => Denver Pioneers
DEP => DePaul Blue Demons
DET => Detroit Mercy Titans
DREX => Drexel Dragons
DRKE => Drake Bulldogs
DSU => Delaware State Hornets
DUKE => Duke Blue Devils
DUQ => Duquesne Dukes
ECU => East Carolina Pirates
EIU => Eastern Illinois Panthers
EKU => Eastern Kentucky Colonels
ELON => Elon Phoenix
EMU => Eastern Michigan Eagles
ETSU => East Tennessee State Buccaneers
EVAN => Evansville Purple Aces
EWU => Eastern Washington Eagles
FAIR => Fairfield Stags
FAMU => Florida A&M Rattlers
FAU => Florida Atlantic Owls
FDU => Fairleigh Dickinson Knights
FGCU => Florida Gulf Coast Eagles
FIU => Florida International Panthers
FLA => Florida Gators
FOR => Fordham Rams
FRES => Fresno State Bulldogs
FSU => Florida State Seminoles
FUR => Furman Paladins
GASO => Georgia Southern Eagles
GAST => Georgia State Panthers
GB => Green Bay Phoenix
GCU => Grand Canyon Antelopes
GMU => George Mason Patriots
GONZ => Gonzaga Bulldogs
GT => Georgia Tech Yellow Jackets
GTWN => Georgetown Hoyas
GW => George Washington Colonials
GWEB => Gardner-Webb Bulldogs
HALL => Seton Hall Pirates
HAMP => Hampton Pirates
HART => Hartford Hawks
HARV => Harvard Crimson
HAW => Hawai'i Rainbow Warriors
HBU => Houston Baptist Huskies
HC => Holy Cross Crusaders
HOF => Hofstra Pride
HOU => Houston Cougars
HOW => Howard Bison
HP => High Point Panthers
IDHO => Idaho Vandals
IDST => Idaho State Bengals
ILL => Illinois Fighting Illini
ILST => Illinois State Redbirds
INST => Indiana State Sycamores
IONA => Iona Gaels
IOWA => Iowa Hawkeyes
ISU => Iowa State Cyclones
IU => Indiana Hoosiers
IUPU => IUPUI Jaguars
JAX => Jacksonville Dolphins
JKST => Jackson State Tigers
JMU => James Madison Dukes
JOES => Saint Joseph's Hawks
JVST => Jacksonville State Gamecocks
KENN => Kennesaw State Owls
KENT => Kent State Golden Flashes
KSU => Kansas State Wildcats
KU => Kansas Jayhawks
L-MD => Loyola (MD) Greyhounds
LAF => Lafayette Leopards
LAM => Lamar Cardinals
LAS => La Salle Explorers
LBSU => Long Beach State Beach
LEH => Lehigh Mountain Hawks
LIB => Liberty Flames
LIP => Lipscomb Bisons
LIU => Long Island University Sharks
LMU => Loyola Marymount Lions
LONG => Longwood Lancers
LOU => Louisville Cardinals
LSU => LSU Tigers
LT => Louisiana Tech Bulldogs
LUC => Loyola Chicago Ramblers
M-OH => Miami (OH) Redhawks
MAN => Manhattan Jaspers
MARQ => Marquette Golden Eagles
MASS => UMass Minutemen
MD => Maryland Terrapins
ME => Maine Black Bears
MEM => Memphis Tigers
MIA => Miami Hurricanes
MICH => Michigan Wolverines
MILW => Milwaukee Panthers
MINN => Minnesota Golden Gophers
MISS => Ole Miss Rebels
MIZ => Missouri Tigers
MONM => Monmouth Hawks
MONT => Montana Grizzlies
MORE => Morehead State Eagles
MORG => Morgan St Bears
MOST => Missouri State Bears
MRMK => Merrimack Warriors
MRSH => Marshall Thundering Herd
MRST => Marist Red Foxes
MSM => Mount St. Mary's Mountaineers
MSST => Mississippi State Bulldogs
MSU => Michigan State Spartans
MTST => Montana State Bobcats
MTU => Middle Tennessee Blue Raiders
MUR => Murray State Racers
NAU => Northern Arizona Lumberjacks
NAVY => Navy Midshipmen
NCAT => North Carolina A&T Aggies
NCCU => North Carolina Central Eagles
NCST => NC State Wolfpack
ND => Notre Dame Fighting Irish
NE => Northeastern Huskies
NEB => Nebraska Cornhuskers
NEV => Nevada Wolf Pack
NIAG => Niagara Purple Eagles
NIU => Northern Illinois Huskies
NJIT => NJIT Highlanders
NKU => Northern Kentucky Norse
NMSU => New Mexico State Aggies
NORF => Norfolk St Spartans
NW => Northwestern Wildcats
OAK => Oakland Golden Grizzlies
ODU => Old Dominion Monarchs
OHIO => Ohio Bobcats
OKST => Oklahoma State Cowboys
ORE => Oregon Ducks
ORST => Oregon State Beavers
ORU => Oral Roberts Golden Eagles
OSU => Ohio State Buckeyes
OU => Oklahoma Sooners
PAC => Pacific Tigers
PENN => Pennsylvania Quakers
PFW => Purdue Fort Wayne Mastodons
PITT => Pittsburgh Panthers
PRES => Presbyterian Blue Hose
PRIN => Princeton Tigers
PROV => Providence Friars
PRST => Portland State Vikings
PSU => Penn State Nittany Lions
PUR => Purdue Boilermakers
QUIN => Quinnipiac Bobcats
RAD => Radford Highlanders
RICE => Rice Owls
RICH => Richmond Spiders
RID => Rider Broncs
RMU => Robert Morris Colonials
RUTG => Rutgers Scarlet Knights
SAC => Sacramento State Hornets
SBU => St. Bonaventure Bonnies
SC => South Carolina Gamecocks
SCST => South Carolina State Bulldogs
SCUP => South Carolina Upstate Spartans
SDAK => South Dakota Coyotes
SDSU => San Diego State Aztecs
SEMO => Southeast Missouri State Redhawks
SFBK => St. Francis (BKN) Terriers
SFPA => St. Francis (PA) Red Flash
SHU => Sacred Heart Pioneers
SIE => Siena Saints
SIU => Southern Illinois Salukis
SIUE => SIU Edwardsville Cougars
SJSU => San José St Spartans
SJU => St. John's Red Storm
SLU => Saint Louis Billikens
SMU => SMU Mustangs
SPU => Saint Peter's Peacocks
STAN => Stanford Cardinal
STBK => Stony Brook Seawolves
STET => Stetson Hatters
SUU => Southern Utah Thunderbirds
SYR => Syracuse Orange
TA&M => Texas A&M Aggies
TCU => TCU Horned Frogs
TEM => Temple Owls
TENN => Tennessee Volunteers
TEX => Texas Longhorns
TLSA => Tulsa Golden Hurricane
TNST => Tennessee State Tigers
TNTC => Tennessee Tech Golden Eagles
TOL => Toledo Rockets
TOW => Towson Tigers
TTU => Texas Tech Red Raiders
TULN => Tulane Green Wave
TXST => Texas State Bobcats
UAB => UAB Blazers
UALR => Little Rock Trojans
UAPB => Arkansas-Pine Bluff Golden Lions
UCA => Central Arkansas Bears
UCD => UC Davis Aggies
UCF => UCF Knights
UCI => UC Irvine Anteaters
UCLA => UCLA Bruins
UCR => UC Riverside Highlanders
UCSB => UC Santa Barbara Gauchos
UCSD => UC San Diego Tritons
UGA => Georgia Bulldogs
UIC => UIC Flames
UK => Kentucky Wildcats
ULL => Louisiana Ragin' Cajuns
UMBC => UMBC Retrievers
UMKC => UM Kansas City Roos
UML => UMass Lowell River Hawks
UNA => North Alabama Lions
UNC => North Carolina Tar Heels
UNCA => UNC Asheville Bulldogs
UNCO => Northern Colorado Bears
UNCW => UNC Wilmington Seahawks
UND => North Dakota Fighting Hawks
UNF => North Florida Ospreys
UNH => New Hampshire Wildcats
UNI => Northern Iowa Panthers
UNLV => UNLV Rebels
UNM => New Mexico Lobos
UNT => North Texas Mean Green
URI => Rhode Island Rams
USA => South Alabama Jaguars
USC => USC Trojans
USD => San Diego Toreros
USF => South Florida Bulls
USM => Southern Miss Golden Eagles
USU => Utah State Aggies
UTA => UT Arlington Mavericks
UTAH => Utah Utes
UTC => Chattanooga Mocs
UTEP => UTEP Miners
UTM => UT Martin Skyhawks
UTRGV => UT Rio Grande Valley Vaqueros
UTSA => UTSA Roadrunners
UVA => Virginia Cavaliers
UVM => Vermont Catamounts
VALP => Valparaiso
VAN => Vanderbilt Commodores
VCU => VCU Rams
VILL => Villanova Wildcats
VT => Virginia Tech Hokies
W&M => William & Mary Tribe
WAG => Wagner Seahawks
WAKE => Wake Forest Demon Deacons
WASH => Washington Huskies
WEB => Weber State Wildcats
WICH => Wichita State Shockers
WIN => Winthrop Eagles
WISC => Wisconsin Badgers
WKU => Western Kentucky Hilltoppers
WMU => Western Michigan Broncos
WRST => Wright State Raiders
WSU => Washington State Cougars
WVU => West Virginia Mountaineers
WYO => Wyoming Cowboys
XAV => Xavier Musketeers
YALE => Yale Bulldogs
YSU => Youngstown State Penguins
MLB
ARI => Arizona Diamondbacks
ATL => Atlanta Braves
BAL => Baltimore Orioles
BOS => Boston Red Sox
CHC => Chicago Cubs
CHW => Chicago White Sox
CIN => Cincinnati Reds
CLE => Cleveland Indians
COL => Colorado Rockies
DET => Detroit Tigers
HOU => Houston Astros
KC => Kansas City Royals
LAA => Los Angeles Angels
LAD => Los Angeles Dodgers
MIA => Miami Marlins
MIL => Milwaukee Brewers
MIN => Minnesota Twins
NYM => New York Mets
NYY => New York Yankees
OAK => Oakland Athletics
PHI => Philadelphia Phillies
PIT => Pittsburgh Pirates
SD => San Diego Padres
SEA => Seattle Mariners
SF => San Francisco Giants
STL => St. Louis Cardinals
TB => Tampa Bay Rays
TEX => Texas Rangers
TOR => Toronto Blue Jays
WSH => Washington Nationals
MLS
ATL => Atlanta United FC
ATX => Austin FC
CHI => Chicago Fire FC
CIN => FC Cincinnati
CLB => Columbus Crew
COL => Colorado Rapids
DAL => FC Dallas
DC => DC United
HOU => Houston Dynamo FC
LA => LA Galaxy
LAFC => LAFC
MIA => Inter Miami CF
MIN => Minnesota United FC
MTL => CF Montréal
NE => New England Revolution
NSH => Nashville SC
NY => New York Red Bulls
NYC => New York City FC
ORL => Orlando City SC
PHI => Philadelphia Union
POR => Portland Timbers
RSL => Real Salt Lake
SEA => Seattle Sounders FC
SJ => San Jose Earthquakes
SKC => Sporting Kansas City
TOR => Toronto FC
VAN => Vancouver Whitecaps
NHL
ANA => Anaheim Ducks
ARI => Arizona Coyotes
BOS => Boston Bruins
BUF => Buffalo Sabres
CAR => Carolina Hurricanes
CBJ => Columbus Blue Jackets
CGY => Calgary Flames
CHI => Chicago Blackhawks
COL => Colorado Avalanche
DAL => Dallas Stars
DET => Detroit Red Wings
EDM => Edmonton Oilers
FLA => Florida Panthers
LA => Los Angeles Kings
MIN => Minnesota Wild
MTL => Montreal Canadiens
NJ => New Jersey Devils
NSH => Nashville Predators
NYI => New York Islanders
NYR => New York Rangers
OTT => Ottawa Senators
PHI => Philadelphia Flyers
PIT => Pittsburgh Penguins
SEA => Seattle Kraken
SJ => San Jose Sharks
STL => St. Louis Blues
TB => Tampa Bay Lightning
TOR => Toronto Maple Leafs
VAN => Vancouver Canucks
VGS => Vegas Golden Knights
WPG => Winnipeg Jets
WSH => Washington Capitals
NCAAF Conferences/Divisions
Conferences currently unsupported
NBA Conferences/Divisions
East_SE
ATL => Atlanta Hawks
CHA => Charlotte Hornets
MIA => Miami Heat
ORL => Orlando Magic
WSH => Washington Wizards
East_AT
BKN => Brooklyn Nets
BOS => Boston Celtics
NY => New York Knicks
PHI => Philadelphia 76ers
TOR => Toronto Raptors
East_CE
CHI => Chicago Bulls
CLE => Cleveland Cavaliers
DET => Detroit Pistons
IND => Indiana Pacers
MIL => Milwaukee Bucks
West_SW
DAL => Dallas Mavericks
HOU => Houston Rockets
MEM => Memphis Grizzlies
NO => New Orleans Pelicans
SA => San Antonio Spurs
West_NW
DEN => Denver Nuggets
MIN => Minnesota Timberwolves
OKC => Oklahoma City Thunder
POR => Portland Trail Blazers
UTAH => Utah Jazz
West_PA
GS => Golden State Warriors
LAC => LA Clippers
LAL => Los Angeles Lakers
PHX => Phoenix Suns
SAC => Sacramento Kings
NFL Conferences/Divisions
AFC_SOUTH
HOU => Houston Texans
IND => Indianapolis Colts
JAX => Jacksonville Jaguars
TEN => Tennessee Titans
NFC_WEST
ARI => Arizona Cardinals
LAR => Los Angeles Rams
SEA => Seattle Seahawks
SF => San Francisco 49ers
NFC_SOUTH
ATL => Atlanta Falcons
CAR => Carolina Panthers
NO => New Orleans Saints
TB => Tampa Bay Buccaneers
AFC_NORTH
BAL => Baltimore Ravens
CIN => Cincinnati Bengals
CLE => Cleveland Browns
PIT => Pittsburgh Steelers
AFC_EAST
BUF => Buffalo Bills
MIA => Miami Dolphins
NE => New England Patriots
NYJ => New York Jets
NFC_NORTH
CHI => Chicago Bears
DET => Detroit Lions
GB => Green Bay Packers
MIN => Minnesota Vikings
NFC_EAST
DAL => Dallas Cowboys
NYG => New York Giants
PHI => Philadelphia Eagles
WSH => Washington
AFC_WEST
DEN => Denver Broncos
KC => Kansas City Chiefs
LAC => Los Angeles Chargers
LV => Las Vegas Raiders
NCAA BASKETBALL Conferences/Divisions
NCAA_pat
NAVY => Navy Midshipmen
NCAA_aac
SMU => SMU Mustangs
TULN => Tulane Green Wave
WICH => Wichita State Shockers
NCAA_atl10
JOES => Saint Joseph's Hawks
VCU => VCU Rams
NCAA_meac
MORG => Morgan St Bears
NCAT => North Carolina A&T Aggies
NCCU => North Carolina Central Eagles
NORF => Norfolk St Spartans
SCST => South Carolina State Bulldogs
NCAA_mvc
MOST => Missouri State Bears
UNI => Northern Iowa Panthers
VALP => Valparaiso
NCAA_midam
NIU => Northern Illinois Huskies
TOL => Toledo Rockets
WMU => Western Michigan Broncos
NCAA_big12
TCU => TCU Horned Frogs
TTU => Texas Tech Red Raiders
NCAA_neast
BRY => Bryant Bulldogs
LIU => Long Island University Sharks
MRMK => Merrimack Warriors
SFBK => St. Francis (BKN) Terriers
SFPA => St. Francis (PA) Red Flash
SHU => Sacred Heart Pioneers
WAG => Wagner Seahawks
NCAA_bige
HALL => Seton Hall Pirates
PROV => Providence Friars
SJU => St. John's Red Storm
XAV => Xavier Musketeers
NCAA_bsky
NAU => Northern Arizona Lumberjacks
PRST => Portland State Vikings
UNCO => Northern Colorado Bears
WEB => Weber State Wildcats
NCAA_mwest
NEV => Nevada Wolf Pack
UNLV => UNLV Rebels
WYO => Wyoming Cowboys
NCAA_aeast
NJIT => NJIT Highlanders
STBK => Stony Brook Seawolves
UMBC => UMBC Retrievers
NCAA_pac12
ORE => Oregon Ducks
NCAA_bsou
PRES => Presbyterian Blue Hose
RAD => Radford Highlanders
SCUP => South Carolina Upstate Spartans
UNCA => UNC Asheville Bulldogs
WIN => Winthrop Eagles
NCAA_big10
PUR => Purdue Boilermakers
NCAA_maac
MAN => Manhattan Jaspers
MONM => Monmouth Hawks
MRST => Marist Red Foxes
QUIN => Quinnipiac Bobcats
RID => Rider Broncs
SIE => Siena Saints
SPU => Saint Peter's Peacocks
NCAA_acc
MIA => Miami Hurricanes
NCAA_a-sun
UNA => North Alabama Lions
UNF => North Florida Ospreys
NCAA_hor
GB => Green Bay Phoenix
OAK => Oakland Golden Grizzlies
PFW => Purdue Fort Wayne Mastodons
RMU => Robert Morris Colonials
WRST => Wright State Raiders
YSU => Youngstown State Penguins
NCAA_ovc
MORE => Morehead State Eagles
SEMO => Southeast Missouri State Redhawks
SIUE => SIU Edwardsville Cougars
TNST => Tennessee State Tigers
TNTC => Tennessee Tech Golden Eagles
UTM => UT Martin Skyhawks
NCAA_sec
SC => South Carolina Gamecocks
TENN => Tennessee Volunteers
NCAA_col
W&M => William & Mary Tribe
NCAA_usa
CHAR => Charlotte 49ers
MTU => Middle Tennessee Blue Raiders
USM => Southern Miss Golden Eagles
UTEP => UTEP Miners
UTSA => UTSA Roadrunners
NCAA_bigw
CSUB => CSU Bakersfield Roadrunners
CSUN => CSU Northridge Matadors
UCSB => UC Santa Barbara Gauchos
MLB Conferences/Divisions
NL_NLW
ARI => Arizona Diamondbacks
COL => Colorado Rockies
LAD => Los Angeles Dodgers
SD => San Diego Padres
SF => San Francisco Giants
NL_NLE
ATL => Atlanta Braves
MIA => Miami Marlins
NYM => New York Mets
PHI => Philadelphia Phillies
WSH => Washington Nationals
AL_ALE
BAL => Baltimore Orioles
BOS => Boston Red Sox
NYY => New York Yankees
TB => Tampa Bay Rays
TOR => Toronto Blue Jays
NL_NLC
CHC => Chicago Cubs
CIN => Cincinnati Reds
MIL => Milwaukee Brewers
PIT => Pittsburgh Pirates
STL => St. Louis Cardinals
AL_ALC
CHW => Chicago White Sox
CLE => Cleveland Indians
DET => Detroit Tigers
KC => Kansas City Royals
MIN => Minnesota Twins
AL_ALW
HOU => Houston Astros
LAA => Los Angeles Angels
OAK => Oakland Athletics
SEA => Seattle Mariners
TEX => Texas Rangers
Soccer Leagues:
LEAGUE_SLUGS = {
"eng.1": "Premier League",
"esp.1": "La Liga",
"ger.1": "Bundesliga",
"ita.1": "Serie A",
"fra.1": "Ligue 1",
"uefa.champions": "Champions League",
"uefa.europa": "Europa League",
"usa.1": "MLS",
"por.1": "Liga Portugal", # Add this line
}
Soccer - Premier League (England)
ARS => Arsenal
AVL => Aston Villa
BHA => Brighton & Hove Albion
BOU => AFC Bournemouth
BRE => Brentford
BUR => Burnley
CHE => Chelsea
CRY => Crystal Palace
EVE => Everton
FUL => Fulham
LIV => Liverpool
LUT => Luton Town
MCI => Manchester City
MUN => Manchester United
NEW => Newcastle United
NFO => Nottingham Forest
SHU => Sheffield United
TOT => Tottenham Hotspur
WHU => West Ham United
WOL => Wolverhampton Wanderers
Soccer - La Liga (Spain)
ALA => Alavés
ATH => Athletic Bilbao
ATM => Atlético Madrid
BAR => Barcelona
BET => Real Betis
CAG => Cagliari
CEL => Celta Vigo
ESP => Espanyol
GET => Getafe
GIR => Girona
LAZ => Lazio
LEG => Leganés
RAY => Rayo Vallecano
RMA => Real Madrid
SEV => Sevilla
VAL => Valencia
VLD => Valladolid
Soccer - Bundesliga (Germany)
BOC => VfL Bochum
BOL => VfL Bochum
DOR => Borussia Dortmund
FCA => FC Augsburg
FCB => Bayern Munich
FCU => FC Union Berlin
HAC => Hannover 96
HDH => Hertha BSC
KOL => 1. FC Köln
LEV => Bayer Leverkusen
M05 => Mainz 05
RBL => RB Leipzig
SCF => SC Freiburg
SGE => Eintracht Frankfurt
STU => VfB Stuttgart
SVW => Werder Bremen
TSG => TSG Hoffenheim
WOB => VfL Wolfsburg
Soccer - Serie A (Italy)
ATA => Atalanta
CAG => Cagliari
EMP => Empoli
FIO => Fiorentina
INT => Inter Milan
JUV => Juventus
LAZ => Lazio
MIL => AC Milan
MON => Monza
NAP => Napoli
ROM => Roma
TOR => Torino
UDI => Udinese
VER => Hellas Verona
Soccer - Ligue 1 (France)
LIL => Lille
LPM => Lille
LYON => Lyon
MAR => Marseille
MON => Monaco
NAN => Nantes
NICE => Nice
OL => Olympique Lyonnais
OM => Olympique de Marseille
PAR => Paris Saint-Germain
PSG => Paris Saint-Germain
REN => Rennes
STR => Strasbourg
Soccer - Champions League
AJA => Ajax
ASM => AS Monaco
ASS => AS Saint-Étienne
BOC => VfL Bochum
CEL => Celtic
COM => Club Brugge
FCA => FC Augsburg
FCB => Bayern Munich
FCU => FC Union Berlin
FIO => Fiorentina
GEN => Genoa
HAC => Hannover 96
IPS => Ipswich Town
KSV => Kaiserslautern
LEC => Lecce
LIL => Lille
LIV => Liverpool
M05 => Mainz 05
MCI => Manchester City
MUN => Manchester United
NAN => Nantes
OSA => Osasuna
RBL => RB Leipzig
RCL => RC Lens
RMA => Real Madrid
SCF => SC Freiburg
SGE => Eintracht Frankfurt
SR => Sporting CP
STP => St. Pauli
SVW => Werder Bremen
TFC => Toulouse FC
TOT => Tottenham Hotspur
TSG => TSG Hoffenheim
UDI => Udinese
VEN => Venezia
VFB => VfB Stuttgart
VIL => Villarreal
Soccer - Liga Portugal (Portugal)
ARO => Arouca
BEN => SL Benfica
BRA => SC Braga
CHA => Chaves
EST => Estoril Praia
FAM => Famalicão
GIL => Gil Vicente
MOR => Moreirense
POR => FC Porto
PTM => Portimonense
RIO => Rio Ave
SR => Sporting CP
VGU => Vitória de Guimarães
VSC => Vitória de Setúbal
Soccer - Other Teams
austin => Austin FC
cf_montral => CF Montréal
charlotte => Charlotte FC
dortmund => Borussia Dortmund
gladbach => Borussia Mönchengladbach
lafc => Los Angeles FC
leverkusen => Bayer Leverkusen
nycfc => New York City FC
paris_sg => Paris Saint-Germain
st_louis => St. Louis City SC
MLS Conferences/Divisions
Conferences currently unsupported
NHL Conferences/Divisions
West_PAC
ANA => Anaheim Ducks
CGY => Calgary Flames
EDM => Edmonton Oilers
LA => Los Angeles Kings
SEA => Seattle Kraken
SJ => San Jose Sharks
VAN => Vancouver Canucks
VGS => Vegas Golden Knights
West_CEN
ARI => Arizona Coyotes
CHI => Chicago Blackhawks
COL => Colorado Avalanche
DAL => Dallas Stars
MIN => Minnesota Wild
NSH => Nashville Predators
STL => St. Louis Blues
WPG => Winnipeg Jets
East_ATL
BOS => Boston Bruins
BUF => Buffalo Sabres
DET => Detroit Red Wings
FLA => Florida Panthers
MTL => Montreal Canadiens
OTT => Ottawa Senators
TB => Tampa Bay Lightning
TOR => Toronto Maple Leafs
East_MET
CAR => Carolina Hurricanes
CBJ => Columbus Blue Jackets
NJ => New Jersey Devils
NYI => New York Islanders
NYR => New York Rangers
PHI => Philadelphia Flyers
PIT => Pittsburgh Penguins
WSH => Washington Capitals

Binary file not shown.

After

Width:  |  Height:  |  Size: 492 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 492 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 175 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 275 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 200 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 200 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 182 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 240 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 324 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 293 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 378 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 153 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 502 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 246 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 378 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 149 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 151 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 675 B

BIN
assets/team/DEF.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 153 KiB

BIN
assets/team/eojhl/ARN.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 492 KiB

BIN
assets/team/eojhl/ARP.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 492 KiB

BIN
assets/team/eojhl/ATH.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 175 KiB

BIN
assets/team/eojhl/CAS.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 275 KiB

BIN
assets/team/eojhl/CPC.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 200 KiB

BIN
assets/team/eojhl/EMB.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 200 KiB

BIN
assets/team/eojhl/EOJHL.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 182 KiB

BIN
assets/team/eojhl/GB.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 240 KiB

BIN
assets/team/eojhl/OJC.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 324 KiB

BIN
assets/team/eojhl/OTW.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 293 KiB

BIN
assets/team/eojhl/PER.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 378 KiB

BIN
assets/team/eojhl/RCH.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 153 KiB

BIN
assets/team/eojhl/REN.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 502 KiB

BIN
assets/team/eojhl/SFB.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 246 KiB

BIN
assets/team/eojhl/WIN.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 378 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 149 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 151 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

BIN
assets/weather/beanie.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 815 B

BIN
assets/weather/celsius.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 318 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 917 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1017 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

BIN
assets/weather/cloud-up.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

BIN
assets/weather/cloudy.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 950 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

BIN
assets/weather/code-red.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

BIN
assets/weather/compass.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

BIN
assets/weather/drizzle.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

BIN
assets/weather/dust-day.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 811 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 892 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1003 B

BIN
assets/weather/dust.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 814 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Some files were not shown because too many files have changed in this diff Show More