From 7130a1fd43b66e4905ae1a9f5f2f670ab2ad1a5e Mon Sep 17 00:00:00 2001 From: Cal Corum Date: Mon, 25 Aug 2025 07:18:31 -0500 Subject: [PATCH] Postgres Migration Migration documentation and scripts --- .../season_batting_stats_trigger_migration.md | 192 + .../COMPREHENSIVE_API_TEST_COVERAGE.md | 0 .../CUSTOM_COMMANDS_MIGRATION.md | 0 .../DATA_SANITIZATION_TEMPLATE.md | 0 .../MIGRATION_METHODOLOGY.md | 0 .../MIGRATION_QUICK_REFERENCE.md | 0 ...STGRESQL_MIGRATION_DATA_INTEGRITY_ISSUE.md | 0 .../POSTGRESQL_OPTIMIZATIONS.md | 0 .../PRODUCTION_MIGRATION_CHECKLIST.md | 0 .../api_data_integrity_tests.py | 0 .../CSV_REVIEW_INSTRUCTIONS.txt | 49 + .../analyze_player_data.py | 252 + .../complete_assignment_summary.txt | 14 + .../find_high_risk_matches.py | 440 + .../generate_complete_assignments.py | 325 + .../generate_unmatched_players.py | 267 + .../high_risk_matches_summary.txt | 15 + .../high_risk_player_matches.csv | 828 ++ .../high_risk_player_matches_updated.csv | 828 ++ .../new_sbaplayers_to_insert.csv | 1 + .../new_sbaplayers_to_insert_complete.csv | 1324 ++ .../player_sbaplayer_assignments.csv | 121 + .../player_sbaplayer_assignments_complete.csv | 12233 ++++++++++++++++ .../process_matching_decisions.py | 396 + .../processing_summary.txt | 18 + .../unmatched_players_for_review.csv | 1444 ++ .../unmatched_players_for_review_updated.csv | 1444 ++ .../unmatched_players_summary.txt | 13 + .../update_csv_files.py | 174 + .../comprehensive_api_integrity_tests.py | 0 .../create_season_batting_stats_table.sql | 0 .../sqlite-to-postgres/migrate_to_postgres.py | 0 .../migration_issues_tracker.md | 0 .../sqlite-to-postgres/optimize_postgres.sql | 0 .../SYSTEM_PROMPT_FOR_CONTINUATION.md | 124 + .../comprehensive_player_matching.py | 399 + .../debug_emergency_players.py | 105 + .../debug_unassigned.py | 46 + .../final_assignment_summary.txt | 44 + .../generate_final_assignments.py | 447 + .../generate_final_assignments_v2.py | 492 + .../generate_new_sbaplayers_list.py | 187 + .../generate_update_sql.py | 203 + .../matching_report.txt | 57 + .../new_sbaplayers_for_review.csv | 33 + .../new_sbaplayers_summary.txt | 19 + .../new_sbaplayers_to_insert.csv | 15 + .../player_sbaplayer_assignments.csv | 12233 ++++++++++++++++ .../player_sbaplayer_updates.sql | 11252 ++++++++++++++ .../post_new_sbaplayers.py | 192 + .../process_manual_decisions.py | 317 + .../validation_query.sql | 22 + .../verify_updates.sql | 70 + .../quick_data_comparison.py | 0 .../sqlite-to-postgres/reset_postgres.py | 0 .../sqlite-to-postgres/run_optimization.py | 0 .../season_batting_stats_view.sql | 104 + .../test_migration_workflow.sh | 0 .../sqlite-to-postgres/test_postgres.py | 0 .../sqlite-to-postgres/test_requirements.txt | 0 .../sqlite-to-postgres/validate_migration.py | 0 61 files changed, 46739 insertions(+) create mode 100644 .claude/plans/season_batting_stats_trigger_migration.md rename COMPREHENSIVE_API_TEST_COVERAGE.md => .claude/sqlite-to-postgres/COMPREHENSIVE_API_TEST_COVERAGE.md (100%) rename CUSTOM_COMMANDS_MIGRATION.md => .claude/sqlite-to-postgres/CUSTOM_COMMANDS_MIGRATION.md (100%) rename DATA_SANITIZATION_TEMPLATE.md => .claude/sqlite-to-postgres/DATA_SANITIZATION_TEMPLATE.md (100%) rename MIGRATION_METHODOLOGY.md => .claude/sqlite-to-postgres/MIGRATION_METHODOLOGY.md (100%) rename MIGRATION_QUICK_REFERENCE.md => .claude/sqlite-to-postgres/MIGRATION_QUICK_REFERENCE.md (100%) rename POSTGRESQL_MIGRATION_DATA_INTEGRITY_ISSUE.md => .claude/sqlite-to-postgres/POSTGRESQL_MIGRATION_DATA_INTEGRITY_ISSUE.md (100%) rename POSTGRESQL_OPTIMIZATIONS.md => .claude/sqlite-to-postgres/POSTGRESQL_OPTIMIZATIONS.md (100%) rename PRODUCTION_MIGRATION_CHECKLIST.md => .claude/sqlite-to-postgres/PRODUCTION_MIGRATION_CHECKLIST.md (100%) rename api_data_integrity_tests.py => .claude/sqlite-to-postgres/api_data_integrity_tests.py (100%) create mode 100644 .claude/sqlite-to-postgres/botched-sbaplayer-matching/CSV_REVIEW_INSTRUCTIONS.txt create mode 100644 .claude/sqlite-to-postgres/botched-sbaplayer-matching/analyze_player_data.py create mode 100644 .claude/sqlite-to-postgres/botched-sbaplayer-matching/complete_assignment_summary.txt create mode 100644 .claude/sqlite-to-postgres/botched-sbaplayer-matching/find_high_risk_matches.py create mode 100644 .claude/sqlite-to-postgres/botched-sbaplayer-matching/generate_complete_assignments.py create mode 100644 .claude/sqlite-to-postgres/botched-sbaplayer-matching/generate_unmatched_players.py create mode 100644 .claude/sqlite-to-postgres/botched-sbaplayer-matching/high_risk_matches_summary.txt create mode 100644 .claude/sqlite-to-postgres/botched-sbaplayer-matching/high_risk_player_matches.csv create mode 100644 .claude/sqlite-to-postgres/botched-sbaplayer-matching/high_risk_player_matches_updated.csv create mode 100644 .claude/sqlite-to-postgres/botched-sbaplayer-matching/new_sbaplayers_to_insert.csv create mode 100644 .claude/sqlite-to-postgres/botched-sbaplayer-matching/new_sbaplayers_to_insert_complete.csv create mode 100644 .claude/sqlite-to-postgres/botched-sbaplayer-matching/player_sbaplayer_assignments.csv create mode 100644 .claude/sqlite-to-postgres/botched-sbaplayer-matching/player_sbaplayer_assignments_complete.csv create mode 100644 .claude/sqlite-to-postgres/botched-sbaplayer-matching/process_matching_decisions.py create mode 100644 .claude/sqlite-to-postgres/botched-sbaplayer-matching/processing_summary.txt create mode 100644 .claude/sqlite-to-postgres/botched-sbaplayer-matching/unmatched_players_for_review.csv create mode 100644 .claude/sqlite-to-postgres/botched-sbaplayer-matching/unmatched_players_for_review_updated.csv create mode 100644 .claude/sqlite-to-postgres/botched-sbaplayer-matching/unmatched_players_summary.txt create mode 100644 .claude/sqlite-to-postgres/botched-sbaplayer-matching/update_csv_files.py rename comprehensive_api_integrity_tests.py => .claude/sqlite-to-postgres/comprehensive_api_integrity_tests.py (100%) rename create_season_batting_stats_table.sql => .claude/sqlite-to-postgres/create_season_batting_stats_table.sql (100%) rename migrate_to_postgres.py => .claude/sqlite-to-postgres/migrate_to_postgres.py (100%) rename migration_issues_tracker.md => .claude/sqlite-to-postgres/migration_issues_tracker.md (100%) rename optimize_postgres.sql => .claude/sqlite-to-postgres/optimize_postgres.sql (100%) create mode 100644 .claude/sqlite-to-postgres/player-to-sbaplayer-matching/SYSTEM_PROMPT_FOR_CONTINUATION.md create mode 100644 .claude/sqlite-to-postgres/player-to-sbaplayer-matching/comprehensive_player_matching.py create mode 100644 .claude/sqlite-to-postgres/player-to-sbaplayer-matching/debug_emergency_players.py create mode 100644 .claude/sqlite-to-postgres/player-to-sbaplayer-matching/debug_unassigned.py create mode 100644 .claude/sqlite-to-postgres/player-to-sbaplayer-matching/final_assignment_summary.txt create mode 100644 .claude/sqlite-to-postgres/player-to-sbaplayer-matching/generate_final_assignments.py create mode 100644 .claude/sqlite-to-postgres/player-to-sbaplayer-matching/generate_final_assignments_v2.py create mode 100644 .claude/sqlite-to-postgres/player-to-sbaplayer-matching/generate_new_sbaplayers_list.py create mode 100644 .claude/sqlite-to-postgres/player-to-sbaplayer-matching/generate_update_sql.py create mode 100644 .claude/sqlite-to-postgres/player-to-sbaplayer-matching/matching_report.txt create mode 100644 .claude/sqlite-to-postgres/player-to-sbaplayer-matching/new_sbaplayers_for_review.csv create mode 100644 .claude/sqlite-to-postgres/player-to-sbaplayer-matching/new_sbaplayers_summary.txt create mode 100644 .claude/sqlite-to-postgres/player-to-sbaplayer-matching/new_sbaplayers_to_insert.csv create mode 100644 .claude/sqlite-to-postgres/player-to-sbaplayer-matching/player_sbaplayer_assignments.csv create mode 100644 .claude/sqlite-to-postgres/player-to-sbaplayer-matching/player_sbaplayer_updates.sql create mode 100644 .claude/sqlite-to-postgres/player-to-sbaplayer-matching/post_new_sbaplayers.py create mode 100644 .claude/sqlite-to-postgres/player-to-sbaplayer-matching/process_manual_decisions.py create mode 100644 .claude/sqlite-to-postgres/player-to-sbaplayer-matching/validation_query.sql create mode 100644 .claude/sqlite-to-postgres/player-to-sbaplayer-matching/verify_updates.sql rename quick_data_comparison.py => .claude/sqlite-to-postgres/quick_data_comparison.py (100%) rename reset_postgres.py => .claude/sqlite-to-postgres/reset_postgres.py (100%) rename run_optimization.py => .claude/sqlite-to-postgres/run_optimization.py (100%) create mode 100644 .claude/sqlite-to-postgres/season_batting_stats_view.sql rename test_migration_workflow.sh => .claude/sqlite-to-postgres/test_migration_workflow.sh (100%) rename test_postgres.py => .claude/sqlite-to-postgres/test_postgres.py (100%) rename test_requirements.txt => .claude/sqlite-to-postgres/test_requirements.txt (100%) rename validate_migration.py => .claude/sqlite-to-postgres/validate_migration.py (100%) diff --git a/.claude/plans/season_batting_stats_trigger_migration.md b/.claude/plans/season_batting_stats_trigger_migration.md new file mode 100644 index 0000000..05d2766 --- /dev/null +++ b/.claude/plans/season_batting_stats_trigger_migration.md @@ -0,0 +1,192 @@ +# Season Batting Stats Trigger Migration Plan + +## Overview +Convert the existing `season_batting_stats_view` materialized view to a trigger-based table for incremental updates when games are completed. + +## Current State +- Materialized view defined in `season_batting_stats_view.sql` +- Requires full refresh for all data updates +- Used by `/api/v3/views/season-batting` endpoint in `app/routers_v3/views.py` + +## Target State +- Regular table with same structure and data +- Trigger automatically updates only affected players when games complete +- Same query performance, much faster updates (~30 players vs entire dataset) + +## Pre-Migration Checklist + +### 1. Backup Current Data +```sql +-- Export current materialized view data +CREATE TABLE season_batting_stats_backup AS +SELECT * FROM season_batting_stats_view; +``` + +### 2. Verify Dependencies +- [x] Confirm `app/routers_v3/views.py` uses `SeasonBattingStatsView` model +- [x] Check if any other code references the materialized view +- [ ] Verify `stratgame` table has `is_complete` column or similar completion flag + +### 3. Environment Setup +- [ ] Test database connection in Adminer +- [ ] Verify PostgreSQL version supports required trigger syntax +- [ ] Ensure adequate storage space for table conversion + +## Migration Steps + +### Step 1: Database Schema Migration +**Location:** Run in Adminer with "Stop on error" ✅ checked + +```sql +-- Execute the full conversion SQL from season_batting_stats_view.sql +-- This includes: +-- 1. DROP MATERIALIZED VIEW season_batting_stats_view CASCADE +-- 2. CREATE TABLE season_batting_stats_view AS (original query) +-- 3. ADD PRIMARY KEY CONSTRAINT (player_id, season) +-- 4. CREATE indexes for performance +-- 5. CREATE trigger function update_season_batting_stats_for_game() +-- 6. CREATE trigger on stratgame completion +``` + +### Step 2: Verify Migration Success +```sql +-- Check table structure matches original +\d season_batting_stats_view + +-- Verify data integrity +SELECT COUNT(*) FROM season_batting_stats_view; +SELECT COUNT(*) FROM season_batting_stats_backup; + +-- Test sample queries +SELECT * FROM season_batting_stats_view WHERE season = 12 LIMIT 5; +``` + +### Step 3: Test Trigger Functionality +```sql +-- Test trigger by marking a game complete (if safe to do so) +-- OR create a test scenario with sample data +``` + +### Step 4: Application Testing +- [ ] Restart FastAPI application +- [ ] Test `/api/v3/views/season-batting?season=12` endpoint +- [ ] Verify query performance is maintained +- [ ] Confirm data consistency with previous results + +## Game Completion Integration + +### Required: Game Completion Flag +The trigger depends on a game completion mechanism. Verify one of these exists: + +**Option A: Existing column** +```sql +-- Check if stratgame has completion tracking +SELECT column_name, data_type +FROM information_schema.columns +WHERE table_name = 'stratgame' + AND column_name IN ('is_complete', 'completed', 'status', 'final'); +``` + +**Option B: Alternative completion logic** +If no completion flag exists, the trigger can be modified to fire on: +- Game result updates +- Final play insertion +- Manual API call + +### Integration Points +- `app/routers_v3/games.py` - Game completion endpoints +- `app/routers_v3/stratplay.py` - Play insertion logic +- Discord bot game processing workflows + +## Rollback Plan + +### If Migration Fails +```sql +-- Restore original materialized view +CREATE MATERIALIZED VIEW season_batting_stats_view AS +-- (original query from season_batting_stats_view.sql) + +-- Restore original indexes +CREATE INDEX idx_season_batting_stats_season ON season_batting_stats_view (season); +CREATE INDEX idx_season_batting_stats_team ON season_batting_stats_view (season, player_team_id); +CREATE INDEX idx_season_batting_stats_player ON season_batting_stats_view (player_id); + +-- Clean up failed table if needed +DROP TABLE IF EXISTS season_batting_stats_view; +``` + +### If Performance Issues Arise +- Monitor query execution plans +- Add additional indexes if needed +- Consider reverting to materialized view if trigger overhead is too high + +## Success Criteria + +### Functional Requirements +- [x] All existing queries return same results +- [ ] Trigger updates only affected players when games complete +- [ ] Query performance matches or exceeds materialized view +- [ ] FastAPI endpoints work without modification + +### Performance Targets +- **Query time**: ≤ current materialized view performance +- **Update time**: < 5 seconds for typical game (30 players) +- **Storage overhead**: Minimal (same data structure) + +### Monitoring +- Log trigger execution times +- Monitor database performance during game completions +- Track any query plan changes + +## Post-Migration Tasks + +### 1. Cleanup +```sql +-- Remove backup table after successful migration (1+ weeks) +DROP TABLE season_batting_stats_backup; +``` + +### 2. Documentation Updates +- Update `database/CLAUDE.md` to document new trigger system +- Document game completion integration requirements +- Update API documentation if needed + +### 3. Consider Similar Views +Evaluate other materialized views for similar conversion: +- Season pitching stats +- Season fielding stats +- Career statistics views + +## Risk Assessment + +### High Risk +- **Data loss**: Mitigated by backup table creation +- **Query performance degradation**: Mitigated by same index structure +- **Trigger bugs**: Mitigated by comprehensive testing + +### Medium Risk +- **Application downtime**: Plan migration during low-usage period +- **Complex rollback**: Keep original SQL and backup data + +### Low Risk +- **Storage increase**: Minimal, same data structure +- **Maintenance overhead**: Triggers are largely self-managing + +## Timeline + +### Preparation Phase (1-2 days) +- [ ] Complete pre-migration checklist +- [ ] Set up backup procedures +- [ ] Identify game completion mechanism + +### Migration Phase (2-4 hours) +- [ ] Execute database migration +- [ ] Verify data integrity +- [ ] Test application functionality + +### Validation Phase (1 week) +- [ ] Monitor trigger performance +- [ ] Validate game completion updates +- [ ] Clean up backup data + +**Total Estimated Time**: 3-4 days including testing and monitoring \ No newline at end of file diff --git a/COMPREHENSIVE_API_TEST_COVERAGE.md b/.claude/sqlite-to-postgres/COMPREHENSIVE_API_TEST_COVERAGE.md similarity index 100% rename from COMPREHENSIVE_API_TEST_COVERAGE.md rename to .claude/sqlite-to-postgres/COMPREHENSIVE_API_TEST_COVERAGE.md diff --git a/CUSTOM_COMMANDS_MIGRATION.md b/.claude/sqlite-to-postgres/CUSTOM_COMMANDS_MIGRATION.md similarity index 100% rename from CUSTOM_COMMANDS_MIGRATION.md rename to .claude/sqlite-to-postgres/CUSTOM_COMMANDS_MIGRATION.md diff --git a/DATA_SANITIZATION_TEMPLATE.md b/.claude/sqlite-to-postgres/DATA_SANITIZATION_TEMPLATE.md similarity index 100% rename from DATA_SANITIZATION_TEMPLATE.md rename to .claude/sqlite-to-postgres/DATA_SANITIZATION_TEMPLATE.md diff --git a/MIGRATION_METHODOLOGY.md b/.claude/sqlite-to-postgres/MIGRATION_METHODOLOGY.md similarity index 100% rename from MIGRATION_METHODOLOGY.md rename to .claude/sqlite-to-postgres/MIGRATION_METHODOLOGY.md diff --git a/MIGRATION_QUICK_REFERENCE.md b/.claude/sqlite-to-postgres/MIGRATION_QUICK_REFERENCE.md similarity index 100% rename from MIGRATION_QUICK_REFERENCE.md rename to .claude/sqlite-to-postgres/MIGRATION_QUICK_REFERENCE.md diff --git a/POSTGRESQL_MIGRATION_DATA_INTEGRITY_ISSUE.md b/.claude/sqlite-to-postgres/POSTGRESQL_MIGRATION_DATA_INTEGRITY_ISSUE.md similarity index 100% rename from POSTGRESQL_MIGRATION_DATA_INTEGRITY_ISSUE.md rename to .claude/sqlite-to-postgres/POSTGRESQL_MIGRATION_DATA_INTEGRITY_ISSUE.md diff --git a/POSTGRESQL_OPTIMIZATIONS.md b/.claude/sqlite-to-postgres/POSTGRESQL_OPTIMIZATIONS.md similarity index 100% rename from POSTGRESQL_OPTIMIZATIONS.md rename to .claude/sqlite-to-postgres/POSTGRESQL_OPTIMIZATIONS.md diff --git a/PRODUCTION_MIGRATION_CHECKLIST.md b/.claude/sqlite-to-postgres/PRODUCTION_MIGRATION_CHECKLIST.md similarity index 100% rename from PRODUCTION_MIGRATION_CHECKLIST.md rename to .claude/sqlite-to-postgres/PRODUCTION_MIGRATION_CHECKLIST.md diff --git a/api_data_integrity_tests.py b/.claude/sqlite-to-postgres/api_data_integrity_tests.py similarity index 100% rename from api_data_integrity_tests.py rename to .claude/sqlite-to-postgres/api_data_integrity_tests.py diff --git a/.claude/sqlite-to-postgres/botched-sbaplayer-matching/CSV_REVIEW_INSTRUCTIONS.txt b/.claude/sqlite-to-postgres/botched-sbaplayer-matching/CSV_REVIEW_INSTRUCTIONS.txt new file mode 100644 index 0000000..3181fae --- /dev/null +++ b/.claude/sqlite-to-postgres/botched-sbaplayer-matching/CSV_REVIEW_INSTRUCTIONS.txt @@ -0,0 +1,49 @@ + +# CSV REVIEW INSTRUCTIONS + +## File 1: unmatched_players_for_review_updated.csv + +**Resolution Column Values:** +- `ACCEPT` - Use the suggested_sbaplayer_id (pre-filled for exact matches) +- `USE_SBA_123` - Use specific SbaPlayer ID 123 instead of suggestion +- `CREATE_NEW` - Create new SbaPlayer record for this player +- `SKIP` - Skip this player for now (won't be processed) +- `REVIEW` - Needs manual review (pre-filled for partial matches) + +**Pre-filled Values:** +- Exact name matches are pre-filled as `ACCEPT` +- Partial matches are marked as `REVIEW` +- No suggestions are marked as `CREATE_NEW` + +## File 2: high_risk_player_matches_updated.csv + +**Resolution Column Values:** +- `MERGE_123_INTO_456` - Merge SbaPlayer 123 into SbaPlayer 456 +- `DIFFERENT_PEOPLE` - These are actually different people, keep separate +- `USE_SBA_123` - For player matches, use this specific SbaPlayer ID +- `CREATE_NEW` - Create new SbaPlayer record +- `SKIP` - Skip this for now + +**Pre-filled Logic for SbaPlayer Conflicts:** +- Different bbref_ids = `DIFFERENT_PEOPLE` (bbref_ids are globally unique) +- Same bbref_id = `MERGE` (definitely duplicates) +- One has bbref_id, one doesn't = `MERGE` suggestion (review needed) +- Neither has bbref_id + identical names = `MERGE` suggestion +- Player ambiguous matches pre-select the first suggested SbaPlayer +- Middle initial conflicts are marked as `DIFFERENT_PEOPLE` + +## Important Notes: +- **bbref_ids are globally unique** - trust them completely +- If two SbaPlayers have different bbref_ids, they are different people +- If one has bbref_id and one doesn't, they might be the same person + +## Next Steps: +1. Review and edit the resolution columns in both files +2. Save the files when done +3. Let Claude know you're ready to process the changes + +## Common Patterns: +- bbref_id mismatches (like "HALP") should usually be `CREATE_NEW` +- Different bbref_ids = always different people +- Common names like "Carlos Martinez" need careful review +- Middle initials usually indicate different people diff --git a/.claude/sqlite-to-postgres/botched-sbaplayer-matching/analyze_player_data.py b/.claude/sqlite-to-postgres/botched-sbaplayer-matching/analyze_player_data.py new file mode 100644 index 0000000..2629bf9 --- /dev/null +++ b/.claude/sqlite-to-postgres/botched-sbaplayer-matching/analyze_player_data.py @@ -0,0 +1,252 @@ +#!/usr/bin/env python3 +""" +Script to analyze player data for sbaplayer matching strategy +Uses hierarchical matching: bbref_id (Player) -> key_bbref (SbaPlayer) -> name fallback +""" +import requests +import json +import logging +import os +from dataclasses import dataclass, asdict +from typing import Dict, List, Set, Optional +from collections import defaultdict + +# Set up logging +logging.basicConfig( + level=logging.INFO, + format='%(asctime)s - %(name)s - %(levelname)s - %(message)s', + handlers=[ + logging.FileHandler('/tmp/player_analysis.log'), + logging.StreamHandler() + ] +) +logger = logging.getLogger('PlayerAnalysis') + +@dataclass +class PlayerRecord: + id: int + name: str + season: int + bbref_id: Optional[str] = None + sbaplayer_id: Optional[int] = None + +@dataclass +class SbaPlayerRecord: + id: int + first_name: str + last_name: str + key_bbref: Optional[str] = None + key_fangraphs: Optional[int] = None + key_mlbam: Optional[int] = None + key_retro: Optional[str] = None + +def fetch_players_for_season(season: int, use_cache: bool = True) -> List[PlayerRecord]: + """Fetch all players for a given season, with caching""" + cache_file = f"/tmp/players_season_{season}.json" + + # Try to load from cache first + if use_cache and os.path.exists(cache_file): + try: + with open(cache_file, 'r') as f: + cached_data = json.load(f) + + players = [] + for player_data in cached_data: + player = PlayerRecord(**player_data) + players.append(player) + + logger.info(f"Season {season}: {len(players)} players loaded from cache") + return players + except Exception as e: + logger.warning(f"Failed to load cache for season {season}: {e}") + + # Fetch from API + try: + url = f"https://api.sba.manticorum.com/players?season={season}" + response = requests.get(url, timeout=30) + response.raise_for_status() + data = response.json() + + players = [] + for player_data in data.get('players', []): + player = PlayerRecord( + id=player_data['id'], + name=player_data['name'], + season=season, + bbref_id=player_data.get('bbref_id') if player_data.get('bbref_id') else None, + sbaplayer_id=player_data.get('sbaplayer_id') + ) + players.append(player) + + # Save to cache + try: + with open(cache_file, 'w') as f: + json.dump([asdict(p) for p in players], f, indent=2) + logger.info(f"Season {season}: {len(players)} players fetched and cached") + except Exception as e: + logger.warning(f"Failed to cache season {season} data: {e}") + + return players + + except Exception as e: + logger.error(f"Error fetching season {season}: {e}") + return [] + +def fetch_sbaplayers(use_cache: bool = True) -> List[SbaPlayerRecord]: + """Fetch all SBA players, with caching""" + cache_file = "/tmp/sbaplayers.json" + + # Try to load from cache first + if use_cache and os.path.exists(cache_file): + try: + with open(cache_file, 'r') as f: + cached_data = json.load(f) + + sbaplayers = [] + for sba_data in cached_data: + sbaplayer = SbaPlayerRecord(**sba_data) + sbaplayers.append(sbaplayer) + + logger.info(f"SbaPlayers: {len(sbaplayers)} records loaded from cache") + return sbaplayers + except Exception as e: + logger.warning(f"Failed to load sbaplayers cache: {e}") + + # Fetch from API + try: + url = "https://api.sba.manticorum.com/sbaplayers" + response = requests.get(url, timeout=30) + response.raise_for_status() + data = response.json() + + sbaplayers = [] + for sba_data in data.get('players', []): + sbaplayer = SbaPlayerRecord( + id=sba_data['id'], + first_name=sba_data['first_name'], + last_name=sba_data['last_name'], + key_bbref=sba_data.get('key_bbref') if sba_data.get('key_bbref') else None, + key_fangraphs=sba_data.get('key_fangraphs'), + key_mlbam=sba_data.get('key_mlbam'), + key_retro=sba_data.get('key_retro') if sba_data.get('key_retro') else None + ) + sbaplayers.append(sbaplayer) + + # Save to cache + try: + with open(cache_file, 'w') as f: + json.dump([asdict(s) for s in sbaplayers], f, indent=2) + logger.info(f"SbaPlayers: {len(sbaplayers)} records fetched and cached") + except Exception as e: + logger.warning(f"Failed to cache sbaplayers data: {e}") + + return sbaplayers + + except Exception as e: + logger.error(f"Error fetching sbaplayers: {e}") + return [] + +def analyze_matching_potential(): + """Analyze potential matches between players and sbaplayers""" + + # Fetch all data + logger.info("Fetching SbaPlayer records...") + sbaplayers = fetch_sbaplayers() + + logger.info("Fetching Player records from all seasons...") + all_players: List[PlayerRecord] = [] + for season in range(1, 13): + players = fetch_players_for_season(season) + all_players.extend(players) + + logger.info(f"Total player-season records: {len(all_players)}") + + # Create lookup maps + sbaplayer_by_bbref = {} + sbaplayer_by_name = {} + + for sba in sbaplayers: + if sba.key_bbref: + sbaplayer_by_bbref[sba.key_bbref] = sba + full_name = f"{sba.first_name} {sba.last_name}" + sbaplayer_by_name[full_name] = sba + + logger.info(f"SbaPlayers with key_bbref: {len(sbaplayer_by_bbref)}") + logger.info(f"Total unique SbaPlayers: {len(sbaplayers)}") + + # Analysis of Player records + players_with_bbref = [p for p in all_players if p.bbref_id] + players_without_bbref = [p for p in all_players if not p.bbref_id] + + logger.info(f"Player records with bbref_id: {len(players_with_bbref)} ({len(players_with_bbref)/len(all_players)*100:.1f}%)") + logger.info(f"Player records without bbref_id: {len(players_without_bbref)} ({len(players_without_bbref)/len(all_players)*100:.1f}%)") + + # Try matching by bbref_id + bbref_matches = 0 + bbref_no_matches = 0 + + for player in players_with_bbref: + if player.bbref_id in sbaplayer_by_bbref: + bbref_matches += 1 + else: + bbref_no_matches += 1 + + logger.info(f"Player records that can match by bbref_id: {bbref_matches}") + logger.info(f"Player records with bbref_id but no SbaPlayer match: {bbref_no_matches}") + + # Group remaining players by unique identifiers + unique_bbref_players = defaultdict(list) # players grouped by bbref_id + unique_name_players = defaultdict(list) # players without bbref_id, grouped by name + + for player in all_players: + if player.bbref_id: + unique_bbref_players[player.bbref_id].append(player) + else: + unique_name_players[player.name].append(player) + + logger.info(f"Unique players identifiable by bbref_id: {len(unique_bbref_players)}") + logger.info(f"Unique players identifiable by name only: {len(unique_name_players)}") + + # Show some examples + logger.info("\nExample bbref_id matches:") + count = 0 + for bbref_id, players in unique_bbref_players.items(): + if bbref_id in sbaplayer_by_bbref and count < 5: + seasons = sorted([p.season for p in players]) + sba = sbaplayer_by_bbref[bbref_id] + logger.info(f" {bbref_id}: {players[0].name} -> {sba.first_name} {sba.last_name} (seasons {seasons})") + count += 1 + + logger.info("\nExample name-only players (need new SbaPlayer records):") + count = 0 + for name, players in unique_name_players.items(): + if count < 5: + seasons = sorted([p.season for p in players]) + logger.info(f" {name} (seasons {seasons})") + count += 1 + + # Summary statistics + total_unique_players = len(unique_bbref_players) + len(unique_name_players) + matchable_by_bbref = sum(1 for bbref in unique_bbref_players.keys() if bbref in sbaplayer_by_bbref) + need_new_sbaplayers = len(unique_bbref_players) - matchable_by_bbref + len(unique_name_players) + + logger.info(f"\n=== SUMMARY ===") + logger.info(f"Total unique players across all seasons: {total_unique_players}") + logger.info(f"Can match to existing SbaPlayers by bbref_id: {matchable_by_bbref}") + logger.info(f"Need new SbaPlayer records: {need_new_sbaplayers}") + logger.info(f"Total player-season records to update: {len(all_players)}") + + return { + 'total_player_records': len(all_players), + 'total_unique_players': total_unique_players, + 'matchable_by_bbref': matchable_by_bbref, + 'need_new_sbaplayers': need_new_sbaplayers, + 'unique_bbref_players': dict(unique_bbref_players), + 'unique_name_players': dict(unique_name_players), + 'sbaplayer_lookup': sbaplayer_by_bbref + } + +if __name__ == "__main__": + logger.info("Starting player matching analysis...") + results = analyze_matching_potential() + logger.info("Analysis complete!") \ No newline at end of file diff --git a/.claude/sqlite-to-postgres/botched-sbaplayer-matching/complete_assignment_summary.txt b/.claude/sqlite-to-postgres/botched-sbaplayer-matching/complete_assignment_summary.txt new file mode 100644 index 0000000..9f4e59a --- /dev/null +++ b/.claude/sqlite-to-postgres/botched-sbaplayer-matching/complete_assignment_summary.txt @@ -0,0 +1,14 @@ +COMPLETE PLAYER ASSIGNMENT SUMMARY +================================================== + +ASSIGNMENT BREAKDOWN: + manual_decision: 120 players + automatic_bbref_match: 6,764 players + new_sbaplayer: 5,348 players + +TOTAL ASSIGNMENTS: 12,232 +NEW SBAPLAYERS TO CREATE: 1,323 + +FILES GENERATED: +1. new_sbaplayers_to_insert_complete.csv - New SbaPlayer records +2. player_sbaplayer_assignments_complete.csv - ALL player assignments diff --git a/.claude/sqlite-to-postgres/botched-sbaplayer-matching/find_high_risk_matches.py b/.claude/sqlite-to-postgres/botched-sbaplayer-matching/find_high_risk_matches.py new file mode 100644 index 0000000..96fd681 --- /dev/null +++ b/.claude/sqlite-to-postgres/botched-sbaplayer-matching/find_high_risk_matches.py @@ -0,0 +1,440 @@ +#!/usr/bin/env python3 +""" +Find high-risk player name matches that could lead to incorrect linking +Identifies cases like "Mike Trout" vs "Michael Trout" or "Luis V Garcia" vs "Luis H Garcia" +""" +import json +import csv +import logging +from dataclasses import dataclass +from typing import Dict, List, Set, Optional, Tuple +from collections import defaultdict +import difflib + +# Set up logging +logging.basicConfig( + level=logging.INFO, + format='%(asctime)s - %(name)s - %(levelname)s - %(message)s', + handlers=[ + logging.FileHandler('/tmp/high_risk_matches.log'), + logging.StreamHandler() + ] +) +logger = logging.getLogger('HighRiskMatches') + +@dataclass +class PlayerRecord: + id: int + name: str + season: int + bbref_id: Optional[str] = None + sbaplayer_id: Optional[int] = None + +@dataclass +class SbaPlayerRecord: + id: int + first_name: str + last_name: str + key_bbref: Optional[str] = None + key_fangraphs: Optional[int] = None + key_mlbam: Optional[int] = None + key_retro: Optional[str] = None + +def normalize_name(name: str) -> str: + """Normalize a name for comparison (remove punctuation, lowercase, etc.)""" + import re + # Remove periods, apostrophes, hyphens + normalized = re.sub(r"['\.\-]", "", name.lower()) + # Replace multiple spaces with single space + normalized = re.sub(r'\s+', ' ', normalized) + # Strip whitespace + normalized = normalized.strip() + return normalized + +def get_name_variants(name: str) -> Set[str]: + """Generate common variants of a name""" + variants = set() + normalized = normalize_name(name) + variants.add(normalized) + + # Split into parts + parts = normalized.split() + if len(parts) >= 2: + first_part = parts[0] + remaining = ' '.join(parts[1:]) + + # Common nickname patterns + nickname_map = { + 'michael': ['mike', 'micky', 'mickey'], + 'mike': ['michael'], + 'william': ['will', 'bill', 'billy'], + 'will': ['william'], + 'bill': ['william'], + 'robert': ['rob', 'bob', 'bobby'], + 'rob': ['robert'], + 'bob': ['robert'], + 'james': ['jim', 'jimmy'], + 'jim': ['james'], + 'thomas': ['tom', 'tommy'], + 'tom': ['thomas'], + 'joseph': ['joe', 'joey'], + 'joe': ['joseph'], + 'christopher': ['chris'], + 'chris': ['christopher'], + 'anthony': ['tony'], + 'tony': ['anthony'], + 'andrew': ['andy', 'drew'], + 'andy': ['andrew'], + 'drew': ['andrew'], + 'jonathan': ['jon'], + 'jon': ['jonathan'], + 'matthew': ['matt'], + 'matt': ['matthew'], + 'nicholas': ['nick'], + 'nick': ['nicholas'], + 'alexander': ['alex'], + 'alex': ['alexander'], + 'benjamin': ['ben'], + 'ben': ['benjamin'], + 'samuel': ['sam'], + 'sam': ['samuel'], + 'daniel': ['dan', 'danny'], + 'dan': ['daniel'], + 'danny': ['daniel'], + 'david': ['dave'], + 'dave': ['david'], + 'edward': ['ed', 'eddie'], + 'ed': ['edward'], + 'eddie': ['edward'] + } + + # Add nickname variants + if first_part in nickname_map: + for nickname in nickname_map[first_part]: + variants.add(f"{nickname} {remaining}") + + # Handle middle initial variations (e.g., "Luis V Garcia" vs "Luis H Garcia") + if len(parts) == 3 and len(parts[1]) == 1: + # Middle initial pattern + first_name = parts[0] + last_name = parts[2] + # Add version without middle initial + variants.add(f"{first_name} {last_name}") + # Add pattern to catch other middle initials + variants.add(f"{first_name} _ {last_name}") + + return variants + +def calculate_name_similarity(name1: str, name2: str) -> float: + """Calculate similarity between two names using difflib""" + norm1 = normalize_name(name1) + norm2 = normalize_name(name2) + return difflib.SequenceMatcher(None, norm1, norm2).ratio() + +def load_cached_data(): + """Load all cached data""" + + # Load SbaPlayers + logger.info("Loading cached SbaPlayer data...") + with open('/tmp/sbaplayers.json', 'r') as f: + sbaplayer_data = json.load(f) + + sbaplayers = [] + for data in sbaplayer_data: + sbaplayers.append(SbaPlayerRecord(**data)) + + # Load all player seasons + logger.info("Loading cached player data...") + all_players = [] + + for season in range(1, 13): + cache_file = f"/tmp/players_season_{season}.json" + try: + with open(cache_file, 'r') as f: + season_data = json.load(f) + + for data in season_data: + all_players.append(PlayerRecord(**data)) + + except FileNotFoundError: + logger.error(f"Cache file for season {season} not found.") + return None, None + + return all_players, sbaplayers + +def find_high_risk_matches(): + """Find potentially problematic name matches""" + + all_players, sbaplayers = load_cached_data() + if not all_players or not sbaplayers: + logger.error("Failed to load cached data.") + return + + logger.info(f"Analyzing {len(all_players)} player records and {len(sbaplayers)} SbaPlayers") + + # Create name maps + sbaplayer_names = {} # normalized name -> SbaPlayerRecord + player_names = defaultdict(list) # normalized name -> list of PlayerRecords + + for sba in sbaplayers: + full_name = f"{sba.first_name} {sba.last_name}" + normalized = normalize_name(full_name) + sbaplayer_names[normalized] = sba + + # Group unique players by name (using most recent season as representative) + unique_players = {} + players_by_bbref = defaultdict(list) + players_without_bbref = defaultdict(list) + + for player in all_players: + if player.bbref_id: + players_by_bbref[player.bbref_id].append(player) + else: + players_without_bbref[player.name].append(player) + + # Get representative players + for bbref_id, players in players_by_bbref.items(): + representative = max(players, key=lambda p: p.season) + unique_players[representative.name] = representative + + for name, players in players_without_bbref.items(): + representative = max(players, key=lambda p: p.season) + unique_players[name] = representative + + logger.info(f"Found {len(unique_players)} unique players") + + # Find high-risk matches + high_risk_matches = [] + + # 1. Multiple SbaPlayers with very similar names + sba_name_groups = defaultdict(list) + for sba in sbaplayers: + full_name = f"{sba.first_name} {sba.last_name}" + # Group by last name + first initial for initial clustering + key = f"{sba.last_name.lower()} {sba.first_name[0].lower()}" + sba_name_groups[key].append((sba, full_name)) + + logger.info("Finding similar SbaPlayer names...") + sba_conflicts = [] + for key, sba_list in sba_name_groups.items(): + if len(sba_list) > 1: + # Check if any are very similar + for i, (sba1, name1) in enumerate(sba_list): + for j, (sba2, name2) in enumerate(sba_list[i+1:], i+1): + similarity = calculate_name_similarity(name1, name2) + if similarity > 0.8: # Very similar names + sba_conflicts.append({ + 'type': 'sbaplayer_conflict', + 'sba1_id': sba1.id, + 'sba1_name': name1, + 'sba1_bbref': sba1.key_bbref, + 'sba2_id': sba2.id, + 'sba2_name': name2, + 'sba2_bbref': sba2.key_bbref, + 'similarity': similarity, + 'risk_reason': f'Very similar SbaPlayer names (similarity: {similarity:.3f})' + }) + + logger.info(f"Found {len(sba_conflicts)} SbaPlayer name conflicts") + + # 2. Players that could match multiple SbaPlayers + logger.info("Finding players with ambiguous SbaPlayer matches...") + player_conflicts = [] + + for player_name, player in unique_players.items(): + # Skip players with bbref_id (they have definitive matching) + if player.bbref_id: + continue + + normalized_player = normalize_name(player_name) + potential_matches = [] + + # Find all potential SbaPlayer matches + for sba in sbaplayers: + sba_name = f"{sba.first_name} {sba.last_name}" + similarity = calculate_name_similarity(player_name, sba_name) + + if similarity > 0.7: # Potential match threshold + potential_matches.append((sba, sba_name, similarity)) + + # If multiple potential matches, this is high risk + if len(potential_matches) > 1: + # Sort by similarity + potential_matches.sort(key=lambda x: x[2], reverse=True) + + player_conflicts.append({ + 'type': 'player_ambiguous_match', + 'player_id': player.id, + 'player_name': player_name, + 'player_seasons': [player.season], # We only have representative + 'potential_matches': [ + { + 'sba_id': sba.id, + 'sba_name': sba_name, + 'sba_bbref': sba.key_bbref, + 'similarity': sim + } + for sba, sba_name, sim in potential_matches[:5] # Top 5 matches + ], + 'risk_reason': f'Player could match {len(potential_matches)} different SbaPlayers' + }) + + logger.info(f"Found {len(player_conflicts)} players with ambiguous matches") + + # 3. Middle initial conflicts (Luis V Garcia vs Luis H Garcia type issues) + logger.info("Finding middle initial conflicts...") + middle_initial_conflicts = [] + + # Group players by "FirstName LastName" pattern (ignoring middle initial) + name_groups = defaultdict(list) + for player_name, player in unique_players.items(): + if player.bbref_id: + continue + + parts = player_name.split() + if len(parts) == 3 and len(parts[1]) == 1: + # Has middle initial pattern + key = f"{parts[0]} {parts[2]}".lower() + name_groups[key].append((player, player_name)) + elif len(parts) == 2: + # No middle initial + key = f"{parts[0]} {parts[1]}".lower() + name_groups[key].append((player, player_name)) + + for key, player_list in name_groups.items(): + if len(player_list) > 1: + # Multiple players with same first/last but different middles + middle_initial_conflicts.append({ + 'type': 'middle_initial_conflict', + 'base_name': key.title(), + 'players': [ + { + 'player_id': player.id, + 'player_name': name, + 'seasons': [player.season], + 'bbref_id': player.bbref_id + } + for player, name in player_list + ], + 'risk_reason': f'{len(player_list)} players with similar first/last names but different middle initials' + }) + + logger.info(f"Found {len(middle_initial_conflicts)} middle initial conflicts") + + return sba_conflicts, player_conflicts, middle_initial_conflicts + +def generate_high_risk_csv(sba_conflicts, player_conflicts, middle_initial_conflicts): + """Generate CSV file with all high-risk matches""" + + output_file = '/mnt/NV2/Development/major-domo/database/high_risk_player_matches.csv' + + with open(output_file, 'w', newline='') as csvfile: + writer = csv.writer(csvfile) + + # Header + writer.writerow([ + 'risk_type', 'risk_reason', 'player_id', 'player_name', 'player_seasons', + 'sba1_id', 'sba1_name', 'sba1_bbref', 'sba2_id', 'sba2_name', 'sba2_bbref', + 'similarity_score', 'action_needed' + ]) + + # SbaPlayer conflicts + for conflict in sba_conflicts: + writer.writerow([ + conflict['type'], + conflict['risk_reason'], + '', # No player_id for SbaPlayer conflicts + '', # No player_name + '', # No seasons + conflict['sba1_id'], + conflict['sba1_name'], + conflict['sba1_bbref'] or '', + conflict['sba2_id'], + conflict['sba2_name'], + conflict['sba2_bbref'] or '', + f"{conflict['similarity']:.3f}", + 'Verify these are different people, not duplicates' + ]) + + # Player ambiguous matches + for conflict in player_conflicts: + # Show top 2 potential matches + matches = conflict['potential_matches'][:2] + if len(matches) >= 2: + writer.writerow([ + conflict['type'], + conflict['risk_reason'], + conflict['player_id'], + conflict['player_name'], + ','.join(map(str, conflict['player_seasons'])), + matches[0]['sba_id'], + matches[0]['sba_name'], + matches[0]['sba_bbref'] or '', + matches[1]['sba_id'] if len(matches) > 1 else '', + matches[1]['sba_name'] if len(matches) > 1 else '', + matches[1]['sba_bbref'] if len(matches) > 1 else '', + f"{matches[0]['similarity']:.3f}", + f'Choose correct match from {len(conflict["potential_matches"])} options' + ]) + + # Middle initial conflicts + for conflict in middle_initial_conflicts: + players = conflict['players'] + if len(players) >= 2: + writer.writerow([ + conflict['type'], + conflict['risk_reason'], + players[0]['player_id'], + players[0]['player_name'], + ','.join(map(str, players[0]['seasons'])), + '', # No SbaPlayer info yet + '', + '', + players[1]['player_id'] if len(players) > 1 else '', + players[1]['player_name'] if len(players) > 1 else '', + '', + 'N/A', + f'Verify these are different people: {", ".join([p["player_name"] for p in players])}' + ]) + + logger.info(f"Generated high-risk matches CSV: {output_file}") + + # Generate summary + summary_file = '/mnt/NV2/Development/major-domo/database/high_risk_matches_summary.txt' + with open(summary_file, 'w') as f: + f.write("HIGH-RISK PLAYER MATCHES SUMMARY\n") + f.write("=" * 50 + "\n\n") + f.write(f"SbaPlayer name conflicts: {len(sba_conflicts)}\n") + f.write(f"Players with ambiguous matches: {len(player_conflicts)}\n") + f.write(f"Middle initial conflicts: {len(middle_initial_conflicts)}\n") + f.write(f"Total high-risk situations: {len(sba_conflicts) + len(player_conflicts) + len(middle_initial_conflicts)}\n\n") + + f.write("RISK TYPES:\n") + f.write("1. sbaplayer_conflict: Multiple SbaPlayers with very similar names\n") + f.write("2. player_ambiguous_match: Player could match multiple SbaPlayers\n") + f.write("3. middle_initial_conflict: Players with same first/last but different middle initials\n\n") + + f.write("ACTION REQUIRED:\n") + f.write("Review the CSV file to ensure correct matching and avoid linking wrong players.\n") + + logger.info(f"Generated summary: {summary_file}") + + return output_file, summary_file + +def main(): + """Main execution""" + logger.info("Starting high-risk match analysis...") + + sba_conflicts, player_conflicts, middle_initial_conflicts = find_high_risk_matches() + + csv_file, summary_file = generate_high_risk_csv(sba_conflicts, player_conflicts, middle_initial_conflicts) + + logger.info(f"\n=== HIGH-RISK ANALYSIS COMPLETE ===") + logger.info(f"CSV file: {csv_file}") + logger.info(f"Summary: {summary_file}") + + total_risks = len(sba_conflicts) + len(player_conflicts) + len(middle_initial_conflicts) + logger.info(f"Total high-risk situations found: {total_risks}") + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/.claude/sqlite-to-postgres/botched-sbaplayer-matching/generate_complete_assignments.py b/.claude/sqlite-to-postgres/botched-sbaplayer-matching/generate_complete_assignments.py new file mode 100644 index 0000000..aa910f6 --- /dev/null +++ b/.claude/sqlite-to-postgres/botched-sbaplayer-matching/generate_complete_assignments.py @@ -0,0 +1,325 @@ +#!/usr/bin/env python3 +""" +Generate complete player assignments for ALL players: +1. Automatic bbref_id matches +2. Manual review decisions +3. Create new SbaPlayers for remaining unmatched players +""" +import csv +import json +import logging +from dataclasses import dataclass +from typing import Dict, List, Set, Optional +from collections import defaultdict + +logging.basicConfig(level=logging.INFO) +logger = logging.getLogger('CompleteAssignments') + +@dataclass +class PlayerRecord: + id: int + name: str + season: int + bbref_id: Optional[str] = None + sbaplayer_id: Optional[int] = None + +@dataclass +class SbaPlayerRecord: + id: int + first_name: str + last_name: str + key_bbref: Optional[str] = None + key_fangraphs: Optional[int] = None + key_mlbam: Optional[int] = None + key_retro: Optional[str] = None + +@dataclass +class NewSbaPlayer: + first_name: str + last_name: str + key_bbref: Optional[str] = None + temp_id: int = 0 + +def load_cached_data(): + """Load cached player and sbaplayer data""" + logger.info("Loading cached data...") + + # Load SbaPlayers + with open('/tmp/sbaplayers.json', 'r') as f: + sbaplayer_data = json.load(f) + + sbaplayers = [] + for data in sbaplayer_data: + sbaplayers.append(SbaPlayerRecord(**data)) + + # Load all players + all_players = [] + for season in range(1, 13): + with open(f"/tmp/players_season_{season}.json", 'r') as f: + season_data = json.load(f) + + for data in season_data: + all_players.append(PlayerRecord(**data)) + + logger.info(f"Loaded {len(sbaplayers)} SbaPlayers and {len(all_players)} player records") + return all_players, sbaplayers + +def parse_manual_decisions(): + """Parse manual decisions from reviewed CSV files""" + logger.info("Parsing manual decisions...") + + manual_assignments = {} # player_id -> sbaplayer_id + + # Parse unmatched decisions + try: + with open('/mnt/NV2/Development/major-domo/database/unmatched_players_for_review_updated.csv', 'r', encoding='utf-8') as f: + reader = csv.DictReader(f) + + for row in reader: + resolution = row.get('resolution', '').strip() + if not resolution or resolution == 'SKIP': + continue + + # Get column names dynamically + player_id_key = next((k for k in row.keys() if 'player' in k.lower() and 'id' in k.lower()), 'player_id') + bbref_id_key = next((k for k in row.keys() if 'bbref' in k.lower() and 'id' in k.lower()), 'bbref_id') + suggested_id_key = next((k for k in row.keys() if 'suggested' in k.lower() and 'sbaplayer' in k.lower() and 'id' in k.lower()), 'suggested_sbaplayer_id') + + player_id = int(row[player_id_key]) + player_name = row['name'] + bbref_id = row[bbref_id_key] if row[bbref_id_key] else None + + if resolution == 'ACCEPT': + suggested_id = row[suggested_id_key] + if suggested_id and not suggested_id.startswith('PARTIAL:'): + manual_assignments[player_id] = int(suggested_id) + + elif resolution.startswith('USE_SBA_'): + sbaplayer_id = int(resolution.replace('USE_SBA_', '')) + manual_assignments[player_id] = sbaplayer_id + + # Note: CREATE_NEW cases will be handled by creating new SbaPlayers + + except FileNotFoundError: + logger.warning("Unmatched decisions file not found") + + # Parse high-risk decisions + try: + with open('/mnt/NV2/Development/major-domo/database/high_risk_player_matches_updated.csv', 'r', encoding='utf-8') as f: + reader = csv.DictReader(f) + + for row in reader: + resolution = row.get('resolution', '').strip() + if not resolution or resolution == 'SKIP': + continue + + # Get column names dynamically + player_id_key = next((k for k in row.keys() if 'player' in k.lower() and 'id' in k.lower()), 'player_id') + + if resolution.startswith('USE_SBA_') and row[player_id_key]: + player_id = int(row[player_id_key]) + sbaplayer_id = int(resolution.replace('USE_SBA_', '')) + manual_assignments[player_id] = sbaplayer_id + + except FileNotFoundError: + logger.warning("High-risk decisions file not found") + + logger.info(f"Found {len(manual_assignments)} manual player assignments") + return manual_assignments + +def generate_complete_assignments(all_players, sbaplayers, manual_assignments): + """Generate assignments for ALL players""" + + # Create lookup maps + sbaplayers_by_bbref = {} + for sba in sbaplayers: + if sba.key_bbref: + sbaplayers_by_bbref[sba.key_bbref] = sba + + # Track assignments and new SbaPlayers needed + all_assignments = [] # (player_id, sbaplayer_id, assignment_type) + new_sbaplayers = [] + players_needing_new_sba = defaultdict(list) # group by unique identifier + temp_id_counter = 90000 + + logger.info("Processing all player records...") + + for player in all_players: + assignment_type = "" + sbaplayer_id = None + + # 1. Check manual assignments first + if player.id in manual_assignments: + sbaplayer_id = manual_assignments[player.id] + assignment_type = "manual_decision" + + # 2. Try automatic bbref_id matching + elif player.bbref_id and player.bbref_id in sbaplayers_by_bbref: + sba = sbaplayers_by_bbref[player.bbref_id] + sbaplayer_id = sba.id + assignment_type = "automatic_bbref_match" + + # 3. Player needs new SbaPlayer record + else: + # Group players who need new SbaPlayer records + if player.bbref_id: + # Group by bbref_id + key = f"bbref:{player.bbref_id}" + unique_name = player.name # Use name from any player with this bbref_id + unique_bbref = player.bbref_id + else: + # Group by name + key = f"name:{player.name}" + unique_name = player.name + unique_bbref = None + + players_needing_new_sba[key].append(player) + continue # Will process these after creating new SbaPlayers + + # Add assignment + if sbaplayer_id: + all_assignments.append((player.id, sbaplayer_id, assignment_type)) + + logger.info(f"Direct assignments: {len(all_assignments)}") + logger.info(f"Player groups needing new SbaPlayers: {len(players_needing_new_sba)}") + + # Create new SbaPlayer records for remaining players + for key, players in players_needing_new_sba.items(): + # Use the first player as representative + representative = players[0] + + # Parse name + name_parts = representative.name.strip().split() + if len(name_parts) >= 2: + first_name = name_parts[0] + last_name = ' '.join(name_parts[1:]) + else: + first_name = representative.name + last_name = "" + + # Create new SbaPlayer + new_sba = NewSbaPlayer( + first_name=first_name, + last_name=last_name, + key_bbref=representative.bbref_id, + temp_id=temp_id_counter + ) + new_sbaplayers.append(new_sba) + + # Assign all players in this group to the new SbaPlayer + for player in players: + all_assignments.append((player.id, temp_id_counter, "new_sbaplayer")) + + temp_id_counter += 1 + + logger.info(f"Total assignments: {len(all_assignments)}") + logger.info(f"New SbaPlayers to create: {len(new_sbaplayers)}") + + return all_assignments, new_sbaplayers + +def generate_csv_files(all_assignments, new_sbaplayers, all_players, sbaplayers): + """Generate the final CSV files""" + + players_by_id = {p.id: p for p in all_players} + sbaplayers_by_id = {sba.id: sba for sba in sbaplayers} + + # Generate new SbaPlayers CSV + logger.info("Generating new SbaPlayers CSV...") + with open('/mnt/NV2/Development/major-domo/database/new_sbaplayers_to_insert_complete.csv', 'w', newline='') as csvfile: + writer = csv.writer(csvfile) + writer.writerow(['temp_id', 'first_name', 'last_name', 'key_bbref', 'key_fangraphs', 'key_mlbam', 'key_retro']) + + for sba in new_sbaplayers: + writer.writerow([ + sba.temp_id, + sba.first_name, + sba.last_name, + sba.key_bbref or '', + '', # key_fangraphs + '', # key_mlbam + '' # key_retro + ]) + + # Generate complete player assignments CSV + logger.info("Generating complete player assignments CSV...") + with open('/mnt/NV2/Development/major-domo/database/player_sbaplayer_assignments_complete.csv', 'w', newline='') as csvfile: + writer = csv.writer(csvfile) + writer.writerow([ + 'player_id', 'player_name', 'player_season', 'player_bbref_id', + 'sbaplayer_id', 'sbaplayer_name', 'sbaplayer_bbref', 'assignment_type' + ]) + + for player_id, sbaplayer_id, assignment_type in all_assignments: + player = players_by_id[player_id] + + # Get SbaPlayer info + if sbaplayer_id >= 90000: + # New SbaPlayer (temp ID) + sbaplayer_name = f"NEW_TEMP_{sbaplayer_id}" + sbaplayer_bbref = player.bbref_id or '' + else: + # Existing SbaPlayer + if sbaplayer_id in sbaplayers_by_id: + sba = sbaplayers_by_id[sbaplayer_id] + sbaplayer_name = f"{sba.first_name} {sba.last_name}" + sbaplayer_bbref = sba.key_bbref or '' + else: + sbaplayer_name = f"UNKNOWN_SBA_{sbaplayer_id}" + sbaplayer_bbref = '' + + writer.writerow([ + player.id, + player.name, + player.season, + player.bbref_id or '', + sbaplayer_id, + sbaplayer_name, + sbaplayer_bbref, + assignment_type + ]) + + # Generate summary + with open('/mnt/NV2/Development/major-domo/database/complete_assignment_summary.txt', 'w') as f: + f.write("COMPLETE PLAYER ASSIGNMENT SUMMARY\n") + f.write("=" * 50 + "\n\n") + + # Count by assignment type + type_counts = defaultdict(int) + for _, _, assignment_type in all_assignments: + type_counts[assignment_type] += 1 + + f.write("ASSIGNMENT BREAKDOWN:\n") + for assignment_type, count in type_counts.items(): + f.write(f" {assignment_type}: {count:,} players\n") + + f.write(f"\nTOTAL ASSIGNMENTS: {len(all_assignments):,}\n") + f.write(f"NEW SBAPLAYERS TO CREATE: {len(new_sbaplayers):,}\n\n") + + f.write("FILES GENERATED:\n") + f.write("1. new_sbaplayers_to_insert_complete.csv - New SbaPlayer records\n") + f.write("2. player_sbaplayer_assignments_complete.csv - ALL player assignments\n") + +def main(): + """Generate complete assignments for all players""" + logger.info("Generating complete player assignments...") + + # Load data + all_players, sbaplayers = load_cached_data() + + # Parse manual decisions + manual_assignments = parse_manual_decisions() + + # Generate complete assignments + all_assignments, new_sbaplayers = generate_complete_assignments( + all_players, sbaplayers, manual_assignments + ) + + # Generate CSV files + generate_csv_files(all_assignments, new_sbaplayers, all_players, sbaplayers) + + logger.info("\n=== COMPLETE ASSIGNMENT GENERATION COMPLETE ===") + logger.info(f"Total player assignments: {len(all_assignments):,}") + logger.info(f"New SbaPlayers needed: {len(new_sbaplayers):,}") + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/.claude/sqlite-to-postgres/botched-sbaplayer-matching/generate_unmatched_players.py b/.claude/sqlite-to-postgres/botched-sbaplayer-matching/generate_unmatched_players.py new file mode 100644 index 0000000..e29a375 --- /dev/null +++ b/.claude/sqlite-to-postgres/botched-sbaplayer-matching/generate_unmatched_players.py @@ -0,0 +1,267 @@ +#!/usr/bin/env python3 +""" +Generate CSV file of players who don't have SbaPlayer matches +For manual review and matching +""" +import json +import csv +import logging +from dataclasses import dataclass +from typing import Dict, List, Set, Optional +from collections import defaultdict + +# Set up logging +logging.basicConfig( + level=logging.INFO, + format='%(asctime)s - %(name)s - %(levelname)s - %(message)s', + handlers=[ + logging.FileHandler('/tmp/unmatched_players.log'), + logging.StreamHandler() + ] +) +logger = logging.getLogger('UnmatchedPlayers') + +@dataclass +class PlayerRecord: + id: int + name: str + season: int + bbref_id: Optional[str] = None + sbaplayer_id: Optional[int] = None + +@dataclass +class SbaPlayerRecord: + id: int + first_name: str + last_name: str + key_bbref: Optional[str] = None + key_fangraphs: Optional[int] = None + key_mlbam: Optional[int] = None + key_retro: Optional[str] = None + +def load_cached_data(): + """Load all cached data from previous analysis""" + + # Load SbaPlayers + logger.info("Loading cached SbaPlayer data...") + with open('/tmp/sbaplayers.json', 'r') as f: + sbaplayer_data = json.load(f) + + sbaplayers = [] + for data in sbaplayer_data: + sbaplayers.append(SbaPlayerRecord(**data)) + + logger.info(f"Loaded {len(sbaplayers)} SbaPlayers") + + # Load all player seasons + logger.info("Loading cached player data...") + all_players = [] + + for season in range(1, 13): + cache_file = f"/tmp/players_season_{season}.json" + try: + with open(cache_file, 'r') as f: + season_data = json.load(f) + + for data in season_data: + all_players.append(PlayerRecord(**data)) + + except FileNotFoundError: + logger.error(f"Cache file for season {season} not found. Run analyze_player_data.py first.") + return None, None + + logger.info(f"Loaded {len(all_players)} player-season records") + return all_players, sbaplayers + +def find_unmatched_players(all_players: List[PlayerRecord], sbaplayers: List[SbaPlayerRecord]): + """Find all players that don't have matches""" + + # Create lookup for SbaPlayers by bbref_id + sbaplayer_by_bbref = {} + for sba in sbaplayers: + if sba.key_bbref: + sbaplayer_by_bbref[sba.key_bbref] = sba + + # Group players by unique identifier + unique_players = {} # Will store one representative PlayerRecord for each unique player + + # First pass: group by bbref_id where available + players_by_bbref = defaultdict(list) + players_without_bbref = [] + + for player in all_players: + if player.bbref_id: + players_by_bbref[player.bbref_id].append(player) + else: + players_without_bbref.append(player) + + # Find unmatched players with bbref_id + unmatched_with_bbref = [] + for bbref_id, players in players_by_bbref.items(): + if bbref_id not in sbaplayer_by_bbref: + # This bbref_id has no match in SbaPlayers + # Use the most recent season's player record as representative + representative = max(players, key=lambda p: p.season) + unmatched_with_bbref.append(representative) + + logger.info(f"Found {len(unmatched_with_bbref)} unique players with bbref_id but no SbaPlayer match") + + # Group players without bbref_id by name + players_by_name = defaultdict(list) + for player in players_without_bbref: + players_by_name[player.name].append(player) + + unmatched_without_bbref = [] + for name, players in players_by_name.items(): + # Use the most recent season's player record as representative + representative = max(players, key=lambda p: p.season) + unmatched_without_bbref.append(representative) + + logger.info(f"Found {len(unmatched_without_bbref)} unique players without bbref_id") + + return unmatched_with_bbref, unmatched_without_bbref + +def generate_csv_reports(unmatched_with_bbref: List[PlayerRecord], unmatched_without_bbref: List[PlayerRecord], sbaplayers: List[SbaPlayerRecord]): + """Generate CSV files for manual review""" + + # Generate main unmatched players file + output_file = '/tmp/unmatched_players_for_review.csv' + + with open(output_file, 'w', newline='') as csvfile: + writer = csv.writer(csvfile) + + # Header + writer.writerow([ + 'player_id', 'name', 'season', 'bbref_id', 'match_type', 'seasons_appeared', + 'suggested_sbaplayer_id', 'suggested_sbaplayer_name', 'suggested_match_reason' + ]) + + # Players with bbref_id but no match + for player in sorted(unmatched_with_bbref, key=lambda p: p.name): + # Get all seasons this player appeared in + all_seasons = [] + cache_file = f"/tmp/players_season_{player.season}.json" + + # Find all seasons for this bbref_id across all cached data + seasons_found = [] + for season in range(1, 13): + try: + with open(f"/tmp/players_season_{season}.json", 'r') as f: + season_data = json.load(f) + + for p_data in season_data: + if p_data.get('bbref_id') == player.bbref_id: + seasons_found.append(season) + break + except: + continue + + seasons_str = ','.join(map(str, sorted(seasons_found))) + + writer.writerow([ + player.id, + player.name, + player.season, + player.bbref_id, + 'has_bbref_no_match', + seasons_str, + '', # suggested_sbaplayer_id (empty for manual fill) + '', # suggested_sbaplayer_name (empty for manual fill) + 'No existing SbaPlayer with this bbref_id' + ]) + + # Players without bbref_id + for player in sorted(unmatched_without_bbref, key=lambda p: p.name): + # Get all seasons this player appeared in by name + seasons_found = [] + for season in range(1, 13): + try: + with open(f"/tmp/players_season_{season}.json", 'r') as f: + season_data = json.load(f) + + for p_data in season_data: + if p_data.get('name') == player.name and not p_data.get('bbref_id'): + seasons_found.append(season) + break + except: + continue + + seasons_str = ','.join(map(str, sorted(seasons_found))) + + # Try to suggest a match from existing SbaPlayers by name + suggested_id = '' + suggested_name = '' + suggested_reason = 'No bbref_id available' + + for sba in sbaplayers: + sba_full_name = f"{sba.first_name} {sba.last_name}" + if sba_full_name.lower() == player.name.lower(): + suggested_id = str(sba.id) + suggested_name = sba_full_name + suggested_reason = 'Exact name match found in SbaPlayers' + break + elif (sba.first_name.lower() in player.name.lower() and + sba.last_name.lower() in player.name.lower()): + # Partial match - suggest but flag for review + if not suggested_id: # Only suggest first partial match + suggested_id = f"PARTIAL:{sba.id}" + suggested_name = sba_full_name + suggested_reason = 'Partial name match - REVIEW NEEDED' + + writer.writerow([ + player.id, + player.name, + player.season, + player.bbref_id or '', + 'no_bbref', + seasons_str, + suggested_id, + suggested_name, + suggested_reason + ]) + + logger.info(f"Generated CSV report: {output_file}") + + # Generate summary statistics + summary_file = '/tmp/unmatched_players_summary.txt' + with open(summary_file, 'w') as f: + f.write("UNMATCHED PLAYERS SUMMARY\n") + f.write("=" * 50 + "\n\n") + f.write(f"Players with bbref_id but no SbaPlayer match: {len(unmatched_with_bbref)}\n") + f.write(f"Players without bbref_id: {len(unmatched_without_bbref)}\n") + f.write(f"Total unique unmatched players: {len(unmatched_with_bbref) + len(unmatched_without_bbref)}\n\n") + + f.write("NEXT STEPS:\n") + f.write("1. Review the CSV file: /tmp/unmatched_players_for_review.csv\n") + f.write("2. For players with suggested matches, verify they are correct\n") + f.write("3. For players marked 'PARTIAL:', carefully review the suggestion\n") + f.write("4. Fill in the suggested_sbaplayer_id column for matches you want to use\n") + f.write("5. Leave suggested_sbaplayer_id empty for players needing new SbaPlayer records\n") + + logger.info(f"Generated summary: {summary_file}") + + return output_file, summary_file + +def main(): + """Main execution""" + logger.info("Starting unmatched players report generation...") + + # Load cached data + all_players, sbaplayers = load_cached_data() + if not all_players or not sbaplayers: + logger.error("Failed to load cached data. Run analyze_player_data.py first.") + return + + # Find unmatched players + unmatched_with_bbref, unmatched_without_bbref = find_unmatched_players(all_players, sbaplayers) + + # Generate CSV reports + csv_file, summary_file = generate_csv_reports(unmatched_with_bbref, unmatched_without_bbref, sbaplayers) + + logger.info(f"\n=== REPORT COMPLETE ===") + logger.info(f"CSV file for review: {csv_file}") + logger.info(f"Summary: {summary_file}") + logger.info(f"Total unmatched unique players: {len(unmatched_with_bbref) + len(unmatched_without_bbref)}") + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/.claude/sqlite-to-postgres/botched-sbaplayer-matching/high_risk_matches_summary.txt b/.claude/sqlite-to-postgres/botched-sbaplayer-matching/high_risk_matches_summary.txt new file mode 100644 index 0000000..9cee227 --- /dev/null +++ b/.claude/sqlite-to-postgres/botched-sbaplayer-matching/high_risk_matches_summary.txt @@ -0,0 +1,15 @@ +HIGH-RISK PLAYER MATCHES SUMMARY +================================================== + +SbaPlayer name conflicts: 28 +Players with ambiguous matches: 796 +Middle initial conflicts: 3 +Total high-risk situations: 827 + +RISK TYPES: +1. sbaplayer_conflict: Multiple SbaPlayers with very similar names +2. player_ambiguous_match: Player could match multiple SbaPlayers +3. middle_initial_conflict: Players with same first/last but different middle initials + +ACTION REQUIRED: +Review the CSV file to ensure correct matching and avoid linking wrong players. diff --git a/.claude/sqlite-to-postgres/botched-sbaplayer-matching/high_risk_player_matches.csv b/.claude/sqlite-to-postgres/botched-sbaplayer-matching/high_risk_player_matches.csv new file mode 100644 index 0000000..8fd17bb --- /dev/null +++ b/.claude/sqlite-to-postgres/botched-sbaplayer-matching/high_risk_player_matches.csv @@ -0,0 +1,828 @@ +risk_type,risk_reason,player_id,player_name,player_seasons,sba1_id,sba1_name,sba1_bbref,sba2_id,sba2_name,sba2_bbref,similarity_score,action_needed +sbaplayer_conflict,Very similar SbaPlayer names (similarity: 1.000),,,,45,Logan Allen,allenlo01,48,Logan Allen,allenlo02,1.000,"Verify these are different people, not duplicates" +sbaplayer_conflict,Very similar SbaPlayer names (similarity: 0.815),,,,298,Miguel Cabrera,cabremi01,300,Melky Cabrera,cabreme01,0.815,"Verify these are different people, not duplicates" +sbaplayer_conflict,Very similar SbaPlayer names (similarity: 1.000),,,,341,Diego Castillo,castidi02,345,Diego Castillo,castidi01,1.000,"Verify these are different people, not duplicates" +sbaplayer_conflict,Very similar SbaPlayer names (similarity: 0.824),,,,410,Willson Contreras,contrwi01,411,William Contreras,contrwi02,0.824,"Verify these are different people, not duplicates" +sbaplayer_conflict,Very similar SbaPlayer names (similarity: 0.880),,,,682,Robel Garcia,garciro02,692,Robert Garcia,garciro04,0.880,"Verify these are different people, not duplicates" +sbaplayer_conflict,Very similar SbaPlayer names (similarity: 0.818),,,,689,Rony Garcia,garciro03,693,Rico Garcia,garciri01,0.818,"Verify these are different people, not duplicates" +sbaplayer_conflict,Very similar SbaPlayer names (similarity: 1.000),,,,784,Javy Guerra,guerrja02,786,Javy Guerra,guerrja01,1.000,"Verify these are different people, not duplicates" +sbaplayer_conflict,Very similar SbaPlayer names (similarity: 0.839),,,,870,Cesar Hernandez,hernace02,880,Carlos Hernandez,hernaca04,0.839,"Verify these are different people, not duplicates" +sbaplayer_conflict,Very similar SbaPlayer names (similarity: 0.818),,,,893,John Hicks,hicksjo02,894,Jordan Hicks,hicksjo03,0.818,"Verify these are different people, not duplicates" +sbaplayer_conflict,Very similar SbaPlayer names (similarity: 0.833),,,,1222,Jose Martinez,martijo08,1229,JD Martinez,martijd02,0.833,"Verify these are different people, not duplicates" +sbaplayer_conflict,Very similar SbaPlayer names (similarity: 0.833),,,,1603,Neil Ramirez,ramirne01,1605,Nick Ramirez,ramirni01,0.833,"Verify these are different people, not duplicates" +sbaplayer_conflict,Very similar SbaPlayer names (similarity: 0.870),,,,1603,Neil Ramirez,ramirne01,1606,Noe Ramirez,ramirno01,0.870,"Verify these are different people, not duplicates" +sbaplayer_conflict,Very similar SbaPlayer names (similarity: 0.846),,,,1639,Mark Reynolds,reynoma01,1640,Matt Reynolds,reynoma03,0.846,"Verify these are different people, not duplicates" +sbaplayer_conflict,Very similar SbaPlayer names (similarity: 0.839),,,,1662,David Robertson,roberda08,1663,Daniel Robertson,roberda10,0.839,"Verify these are different people, not duplicates" +sbaplayer_conflict,Very similar SbaPlayer names (similarity: 0.867),,,,1672,Ronny Rodriguez,rodriro03,1683,Randy Rodriguez,rodrira02,0.867,"Verify these are different people, not duplicates" +sbaplayer_conflict,Very similar SbaPlayer names (similarity: 0.812),,,,1674,Richard Rodriguez,rodriri05,1683,Randy Rodriguez,rodrira02,0.812,"Verify these are different people, not duplicates" +sbaplayer_conflict,Very similar SbaPlayer names (similarity: 0.867),,,,1673,Joely Rodriguez,rodrijo06,1677,Jefry Rodriguez,rodrije01,0.867,"Verify these are different people, not duplicates" +sbaplayer_conflict,Very similar SbaPlayer names (similarity: 0.828),,,,1679,Elvin Rodriguez,rodriel02,1685,Endy Rodriguez,rodrien01,0.828,"Verify these are different people, not duplicates" +sbaplayer_conflict,Very similar SbaPlayer names (similarity: 0.880),,,,1689,Taylor Rogers,rogerta01,1691,Tyler Rogers,rogerty01,0.880,"Verify these are different people, not duplicates" +sbaplayer_conflict,Very similar SbaPlayer names (similarity: 0.900),,,,1695,Josh Rojas,rojasjo01,1696,Jose Rojas,rojasjo02,0.900,"Verify these are different people, not duplicates" +sbaplayer_conflict,Very similar SbaPlayer names (similarity: 0.857),,,,1695,Josh Rojas,rojasjo01,1697,Johan Rojas,rojasjo03,0.857,"Verify these are different people, not duplicates" +sbaplayer_conflict,Very similar SbaPlayer names (similarity: 0.815),,,,1760,Danny Santana,santada01,1762,Dennis Santana,santade01,0.815,"Verify these are different people, not duplicates" +sbaplayer_conflict,Very similar SbaPlayer names (similarity: 0.833),,,,1787,Tayler Scott,scottta02,1788,Tanner Scott,scottta01,0.833,"Verify these are different people, not duplicates" +sbaplayer_conflict,Very similar SbaPlayer names (similarity: 1.000),,,,1841,Will Smith,smithwi05,1843,Will Smith,smithwi04,1.000,"Verify these are different people, not duplicates" +sbaplayer_conflict,Very similar SbaPlayer names (similarity: 0.842),,,,1842,Joe Smith,smithjo05,1852,Josh Smith,smithjo11,0.842,"Verify these are different people, not duplicates" +sbaplayer_conflict,Very similar SbaPlayer names (similarity: 0.857),,,,1845,Caleb Smith,smithca03,1853,Cade Smith,smithca06,0.857,"Verify these are different people, not duplicates" +sbaplayer_conflict,Very similar SbaPlayer names (similarity: 0.909),,,,1847,Kevan Smith,smithke04,1854,Kevin Smith,smithke05,0.909,"Verify these are different people, not duplicates" +sbaplayer_conflict,Very similar SbaPlayer names (similarity: 0.923),,,,1981,Zach Thompson,thompza01,1985,Zack Thompson,thompza02,0.923,"Verify these are different people, not duplicates" +player_ambiguous_match,Player could match 3 different SbaPlayers,5092,Robbie Ray,5,1620,Robbie Ray,rayro02,578,Robbie Erlin,erlinro01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4302,Mike Mayers,5,1251,Mike Mayers,mayermi01,615,Mike Fiers,fiersmi01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 12 different SbaPlayers,4827,Carlos Martinez,5,1223,Carlos Martinez,martica04,1222,Jose Martinez,martijo08,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4900,Gary Sanchez,5,1746,Gary Sanchez,sanchga02,1745,Aaron Sanchez,sanchaa01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 4 different SbaPlayers,1772,Ranger Suarez,3,1936,Ranger Suarez,suarera01,1933,Albert Suarez,suareal01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4433,Jonathan Loaisiga,5,1132,Jonathan Loaisiga,loaisjo01,470,Jonathan Davis,davisjo05,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4175,Corbin Burnes,5,286,Corbin Burnes,burneco01,133,Jacob Barnes,barneja01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4234,Brandon Woodruff,5,2196,Brandon Woodruff,woodrbr01,535,Brandon Drury,drurybr01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4565,Josh Hader,5,802,Josh Hader,haderjo01,2175,Josh Winder,windejo01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 5 different SbaPlayers,4474,Tyler Mahle,5,1183,Tyler Mahle,mahlety01,1244,Tyler Matzek,matzety01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4632,Freddy Peralta,5,1525,Freddy Peralta,peralfr01,1522,David Peralta,peralda01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4162,Trevor Bauer,5,150,Trevor Bauer,bauertr01,1248,Trevor May,maytr01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4324,Pablo Lopez,5,1146,Pablo Lopez,lopezpa01,1148,Alejo Lopez,lopezal03,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4364,John Means,5,2,John Means,meansjo01,677,John Gant,gantjo01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4341,Kevin Gausman,5,706,Kevin Gausman,gausmke01,1420,Kevin Newman,newmake01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4509,Tyler Glasnow,5,726,Tyler Glasnow,glasnty01,1460,Tyler Olson,olsonty01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 5 different SbaPlayers,5148,Trevor Rogers,5,1693,Trevor Rogers,rogertr01,1691,Tyler Rogers,rogerty01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4582,Sonny Gray,5,765,Sonny Gray,grayso01,766,Jon Gray,grayjo02,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 8 different SbaPlayers,4504,Luis Castillo,5,344,Luis Castillo,castilu02,342,Jose Castillo,castijo02,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4144,Jordan Romano,5,1699,Jordan Romano,romanjo03,778,Jordan Groshans,groshjo01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 3 different SbaPlayers,5080,Patrick Sandoval,5,1754,Patrick Sandoval,sandopa02,1753,Pablo Sandoval,sandopa01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4570,Lucas Giolito,5,724,Lucas Giolito,giolilu01,719,Lucas Gilbreath,gilbrlu01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 4 different SbaPlayers,1193,Chris Sale,3,1739,Chris Sale,salech01,85,Chris Archer,archech01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4421,Julio Urias,5,2038,Julio Urias,uriasju01,2039,Luis Urias,uriaslu01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4628,Chad Green,5,768,Chad Green,greench03,769,Shane Greene,greensh02,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 5 different SbaPlayers,1017,Aaron Sanchez,3,1745,Aaron Sanchez,sanchaa01,1746,Gary Sanchez,sanchga02,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 8 different SbaPlayers,4147,Ian Anderson,5,74,Ian Anderson,anderia01,69,Brian Anderson,anderbr06,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 6 different SbaPlayers,5044,Michael Fulmer,5,666,Michael Fulmer,fulmemi01,1721,Michael Rucker,ruckemi01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 5 different SbaPlayers,4714,Charlie Morton,5,1375,Charlie Morton,mortoch02,1991,Charlie Tilson,tilsoch01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 5 different SbaPlayers,4788,Andrew Chafin,5,363,Andrew Chafin,chafian01,843,Andrew Heaney,heanean01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 4 different SbaPlayers,1976,Wily Peralta,3,1523,Wily Peralta,peralwi01,1524,Wandy Peralta,peralwa01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 14 different SbaPlayers,4826,Carlos Hernandez,5,880,Carlos Hernandez,hernaca04,870,Cesar Hernandez,hernace02,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4711,Raisel Iglesias,5,950,Raisel Iglesias,iglesra01,949,Jose Iglesias,iglesjo01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 5 different SbaPlayers,4662,Justin Dunn,5,546,Justin Dunn,dunnju01,2034,Justin Upton,uptonju01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4727,Scott Barlow,5,128,Scott Barlow,barlosc01,129,Joe Barlow,barlojo01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4246,Jose Urquidy,5,2041,Jose Urquidy,urquijo01,1724,Jose Ruiz,ruizjo01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4454,Sandy Alcantara,5,35,Sandy Alcantara,alcansa01,34,Sergio Alcantara,alcanse01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4252,Zach Eflin,5,562,Zach Eflin,eflinza01,1406,Zach Neal,nealza01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,5007,Kyle Gibson,5,715,Kyle Gibson,gibsoky01,830,Kyle Harrison,harriky01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 8 different SbaPlayers,1516,Jose Suarez,3,1937,Jose Suarez,suarejo01,59,Jose Alvarez,alvarjo02,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4842,Cole Sulser,5,1942,Cole Sulser,sulseco01,2022,Cole Tucker,tuckeco01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4256,Garrett Crochet,5,439,Garrett Crochet,crochga01,1340,Garrett Mitchell,mitchga01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4124,Tanner Houck,5,927,Tanner Houck,houckta01,1659,Tanner Roark,roarkta01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 4 different SbaPlayers,1268,Dillon Peters,3,1544,Dillon Peters,peterdi01,1195,Dillon Maples,mapledi01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1631,Marcus Stroman,3,1928,Marcus Stroman,stromma01,1799,Marcus Semien,semiema01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 8 different SbaPlayers,4490,Jarlin Garcia,5,684,Jarlin Garcia,garcija04,683,Aramis Garcia,garciar01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4219,Liam Hendriks,5,857,Liam Hendriks,hendrli01,856,Kyle Hendricks,hendrky01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1038,Adrian Sampson,3,1742,Adrian Sampson,sampsad01,1363,Adrian Morejon,morejad01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 4 different SbaPlayers,5022,Luke Jackson,5,960,Luke Jackson,jackslu01,961,Alex Jackson,jacksal02,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4200,Kyle Freeland,5,650,Kyle Freeland,freelky01,654,Tyler Freeman,freemty01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4689,Aaron Civale,5,383,Aaron Civale,civalaa01,55,Aaron Altherr,altheaa01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4870,Dominic Leone,5,1116,Dominic Leone,leonedo01,322,Dominic Canzone,canzodo01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4663,Kenley Jansen,5,968,Kenley Jansen,janseke01,969,Danny Jansen,janseda01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4228,Clayton Kershaw,5,1034,Clayton Kershaw,kershcl01,1644,Clayton Richard,richacl01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 6 different SbaPlayers,4765,Dylan Cease,5,355,Dylan Cease,ceasedy01,433,Dylan Crews,crewsdy01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4569,Jose Berrios,5,182,Jose Berrios,berrijo01,139,Jose Barrero,garcijo02,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4187,Luis H Garcia,5,694,Luis Garcia Jr,garcilu04,690,Adolis Garcia,garciad02,0.815,Choose correct match from 3 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4946,Jesse Chavez,5,370,Jesse Chavez,chaveje01,804,Jesse Hahn,hahnje01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4288,Tyler Matzek,5,1244,Tyler Matzek,matzety01,1183,Tyler Mahle,mahlety01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 11 different SbaPlayers,4617,Richard Rodriguez,5,1674,Richard Rodriguez,rodriri05,1683,Randy Rodriguez,rodrira02,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4874,Drew Smith,5,1848,Drew Smith,smithdr01,1853,Cade Smith,smithca06,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 5 different SbaPlayers,4517,Tyler Alexander,5,37,Tyler Alexander,alexaty01,39,Blaze Alexander,alexabl01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4644,Ryan Pressly,5,1584,Ryan Pressly,pressry01,853,Ryan Helsley,helslry01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 8 different SbaPlayers,4172,Devin Williams,5,2158,Devin Williams,willide03,2160,Gavin Williams,williga01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 5 different SbaPlayers,4346,Marco Gonzales,5,735,Marco Gonzales,gonzama02,740,Carlos Gonzalez,gonzaca01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 6 different SbaPlayers,4725,Tyler Rogers,5,1691,Tyler Rogers,rogerty01,1689,Taylor Rogers,rogerta01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4696,Ryan Tepera,5,1974,Ryan Tepera,teperry01,2128,Ryan Weber,weberry01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 8 different SbaPlayers,4266,Jose Alvarez,5,59,Jose Alvarez,alvarjo02,58,Jose Alvarado,alvarjo03,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1217,Corey Kluber,3,1060,Corey Kluber,klubeco01,1063,Corey Knebel,knebeco01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4989,Josh Taylor,5,1967,Josh Taylor,taylojo02,1404,Josh Naylor,naylojo01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4845,Corey Knebel,5,1063,Corey Knebel,knebeco01,1060,Corey Kluber,klubeco01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4497,Connor Brogdon,5,261,Connor Brogdon,brogdco01,2189,Connor Wong,wongco01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4300,Cristian Javier,5,971,Cristian Javier,javiecr01,2104,Christian Walker,walkech02,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 8 different SbaPlayers,4479,Michael Pineda,5,1560,Michael Pineda,pinedmi01,1047,Michael King,kingmi01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,5128,Steven Matz,5,1243,Steven Matz,matzst01,243,Steven Brault,braulst01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4319,Jaime Barria,5,141,Jaime Barria,barrija01,94,Jake Arrieta,arrieja01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4910,Hector Neris,5,1413,Hector Neris,nerishe01,1429,Hector Noesi,noesihe01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,5088,Reynaldo Lopez,5,1145,Reynaldo Lopez,lopezre01,1146,Pablo Lopez,lopezpa01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 5 different SbaPlayers,4660,Will Smith,5,1841,Will Smith,smithwi05,1843,Will Smith,smithwi04,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 13 different SbaPlayers,1292,Eduardo Rodriguez,3,1675,Eduardo Rodriguez,rodried05,1671,Sean Rodriguez,rodrise01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 9 different SbaPlayers,5106,Ryan Thompson,5,1983,Ryan Thompson,thompry02,1984,Mason Thompson,thompma02,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4568,Dylan Floro,5,629,Dylan Floro,florody01,1358,Dylan Moore,mooredy01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 7 different SbaPlayers,5045,Michael King,5,1047,Michael King,kingmi01,1998,Michael Tonkin,tonkimi01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4784,Alex Wood,5,2193,Alex Wood,woodal02,2194,James Wood,woodja03,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 6 different SbaPlayers,4220,Darwinzon Hernandez,5,877,Darwinzon Hernandez,hernada02,868,David Hernandez,hernada01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4635,Taylor Widener,5,2149,Taylor Widener,widenta01,2116,Taylor Ward,wardta01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 9 different SbaPlayers,4429,Noe Ramirez,5,1606,Noe Ramirez,ramirno01,1603,Neil Ramirez,ramirne01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4708,Gregory Soto,5,1878,Gregory Soto,sotogr01,1767,Gregory Santos,santogr01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 8 different SbaPlayers,4710,Matt Barnes,5,131,Matt Barnes,barnema01,241,Matt Brash,brashma01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4838,Chris Stratton,5,1922,Chris Stratton,stratch01,1923,Hunter Stratton,strathu01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,5023,Luke Weaver,5,2124,Luke Weaver,weavelu01,118,Luken Baker,bakerlu01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4338,Blake Snell,5,1861,Blake Snell,snellbl01,1735,Blake Sabol,sabolbl01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1272,Domingo German,3,713,Domingo German,germado01,1120,Domingo Leyba,leybado01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 5 different SbaPlayers,4960,Jon Gray,5,766,Jon Gray,grayjo02,973,Jon Jay,jayjo02,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4390,Dillon Tate,5,1959,Dillon Tate,tatedi01,1195,Dillon Maples,mapledi01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4377,Blake Parker,5,1499,Blake Parker,parkebl01,1543,Blake Perkins,perkibl01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,5024,Madison Bumgarner,5,278,Madison Bumgarner,bumgama01,127,Addison Barger,bargead01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,5147,Trevor Richards,5,1646,Trevor Richards,richatr01,1693,Trevor Rogers,rogertr01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4473,Tyler Duffey,5,540,Tyler Duffey,duffety01,2094,Tyler Wade,wadety01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 8 different SbaPlayers,4335,Elieser Hernandez,5,874,Elieser Hernandez,hernael01,867,Felix Hernandez,hernafe02,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 6 different SbaPlayers,4277,Diego Castillo,5,341,Diego Castillo,castidi02,345,Diego Castillo,castidi01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 13 different SbaPlayers,4659,Tyler Anderson,5,68,Tyler Anderson,anderty01,604,Tyler Ferguson,ferguty01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4362,Rich Hill,5,898,Rich Hill,hillri01,900,Tim Hill,hillti01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4549,James Karinchak,5,1009,James Karinchak,karinja01,1008,James Kaprielian,kaprija01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 5 different SbaPlayers,4679,Wandy Peralta,5,1524,Wandy Peralta,peralwa01,1523,Wily Peralta,peralwi01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,5095,Robert Stephenson,5,1904,Robert Stephenson,stephro01,1905,Tyler Stephenson,stephty01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4580,Pierce Johnson,5,985,Pierce Johnson,johnspi01,987,Bryce Johnson,johnsbr03,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 6 different SbaPlayers,4387,Yohan Ramirez,5,1611,Yohan Ramirez,ramiryo01,1606,Noe Ramirez,ramirno01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 8 different SbaPlayers,1515,Jose Ruiz,3,1724,Jose Ruiz,ruizjo01,1830,Jose Siri,sirijo01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1141,Bryan Shaw,3,1808,Bryan Shaw,shawbr01,2191,Bryan Woo,woobr01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4585,Jake McGee,5,1274,Jake McGee,mcgeeja01,1315,Jake Meyers,meyerja02,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,2011,Zack Littell,3,1127,Zack Littell,litteza01,1024,Zack Kelly,kellyza01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4243,Edwin Diaz,5,503,Edwin Diaz,diazed04,506,Lewin Diaz,diazle01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4577,Joe Kelly,5,1021,Joe Kelly,kellyjo05,20,Jo Adell,adelljo01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,2575,Hunter Strickland,1,1925,Hunter Strickland,strichu01,1923,Hunter Stratton,strathu01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4925,Jack Flaherty,5,622,Jack Flaherty,flaheja01,621,Ryan Flaherty,flahery01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 5 different SbaPlayers,2252,Edgar Santana,1,1763,Edgar Santana,santaed01,1758,Ervin Santana,santaer01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1466,Joe Ross,3,1715,Joe Ross,rossjo01,1696,Jose Rojas,rojasjo02,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 10 different SbaPlayers,4303,Victor Gonzalez,5,743,Victor Gonzalez,gonzavi02,739,Gio Gonzalez,gonzagi01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4489,Archie Bradley,5,236,Archie Bradley,bradlar01,239,Jackie Bradley Jr,bradlja02,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4389,Austin Gomber,5,730,Austin Gomber,gombeau01,1704,Austin Romine,rominau01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4851,Daniel Hudson,5,933,Daniel Hudson,hudsoda01,988,Daniel Johnson,johnsda07,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 2 different SbaPlayers,5066,Nick Neidert,5,1408,Nick Neidert,neideni01,71,Nick Anderson,anderni01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4431,Zack Greinke,5,774,Zack Greinke,greinza01,1628,Zac Reininger,reiniza01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 5 different SbaPlayers,5054,Mike Minor,5,1335,Mike Minor,minormi01,1370,Mike Morin,morinmi01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,5107,Ryne Harper,5,824,Ryne Harper,harpery01,823,Bryce Harper,harpebr03,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4783,Alex Reyes,5,1635,Alex Reyes,reyesal02,1637,Pablo Reyes,reyespa01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4914,Humberto Castellanos,5,339,Humberto Castellanos,castehu01,97,Humberto Arteaga,arteahu01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4526,Brent Suter,5,1943,Brent Suter,suterbr01,942,Brant Hurter,hurtebr01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4310,Caleb Smith,5,1845,Caleb Smith,smithca03,1853,Cade Smith,smithca06,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4754,Dane Dunning,5,548,Dane Dunning,dunnida01,977,Dan Jennings,jennida01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 6 different SbaPlayers,5133,Taylor Rogers,5,1689,Taylor Rogers,rogerta01,1691,Tyler Rogers,rogerty01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4308,Kyle Hendricks,5,856,Kyle Hendricks,hendrky01,435,Kyle Crick,crickky01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 5 different SbaPlayers,4171,Chris Martin,5,1214,Chris Martin,martich02,1216,Richie Martin,martiri01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 14 different SbaPlayers,5017,Luis Garcia,5,694,Luis Garcia Jr,garcilu04,690,Adolis Garcia,garciad02,0.880,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4656,Tyler Kinley,5,1050,Tyler Kinley,kinlety01,717,Tyler Gilbert,gilbety01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4434,Aaron Bummer,5,279,Aaron Bummer,bummeaa01,667,Carson Fulmer,fulmeca01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 7 different SbaPlayers,4194,Yimi Garcia,5,680,Yimi Garcia,garciyi01,688,Deivi Garcia,garcide01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4436,Martin Perez,5,1535,Martin Perez,perezma02,1582,Martin Prado,pradoma01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 5 different SbaPlayers,4571,Miguel Castro,5,350,Miguel Castro,castrmi01,1757,Miguel Sano,sanomi01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4652,John Gant,5,677,John Gant,gantjo01,2,John Means,meansjo01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4416,Blake Taylor,5,1966,Blake Taylor,taylobl01,1968,Beau Taylor,taylobe11,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,5158,Wade LeBlanc,5,1104,Wade LeBlanc,leblawa01,1105,Charles Leblanc,leblach01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4825,Carlos Estevez,5,585,Carlos Estevez,estevca01,1537,Carlos Perez,perezca02,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 6 different SbaPlayers,5149,Trevor Williams,5,2156,Trevor Williams,willitr01,2155,Taylor Williams,willita01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 6 different SbaPlayers,4482,Brett Martin,5,1218,Brett Martin,martibr01,828,Brett Harris,harribr02,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4755,Trevor May,5,1248,Trevor May,maytr01,150,Trevor Bauer,bauertr01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4402,Taijuan Walker,5,2105,Taijuan Walker,walketa01,2107,Jordan Walker,walkejo02,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4554,Steven Brault,5,243,Steven Brault,braulst01,1243,Steven Matz,matzst01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4974,Jose Alvarado,5,58,Jose Alvarado,alvarjo03,59,Jose Alvarez,alvarjo02,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4459,Bryse Wilson,5,2171,Bryse Wilson,wilsobr02,2166,Bobby Wilson,wilsobo02,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 4 different SbaPlayers,1467,Joe Smith,3,1842,Joe Smith,smithjo05,1852,Josh Smith,smithjo11,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4519,Jorge Alcala,5,32,Jorge Alcala,alcaljo01,40,Jorge Alfaro,alfarjo01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 8 different SbaPlayers,4794,Anthony Banda,5,121,Anthony Banda,bandaan01,176,Anthony Bender,bendean01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4399,Garrett Richards,5,1645,Garrett Richards,richaga01,439,Garrett Crochet,crochga01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 3 different SbaPlayers,5004,Kyle Crick,5,435,Kyle Crick,crickky01,696,Kyle Garlick,garliky01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 4 different SbaPlayers,1511,Jose Quijada,3,1594,Jose Quijada,quijajo01,1596,Jose Quintana,quintjo01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4866,Derek Holland,5,914,Derek Holland,hollade01,915,Greg Holland,hollagr01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4396,Griffin Canning,5,317,Griffin Canning,cannigr01,408,Griffin Conine,coningr01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4395,Andrew Heaney,5,843,Andrew Heaney,heanean01,363,Andrew Chafin,chafian01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 5 different SbaPlayers,5018,Luis Patino,5,1504,Luis Patino,patinlu01,1240,Luis Matos,matoslu02,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 8 different SbaPlayers,1079,Austin Adams,3,16,Austin Adams,adamsau02,471,Austin Davis,davisau01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 5 different SbaPlayers,4616,Taylor Hearn,5,844,Taylor Hearn,hearnta01,2116,Taylor Ward,wardta01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4446,Greg Holland,5,915,Greg Holland,hollagr01,914,Derek Holland,hollade01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 8 different SbaPlayers,4532,Brett Anderson,5,66,Brett Anderson,anderbr04,69,Brian Anderson,anderbr06,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 5 different SbaPlayers,4531,Anthony Bass,5,145,Anthony Bass,bassan01,121,Anthony Banda,bandaan01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4971,Jorge Lopez,5,1144,Jorge Lopez,lopezjo02,1148,Alejo Lopez,lopezal03,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4445,Brady Singer,5,1827,Brady Singer,singebr01,2226,Brad Ziegler,zieglbr01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4637,Logan Allen,5,45,Logan Allen,allenlo01,48,Logan Allen,allenlo02,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 10 different SbaPlayers,4835,Chase Anderson,5,67,Chase Anderson,anderch01,72,Shaun Anderson,andersh01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4478,Matt Andriese,5,76,Matt Andriese,andrima01,131,Matt Barnes,barnema01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4420,Jake Arrieta,5,94,Jake Arrieta,arrieja01,596,Jake Faria,fariaja01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4381,Daniel Bard,5,125,Daniel Bard,bardda01,536,Daniel Duarte,duartda01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4927,Jacob Barnes,5,133,Jacob Barnes,barneja01,991,JaCoby Jones,jonesja07,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4811,Brandon Bielak,5,195,Brandon Bielak,bielabr01,173,Brandon Belt,beltbr01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4456,Trevor Cahill,5,304,Trevor Cahill,cahiltr01,1294,Trevor Megill,megiltr01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4305,Carlos Carrasco,5,331,Carlos Carrasco,carraca01,420,Carlos Correa,correca01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4560,Taylor Clarke,5,384,Taylor Clarke,clarkta01,397,Taylor Cole,coleta01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4742,Alex Claudio,5,387,Alex Claudio,claudal01,210,Alex Blandino,blandal01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4269,Patrick Corbin,5,416,Patrick Corbin,corbipa01,115,Patrick Bailey,bailepa01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4290,Zach Davies,5,465,Zach Davies,davieza02,472,Noah Davis,davisno01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 7 different SbaPlayers,4801,Austin Davis,5,471,Austin Davis,davisau01,16,Austin Adams,adamsau02,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1950,Wade Davis,3,468,Wade Davis,daviswa01,474,JD Davis,davisjd01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4836,Chase De Jong,5,478,Chase De Jong,dejonch01,67,Chase Anderson,anderch01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4257,Rafael Dolis,5,523,Rafael Dolis,dolisra01,499,Rafael Devers,deverra01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,2601,Jake Faria,1,596,Jake Faria,fariaja01,94,Jake Arrieta,arrieja01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4643,Buck Farmer,5,597,Buck Farmer,farmebu01,598,Kyle Farmer,farmeky01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4237,Josh Fleming,5,623,Josh Fleming,flemijo01,607,Jose Fermin,fermijo01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4521,Matt Foster,5,638,Matt Foster,fostema01,610,Matt Festa,festama01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 7 different SbaPlayers,4322,Bryan Garcia,5,685,Bryan Garcia,garcibr01,689,Rony Garcia,garciro03,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4488,Amir Garrett,5,698,Amir Garrett,garream01,700,Reed Garrett,garrere01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4814,Braxton Garrett,5,701,Braxton Garrett,garrebr01,699,Stone Garrett,garrest01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4999,Kevin Ginkel,5,722,Kevin Ginkel,ginkeke01,1025,Kevin Kelly,kellyke02,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4712,Chi Chi Gonzalez,5,737,Chi Chi Gonzalez,gonzach01,739,Gio Gonzalez,gonzagi01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 7 different SbaPlayers,4405,David Hale,5,805,David Hale,haleda02,457,David Dahl,dahlda01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4291,JA Happ,5,821,JA Happ,happja01,820,Ian Happ,happia01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,5034,Matt Harvey,5,835,Matt Harvey,harvema01,131,Matt Barnes,barnema01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,5103,Ryan Helsley,5,853,Ryan Helsley,helslry01,1584,Ryan Pressly,pressry01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 3 different SbaPlayers,5137,Tim Hill,5,900,Tim Hill,hillti01,902,Cam Hill,hillca02,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4731,Spencer Howard,5,930,Spencer Howard,howarsp01,924,Spencer Horwitz,horwisp01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4749,Sam Howard,5,929,Sam Howard,howarsa01,903,Sam Hilliard,hillisa01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4952,Joe Jimenez,5,979,Joe Jimenez,jimenjo02,982,Leo Jimenez,jimenle01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 6 different SbaPlayers,4721,Anthony Kay,5,1012,Anthony Kay,kayan01,145,Anthony Bass,bassan01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4199,Brad Keller,5,1016,Brad Keller,kellebr01,1322,Brad Miller,millebr02,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4327,Mitch Keller,5,1017,Mitch Keller,kellemi03,1500,Mitchell Parker,parkemi01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 6 different SbaPlayers,4258,Brandon Kintzler,5,1052,Brandon Kintzler,kintzbr01,1059,Branden Kline,klinebr01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4703,Michael Lorenzen,5,1151,Michael Lorenzen,lorenmi01,1539,Michael Perez,perezmi03,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 5 different SbaPlayers,4966,Jordan Lyles,5,1171,Jordan Lyles,lylesjo01,1103,Jordan Leasure,leasujo01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 7 different SbaPlayers,4631,Andrew Miller,5,1320,Andrew Miller,millean01,1703,Andrew Romine,rominan01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,5084,Rafael Montero,5,1352,Rafael Montero,montera01,1465,Rafael Ortega,ortegra01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4209,David Peterson,5,1548,David Peterson,peterda01,1662,David Robertson,roberda08,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4496,Cody Ponce,5,1573,Cody Ponce,ponceco01,1579,Cody Poteet,poteeco01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4980,Jose Quintana,5,1596,Jose Quintana,quintjo01,1594,Jose Quijada,quijajo01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4227,Tanner Rainey,5,1599,Tanner Rainey,raineta01,122,Tanner Banks,banksta01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4636,Brooks Raley,5,1601,Brooks Raley,raleybr01,1110,Brooks Lee,leebr02,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4146,Erasmo Ramirez,5,1604,Erasmo Ramirez,ramirer02,1607,Yefry Ramirez,ramirye01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 12 different SbaPlayers,4340,Joely Rodriguez,5,1673,Joely Rodriguez,rodrijo06,1677,Jefry Rodriguez,rodrije01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4863,Dennis Santana,5,1762,Dennis Santana,santade01,1760,Danny Santana,santada01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4196,Tanner Scott,5,1788,Tanner Scott,scottta01,1787,Tayler Scott,scottta02,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 5 different SbaPlayers,4251,Riley Smith,5,1850,Riley Smith,smithri01,1841,Will Smith,smithwi05,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4512,Wander Suero,5,1940,Wander Suero,suerowa01,646,Wander Franco,francwa01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 10 different SbaPlayers,4655,Jose Urena,5,2035,Jose Urena,urenajo01,1973,Jose Tena,tenajo01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4127,Cesar Valdez,5,2046,Cesar Valdez,valdece01,870,Cesar Hernandez,hernace02,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4586,Phillips Valdez,5,2047,Phillips Valdez,valdeph01,589,Phillip Evans,evansph01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4610,Vince Velasquez,5,2065,Vince Velasquez,velasvi01,2067,Andrew Velazquez,velazan01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4702,Austin Voth,5,2091,Austin Voth,vothau01,427,Austin Cox,coxau01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 5 different SbaPlayers,5047,Michael Wacha,5,2093,Michael Wacha,wachami01,371,Michael Chavis,chavimi01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4614,Rowan Wick,5,2147,Rowan Wick,wickro01,2148,Jordan Wicks,wicksjo01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 8 different SbaPlayers,4683,Justin Wilson,5,2167,Justin Wilson,wilsoju10,2162,Justin Williams,williju02,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4678,Dan Winkler,5,2178,Dan Winkler,winklda01,1051,Ian Kinsler,kinslia01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 7 different SbaPlayers,4355,Matt Wisler,5,2183,Matt Wisler,wislema01,167,Matt Belisle,belisma01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 6 different SbaPlayers,4813,Brandon Workman,5,2198,Brandon Workman,workmbr01,249,Brandon Brennan,brennbr01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4345,Ryan Yarbrough,5,2208,Ryan Yarbrough,yarbrry01,8,Bryan Abreu,abreubr01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4295,Kyle Zimmer,5,2228,Kyle Zimmer,zimmeky01,598,Kyle Farmer,farmeky01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4705,Tyler Zuber,5,2233,Tyler Zuber,zuberty01,717,Tyler Gilbert,gilbety01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4278,Luis Robert,5,1660,Luis Robert,roberlu01,1467,Luis Ortiz,ortizlu03,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4460,Tyler ONeill,5,1463,Tyler ONeill,oneilty01,1417,Tyler Nevin,nevinty01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4271,Carlos Correa,5,420,Carlos Correa,correca01,331,Carlos Carrasco,carraca01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4289,Brandon Crawford,5,430,Brandon Crawford,crawfbr01,2198,Brandon Workman,workmbr01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 10 different SbaPlayers,4217,Jose Ramirez,5,1608,Jose Ramirez,ramirjo01,1606,Noe Ramirez,ramirno01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,5056,Mike Zunino,5,2234,Mike Zunino,zuninmi01,1335,Mike Minor,minormi01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4658,Marcus Semien,5,1799,Marcus Semien,semiema01,1928,Marcus Stroman,stromma01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 5 different SbaPlayers,4264,Kyle Tucker,5,2023,Kyle Tucker,tuckeky01,2022,Cole Tucker,tuckeco01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4287,Bryce Harper,5,823,Bryce Harper,harpebr03,824,Ryne Harper,harpery01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4639,Vladimir Guerrero Jr,5,789,Vladimir Guerrero Jr,guerrvl02,797,Vladimir Gutierrez,gutievl01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4274,Harrison Bader,5,110,Harrison Bader,baderha01,127,Addison Barger,bargead01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 5 different SbaPlayers,1414,Jake Rogers,3,1692,Jake Rogers,rogerja03,283,Jake Burger,burgeja01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4273,Brandon Nimmo,5,1425,Brandon Nimmo,nimmobr01,1374,Brandon Morrow,morrobr01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4618,Bryan Reynolds,5,1641,Bryan Reynolds,reynobr01,1639,Mark Reynolds,reynoma01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 9 different SbaPlayers,4803,Austin Riley,5,1649,Austin Riley,rileyau01,253,Austin Brice,briceau01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4233,Corey Seager,5,1794,Corey Seager,seageco01,1883,Cory Spangenberg,spangco01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4413,Starling Marte,5,1208,Starling Marte,martest01,348,Starlin Castro,castrst01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 9 different SbaPlayers,4168,Tim Anderson,5,73,Tim Anderson,anderti01,74,Ian Anderson,anderia01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4423,Matt Olson,5,1461,Matt Olson,olsonma02,2102,Matt Waldron,waldrma01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 4 different SbaPlayers,5057,Mitch Garver,5,702,Mitch Garver,garvemi01,1500,Mitchell Parker,parkemi01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4505,Willson Contreras,5,410,Willson Contreras,contrwi01,411,William Contreras,contrwi02,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 6 different SbaPlayers,4350,Enrique Hernandez,5,871,Enrique Hernandez,hernaen02,867,Felix Hernandez,hernafe02,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 5 different SbaPlayers,4552,Christian Arroyo,5,96,Christian Arroyo,arroych01,406,Christian Colon,colonch01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4149,Manny Machado,5,1175,Manny Machado,machama01,1176,Andres Machado,machaan02,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 10 different SbaPlayers,4183,Brandon Lowe,5,1156,Brandon Lowe,lowebr01,116,Brandon Bailey,bailebr01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4392,Joey Gallo,5,674,Joey Gallo,gallojo01,321,Joey Cantillo,cantijo01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4715,Jorge Polanco,5,1570,Jorge Polanco,polanjo01,220,Jorge Bonifacio,bonifjo01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4733,Nicky Lopez,5,1149,Nicky Lopez,lopezni01,1143,Jack Lopez,lopezja03,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4225,Willy Adames,5,14,Willy Adames,adamewi01,17,Riley Adams,adamsri03,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4297,Joey Wendle,5,2135,Joey Wendle,wendljo01,2136,Joey Wentz,wentzjo01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,5127,Steven Duggar,5,543,Steven Duggar,duggast01,1881,Steven Souza Jr,souzast01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4876,Dustin Garneau,5,697,Dustin Garneau,garnedu01,703,Justin Garza,garzaju01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4918,Hunter Renfroe,5,1631,Hunter Renfroe,renfrhu01,770,Hunter Greene,greenhu01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 7 different SbaPlayers,4159,Brandon Belt,5,173,Brandon Belt,beltbr01,195,Brandon Bielak,bielabr01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4304,Luis Arraez,5,93,Luis Arraez,arraelu01,138,Luis Barrera,barrelu01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4224,Trevor Story,5,1914,Trevor Story,storytr01,1248,Trevor May,maytr01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4198,George Springer,5,1888,George Springer,springe01,1873,George Soriano,soriage01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4181,Will D Smith,5,1841,Will Smith,smithwi05,1843,Will Smith,smithwi04,0.909,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4352,Ramon Laureano,5,1097,Ramon Laureano,laurera01,2037,Ramon Urias,uriasra01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1748,Pablo Reyes,3,1637,Pablo Reyes,reyespa01,1635,Alex Reyes,reyesal02,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4771,Kyle Schwarber,5,1784,Kyle Schwarber,schwaky01,598,Kyle Farmer,farmeky01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4148,Freddie Freeman,5,652,Freddie Freeman,freemfr01,651,Mike Freeman,freemmi01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4383,Kolten Wong,5,2188,Kolten Wong,wongko01,2190,Kean Wong,wongke01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4602,Ryan McMahon,5,1286,Ryan McMahon,mcmahry01,1180,Ryan Madson,madsory01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4356,Yan Gomes,5,731,Yan Gomes,gomesya01,728,Ryan Goins,goinsry01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4372,Ty France,5,642,Ty France,francty01,643,JP France,francjp01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 8 different SbaPlayers,4318,Teoscar Hernandez,5,873,Teoscar Hernandez,hernate01,870,Cesar Hernandez,hernace02,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4973,Jose Altuve,5,56,Jose Altuve,altuvjo01,59,Jose Alvarez,alvarjo02,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4553,Ramon Urias,5,2037,Ramon Urias,uriasra01,1716,Ramon Rosso,rossora01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4528,Danny Jansen,5,969,Danny Jansen,janseda01,130,Danny Barnes,barneda02,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4369,Alex Avila,5,104,Alex Avila,avilaal01,308,Alex Call,callal02,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4603,Adam Frazier,5,648,Adam Frazier,fraziad01,647,Todd Frazier,frazito01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 4 different SbaPlayers,5011,Lewin Diaz,5,506,Lewin Diaz,diazle01,503,Edwin Diaz,diazed04,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4584,Evan Longoria,5,1140,Evan Longoria,longoev01,628,Estevan Florial,flories01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 7 different SbaPlayers,4248,Justin Turner,5,2029,Justin Turner,turneju01,226,Justin Bour,bourju01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1766,Rafael Ortega,3,1465,Rafael Ortega,ortegra01,1352,Rafael Montero,montera01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4249,Sean Murphy,5,1390,Sean Murphy,murphse01,1387,Daniel Murphy,murphda08,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 6 different SbaPlayers,4930,Jake Fraley,5,641,Jake Fraley,fraleja01,596,Jake Faria,fariaja01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4885,Elias Diaz,5,502,Elias Diaz,diazel01,509,Alexis Diaz,diazal03,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 6 different SbaPlayers,4524,Francisco Lindor,5,1124,Francisco Lindor,lindofr01,1126,Francisco Liriano,liriafr01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4472,Josh Donaldson,5,526,Josh Donaldson,donaljo02,1404,Josh Naylor,naylojo01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 12 different SbaPlayers,4354,Austin Hays,5,839,Austin Hays,haysau01,16,Austin Adams,adamsau02,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 5 different SbaPlayers,4894,Francisco Mejia,5,1517,Francisco Pena,penafr01,87,Francisco Arcia,arciafr01,0.828,Choose correct match from 5 options +player_ambiguous_match,Player could match 5 different SbaPlayers,4805,Avisail Garcia,5,678,Avisail Garcia,garciav01,683,Aramis Garcia,garciar01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4941,Jason Castro,5,347,Jason Castro,castrja01,351,Anthony Castro,castran02,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4492,Nick Madrigal,5,1178,Nick Madrigal,madrini01,1230,Nick Martini,martini02,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4982,Josh Bell,5,168,Josh Bell,belljo02,20,Jo Adell,adelljo01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4747,Luis Urias,5,2039,Luis Urias,uriaslu01,658,Luis Frias,friaslu01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4476,Tommy Edman,5,558,Tommy Edman,edmanto01,859,Tommy Henry,henryto01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,5136,Thairo Estrada,5,587,Thairo Estrada,estrath01,586,Marco Estrada,estrama01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4641,Rafael Devers,5,499,Rafael Devers,deverra01,523,Rafael Dolis,dolisra01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4947,Jesus Sanchez,5,1749,Jesus Sanchez,sanchje02,1939,Jesus Sucre,sucreje01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4878,Dylan Carlson,5,327,Dylan Carlson,carlsdy01,355,Dylan Cease,ceasedy01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1994,Yordan Alvarez,3,61,Yordan Alvarez,alvaryo01,62,Francisco Alvarez,alvarfr01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4690,Aledmys Diaz,5,505,Aledmys Diaz,diazal02,509,Alexis Diaz,diazal03,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4888,Eric Haase,5,801,Eric Haase,haaseer01,926,Eric Hosmer,hosmeer01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4231,Michael Brantley,5,240,Michael Brantley,brantmi02,113,Michel Baez,baezmi01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 13 different SbaPlayers,4239,Brian Anderson,5,69,Brian Anderson,anderbr06,74,Ian Anderson,anderia01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4154,Miguel Rojas,5,1694,Miguel Rojas,rojasmi02,2055,Miguel Vargas,vargami01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 7 different SbaPlayers,4942,JD Martinez,5,1229,JD Martinez,martijd02,1222,Jose Martinez,martijo08,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4132,Tyler Stephenson,5,1905,Tyler Stephenson,stephty01,1904,Robert Stephenson,stephro01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 7 different SbaPlayers,4329,Austin Nola,5,1432,Austin Nola,nolaau01,427,Austin Cox,coxau01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 6 different SbaPlayers,4208,Austin Slater,5,1838,Austin Slater,slateau01,1837,Justin Slaten,slateju01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,1846,Seth Brown,3,265,Seth Brown,brownse01,166,Seth Beer,beerse01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 7 different SbaPlayers,4155,Jose Abreu,5,7,Jose Abreu,abreujo02,1937,Jose Suarez,suarejo01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,1704,Mitch Haniger,3,818,Mitch Haniger,hanigmi01,2143,Mitch White,whitemi03,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4787,Andrew Benintendi,5,177,Andrew Benintendi,beninan01,1065,Andrew Knizner,kniznan01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4202,Chris Taylor,5,1964,Chris Taylor,tayloch03,1739,Chris Sale,salech01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 6 different SbaPlayers,4177,Leury Garcia,5,679,Leury Garcia,garcile02,689,Rony Garcia,garciro03,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,1821,Ryan Zimmerman,3,2229,Ryan Zimmerman,zimmery01,2230,Jordan Zimmermann,zimmejo02,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4547,Garrett Cooper,5,415,Garrett Cooper,coopega03,439,Garrett Crochet,crochga01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4385,Robbie Grossman,5,779,Robbie Grossman,grossro01,1620,Robbie Ray,rayro02,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4260,Nelson Cruz,5,447,Nelson Cruz,cruzne02,449,Oneil Cruz,cruzon01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4457,Max Kepler,5,1031,Max Kepler,keplema01,1314,Max Meyer,meyerma01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4881,Eduardo Escobar,5,581,Eduardo Escobar,escobed01,1738,Eduardo Salazar,salazed01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4361,Mark Canha,5,316,Mark Canha,canhama01,1234,Mark Mathias,mathima01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4403,Wilmer Flores,5,627,Wilmer Flores,florewi01,516,Wilmer Difo,difowi01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,5010,Lane Thomas,5,1978,Lane Thomas,thomala02,1979,Alek Thomas,thomaal01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4772,JD Davis,5,474,JD Davis,davisjd01,468,Wade Davis,daviswa01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4261,Andres Gimenez,5,721,Andres Gimenez,gimenan01,1384,Andres Munoz,munozan01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4508,Josh Harrison,5,829,Josh Harrison,harrijo05,831,Monte Harrison,harrimo01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 4 different SbaPlayers,1177,Charlie Culberson,3,453,Charlie Culberson,culbech01,1991,Charlie Tilson,tilsoch01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 4 different SbaPlayers,1740,Odubel Herrera,3,882,Odubel Herrera,herreod01,883,Rosell Herrera,herrero02,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4197,Alex Verdugo,5,2069,Alex Verdugo,verdual01,591,Alex Faedo,faedoal01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4667,Bradley Zimmer,5,2227,Bradley Zimmer,zimmebr01,2228,Kyle Zimmer,zimmeky01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4333,Kyle Lewis,5,1118,Kyle Lewis,lewisky01,1119,Royce Lewis,lewisro02,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 8 different SbaPlayers,4964,Jonathan Villar,5,2079,Jonathan Villar,villajo01,84,Jonathan Arauz,arauzjo01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 5 different SbaPlayers,4713,Austin Meadows,5,1290,Austin Meadows,meadoau01,16,Austin Adams,adamsau02,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4786,Amed Rosario,5,1711,Amed Rosario,rosaram01,1710,Eddie Rosario,rosared01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4306,Donovan Solano,5,1868,Donovan Solano,solando01,2113,Donovan Walton,waltodo01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4375,Starlin Castro,5,348,Starlin Castro,castrst01,349,Harold Castro,castrha01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4965,Jordan Luplow,5,1168,Jordan Luplow,luplojo01,917,Jordan Holloway,hollojo01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4391,Eloy Jimenez,5,980,Eloy Jimenez,jimenel02,982,Leo Jimenez,jimenle01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4406,Ian Happ,5,820,Ian Happ,happia01,821,JA Happ,happja01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4348,Jonathan Schoop,5,1779,Jonathan Schoop,schoojo01,318,Jonathan Cannon,cannojo02,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4808,Billy Hamilton,5,810,Billy Hamilton,hamilbi02,811,Ian Hamilton,hamilia01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4418,Yandy Diaz,5,507,Yandy Diaz,diazya01,511,Yainer Diaz,diazya02,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4556,Kyle Seager,5,1793,Kyle Seager,seageky01,598,Kyle Farmer,farmeky01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4483,Adalberto Mondesi,5,1349,Adalberto Mondesi,mondera02,1296,Adalberto Mejia,mejiaad01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 5 different SbaPlayers,4525,Anthony Rizzo,5,1658,Anthony Rizzo,rizzoan01,351,Anthony Castro,castran02,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4285,David Fletcher,5,624,David Fletcher,fletcda02,625,Dominic Fletcher,fletcdo01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4793,Anthony Alford,5,41,Anthony Alford,alforan01,121,Anthony Banda,bandaan01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 2 different SbaPlayers,5021,Luis Torrens,5,2002,Luis Torrens,torrelu01,1240,Luis Matos,matoslu02,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4481,Eddie Rosario,5,1710,Eddie Rosario,rosared01,1711,Amed Rosario,rosaram01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4236,Luis Guillorme,5,792,Luis Guillorme,guilllu01,716,Luis Gil,gillu01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 6 different SbaPlayers,5134,Taylor Ward,5,2116,Taylor Ward,wardta01,844,Taylor Hearn,hearnta01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4745,Sam Hilliard,5,903,Sam Hilliard,hillisa01,929,Sam Howard,howarsa01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4665,Christian Yelich,5,2212,Christian Yelich,yelicch01,1482,Cristian Pache,pachecr01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4167,Dylan Moore,5,1358,Dylan Moore,mooredy01,425,Dylan Covey,coveydy01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 5 different SbaPlayers,4590,Jace Peterson,5,1547,Jace Peterson,peterja01,1514,Joc Pederson,pederjo01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4812,Brandon Drury,5,535,Brandon Drury,drurybr01,2196,Brandon Woodruff,woodrbr01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 6 different SbaPlayers,4323,Kyle Farmer,5,598,Kyle Farmer,farmeky01,597,Buck Farmer,farmebu01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4506,Brett Gardner,5,695,Brett Gardner,gardnbr01,66,Brett Anderson,anderbr04,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4949,Jo Adell,5,20,Jo Adell,adelljo01,168,Josh Bell,belljo02,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4462,Pedro Severino,5,1804,Pedro Severino,severpe01,1929,Pedro Strop,stroppe01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 11 different SbaPlayers,4425,Tyler Wade,5,2094,Tyler Wade,wadety01,2125,Tyler Webb,webbty01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 5 different SbaPlayers,4624,David Peralta,5,1522,David Peralta,peralda01,611,David Festa,festada01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4371,Ryan Jeffers,5,975,Ryan Jeffers,jeffery01,2128,Ryan Weber,weberry01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4480,Christian Vazquez,5,2063,Christian Vazquez,vazquch01,2078,Christian Villanueva,villach01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 2 different SbaPlayers,5117,Sergio Alcantara,5,34,Sergio Alcantara,alcanse01,35,Sandy Alcantara,alcansa01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,5070,Nick Solak,5,1867,Nick Solak,solakni01,1866,Nick Sogard,sogarni01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 5 different SbaPlayers,5050,Miguel Sano,5,1757,Miguel Sano,sanomi01,1750,Miguel Sanchez,sanchmi01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,5097,Robinson Chirinos,5,373,Robinson Chirinos,chiriro01,319,Robinson Cano,canoro01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4331,Eric Hosmer,5,926,Eric Hosmer,hosmeer01,801,Eric Haase,haaseer01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 17 different SbaPlayers,4349,Austin Barnes,5,132,Austin Barnes,barneau01,253,Austin Brice,briceau01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,5153,Tyler Naquin,5,1399,Tyler Naquin,naquity01,103,Tyler Austin,austity01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 5 different SbaPlayers,4594,Charlie Blackmon,5,205,Charlie Blackmon,blackch02,134,Charlie Barnes,barnech01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4201,Michael Conforto,5,407,Michael Conforto,confomi01,1875,Michael Soroka,sorokmi01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4309,Nick Ahmed,5,26,Nick Ahmed,ahmedni01,1605,Nick Ramirez,ramirni01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 5 different SbaPlayers,4988,Josh Rojas,5,1695,Josh Rojas,rojasjo01,1696,Jose Rojas,rojasjo02,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4899,Garrett Hampson,5,814,Garrett Hampson,hampsga01,1645,Garrett Richards,richaga01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4880,Eddy Alvarez,5,60,Eddy Alvarez,alvared01,59,Jose Alvarez,alvarjo02,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 4 different SbaPlayers,5016,Luis V Garcia,5,694,Luis Garcia Jr,garcilu04,690,Adolis Garcia,garciad02,0.815,Choose correct match from 4 options +player_ambiguous_match,Player could match 5 different SbaPlayers,1991,Yonathan Daza,3,476,Yonathan Daza,dazayo01,84,Jonathan Arauz,arauzjo01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4984,Josh Naylor,5,1404,Josh Naylor,naylojo01,1967,Josh Taylor,taylojo02,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4739,Asdrubal Cabrera,5,299,Asdrubal Cabrera,cabreas01,303,Oswaldo Cabrera,cabreos01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1514,Jose Rondon,3,1707,Jose Rondon,rondojo02,1450,Joseph Odom,odomjo01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 8 different SbaPlayers,4619,Christian Walker,5,2104,Christian Walker,walkech02,971,Cristian Javier,javiecr01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 5 different SbaPlayers,4453,Brad Miller,5,1322,Brad Miller,millebr02,1016,Brad Keller,kellebr01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,5006,Kyle Garlick,5,696,Kyle Garlick,garliky01,435,Kyle Crick,crickky01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 4 different SbaPlayers,5132,Taylor Jones,5,992,Taylor Jones,jonesta01,1689,Taylor Rogers,rogerta01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 2 different SbaPlayers,5000,Kevin Newman,5,1420,Kevin Newman,newmake01,706,Kevin Gausman,gausmke01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4740,Corey Dickerson,5,513,Corey Dickerson,dickeco01,512,Alex Dickerson,dickeal01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 13 different SbaPlayers,4342,Cesar Hernandez,5,870,Cesar Hernandez,hernace02,880,Carlos Hernandez,hernaca04,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4647,Victor Reyes,5,1638,Victor Reyes,reyesvi01,1666,Victor Robles,roblevi01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 6 different SbaPlayers,4191,Anthony Santander,5,1764,Anthony Santander,santaan02,176,Anthony Bender,bendean01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4128,Andrew Stevenson,5,1906,Andrew Stevenson,stevean01,1907,Cal Stevenson,steveca01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4365,Bobby Dalbec,5,458,Bobby Dalbec,dalbebo01,237,Bobby Bradley,bradlbo01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 11 different SbaPlayers,5164,Yadiel Hernandez,5,875,Yadiel Hernandez,hernaya01,867,Felix Hernandez,hernafe02,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 5 different SbaPlayers,4555,Jose Trevino,5,2013,Jose Trevino,trevijo01,1973,Jose Tena,tenajo01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 4 different SbaPlayers,1360,Harold Ramirez,3,1609,Harold Ramirez,ramirha02,1611,Yohan Ramirez,ramiryo01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4792,Andy Young,5,2220,Andy Young,youngan02,2218,Danny Young,youngda02,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 7 different SbaPlayers,4804,Austin Romine,5,1704,Austin Romine,rominau01,253,Austin Brice,briceau01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,5069,Nick Senzel,5,1802,Nick Senzel,senzeni01,1410,Nick Nelson,nelsoni01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4561,Willi Castro,5,352,Willi Castro,castrwi01,350,Miguel Castro,castrmi01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1535,Juan Lagares,3,1083,Juan Lagares,lagarju01,24,Julian Aguiar,aguiaju01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4969,Jorge Alfaro,5,40,Jorge Alfaro,alfarjo01,32,Jorge Alcala,alcaljo01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 4 different SbaPlayers,5002,Khris Davis,5,469,Khris Davis,daviskh01,467,Chris Davis,davisch02,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4244,Jose Iglesias,5,949,Jose Iglesias,iglesjo01,950,Raisel Iglesias,iglesra01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4687,Jorge Soler,5,1870,Jorge Soler,solerjo01,1144,Jorge Lopez,lopezjo02,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 4 different SbaPlayers,5155,Victor Caratini,5,325,Victor Caratini,caratvi01,83,Victor Arano,aranovi01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 2 different SbaPlayers,5162,Willie Calhoun,5,307,Willie Calhoun,calhowi01,306,Kole Calhoun,calhoko01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 9 different SbaPlayers,4736,Marwin Gonzalez,5,741,Marwin Gonzalez,gonzama01,738,Adrian Gonzalez,gonzaad01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 10 different SbaPlayers,4767,Erik Gonzalez,5,742,Erik Gonzalez,gonzaer01,739,Gio Gonzalez,gonzagi01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 8 different SbaPlayers,5043,Michael Chavis,5,371,Michael Chavis,chavimi01,827,Michael Harris,harrimi04,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4501,Maikel Franco,5,645,Maikel Franco,francma02,651,Mike Freeman,freemmi01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,1553,Kelvin Gutierrez,3,796,Kelvin Gutierrez,gutieke01,881,Kelvin Herrera,herreke01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,5123,Stephen Piscotty,5,1563,Stephen Piscotty,piscost01,2086,Stephen Vogt,vogtst01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4950,Joc Pederson,5,1514,Joc Pederson,pederjo01,1547,Jace Peterson,peterja01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4161,James McCann,5,1261,James McCann,mccanja02,1477,James Outman,outmaja01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 4 different SbaPlayers,1782,Richie Martin,3,1216,Richie Martin,martiri01,1214,Chris Martin,martich02,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4730,Orlando Arcia,5,86,Orlando Arcia,arciaor01,685,Bryan Garcia,garcibr01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 5 different SbaPlayers,4979,Jose Peraza,5,1527,Jose Peraza,perazjo01,1528,Oswald Peraza,perazos02,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4587,Aaron Hicks,5,892,Aaron Hicks,hicksaa01,893,John Hicks,hicksjo02,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 6 different SbaPlayers,4995,Justin Upton,5,2034,Justin Upton,uptonju01,546,Justin Dunn,dunnju01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4499,Pavin Smith,5,1851,Pavin Smith,smithpa04,1854,Kevin Smith,smithke05,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4653,Phillip Evans,5,589,Phillip Evans,evansph01,2047,Phillips Valdez,valdeph01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4564,Carlos Santana,5,1759,Carlos Santana,santaca01,1763,Edgar Santana,santaed01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,5073,Niko Goodrum,5,748,Niko Goodrum,goodrni01,750,Nick Goody,goodyni01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4681,Roberto Perez,5,1538,Roberto Perez,perezro02,1938,Robert Suarez,suarero01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 3 different SbaPlayers,1972,Wilmer Difo,3,516,Wilmer Difo,difowi01,634,Wilmer Font,fontwi01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 4 different SbaPlayers,1093,Austin Wynns,3,2202,Austin Wynns,wynnsau01,839,Austin Hays,haysau01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4758,David Bote,5,224,David Bote,boteda01,162,David Bednar,bednada01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,5120,Shed Long,5,1138,Shed Long,longsh01,1139,Sam Long,longsa01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,5048,Miguel Andujar,5,78,Miguel Andujar,andujmi01,1757,Miguel Sano,sanomi01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 5 different SbaPlayers,1405,Jake Bauers,3,151,Jake Bauers,bauerja01,283,Jake Burger,burgeja01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 4 different SbaPlayers,5049,Miguel Cabrera,5,298,Miguel Cabrera,cabremi01,300,Melky Cabrera,cabreme01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4443,Martin Maldonado,5,1187,Martin Maldonado,maldoma01,1582,Martin Prado,pradoma01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4931,Jake Lamb,5,1087,Jake Lamb,lambja01,57,Jake Alu,aluja01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4438,Harold Castro,5,349,Harold Castro,castrha01,348,Starlin Castro,castrst01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4539,Andrew Velazquez,5,2067,Andrew Velazquez,velazan01,2059,Andrew Vasquez,vasquan02,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4890,Eric Sogard,5,1865,Eric Sogard,sogarer01,1866,Nick Sogard,sogarni01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 6 different SbaPlayers,4232,Anthony Rendon,5,1630,Anthony Rendon,rendoan01,176,Anthony Bender,bendean01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 4 different SbaPlayers,5125,Stephen Vogt,5,2086,Stephen Vogt,vogtst01,1430,Stephen Nogosek,nogosst01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 6 different SbaPlayers,4802,Austin Hedges,5,848,Austin Hedges,hedgeau01,839,Austin Hays,haysau01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4638,Carter Kieboom,5,1038,Carter Kieboom,kieboca01,1037,Spencer Kieboom,kiebosp01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 7 different SbaPlayers,4963,Jonathan Arauz,5,84,Jonathan Arauz,arauzjo01,82,Jonathan Aranda,arandjo01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4422,Kole Calhoun,5,306,Kole Calhoun,calhoko01,307,Willie Calhoun,calhowi01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4382,DJ Stewart,5,1909,DJ Stewart,stewadj01,1911,Kohl Stewart,stewako01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4186,Clint Frazier,5,649,Clint Frazier,frazicl01,647,Todd Frazier,frazito01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 4 different SbaPlayers,5156,Victor Robles,5,1666,Victor Robles,roblevi01,1638,Victor Reyes,reyesvi01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 2 different SbaPlayers,2045,Alex Blandino,1,210,Alex Blandino,blandal01,387,Alex Claudio,claudal01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4613,Colin Moran,5,1360,Colin Moran,moranco01,1621,Colin Rea,reaco01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 5 different SbaPlayers,4907,Gregory Polanco,5,1569,Gregory Polanco,polangr01,207,Gregor Blanco,blancgr01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 5 different SbaPlayers,4923,Isan Diaz,5,508,Isan Diaz,diazis01,502,Elias Diaz,diazel01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4575,Rio Ruiz,5,1723,Rio Ruiz,ruizri01,1724,Jose Ruiz,ruizjo01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4206,Jackie Bradley Jr,5,239,Jackie Bradley Jr,bradlja02,236,Archie Bradley,bradlar01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4855,Daniel Vogelbach,5,2085,Daniel Vogelbach,vogelda01,1172,Daniel Lynch,lynchda02,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 6 different SbaPlayers,4856,Danny Santana,5,1760,Danny Santana,santada01,1762,Dennis Santana,santade01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4484,Alex Dickerson,5,512,Alex Dickerson,dickeal01,961,Alex Jackson,jacksal02,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4884,Eli White,5,2140,Eli White,whiteel04,2142,Evan White,whiteev01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 13 different SbaPlayers,5046,Michael Perez,5,1539,Michael Perez,perezmi03,1546,Michael Petersen,petermi01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4854,Daniel Robertson,5,1663,Daniel Robertson,roberda10,1662,David Robertson,roberda08,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4768,Evan White,5,2142,Evan White,whiteev01,2144,Brendan White,whitebr01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4843,Cole Tucker,5,2022,Cole Tucker,tuckeco01,2023,Kyle Tucker,tuckeky01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 5 different SbaPlayers,4858,David Dahl,5,457,David Dahl,dahlda01,805,David Hale,haleda02,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,5079,Pablo Sandoval,5,1753,Pablo Sandoval,sandopa01,1754,Patrick Sandoval,sandopa02,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 9 different SbaPlayers,4158,Jonathan Davis,5,470,Jonathan Davis,davisjo05,953,Jonathan India,indiajo01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4279,Kevan Smith,5,1847,Kevan Smith,smithke04,1854,Kevin Smith,smithke05,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 5 different SbaPlayers,2063,Andrew Romine,1,1703,Andrew Romine,rominan01,1320,Andrew Miller,millean01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,5055,Mike Tauchman,5,1961,Mike Tauchman,tauchmi01,152,Mike Baumann,baumami01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4593,Jake Cave,5,354,Jake Cave,caveja01,1274,Jake McGee,mcgeeja01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 8 different SbaPlayers,1788,Robel Garcia,3,682,Robel Garcia,garciro02,692,Robert Garcia,garciro04,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4953,Joe Panik,5,1493,Joe Panik,panikjo01,1732,Joe Ryan,ryanjo04,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4439,JaCoby Jones,5,991,JaCoby Jones,jonesja07,133,Jacob Barnes,barneja01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4761,Matt Carpenter,5,329,Matt Carpenter,carpema01,328,Ryan Carpenter,carpery01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 5 different SbaPlayers,4789,Andrew Knizner,5,1065,Andrew Knizner,kniznan01,1320,Andrew Miller,millean01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 4 different SbaPlayers,5051,Mike Ford,5,635,Mike Ford,fordmi01,615,Mike Fiers,fiersmi01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1871,Stevie Wilkerson,3,2153,Stevie Wilkerson,wilkest01,2169,Steven Wilson,wilsost02,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4283,Andrew Knapp,5,1062,Andrew Knapp,knappan01,1400,Andrew Nardi,nardian01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4780,Adrian Morejon,5,1363,Adrian Morejon,morejad01,1362,Brian Moran,moranbr01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4760,Anibal Sanchez,5,1743,Anibal Sanchez,sanchan01,1747,Ali Sanchez,sanchal04,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 3 different SbaPlayers,1088,Austin Pruitt,3,1588,Austin Pruitt,pruitau01,253,Austin Brice,briceau01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4677,Caleb Ferguson,5,605,Caleb Ferguson,ferguca01,604,Tyler Ferguson,ferguty01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1184,Chris Archer,3,85,Chris Archer,archech01,1739,Chris Sale,salech01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4621,Cionel Perez,5,1540,Cionel Perez,perezci01,1539,Michael Perez,perezmi03,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4477,Dakota Hudson,5,934,Dakota Hudson,hudsoda02,108,Dakota Bacus,bacusda01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4330,Daniel Castano,5,337,Daniel Castano,castada01,492,Daniel Descalso,descada01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 6 different SbaPlayers,4694,David Phelps,5,1554,David Phelps,phelpda01,889,David Hess,hessda01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 4 different SbaPlayers,2222,David Robertson,1,1662,David Robertson,roberda08,1663,Daniel Robertson,roberda10,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4860,Dee Strange Gordon,5,1920,Dee Strange Gordon,gordode01,753,Tanner Gordon,gordota01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4284,Dustin May,5,1249,Dustin May,maydu01,839,Austin Hays,haysau01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4601,Greg Allen,5,44,Greg Allen,allengr01,915,Greg Holland,hollagr01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4912,Hoby Milner,5,1332,Hoby Milner,milneho01,1326,Bobby Miller,millebo06,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4718,Jason Adam,5,13,Jason Adam,adamja01,16,Austin Adams,adamsau02,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4566,Jimmy Herget,5,863,Jimmy Herget,hergeji01,1089,Jimmy Lambert,lambeji01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4625,Joey Bart,5,142,Joey Bart,bartjo01,129,Joe Barlow,barlojo01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 6 different SbaPlayers,4513,Jonathan Hernandez,5,876,Jonathan Hernandez,hernajo02,82,Jonathan Aranda,arandjo01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 4 different SbaPlayers,1490,Jordan Hicks,3,894,Jordan Hicks,hicksjo03,2148,Jordan Wicks,wicksjo01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 5 different SbaPlayers,4558,Jordan Weems,5,2129,Jordan Weems,weemsjo01,1171,Jordan Lyles,lylesjo01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,3862,Josh Smith,4,1852,Josh Smith,smithjo11,1842,Joe Smith,smithjo05,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 3 different SbaPlayers,1550,Justin Verlander,3,2071,Justin Verlander,verlaju01,70,Justin Anderson,anderju01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4671,Kyle Wright,5,2200,Kyle Wright,wrighky01,2199,Mike Wright,wrighmi01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,1616,Luke Maile,3,1185,Luke Maile,mailelu01,1602,Luke Raley,raleylu01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1623,Manny Banuelos,3,123,Manny Banuelos,banuema01,130,Danny Barnes,barneda02,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,5027,Mark Mathias,5,1234,Mark Mathias,mathima01,316,Mark Canha,canhama01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4469,Matt Strahm,5,1918,Matt Strahm,strahma01,241,Matt Brash,brashma01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 5 different SbaPlayers,5067,Nick Nelson,5,1410,Nick Nelson,nelsoni01,71,Nick Anderson,anderni01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4407,Robinson Cano,5,319,Robinson Cano,canoro01,373,Robinson Chirinos,chiriro01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 10 different SbaPlayers,5099,Rony Garcia,5,689,Rony Garcia,garciro03,693,Rico Garcia,garciri01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4386,Ryan Borucki,5,222,Ryan Borucki,borucry01,244,Ryan Braun,braunry02,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 6 different SbaPlayers,4581,Ryan Brasier,5,242,Ryan Brasier,brasiry01,117,Bryan Baker,bakerbr01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,2954,Seranthony Dominguez,1,524,Seranthony Dominguez,dominse01,525,Jasson Dominguez,dominja01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,1927,Tyler Beede,3,164,Tyler Beede,beedety01,2094,Tyler Wade,wadety01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4669,Tyler Heineman,5,851,Tyler Heineman,heinety01,654,Tyler Freeman,freemty01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 5 different SbaPlayers,3023,Victor Arano,1,83,Victor Arano,aranovi01,325,Victor Caratini,caratvi01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1138,Brock Stewart,3,1908,Brock Stewart,stewabr01,1911,Kohl Stewart,stewako01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4844,Colin Rea,5,1621,Colin Rea,reaco01,1360,Colin Moran,moranco01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,1263,Derek Law,3,1098,Derek Law,lawde01,899,Derek Hill,hillde01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4937,James Paxton,5,1506,James Paxton,paxtoja01,1509,James Pazos,pazosja01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,2804,Matt Koch,1,1066,Matt Koch,kochma01,1835,Matt Skole,skolema01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,5062,Nate Pearson,5,1513,Nate Pearson,pearsna01,557,Nate Eaton,eatonna01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 11 different SbaPlayers,4164,Nick Anderson,5,71,Nick Anderson,anderni01,1410,Nick Nelson,nelsoni01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 6 different SbaPlayers,5068,Nick Ramirez,5,1605,Nick Ramirez,ramirni01,1603,Neil Ramirez,ramirne01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4620,Scott Alexander,5,36,Scott Alexander,alexasc02,38,Jason Alexander,alexaja01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 3 different SbaPlayers,1854,Shelby Miller,3,1323,Shelby Miller,millesh01,1332,Hoby Milner,milneho01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 3 different SbaPlayers,1897,Tommy Kahnle,3,1006,Tommy Kahnle,kahnlto01,1398,Tommy Nance,nanceto01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1187,Chris Devenski,3,498,Chris Devenski,devench02,467,Chris Davis,davisch02,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 5 different SbaPlayers,1432,Jay Jackson,3,959,Jay Jackson,jacksja01,961,Alex Jackson,jacksal02,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4467,Carson Fulmer,5,667,Carson Fulmer,fulmeca01,279,Aaron Bummer,bummeaa01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 12 different SbaPlayers,1544,Justin Anderson,3,70,Justin Anderson,anderju01,73,Tim Anderson,anderti01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,1646,Matt Bowman,3,228,Matt Bowman,bowmama01,131,Matt Barnes,barnema01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 10 different SbaPlayers,1724,Nick Martini,3,1230,Nick Martini,martini02,1224,Nick Martinez,martini01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4170,Sixto Sanchez,5,1751,Sixto Sanchez,sanchsi01,1747,Ali Sanchez,sanchal04,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4347,Yonny Chirinos,5,374,Yonny Chirinos,chiriyo01,373,Robinson Chirinos,chiriro01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1010,Aaron Altherr,3,55,Aaron Altherr,altheaa01,383,Aaron Civale,civalaa01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,1022,Adam Conley,3,409,Adam Conley,conlead01,989,Adam Jones,jonesad01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 4 different SbaPlayers,1028,Adam Jones,3,989,Adam Jones,jonesad01,409,Adam Conley,conlead01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4388,Adam Kolarek,5,1069,Adam Kolarek,kolarad01,1459,Adam Oller,ollerad01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1034,Adam Warren,3,2118,Adam Warren,warread01,2119,Art Warren,warrear01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,2034,Addison Reed,1,1624,Addison Reed,reedad01,127,Addison Barger,bargead01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1035,Addison Russell,3,1728,Addison Russell,russead02,1624,Addison Reed,reedad01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 8 different SbaPlayers,2038,Adrian Gonzalez,1,738,Adrian Gonzalez,gonzaad01,741,Marwin Gonzalez,gonzama01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4781,Albert Almora,5,51,Albert Almora Jr,almoral01,63,Adbert Alzolay,alzolad01,0.897,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4764,Alex Gordon,5,751,Alex Gordon,gordoal01,753,Tanner Gordon,gordota01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,2051,Alex Wilson,1,2168,Alex Wilson,wilsoal01,512,Alex Dickerson,dickeal01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 6 different SbaPlayers,1057,Andrew Cashner,3,336,Andrew Cashner,cashnan01,363,Andrew Chafin,chafian01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 5 different SbaPlayers,4442,Andrew Suarez,5,1935,Andrew Suarez,suarean01,2059,Andrew Vasquez,vasquan02,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,1071,Anthony Swarzak,3,1950,Anthony Swarzak,swarzan01,121,Anthony Banda,bandaan01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 7 different SbaPlayers,2080,Austin Jackson,1,958,Austin Jackson,jacksau01,427,Austin Cox,coxau01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,2096,Bobby Wilson,1,2166,Bobby Wilson,wilsobo02,2171,Bryse Wilson,wilsobr02,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 3 different SbaPlayers,1110,Brad Peacock,3,1510,Brad Peacock,peacobr01,1511,Matt Peacock,peacoma01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 4 different SbaPlayers,2102,Brad Ziegler,1,2226,Brad Ziegler,zieglbr01,1016,Brad Keller,kellebr01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 5 different SbaPlayers,1116,Brandon Dixon,3,520,Brandon Dixon,dixonbr01,1425,Brandon Nimmo,nimmobr01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 7 different SbaPlayers,2106,Brandon Guyer,1,798,Brandon Guyer,guyerbr01,1246,Brandon Maurer,maurebr01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 9 different SbaPlayers,2108,Brandon Maurer,1,1246,Brandon Maurer,maurebr01,798,Brandon Guyer,guyerbr01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,2109,Brandon McCarthy,1,1263,Brandon McCarthy,mccarbr01,1205,Brandon Marsh,marshbr02,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 6 different SbaPlayers,2110,Brandon Morrow,1,1374,Brandon Morrow,morrobr01,1246,Brandon Maurer,maurebr01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 6 different SbaPlayers,1134,Brian Johnson,3,986,Brian Johnson,johnsbr02,987,Bryce Johnson,johnsbr03,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1135,Brian McCann,3,1260,Brian McCann,mccanbr01,1362,Brian Moran,moranbr01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4821,Bryan Holaday,5,911,Bryan Holaday,holadbr01,1427,Ryan Noda,nodary01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,2124,Bryan Mitchell,1,1339,Bryan Mitchell,mitchbr01,1341,Calvin Mitchell,mitchca01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,2132,Caleb Joseph,1,996,Caleb Joseph,josepca01,997,Corban Joseph,josepco01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 5 different SbaPlayers,1158,Carlos Gomez,3,732,Carlos Gomez,gomezca01,740,Carlos Gonzalez,gonzaca01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 12 different SbaPlayers,1159,Carlos Gonzalez,3,740,Carlos Gonzalez,gonzaca01,744,Oscar Gonzalez,gonzaos01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 5 different SbaPlayers,1179,Charlie Tilson,3,1991,Charlie Tilson,tilsoch01,1375,Charlie Morton,mortoch02,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,2160,Chasen Bradford,1,234,Chasen Bradford,bradfch02,233,Cody Bradford,bradfco01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 7 different SbaPlayers,4837,Chris Davis,5,467,Chris Davis,davisch02,469,Khris Davis,daviskh01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,2169,Chris Rusin,1,1727,Chris Rusin,rusinch01,1214,Chris Martin,martich02,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,2175,Christian Villanueva,1,2078,Christian Villanueva,villach01,2063,Christian Vazquez,vazquch01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1203,Clayton Richard,3,1644,Clayton Richard,richacl01,1034,Clayton Kershaw,kershcl01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4841,Cody Reed,5,1625,Cody Reed,reedco01,1860,Cy Sneed,sneedcy01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1220,Cory Spangenberg,3,1883,Cory Spangenberg,spangco01,1794,Corey Seager,seageco01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,2197,Dan Jennings,1,977,Dan Jennings,jennida01,548,Dane Dunning,dunnida01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,1229,Daniel Descalso,3,492,Daniel Descalso,descada01,337,Daniel Castano,castada01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4852,Daniel Murphy,5,1387,Daniel Murphy,murphda08,1390,Sean Murphy,murphse01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1234,Daniel Palka,3,1491,Daniel Palka,palkada01,1490,Daniel Palencia,palenda01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 4 different SbaPlayers,2208,Danny Barnes,1,130,Danny Barnes,barneda02,123,Manny Banuelos,banuema01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 2 different SbaPlayers,2211,Danny Valencia,1,2050,Danny Valencia,valenda01,1490,Daniel Palencia,palenda01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 5 different SbaPlayers,1248,David Freese,3,655,David Freese,freesda01,656,David Freitas,freitda01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 5 different SbaPlayers,2217,David Freitas,1,656,David Freitas,freitda01,611,David Festa,festada01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 8 different SbaPlayers,1250,David Hernandez,3,868,David Hernandez,hernada01,875,Yadiel Hernandez,hernaya01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 6 different SbaPlayers,1251,David Hess,3,889,David Hess,hessda01,1554,David Phelps,phelpda01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 11 different SbaPlayers,1259,Dereck Rodriguez,3,1676,Dereck Rodriguez,rodride01,1677,Jefry Rodriguez,rodrije01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 5 different SbaPlayers,4869,Domingo Santana,5,1761,Domingo Santana,santado01,1956,Domingo Tapia,tapiado01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 5 different SbaPlayers,4879,Dylan Covey,5,425,Dylan Covey,coveydy01,401,Dylan Coleman,colemdy01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 4 different SbaPlayers,1291,Eduardo Nunez,3,1442,Eduardo Nunez,nunezed02,1675,Eduardo Rodriguez,rodried05,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 3 different SbaPlayers,2256,Edubray Ramos,1,1613,Edubray Ramos,ramosed02,1614,Henry Ramos,ramoshe01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4883,Edwin Encarnacion,5,571,Edwin Encarnacion,encared01,572,Jerar Encarnacion,encarje01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 4 different SbaPlayers,1295,Edwin Jackson,3,957,Edwin Jackson,jacksed01,958,Austin Jackson,jacksau01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 2 different SbaPlayers,2519,Eric Skoglund,1,1834,Eric Skoglund,skogler01,1865,Eric Sogard,sogarer01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4891,Eric Thames,5,1976,Eric Thames,thameer01,801,Eric Haase,haaseer01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 9 different SbaPlayers,1317,Felix Hernandez,3,867,Felix Hernandez,hernafe02,874,Elieser Hernandez,hernael01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4542,Felix Pena,5,1518,Felix Pena,penafe01,867,Felix Hernandez,hernafe02,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,1319,Fernando Rodney,3,1669,Fernando Rodney,rodnefe01,1701,Fernando Romero,romerfe01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 3 different SbaPlayers,2532,Fernando Romero,1,1701,Fernando Romero,romerfe01,1669,Fernando Rodney,rodnefe01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 9 different SbaPlayers,2533,Francisco Arcia,1,87,Francisco Arcia,arciafr01,1126,Francisco Liriano,liriafr01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4169,Francisco Cervelli,5,359,Francisco Cervelli,cervefr01,87,Francisco Arcia,arciafr01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 5 different SbaPlayers,1324,Francisco Liriano,3,1126,Francisco Liriano,liriafr01,87,Francisco Arcia,arciafr01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 5 different SbaPlayers,2537,Francisco Pena,1,1517,Francisco Pena,penafr01,87,Francisco Arcia,arciafr01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 4 different SbaPlayers,2542,Gabriel Moya,1,1379,Gabriel Moya,moyaga01,2214,Gabriel Ynoa,ynoaga01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 11 different SbaPlayers,4902,Gio Gonzalez,5,739,Gio Gonzalez,gonzagi01,743,Victor Gonzalez,gonzavi02,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 8 different SbaPlayers,2552,Gorkys Hernandez,1,869,Gorkys Hernandez,hernago01,879,Jose Hernandez,hernajo03,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 6 different SbaPlayers,4906,Greg Garcia,5,681,Greg Garcia,garcigr01,682,Robel Garcia,garciro02,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 4 different SbaPlayers,2557,Gregor Blanco,1,207,Gregor Blanco,blancgr01,1569,Gregory Polanco,polangr01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1367,Hector Velazquez,3,2066,Hector Velazquez,velazhe01,2068,Nelson Velazquez,velazne01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1368,Hernan Perez,3,1536,Hernan Perez,perezhe01,1542,Eury Perez,perezeu02,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4917,Hunter Pence,5,1520,Hunter Pence,pencehu01,770,Hunter Greene,greenhu01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1375,Hunter Wood,3,2192,Hunter Wood,woodhu01,747,Hunter Goodman,goodmhu01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,1377,Ian Desmond,3,495,Ian Desmond,desmoia01,74,Ian Anderson,anderia01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1380,Ian Kinsler,3,1051,Ian Kinsler,kinslia01,2178,Dan Winkler,winklda01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4743,Jace Fry,5,661,Jace Fry,fryja01,641,Jake Fraley,fraleja01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,2595,Jacob Rhame,1,1642,Jacob Rhame,rhameja01,65,Jacob Amaya,amayaja01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,2611,James Pazos,1,1509,James Pazos,pazosja01,1506,James Paxton,paxtoja01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4938,Jared Hughes,5,937,Jared Hughes,hugheja02,1821,Jared Shuster,shustja01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,2618,Jason Hammel,1,813,Jason Hammel,hammeja01,13,Jason Adam,adamja01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1428,Jason Vargas,3,2053,Jason Vargas,vargaja01,13,Jason Adam,adamja01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4588,Javy Guerra,5,784,Javy Guerra,guerrja02,786,Javy Guerra,guerrja01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 15 different SbaPlayers,1441,Jefry Rodriguez,3,1677,Jefry Rodriguez,rodrije01,1673,Joely Rodriguez,rodrijo06,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1452,Jesus Sucre,3,1939,Jesus Sucre,sucreje01,1749,Jesus Sanchez,sanchje02,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 4 different SbaPlayers,2648,Jim Johnson,1,984,Jim Johnson,johnsji04,986,Brian Johnson,johnsbr02,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 4 different SbaPlayers,1476,John Hicks,3,893,John Hicks,hicksjo02,894,Jordan Hicks,hicksjo03,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 2 different SbaPlayers,2668,Johnny Field,1,613,Johnny Field,fieldjo04,614,Josh Fields,fieldjo03,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4961,Jon Jay,5,973,Jon Jay,jayjo02,766,Jon Gray,grayjo02,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 5 different SbaPlayers,4724,Jonathan Holder,5,912,Jonathan Holder,holdejo02,1779,Jonathan Schoop,schoojo01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 5 different SbaPlayers,1487,Jonathan Lucroy,3,1163,Jonathan Lucroy,lucrojo01,318,Jonathan Cannon,cannojo02,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 4 different SbaPlayers,1494,Jordan Zimmermann,3,2230,Jordan Zimmermann,zimmejo02,2229,Ryan Zimmerman,zimmery01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4970,Jorge Bonifacio,5,220,Jorge Bonifacio,bonifjo01,1570,Jorge Polanco,polanjo01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,2687,Jose Bautista,1,153,Jose Bautista,bautijo02,293,Jose Butto,buttojo01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 7 different SbaPlayers,2689,Jose Briceno,1,254,Jose Briceno,bricejo01,139,Jose Barrero,garcijo02,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 8 different SbaPlayers,2690,Jose Castillo,1,342,Jose Castillo,castijo02,321,Joey Cantillo,cantijo01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 12 different SbaPlayers,4977,Jose Martinez,5,1222,Jose Martinez,martijo08,1226,Seth Martinez,martise01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4978,Jose Osuna,5,1471,Jose Osuna,osunajo01,2035,Jose Urena,urenajo01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 3 different SbaPlayers,2696,Jose Pirela,1,1562,Jose Pirela,pireljo01,2035,Jose Urena,urenajo01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,2702,Josh Fields,1,614,Josh Fields,fieldjo03,613,Johnny Field,fieldjo04,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 5 different SbaPlayers,1545,Justin Bour,3,226,Justin Bour,bourju01,271,Justin Bruihl,bruihju01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 7 different SbaPlayers,2717,Justin Miller,1,1321,Justin Miller,milleju02,47,Austin Allen,allenau01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 6 different SbaPlayers,4994,Justin Smoak,5,1857,Justin Smoak,smoakju01,1999,Justin Topa,topaju01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 4 different SbaPlayers,1567,Kevin McCarthy,3,1264,Kevin McCarthy,mccarke01,1265,Jake McCarthy,mccarja02,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 3 different SbaPlayers,2739,Kohl Stewart,1,1911,Kohl Stewart,stewako01,1909,DJ Stewart,stewadj01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 3 different SbaPlayers,1591,Leonys Martin,3,1215,Leonys Martin,martile01,1217,Jason Martin,martija03,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,5019,Luis Perdomo,5,1529,Luis Perdomo,perdolu02,1530,Angel Perdomo,perdoan01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 5 different SbaPlayers,5025,Mallex Smith,5,1846,Mallex Smith,smithma05,1845,Caleb Smith,smithca03,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,2780,Marco Estrada,1,586,Marco Estrada,estrama01,587,Thairo Estrada,estrath01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 4 different SbaPlayers,1635,Mark Reynolds,3,1639,Mark Reynolds,reynoma01,1640,Matt Reynolds,reynoma03,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 3 different SbaPlayers,1638,Martin Prado,3,1582,Martin Prado,pradoma01,1535,Martin Perez,perezma02,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 9 different SbaPlayers,5029,Mason Williams,5,2154,Mason Williams,willima10,2160,Gavin Williams,williga01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,5030,Matt Adams,5,15,Matt Adams,adamsma01,16,Austin Adams,adamsau02,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,2796,Matt Belisle,1,167,Matt Belisle,belisma01,2183,Matt Wisler,wislema01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,5032,Matt Davidson,5,463,Matt Davidson,davidma02,464,Tucker Davidson,davidtu01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4753,Matt Kemp,5,1026,Matt Kemp,kempma01,1835,Matt Skole,skolema01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 4 different SbaPlayers,5035,Matt Magill,5,1182,Matt Magill,magilma01,806,Matt Hall,hallma02,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 2 different SbaPlayers,5037,Matt Wieters,5,2152,Matt Wieters,wietema01,2183,Matt Wisler,wislema01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,5038,Matthew Boyd,5,230,Matthew Boyd,boydma01,999,Matthew Joyce,joycema01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,5039,Matthew Joyce,5,999,Matthew Joyce,joycema01,230,Matthew Boyd,boydma01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1670,Melky Cabrera,3,300,Melky Cabrera,cabreme01,298,Miguel Cabrera,cabremi01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 7 different SbaPlayers,1676,Michael Feliz,3,602,Michael Feliz,felizmi01,1022,Michael Kelly,kellymi03,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4598,Mike Fiers,5,615,Mike Fiers,fiersmi01,1251,Mike Mayers,mayermi01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1699,Mike Wright,3,2199,Mike Wright,wrighmi01,2200,Kyle Wright,wrighky01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,5061,Nate Jones,5,990,Nate Jones,jonesna01,994,Nolan Jones,jonesno01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 7 different SbaPlayers,2850,Neil Ramirez,1,1603,Neil Ramirez,ramirne01,1606,Noe Ramirez,ramirno01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,5063,Neil Walker,5,2103,Neil Walker,walkene01,2106,Ryan Walker,walkery01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1720,Nick Hundley,3,940,Nick Hundley,hundlni01,2027,Nik Turley,turleni01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,5065,Nick Markakis,5,1201,Nick Markakis,markani01,1292,Nick Mears,mearsni01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 8 different SbaPlayers,1730,Nick Williams,3,2157,Nick Williams,willini01,2161,Alika Williams,willial04,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,5076,Oliver Drake,5,534,Oliver Drake,drakeol01,1533,Oliver Perez,perezol01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4430,Oliver Perez,5,1533,Oliver Perez,perezol01,1542,Eury Perez,perezeu02,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4737,Pedro Baez,5,111,Pedro Baez,baezpe01,1486,Pedro Pages,pagespe01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1758,Pedro Strop,3,1929,Pedro Strop,stroppe01,1804,Pedro Severino,severpe01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 4 different SbaPlayers,2894,Rajai Davis,1,466,Rajai Davis,davisra01,474,JD Davis,davisjd01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 2 different SbaPlayers,5091,Robbie Erlin,5,578,Robbie Erlin,erlinro01,1620,Robbie Ray,rayro02,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 15 different SbaPlayers,1800,Ronny Rodriguez,3,1672,Ronny Rodriguez,rodriro03,1683,Randy Rodriguez,rodrira02,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 5 different SbaPlayers,1801,Rosell Herrera,3,883,Rosell Herrera,herrero02,884,Jose Herrera,herrejo04,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 6 different SbaPlayers,4757,Ryan Braun,5,244,Ryan Braun,braunry02,1719,Ryan Rua,ruary01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,5102,Ryan Buchter,5,276,Ryan Buchter,buchtry01,287,Ryan Burr,burrry01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 3 different SbaPlayers,2926,Ryan Flaherty,1,621,Ryan Flaherty,flahery01,622,Jack Flaherty,flaheja01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 6 different SbaPlayers,2928,Ryan Madson,1,1180,Ryan Madson,madsory01,935,Bryan Hudson,hudsobr01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 7 different SbaPlayers,2932,Ryan Rua,1,1719,Ryan Rua,ruary01,244,Ryan Braun,braunry02,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,5109,Ryon Healy,5,842,Ryon Healy,healyry01,845,Jon Heasley,heasljo01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1826,Sam Dyson,3,554,Sam Dyson,dysonsa01,1139,Sam Long,longsa01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,2941,Sam Freeman,1,653,Sam Freeman,freemsa01,651,Mike Freeman,freemmi01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1837,Scott Oberg,3,1448,Scott Oberg,obergsc01,1772,Scott Schebler,schebsc01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1838,Scott Schebler,3,1772,Scott Schebler,schebsc01,1448,Scott Oberg,obergsc01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 16 different SbaPlayers,1844,Sean Rodriguez,3,1671,Sean Rodriguez,rodrise01,1685,Endy Rodriguez,rodrien01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4393,Shane Greene,5,769,Shane Greene,greensh02,770,Hunter Greene,greenhu01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,2963,Spencer Kieboom,1,1037,Spencer Kieboom,kiebosp01,1038,Carter Kieboom,kieboca01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,5129,Steven Souza Jr,5,1881,Steven Souza Jr,souzast01,543,Steven Duggar,duggast01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 5 different SbaPlayers,5130,Tanner Roark,5,1659,Tanner Roark,roarkta01,122,Tanner Banks,banksta01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 6 different SbaPlayers,5135,Taylor Williams,5,2155,Taylor Williams,willita01,2110,Taylor Walls,wallsta01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1880,Tayron Guerrero,3,788,Tayron Guerrero,guerrta01,790,Taylor Guerrieri,guerrta02,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4686,Todd Frazier,5,647,Todd Frazier,frazito01,648,Adam Frazier,fraziad01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4523,Tommy Hunter,5,941,Tommy Hunter,hunteto02,859,Tommy Henry,henryto01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 3 different SbaPlayers,1926,Tyler Austin,3,103,Tyler Austin,austity01,1399,Tyler Naquin,naquity01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 4 different SbaPlayers,5151,Tyler Bashlor,5,144,Tyler Bashlor,bashlty01,1183,Tyler Mahle,mahlety01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 5 different SbaPlayers,4551,Tyler Flowers,5,630,Tyler Flowers,flowety01,1691,Tyler Rogers,rogerty01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 6 different SbaPlayers,1937,Tyler Olson,3,1460,Tyler Olson,olsonty01,922,Tyler Holton,holtoty01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 6 different SbaPlayers,1942,Tyler White,3,2141,Tyler White,whitety01,2094,Tyler Wade,wadety01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 7 different SbaPlayers,3025,Victor Martinez,1,1221,Victor Martinez,martivi01,325,Victor Caratini,caratvi01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 4 different SbaPlayers,1959,Welington Castillo,3,343,Welington Castillo,castiwe01,341,Diego Castillo,castidi02,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4537,Will Harris,5,825,Will Harris,harriwi10,827,Michael Harris,harrimi04,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1978,Yadiel Rivera,3,1656,Yadiel Rivera,riverya01,1657,Emmanuel Rivera,riverem01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 5 different SbaPlayers,3055,Yefry Ramirez,1,1607,Yefry Ramirez,ramirye01,1606,Noe Ramirez,ramirno01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4126,Yolmer Sanchez,5,1744,Yolmer Sanchez,sanchca01,1747,Ali Sanchez,sanchal04,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,3065,Zach Duke,1,545,Zach Duke,dukeza01,1137,Zach Logue,logueza01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4507,Zack Britton,5,260,Zack Britton,brittza01,281,Zack Burdi,burdiza01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,2008,Zack Cozart,3,428,Zack Cozart,cozarza01,1818,Zack Short,shortza01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,1019,Adalberto Mejia,3,1296,Adalberto Mejia,mejiaad01,1349,Adalberto Mondesi,mondera02,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1049,Alex McRae,3,1288,Alex McRae,mcraeal01,308,Alex Call,callal02,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 9 different SbaPlayers,4799,Austin Allen,5,47,Austin Allen,allenau01,483,Austin Dean,deanau01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 9 different SbaPlayers,4800,Austin Brice,5,253,Austin Brice,briceau01,1649,Austin Riley,rileyau01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 11 different SbaPlayers,1083,Austin Dean,3,483,Austin Dean,deanau01,16,Austin Adams,adamsau02,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1111,Brad Wieck,3,2150,Brad Wieck,wieckbr01,1510,Brad Peacock,peacobr01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,1112,Branden Kline,3,1059,Branden Kline,klinebr01,1052,Brandon Kintzler,kintzbr01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 5 different SbaPlayers,4563,Brandon Brennan,5,249,Brandon Brennan,brennbr01,195,Brandon Bielak,bielabr01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4840,Christin Stewart,5,1910,Christin Stewart,stewach02,1789,Christian Scott,scottch01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1214,Corban Joseph,3,997,Corban Joseph,josepco01,996,Caleb Joseph,josepca01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 6 different SbaPlayers,1224,Curtis Granderson,3,762,Curtis Granderson,grandcu01,73,Tim Anderson,anderti01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 7 different SbaPlayers,1289,Edgar Garcia,3,686,Edgar Garcia,garcied01,681,Greg Garcia,garcigr01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 4 different SbaPlayers,1331,Gabriel Ynoa,3,2214,Gabriel Ynoa,ynoaga01,1379,Gabriel Moya,moyaga01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1348,Gordon Beckham,3,160,Gordon Beckham,beckhgo01,159,Jordan Beck,beckjo01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,1364,Hector Noesi,3,1429,Hector Noesi,noesihe01,1413,Hector Neris,nerishe01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1371,Humberto Arteaga,3,97,Humberto Arteaga,arteahu01,339,Humberto Castellanos,castehu01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4929,Jairo Diaz,5,501,Jairo Diaz,diazja01,511,Yainer Diaz,diazya02,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4967,Jordan Yamamoto,5,2205,Jordan Yamamoto,yamamjo01,1699,Jordan Romano,romanjo03,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4983,Josh James,5,965,Josh James,jamesjo02,1695,Josh Rojas,rojasjo01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4985,Josh Osich,5,1469,Josh Osich,osichjo01,1852,Josh Smith,smithjo11,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 6 different SbaPlayers,1546,Justin Shafer,3,1807,Justin Shafer,shafeju01,1837,Justin Slaten,slateju01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 6 different SbaPlayers,1554,Kelvin Herrera,3,881,Kelvin Herrera,herreke01,864,Kevin Herget,hergeke01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 4 different SbaPlayers,5009,Kyle Ryan,5,1730,Kyle Ryan,ryanky01,1731,Ryder Ryan,ryanry01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 2 different SbaPlayers,5012,Lewis Thorpe,5,1989,Lewis Thorpe,thorple01,1990,Drew Thorpe,thorpdr01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4664,Luis Avilan,5,106,Luis Avilan,avilalu01,716,Luis Gil,gillu01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1614,Luke Bard,3,126,Luke Bard,bardlu01,118,Luken Baker,bakerlu01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 6 different SbaPlayers,1619,Mac Williamson,3,2163,Mac Williamson,willima11,2154,Mason Williams,willima10,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 11 different SbaPlayers,1629,Marco Hernandez,3,872,Marco Hernandez,hernama02,880,Carlos Hernandez,hernaca04,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 5 different SbaPlayers,1642,Matt Albers,3,29,Matt Albers,alberma01,2109,Matt Wallner,wallnma01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 5 different SbaPlayers,1656,Matt Skole,3,1835,Matt Skole,skolema01,2183,Matt Wisler,wislema01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 6 different SbaPlayers,1680,Michel Baez,3,113,Michel Baez,baezmi01,1473,Michel Otanez,otanemi01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 6 different SbaPlayers,5052,Mike Freeman,5,651,Mike Freeman,freemmi01,653,Sam Freeman,freemsa01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,1694,Mike Morin,3,1370,Mike Morin,morinmi01,1335,Mike Minor,minormi01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4536,Nate Lowe,5,1155,Nathaniel Lowe,lowena01,990,Nate Jones,jonesna01,0.783,Choose correct match from 2 options +player_ambiguous_match,Player could match 4 different SbaPlayers,1718,Nick Dini,3,518,Nick Dini,dinini01,1230,Nick Martini,martini02,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 3 different SbaPlayers,5064,Nick Goody,5,750,Nick Goody,goodyni01,752,Nick Gordon,gordoni01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4704,Nick Margevicius,5,1197,Nick Margevicius,margeni01,1230,Nick Martini,martini02,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1792,Roberto Osuna,3,1470,Roberto Osuna,osunaro01,1938,Robert Suarez,suarero01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 5 different SbaPlayers,1811,Ryan Carpenter,3,328,Ryan Carpenter,carpery01,330,Kerry Carpenter,carpeke01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 3 different SbaPlayers,1813,Ryan Goins,3,728,Ryan Goins,goinsry01,731,Yan Gomes,gomesya01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 10 different SbaPlayers,4363,Ryan Weber,5,2128,Ryan Weber,weberry01,2123,Ryan Weathers,weathry01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,5112,Scott Heineman,5,850,Scott Heineman,heinesc01,851,Tyler Heineman,heinety01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 7 different SbaPlayers,4654,Shaun Anderson,5,72,Shaun Anderson,andersh01,74,Ian Anderson,anderia01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 5 different SbaPlayers,1877,Taylor Cole,3,397,Taylor Cole,coleta01,384,Taylor Clarke,clarkta01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,1878,Taylor Guerrieri,3,790,Taylor Guerrieri,guerrta02,788,Tayron Guerrero,guerrta01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,1938,Tyler Saladino,3,1737,Tyler Saladino,saladty01,726,Tyler Glasnow,glasnty01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4600,Tyler Webb,5,2125,Tyler Webb,webbty01,2094,Tyler Wade,wadety01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 4 different SbaPlayers,1944,Victor Alcantara,3,33,Victor Alcantara,alcanvi01,34,Sergio Alcantara,alcanse01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 3 different SbaPlayers,5163,Wilmer Font,5,634,Wilmer Font,fontwi01,516,Wilmer Difo,difowi01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,2002,Zac Reininger,3,1628,Zac Reininger,reiniza01,774,Zack Greinke,greinza01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4241,Trevor Rosenthal,5,1713,Trevor Rosenthal,rosentr01,1902,Trevor Stephan,stephtr01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,5170,Zack Burdi,5,281,Zack Burdi,burdiza01,260,Zack Britton,brittza01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4806,Beau Taylor,5,1968,Beau Taylor,taylobe11,1966,Blake Taylor,taylobl01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 5 different SbaPlayers,4839,Christian Colon,5,406,Christian Colon,colonch01,1789,Christian Scott,scottch01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4872,Drew Butera,5,290,Drew Butera,buterdr01,2120,Drew Waters,waterdr01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4933,Jake Noll,5,1435,Jake Noll,nollja01,57,Jake Alu,aluja01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 6 different SbaPlayers,4975,Jose Garcia,5,682,Robel Garcia,garciro02,690,Adolis Garcia,garciad02,0.783,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4981,Joseph Odom,5,1450,Joseph Odom,odomjo01,1707,Jose Rondon,rondojo02,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,5058,Monte Harrison,5,831,Monte Harrison,harrimo01,829,Josh Harrison,harrijo05,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4408,Wyatt Mathisen,5,1236,Wyatt Mathisen,mathiwy01,1331,Wyatt Mills,millswy01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4791,Andrew Triggs,5,2014,Andrew Triggs,triggan01,1400,Andrew Nardi,nardian01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4697,Brady Lail,5,1084,Brady Lail,lailbr01,206,Bradley Blalock,blalobr01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 8 different SbaPlayers,4562,Brandon Bailey,5,116,Brandon Bailey,bailebr01,2112,Brandon Walter,waltebr01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4432,Brandon Leibrandt,5,1111,Brandon Leibrandt,leibrbr01,249,Brandon Brennan,brennbr01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4819,Brian Moran,5,1362,Brian Moran,moranbr01,1260,Brian McCann,mccanbr01,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4823,Cam Hill,5,902,Cam Hill,hillca02,900,Tim Hill,hillti01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4848,Cy Sneed,5,1860,Cy Sneed,sneedcy01,1625,Cody Reed,reedco01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4849,Dakota Bacus,5,108,Dakota Bacus,bacusda01,934,Dakota Hudson,hudsoda02,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 4 different SbaPlayers,4622,Deivi Garcia,5,688,Deivi Garcia,garcide01,687,Dermis Garcia,garcide02,1.000,Choose correct match from 4 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4915,Humberto Mejia,5,1297,Humberto Mejia,mejiahu01,1296,Adalberto Mejia,mejiaad01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4216,James Hoyt,5,931,James Hoyt,hoytja01,1477,James Outman,outmaja01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,3810,Javy A Guerra,4,784,Javy Guerra,guerrja02,786,Javy Guerra,guerrja01,0.917,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4235,Jesse Hahn,5,804,Jesse Hahn,hahnje01,370,Jesse Chavez,chaveje01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4954,Joey Gerber,5,712,Joey Gerber,gerbejo01,609,Jose Ferrer,ferrejo01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 5 different SbaPlayers,4336,Justin Topa,5,1999,Justin Topa,topaju01,1857,Justin Smoak,smoakju01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,5008,Kyle Hart,5,832,Kyle Hart,hartky01,830,Kyle Harrison,harriky01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,5033,Matt Hall,5,806,Matt Hall,hallma02,1182,Matt Magill,magilma01,1.000,Choose correct match from 3 options +player_ambiguous_match,Player could match 2 different SbaPlayers,5072,Nik Turley,5,2027,Nik Turley,turleni01,940,Nick Hundley,hundlni01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 9 different SbaPlayers,5074,Nivaldo Rodriguez,5,1687,Nivaldo Rodriguez,rodrini01,1685,Endy Rodriguez,rodrien01,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,5085,Ramon Rosso,5,1716,Ramon Rosso,rossora01,2037,Ramon Urias,uriasra01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 10 different SbaPlayers,5089,Rico Garcia,5,693,Rico Garcia,garciri01,689,Rony Garcia,garciro03,1.000,Choose correct match from 5 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4230,Ryan Sherriff,5,1814,Ryan Sherriff,sherrry01,858,Ryan Hendrix,hendrry01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,4682,Sam Selman,5,1798,Sam Selman,selmasa01,653,Sam Freeman,freemsa01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 2 different SbaPlayers,5124,Stephen Tarpley,5,1958,Stephen Tarpley,tarplst01,1070,Stephen Kolek,kolekst01,1.000,Choose correct match from 2 options +player_ambiguous_match,Player could match 3 different SbaPlayers,4487,Taylor Guilbeau,5,791,Taylor Guilbeau,guilbta01,717,Tyler Gilbert,gilbety01,1.000,Choose correct match from 3 options +middle_initial_conflict,3 players with similar first/last names but different middle initials,4187,Luis H Garcia,5,,,,5017,Luis Garcia,,N/A,"Verify these are different people: Luis H Garcia, Luis Garcia, Luis V Garcia" +middle_initial_conflict,2 players with similar first/last names but different middle initials,4660,Will Smith,5,,,,4181,Will D Smith,,N/A,"Verify these are different people: Will Smith, Will D Smith" +middle_initial_conflict,2 players with similar first/last names but different middle initials,4588,Javy Guerra,5,,,,3810,Javy A Guerra,,N/A,"Verify these are different people: Javy Guerra, Javy A Guerra" diff --git a/.claude/sqlite-to-postgres/botched-sbaplayer-matching/high_risk_player_matches_updated.csv b/.claude/sqlite-to-postgres/botched-sbaplayer-matching/high_risk_player_matches_updated.csv new file mode 100644 index 0000000..fad9d7b --- /dev/null +++ b/.claude/sqlite-to-postgres/botched-sbaplayer-matching/high_risk_player_matches_updated.csv @@ -0,0 +1,828 @@ +risk+AF8-type,risk+AF8-reason,player+AF8-id,player+AF8-name,player+AF8-seasons,sba1+AF8-id,sba1+AF8-name,sba1+AF8-bbref,sba2+AF8-id,sba2+AF8-name,sba2+AF8-bbref,similarity+AF8-score,action+AF8-needed,resolution +sbaplayer+AF8-conflict,Very similar SbaPlayer names (similarity: 1.000),,,,45,Logan Allen,allenlo01,48,Logan Allen,allenlo02,1,+ACI-Verify these are different people, not duplicates+ACI-,DIFFERENT+AF8-PEOPLE +sbaplayer+AF8-conflict,Very similar SbaPlayer names (similarity: 0.815),,,,298,Miguel Cabrera,cabremi01,300,Melky Cabrera,cabreme01,0.815,+ACI-Verify these are different people, not duplicates+ACI-,DIFFERENT+AF8-PEOPLE +sbaplayer+AF8-conflict,Very similar SbaPlayer names (similarity: 1.000),,,,341,Diego Castillo,castidi02,345,Diego Castillo,castidi01,1,+ACI-Verify these are different people, not duplicates+ACI-,DIFFERENT+AF8-PEOPLE +sbaplayer+AF8-conflict,Very similar SbaPlayer names (similarity: 0.824),,,,410,Willson Contreras,contrwi01,411,William Contreras,contrwi02,0.824,+ACI-Verify these are different people, not duplicates+ACI-,DIFFERENT+AF8-PEOPLE +sbaplayer+AF8-conflict,Very similar SbaPlayer names (similarity: 0.880),,,,682,Robel Garcia,garciro02,692,Robert Garcia,garciro04,0.88,+ACI-Verify these are different people, not duplicates+ACI-,DIFFERENT+AF8-PEOPLE +sbaplayer+AF8-conflict,Very similar SbaPlayer names (similarity: 0.818),,,,689,Rony Garcia,garciro03,693,Rico Garcia,garciri01,0.818,+ACI-Verify these are different people, not duplicates+ACI-,DIFFERENT+AF8-PEOPLE +sbaplayer+AF8-conflict,Very similar SbaPlayer names (similarity: 1.000),,,,784,Javy Guerra,guerrja02,786,Javy Guerra,guerrja01,1,+ACI-Verify these are different people, not duplicates+ACI-,DIFFERENT+AF8-PEOPLE +sbaplayer+AF8-conflict,Very similar SbaPlayer names (similarity: 0.839),,,,870,Cesar Hernandez,hernace02,880,Carlos Hernandez,hernaca04,0.839,+ACI-Verify these are different people, not duplicates+ACI-,DIFFERENT+AF8-PEOPLE +sbaplayer+AF8-conflict,Very similar SbaPlayer names (similarity: 0.818),,,,893,John Hicks,hicksjo02,894,Jordan Hicks,hicksjo03,0.818,+ACI-Verify these are different people, not duplicates+ACI-,DIFFERENT+AF8-PEOPLE +sbaplayer+AF8-conflict,Very similar SbaPlayer names (similarity: 0.833),,,,1222,Jose Martinez,martijo08,1229,JD Martinez,martijd02,0.833,+ACI-Verify these are different people, not duplicates+ACI-,DIFFERENT+AF8-PEOPLE +sbaplayer+AF8-conflict,Very similar SbaPlayer names (similarity: 0.833),,,,1603,Neil Ramirez,ramirne01,1605,Nick Ramirez,ramirni01,0.833,+ACI-Verify these are different people, not duplicates+ACI-,DIFFERENT+AF8-PEOPLE +sbaplayer+AF8-conflict,Very similar SbaPlayer names (similarity: 0.870),,,,1603,Neil Ramirez,ramirne01,1606,Noe Ramirez,ramirno01,0.87,+ACI-Verify these are different people, not duplicates+ACI-,DIFFERENT+AF8-PEOPLE +sbaplayer+AF8-conflict,Very similar SbaPlayer names (similarity: 0.846),,,,1639,Mark Reynolds,reynoma01,1640,Matt Reynolds,reynoma03,0.846,+ACI-Verify these are different people, not duplicates+ACI-,DIFFERENT+AF8-PEOPLE +sbaplayer+AF8-conflict,Very similar SbaPlayer names (similarity: 0.839),,,,1662,David Robertson,roberda08,1663,Daniel Robertson,roberda10,0.839,+ACI-Verify these are different people, not duplicates+ACI-,DIFFERENT+AF8-PEOPLE +sbaplayer+AF8-conflict,Very similar SbaPlayer names (similarity: 0.867),,,,1672,Ronny Rodriguez,rodriro03,1683,Randy Rodriguez,rodrira02,0.867,+ACI-Verify these are different people, not duplicates+ACI-,DIFFERENT+AF8-PEOPLE +sbaplayer+AF8-conflict,Very similar SbaPlayer names (similarity: 0.812),,,,1674,Richard Rodriguez,rodriri05,1683,Randy Rodriguez,rodrira02,0.812,+ACI-Verify these are different people, not duplicates+ACI-,DIFFERENT+AF8-PEOPLE +sbaplayer+AF8-conflict,Very similar SbaPlayer names (similarity: 0.867),,,,1673,Joely Rodriguez,rodrijo06,1677,Jefry Rodriguez,rodrije01,0.867,+ACI-Verify these are different people, not duplicates+ACI-,DIFFERENT+AF8-PEOPLE +sbaplayer+AF8-conflict,Very similar SbaPlayer names (similarity: 0.828),,,,1679,Elvin Rodriguez,rodriel02,1685,Endy Rodriguez,rodrien01,0.828,+ACI-Verify these are different people, not duplicates+ACI-,DIFFERENT+AF8-PEOPLE +sbaplayer+AF8-conflict,Very similar SbaPlayer names (similarity: 0.880),,,,1689,Taylor Rogers,rogerta01,1691,Tyler Rogers,rogerty01,0.88,+ACI-Verify these are different people, not duplicates+ACI-,DIFFERENT+AF8-PEOPLE +sbaplayer+AF8-conflict,Very similar SbaPlayer names (similarity: 0.900),,,,1695,Josh Rojas,rojasjo01,1696,Jose Rojas,rojasjo02,0.9,+ACI-Verify these are different people, not duplicates+ACI-,DIFFERENT+AF8-PEOPLE +sbaplayer+AF8-conflict,Very similar SbaPlayer names (similarity: 0.857),,,,1695,Josh Rojas,rojasjo01,1697,Johan Rojas,rojasjo03,0.857,+ACI-Verify these are different people, not duplicates+ACI-,DIFFERENT+AF8-PEOPLE +sbaplayer+AF8-conflict,Very similar SbaPlayer names (similarity: 0.815),,,,1760,Danny Santana,santada01,1762,Dennis Santana,santade01,0.815,+ACI-Verify these are different people, not duplicates+ACI-,DIFFERENT+AF8-PEOPLE +sbaplayer+AF8-conflict,Very similar SbaPlayer names (similarity: 0.833),,,,1787,Tayler Scott,scottta02,1788,Tanner Scott,scottta01,0.833,+ACI-Verify these are different people, not duplicates+ACI-,DIFFERENT+AF8-PEOPLE +sbaplayer+AF8-conflict,Very similar SbaPlayer names (similarity: 1.000),,,,1841,Will Smith,smithwi05,1843,Will Smith,smithwi04,1,+ACI-Verify these are different people, not duplicates+ACI-,DIFFERENT+AF8-PEOPLE +sbaplayer+AF8-conflict,Very similar SbaPlayer names (similarity: 0.842),,,,1842,Joe Smith,smithjo05,1852,Josh Smith,smithjo11,0.842,+ACI-Verify these are different people, not duplicates+ACI-,DIFFERENT+AF8-PEOPLE +sbaplayer+AF8-conflict,Very similar SbaPlayer names (similarity: 0.857),,,,1845,Caleb Smith,smithca03,1853,Cade Smith,smithca06,0.857,+ACI-Verify these are different people, not duplicates+ACI-,DIFFERENT+AF8-PEOPLE +sbaplayer+AF8-conflict,Very similar SbaPlayer names (similarity: 0.909),,,,1847,Kevan Smith,smithke04,1854,Kevin Smith,smithke05,0.909,+ACI-Verify these are different people, not duplicates+ACI-,DIFFERENT+AF8-PEOPLE +sbaplayer+AF8-conflict,Very similar SbaPlayer names (similarity: 0.923),,,,1981,Zach Thompson,thompza01,1985,Zack Thompson,thompza02,0.923,+ACI-Verify these are different people, not duplicates+ACI-,DIFFERENT+AF8-PEOPLE +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,5092,Robbie Ray,5,1620,Robbie Ray,rayro02,578,Robbie Erlin,erlinro01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1620 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4302,Mike Mayers,5,1251,Mike Mayers,mayermi01,615,Mike Fiers,fiersmi01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1251 +player+AF8-ambiguous+AF8-match,Player could match 12 different SbaPlayers,4827,Carlos Martinez,5,1223,Carlos Martinez,martica04,1222,Jose Martinez,martijo08,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1223 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4900,Gary Sanchez,5,1746,Gary Sanchez,sanchga02,1745,Aaron Sanchez,sanchaa01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1746 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,1772,Ranger Suarez,3,1936,Ranger Suarez,suarera01,1933,Albert Suarez,suareal01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-1936 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4433,Jonathan Loaisiga,5,1132,Jonathan Loaisiga,loaisjo01,470,Jonathan Davis,davisjo05,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-286 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4175,Corbin Burnes,5,286,Corbin Burnes,burneco01,133,Jacob Barnes,barneja01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-286 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4234,Brandon Woodruff,5,2196,Brandon Woodruff,woodrbr01,535,Brandon Drury,drurybr01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-2196 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4565,Josh Hader,5,802,Josh Hader,haderjo01,2175,Josh Winder,windejo01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-802 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,4474,Tyler Mahle,5,1183,Tyler Mahle,mahlety01,1244,Tyler Matzek,matzety01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1183 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4632,Freddy Peralta,5,1525,Freddy Peralta,peralfr01,1522,David Peralta,peralda01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1525 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4162,Trevor Bauer,5,150,Trevor Bauer,bauertr01,1248,Trevor May,maytr01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-150 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4324,Pablo Lopez,5,1146,Pablo Lopez,lopezpa01,1148,Alejo Lopez,lopezal03,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1146 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4364,John Means,5,2,John Means,meansjo01,677,John Gant,gantjo01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-2 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4341,Kevin Gausman,5,706,Kevin Gausman,gausmke01,1420,Kevin Newman,newmake01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-706 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4509,Tyler Glasnow,5,726,Tyler Glasnow,glasnty01,1460,Tyler Olson,olsonty01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-726 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,5148,Trevor Rogers,5,1693,Trevor Rogers,rogertr01,1691,Tyler Rogers,rogerty01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1693 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4582,Sonny Gray,5,765,Sonny Gray,grayso01,766,Jon Gray,grayjo02,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-765 +player+AF8-ambiguous+AF8-match,Player could match 8 different SbaPlayers,4504,Luis Castillo,5,344,Luis Castillo,castilu02,342,Jose Castillo,castijo02,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-344 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4144,Jordan Romano,5,1699,Jordan Romano,romanjo03,778,Jordan Groshans,groshjo01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-1699 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,5080,Patrick Sandoval,5,1754,Patrick Sandoval,sandopa02,1753,Pablo Sandoval,sandopa01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1754 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4570,Lucas Giolito,5,724,Lucas Giolito,giolilu01,719,Lucas Gilbreath,gilbrlu01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-724 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,1193,Chris Sale,3,1739,Chris Sale,salech01,85,Chris Archer,archech01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-1739 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4421,Julio Urias,5,2038,Julio Urias,uriasju01,2039,Luis Urias,uriaslu01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-2038 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4628,Chad Green,5,768,Chad Green,greench03,769,Shane Greene,greensh02,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-768 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,1017,Aaron Sanchez,3,1745,Aaron Sanchez,sanchaa01,1746,Gary Sanchez,sanchga02,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1745 +player+AF8-ambiguous+AF8-match,Player could match 8 different SbaPlayers,4147,Ian Anderson,5,74,Ian Anderson,anderia01,69,Brian Anderson,anderbr06,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-74 +player+AF8-ambiguous+AF8-match,Player could match 6 different SbaPlayers,5044,Michael Fulmer,5,666,Michael Fulmer,fulmemi01,1721,Michael Rucker,ruckemi01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-666 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,4714,Charlie Morton,5,1375,Charlie Morton,mortoch02,1991,Charlie Tilson,tilsoch01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1375 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,4788,Andrew Chafin,5,363,Andrew Chafin,chafian01,843,Andrew Heaney,heanean01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-363 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,1976,Wily Peralta,3,1523,Wily Peralta,peralwi01,1524,Wandy Peralta,peralwa01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-1523 +player+AF8-ambiguous+AF8-match,Player could match 14 different SbaPlayers,4826,Carlos Hernandez,5,880,Carlos Hernandez,hernaca04,870,Cesar Hernandez,hernace02,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-880 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4711,Raisel Iglesias,5,950,Raisel Iglesias,iglesra01,949,Jose Iglesias,iglesjo01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-950 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,4662,Justin Dunn,5,546,Justin Dunn,dunnju01,2034,Justin Upton,uptonju01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-546 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4727,Scott Barlow,5,128,Scott Barlow,barlosc01,129,Joe Barlow,barlojo01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-128 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4246,Jose Urquidy,5,2041,Jose Urquidy,urquijo01,1724,Jose Ruiz,ruizjo01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-2041 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4454,Sandy Alcantara,5,35,Sandy Alcantara,alcansa01,34,Sergio Alcantara,alcanse01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-35 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4252,Zach Eflin,5,562,Zach Eflin,eflinza01,1406,Zach Neal,nealza01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-562 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,5007,Kyle Gibson,5,715,Kyle Gibson,gibsoky01,830,Kyle Harrison,harriky01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-715 +player+AF8-ambiguous+AF8-match,Player could match 8 different SbaPlayers,1516,Jose Suarez,3,1937,Jose Suarez,suarejo01,59,Jose Alvarez,alvarjo02,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1937 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4842,Cole Sulser,5,1942,Cole Sulser,sulseco01,2022,Cole Tucker,tuckeco01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1942 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4256,Garrett Crochet,5,439,Garrett Crochet,crochga01,1340,Garrett Mitchell,mitchga01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-439 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4124,Tanner Houck,5,927,Tanner Houck,houckta01,1659,Tanner Roark,roarkta01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-927 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,1268,Dillon Peters,3,1544,Dillon Peters,peterdi01,1195,Dillon Maples,mapledi01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-1544 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1631,Marcus Stroman,3,1928,Marcus Stroman,stromma01,1799,Marcus Semien,semiema01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1928 +player+AF8-ambiguous+AF8-match,Player could match 8 different SbaPlayers,4490,Jarlin Garcia,5,684,Jarlin Garcia,garcija04,683,Aramis Garcia,garciar01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-684 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4219,Liam Hendriks,5,857,Liam Hendriks,hendrli01,856,Kyle Hendricks,hendrky01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-857 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1038,Adrian Sampson,3,1742,Adrian Sampson,sampsad01,1363,Adrian Morejon,morejad01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1742 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,5022,Luke Jackson,5,960,Luke Jackson,jackslu01,961,Alex Jackson,jacksal02,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-960 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4200,Kyle Freeland,5,650,Kyle Freeland,freelky01,654,Tyler Freeman,freemty01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-650 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4689,Aaron Civale,5,383,Aaron Civale,civalaa01,55,Aaron Altherr,altheaa01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-383 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4870,Dominic Leone,5,1116,Dominic Leone,leonedo01,322,Dominic Canzone,canzodo01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1116 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4663,Kenley Jansen,5,968,Kenley Jansen,janseke01,969,Danny Jansen,janseda01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-968 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4228,Clayton Kershaw,5,1034,Clayton Kershaw,kershcl01,1644,Clayton Richard,richacl01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1034 +player+AF8-ambiguous+AF8-match,Player could match 6 different SbaPlayers,4765,Dylan Cease,5,355,Dylan Cease,ceasedy01,433,Dylan Crews,crewsdy01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-355 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4569,Jose Berrios,5,182,Jose Berrios,berrijo01,139,Jose Barrero,garcijo02,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-182 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4187,Luis H Garcia,5,694,Luis Garcia Jr,garcilu04,690,Adolis Garcia,garciad02,0.815,Choose correct match from 3 options,USE+AF8-SBA+AF8-694 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4946,Jesse Chavez,5,370,Jesse Chavez,chaveje01,804,Jesse Hahn,hahnje01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-370 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4288,Tyler Matzek,5,1244,Tyler Matzek,matzety01,1183,Tyler Mahle,mahlety01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1244 +player+AF8-ambiguous+AF8-match,Player could match 11 different SbaPlayers,4617,Richard Rodriguez,5,1674,Richard Rodriguez,rodriri05,1683,Randy Rodriguez,rodrira02,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1674 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4874,Drew Smith,5,1848,Drew Smith,smithdr01,1853,Cade Smith,smithca06,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-1848 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,4517,Tyler Alexander,5,37,Tyler Alexander,alexaty01,39,Blaze Alexander,alexabl01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-37 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4644,Ryan Pressly,5,1584,Ryan Pressly,pressry01,853,Ryan Helsley,helslry01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1584 +player+AF8-ambiguous+AF8-match,Player could match 8 different SbaPlayers,4172,Devin Williams,5,2158,Devin Williams,willide03,2160,Gavin Williams,williga01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-2158 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,4346,Marco Gonzales,5,735,Marco Gonzales,gonzama02,740,Carlos Gonzalez,gonzaca01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-735 +player+AF8-ambiguous+AF8-match,Player could match 6 different SbaPlayers,4725,Tyler Rogers,5,1691,Tyler Rogers,rogerty01,1689,Taylor Rogers,rogerta01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1691 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4696,Ryan Tepera,5,1974,Ryan Tepera,teperry01,2128,Ryan Weber,weberry01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1974 +player+AF8-ambiguous+AF8-match,Player could match 8 different SbaPlayers,4266,Jose Alvarez,5,59,Jose Alvarez,alvarjo02,58,Jose Alvarado,alvarjo03,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-59 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1217,Corey Kluber,3,1060,Corey Kluber,klubeco01,1063,Corey Knebel,knebeco01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1060 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4989,Josh Taylor,5,1967,Josh Taylor,taylojo02,1404,Josh Naylor,naylojo01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1967 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4845,Corey Knebel,5,1063,Corey Knebel,knebeco01,1060,Corey Kluber,klubeco01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1063 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4497,Connor Brogdon,5,261,Connor Brogdon,brogdco01,2189,Connor Wong,wongco01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-261 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4300,Cristian Javier,5,971,Cristian Javier,javiecr01,2104,Christian Walker,walkech02,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-971 +player+AF8-ambiguous+AF8-match,Player could match 8 different SbaPlayers,4479,Michael Pineda,5,1560,Michael Pineda,pinedmi01,1047,Michael King,kingmi01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1560 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,5128,Steven Matz,5,1243,Steven Matz,matzst01,243,Steven Brault,braulst01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1243 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4319,Jaime Barria,5,141,Jaime Barria,barrija01,94,Jake Arrieta,arrieja01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-141 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4910,Hector Neris,5,1413,Hector Neris,nerishe01,1429,Hector Noesi,noesihe01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1413 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,5088,Reynaldo Lopez,5,1145,Reynaldo Lopez,lopezre01,1146,Pablo Lopez,lopezpa01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1145 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,4660,Will Smith,5,1841,Will Smith,smithwi05,1843,Will Smith,smithwi04,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1841 +player+AF8-ambiguous+AF8-match,Player could match 13 different SbaPlayers,1292,Eduardo Rodriguez,3,1675,Eduardo Rodriguez,rodried05,1671,Sean Rodriguez,rodrise01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1675 +player+AF8-ambiguous+AF8-match,Player could match 9 different SbaPlayers,5106,Ryan Thompson,5,1983,Ryan Thompson,thompry02,1984,Mason Thompson,thompma02,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1983 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4568,Dylan Floro,5,629,Dylan Floro,florody01,1358,Dylan Moore,mooredy01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-629 +player+AF8-ambiguous+AF8-match,Player could match 7 different SbaPlayers,5045,Michael King,5,1047,Michael King,kingmi01,1998,Michael Tonkin,tonkimi01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1047 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4784,Alex Wood,5,2193,Alex Wood,woodal02,2194,James Wood,woodja03,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-2193 +player+AF8-ambiguous+AF8-match,Player could match 6 different SbaPlayers,4220,Darwinzon Hernandez,5,877,Darwinzon Hernandez,hernada02,868,David Hernandez,hernada01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-877 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4635,Taylor Widener,5,2149,Taylor Widener,widenta01,2116,Taylor Ward,wardta01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-2149 +player+AF8-ambiguous+AF8-match,Player could match 9 different SbaPlayers,4429,Noe Ramirez,5,1606,Noe Ramirez,ramirno01,1603,Neil Ramirez,ramirne01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1606 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4708,Gregory Soto,5,1878,Gregory Soto,sotogr01,1767,Gregory Santos,santogr01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1878 +player+AF8-ambiguous+AF8-match,Player could match 8 different SbaPlayers,4710,Matt Barnes,5,131,Matt Barnes,barnema01,241,Matt Brash,brashma01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-131 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4838,Chris Stratton,5,1922,Chris Stratton,stratch01,1923,Hunter Stratton,strathu01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1922 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,5023,Luke Weaver,5,2124,Luke Weaver,weavelu01,118,Luken Baker,bakerlu01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-2124 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4338,Blake Snell,5,1861,Blake Snell,snellbl01,1735,Blake Sabol,sabolbl01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1861 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1272,Domingo German,3,713,Domingo German,germado01,1120,Domingo Leyba,leybado01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-713 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,4960,Jon Gray,5,766,Jon Gray,grayjo02,973,Jon Jay,jayjo02,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-766 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4390,Dillon Tate,5,1959,Dillon Tate,tatedi01,1195,Dillon Maples,mapledi01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1959 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4377,Blake Parker,5,1499,Blake Parker,parkebl01,1543,Blake Perkins,perkibl01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1499 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,5024,Madison Bumgarner,5,278,Madison Bumgarner,bumgama01,127,Addison Barger,bargead01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-278 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,5147,Trevor Richards,5,1646,Trevor Richards,richatr01,1693,Trevor Rogers,rogertr01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1646 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4473,Tyler Duffey,5,540,Tyler Duffey,duffety01,2094,Tyler Wade,wadety01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-540 +player+AF8-ambiguous+AF8-match,Player could match 8 different SbaPlayers,4335,Elieser Hernandez,5,874,Elieser Hernandez,hernael01,867,Felix Hernandez,hernafe02,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-874 +player+AF8-ambiguous+AF8-match,Player could match 6 different SbaPlayers,4277,Diego Castillo,5,341,Diego Castillo,castidi02,345,Diego Castillo,castidi01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-341 +player+AF8-ambiguous+AF8-match,Player could match 13 different SbaPlayers,4659,Tyler Anderson,5,68,Tyler Anderson,anderty01,604,Tyler Ferguson,ferguty01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-68 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4362,Rich Hill,5,898,Rich Hill,hillri01,900,Tim Hill,hillti01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-898 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4549,James Karinchak,5,1009,James Karinchak,karinja01,1008,James Kaprielian,kaprija01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1009 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,4679,Wandy Peralta,5,1524,Wandy Peralta,peralwa01,1523,Wily Peralta,peralwi01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1524 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,5095,Robert Stephenson,5,1904,Robert Stephenson,stephro01,1905,Tyler Stephenson,stephty01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1904 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4580,Pierce Johnson,5,985,Pierce Johnson,johnspi01,987,Bryce Johnson,johnsbr03,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-985 +player+AF8-ambiguous+AF8-match,Player could match 6 different SbaPlayers,4387,Yohan Ramirez,5,1611,Yohan Ramirez,ramiryo01,1606,Noe Ramirez,ramirno01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1611 +player+AF8-ambiguous+AF8-match,Player could match 8 different SbaPlayers,1515,Jose Ruiz,3,1724,Jose Ruiz,ruizjo01,1830,Jose Siri,sirijo01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1724 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1141,Bryan Shaw,3,1808,Bryan Shaw,shawbr01,2191,Bryan Woo,woobr01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1808 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4585,Jake McGee,5,1274,Jake McGee,mcgeeja01,1315,Jake Meyers,meyerja02,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1274 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,2011,Zack Littell,3,1127,Zack Littell,litteza01,1024,Zack Kelly,kellyza01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1127 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4243,Edwin Diaz,5,503,Edwin Diaz,diazed04,506,Lewin Diaz,diazle01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-503 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4577,Joe Kelly,5,1021,Joe Kelly,kellyjo05,20,Jo Adell,adelljo01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1021 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,2575,Hunter Strickland,1,1925,Hunter Strickland,strichu01,1923,Hunter Stratton,strathu01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1925 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4925,Jack Flaherty,5,622,Jack Flaherty,flaheja01,621,Ryan Flaherty,flahery01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-622 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,2252,Edgar Santana,1,1763,Edgar Santana,santaed01,1758,Ervin Santana,santaer01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1763 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1466,Joe Ross,3,1715,Joe Ross,rossjo01,1696,Jose Rojas,rojasjo02,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1715 +player+AF8-ambiguous+AF8-match,Player could match 10 different SbaPlayers,4303,Victor Gonzalez,5,743,Victor Gonzalez,gonzavi02,739,Gio Gonzalez,gonzagi01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-743 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4489,Archie Bradley,5,236,Archie Bradley,bradlar01,239,Jackie Bradley Jr,bradlja02,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-236 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4389,Austin Gomber,5,730,Austin Gomber,gombeau01,1704,Austin Romine,rominau01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-730 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4851,Daniel Hudson,5,933,Daniel Hudson,hudsoda01,988,Daniel Johnson,johnsda07,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-933 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,5066,Nick Neidert,5,1408,Nick Neidert,neideni01,71,Nick Anderson,anderni01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1408 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4431,Zack Greinke,5,774,Zack Greinke,greinza01,1628,Zac Reininger,reiniza01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-774 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,5054,Mike Minor,5,1335,Mike Minor,minormi01,1370,Mike Morin,morinmi01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1335 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,5107,Ryne Harper,5,824,Ryne Harper,harpery01,823,Bryce Harper,harpebr03,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-824 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4783,Alex Reyes,5,1635,Alex Reyes,reyesal02,1637,Pablo Reyes,reyespa01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1635 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4914,Humberto Castellanos,5,339,Humberto Castellanos,castehu01,97,Humberto Arteaga,arteahu01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-339 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4526,Brent Suter,5,1943,Brent Suter,suterbr01,942,Brant Hurter,hurtebr01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1943 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4310,Caleb Smith,5,1845,Caleb Smith,smithca03,1853,Cade Smith,smithca06,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-1845 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4754,Dane Dunning,5,548,Dane Dunning,dunnida01,977,Dan Jennings,jennida01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-548 +player+AF8-ambiguous+AF8-match,Player could match 6 different SbaPlayers,5133,Taylor Rogers,5,1689,Taylor Rogers,rogerta01,1691,Tyler Rogers,rogerty01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1689 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4308,Kyle Hendricks,5,856,Kyle Hendricks,hendrky01,435,Kyle Crick,crickky01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-856 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,4171,Chris Martin,5,1214,Chris Martin,martich02,1216,Richie Martin,martiri01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1214 +player+AF8-ambiguous+AF8-match,Player could match 14 different SbaPlayers,5017,Luis Garcia,5,694,Luis Garcia Jr,garcilu04,690,Adolis Garcia,garciad02,0.88,Choose correct match from 5 options,USE+AF8-SBA+AF8-694 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4656,Tyler Kinley,5,1050,Tyler Kinley,kinlety01,717,Tyler Gilbert,gilbety01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1050 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4434,Aaron Bummer,5,279,Aaron Bummer,bummeaa01,667,Carson Fulmer,fulmeca01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-279 +player+AF8-ambiguous+AF8-match,Player could match 7 different SbaPlayers,4194,Yimi Garcia,5,680,Yimi Garcia,garciyi01,688,Deivi Garcia,garcide01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-680 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4436,Martin Perez,5,1535,Martin Perez,perezma02,1582,Martin Prado,pradoma01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1535 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,4571,Miguel Castro,5,350,Miguel Castro,castrmi01,1757,Miguel Sano,sanomi01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-350 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4652,John Gant,5,677,John Gant,gantjo01,2,John Means,meansjo01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-677 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4416,Blake Taylor,5,1966,Blake Taylor,taylobl01,1968,Beau Taylor,taylobe11,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1966 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,5158,Wade LeBlanc,5,1104,Wade LeBlanc,leblawa01,1105,Charles Leblanc,leblach01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1104 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4825,Carlos Estevez,5,585,Carlos Estevez,estevca01,1537,Carlos Perez,perezca02,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-585 +player+AF8-ambiguous+AF8-match,Player could match 6 different SbaPlayers,5149,Trevor Williams,5,2156,Trevor Williams,willitr01,2155,Taylor Williams,willita01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-2156 +player+AF8-ambiguous+AF8-match,Player could match 6 different SbaPlayers,4482,Brett Martin,5,1218,Brett Martin,martibr01,828,Brett Harris,harribr02,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1218 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4755,Trevor May,5,1248,Trevor May,maytr01,150,Trevor Bauer,bauertr01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1248 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4402,Taijuan Walker,5,2105,Taijuan Walker,walketa01,2107,Jordan Walker,walkejo02,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-2105 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4554,Steven Brault,5,243,Steven Brault,braulst01,1243,Steven Matz,matzst01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-243 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4974,Jose Alvarado,5,58,Jose Alvarado,alvarjo03,59,Jose Alvarez,alvarjo02,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-58 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4459,Bryse Wilson,5,2171,Bryse Wilson,wilsobr02,2166,Bobby Wilson,wilsobo02,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-2171 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,1467,Joe Smith,3,1842,Joe Smith,smithjo05,1852,Josh Smith,smithjo11,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-1842 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4519,Jorge Alcala,5,32,Jorge Alcala,alcaljo01,40,Jorge Alfaro,alfarjo01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-32 +player+AF8-ambiguous+AF8-match,Player could match 8 different SbaPlayers,4794,Anthony Banda,5,121,Anthony Banda,bandaan01,176,Anthony Bender,bendean01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-121 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4399,Garrett Richards,5,1645,Garrett Richards,richaga01,439,Garrett Crochet,crochga01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-1645 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,5004,Kyle Crick,5,435,Kyle Crick,crickky01,696,Kyle Garlick,garliky01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-435 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,1511,Jose Quijada,3,1594,Jose Quijada,quijajo01,1596,Jose Quintana,quintjo01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-1594 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4866,Derek Holland,5,914,Derek Holland,hollade01,915,Greg Holland,hollagr01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-914 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4396,Griffin Canning,5,317,Griffin Canning,cannigr01,408,Griffin Conine,coningr01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-317 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4395,Andrew Heaney,5,843,Andrew Heaney,heanean01,363,Andrew Chafin,chafian01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-843 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,5018,Luis Patino,5,1504,Luis Patino,patinlu01,1240,Luis Matos,matoslu02,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1504 +player+AF8-ambiguous+AF8-match,Player could match 8 different SbaPlayers,1079,Austin Adams,3,16,Austin Adams,adamsau02,471,Austin Davis,davisau01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-16 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,4616,Taylor Hearn,5,844,Taylor Hearn,hearnta01,2116,Taylor Ward,wardta01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-844 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4446,Greg Holland,5,915,Greg Holland,hollagr01,914,Derek Holland,hollade01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-915 +player+AF8-ambiguous+AF8-match,Player could match 8 different SbaPlayers,4532,Brett Anderson,5,66,Brett Anderson,anderbr04,69,Brian Anderson,anderbr06,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-66 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,4531,Anthony Bass,5,145,Anthony Bass,bassan01,121,Anthony Banda,bandaan01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-145 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4971,Jorge Lopez,5,1144,Jorge Lopez,lopezjo02,1148,Alejo Lopez,lopezal03,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1144 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4445,Brady Singer,5,1827,Brady Singer,singebr01,2226,Brad Ziegler,zieglbr01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1827 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4637,Logan Allen,5,45,Logan Allen,allenlo01,48,Logan Allen,allenlo02,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-45 +player+AF8-ambiguous+AF8-match,Player could match 10 different SbaPlayers,4835,Chase Anderson,5,67,Chase Anderson,anderch01,72,Shaun Anderson,andersh01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-67 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4478,Matt Andriese,5,76,Matt Andriese,andrima01,131,Matt Barnes,barnema01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-76 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4420,Jake Arrieta,5,94,Jake Arrieta,arrieja01,596,Jake Faria,fariaja01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-94 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4381,Daniel Bard,5,125,Daniel Bard,bardda01,536,Daniel Duarte,duartda01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-125 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4927,Jacob Barnes,5,133,Jacob Barnes,barneja01,991,JaCoby Jones,jonesja07,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-133 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4811,Brandon Bielak,5,195,Brandon Bielak,bielabr01,173,Brandon Belt,beltbr01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-195 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4456,Trevor Cahill,5,304,Trevor Cahill,cahiltr01,1294,Trevor Megill,megiltr01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-304 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4305,Carlos Carrasco,5,331,Carlos Carrasco,carraca01,420,Carlos Correa,correca01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-331 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4560,Taylor Clarke,5,384,Taylor Clarke,clarkta01,397,Taylor Cole,coleta01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-384 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4742,Alex Claudio,5,387,Alex Claudio,claudal01,210,Alex Blandino,blandal01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-387 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4269,Patrick Corbin,5,416,Patrick Corbin,corbipa01,115,Patrick Bailey,bailepa01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-416 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4290,Zach Davies,5,465,Zach Davies,davieza02,472,Noah Davis,davisno01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-465 +player+AF8-ambiguous+AF8-match,Player could match 7 different SbaPlayers,4801,Austin Davis,5,471,Austin Davis,davisau01,16,Austin Adams,adamsau02,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-471 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1950,Wade Davis,3,468,Wade Davis,daviswa01,474,JD Davis,davisjd01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-468 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4836,Chase De Jong,5,478,Chase De Jong,dejonch01,67,Chase Anderson,anderch01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-478 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4257,Rafael Dolis,5,523,Rafael Dolis,dolisra01,499,Rafael Devers,deverra01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-523 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,2601,Jake Faria,1,596,Jake Faria,fariaja01,94,Jake Arrieta,arrieja01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-596 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4643,Buck Farmer,5,597,Buck Farmer,farmebu01,598,Kyle Farmer,farmeky01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-597 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4237,Josh Fleming,5,623,Josh Fleming,flemijo01,607,Jose Fermin,fermijo01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-623 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4521,Matt Foster,5,638,Matt Foster,fostema01,610,Matt Festa,festama01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-638 +player+AF8-ambiguous+AF8-match,Player could match 7 different SbaPlayers,4322,Bryan Garcia,5,685,Bryan Garcia,garcibr01,689,Rony Garcia,garciro03,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-685 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4488,Amir Garrett,5,698,Amir Garrett,garream01,700,Reed Garrett,garrere01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-698 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4814,Braxton Garrett,5,701,Braxton Garrett,garrebr01,699,Stone Garrett,garrest01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-701 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4999,Kevin Ginkel,5,722,Kevin Ginkel,ginkeke01,1025,Kevin Kelly,kellyke02,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-722 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4712,Chi Chi Gonzalez,5,737,Chi Chi Gonzalez,gonzach01,739,Gio Gonzalez,gonzagi01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-737 +player+AF8-ambiguous+AF8-match,Player could match 7 different SbaPlayers,4405,David Hale,5,805,David Hale,haleda02,457,David Dahl,dahlda01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-805 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4291,JA Happ,5,821,JA Happ,happja01,820,Ian Happ,happia01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-821 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,5034,Matt Harvey,5,835,Matt Harvey,harvema01,131,Matt Barnes,barnema01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-835 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,5103,Ryan Helsley,5,853,Ryan Helsley,helslry01,1584,Ryan Pressly,pressry01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-853 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,5137,Tim Hill,5,900,Tim Hill,hillti01,902,Cam Hill,hillca02,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-900 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4731,Spencer Howard,5,930,Spencer Howard,howarsp01,924,Spencer Horwitz,horwisp01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-930 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4749,Sam Howard,5,929,Sam Howard,howarsa01,903,Sam Hilliard,hillisa01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-929 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4952,Joe Jimenez,5,979,Joe Jimenez,jimenjo02,982,Leo Jimenez,jimenle01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-979 +player+AF8-ambiguous+AF8-match,Player could match 6 different SbaPlayers,4721,Anthony Kay,5,1012,Anthony Kay,kayan01,145,Anthony Bass,bassan01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1012 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4199,Brad Keller,5,1016,Brad Keller,kellebr01,1322,Brad Miller,millebr02,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1016 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4327,Mitch Keller,5,1017,Mitch Keller,kellemi03,1500,Mitchell Parker,parkemi01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1017 +player+AF8-ambiguous+AF8-match,Player could match 6 different SbaPlayers,4258,Brandon Kintzler,5,1052,Brandon Kintzler,kintzbr01,1059,Branden Kline,klinebr01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1052 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4703,Michael Lorenzen,5,1151,Michael Lorenzen,lorenmi01,1539,Michael Perez,perezmi03,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-1151 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,4966,Jordan Lyles,5,1171,Jordan Lyles,lylesjo01,1103,Jordan Leasure,leasujo01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1171 +player+AF8-ambiguous+AF8-match,Player could match 7 different SbaPlayers,4631,Andrew Miller,5,1320,Andrew Miller,millean01,1703,Andrew Romine,rominan01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1320 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,5084,Rafael Montero,5,1352,Rafael Montero,montera01,1465,Rafael Ortega,ortegra01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1352 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4209,David Peterson,5,1548,David Peterson,peterda01,1662,David Robertson,roberda08,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-1548 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4496,Cody Ponce,5,1573,Cody Ponce,ponceco01,1579,Cody Poteet,poteeco01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1573 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4980,Jose Quintana,5,1596,Jose Quintana,quintjo01,1594,Jose Quijada,quijajo01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-1596 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4227,Tanner Rainey,5,1599,Tanner Rainey,raineta01,122,Tanner Banks,banksta01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-1599 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4636,Brooks Raley,5,1601,Brooks Raley,raleybr01,1110,Brooks Lee,leebr02,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1601 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4146,Erasmo Ramirez,5,1604,Erasmo Ramirez,ramirer02,1607,Yefry Ramirez,ramirye01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-1604 +player+AF8-ambiguous+AF8-match,Player could match 12 different SbaPlayers,4340,Joely Rodriguez,5,1673,Joely Rodriguez,rodrijo06,1677,Jefry Rodriguez,rodrije01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1673 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4863,Dennis Santana,5,1762,Dennis Santana,santade01,1760,Danny Santana,santada01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1762 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4196,Tanner Scott,5,1788,Tanner Scott,scottta01,1787,Tayler Scott,scottta02,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1788 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,4251,Riley Smith,5,1850,Riley Smith,smithri01,1841,Will Smith,smithwi05,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1850 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4512,Wander Suero,5,1940,Wander Suero,suerowa01,646,Wander Franco,francwa01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1940 +player+AF8-ambiguous+AF8-match,Player could match 10 different SbaPlayers,4655,Jose Urena,5,2035,Jose Urena,urenajo01,1973,Jose Tena,tenajo01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-2035 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4127,Cesar Valdez,5,2046,Cesar Valdez,valdece01,870,Cesar Hernandez,hernace02,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-2046 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4586,Phillips Valdez,5,2047,Phillips Valdez,valdeph01,589,Phillip Evans,evansph01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-2047 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4610,Vince Velasquez,5,2065,Vince Velasquez,velasvi01,2067,Andrew Velazquez,velazan01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-2065 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4702,Austin Voth,5,2091,Austin Voth,vothau01,427,Austin Cox,coxau01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-2091 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,5047,Michael Wacha,5,2093,Michael Wacha,wachami01,371,Michael Chavis,chavimi01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-2093 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4614,Rowan Wick,5,2147,Rowan Wick,wickro01,2148,Jordan Wicks,wicksjo01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-2147 +player+AF8-ambiguous+AF8-match,Player could match 8 different SbaPlayers,4683,Justin Wilson,5,2167,Justin Wilson,wilsoju10,2162,Justin Williams,williju02,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-2167 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4678,Dan Winkler,5,2178,Dan Winkler,winklda01,1051,Ian Kinsler,kinslia01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-2178 +player+AF8-ambiguous+AF8-match,Player could match 7 different SbaPlayers,4355,Matt Wisler,5,2183,Matt Wisler,wislema01,167,Matt Belisle,belisma01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-2183 +player+AF8-ambiguous+AF8-match,Player could match 6 different SbaPlayers,4813,Brandon Workman,5,2198,Brandon Workman,workmbr01,249,Brandon Brennan,brennbr01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-2198 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4345,Ryan Yarbrough,5,2208,Ryan Yarbrough,yarbrry01,8,Bryan Abreu,abreubr01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-2208 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4295,Kyle Zimmer,5,2228,Kyle Zimmer,zimmeky01,598,Kyle Farmer,farmeky01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-2228 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4705,Tyler Zuber,5,2233,Tyler Zuber,zuberty01,717,Tyler Gilbert,gilbety01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-2233 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4278,Luis Robert,5,1660,Luis Robert,roberlu01,1467,Luis Ortiz,ortizlu03,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1660 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4460,Tyler ONeill,5,1463,Tyler ONeill,oneilty01,1417,Tyler Nevin,nevinty01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-1463 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4271,Carlos Correa,5,420,Carlos Correa,correca01,331,Carlos Carrasco,carraca01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-420 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4289,Brandon Crawford,5,430,Brandon Crawford,crawfbr01,2198,Brandon Workman,workmbr01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-430 +player+AF8-ambiguous+AF8-match,Player could match 10 different SbaPlayers,4217,Jose Ramirez,5,1608,Jose Ramirez,ramirjo01,1606,Noe Ramirez,ramirno01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1608 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,5056,Mike Zunino,5,2234,Mike Zunino,zuninmi01,1335,Mike Minor,minormi01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-2234 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4658,Marcus Semien,5,1799,Marcus Semien,semiema01,1928,Marcus Stroman,stromma01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1799 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,4264,Kyle Tucker,5,2023,Kyle Tucker,tuckeky01,2022,Cole Tucker,tuckeco01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-2023 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4287,Bryce Harper,5,823,Bryce Harper,harpebr03,824,Ryne Harper,harpery01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-823 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4639,Vladimir Guerrero Jr,5,789,Vladimir Guerrero Jr,guerrvl02,797,Vladimir Gutierrez,gutievl01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-789 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4274,Harrison Bader,5,110,Harrison Bader,baderha01,127,Addison Barger,bargead01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-110 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,1414,Jake Rogers,3,1692,Jake Rogers,rogerja03,283,Jake Burger,burgeja01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1692 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4273,Brandon Nimmo,5,1425,Brandon Nimmo,nimmobr01,1374,Brandon Morrow,morrobr01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1425 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4618,Bryan Reynolds,5,1641,Bryan Reynolds,reynobr01,1639,Mark Reynolds,reynoma01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-1641 +player+AF8-ambiguous+AF8-match,Player could match 9 different SbaPlayers,4803,Austin Riley,5,1649,Austin Riley,rileyau01,253,Austin Brice,briceau01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1649 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4233,Corey Seager,5,1794,Corey Seager,seageco01,1883,Cory Spangenberg,spangco01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1794 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4413,Starling Marte,5,1208,Starling Marte,martest01,348,Starlin Castro,castrst01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1208 +player+AF8-ambiguous+AF8-match,Player could match 9 different SbaPlayers,4168,Tim Anderson,5,73,Tim Anderson,anderti01,74,Ian Anderson,anderia01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-73 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4423,Matt Olson,5,1461,Matt Olson,olsonma02,2102,Matt Waldron,waldrma01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1461 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,5057,Mitch Garver,5,702,Mitch Garver,garvemi01,1500,Mitchell Parker,parkemi01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-702 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4505,Willson Contreras,5,410,Willson Contreras,contrwi01,411,William Contreras,contrwi02,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-410 +player+AF8-ambiguous+AF8-match,Player could match 6 different SbaPlayers,4350,Enrique Hernandez,5,871,Enrique Hernandez,hernaen02,867,Felix Hernandez,hernafe02,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-871 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,4552,Christian Arroyo,5,96,Christian Arroyo,arroych01,406,Christian Colon,colonch01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-96 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4149,Manny Machado,5,1175,Manny Machado,machama01,1176,Andres Machado,machaan02,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1175 +player+AF8-ambiguous+AF8-match,Player could match 10 different SbaPlayers,4183,Brandon Lowe,5,1156,Brandon Lowe,lowebr01,116,Brandon Bailey,bailebr01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1156 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4392,Joey Gallo,5,674,Joey Gallo,gallojo01,321,Joey Cantillo,cantijo01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-674 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4715,Jorge Polanco,5,1570,Jorge Polanco,polanjo01,220,Jorge Bonifacio,bonifjo01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1570 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4733,Nicky Lopez,5,1149,Nicky Lopez,lopezni01,1143,Jack Lopez,lopezja03,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1149 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4225,Willy Adames,5,14,Willy Adames,adamewi01,17,Riley Adams,adamsri03,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-14 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4297,Joey Wendle,5,2135,Joey Wendle,wendljo01,2136,Joey Wentz,wentzjo01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-2135 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,5127,Steven Duggar,5,543,Steven Duggar,duggast01,1881,Steven Souza Jr,souzast01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-543 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4876,Dustin Garneau,5,697,Dustin Garneau,garnedu01,703,Justin Garza,garzaju01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-697 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4918,Hunter Renfroe,5,1631,Hunter Renfroe,renfrhu01,770,Hunter Greene,greenhu01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1631 +player+AF8-ambiguous+AF8-match,Player could match 7 different SbaPlayers,4159,Brandon Belt,5,173,Brandon Belt,beltbr01,195,Brandon Bielak,bielabr01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-173 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4304,Luis Arraez,5,93,Luis Arraez,arraelu01,138,Luis Barrera,barrelu01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-93 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4224,Trevor Story,5,1914,Trevor Story,storytr01,1248,Trevor May,maytr01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1914 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4198,George Springer,5,1888,George Springer,springe01,1873,George Soriano,soriage01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1888 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4181,Will D Smith,5,1841,Will Smith,smithwi05,1843,Will Smith,smithwi04,0.909,Choose correct match from 2 options,USE+AF8-SBA+AF8-1841 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4352,Ramon Laureano,5,1097,Ramon Laureano,laurera01,2037,Ramon Urias,uriasra01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1097 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1748,Pablo Reyes,3,1637,Pablo Reyes,reyespa01,1635,Alex Reyes,reyesal02,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1637 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4771,Kyle Schwarber,5,1784,Kyle Schwarber,schwaky01,598,Kyle Farmer,farmeky01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1784 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4148,Freddie Freeman,5,652,Freddie Freeman,freemfr01,651,Mike Freeman,freemmi01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-652 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4383,Kolten Wong,5,2188,Kolten Wong,wongko01,2190,Kean Wong,wongke01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-2188 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4602,Ryan McMahon,5,1286,Ryan McMahon,mcmahry01,1180,Ryan Madson,madsory01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1286 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4356,Yan Gomes,5,731,Yan Gomes,gomesya01,728,Ryan Goins,goinsry01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-731 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4372,Ty France,5,642,Ty France,francty01,643,JP France,francjp01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-642 +player+AF8-ambiguous+AF8-match,Player could match 8 different SbaPlayers,4318,Teoscar Hernandez,5,873,Teoscar Hernandez,hernate01,870,Cesar Hernandez,hernace02,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-873 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4973,Jose Altuve,5,56,Jose Altuve,altuvjo01,59,Jose Alvarez,alvarjo02,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-56 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4553,Ramon Urias,5,2037,Ramon Urias,uriasra01,1716,Ramon Rosso,rossora01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-2037 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4528,Danny Jansen,5,969,Danny Jansen,janseda01,130,Danny Barnes,barneda02,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-969 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4369,Alex Avila,5,104,Alex Avila,avilaal01,308,Alex Call,callal02,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-104 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4603,Adam Frazier,5,648,Adam Frazier,fraziad01,647,Todd Frazier,frazito01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-648 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,5011,Lewin Diaz,5,506,Lewin Diaz,diazle01,503,Edwin Diaz,diazed04,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-506 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4584,Evan Longoria,5,1140,Evan Longoria,longoev01,628,Estevan Florial,flories01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1140 +player+AF8-ambiguous+AF8-match,Player could match 7 different SbaPlayers,4248,Justin Turner,5,2029,Justin Turner,turneju01,226,Justin Bour,bourju01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-2029 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1766,Rafael Ortega,3,1465,Rafael Ortega,ortegra01,1352,Rafael Montero,montera01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1465 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4249,Sean Murphy,5,1390,Sean Murphy,murphse01,1387,Daniel Murphy,murphda08,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1390 +player+AF8-ambiguous+AF8-match,Player could match 6 different SbaPlayers,4930,Jake Fraley,5,641,Jake Fraley,fraleja01,596,Jake Faria,fariaja01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-641 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4885,Elias Diaz,5,502,Elias Diaz,diazel01,509,Alexis Diaz,diazal03,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-502 +player+AF8-ambiguous+AF8-match,Player could match 6 different SbaPlayers,4524,Francisco Lindor,5,1124,Francisco Lindor,lindofr01,1126,Francisco Liriano,liriafr01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1124 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4472,Josh Donaldson,5,526,Josh Donaldson,donaljo02,1404,Josh Naylor,naylojo01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-526 +player+AF8-ambiguous+AF8-match,Player could match 12 different SbaPlayers,4354,Austin Hays,5,839,Austin Hays,haysau01,16,Austin Adams,adamsau02,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-839 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,4894,Francisco Mejia,5,1517,Francisco Pena,penafr01,87,Francisco Arcia,arciafr01,0.828,Choose correct match from 5 options,USE+AF8-SBA+AF8-1517 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,4805,Avisail Garcia,5,678,Avisail Garcia,garciav01,683,Aramis Garcia,garciar01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-678 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4941,Jason Castro,5,347,Jason Castro,castrja01,351,Anthony Castro,castran02,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-347 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4492,Nick Madrigal,5,1178,Nick Madrigal,madrini01,1230,Nick Martini,martini02,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1178 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4982,Josh Bell,5,168,Josh Bell,belljo02,20,Jo Adell,adelljo01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-168 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4747,Luis Urias,5,2039,Luis Urias,uriaslu01,658,Luis Frias,friaslu01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-2039 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4476,Tommy Edman,5,558,Tommy Edman,edmanto01,859,Tommy Henry,henryto01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-558 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,5136,Thairo Estrada,5,587,Thairo Estrada,estrath01,586,Marco Estrada,estrama01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-587 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4641,Rafael Devers,5,499,Rafael Devers,deverra01,523,Rafael Dolis,dolisra01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-499 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4947,Jesus Sanchez,5,1749,Jesus Sanchez,sanchje02,1939,Jesus Sucre,sucreje01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1749 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4878,Dylan Carlson,5,327,Dylan Carlson,carlsdy01,355,Dylan Cease,ceasedy01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-327 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1994,Yordan Alvarez,3,61,Yordan Alvarez,alvaryo01,62,Francisco Alvarez,alvarfr01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-61 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4690,Aledmys Diaz,5,505,Aledmys Diaz,diazal02,509,Alexis Diaz,diazal03,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-505 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4888,Eric Haase,5,801,Eric Haase,haaseer01,926,Eric Hosmer,hosmeer01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-801 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4231,Michael Brantley,5,240,Michael Brantley,brantmi02,113,Michel Baez,baezmi01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-240 +player+AF8-ambiguous+AF8-match,Player could match 13 different SbaPlayers,4239,Brian Anderson,5,69,Brian Anderson,anderbr06,74,Ian Anderson,anderia01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-69 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4154,Miguel Rojas,5,1694,Miguel Rojas,rojasmi02,2055,Miguel Vargas,vargami01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1694 +player+AF8-ambiguous+AF8-match,Player could match 7 different SbaPlayers,4942,JD Martinez,5,1229,JD Martinez,martijd02,1222,Jose Martinez,martijo08,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1229 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4132,Tyler Stephenson,5,1905,Tyler Stephenson,stephty01,1904,Robert Stephenson,stephro01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1905 +player+AF8-ambiguous+AF8-match,Player could match 7 different SbaPlayers,4329,Austin Nola,5,1432,Austin Nola,nolaau01,427,Austin Cox,coxau01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1432 +player+AF8-ambiguous+AF8-match,Player could match 6 different SbaPlayers,4208,Austin Slater,5,1838,Austin Slater,slateau01,1837,Justin Slaten,slateju01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1838 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,1846,Seth Brown,3,265,Seth Brown,brownse01,166,Seth Beer,beerse01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-265 +player+AF8-ambiguous+AF8-match,Player could match 7 different SbaPlayers,4155,Jose Abreu,5,7,Jose Abreu,abreujo02,1937,Jose Suarez,suarejo01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-7 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,1704,Mitch Haniger,3,818,Mitch Haniger,hanigmi01,2143,Mitch White,whitemi03,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-818 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4787,Andrew Benintendi,5,177,Andrew Benintendi,beninan01,1065,Andrew Knizner,kniznan01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-177 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4202,Chris Taylor,5,1964,Chris Taylor,tayloch03,1739,Chris Sale,salech01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1964 +player+AF8-ambiguous+AF8-match,Player could match 6 different SbaPlayers,4177,Leury Garcia,5,679,Leury Garcia,garcile02,689,Rony Garcia,garciro03,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-679 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,1821,Ryan Zimmerman,3,2229,Ryan Zimmerman,zimmery01,2230,Jordan Zimmermann,zimmejo02,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-2229 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4547,Garrett Cooper,5,415,Garrett Cooper,coopega03,439,Garrett Crochet,crochga01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-415 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4385,Robbie Grossman,5,779,Robbie Grossman,grossro01,1620,Robbie Ray,rayro02,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-779 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4260,Nelson Cruz,5,447,Nelson Cruz,cruzne02,449,Oneil Cruz,cruzon01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-447 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4457,Max Kepler,5,1031,Max Kepler,keplema01,1314,Max Meyer,meyerma01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1031 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4881,Eduardo Escobar,5,581,Eduardo Escobar,escobed01,1738,Eduardo Salazar,salazed01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-581 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4361,Mark Canha,5,316,Mark Canha,canhama01,1234,Mark Mathias,mathima01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-316 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4403,Wilmer Flores,5,627,Wilmer Flores,florewi01,516,Wilmer Difo,difowi01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-627 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,5010,Lane Thomas,5,1978,Lane Thomas,thomala02,1979,Alek Thomas,thomaal01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1978 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4772,JD Davis,5,474,JD Davis,davisjd01,468,Wade Davis,daviswa01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-474 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4261,Andres Gimenez,5,721,Andres Gimenez,gimenan01,1384,Andres Munoz,munozan01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-721 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4508,Josh Harrison,5,829,Josh Harrison,harrijo05,831,Monte Harrison,harrimo01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-829 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,1177,Charlie Culberson,3,453,Charlie Culberson,culbech01,1991,Charlie Tilson,tilsoch01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-453 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,1740,Odubel Herrera,3,882,Odubel Herrera,herreod01,883,Rosell Herrera,herrero02,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-882 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4197,Alex Verdugo,5,2069,Alex Verdugo,verdual01,591,Alex Faedo,faedoal01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-2069 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4667,Bradley Zimmer,5,2227,Bradley Zimmer,zimmebr01,2228,Kyle Zimmer,zimmeky01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-2227 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4333,Kyle Lewis,5,1118,Kyle Lewis,lewisky01,1119,Royce Lewis,lewisro02,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1118 +player+AF8-ambiguous+AF8-match,Player could match 8 different SbaPlayers,4964,Jonathan Villar,5,2079,Jonathan Villar,villajo01,84,Jonathan Arauz,arauzjo01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-2079 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,4713,Austin Meadows,5,1290,Austin Meadows,meadoau01,16,Austin Adams,adamsau02,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1290 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4786,Amed Rosario,5,1711,Amed Rosario,rosaram01,1710,Eddie Rosario,rosared01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1711 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4306,Donovan Solano,5,1868,Donovan Solano,solando01,2113,Donovan Walton,waltodo01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1868 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4375,Starlin Castro,5,348,Starlin Castro,castrst01,349,Harold Castro,castrha01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-348 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4965,Jordan Luplow,5,1168,Jordan Luplow,luplojo01,917,Jordan Holloway,hollojo01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1168 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4391,Eloy Jimenez,5,980,Eloy Jimenez,jimenel02,982,Leo Jimenez,jimenle01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-980 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4406,Ian Happ,5,820,Ian Happ,happia01,821,JA Happ,happja01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-820 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4348,Jonathan Schoop,5,1779,Jonathan Schoop,schoojo01,318,Jonathan Cannon,cannojo02,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-1779 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4808,Billy Hamilton,5,810,Billy Hamilton,hamilbi02,811,Ian Hamilton,hamilia01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-810 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4418,Yandy Diaz,5,507,Yandy Diaz,diazya01,511,Yainer Diaz,diazya02,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-507 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4556,Kyle Seager,5,1793,Kyle Seager,seageky01,598,Kyle Farmer,farmeky01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-1793 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4483,Adalberto Mondesi,5,1349,Adalberto Mondesi,mondera02,1296,Adalberto Mejia,mejiaad01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1349 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,4525,Anthony Rizzo,5,1658,Anthony Rizzo,rizzoan01,351,Anthony Castro,castran02,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1658 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4285,David Fletcher,5,624,David Fletcher,fletcda02,625,Dominic Fletcher,fletcdo01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-624 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4793,Anthony Alford,5,41,Anthony Alford,alforan01,121,Anthony Banda,bandaan01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-41 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,5021,Luis Torrens,5,2002,Luis Torrens,torrelu01,1240,Luis Matos,matoslu02,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-2002 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4481,Eddie Rosario,5,1710,Eddie Rosario,rosared01,1711,Amed Rosario,rosaram01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1710 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4236,Luis Guillorme,5,792,Luis Guillorme,guilllu01,716,Luis Gil,gillu01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-792 +player+AF8-ambiguous+AF8-match,Player could match 6 different SbaPlayers,5134,Taylor Ward,5,2116,Taylor Ward,wardta01,844,Taylor Hearn,hearnta01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-2116 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4745,Sam Hilliard,5,903,Sam Hilliard,hillisa01,929,Sam Howard,howarsa01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-903 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4665,Christian Yelich,5,2212,Christian Yelich,yelicch01,1482,Cristian Pache,pachecr01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-2212 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4167,Dylan Moore,5,1358,Dylan Moore,mooredy01,425,Dylan Covey,coveydy01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-1358 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,4590,Jace Peterson,5,1547,Jace Peterson,peterja01,1514,Joc Pederson,pederjo01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1547 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4812,Brandon Drury,5,535,Brandon Drury,drurybr01,2196,Brandon Woodruff,woodrbr01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-535 +player+AF8-ambiguous+AF8-match,Player could match 6 different SbaPlayers,4323,Kyle Farmer,5,598,Kyle Farmer,farmeky01,597,Buck Farmer,farmebu01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-598 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4506,Brett Gardner,5,695,Brett Gardner,gardnbr01,66,Brett Anderson,anderbr04,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-695 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4949,Jo Adell,5,20,Jo Adell,adelljo01,168,Josh Bell,belljo02,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-20 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4462,Pedro Severino,5,1804,Pedro Severino,severpe01,1929,Pedro Strop,stroppe01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1804 +player+AF8-ambiguous+AF8-match,Player could match 11 different SbaPlayers,4425,Tyler Wade,5,2094,Tyler Wade,wadety01,2125,Tyler Webb,webbty01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-2094 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,4624,David Peralta,5,1522,David Peralta,peralda01,611,David Festa,festada01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1522 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4371,Ryan Jeffers,5,975,Ryan Jeffers,jeffery01,2128,Ryan Weber,weberry01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-975 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4480,Christian Vazquez,5,2063,Christian Vazquez,vazquch01,2078,Christian Villanueva,villach01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-2063 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,5117,Sergio Alcantara,5,34,Sergio Alcantara,alcanse01,35,Sandy Alcantara,alcansa01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-34 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,5070,Nick Solak,5,1867,Nick Solak,solakni01,1866,Nick Sogard,sogarni01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1867 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,5050,Miguel Sano,5,1757,Miguel Sano,sanomi01,1750,Miguel Sanchez,sanchmi01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1757 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,5097,Robinson Chirinos,5,373,Robinson Chirinos,chiriro01,319,Robinson Cano,canoro01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-373 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4331,Eric Hosmer,5,926,Eric Hosmer,hosmeer01,801,Eric Haase,haaseer01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-926 +player+AF8-ambiguous+AF8-match,Player could match 17 different SbaPlayers,4349,Austin Barnes,5,132,Austin Barnes,barneau01,253,Austin Brice,briceau01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-132 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,5153,Tyler Naquin,5,1399,Tyler Naquin,naquity01,103,Tyler Austin,austity01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1399 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,4594,Charlie Blackmon,5,205,Charlie Blackmon,blackch02,134,Charlie Barnes,barnech01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-205 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4201,Michael Conforto,5,407,Michael Conforto,confomi01,1875,Michael Soroka,sorokmi01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-407 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4309,Nick Ahmed,5,26,Nick Ahmed,ahmedni01,1605,Nick Ramirez,ramirni01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-26 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,4988,Josh Rojas,5,1695,Josh Rojas,rojasjo01,1696,Jose Rojas,rojasjo02,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1695 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4899,Garrett Hampson,5,814,Garrett Hampson,hampsga01,1645,Garrett Richards,richaga01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-814 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4880,Eddy Alvarez,5,60,Eddy Alvarez,alvared01,59,Jose Alvarez,alvarjo02,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-60 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,5016,Luis V Garcia,5,694,Luis Garcia Jr,garcilu04,690,Adolis Garcia,garciad02,0.815,Choose correct match from 4 options,USE+AF8-SBA+AF8-694 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,1991,Yonathan Daza,3,476,Yonathan Daza,dazayo01,84,Jonathan Arauz,arauzjo01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-476 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4984,Josh Naylor,5,1404,Josh Naylor,naylojo01,1967,Josh Taylor,taylojo02,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-1404 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4739,Asdrubal Cabrera,5,299,Asdrubal Cabrera,cabreas01,303,Oswaldo Cabrera,cabreos01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-299 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1514,Jose Rondon,3,1707,Jose Rondon,rondojo02,1450,Joseph Odom,odomjo01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1707 +player+AF8-ambiguous+AF8-match,Player could match 8 different SbaPlayers,4619,Christian Walker,5,2104,Christian Walker,walkech02,971,Cristian Javier,javiecr01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-2104 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,4453,Brad Miller,5,1322,Brad Miller,millebr02,1016,Brad Keller,kellebr01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1322 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,5006,Kyle Garlick,5,696,Kyle Garlick,garliky01,435,Kyle Crick,crickky01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-696 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,5132,Taylor Jones,5,992,Taylor Jones,jonesta01,1689,Taylor Rogers,rogerta01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-992 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,5000,Kevin Newman,5,1420,Kevin Newman,newmake01,706,Kevin Gausman,gausmke01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1420 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4740,Corey Dickerson,5,513,Corey Dickerson,dickeco01,512,Alex Dickerson,dickeal01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-513 +player+AF8-ambiguous+AF8-match,Player could match 13 different SbaPlayers,4342,Cesar Hernandez,5,870,Cesar Hernandez,hernace02,880,Carlos Hernandez,hernaca04,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-870 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4647,Victor Reyes,5,1638,Victor Reyes,reyesvi01,1666,Victor Robles,roblevi01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1638 +player+AF8-ambiguous+AF8-match,Player could match 6 different SbaPlayers,4191,Anthony Santander,5,1764,Anthony Santander,santaan02,176,Anthony Bender,bendean01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1764 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4128,Andrew Stevenson,5,1906,Andrew Stevenson,stevean01,1907,Cal Stevenson,steveca01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1906 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4365,Bobby Dalbec,5,458,Bobby Dalbec,dalbebo01,237,Bobby Bradley,bradlbo01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-458 +player+AF8-ambiguous+AF8-match,Player could match 11 different SbaPlayers,5164,Yadiel Hernandez,5,875,Yadiel Hernandez,hernaya01,867,Felix Hernandez,hernafe02,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-875 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,4555,Jose Trevino,5,2013,Jose Trevino,trevijo01,1973,Jose Tena,tenajo01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-2013 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,1360,Harold Ramirez,3,1609,Harold Ramirez,ramirha02,1611,Yohan Ramirez,ramiryo01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-1609 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4792,Andy Young,5,2220,Andy Young,youngan02,2218,Danny Young,youngda02,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-2220 +player+AF8-ambiguous+AF8-match,Player could match 7 different SbaPlayers,4804,Austin Romine,5,1704,Austin Romine,rominau01,253,Austin Brice,briceau01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1704 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,5069,Nick Senzel,5,1802,Nick Senzel,senzeni01,1410,Nick Nelson,nelsoni01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1802 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4561,Willi Castro,5,352,Willi Castro,castrwi01,350,Miguel Castro,castrmi01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-352 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1535,Juan Lagares,3,1083,Juan Lagares,lagarju01,24,Julian Aguiar,aguiaju01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1083 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4969,Jorge Alfaro,5,40,Jorge Alfaro,alfarjo01,32,Jorge Alcala,alcaljo01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-40 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,5002,Khris Davis,5,469,Khris Davis,daviskh01,467,Chris Davis,davisch02,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-469 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4244,Jose Iglesias,5,949,Jose Iglesias,iglesjo01,950,Raisel Iglesias,iglesra01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-949 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4687,Jorge Soler,5,1870,Jorge Soler,solerjo01,1144,Jorge Lopez,lopezjo02,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1870 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,5155,Victor Caratini,5,325,Victor Caratini,caratvi01,83,Victor Arano,aranovi01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-325 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,5162,Willie Calhoun,5,307,Willie Calhoun,calhowi01,306,Kole Calhoun,calhoko01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-307 +player+AF8-ambiguous+AF8-match,Player could match 9 different SbaPlayers,4736,Marwin Gonzalez,5,741,Marwin Gonzalez,gonzama01,738,Adrian Gonzalez,gonzaad01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-741 +player+AF8-ambiguous+AF8-match,Player could match 10 different SbaPlayers,4767,Erik Gonzalez,5,742,Erik Gonzalez,gonzaer01,739,Gio Gonzalez,gonzagi01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-742 +player+AF8-ambiguous+AF8-match,Player could match 8 different SbaPlayers,5043,Michael Chavis,5,371,Michael Chavis,chavimi01,827,Michael Harris,harrimi04,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-371 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4501,Maikel Franco,5,645,Maikel Franco,francma02,651,Mike Freeman,freemmi01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-645 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,1553,Kelvin Gutierrez,3,796,Kelvin Gutierrez,gutieke01,881,Kelvin Herrera,herreke01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-796 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,5123,Stephen Piscotty,5,1563,Stephen Piscotty,piscost01,2086,Stephen Vogt,vogtst01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1563 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4950,Joc Pederson,5,1514,Joc Pederson,pederjo01,1547,Jace Peterson,peterja01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1514 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4161,James McCann,5,1261,James McCann,mccanja02,1477,James Outman,outmaja01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1261 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,1782,Richie Martin,3,1216,Richie Martin,martiri01,1214,Chris Martin,martich02,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-1216 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4730,Orlando Arcia,5,86,Orlando Arcia,arciaor01,685,Bryan Garcia,garcibr01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-86 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,4979,Jose Peraza,5,1527,Jose Peraza,perazjo01,1528,Oswald Peraza,perazos02,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1527 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4587,Aaron Hicks,5,892,Aaron Hicks,hicksaa01,893,John Hicks,hicksjo02,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-892 +player+AF8-ambiguous+AF8-match,Player could match 6 different SbaPlayers,4995,Justin Upton,5,2034,Justin Upton,uptonju01,546,Justin Dunn,dunnju01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-2034 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4499,Pavin Smith,5,1851,Pavin Smith,smithpa04,1854,Kevin Smith,smithke05,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1851 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4653,Phillip Evans,5,589,Phillip Evans,evansph01,2047,Phillips Valdez,valdeph01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-589 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4564,Carlos Santana,5,1759,Carlos Santana,santaca01,1763,Edgar Santana,santaed01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1759 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,5073,Niko Goodrum,5,748,Niko Goodrum,goodrni01,750,Nick Goody,goodyni01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-748 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4681,Roberto Perez,5,1538,Roberto Perez,perezro02,1938,Robert Suarez,suarero01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1538 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,1972,Wilmer Difo,3,516,Wilmer Difo,difowi01,634,Wilmer Font,fontwi01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-516 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,1093,Austin Wynns,3,2202,Austin Wynns,wynnsau01,839,Austin Hays,haysau01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-2202 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4758,David Bote,5,224,David Bote,boteda01,162,David Bednar,bednada01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-224 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,5120,Shed Long,5,1138,Shed Long,longsh01,1139,Sam Long,longsa01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1138 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,5048,Miguel Andujar,5,78,Miguel Andujar,andujmi01,1757,Miguel Sano,sanomi01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-78 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,1405,Jake Bauers,3,151,Jake Bauers,bauerja01,283,Jake Burger,burgeja01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-151 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,5049,Miguel Cabrera,5,298,Miguel Cabrera,cabremi01,300,Melky Cabrera,cabreme01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-298 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4443,Martin Maldonado,5,1187,Martin Maldonado,maldoma01,1582,Martin Prado,pradoma01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1187 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4931,Jake Lamb,5,1087,Jake Lamb,lambja01,57,Jake Alu,aluja01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1087 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4438,Harold Castro,5,349,Harold Castro,castrha01,348,Starlin Castro,castrst01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-349 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4539,Andrew Velazquez,5,2067,Andrew Velazquez,velazan01,2059,Andrew Vasquez,vasquan02,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-2067 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4890,Eric Sogard,5,1865,Eric Sogard,sogarer01,1866,Nick Sogard,sogarni01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1865 +player+AF8-ambiguous+AF8-match,Player could match 6 different SbaPlayers,4232,Anthony Rendon,5,1630,Anthony Rendon,rendoan01,176,Anthony Bender,bendean01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1630 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,5125,Stephen Vogt,5,2086,Stephen Vogt,vogtst01,1430,Stephen Nogosek,nogosst01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-2086 +player+AF8-ambiguous+AF8-match,Player could match 6 different SbaPlayers,4802,Austin Hedges,5,848,Austin Hedges,hedgeau01,839,Austin Hays,haysau01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-848 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4638,Carter Kieboom,5,1038,Carter Kieboom,kieboca01,1037,Spencer Kieboom,kiebosp01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1038 +player+AF8-ambiguous+AF8-match,Player could match 7 different SbaPlayers,4963,Jonathan Arauz,5,84,Jonathan Arauz,arauzjo01,82,Jonathan Aranda,arandjo01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-84 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4422,Kole Calhoun,5,306,Kole Calhoun,calhoko01,307,Willie Calhoun,calhowi01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-306 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4382,DJ Stewart,5,1909,DJ Stewart,stewadj01,1911,Kohl Stewart,stewako01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1909 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4186,Clint Frazier,5,649,Clint Frazier,frazicl01,647,Todd Frazier,frazito01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-649 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,5156,Victor Robles,5,1666,Victor Robles,roblevi01,1638,Victor Reyes,reyesvi01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-1666 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,2045,Alex Blandino,1,210,Alex Blandino,blandal01,387,Alex Claudio,claudal01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-210 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4613,Colin Moran,5,1360,Colin Moran,moranco01,1621,Colin Rea,reaco01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-1360 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,4907,Gregory Polanco,5,1569,Gregory Polanco,polangr01,207,Gregor Blanco,blancgr01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1569 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,4923,Isan Diaz,5,508,Isan Diaz,diazis01,502,Elias Diaz,diazel01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-508 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4575,Rio Ruiz,5,1723,Rio Ruiz,ruizri01,1724,Jose Ruiz,ruizjo01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1723 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4206,Jackie Bradley Jr,5,239,Jackie Bradley Jr,bradlja02,236,Archie Bradley,bradlar01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-239 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4855,Daniel Vogelbach,5,2085,Daniel Vogelbach,vogelda01,1172,Daniel Lynch,lynchda02,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-2085 +player+AF8-ambiguous+AF8-match,Player could match 6 different SbaPlayers,4856,Danny Santana,5,1760,Danny Santana,santada01,1762,Dennis Santana,santade01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1760 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4484,Alex Dickerson,5,512,Alex Dickerson,dickeal01,961,Alex Jackson,jacksal02,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-512 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4884,Eli White,5,2140,Eli White,whiteel04,2142,Evan White,whiteev01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-2140 +player+AF8-ambiguous+AF8-match,Player could match 13 different SbaPlayers,5046,Michael Perez,5,1539,Michael Perez,perezmi03,1546,Michael Petersen,petermi01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1539 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4854,Daniel Robertson,5,1663,Daniel Robertson,roberda10,1662,David Robertson,roberda08,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1663 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4768,Evan White,5,2142,Evan White,whiteev01,2144,Brendan White,whitebr01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-2142 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4843,Cole Tucker,5,2022,Cole Tucker,tuckeco01,2023,Kyle Tucker,tuckeky01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-2022 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,4858,David Dahl,5,457,David Dahl,dahlda01,805,David Hale,haleda02,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-457 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,5079,Pablo Sandoval,5,1753,Pablo Sandoval,sandopa01,1754,Patrick Sandoval,sandopa02,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1753 +player+AF8-ambiguous+AF8-match,Player could match 9 different SbaPlayers,4158,Jonathan Davis,5,470,Jonathan Davis,davisjo05,953,Jonathan India,indiajo01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-470 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4279,Kevan Smith,5,1847,Kevan Smith,smithke04,1854,Kevin Smith,smithke05,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1847 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,2063,Andrew Romine,1,1703,Andrew Romine,rominan01,1320,Andrew Miller,millean01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1703 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,5055,Mike Tauchman,5,1961,Mike Tauchman,tauchmi01,152,Mike Baumann,baumami01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1961 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4593,Jake Cave,5,354,Jake Cave,caveja01,1274,Jake McGee,mcgeeja01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-354 +player+AF8-ambiguous+AF8-match,Player could match 8 different SbaPlayers,1788,Robel Garcia,3,682,Robel Garcia,garciro02,692,Robert Garcia,garciro04,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-682 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4953,Joe Panik,5,1493,Joe Panik,panikjo01,1732,Joe Ryan,ryanjo04,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1493 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4439,JaCoby Jones,5,991,JaCoby Jones,jonesja07,133,Jacob Barnes,barneja01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-991 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4761,Matt Carpenter,5,329,Matt Carpenter,carpema01,328,Ryan Carpenter,carpery01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-329 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,4789,Andrew Knizner,5,1065,Andrew Knizner,kniznan01,1320,Andrew Miller,millean01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1065 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,5051,Mike Ford,5,635,Mike Ford,fordmi01,615,Mike Fiers,fiersmi01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-635 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1871,Stevie Wilkerson,3,2153,Stevie Wilkerson,wilkest01,2169,Steven Wilson,wilsost02,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-2153 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4283,Andrew Knapp,5,1062,Andrew Knapp,knappan01,1400,Andrew Nardi,nardian01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1062 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4780,Adrian Morejon,5,1363,Adrian Morejon,morejad01,1362,Brian Moran,moranbr01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1363 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4760,Anibal Sanchez,5,1743,Anibal Sanchez,sanchan01,1747,Ali Sanchez,sanchal04,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-1743 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,1088,Austin Pruitt,3,1588,Austin Pruitt,pruitau01,253,Austin Brice,briceau01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1588 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4677,Caleb Ferguson,5,605,Caleb Ferguson,ferguca01,604,Tyler Ferguson,ferguty01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-605 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1184,Chris Archer,3,85,Chris Archer,archech01,1739,Chris Sale,salech01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-85 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4621,Cionel Perez,5,1540,Cionel Perez,perezci01,1539,Michael Perez,perezmi03,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1540 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4477,Dakota Hudson,5,934,Dakota Hudson,hudsoda02,108,Dakota Bacus,bacusda01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-934 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4330,Daniel Castano,5,337,Daniel Castano,castada01,492,Daniel Descalso,descada01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-337 +player+AF8-ambiguous+AF8-match,Player could match 6 different SbaPlayers,4694,David Phelps,5,1554,David Phelps,phelpda01,889,David Hess,hessda01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1554 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,2222,David Robertson,1,1662,David Robertson,roberda08,1663,Daniel Robertson,roberda10,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-1662 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4860,Dee Strange Gordon,5,1920,Dee Strange Gordon,gordode01,753,Tanner Gordon,gordota01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1920 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4284,Dustin May,5,1249,Dustin May,maydu01,839,Austin Hays,haysau01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1249 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4601,Greg Allen,5,44,Greg Allen,allengr01,915,Greg Holland,hollagr01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-44 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4912,Hoby Milner,5,1332,Hoby Milner,milneho01,1326,Bobby Miller,millebo06,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1332 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4718,Jason Adam,5,13,Jason Adam,adamja01,16,Austin Adams,adamsau02,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-13 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4566,Jimmy Herget,5,863,Jimmy Herget,hergeji01,1089,Jimmy Lambert,lambeji01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-863 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4625,Joey Bart,5,142,Joey Bart,bartjo01,129,Joe Barlow,barlojo01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-142 +player+AF8-ambiguous+AF8-match,Player could match 6 different SbaPlayers,4513,Jonathan Hernandez,5,876,Jonathan Hernandez,hernajo02,82,Jonathan Aranda,arandjo01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-876 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,1490,Jordan Hicks,3,894,Jordan Hicks,hicksjo03,2148,Jordan Wicks,wicksjo01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-894 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,4558,Jordan Weems,5,2129,Jordan Weems,weemsjo01,1171,Jordan Lyles,lylesjo01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-2129 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,3862,Josh Smith,4,1852,Josh Smith,smithjo11,1842,Joe Smith,smithjo05,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1852 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,1550,Justin Verlander,3,2071,Justin Verlander,verlaju01,70,Justin Anderson,anderju01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-2071 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4671,Kyle Wright,5,2200,Kyle Wright,wrighky01,2199,Mike Wright,wrighmi01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-2200 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,1616,Luke Maile,3,1185,Luke Maile,mailelu01,1602,Luke Raley,raleylu01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1185 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1623,Manny Banuelos,3,123,Manny Banuelos,banuema01,130,Danny Barnes,barneda02,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-123 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,5027,Mark Mathias,5,1234,Mark Mathias,mathima01,316,Mark Canha,canhama01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1234 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4469,Matt Strahm,5,1918,Matt Strahm,strahma01,241,Matt Brash,brashma01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-1918 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,5067,Nick Nelson,5,1410,Nick Nelson,nelsoni01,71,Nick Anderson,anderni01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1410 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4407,Robinson Cano,5,319,Robinson Cano,canoro01,373,Robinson Chirinos,chiriro01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-319 +player+AF8-ambiguous+AF8-match,Player could match 10 different SbaPlayers,5099,Rony Garcia,5,689,Rony Garcia,garciro03,693,Rico Garcia,garciri01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-689 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4386,Ryan Borucki,5,222,Ryan Borucki,borucry01,244,Ryan Braun,braunry02,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-222 +player+AF8-ambiguous+AF8-match,Player could match 6 different SbaPlayers,4581,Ryan Brasier,5,242,Ryan Brasier,brasiry01,117,Bryan Baker,bakerbr01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-242 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,2954,Seranthony Dominguez,1,524,Seranthony Dominguez,dominse01,525,Jasson Dominguez,dominja01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-524 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,1927,Tyler Beede,3,164,Tyler Beede,beedety01,2094,Tyler Wade,wadety01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-164 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4669,Tyler Heineman,5,851,Tyler Heineman,heinety01,654,Tyler Freeman,freemty01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-851 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,3023,Victor Arano,1,83,Victor Arano,aranovi01,325,Victor Caratini,caratvi01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-83 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1138,Brock Stewart,3,1908,Brock Stewart,stewabr01,1911,Kohl Stewart,stewako01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1908 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4844,Colin Rea,5,1621,Colin Rea,reaco01,1360,Colin Moran,moranco01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1621 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,1263,Derek Law,3,1098,Derek Law,lawde01,899,Derek Hill,hillde01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1098 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4937,James Paxton,5,1506,James Paxton,paxtoja01,1509,James Pazos,pazosja01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1506 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,2804,Matt Koch,1,1066,Matt Koch,kochma01,1835,Matt Skole,skolema01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1066 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,5062,Nate Pearson,5,1513,Nate Pearson,pearsna01,557,Nate Eaton,eatonna01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1513 +player+AF8-ambiguous+AF8-match,Player could match 11 different SbaPlayers,4164,Nick Anderson,5,71,Nick Anderson,anderni01,1410,Nick Nelson,nelsoni01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-71 +player+AF8-ambiguous+AF8-match,Player could match 6 different SbaPlayers,5068,Nick Ramirez,5,1605,Nick Ramirez,ramirni01,1603,Neil Ramirez,ramirne01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1605 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4620,Scott Alexander,5,36,Scott Alexander,alexasc02,38,Jason Alexander,alexaja01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-36 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,1854,Shelby Miller,3,1323,Shelby Miller,millesh01,1332,Hoby Milner,milneho01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1323 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,1897,Tommy Kahnle,3,1006,Tommy Kahnle,kahnlto01,1398,Tommy Nance,nanceto01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1006 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1187,Chris Devenski,3,498,Chris Devenski,devench02,467,Chris Davis,davisch02,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-498 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,1432,Jay Jackson,3,959,Jay Jackson,jacksja01,961,Alex Jackson,jacksal02,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-959 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4467,Carson Fulmer,5,667,Carson Fulmer,fulmeca01,279,Aaron Bummer,bummeaa01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-667 +player+AF8-ambiguous+AF8-match,Player could match 12 different SbaPlayers,1544,Justin Anderson,3,70,Justin Anderson,anderju01,73,Tim Anderson,anderti01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-70 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,1646,Matt Bowman,3,228,Matt Bowman,bowmama01,131,Matt Barnes,barnema01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-228 +player+AF8-ambiguous+AF8-match,Player could match 10 different SbaPlayers,1724,Nick Martini,3,1230,Nick Martini,martini02,1224,Nick Martinez,martini01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1230 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4170,Sixto Sanchez,5,1751,Sixto Sanchez,sanchsi01,1747,Ali Sanchez,sanchal04,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1751 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4347,Yonny Chirinos,5,374,Yonny Chirinos,chiriyo01,373,Robinson Chirinos,chiriro01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-374 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1010,Aaron Altherr,3,55,Aaron Altherr,altheaa01,383,Aaron Civale,civalaa01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-55 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,1022,Adam Conley,3,409,Adam Conley,conlead01,989,Adam Jones,jonesad01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-409 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,1028,Adam Jones,3,989,Adam Jones,jonesad01,409,Adam Conley,conlead01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-989 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4388,Adam Kolarek,5,1069,Adam Kolarek,kolarad01,1459,Adam Oller,ollerad01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1069 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1034,Adam Warren,3,2118,Adam Warren,warread01,2119,Art Warren,warrear01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-2118 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,2034,Addison Reed,1,1624,Addison Reed,reedad01,127,Addison Barger,bargead01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1624 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1035,Addison Russell,3,1728,Addison Russell,russead02,1624,Addison Reed,reedad01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1728 +player+AF8-ambiguous+AF8-match,Player could match 8 different SbaPlayers,2038,Adrian Gonzalez,1,738,Adrian Gonzalez,gonzaad01,741,Marwin Gonzalez,gonzama01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-738 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4781,Albert Almora,5,51,Albert Almora Jr,almoral01,63,Adbert Alzolay,alzolad01,0.897,Choose correct match from 3 options,USE+AF8-SBA+AF8-51 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4764,Alex Gordon,5,751,Alex Gordon,gordoal01,753,Tanner Gordon,gordota01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-751 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,2051,Alex Wilson,1,2168,Alex Wilson,wilsoal01,512,Alex Dickerson,dickeal01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-2168 +player+AF8-ambiguous+AF8-match,Player could match 6 different SbaPlayers,1057,Andrew Cashner,3,336,Andrew Cashner,cashnan01,363,Andrew Chafin,chafian01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-336 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,4442,Andrew Suarez,5,1935,Andrew Suarez,suarean01,2059,Andrew Vasquez,vasquan02,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1935 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,1071,Anthony Swarzak,3,1950,Anthony Swarzak,swarzan01,121,Anthony Banda,bandaan01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1950 +player+AF8-ambiguous+AF8-match,Player could match 7 different SbaPlayers,2080,Austin Jackson,1,958,Austin Jackson,jacksau01,427,Austin Cox,coxau01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-958 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,2096,Bobby Wilson,1,2166,Bobby Wilson,wilsobo02,2171,Bryse Wilson,wilsobr02,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-2166 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,1110,Brad Peacock,3,1510,Brad Peacock,peacobr01,1511,Matt Peacock,peacoma01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1510 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,2102,Brad Ziegler,1,2226,Brad Ziegler,zieglbr01,1016,Brad Keller,kellebr01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-2226 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,1116,Brandon Dixon,3,520,Brandon Dixon,dixonbr01,1425,Brandon Nimmo,nimmobr01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-520 +player+AF8-ambiguous+AF8-match,Player could match 7 different SbaPlayers,2106,Brandon Guyer,1,798,Brandon Guyer,guyerbr01,1246,Brandon Maurer,maurebr01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-798 +player+AF8-ambiguous+AF8-match,Player could match 9 different SbaPlayers,2108,Brandon Maurer,1,1246,Brandon Maurer,maurebr01,798,Brandon Guyer,guyerbr01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1246 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,2109,Brandon McCarthy,1,1263,Brandon McCarthy,mccarbr01,1205,Brandon Marsh,marshbr02,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1263 +player+AF8-ambiguous+AF8-match,Player could match 6 different SbaPlayers,2110,Brandon Morrow,1,1374,Brandon Morrow,morrobr01,1246,Brandon Maurer,maurebr01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1374 +player+AF8-ambiguous+AF8-match,Player could match 6 different SbaPlayers,1134,Brian Johnson,3,986,Brian Johnson,johnsbr02,987,Bryce Johnson,johnsbr03,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-986 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1135,Brian McCann,3,1260,Brian McCann,mccanbr01,1362,Brian Moran,moranbr01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1260 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4821,Bryan Holaday,5,911,Bryan Holaday,holadbr01,1427,Ryan Noda,nodary01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-911 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,2124,Bryan Mitchell,1,1339,Bryan Mitchell,mitchbr01,1341,Calvin Mitchell,mitchca01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1339 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,2132,Caleb Joseph,1,996,Caleb Joseph,josepca01,997,Corban Joseph,josepco01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-996 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,1158,Carlos Gomez,3,732,Carlos Gomez,gomezca01,740,Carlos Gonzalez,gonzaca01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-732 +player+AF8-ambiguous+AF8-match,Player could match 12 different SbaPlayers,1159,Carlos Gonzalez,3,740,Carlos Gonzalez,gonzaca01,744,Oscar Gonzalez,gonzaos01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-740 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,1179,Charlie Tilson,3,1991,Charlie Tilson,tilsoch01,1375,Charlie Morton,mortoch02,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1991 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,2160,Chasen Bradford,1,234,Chasen Bradford,bradfch02,233,Cody Bradford,bradfco01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-234 +player+AF8-ambiguous+AF8-match,Player could match 7 different SbaPlayers,4837,Chris Davis,5,467,Chris Davis,davisch02,469,Khris Davis,daviskh01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-467 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,2169,Chris Rusin,1,1727,Chris Rusin,rusinch01,1214,Chris Martin,martich02,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1727 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,2175,Christian Villanueva,1,2078,Christian Villanueva,villach01,2063,Christian Vazquez,vazquch01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-2078 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1203,Clayton Richard,3,1644,Clayton Richard,richacl01,1034,Clayton Kershaw,kershcl01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1644 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4841,Cody Reed,5,1625,Cody Reed,reedco01,1860,Cy Sneed,sneedcy01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1625 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1220,Cory Spangenberg,3,1883,Cory Spangenberg,spangco01,1794,Corey Seager,seageco01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1883 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,2197,Dan Jennings,1,977,Dan Jennings,jennida01,548,Dane Dunning,dunnida01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-977 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,1229,Daniel Descalso,3,492,Daniel Descalso,descada01,337,Daniel Castano,castada01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-492 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4852,Daniel Murphy,5,1387,Daniel Murphy,murphda08,1390,Sean Murphy,murphse01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1387 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1234,Daniel Palka,3,1491,Daniel Palka,palkada01,1490,Daniel Palencia,palenda01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1491 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,2208,Danny Barnes,1,130,Danny Barnes,barneda02,123,Manny Banuelos,banuema01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-130 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,2211,Danny Valencia,1,2050,Danny Valencia,valenda01,1490,Daniel Palencia,palenda01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-2050 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,1248,David Freese,3,655,David Freese,freesda01,656,David Freitas,freitda01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-655 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,2217,David Freitas,1,656,David Freitas,freitda01,611,David Festa,festada01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-656 +player+AF8-ambiguous+AF8-match,Player could match 8 different SbaPlayers,1250,David Hernandez,3,868,David Hernandez,hernada01,875,Yadiel Hernandez,hernaya01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-868 +player+AF8-ambiguous+AF8-match,Player could match 6 different SbaPlayers,1251,David Hess,3,889,David Hess,hessda01,1554,David Phelps,phelpda01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-889 +player+AF8-ambiguous+AF8-match,Player could match 11 different SbaPlayers,1259,Dereck Rodriguez,3,1676,Dereck Rodriguez,rodride01,1677,Jefry Rodriguez,rodrije01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1676 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,4869,Domingo Santana,5,1761,Domingo Santana,santado01,1956,Domingo Tapia,tapiado01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1761 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,4879,Dylan Covey,5,425,Dylan Covey,coveydy01,401,Dylan Coleman,colemdy01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-425 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,1291,Eduardo Nunez,3,1442,Eduardo Nunez,nunezed02,1675,Eduardo Rodriguez,rodried05,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-1442 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,2256,Edubray Ramos,1,1613,Edubray Ramos,ramosed02,1614,Henry Ramos,ramoshe01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1613 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4883,Edwin Encarnacion,5,571,Edwin Encarnacion,encared01,572,Jerar Encarnacion,encarje01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-571 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,1295,Edwin Jackson,3,957,Edwin Jackson,jacksed01,958,Austin Jackson,jacksau01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-957 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,2519,Eric Skoglund,1,1834,Eric Skoglund,skogler01,1865,Eric Sogard,sogarer01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1834 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4891,Eric Thames,5,1976,Eric Thames,thameer01,801,Eric Haase,haaseer01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1976 +player+AF8-ambiguous+AF8-match,Player could match 9 different SbaPlayers,1317,Felix Hernandez,3,867,Felix Hernandez,hernafe02,874,Elieser Hernandez,hernael01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-867 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4542,Felix Pena,5,1518,Felix Pena,penafe01,867,Felix Hernandez,hernafe02,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1518 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,1319,Fernando Rodney,3,1669,Fernando Rodney,rodnefe01,1701,Fernando Romero,romerfe01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1669 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,2532,Fernando Romero,1,1701,Fernando Romero,romerfe01,1669,Fernando Rodney,rodnefe01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1701 +player+AF8-ambiguous+AF8-match,Player could match 9 different SbaPlayers,2533,Francisco Arcia,1,87,Francisco Arcia,arciafr01,1126,Francisco Liriano,liriafr01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-87 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4169,Francisco Cervelli,5,359,Francisco Cervelli,cervefr01,87,Francisco Arcia,arciafr01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-359 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,1324,Francisco Liriano,3,1126,Francisco Liriano,liriafr01,87,Francisco Arcia,arciafr01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1126 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,2537,Francisco Pena,1,1517,Francisco Pena,penafr01,87,Francisco Arcia,arciafr01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1517 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,2542,Gabriel Moya,1,1379,Gabriel Moya,moyaga01,2214,Gabriel Ynoa,ynoaga01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-1379 +player+AF8-ambiguous+AF8-match,Player could match 11 different SbaPlayers,4902,Gio Gonzalez,5,739,Gio Gonzalez,gonzagi01,743,Victor Gonzalez,gonzavi02,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-739 +player+AF8-ambiguous+AF8-match,Player could match 8 different SbaPlayers,2552,Gorkys Hernandez,1,869,Gorkys Hernandez,hernago01,879,Jose Hernandez,hernajo03,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-869 +player+AF8-ambiguous+AF8-match,Player could match 6 different SbaPlayers,4906,Greg Garcia,5,681,Greg Garcia,garcigr01,682,Robel Garcia,garciro02,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-681 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,2557,Gregor Blanco,1,207,Gregor Blanco,blancgr01,1569,Gregory Polanco,polangr01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-207 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1367,Hector Velazquez,3,2066,Hector Velazquez,velazhe01,2068,Nelson Velazquez,velazne01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-2066 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1368,Hernan Perez,3,1536,Hernan Perez,perezhe01,1542,Eury Perez,perezeu02,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1536 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4917,Hunter Pence,5,1520,Hunter Pence,pencehu01,770,Hunter Greene,greenhu01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1520 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1375,Hunter Wood,3,2192,Hunter Wood,woodhu01,747,Hunter Goodman,goodmhu01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-2192 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,1377,Ian Desmond,3,495,Ian Desmond,desmoia01,74,Ian Anderson,anderia01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-495 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1380,Ian Kinsler,3,1051,Ian Kinsler,kinslia01,2178,Dan Winkler,winklda01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1051 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4743,Jace Fry,5,661,Jace Fry,fryja01,641,Jake Fraley,fraleja01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-661 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,2595,Jacob Rhame,1,1642,Jacob Rhame,rhameja01,65,Jacob Amaya,amayaja01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1642 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,2611,James Pazos,1,1509,James Pazos,pazosja01,1506,James Paxton,paxtoja01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1509 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4938,Jared Hughes,5,937,Jared Hughes,hugheja02,1821,Jared Shuster,shustja01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-937 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,2618,Jason Hammel,1,813,Jason Hammel,hammeja01,13,Jason Adam,adamja01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-813 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1428,Jason Vargas,3,2053,Jason Vargas,vargaja01,13,Jason Adam,adamja01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-2053 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4588,Javy Guerra,5,784,Javy Guerra,guerrja02,786,Javy Guerra,guerrja01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-784 +player+AF8-ambiguous+AF8-match,Player could match 15 different SbaPlayers,1441,Jefry Rodriguez,3,1677,Jefry Rodriguez,rodrije01,1673,Joely Rodriguez,rodrijo06,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1677 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1452,Jesus Sucre,3,1939,Jesus Sucre,sucreje01,1749,Jesus Sanchez,sanchje02,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1939 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,2648,Jim Johnson,1,984,Jim Johnson,johnsji04,986,Brian Johnson,johnsbr02,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-984 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,1476,John Hicks,3,893,John Hicks,hicksjo02,894,Jordan Hicks,hicksjo03,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-893 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,2668,Johnny Field,1,613,Johnny Field,fieldjo04,614,Josh Fields,fieldjo03,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-613 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4961,Jon Jay,5,973,Jon Jay,jayjo02,766,Jon Gray,grayjo02,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-973 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,4724,Jonathan Holder,5,912,Jonathan Holder,holdejo02,1779,Jonathan Schoop,schoojo01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-912 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,1487,Jonathan Lucroy,3,1163,Jonathan Lucroy,lucrojo01,318,Jonathan Cannon,cannojo02,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1163 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,1494,Jordan Zimmermann,3,2230,Jordan Zimmermann,zimmejo02,2229,Ryan Zimmerman,zimmery01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-2230 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4970,Jorge Bonifacio,5,220,Jorge Bonifacio,bonifjo01,1570,Jorge Polanco,polanjo01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-220 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,2687,Jose Bautista,1,153,Jose Bautista,bautijo02,293,Jose Butto,buttojo01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-153 +player+AF8-ambiguous+AF8-match,Player could match 7 different SbaPlayers,2689,Jose Briceno,1,254,Jose Briceno,bricejo01,139,Jose Barrero,garcijo02,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-254 +player+AF8-ambiguous+AF8-match,Player could match 8 different SbaPlayers,2690,Jose Castillo,1,342,Jose Castillo,castijo02,321,Joey Cantillo,cantijo01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-342 +player+AF8-ambiguous+AF8-match,Player could match 12 different SbaPlayers,4977,Jose Martinez,5,1222,Jose Martinez,martijo08,1226,Seth Martinez,martise01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1222 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4978,Jose Osuna,5,1471,Jose Osuna,osunajo01,2035,Jose Urena,urenajo01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-1471 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,2696,Jose Pirela,1,1562,Jose Pirela,pireljo01,2035,Jose Urena,urenajo01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1562 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,2702,Josh Fields,1,614,Josh Fields,fieldjo03,613,Johnny Field,fieldjo04,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-614 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,1545,Justin Bour,3,226,Justin Bour,bourju01,271,Justin Bruihl,bruihju01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-226 +player+AF8-ambiguous+AF8-match,Player could match 7 different SbaPlayers,2717,Justin Miller,1,1321,Justin Miller,milleju02,47,Austin Allen,allenau01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1321 +player+AF8-ambiguous+AF8-match,Player could match 6 different SbaPlayers,4994,Justin Smoak,5,1857,Justin Smoak,smoakju01,1999,Justin Topa,topaju01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1857 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,1567,Kevin McCarthy,3,1264,Kevin McCarthy,mccarke01,1265,Jake McCarthy,mccarja02,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-1264 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,2739,Kohl Stewart,1,1911,Kohl Stewart,stewako01,1909,DJ Stewart,stewadj01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1911 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,1591,Leonys Martin,3,1215,Leonys Martin,martile01,1217,Jason Martin,martija03,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1215 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,5019,Luis Perdomo,5,1529,Luis Perdomo,perdolu02,1530,Angel Perdomo,perdoan01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1529 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,5025,Mallex Smith,5,1846,Mallex Smith,smithma05,1845,Caleb Smith,smithca03,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1846 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,2780,Marco Estrada,1,586,Marco Estrada,estrama01,587,Thairo Estrada,estrath01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-586 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,1635,Mark Reynolds,3,1639,Mark Reynolds,reynoma01,1640,Matt Reynolds,reynoma03,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-1639 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,1638,Martin Prado,3,1582,Martin Prado,pradoma01,1535,Martin Perez,perezma02,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1582 +player+AF8-ambiguous+AF8-match,Player could match 9 different SbaPlayers,5029,Mason Williams,5,2154,Mason Williams,willima10,2160,Gavin Williams,williga01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-2154 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,5030,Matt Adams,5,15,Matt Adams,adamsma01,16,Austin Adams,adamsau02,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-15 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,2796,Matt Belisle,1,167,Matt Belisle,belisma01,2183,Matt Wisler,wislema01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-167 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,5032,Matt Davidson,5,463,Matt Davidson,davidma02,464,Tucker Davidson,davidtu01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-463 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4753,Matt Kemp,5,1026,Matt Kemp,kempma01,1835,Matt Skole,skolema01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1026 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,5035,Matt Magill,5,1182,Matt Magill,magilma01,806,Matt Hall,hallma02,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-1182 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,5037,Matt Wieters,5,2152,Matt Wieters,wietema01,2183,Matt Wisler,wislema01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-2152 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,5038,Matthew Boyd,5,230,Matthew Boyd,boydma01,999,Matthew Joyce,joycema01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-230 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,5039,Matthew Joyce,5,999,Matthew Joyce,joycema01,230,Matthew Boyd,boydma01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-999 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1670,Melky Cabrera,3,300,Melky Cabrera,cabreme01,298,Miguel Cabrera,cabremi01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-300 +player+AF8-ambiguous+AF8-match,Player could match 7 different SbaPlayers,1676,Michael Feliz,3,602,Michael Feliz,felizmi01,1022,Michael Kelly,kellymi03,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-602 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4598,Mike Fiers,5,615,Mike Fiers,fiersmi01,1251,Mike Mayers,mayermi01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-615 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1699,Mike Wright,3,2199,Mike Wright,wrighmi01,2200,Kyle Wright,wrighky01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-2199 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,5061,Nate Jones,5,990,Nate Jones,jonesna01,994,Nolan Jones,jonesno01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-990 +player+AF8-ambiguous+AF8-match,Player could match 7 different SbaPlayers,2850,Neil Ramirez,1,1603,Neil Ramirez,ramirne01,1606,Noe Ramirez,ramirno01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1603 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,5063,Neil Walker,5,2103,Neil Walker,walkene01,2106,Ryan Walker,walkery01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-2103 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1720,Nick Hundley,3,940,Nick Hundley,hundlni01,2027,Nik Turley,turleni01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-940 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,5065,Nick Markakis,5,1201,Nick Markakis,markani01,1292,Nick Mears,mearsni01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1201 +player+AF8-ambiguous+AF8-match,Player could match 8 different SbaPlayers,1730,Nick Williams,3,2157,Nick Williams,willini01,2161,Alika Williams,willial04,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-2157 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,5076,Oliver Drake,5,534,Oliver Drake,drakeol01,1533,Oliver Perez,perezol01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-534 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4430,Oliver Perez,5,1533,Oliver Perez,perezol01,1542,Eury Perez,perezeu02,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1533 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4737,Pedro Baez,5,111,Pedro Baez,baezpe01,1486,Pedro Pages,pagespe01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-111 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1758,Pedro Strop,3,1929,Pedro Strop,stroppe01,1804,Pedro Severino,severpe01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1929 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,2894,Rajai Davis,1,466,Rajai Davis,davisra01,474,JD Davis,davisjd01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-466 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,5091,Robbie Erlin,5,578,Robbie Erlin,erlinro01,1620,Robbie Ray,rayro02,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-578 +player+AF8-ambiguous+AF8-match,Player could match 15 different SbaPlayers,1800,Ronny Rodriguez,3,1672,Ronny Rodriguez,rodriro03,1683,Randy Rodriguez,rodrira02,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1672 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,1801,Rosell Herrera,3,883,Rosell Herrera,herrero02,884,Jose Herrera,herrejo04,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-883 +player+AF8-ambiguous+AF8-match,Player could match 6 different SbaPlayers,4757,Ryan Braun,5,244,Ryan Braun,braunry02,1719,Ryan Rua,ruary01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-244 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,5102,Ryan Buchter,5,276,Ryan Buchter,buchtry01,287,Ryan Burr,burrry01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-276 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,2926,Ryan Flaherty,1,621,Ryan Flaherty,flahery01,622,Jack Flaherty,flaheja01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-621 +player+AF8-ambiguous+AF8-match,Player could match 6 different SbaPlayers,2928,Ryan Madson,1,1180,Ryan Madson,madsory01,935,Bryan Hudson,hudsobr01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1180 +player+AF8-ambiguous+AF8-match,Player could match 7 different SbaPlayers,2932,Ryan Rua,1,1719,Ryan Rua,ruary01,244,Ryan Braun,braunry02,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1719 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,5109,Ryon Healy,5,842,Ryon Healy,healyry01,845,Jon Heasley,heasljo01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-842 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1826,Sam Dyson,3,554,Sam Dyson,dysonsa01,1139,Sam Long,longsa01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-554 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,2941,Sam Freeman,1,653,Sam Freeman,freemsa01,651,Mike Freeman,freemmi01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-653 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1837,Scott Oberg,3,1448,Scott Oberg,obergsc01,1772,Scott Schebler,schebsc01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1448 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1838,Scott Schebler,3,1772,Scott Schebler,schebsc01,1448,Scott Oberg,obergsc01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1772 +player+AF8-ambiguous+AF8-match,Player could match 16 different SbaPlayers,1844,Sean Rodriguez,3,1671,Sean Rodriguez,rodrise01,1685,Endy Rodriguez,rodrien01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1671 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4393,Shane Greene,5,769,Shane Greene,greensh02,770,Hunter Greene,greenhu01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-769 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,2963,Spencer Kieboom,1,1037,Spencer Kieboom,kiebosp01,1038,Carter Kieboom,kieboca01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1037 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,5129,Steven Souza Jr,5,1881,Steven Souza Jr,souzast01,543,Steven Duggar,duggast01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1881 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,5130,Tanner Roark,5,1659,Tanner Roark,roarkta01,122,Tanner Banks,banksta01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1659 +player+AF8-ambiguous+AF8-match,Player could match 6 different SbaPlayers,5135,Taylor Williams,5,2155,Taylor Williams,willita01,2110,Taylor Walls,wallsta01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-2155 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1880,Tayron Guerrero,3,788,Tayron Guerrero,guerrta01,790,Taylor Guerrieri,guerrta02,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-788 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4686,Todd Frazier,5,647,Todd Frazier,frazito01,648,Adam Frazier,fraziad01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-647 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4523,Tommy Hunter,5,941,Tommy Hunter,hunteto02,859,Tommy Henry,henryto01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-941 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,1926,Tyler Austin,3,103,Tyler Austin,austity01,1399,Tyler Naquin,naquity01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-103 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,5151,Tyler Bashlor,5,144,Tyler Bashlor,bashlty01,1183,Tyler Mahle,mahlety01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-144 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,4551,Tyler Flowers,5,630,Tyler Flowers,flowety01,1691,Tyler Rogers,rogerty01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-630 +player+AF8-ambiguous+AF8-match,Player could match 6 different SbaPlayers,1937,Tyler Olson,3,1460,Tyler Olson,olsonty01,922,Tyler Holton,holtoty01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1460 +player+AF8-ambiguous+AF8-match,Player could match 6 different SbaPlayers,1942,Tyler White,3,2141,Tyler White,whitety01,2094,Tyler Wade,wadety01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-2141 +player+AF8-ambiguous+AF8-match,Player could match 7 different SbaPlayers,3025,Victor Martinez,1,1221,Victor Martinez,martivi01,325,Victor Caratini,caratvi01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1221 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,1959,Welington Castillo,3,343,Welington Castillo,castiwe01,341,Diego Castillo,castidi02,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-343 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4537,Will Harris,5,825,Will Harris,harriwi10,827,Michael Harris,harrimi04,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-825 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1978,Yadiel Rivera,3,1656,Yadiel Rivera,riverya01,1657,Emmanuel Rivera,riverem01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1656 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,3055,Yefry Ramirez,1,1607,Yefry Ramirez,ramirye01,1606,Noe Ramirez,ramirno01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1607 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4126,Yolmer Sanchez,5,1744,Yolmer Sanchez,sanchca01,1747,Ali Sanchez,sanchal04,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1744 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,3065,Zach Duke,1,545,Zach Duke,dukeza01,1137,Zach Logue,logueza01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-545 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4507,Zack Britton,5,260,Zack Britton,brittza01,281,Zack Burdi,burdiza01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-260 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,2008,Zack Cozart,3,428,Zack Cozart,cozarza01,1818,Zack Short,shortza01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-428 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,1019,Adalberto Mejia,3,1296,Adalberto Mejia,mejiaad01,1349,Adalberto Mondesi,mondera02,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1296 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1049,Alex McRae,3,1288,Alex McRae,mcraeal01,308,Alex Call,callal02,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1288 +player+AF8-ambiguous+AF8-match,Player could match 9 different SbaPlayers,4799,Austin Allen,5,47,Austin Allen,allenau01,483,Austin Dean,deanau01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-47 +player+AF8-ambiguous+AF8-match,Player could match 9 different SbaPlayers,4800,Austin Brice,5,253,Austin Brice,briceau01,1649,Austin Riley,rileyau01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-253 +player+AF8-ambiguous+AF8-match,Player could match 11 different SbaPlayers,1083,Austin Dean,3,483,Austin Dean,deanau01,16,Austin Adams,adamsau02,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-483 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1111,Brad Wieck,3,2150,Brad Wieck,wieckbr01,1510,Brad Peacock,peacobr01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-2150 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,1112,Branden Kline,3,1059,Branden Kline,klinebr01,1052,Brandon Kintzler,kintzbr01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1059 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,4563,Brandon Brennan,5,249,Brandon Brennan,brennbr01,195,Brandon Bielak,bielabr01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-249 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4840,Christin Stewart,5,1910,Christin Stewart,stewach02,1789,Christian Scott,scottch01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-1910 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1214,Corban Joseph,3,997,Corban Joseph,josepco01,996,Caleb Joseph,josepca01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-997 +player+AF8-ambiguous+AF8-match,Player could match 6 different SbaPlayers,1224,Curtis Granderson,3,762,Curtis Granderson,grandcu01,73,Tim Anderson,anderti01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-762 +player+AF8-ambiguous+AF8-match,Player could match 7 different SbaPlayers,1289,Edgar Garcia,3,686,Edgar Garcia,garcied01,681,Greg Garcia,garcigr01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-686 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,1331,Gabriel Ynoa,3,2214,Gabriel Ynoa,ynoaga01,1379,Gabriel Moya,moyaga01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-2214 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1348,Gordon Beckham,3,160,Gordon Beckham,beckhgo01,159,Jordan Beck,beckjo01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-160 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,1364,Hector Noesi,3,1429,Hector Noesi,noesihe01,1413,Hector Neris,nerishe01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1429 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1371,Humberto Arteaga,3,97,Humberto Arteaga,arteahu01,339,Humberto Castellanos,castehu01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-97 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4929,Jairo Diaz,5,501,Jairo Diaz,diazja01,511,Yainer Diaz,diazya02,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-501 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4967,Jordan Yamamoto,5,2205,Jordan Yamamoto,yamamjo01,1699,Jordan Romano,romanjo03,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-2205 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4983,Josh James,5,965,Josh James,jamesjo02,1695,Josh Rojas,rojasjo01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-965 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4985,Josh Osich,5,1469,Josh Osich,osichjo01,1852,Josh Smith,smithjo11,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1469 +player+AF8-ambiguous+AF8-match,Player could match 6 different SbaPlayers,1546,Justin Shafer,3,1807,Justin Shafer,shafeju01,1837,Justin Slaten,slateju01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1807 +player+AF8-ambiguous+AF8-match,Player could match 6 different SbaPlayers,1554,Kelvin Herrera,3,881,Kelvin Herrera,herreke01,864,Kevin Herget,hergeke01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-881 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,5009,Kyle Ryan,5,1730,Kyle Ryan,ryanky01,1731,Ryder Ryan,ryanry01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-1730 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,5012,Lewis Thorpe,5,1989,Lewis Thorpe,thorple01,1990,Drew Thorpe,thorpdr01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1989 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4664,Luis Avilan,5,106,Luis Avilan,avilalu01,716,Luis Gil,gillu01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-106 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1614,Luke Bard,3,126,Luke Bard,bardlu01,118,Luken Baker,bakerlu01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-126 +player+AF8-ambiguous+AF8-match,Player could match 6 different SbaPlayers,1619,Mac Williamson,3,2163,Mac Williamson,willima11,2154,Mason Williams,willima10,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-2163 +player+AF8-ambiguous+AF8-match,Player could match 11 different SbaPlayers,1629,Marco Hernandez,3,872,Marco Hernandez,hernama02,880,Carlos Hernandez,hernaca04,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-872 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,1642,Matt Albers,3,29,Matt Albers,alberma01,2109,Matt Wallner,wallnma01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-29 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,1656,Matt Skole,3,1835,Matt Skole,skolema01,2183,Matt Wisler,wislema01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1835 +player+AF8-ambiguous+AF8-match,Player could match 6 different SbaPlayers,1680,Michel Baez,3,113,Michel Baez,baezmi01,1473,Michel Otanez,otanemi01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-113 +player+AF8-ambiguous+AF8-match,Player could match 6 different SbaPlayers,5052,Mike Freeman,5,651,Mike Freeman,freemmi01,653,Sam Freeman,freemsa01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-651 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,1694,Mike Morin,3,1370,Mike Morin,morinmi01,1335,Mike Minor,minormi01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1370 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4536,Nate Lowe,5,1155,Nathaniel Lowe,lowena01,990,Nate Jones,jonesna01,0.783,Choose correct match from 2 options,USE+AF8-SBA+AF8-1155 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,1718,Nick Dini,3,518,Nick Dini,dinini01,1230,Nick Martini,martini02,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-518 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,5064,Nick Goody,5,750,Nick Goody,goodyni01,752,Nick Gordon,gordoni01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-750 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4704,Nick Margevicius,5,1197,Nick Margevicius,margeni01,1230,Nick Martini,martini02,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1197 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1792,Roberto Osuna,3,1470,Roberto Osuna,osunaro01,1938,Robert Suarez,suarero01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1470 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,1811,Ryan Carpenter,3,328,Ryan Carpenter,carpery01,330,Kerry Carpenter,carpeke01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-328 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,1813,Ryan Goins,3,728,Ryan Goins,goinsry01,731,Yan Gomes,gomesya01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-728 +player+AF8-ambiguous+AF8-match,Player could match 10 different SbaPlayers,4363,Ryan Weber,5,2128,Ryan Weber,weberry01,2123,Ryan Weathers,weathry01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-2128 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,5112,Scott Heineman,5,850,Scott Heineman,heinesc01,851,Tyler Heineman,heinety01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-850 +player+AF8-ambiguous+AF8-match,Player could match 7 different SbaPlayers,4654,Shaun Anderson,5,72,Shaun Anderson,andersh01,74,Ian Anderson,anderia01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-72 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,1877,Taylor Cole,3,397,Taylor Cole,coleta01,384,Taylor Clarke,clarkta01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-397 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,1878,Taylor Guerrieri,3,790,Taylor Guerrieri,guerrta02,788,Tayron Guerrero,guerrta01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-790 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,1938,Tyler Saladino,3,1737,Tyler Saladino,saladty01,726,Tyler Glasnow,glasnty01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1737 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4600,Tyler Webb,5,2125,Tyler Webb,webbty01,2094,Tyler Wade,wadety01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-2125 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,1944,Victor Alcantara,3,33,Victor Alcantara,alcanvi01,34,Sergio Alcantara,alcanse01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-33 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,5163,Wilmer Font,5,634,Wilmer Font,fontwi01,516,Wilmer Difo,difowi01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-634 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,2002,Zac Reininger,3,1628,Zac Reininger,reiniza01,774,Zack Greinke,greinza01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1628 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4241,Trevor Rosenthal,5,1713,Trevor Rosenthal,rosentr01,1902,Trevor Stephan,stephtr01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1713 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,5170,Zack Burdi,5,281,Zack Burdi,burdiza01,260,Zack Britton,brittza01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-281 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4806,Beau Taylor,5,1968,Beau Taylor,taylobe11,1966,Blake Taylor,taylobl01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1968 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,4839,Christian Colon,5,406,Christian Colon,colonch01,1789,Christian Scott,scottch01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-406 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4872,Drew Butera,5,290,Drew Butera,buterdr01,2120,Drew Waters,waterdr01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-290 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4933,Jake Noll,5,1435,Jake Noll,nollja01,57,Jake Alu,aluja01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1435 +player+AF8-ambiguous+AF8-match,Player could match 6 different SbaPlayers,4975,Jose Garcia,5,682,Robel Garcia,garciro02,690,Adolis Garcia,garciad02,0.783,Choose correct match from 5 options,USE+AF8-SBA+AF8-682 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4981,Joseph Odom,5,1450,Joseph Odom,odomjo01,1707,Jose Rondon,rondojo02,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1450 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,5058,Monte Harrison,5,831,Monte Harrison,harrimo01,829,Josh Harrison,harrijo05,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-831 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4408,Wyatt Mathisen,5,1236,Wyatt Mathisen,mathiwy01,1331,Wyatt Mills,millswy01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1236 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4791,Andrew Triggs,5,2014,Andrew Triggs,triggan01,1400,Andrew Nardi,nardian01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-2014 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4697,Brady Lail,5,1084,Brady Lail,lailbr01,206,Bradley Blalock,blalobr01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1084 +player+AF8-ambiguous+AF8-match,Player could match 8 different SbaPlayers,4562,Brandon Bailey,5,116,Brandon Bailey,bailebr01,2112,Brandon Walter,waltebr01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-116 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4432,Brandon Leibrandt,5,1111,Brandon Leibrandt,leibrbr01,249,Brandon Brennan,brennbr01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-1111 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4819,Brian Moran,5,1362,Brian Moran,moranbr01,1260,Brian McCann,mccanbr01,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-1362 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4823,Cam Hill,5,902,Cam Hill,hillca02,900,Tim Hill,hillti01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-902 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4848,Cy Sneed,5,1860,Cy Sneed,sneedcy01,1625,Cody Reed,reedco01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1860 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4849,Dakota Bacus,5,108,Dakota Bacus,bacusda01,934,Dakota Hudson,hudsoda02,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-108 +player+AF8-ambiguous+AF8-match,Player could match 4 different SbaPlayers,4622,Deivi Garcia,5,688,Deivi Garcia,garcide01,687,Dermis Garcia,garcide02,1,Choose correct match from 4 options,USE+AF8-SBA+AF8-688 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4915,Humberto Mejia,5,1297,Humberto Mejia,mejiahu01,1296,Adalberto Mejia,mejiaad01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-1297 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4216,James Hoyt,5,931,James Hoyt,hoytja01,1477,James Outman,outmaja01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-931 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,3810,Javy A Guerra,4,784,Javy Guerra,guerrja02,786,Javy Guerra,guerrja01,0.917,Choose correct match from 2 options,USE+AF8-SBA+AF8-784 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4235,Jesse Hahn,5,804,Jesse Hahn,hahnje01,370,Jesse Chavez,chaveje01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-804 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4954,Joey Gerber,5,712,Joey Gerber,gerbejo01,609,Jose Ferrer,ferrejo01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-712 +player+AF8-ambiguous+AF8-match,Player could match 5 different SbaPlayers,4336,Justin Topa,5,1999,Justin Topa,topaju01,1857,Justin Smoak,smoakju01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1999 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,5008,Kyle Hart,5,832,Kyle Hart,hartky01,830,Kyle Harrison,harriky01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-832 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,5033,Matt Hall,5,806,Matt Hall,hallma02,1182,Matt Magill,magilma01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-806 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,5072,Nik Turley,5,2027,Nik Turley,turleni01,940,Nick Hundley,hundlni01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-2027 +player+AF8-ambiguous+AF8-match,Player could match 9 different SbaPlayers,5074,Nivaldo Rodriguez,5,1687,Nivaldo Rodriguez,rodrini01,1685,Endy Rodriguez,rodrien01,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-1687 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,5085,Ramon Rosso,5,1716,Ramon Rosso,rossora01,2037,Ramon Urias,uriasra01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1716 +player+AF8-ambiguous+AF8-match,Player could match 10 different SbaPlayers,5089,Rico Garcia,5,693,Rico Garcia,garciri01,689,Rony Garcia,garciro03,1,Choose correct match from 5 options,USE+AF8-SBA+AF8-693 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4230,Ryan Sherriff,5,1814,Ryan Sherriff,sherrry01,858,Ryan Hendrix,hendrry01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1814 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,4682,Sam Selman,5,1798,Sam Selman,selmasa01,653,Sam Freeman,freemsa01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1798 +player+AF8-ambiguous+AF8-match,Player could match 2 different SbaPlayers,5124,Stephen Tarpley,5,1958,Stephen Tarpley,tarplst01,1070,Stephen Kolek,kolekst01,1,Choose correct match from 2 options,USE+AF8-SBA+AF8-1958 +player+AF8-ambiguous+AF8-match,Player could match 3 different SbaPlayers,4487,Taylor Guilbeau,5,791,Taylor Guilbeau,guilbta01,717,Tyler Gilbert,gilbety01,1,Choose correct match from 3 options,USE+AF8-SBA+AF8-791 +middle+AF8-initial+AF8-conflict,3 players with similar first/last names but different middle initials,4187,Luis H Garcia,5,,,,5017,Luis Garcia,,N/A,+ACI-Verify these are different people: Luis H Garcia, Luis Garcia, Luis V Garcia+ACI-,DIFFERENT+AF8-PEOPLE +middle+AF8-initial+AF8-conflict,2 players with similar first/last names but different middle initials,4660,Will Smith,5,,,,4181,Will D Smith,,N/A,+ACI-Verify these are different people: Will Smith, Will D Smith+ACI-,DIFFERENT+AF8-PEOPLE +middle+AF8-initial+AF8-conflict,2 players with similar first/last names but different middle initials,4588,Javy Guerra,5,,,,3810,Javy A Guerra,,N/A,+ACI-Verify these are different people: Javy Guerra, Javy A Guerra+ACI-,DIFFERENT+AF8-PEOPLE diff --git a/.claude/sqlite-to-postgres/botched-sbaplayer-matching/new_sbaplayers_to_insert.csv b/.claude/sqlite-to-postgres/botched-sbaplayer-matching/new_sbaplayers_to_insert.csv new file mode 100644 index 0000000..e0db79e --- /dev/null +++ b/.claude/sqlite-to-postgres/botched-sbaplayer-matching/new_sbaplayers_to_insert.csv @@ -0,0 +1 @@ +temp_id,first_name,last_name,key_bbref,key_fangraphs,key_mlbam,key_retro diff --git a/.claude/sqlite-to-postgres/botched-sbaplayer-matching/new_sbaplayers_to_insert_complete.csv b/.claude/sqlite-to-postgres/botched-sbaplayer-matching/new_sbaplayers_to_insert_complete.csv new file mode 100644 index 0000000..35216fb --- /dev/null +++ b/.claude/sqlite-to-postgres/botched-sbaplayer-matching/new_sbaplayers_to_insert_complete.csv @@ -0,0 +1,1324 @@ +temp_id,first_name,last_name,key_bbref,key_fangraphs,key_mlbam,key_retro +90000,AJ,Minter,,,, +90001,AJ,Pollock,,,, +90002,Aaron,Altherr,,,, +90003,Aaron,Bummer,,,, +90004,Aaron,Hicks,,,, +90005,Aaron,Judge,,,, +90006,Aaron,Nola,,,, +90007,Aaron,Sanchez,,,, +90008,Adalberto,Mondesi,,,, +90009,Adam,Conley,,,, +90010,Adam,Duvall,,,, +90011,Adam,Eaton,,,, +90012,Adam,Engel,,,, +90013,Adam,Frazier,,,, +90014,Adam,Jones,,,, +90015,Adam,Kolarek,,,, +90016,Adam,Morgan,,,, +90017,Adam,Ottavino,,,, +90018,Adam,Warren,,,, +90019,Addison,Russell,,,, +90020,Adeiny,Hechavarria,,,, +90021,Albert,Almora,,,, +90022,Albert,Pujols,,,, +90023,Aledmys,Diaz,,,, +90024,Alex,Avila,,,, +90025,Alex,Bregman,,,, +90026,Alex,Claudio,,,, +90027,Alex,Cobb,,,, +90028,Alex,Colome,,,, +90029,Alex,Gordon,,,, +90030,Alex,Wood,,,, +90031,Amed,Rosario,,,, +90032,Amir,Garrett,,,, +90033,Andrelton,Simmons,,,, +90034,Andrew,Benintendi,,,, +90035,Andrew,Cashner,,,, +90036,Andrew,Chafin,,,, +90037,Andrew,Heaney,,,, +90038,Andrew,Knapp,,,, +90039,Andrew,McCutchen,,,, +90040,Andrew,Miller,,,, +90041,Andrew,Stevenson,,,, +90042,Andrew,Suarez,,,, +90043,Anibal,Sanchez,,,, +90044,Anthony,DeSclafani,,,, +90045,Anthony,Rendon,,,, +90046,Anthony,Rizzo,,,, +90047,Anthony,Swarzak,,,, +90048,Antonio,Senzatela,,,, +90049,Archie,Bradley,,,, +90050,Ariel,Jurado,,,, +90051,Aroldis,Chapman,,,, +90052,Asdrubal,Cabrera,,,, +90053,Austin,Barnes,,,, +90054,Austin,Gomber,,,, +90055,Austin,Hedges,,,, +90056,Austin,Pruitt,,,, +90057,Austin,Romine,,,, +90058,Austin,Slater,,,, +90059,Austin,Wynns,,,, +90060,Avisail,Garcia,,,, +90061,Ben,Gamel,,,, +90062,Ben,Zobrist,,,, +90063,Billy,Hamilton,,,, +90064,Billy,McKinney,,,, +90065,Blaine,Hardy,,,, +90066,Blake,Parker,,,, +90067,Blake,Snell,,,, +90068,Blake,Swihart,,,, +90069,Blake,Treinen,,,, +90070,Brad,Boxberger,,,, +90071,Brad,Brach,,,, +90072,Brad,Hand,,,, +90073,Brad,Keller,,,, +90074,Brad,Peacock,,,, +90075,Brandon,Belt,,,, +90076,Brandon,Crawford,,,, +90077,Brandon,Dixon,,,, +90078,Brandon,Kintzler,,,, +90079,Brandon,Nimmo,,,, +90080,Brent,Suter,,,, +90081,Brett,Anderson,,,, +90082,Brett,Gardner,,,, +90083,Brett,Phillips,,,, +90084,Brian,Anderson,,,, +90085,Brian,Dozier,,,, +90086,Brian,Flynn,,,, +90087,Brian,Johnson,,,, +90088,Brian,McCann,,,, +90089,Brock,Holt,,,, +90090,Bryan,Holaday,,,, +90091,Bryan,Shaw,,,, +90092,Bryce,Harper,,,, +90093,Buck,Farmer,,,, +90094,Burch,Smith,,,, +90095,Buster,Posey,,,, +90096,CJ,Cron,,,, +90097,Caleb,Smith,,,, +90098,Cam,Bedrosian,,,, +90099,Cam,Gallagher,,,, +90100,Carlos,Carrasco,,,, +90101,Carlos,Correa,,,, +90102,Carlos,Gomez,,,, +90103,Carlos,Gonzalez,,,, +90104,Carlos,Martinez,,,, +90105,Carlos,Rodon,,,, +90106,Carlos,Santana,,,, +90107,CC,Sabathia,,,, +90108,Cedric,Mullins,,,, +90109,Cesar,Hernandez,,,, +90110,Chad,Bettis,,,, +90111,Chad,Green,,,, +90112,Chad,Kuhl,,,, +90113,Chad,Pinder,,,, +90114,Chance,Sisco,,,, +90115,Charlie,Blackmon,,,, +90116,Charlie,Culberson,,,, +90117,Charlie,Morton,,,, +90118,Charlie,Tilson,,,, +90119,Chase,Anderson,,,, +90120,Chaz,Roe,,,, +90121,Chris,Archer,,,, +90122,Chris,Davis,,,, +90123,Chris,Devenski,,,, +90124,Chris,Herrmann,,,, +90125,Chris,Iannetta,,,, +90126,Chris,Martin,,,, +90127,Chris,Owings,,,, +90128,Chris,Sale,,,, +90129,Chris,Stratton,,,, +90130,Chris,Taylor,,,, +90131,Christian,Vazquez,,,, +90132,Christian,Yelich,,,, +90133,Clay,Buchholz,,,, +90134,Clayton,Kershaw,,,, +90135,Clayton,Richard,,,, +90136,Cody,Bellinger,,,, +90137,Cody,Reed,,,, +90138,Cole,Hamels,,,, +90139,Colin,Moran,,,, +90140,Collin,McHugh,,,, +90141,Corbin,Burnes,,,, +90142,Corey,Dickerson,,,, +90143,Corey,Kluber,,,, +90144,Corey,Knebel,,,, +90145,Corey,Oswalt,,,, +90146,Cory,Spangenberg,,,, +90147,Craig,Kimbrel,,,, +90148,Craig,Stammen,,,, +90149,Curt,Casali,,,, +90150,Dallas,Keuchel,,,, +90151,Dan,Otero,,,, +90152,Dan,Straily,,,, +90153,Dan,Winkler,,,, +90154,Daniel,Descalso,,,, +90155,Daniel,Mengden,,,, +90156,Daniel,Murphy,,,, +90157,Daniel,Norris,,,, +90158,Daniel,Palka,,,, +90159,Daniel,Robertson,,,, +90160,Daniel,Stumpf,,,, +90161,Danny,Duffy,,,, +90162,Danny,Jansen,,,, +90163,Dansby,Swanson,,,, +90164,David,Bote,,,, +90165,David,Dahl,,,, +90166,David,Fletcher,,,, +90167,David,Freese,,,, +90168,David,Hernandez,,,, +90169,David,Hess,,,, +90170,David,Peralta,,,, +90171,David,Price,,,, +90172,Dee,Strange Gordon,,,, +90173,Delino,DeShields,,,, +90174,Dellin,Betances,,,, +90175,Dereck,Rodriguez,,,, +90176,Derek,Dietrich,,,, +90177,Derek,Holland,,,, +90178,Dexter,Fowler,,,, +90179,Didi,Gregorius,,,, +90180,Diego,Castillo,,,, +90181,DJ,LeMahieu,,,, +90182,Domingo,German,,,, +90183,Domingo,Santana,,,, +90184,Dominic,Smith,,,, +90185,Dovydas,Neverauskas,,,, +90186,Drew,Pomeranz,,,, +90187,Drew,VerHagen,,,, +90188,Dylan,Bundy,,,, +90189,Dylan,Covey,,,, +90190,Dylan,Floro,,,, +90191,Eddie,Rosario,,,, +90192,Eduardo,Escobar,,,, +90193,Eduardo,Nunez,,,, +90194,Eduardo,Rodriguez,,,, +90195,Edwin,Diaz,,,, +90196,Edwin,Encarnacion,,,, +90197,Edwin,Jackson,,,, +90198,Ehire,Adrianza,,,, +90199,Elias,Diaz,,,, +90200,Elieser,Hernandez,,,, +90201,Elvis,Andrus,,,, +90202,Emilio,Pagan,,,, +90203,Ender,Inciarte,,,, +90204,Enrique,Hernandez,,,, +90205,Eric,Hosmer,,,, +90206,Eric,Lauer,,,, +90207,Eric,Thames,,,, +90208,Erick,Fedde,,,, +90209,Erik,Gonzalez,,,, +90210,Erik,Kratz,,,, +90211,Eugenio,Suarez,,,, +90212,Evan,Longoria,,,, +90213,Felipe,Vazquez,,,, +90214,Felix,Hernandez,,,, +90215,Felix,Pena,,,, +90216,Fernando,Rodney,,,, +90217,Francisco,Cervelli,,,, +90218,Francisco,Lindor,,,, +90219,Francisco,Liriano,,,, +90220,Franmil,Reyes,,,, +90221,Freddie,Freeman,,,, +90222,Freddy,Galvis,,,, +90223,Freddy,Peralta,,,, +90224,Garrett,Richards,,,, +90225,Gary,Sanchez,,,, +90226,George,Springer,,,, +90227,Gerardo,Parra,,,, +90228,German,Marquez,,,, +90229,Gerrit,Cole,,,, +90230,Giancarlo,Stanton,,,, +90231,Gio,Gonzalez,,,, +90232,Gleyber,Torres,,,, +90233,Greg,Allen,,,, +90234,Greg,Garcia,,,, +90235,Greg,Holland,,,, +90236,Gregory,Polanco,,,, +90237,Guillermo,Heredia,,,, +90238,Hansel,Robles,,,, +90239,Harrison,Bader,,,, +90240,Heath,Hembree,,,, +90241,Hector,Neris,,,, +90242,Hector,Rondon,,,, +90243,Hector,Santiago,,,, +90244,Hector,Velazquez,,,, +90245,Hernan,Perez,,,, +90246,Homer,Bailey,,,, +90247,Howie,Kendrick,,,, +90248,Hunter,Dozier,,,, +90249,Hunter,Pence,,,, +90250,Hunter,Renfroe,,,, +90251,Hunter,Wood,,,, +90252,Hyun,Jin Ryu,,,, +90253,Ian,Desmond,,,, +90254,Ian,Happ,,,, +90255,Ian,Kennedy,,,, +90256,Ian,Kinsler,,,, +90257,Isiah,Kiner Falefa,,,, +90258,Ivan,Nova,,,, +90259,JA,Happ,,,, +90260,JD,Martinez,,,, +90261,JT,Realmuto,,,, +90262,Jace,Fry,,,, +90263,Jace,Peterson,,,, +90264,Jack,Flaherty,,,, +90265,Jackie,Bradley Jr,,,, +90266,Jacob,Barnes,,,, +90267,Jacob,deGrom,,,, +90268,JaCoby,Jones,,,, +90269,Jaime,Barria,,,, +90270,Jake,Arrieta,,,, +90271,Jake,Bauers,,,, +90272,Jake,Cave,,,, +90273,Jake,Lamb,,,, +90274,Jake,Marisnick,,,, +90275,Jake,McGee,,,, +90276,Jake,Odorizzi,,,, +90277,Jakob,Junis,,,, +90278,Jalen,Beeks,,,, +90279,James,McCann,,,, +90280,James,Paxton,,,, +90281,Jameson,Taillon,,,, +90282,Jared,Hughes,,,, +90283,Jarlin,Garcia,,,, +90284,Jarrod,Dyson,,,, +90285,Jason,Adam,,,, +90286,Jason,Heyward,,,, +90287,Jason,Kipnis,,,, +90288,Jason,Vargas,,,, +90289,Javier,Baez,,,, +90290,Javy,Guerra,,,, +90291,Jay,Bruce,,,, +90292,Jean,Segura,,,, +90293,Jedd,Gyorko,,,, +90294,Jeff,Mathis,,,, +90295,Jeff,McNeil,,,, +90296,Jeffrey,Springs,,,, +90297,Jefry,Rodriguez,,,, +90298,Jeimer,Candelario,,,, +90299,Jeremy,Hellickson,,,, +90300,Jeremy,Jeffress,,,, +90301,Jerry,Blevins,,,, +90302,Jesse,Biddle,,,, +90303,Jesse,Chavez,,,, +90304,Jesse,Winker,,,, +90305,Jesus,Aguilar,,,, +90306,Jesus,Sucre,,,, +90307,Jeurys,Familia,,,, +90308,Jhoulys,Chacin,,,, +90309,Ji,Man Choi,,,, +90310,Jimmy,Yacabonis,,,, +90311,Joc,Pederson,,,, +90312,Joe,Biagini,,,, +90313,Joe,Jimenez,,,, +90314,Joe,Kelly,,,, +90315,Joe,Musgrove,,,, +90316,Joe,Panik,,,, +90317,Joe,Smith,,,, +90318,Joey,Gallo,,,, +90319,Joey,Lucchesi,,,, +90320,Joey,Rickard,,,, +90321,Joey,Votto,,,, +90322,Joey,Wendle,,,, +90323,Johan,Camargo,,,, +90324,John,Brebbia,,,, +90325,John,Gant,,,, +90326,John,Hicks,,,, +90327,John,Ryan Murphy,,,, +90328,Jon,Gray,,,, +90329,Jon,Jay,,,, +90330,Jon,Lester,,,, +90331,Jonathan,Holder,,,, +90332,Jonathan,Lucroy,,,, +90333,Jonathan,Schoop,,,, +90334,Jonathan,Villar,,,, +90335,Jordan,Hicks,,,, +90336,Jordan,Zimmermann,,,, +90337,Jordy,Mercer,,,, +90338,Jorge,Alfaro,,,, +90339,Jorge,Bonifacio,,,, +90340,Jorge,Polanco,,,, +90341,Jorge,Soler,,,, +90342,Jose,Abreu,,,, +90343,Jose,Altuve,,,, +90344,Jose,Alvarado,,,, +90345,Jose,Alvarez,,,, +90346,Jose,Berrios,,,, +90347,Jose,Iglesias,,,, +90348,Jose,Leclerc,,,, +90349,Jose,Martinez,,,, +90350,Jose,Osuna,,,, +90351,Jose,Peraza,,,, +90352,Jose,Quintana,,,, +90353,Jose,Ramirez,,,, +90354,Jose,Urena,,,, +90355,Josh,Bell,,,, +90356,Josh,Hader,,,, +90357,Josh,Harrison,,,, +90358,Josh,Phegley,,,, +90359,Josh,Reddick,,,, +90360,Josh,Tomlin,,,, +90361,JT,Riddle,,,, +90362,Juan,Minaya,,,, +90363,Juan,Nicasio,,,, +90364,Juan,Soto,,,, +90365,Julio,Teheran,,,, +90366,Junior,Guerra,,,, +90367,Jurickson,Profar,,,, +90368,Justin,Anderson,,,, +90369,Justin,Bour,,,, +90370,Justin,Smoak,,,, +90371,Justin,Turner,,,, +90372,Justin,Upton,,,, +90373,Justin,Verlander,,,, +90374,Justin,Wilson,,,, +90375,Ken,Giles,,,, +90376,Kendrys,Morales,,,, +90377,Kenley,Jansen,,,, +90378,Kenta,Maeda,,,, +90379,Ketel,Marte,,,, +90380,Kevan,Smith,,,, +90381,Kevin,Gausman,,,, +90382,Kevin,Kiermaier,,,, +90383,Kevin,McCarthy,,,, +90384,Kevin,Newman,,,, +90385,Kevin,Pillar,,,, +90386,Kevin,Plawecki,,,, +90387,Khris,Davis,,,, +90388,Kirby,Yates,,,, +90389,Kole,Calhoun,,,, +90390,Kolten,Wong,,,, +90391,Kris,Bryant,,,, +90392,Kurt,Suzuki,,,, +90393,Kyle,Barraclough,,,, +90394,Kyle,Crick,,,, +90395,Kyle,Freeland,,,, +90396,Kyle,Gibson,,,, +90397,Kyle,Hendricks,,,, +90398,Kyle,Schwarber,,,, +90399,Kyle,Seager,,,, +90400,Lance,Lynn,,,, +90401,Lance,McCullers Jr,,,, +90402,Leonys,Martin,,,, +90403,Leury,Garcia,,,, +90404,Lewis,Brinson,,,, +90405,Logan,Forsythe,,,, +90406,Logan,Morrison,,,, +90407,Lorenzo,Cain,,,, +90408,Lou,Trivino,,,, +90409,Lourdes,Gurriel Jr,,,, +90410,Lucas,Giolito,,,, +90411,Luis,Castillo,,,, +90412,Luis,Garcia,,,, +90413,Luis,Perdomo,,,, +90414,Luis,Severino,,,, +90415,Luke,Jackson,,,, +90416,Luke,Maile,,,, +90417,Luke,Voit,,,, +90418,Luke,Weaver,,,, +90419,Madison,Bumgarner,,,, +90420,Magneuris,Sierra,,,, +90421,Maikel,Franco,,,, +90422,Mallex,Smith,,,, +90423,Manny,Machado,,,, +90424,Manny,Pina,,,, +90425,Manuel,Margot,,,, +90426,Marcell,Ozuna,,,, +90427,Marco,Gonzales,,,, +90428,Marcus,Semien,,,, +90429,Marcus,Stroman,,,, +90430,Mark,Canha,,,, +90431,Mark,Melancon,,,, +90432,Mark,Reynolds,,,, +90433,Martin,Maldonado,,,, +90434,Martin,Perez,,,, +90435,Martin,Prado,,,, +90436,Marwin,Gonzalez,,,, +90437,Masahiro,Tanaka,,,, +90438,Mason,Williams,,,, +90439,Matt,Adams,,,, +90440,Matt,Barnes,,,, +90441,Matt,Carpenter,,,, +90442,Matt,Chapman,,,, +90443,Matt,Davidson,,,, +90444,Matt,Duffy,,,, +90445,Matt,Grace,,,, +90446,Matt,Harvey,,,, +90447,Matt,Kemp,,,, +90448,Matt,Magill,,,, +90449,Matt,Olson,,,, +90450,Matt,Strahm,,,, +90451,Matt,Wieters,,,, +90452,Matthew,Boyd,,,, +90453,Matthew,Joyce,,,, +90454,Max,Kepler,,,, +90455,Max,Muncy,,,, +90456,Max,Scherzer,,,, +90457,Max,Stassi,,,, +90458,Melky,Cabrera,,,, +90459,Michael,A Taylor,,,, +90460,Michael,Brantley,,,, +90461,Michael,Conforto,,,, +90462,Michael,Feliz,,,, +90463,Michael,Fulmer,,,, +90464,Michael,Lorenzen,,,, +90465,Michael,Perez,,,, +90466,Michael,Wacha,,,, +90467,Miguel,Andujar,,,, +90468,Miguel,Cabrera,,,, +90469,Miguel,Castro,,,, +90470,Miguel,Rojas,,,, +90471,Miguel,Sano,,,, +90472,Mike,Clevinger,,,, +90473,Mike,Fiers,,,, +90474,Mike,Foltynewicz,,,, +90475,Mike,Leake,,,, +90476,Mike,Mayers,,,, +90477,Mike,Minor,,,, +90478,Mike,Montgomery,,,, +90479,Mike,Moustakas,,,, +90480,Mike,Trout,,,, +90481,Mike,Wright,,,, +90482,Mike,Zunino,,,, +90483,Miles,Mikolas,,,, +90484,Mitch,Garver,,,, +90485,Mitch,Haniger,,,, +90486,Mitch,Moreland,,,, +90487,Mookie,Betts,,,, +90488,Mychal,Givens,,,, +90489,Nate,Jones,,,, +90490,Nathan,Eovaldi,,,, +90491,Neil,Walker,,,, +90492,Nelson,Cruz,,,, +90493,Nicholas,Castellanos,,,, +90494,Nick,Ahmed,,,, +90495,Nick,Hundley,,,, +90496,Nick,Kingham,,,, +90497,Nick,Markakis,,,, +90498,Nick,Martini,,,, +90499,Nick,Pivetta,,,, +90500,Nick,Tropeano,,,, +90501,Nick,Vincent,,,, +90502,Nick,Williams,,,, +90503,Nicky,Delmonico,,,, +90504,Niko,Goodrum,,,, +90505,Noah,Syndergaard,,,, +90506,Noe,Ramirez,,,, +90507,Nolan,Arenado,,,, +90508,Nomar,Mazara,,,, +90509,Odubel,Herrera,,,, +90510,Oliver,Drake,,,, +90511,Oliver,Perez,,,, +90512,Omar,Narvaez,,,, +90513,Orlando,Arcia,,,, +90514,Ozzie,Albies,,,, +90515,Pablo,Lopez,,,, +90516,Pablo,Sandoval,,,, +90517,Pat,Valaika,,,, +90518,Patrick,Corbin,,,, +90519,Paul,DeJong,,,, +90520,Paul,Fry,,,, +90521,Paul,Goldschmidt,,,, +90522,Pedro,Baez,,,, +90523,Pedro,Severino,,,, +90524,Pedro,Strop,,,, +90525,Phil,Ervin,,,, +90526,Phil,Maton,,,, +90527,Pierce,Johnson,,,, +90528,Rafael,Devers,,,, +90529,Rafael,Ortega,,,, +90530,Raisel,Iglesias,,,, +90531,Ramon,Laureano,,,, +90532,Randal,Grichuk,,,, +90533,Renato,Nunez,,,, +90534,Reyes,Moronta,,,, +90535,Reynaldo,Lopez,,,, +90536,Rhys,Hoskins,,,, +90537,Rich,Hill,,,, +90538,Richard,Bleier,,,, +90539,Richard,Rodriguez,,,, +90540,Richard,Urena,,,, +90541,Rick,Porcello,,,, +90542,Robbie,Erlin,,,, +90543,Robbie,Grossman,,,, +90544,Robbie,Ray,,,, +90545,Robert,Gsellman,,,, +90546,Robert,Stock,,,, +90547,Roberto,Perez,,,, +90548,Robinson,Cano,,,, +90549,Robinson,Chirinos,,,, +90550,Roman,Quinn,,,, +90551,Ronald,Acuna Jr,,,, +90552,Ronald,Guzman,,,, +90553,Ronny,Rodriguez,,,, +90554,Rosell,Herrera,,,, +90555,Ross,Stripling,,,, +90556,Rougned,Odor,,,, +90557,Russell,Martin,,,, +90558,Ryan,Borucki,,,, +90559,Ryan,Brasier,,,, +90560,Ryan,Braun,,,, +90561,Ryan,Buchter,,,, +90562,Ryan,McMahon,,,, +90563,Ryan,OHearn,,,, +90564,Ryan,Pressly,,,, +90565,Ryan,Tepera,,,, +90566,Ryan,Yarbrough,,,, +90567,Ryan,Zimmerman,,,, +90568,Ryne,Stanek,,,, +90569,Ryon,Healy,,,, +90570,Salvador,Perez,,,, +90571,Sam,Dyson,,,, +90572,Sam,Gaviglio,,,, +90573,Sandy,Leon,,,, +90574,Scooter,Gennett,,,, +90575,Scott,Alexander,,,, +90576,Scott,Kingery,,,, +90577,Scott,Oberg,,,, +90578,Scott,Schebler,,,, +90579,Sean,Doolittle,,,, +90580,Sean,Manaea,,,, +90581,Sean,Newcomb,,,, +90582,Sean,Rodriguez,,,, +90583,Sergio,Romo,,,, +90584,Seth,Lugo,,,, +90585,Shane,Bieber,,,, +90586,Shane,Greene,,,, +90587,Shin,Soo Choo,,,, +90588,Shohei,Ohtani,,,, +90589,Sonny,Gray,,,, +90590,Starlin,Castro,,,, +90591,Starling,Marte,,,, +90592,Stephen,Piscotty,,,, +90593,Stephen,Strasburg,,,, +90594,Steve,Cishek,,,, +90595,Steve,Pearce,,,, +90596,Steven,Brault,,,, +90597,Steven,Duggar,,,, +90598,Steven,Matz,,,, +90599,Steven,Souza Jr,,,, +90600,TJ,McFarland,,,, +90601,Tanner,Roark,,,, +90602,Tanner,Scott,,,, +90603,Taylor,Rogers,,,, +90604,Taylor,Ward,,,, +90605,Taylor,Williams,,,, +90606,Tayron,Guerrero,,,, +90607,Teoscar,Hernandez,,,, +90608,Thomas,Pannone,,,, +90609,Tim,Anderson,,,, +90610,Tim,Beckham,,,, +90611,Tim,Hill,,,, +90612,Tim,Mayza,,,, +90613,Todd,Frazier,,,, +90614,Tom,Murphy,,,, +90615,Tommy,Hunter,,,, +90616,Tommy,La Stella,,,, +90617,Tommy,Pham,,,, +90618,Tony,Kemp,,,, +90619,Tony,Watson,,,, +90620,Tony,Wolters,,,, +90621,Travis,Jankowski,,,, +90622,Travis,Shaw,,,, +90623,Trea,Turner,,,, +90624,Trevor,Bauer,,,, +90625,Trevor,Cahill,,,, +90626,Trevor,May,,,, +90627,Trevor,Richards,,,, +90628,Trevor,Story,,,, +90629,Trevor,Williams,,,, +90630,Trey,Mancini,,,, +90631,Tucker,Barnhart,,,, +90632,Ty,Blach,,,, +90633,Tyler,Anderson,,,, +90634,Tyler,Austin,,,, +90635,Tyler,Bashlor,,,, +90636,Tyler,Chatwood,,,, +90637,Tyler,Clippard,,,, +90638,Tyler,Flowers,,,, +90639,Tyler,Glasnow,,,, +90640,Tyler,Mahle,,,, +90641,Tyler,Olson,,,, +90642,Tyler,ONeill,,,, +90643,Tyler,Skaggs,,,, +90644,Tyler,White,,,, +90645,Tyson,Ross,,,, +90646,Victor,Caratini,,,, +90647,Victor,Reyes,,,, +90648,Vince,Velasquez,,,, +90649,Wade,Davis,,,, +90650,Wade,LeBlanc,,,, +90651,Wade,Miley,,,, +90652,Walker,Buehler,,,, +90653,Wander,Suero,,,, +90654,Wandy,Peralta,,,, +90655,Wei,Yin Chen,,,, +90656,Welington,Castillo,,,, +90657,Whit,Merrifield,,,, +90658,Wil,Myers,,,, +90659,Will,Harris,,,, +90660,Will,Smith,,,, +90661,Willie,Calhoun,,,, +90662,Willson,Contreras,,,, +90663,Willy,Adames,,,, +90664,Wilmer,Difo,,,, +90665,Wilmer,Flores,,,, +90666,Wily,Peralta,,,, +90667,Xander,Bogaerts,,,, +90668,Yadiel,Rivera,,,, +90669,Yadier,Molina,,,, +90670,Yairo,Munoz,,,, +90671,Yan,Gomes,,,, +90672,Yangervis,Solarte,,,, +90673,Yasiel,Puig,,,, +90674,Yasmani,Grandal,,,, +90675,Yoan,Moncada,,,, +90676,Yoenis,Cespedes,,,, +90677,Yolmer,Sanchez,,,, +90678,Yonder,Alonso,,,, +90679,Yonny,Chirinos,,,, +90680,Yoshihisa,Hirano,,,, +90681,Yuli,Gurriel,,,, +90682,Yusmeiro,Petit,,,, +90683,Zach,Eflin,,,, +90684,Zack,Britton,,,, +90685,Zack,Cozart,,,, +90686,Zack,Godley,,,, +90687,Zack,Greinke,,,, +90688,Zack,Wheeler,,,, +90689,AJ,Cole,,,, +90690,Aaron,Brooks,,,, +90691,Aaron,Civale,,,, +90692,Abraham,Toro,,,, +90693,Adalberto,Mejia,,,, +90694,Adam,Cimber,,,, +90695,Adam,Haseley,,,, +90696,Adam,Plutko,,,, +90697,Adam,Wainwright,,,, +90698,Adrian,Houser,,,, +90699,Adrian,Sampson,,,, +90700,Alec,Mills,,,, +90701,Alex,Dickerson,,,, +90702,Alex,McRae,,,, +90703,Alex,Verdugo,,,, +90704,Alex,Young,,,, +90705,Andrew,Kittredge,,,, +90706,Anthony,Bass,,,, +90707,Anthony,Santander,,,, +90708,Aristides,Aquino,,,, +90709,Asher,Wojciechowski,,,, +90710,Austin,Adams,,,, +90711,Austin,Allen,,,, +90712,Austin,Brice,,,, +90713,Austin,Dean,,,, +90714,Austin,Hays,,,, +90715,Austin,Meadows,,,, +90716,Austin,Nola,,,, +90717,Austin,Riley,,,, +90718,Austin,Voth,,,, +90719,Bo,Bichette,,,, +90720,Brad,Miller,,,, +90721,Brad,Wieck,,,, +90722,Branden,Kline,,,, +90723,Brandon,Brennan,,,, +90724,Brandon,Drury,,,, +90725,Brandon,Lowe,,,, +90726,Brandon,Woodruff,,,, +90727,Brandon,Workman,,,, +90728,Brendan,McKay,,,, +90729,Brendan,Rodgers,,,, +90730,Brett,Martin,,,, +90731,Brian,Goodwin,,,, +90732,Brock,Burke,,,, +90733,Brock,Stewart,,,, +90734,Bryan,Reynolds,,,, +90735,Bubba,Starling,,,, +90736,Buddy,Boshers,,,, +90737,Byron,Buxton,,,, +90738,Cal,Quantrill,,,, +90739,Caleb,Ferguson,,,, +90740,Cameron,Maybin,,,, +90741,Carlos,Estevez,,,, +90742,Carson,Fulmer,,,, +90743,Carson,Kelly,,,, +90744,Casey,Sadler,,,, +90745,Cavan,Biggio,,,, +90746,Cesar,Puello,,,, +90747,Chad,Sobotka,,,, +90748,Cheslor,Cuthbert,,,, +90749,Chi,Chi Gonzalez,,,, +90750,Chris,Bassitt,,,, +90751,Chris,Paddack,,,, +90752,Christian,Walker,,,, +90753,Christin,Stewart,,,, +90754,Clay,Holmes,,,, +90755,Clint,Frazier,,,, +90756,Cody,Stashak,,,, +90757,Cole,Irvin,,,, +90758,Cole,Tucker,,,, +90759,Colin,Poche,,,, +90760,Colten,Brewer,,,, +90761,Corban,Joseph,,,, +90762,Corey,Seager,,,, +90763,Cory,Gearrin,,,, +90764,Curtis,Granderson,,,, +90765,Dakota,Hudson,,,, +90766,Daniel,Hudson,,,, +90767,Daniel,Ponce de Leon,,,, +90768,Daniel,Vogelbach,,,, +90769,Danny,Santana,,,, +90770,Dario,Agrazal,,,, +90771,Darwinzon,Hernandez,,,, +90772,David,Hale,,,, +90773,David,McKay,,,, +90774,David,Phelps,,,, +90775,Dawel,Lugo,,,, +90776,Derek,Fisher,,,, +90777,Derek,Law,,,, +90778,Devin,Smeltzer,,,, +90779,Dillon,Peters,,,, +90780,Dinelson,Lamet,,,, +90781,DJ,Stewart,,,, +90782,Dominic,Leone,,,, +90783,Donovan,Solano,,,, +90784,Drew,Smyly,,,, +90785,Dustin,Garneau,,,, +90786,Dustin,May,,,, +90787,Dwight,Smith Jr,,,, +90788,Dylan,Cease,,,, +90789,Dylan,Moore,,,, +90790,Edgar,Garcia,,,, +90791,Eloy,Jimenez,,,, +90792,Elvis,Luciano,,,, +90793,Eric,Sogard,,,, +90794,Erik,Swanson,,,, +90795,Evan,Marshall,,,, +90796,Evan,Phillips,,,, +90797,Fernando,Tatis Jr,,,, +90798,Framber,Valdez,,,, +90799,Francisco,Mejia,,,, +90800,Frankie,Montas,,,, +90801,Gabriel,Ynoa,,,, +90802,Garrett,Cooper,,,, +90803,Garrett,Hampson,,,, +90804,Gavin,Lux,,,, +90805,Geoff,Hartlieb,,,, +90806,Gerardo,Reyes,,,, +90807,Gio,Urshela,,,, +90808,Giovanny,Gallegos,,,, +90809,Glenn,Sparkman,,,, +90810,Gordon,Beckham,,,, +90811,Grayson,Greiner,,,, +90812,Gregory,Soto,,,, +90813,Griffin,Canning,,,, +90814,Hanser,Alberto,,,, +90815,Harold,Castro,,,, +90816,Harold,Ramirez,,,, +90817,Hector,Noesi,,,, +90818,Humberto,Arteaga,,,, +90819,Ildemaro,Vargas,,,, +90820,Isan,Diaz,,,, +90821,JB,Wendelken,,,, +90822,JD,Davis,,,, +90823,JP,Crawford,,,, +90824,Jack,Mayfield,,,, +90825,Jacob,Stallings,,,, +90826,Jacob,Waguespack,,,, +90827,Jacob,Webb,,,, +90828,Jairo,Diaz,,,, +90829,Jake,Diekman,,,, +90830,Jake,Jewell,,,, +90831,Jake,Newberry,,,, +90832,Jake,Rogers,,,, +90833,Jandel,Gustave,,,, +90834,Jared,Walsh,,,, +90835,Jason,Castro,,,, +90836,Jay,Jackson,,,, +90837,Jeff,Brigham,,,, +90838,Jeff,Hoffman,,,, +90839,Jeff,Samardzija,,,, +90840,Jerad,Eickhoff,,,, +90841,Jesus,Luzardo,,,, +90842,Jesus,Tinoco,,,, +90843,Jimmy,Cordero,,,, +90844,Joakim,Soria,,,, +90845,Joe,Ross,,,, +90846,John,Means,,,, +90847,Jon,Berti,,,, +90848,Jon,Duplantier,,,, +90849,Jonathan,Davis,,,, +90850,Jonathan,Loaisiga,,,, +90851,Jordan,Luplow,,,, +90852,Jordan,Lyles,,,, +90853,Jordan,Yamamoto,,,, +90854,Jorge,Lopez,,,, +90855,Jose,Cisnero,,,, +90856,Jose,Quijada,,,, +90857,Jose,Rondon,,,, +90858,Jose,Ruiz,,,, +90859,Jose,Suarez,,,, +90860,Jose,Trevino,,,, +90861,Jose,Urquidy,,,, +90862,Josh,Donaldson,,,, +90863,Josh,James,,,, +90864,Josh,Naylor,,,, +90865,Josh,Osich,,,, +90866,Josh,Rojas,,,, +90867,Josh,Smith,,,, +90868,Josh,Taylor,,,, +90869,Josh,VanMeter,,,, +90870,Juan,Lagares,,,, +90871,Julio,Urias,,,, +90872,Jung,Ho Kang,,,, +90873,Justin,Shafer,,,, +90874,Justus,Sheffield,,,, +90875,Kelvin,Gutierrez,,,, +90876,Kelvin,Herrera,,,, +90877,Keon,Broxton,,,, +90878,Keone,Kela,,,, +90879,Keston,Hiura,,,, +90880,Kevin,Cron,,,, +90881,Kolby,Allard,,,, +90882,Kristopher,Negron,,,, +90883,Kyle,Farmer,,,, +90884,Kyle,Lewis,,,, +90885,Kyle,Ryan,,,, +90886,Kyle,Tucker,,,, +90887,Lewis,Thorpe,,,, +90888,Liam,Hendriks,,,, +90889,Logan,Webb,,,, +90890,Lucas,Duda,,,, +90891,Lucas,Sims,,,, +90892,Luis,Arraez,,,, +90893,Luis,Avilan,,,, +90894,Luis,Cessa,,,, +90895,Luis,Guillorme,,,, +90896,Luis,Rengifo,,,, +90897,Luis,Urias,,,, +90898,Luke,Bard,,,, +90899,Mac,Williamson,,,, +90900,Manny,Banuelos,,,, +90901,Marco,Hernandez,,,, +90902,Marcus,Walden,,,, +90903,Matt,Albers,,,, +90904,Matt,Andriese,,,, +90905,Matt,Beaty,,,, +90906,Matt,Bowman,,,, +90907,Matt,Shoemaker,,,, +90908,Matt,Skole,,,, +90909,Matt,Thaiss,,,, +90910,Matt,Wisler,,,, +90911,Mauricio,Dubon,,,, +90912,Max,Fried,,,, +90913,Meibrys,Viloria,,,, +90914,Merrill,Kelly,,,, +90915,Michael,Chavis,,,, +90916,Michael,Pineda,,,, +90917,Michel,Baez,,,, +90918,Mike,Brosseau,,,, +90919,Mike,Ford,,,, +90920,Mike,Freeman,,,, +90921,Mike,Morin,,,, +90922,Mike,Soroka,,,, +90923,Mike,Tauchman,,,, +90924,Mike,Yastrzemski,,,, +90925,Mitch,Keller,,,, +90926,Myles,Straw,,,, +90927,Nate,Lowe,,,, +90928,Nestor,Cortes Jr,,,, +90929,Nick,Anderson,,,, +90930,Nick,Dini,,,, +90931,Nick,Goody,,,, +90932,Nick,Margevicius,,,, +90933,Nick,Ramirez,,,, +90934,Nick,Senzel,,,, +90935,Nick,Solak,,,, +90936,Nick,Wittgren,,,, +90937,Nicky,Lopez,,,, +90938,Nico,Hoerner,,,, +90939,Oscar,Mercado,,,, +90940,Pablo,Reyes,,,, +90941,Patrick,Sandoval,,,, +90942,Pete,Alonso,,,, +90943,Peter,Lambert,,,, +90944,Phil,Gosselin,,,, +90945,Rafael,Montero,,,, +90946,Raimel,Tapia,,,, +90947,Randy,Dobnak,,,, +90948,Ranger,Suarez,,,, +90949,Reese,McGuire,,,, +90950,Richie,Martin,,,, +90951,Rio,Ruiz,,,, +90952,Robel,Garcia,,,, +90953,Robert,Dugger,,,, +90954,Robert,Stephenson,,,, +90955,Roberto,Osuna,,,, +90956,Roenis,Elias,,,, +90957,Ross,Detwiler,,,, +90958,Rowan,Wick,,,, +90959,Rowdy,Tellez,,,, +90960,Ryan,Carpenter,,,, +90961,Ryan,Cordell,,,, +90962,Ryan,Goins,,,, +90963,Ryan,Helsley,,,, +90964,Ryan,McBroom,,,, +90965,Ryan,Weber,,,, +90966,Ryne,Harper,,,, +90967,Sam,Coonrod,,,, +90968,Sam,Hilliard,,,, +90969,Sam,Travis,,,, +90970,Sam,Tuivailala,,,, +90971,Sandy,Alcantara,,,, +90972,Scott,Barlow,,,, +90973,Scott,Heineman,,,, +90974,Sean,Murphy,,,, +90975,Sean,Reid Foley,,,, +90976,Seth,Brown,,,, +90977,Shaun,Anderson,,,, +90978,Shawn,Armstrong,,,, +90979,Shawn,Kelley,,,, +90980,Shed,Long,,,, +90981,Shelby,Miller,,,, +90982,Sheldon,Neuse,,,, +90983,Spencer,Turnbull,,,, +90984,Stefan,Crichton,,,, +90985,Stephen,Vogt,,,, +90986,Stevie,Wilkerson,,,, +90987,Tanner,Rainey,,,, +90988,Taylor,Clarke,,,, +90989,Taylor,Cole,,,, +90990,Taylor,Guerrieri,,,, +90991,Thairo,Estrada,,,, +90992,Tim,Federowicz,,,, +90993,Tim,Locastro,,,, +90994,Tim,Lopes,,,, +90995,Tim,Melville,,,, +90996,Tom,Eshelman,,,, +90997,Tomas,Nido,,,, +90998,Tommy,Edman,,,, +90999,Tommy,Kahnle,,,, +91000,Tommy,Milone,,,, +91001,Tony,Gonsolin,,,, +91002,Touki,Toussaint,,,, +91003,Travis,dArnaud,,,, +91004,Travis,Demeritte,,,, +91005,Trent,Grisham,,,, +91006,Trent,Thornton,,,, +91007,Trevor,Gott,,,, +91008,Trey,Wingenter,,,, +91009,Ty,Buttrey,,,, +91010,Ty,France,,,, +91011,Tyler,Alexander,,,, +91012,Tyler,Beede,,,, +91013,Tyler,Duffey,,,, +91014,Tyler,Kinley,,,, +91015,Tyler,Naquin,,,, +91016,Tyler,Saladino,,,, +91017,Tyler,Wade,,,, +91018,Tyler,Webb,,,, +91019,Victor,Alcantara,,,, +91020,Victor,Robles,,,, +91021,Vladimir,Guerrero Jr,,,, +91022,Walker,Lockett,,,, +91023,Wei,Chung Wang,,,, +91024,Wes,Parsons,,,, +91025,Wilfredo,Tovar,,,, +91026,Will,D Smith,,,, +91027,Willi,Castro,,,, +91028,Willians,Astudillo,,,, +91029,Wilmer,Font,,,, +91030,Wilson,Ramos,,,, +91031,Yandy,Diaz,,,, +91032,Yency,Almonte,,,, +91033,Yimi,Garcia,,,, +91034,Yoan,Lopez,,,, +91035,Yonathan,Daza,,,, +91036,Yordan,Alvarez,,,, +91037,Yu,Chang,,,, +91038,Yu,Darvish,,,, +91039,Yusei,Kikuchi,,,, +91040,Zac,Gallen,,,, +91041,Zac,Reininger,,,, +91042,Zach,Davies,,,, +91043,Zach,Plesac,,,, +91044,Zach,Britton,,,, +91045,Zack,Collins,,,, +91046,Zack,Littell,,,, +91047,Ashton,Goudeau,,,, +91048,Austin,Davis,,,, +91049,Jake,Woodford,,,, +91050,Phillips,Valdez,,,, +91051,Seth,Elledge,,,, +91052,Trevor,Rogers,,,, +91053,Trevor,Rosenthal,,,, +91054,Zack,Burdi,,,, +91055,Andres,Gimenez,,,, +91056,Andrew,Knizner,,,, +91057,Andrew,Velazquez,,,, +91058,Andy,Young,,,, +91059,Anthony,Alford,,,, +91060,Anthony,Bemboom,,,, +91061,Beau,Taylor,,,, +91062,Bobby,Dalbec,,,, +91063,Braden,Bishop,,,, +91064,Bradley,Zimmer,,,, +91065,Brent,Rooker,,,, +91066,Anderson,Tejeda,,,, +91067,Luis,Torrens,,,, +91068,Luis,V Garcia,,,, +91069,Rob,Refsnyder,,,, +91070,Alec,Bohm,,,, +91071,Alejandro,Kirk,,,, +91072,Carter,Kieboom,,,, +91073,Chad,Wallach,,,, +91074,Chadwick,Tromp,,,, +91075,Christian,Arroyo,,,, +91076,Christian,Colon,,,, +91077,Danny,Mendick,,,, +91078,Darin,Ruf,,,, +91079,Daulton,Varsho,,,, +91080,Daz,Cameron,,,, +91081,Drew,Butera,,,, +91082,Dylan,Carlson,,,, +91083,Eddy,Alvarez,,,, +91084,Edward,Olivares,,,, +91085,Edwin,Rios,,,, +91086,Eli,White,,,, +91087,Eric,Haase,,,, +91088,Evan,White,,,, +91089,Franchy,Cordero,,,, +91090,Franklin,Barreto,,,, +91091,Isaac,Paredes,,,, +91092,Jacob,Nottingham,,,, +91093,Jake,Cronenworth,,,, +91094,Jake,Fraley,,,, +91095,Jake,Noll,,,, +91096,Jared,Oliva,,,, +91097,Jazz,Chisholm,,,, +91098,Jesus,Sanchez,,,, +91099,Jo,Adell,,,, +91100,Joe,Hudson,,,, +91101,Joey,Bart,,,, +91102,Jonah,Heim,,,, +91103,Jonathan,Arauz,,,, +91104,Jorge,Mateo,,,, +91105,Jose,Garcia,,,, +91106,Jose,Marmolejos,,,, +91107,Joseph,Odom,,,, +91108,Josh,Fuentes,,,, +91109,KeBryan,Hayes,,,, +91110,Kyle,Garlick,,,, +91111,Kyle,Higashioka,,,, +91112,LaMonte,Wade Jr,,,, +91113,Lane,Thomas,,,, +91114,Leody,Taveras,,,, +91115,Lewin,Diaz,,,, +91116,Luis,Robert,,,, +91117,Mark,Mathias,,,, +91118,Mark,Payton,,,, +91119,Max,Schrock,,,, +91120,Monte,Harrison,,,, +91121,Nick,Heath,,,, +91122,Nick,Madrigal,,,, +91123,Pavin,Smith,,,, +91124,Phillip,Evans,,,, +91125,Ramon,Urias,,,, +91126,Randy,Arozarena,,,, +91127,Rangel,Ravelo,,,, +91128,Ryan,Jeffers,,,, +91129,Ryan,Mountcastle,,,, +91130,Sam,Haggerty,,,, +91131,Sam,Huff,,,, +91132,Santiago,Espinal,,,, +91133,Sergio,Alcantara,,,, +91134,Sherten,Apostel,,,, +91135,Shogo,Akiyama,,,, +91136,Taylor,Jones,,,, +91137,Tyler,Heineman,,,, +91138,Tyler,Stephenson,,,, +91139,Tyrone,Taylor,,,, +91140,Tzu,Wei Lin,,,, +91141,Vimael,Machin,,,, +91142,Wyatt,Mathisen,,,, +91143,Yadiel,Hernandez,,,, +91144,Yoshi,Tsutsugo,,,, +91145,Aaron,Loup,,,, +91146,Aaron,Slegers,,,, +91147,Adbert,Alzolay,,,, +91148,Adrian,Morejon,,,, +91149,Alex,Reyes,,,, +91150,Andre,Scrubb,,,, +91151,Andrew,Triggs,,,, +91152,Anthony,Banda,,,, +91153,Anthony,Kay,,,, +91154,Anthony,Misiewicz,,,, +91155,Ben,Braymer,,,, +91156,Blake,Taylor,,,, +91157,Brady,Lail,,,, +91158,Brady,Singer,,,, +91159,Brandon,Bailey,,,, +91160,Brandon,Bielak,,,, +91161,Brandon,Leibrandt,,,, +91162,Braxton,Garrett,,,, +91163,Brian,Moran,,,, +91164,Brooks,Raley,,,, +91165,Brusdar,Graterol,,,, +91166,Bryan,Garcia,,,, +91167,Bryse,Wilson,,,, +91168,Caleb,Baragar,,,, +91169,Caleb,Thielbar,,,, +91170,Cam,Hill,,,, +91171,Carlos,Hernandez,,,, +91172,Casey,Mize,,,, +91173,Cesar,Valdez,,,, +91174,Chance,Adams,,,, +91175,Chase,De Jong,,,, +91176,Chasen,Shreve,,,, +91177,Chris,Mazza,,,, +91178,Cionel,Perez,,,, +91179,Codi,Heuer,,,, +91180,Cody,Ponce,,,, +91181,Cole,Sulser,,,, +91182,Colin,Rea,,,, +91183,Conner,Menez,,,, +91184,Connor,Brogdon,,,, +91185,Cristian,Javier,,,, +91186,Cy,Sneed,,,, +91187,Dakota,Bacus,,,, +91188,Dan,Altavilla,,,, +91189,Dane,Dunning,,,, +91190,Daniel,Bard,,,, +91191,Daniel,Castano,,,, +91192,Darren,ODay,,,, +91193,David,Peterson,,,, +91194,Dean,Kremer,,,, +91195,Deivi,Garcia,,,, +91196,Dennis,Santana,,,, +91197,Deolis,Guerra,,,, +91198,Devin,Williams,,,, +91199,Dillon,Tate,,,, +91200,Drew,Rasmussen,,,, +91201,Drew,Smith,,,, +91202,Duane,Underwood,,,, +91203,Enoli,Paredes,,,, +91204,Erasmo,Ramirez,,,, +91205,Eric,Yardley,,,, +91206,Franklyn,Kilome,,,, +91207,Gabe,Speier,,,, +91208,Garrett,Crochet,,,, +91209,Genesis,Cabrera,,,, +91210,Grant,Dayton,,,, +91211,Hoby,Milner,,,, +91212,Huascar,Ynoa,,,, +91213,Humberto,Castellanos,,,, +91214,Humberto,Mejia,,,, +91215,Hunter,Harvey,,,, +91216,Ian,Anderson,,,, +91217,Ian,Gibaut,,,, +91218,James,Hoyt,,,, +91219,James,Karinchak,,,, +91220,Javy,A Guerra,,,, +91221,Jesse,Hahn,,,, +91222,Jimmy,Herget,,,, +91223,Joely,Rodriguez,,,, +91224,Joey,Gerber,,,, +91225,Johan,Oviedo,,,, +91226,John,Curtiss,,,, +91227,John,King,,,, +91228,John,Schreiber,,,, +91229,Johnny,Cueto,,,, +91230,JoJo,Romero,,,, +91231,Jonathan,Hernandez,,,, +91232,Jordan,Montgomery,,,, +91233,Jordan,Romano,,,, +91234,Jordan,Weems,,,, +91235,Jorge,Alcala,,,, +91236,Josh,Fleming,,,, +91237,Josh,Lindblom,,,, +91238,Josh,Staumont,,,, +91239,JP,Feyereisen,,,, +91240,JT,Brubaker,,,, +91241,Julian,Merryweather,,,, +91242,Justin,Dunn,,,, +91243,Justin,Topa,,,, +91244,Keegan,Akin,,,, +91245,Kendall,Graveman,,,, +91246,Keury,Mella,,,, +91247,Kevin,Ginkel,,,, +91248,Keynan,Middleton,,,, +91249,Kris,Bubic,,,, +91250,Kwang,Hyun Kim,,,, +91251,Kyle,Cody,,,, +91252,Kyle,Finnegan,,,, +91253,Kyle,Funkhouser,,,, +91254,Kyle,Hart,,,, +91255,Kyle,McGowin,,,, +91256,Kyle,Wright,,,, +91257,Kyle,Zimmer,,,, +91258,Ljay,Newsome,,,, +91259,Logan,Allen,,,, +91260,Luis,H Garcia,,,, +91261,Luis,Patino,,,, +91262,Matt,Foster,,,, +91263,Matt,Hall,,,, +91264,Michael,King,,,, +91265,Mike,Kickham,,,, +91266,Nabil,Crismatt,,,, +91267,Nate,Pearson,,,, +91268,Nick,Neidert,,,, +91269,Nick,Nelson,,,, +91270,Nik,Turley,,,, +91271,Nivaldo,Rodriguez,,,, +91272,Pete,Fairbanks,,,, +91273,Rafael,Dolis,,,, +91274,Ramon,Rosso,,,, +91275,Rico,Garcia,,,, +91276,Riley,Smith,,,, +91277,Rony,Garcia,,,, +91278,Ryan,Castellani,,,, +91279,Ryan,Sherriff,,,, +91280,Ryan,Thompson,,,, +91281,Sam,Howard,,,, +91282,Sam,Selman,,,, +91283,Sean,Poppen,,,, +91284,Shun,Yamaguchi,,,, +91285,Sixto,Sanchez,,,, +91286,Spencer,Howard,,,, +91287,Stephen,Tarpley,,,, +91288,Taijuan,Walker,,,, +91289,Tanner,Houck,,,, +91290,Tarik,Skubal,,,, +91291,Taylor,Guilbeau,,,, +91292,Taylor,Hearn,,,, +91293,Taylor,Widener,,,, +91294,Tejay,Antone,,,, +91295,Thomas,Eshelman,,,, +91296,TJ,Zeuch,,,, +91297,Tom,Hatch,,,, +91298,Travis,Bergen,,,, +91299,Travis,Lakins,,,, +91300,Triston,McKenzie,,,, +91301,Tyler,Matzek,,,, +91302,Tyler,Rogers,,,, +91303,Tyler,Thornburg,,,, +91304,Tyler,Zuber,,,, +91305,Victor,Gonzalez,,,, +91306,Wes,Benjamin,,,, +91307,Wil,Crowe,,,, +91308,Yohan,Ramirez,,,, +91309,Zac,Grotz,,,, +91310,Luis,H Garcia,garcilu05,,, +91311,Danny,Coulombe,couloda01,,, +91312,Luis,Garcia,garcilu03,,, +91313,Thomas,Eshelman,eshelto01,,, +91314,JC,Mejia,mejiaje02,,, +91315,Francisco,Mejia,mejiafr01,,, +91316,Evan,Phillips,phillev01,,, +91317,Michael,A Taylor,taylomi01,,, +91318,Aaron,Loup,HALP,,, +91319,Luis,Ortiz,ortizlu02,,, +91320,Kody,Funderburk,fundeko01,,, +91321,Pedro,Pages,pagespe02,,, +91322,Tyler,Phillips,phillty01,,, diff --git a/.claude/sqlite-to-postgres/botched-sbaplayer-matching/player_sbaplayer_assignments.csv b/.claude/sqlite-to-postgres/botched-sbaplayer-matching/player_sbaplayer_assignments.csv new file mode 100644 index 0000000..b55c00f --- /dev/null +++ b/.claude/sqlite-to-postgres/botched-sbaplayer-matching/player_sbaplayer_assignments.csv @@ -0,0 +1,121 @@ +player_id,player_name,player_season,player_bbref_id,sbaplayer_id,sbaplayer_name,sbaplayer_bbref,assignment_type +2013,AJ Ellis,1,,570,AJ Ellis,ellisaj01,existing_sbaplayer +2022,Abraham Almonte,1,,49,Abraham Almonte,almonab01,existing_sbaplayer +2034,Addison Reed,1,,1624,Addison Reed,reedad01,existing_sbaplayer +2037,Adrian Beltre,1,,174,Adrian Beltre,beltrad01,existing_sbaplayer +2038,Adrian Gonzalez,1,,738,Adrian Gonzalez,gonzaad01,existing_sbaplayer +2041,Alcides Escobar,1,,580,Alcides Escobar,escobal02,existing_sbaplayer +2043,Alen Hanson,1,,819,Alen Hanson,hansoal01,existing_sbaplayer +2045,Alex Blandino,1,,210,Alex Blandino,blandal01,existing_sbaplayer +2051,Alex Wilson,1,,2168,Alex Wilson,wilsoal01,existing_sbaplayer +2063,Andrew Romine,1,,1703,Andrew Romine,rominan01,existing_sbaplayer +2074,Arodys Vizcaino,1,,2083,Arodys Vizcaino,vizcaar01,existing_sbaplayer +2080,Austin Jackson,1,,958,Austin Jackson,jacksau01,existing_sbaplayer +2086,Bartolo Colon,1,,405,Bartolo Colon,colonba01,existing_sbaplayer +2096,Bobby Wilson,1,,2166,Bobby Wilson,wilsobo02,existing_sbaplayer +2102,Brad Ziegler,1,,2226,Brad Ziegler,zieglbr01,existing_sbaplayer +2106,Brandon Guyer,1,,798,Brandon Guyer,guyerbr01,existing_sbaplayer +2108,Brandon Maurer,1,,1246,Brandon Maurer,maurebr01,existing_sbaplayer +2109,Brandon McCarthy,1,,1263,Brandon McCarthy,mccarbr01,existing_sbaplayer +2110,Brandon Morrow,1,,1374,Brandon Morrow,morrobr01,existing_sbaplayer +2114,Brett Cecil,1,,357,Brett Cecil,cecilbr01,existing_sbaplayer +2124,Bryan Mitchell,1,,1339,Bryan Mitchell,mitchbr01,existing_sbaplayer +2128,Bud Norris,1,,1438,Bud Norris,norribu01,existing_sbaplayer +2132,Caleb Joseph,1,,996,Caleb Joseph,josepca01,existing_sbaplayer +2136,Carl Edwards Jr,1,,560,Carl Edwards Jr,edwarca01,existing_sbaplayer +2137,Carlos Asuaje,1,,102,Carlos Asuaje,asuajca01,existing_sbaplayer +2145,Carlos Tocci,1,,1993,Carlos Tocci,toccica01,existing_sbaplayer +2159,Chase Utley,1,,2043,Chase Utley,utleych01,existing_sbaplayer +2160,Chasen Bradford,1,,234,Chasen Bradford,bradfch02,existing_sbaplayer +2169,Chris Rusin,1,,1727,Chris Rusin,rusinch01,existing_sbaplayer +2173,Chris Volstad,1,,2089,Chris Volstad,volstch01,existing_sbaplayer +2175,Christian Villanueva,1,,2078,Christian Villanueva,villach01,existing_sbaplayer +2180,Cody Allen,1,,43,Cody Allen,allenco01,existing_sbaplayer +2192,Craig Gentry,1,,711,Craig Gentry,gentrcr01,existing_sbaplayer +2197,Dan Jennings,1,,977,Dan Jennings,jennida01,existing_sbaplayer +2208,Danny Barnes,1,,130,Danny Barnes,barneda02,existing_sbaplayer +2211,Danny Valencia,1,,2050,Danny Valencia,valenda01,existing_sbaplayer +2217,David Freitas,1,,656,David Freitas,freitda01,existing_sbaplayer +2222,David Robertson,1,,1662,David Robertson,roberda08,existing_sbaplayer +2226,Denard Span,1,,1882,Denard Span,spande01,existing_sbaplayer +2230,Devin Mesoraco,1,,1313,Devin Mesoraco,mesorde01,existing_sbaplayer +2231,Devon Travis,1,,2009,Devon Travis,travide01,existing_sbaplayer +2235,Dixon Machado,1,,1174,Dixon Machado,machadi01,existing_sbaplayer +2240,Doug Fister,1,,619,Doug Fister,fistedo01,existing_sbaplayer +2243,Drew Rucinski,1,,1720,Drew Rucinski,rucindr01,existing_sbaplayer +2244,Drew Steckenrider,1,,1898,Drew Steckenrider,steckdr01,existing_sbaplayer +2246,Dustin Fowler,1,,640,Dustin Fowler,fowledu01,existing_sbaplayer +2250,Eddie Butler,1,,291,Eddie Butler,butleed01,existing_sbaplayer +2252,Edgar Santana,1,,1763,Edgar Santana,santaed01,existing_sbaplayer +2256,Edubray Ramos,1,,1613,Edubray Ramos,ramosed02,existing_sbaplayer +2519,Eric Skoglund,1,,1834,Eric Skoglund,skogler01,existing_sbaplayer +2521,Eric Young Jr,1,,2221,Eric Young Jr,younger03,existing_sbaplayer +2526,Evan Gattis,1,,705,Evan Gattis,gattiev01,existing_sbaplayer +2532,Fernando Romero,1,,1701,Fernando Romero,romerfe01,existing_sbaplayer +2533,Francisco Arcia,1,,87,Francisco Arcia,arciafr01,existing_sbaplayer +2537,Francisco Pena,1,,1517,Francisco Pena,penafr01,existing_sbaplayer +2542,Gabriel Moya,1,,1379,Gabriel Moya,moyaga01,existing_sbaplayer +2552,Gorkys Hernandez,1,,869,Gorkys Hernandez,hernago01,existing_sbaplayer +2554,Greg Bird,1,,197,Greg Bird,birdgr01,existing_sbaplayer +2557,Gregor Blanco,1,,207,Gregor Blanco,blancgr01,existing_sbaplayer +2562,Harrison Musgrave,1,,1393,Harrison Musgrave,musgrha01,existing_sbaplayer +2563,Heath Fillmyer,1,,616,Heath Fillmyer,fillmhe01,existing_sbaplayer +2575,Hunter Strickland,1,,1925,Hunter Strickland,strichu01,existing_sbaplayer +2625,JB Shuck,1,,1820,JB Shuck,shuckja01,existing_sbaplayer +2591,Jackson Stephens,1,,1903,Jackson Stephens,stephja01,existing_sbaplayer +2594,Jacob Nix,1,,1426,Jacob Nix,nixja02,existing_sbaplayer +2595,Jacob Rhame,1,,1642,Jacob Rhame,rhameja01,existing_sbaplayer +2601,Jake Faria,1,,596,Jake Faria,fariaja01,existing_sbaplayer +2606,Jake Petricka,1,,1550,Jake Petricka,petrija01,existing_sbaplayer +2611,James Pazos,1,,1509,James Pazos,pazosja01,existing_sbaplayer +2612,James Shields,1,,1816,James Shields,shielja02,existing_sbaplayer +2618,Jason Hammel,1,,813,Jason Hammel,hammeja01,existing_sbaplayer +2627,Jeanmar Gomez,1,,733,Jeanmar Gomez,gomezje01,existing_sbaplayer +2628,Jed Lowrie,1,,1158,Jed Lowrie,lowrije01,existing_sbaplayer +2633,Jefry Marte,1,,1209,Jefry Marte,marteje01,existing_sbaplayer +2647,Jim Adduci,1,,19,Jim Adduci,adducji02,existing_sbaplayer +2648,Jim Johnson,1,,984,Jim Johnson,johnsji04,existing_sbaplayer +2654,Joe Mauer,1,,1245,Joe Mauer,mauerjo01,existing_sbaplayer +2668,Johnny Field,1,,613,Johnny Field,fieldjo04,existing_sbaplayer +2687,Jose Bautista,1,,153,Jose Bautista,bautijo02,existing_sbaplayer +2689,Jose Briceno,1,,254,Jose Briceno,bricejo01,existing_sbaplayer +2690,Jose Castillo,1,,342,Jose Castillo,castijo02,existing_sbaplayer +2696,Jose Pirela,1,,1562,Jose Pirela,pireljo01,existing_sbaplayer +2699,Jose Reyes,1,,1633,Jose Reyes,reyesjo01,existing_sbaplayer +2702,Josh Fields,1,,614,Josh Fields,fieldjo03,existing_sbaplayer +2717,Justin Miller,1,,1321,Justin Miller,milleju02,existing_sbaplayer +2723,Kazuhisa Makita,1,,1186,Kazuhisa Makita,makitka01,existing_sbaplayer +2724,Kelby Tomlinson,1,,1997,Kelby Tomlinson,tomlike01,existing_sbaplayer +2739,Kohl Stewart,1,,1911,Kohl Stewart,stewako01,existing_sbaplayer +2760,Louis Coleman,1,,400,Louis Coleman,colemlo01,existing_sbaplayer +2767,Luis Valbuena,1,,2045,Luis Valbuena,valbulu01,existing_sbaplayer +2780,Marco Estrada,1,,586,Marco Estrada,estrama01,existing_sbaplayer +2787,Mark Trumbo,1,,2020,Mark Trumbo,trumbma01,existing_sbaplayer +2796,Matt Belisle,1,,167,Matt Belisle,belisma01,existing_sbaplayer +2804,Matt Koch,1,,1066,Matt Koch,kochma01,existing_sbaplayer +2806,Matt Moore,1,,1357,Matt Moore,moorema02,existing_sbaplayer +2841,Mikie Mahtook,1,,1184,Mikie Mahtook,mahtomi01,existing_sbaplayer +2850,Neil Ramirez,1,,1603,Neil Ramirez,ramirne01,existing_sbaplayer +2867,Noel Cuevas,1,,452,Noel Cuevas,cuevano01,existing_sbaplayer +2883,Paul Sewald,1,,1806,Paul Sewald,sewalpa01,existing_sbaplayer +2890,Preston Tucker,1,,2024,Preston Tucker,tuckepr01,existing_sbaplayer +2894,Rajai Davis,1,,466,Rajai Davis,davisra01,existing_sbaplayer +2926,Ryan Flaherty,1,,621,Ryan Flaherty,flahery01,existing_sbaplayer +2927,Ryan LaMarre,1,,1086,Ryan LaMarre,lamarry01,existing_sbaplayer +2928,Ryan Madson,1,,1180,Ryan Madson,madsory01,existing_sbaplayer +2932,Ryan Rua,1,,1719,Ryan Rua,ruary01,existing_sbaplayer +2938,Sal Romano,1,,1700,Sal Romano,romansa01,existing_sbaplayer +2941,Sam Freeman,1,,653,Sam Freeman,freemsa01,existing_sbaplayer +2943,Sammy Solis,1,,1871,Sammy Solis,solissa01,existing_sbaplayer +2954,Seranthony Dominguez,1,,524,Seranthony Dominguez,dominse01,existing_sbaplayer +2958,Shane Carle,1,,326,Shane Carle,carlesh01,existing_sbaplayer +2963,Spencer Kieboom,1,,1037,Spencer Kieboom,kiebosp01,existing_sbaplayer +2985,Tim Collins,1,,402,Tim Collins,colliti01,existing_sbaplayer +2994,Tony Sipp,1,,1829,Tony Sipp,sippto01,existing_sbaplayer +3002,Trevor Hildenberger,1,,897,Trevor Hildenberger,hildetr01,existing_sbaplayer +3023,Victor Arano,1,,83,Victor Arano,aranovi01,existing_sbaplayer +3025,Victor Martinez,1,,1221,Victor Martinez,martivi01,existing_sbaplayer +3047,Yacksel Rios,1,,1650,Yacksel Rios,riosya01,existing_sbaplayer +3055,Yefry Ramirez,1,,1607,Yefry Ramirez,ramirye01,existing_sbaplayer +3062,Yovani Gallardo,1,,671,Yovani Gallardo,gallayo01,existing_sbaplayer +3065,Zach Duke,1,,545,Zach Duke,dukeza01,existing_sbaplayer diff --git a/.claude/sqlite-to-postgres/botched-sbaplayer-matching/player_sbaplayer_assignments_complete.csv b/.claude/sqlite-to-postgres/botched-sbaplayer-matching/player_sbaplayer_assignments_complete.csv new file mode 100644 index 0000000..35c4244 --- /dev/null +++ b/.claude/sqlite-to-postgres/botched-sbaplayer-matching/player_sbaplayer_assignments_complete.csv @@ -0,0 +1,12233 @@ +player_id,player_name,player_season,player_bbref_id,sbaplayer_id,sbaplayer_name,sbaplayer_bbref,assignment_type +2013,AJ Ellis,1,,570,AJ Ellis,ellisaj01,manual_decision +2022,Abraham Almonte,1,,49,Abraham Almonte,almonab01,manual_decision +2034,Addison Reed,1,,1624,Addison Reed,reedad01,manual_decision +2037,Adrian Beltre,1,,174,Adrian Beltre,beltrad01,manual_decision +2038,Adrian Gonzalez,1,,738,Adrian Gonzalez,gonzaad01,manual_decision +2041,Alcides Escobar,1,,580,Alcides Escobar,escobal02,manual_decision +2043,Alen Hanson,1,,819,Alen Hanson,hansoal01,manual_decision +2045,Alex Blandino,1,,210,Alex Blandino,blandal01,manual_decision +2051,Alex Wilson,1,,2168,Alex Wilson,wilsoal01,manual_decision +2063,Andrew Romine,1,,1703,Andrew Romine,rominan01,manual_decision +2074,Arodys Vizcaino,1,,2083,Arodys Vizcaino,vizcaar01,manual_decision +2080,Austin Jackson,1,,958,Austin Jackson,jacksau01,manual_decision +2086,Bartolo Colon,1,,405,Bartolo Colon,colonba01,manual_decision +2096,Bobby Wilson,1,,2166,Bobby Wilson,wilsobo02,manual_decision +2102,Brad Ziegler,1,,2226,Brad Ziegler,zieglbr01,manual_decision +2106,Brandon Guyer,1,,798,Brandon Guyer,guyerbr01,manual_decision +2108,Brandon Maurer,1,,1246,Brandon Maurer,maurebr01,manual_decision +2109,Brandon McCarthy,1,,1263,Brandon McCarthy,mccarbr01,manual_decision +2110,Brandon Morrow,1,,1374,Brandon Morrow,morrobr01,manual_decision +2114,Brett Cecil,1,,357,Brett Cecil,cecilbr01,manual_decision +2124,Bryan Mitchell,1,,1339,Bryan Mitchell,mitchbr01,manual_decision +2128,Bud Norris,1,,1438,Bud Norris,norribu01,manual_decision +2132,Caleb Joseph,1,,996,Caleb Joseph,josepca01,manual_decision +2136,Carl Edwards Jr,1,,560,Carl Edwards Jr,edwarca01,manual_decision +2137,Carlos Asuaje,1,,102,Carlos Asuaje,asuajca01,manual_decision +2145,Carlos Tocci,1,,1993,Carlos Tocci,toccica01,manual_decision +2159,Chase Utley,1,,2043,Chase Utley,utleych01,manual_decision +2160,Chasen Bradford,1,,234,Chasen Bradford,bradfch02,manual_decision +2169,Chris Rusin,1,,1727,Chris Rusin,rusinch01,manual_decision +2173,Chris Volstad,1,,2089,Chris Volstad,volstch01,manual_decision +2175,Christian Villanueva,1,,2078,Christian Villanueva,villach01,manual_decision +2180,Cody Allen,1,,43,Cody Allen,allenco01,manual_decision +2192,Craig Gentry,1,,711,Craig Gentry,gentrcr01,manual_decision +2197,Dan Jennings,1,,977,Dan Jennings,jennida01,manual_decision +2208,Danny Barnes,1,,130,Danny Barnes,barneda02,manual_decision +2211,Danny Valencia,1,,2050,Danny Valencia,valenda01,manual_decision +2217,David Freitas,1,,656,David Freitas,freitda01,manual_decision +2222,David Robertson,1,,1662,David Robertson,roberda08,manual_decision +2226,Denard Span,1,,1882,Denard Span,spande01,manual_decision +2230,Devin Mesoraco,1,,1313,Devin Mesoraco,mesorde01,manual_decision +2231,Devon Travis,1,,2009,Devon Travis,travide01,manual_decision +2235,Dixon Machado,1,,1174,Dixon Machado,machadi01,manual_decision +2240,Doug Fister,1,,619,Doug Fister,fistedo01,manual_decision +2243,Drew Rucinski,1,,1720,Drew Rucinski,rucindr01,manual_decision +2244,Drew Steckenrider,1,,1898,Drew Steckenrider,steckdr01,manual_decision +2246,Dustin Fowler,1,,640,Dustin Fowler,fowledu01,manual_decision +2250,Eddie Butler,1,,291,Eddie Butler,butleed01,manual_decision +2252,Edgar Santana,1,,1763,Edgar Santana,santaed01,manual_decision +2256,Edubray Ramos,1,,1613,Edubray Ramos,ramosed02,manual_decision +2519,Eric Skoglund,1,,1834,Eric Skoglund,skogler01,manual_decision +2521,Eric Young Jr,1,,2221,Eric Young Jr,younger03,manual_decision +2526,Evan Gattis,1,,705,Evan Gattis,gattiev01,manual_decision +2532,Fernando Romero,1,,1701,Fernando Romero,romerfe01,manual_decision +2533,Francisco Arcia,1,,87,Francisco Arcia,arciafr01,manual_decision +2537,Francisco Pena,1,,1517,Francisco Pena,penafr01,manual_decision +2542,Gabriel Moya,1,,1379,Gabriel Moya,moyaga01,manual_decision +2552,Gorkys Hernandez,1,,869,Gorkys Hernandez,hernago01,manual_decision +2554,Greg Bird,1,,197,Greg Bird,birdgr01,manual_decision +2557,Gregor Blanco,1,,207,Gregor Blanco,blancgr01,manual_decision +2562,Harrison Musgrave,1,,1393,Harrison Musgrave,musgrha01,manual_decision +2563,Heath Fillmyer,1,,616,Heath Fillmyer,fillmhe01,manual_decision +2575,Hunter Strickland,1,,1925,Hunter Strickland,strichu01,manual_decision +2591,Jackson Stephens,1,,1903,Jackson Stephens,stephja01,manual_decision +2594,Jacob Nix,1,,1426,Jacob Nix,nixja02,manual_decision +2595,Jacob Rhame,1,,1642,Jacob Rhame,rhameja01,manual_decision +2601,Jake Faria,1,,596,Jake Faria,fariaja01,manual_decision +2606,Jake Petricka,1,,1550,Jake Petricka,petrija01,manual_decision +2611,James Pazos,1,,1509,James Pazos,pazosja01,manual_decision +2612,James Shields,1,,1816,James Shields,shielja02,manual_decision +2618,Jason Hammel,1,,813,Jason Hammel,hammeja01,manual_decision +2625,JB Shuck,1,,1820,JB Shuck,shuckja01,manual_decision +2627,Jeanmar Gomez,1,,733,Jeanmar Gomez,gomezje01,manual_decision +2628,Jed Lowrie,1,,1158,Jed Lowrie,lowrije01,manual_decision +2633,Jefry Marte,1,,1209,Jefry Marte,marteje01,manual_decision +2647,Jim Adduci,1,,19,Jim Adduci,adducji02,manual_decision +2648,Jim Johnson,1,,984,Jim Johnson,johnsji04,manual_decision +2654,Joe Mauer,1,,1245,Joe Mauer,mauerjo01,manual_decision +2668,Johnny Field,1,,613,Johnny Field,fieldjo04,manual_decision +2687,Jose Bautista,1,,153,Jose Bautista,bautijo02,manual_decision +2689,Jose Briceno,1,,254,Jose Briceno,bricejo01,manual_decision +2690,Jose Castillo,1,,342,Jose Castillo,castijo02,manual_decision +2696,Jose Pirela,1,,1562,Jose Pirela,pireljo01,manual_decision +2699,Jose Reyes,1,,1633,Jose Reyes,reyesjo01,manual_decision +2702,Josh Fields,1,,614,Josh Fields,fieldjo03,manual_decision +2717,Justin Miller,1,,1321,Justin Miller,milleju02,manual_decision +2723,Kazuhisa Makita,1,,1186,Kazuhisa Makita,makitka01,manual_decision +2724,Kelby Tomlinson,1,,1997,Kelby Tomlinson,tomlike01,manual_decision +2739,Kohl Stewart,1,,1911,Kohl Stewart,stewako01,manual_decision +2760,Louis Coleman,1,,400,Louis Coleman,colemlo01,manual_decision +2767,Luis Valbuena,1,,2045,Luis Valbuena,valbulu01,manual_decision +2780,Marco Estrada,1,,586,Marco Estrada,estrama01,manual_decision +2787,Mark Trumbo,1,,2020,Mark Trumbo,trumbma01,manual_decision +2796,Matt Belisle,1,,167,Matt Belisle,belisma01,manual_decision +2804,Matt Koch,1,,1066,Matt Koch,kochma01,manual_decision +2806,Matt Moore,1,,1357,Matt Moore,moorema02,manual_decision +2841,Mikie Mahtook,1,,1184,Mikie Mahtook,mahtomi01,manual_decision +2850,Neil Ramirez,1,,1603,Neil Ramirez,ramirne01,manual_decision +2867,Noel Cuevas,1,,452,Noel Cuevas,cuevano01,manual_decision +2883,Paul Sewald,1,,1806,Paul Sewald,sewalpa01,manual_decision +2890,Preston Tucker,1,,2024,Preston Tucker,tuckepr01,manual_decision +2894,Rajai Davis,1,,466,Rajai Davis,davisra01,manual_decision +2926,Ryan Flaherty,1,,621,Ryan Flaherty,flahery01,manual_decision +2927,Ryan LaMarre,1,,1086,Ryan LaMarre,lamarry01,manual_decision +2928,Ryan Madson,1,,1180,Ryan Madson,madsory01,manual_decision +2932,Ryan Rua,1,,1719,Ryan Rua,ruary01,manual_decision +2938,Sal Romano,1,,1700,Sal Romano,romansa01,manual_decision +2941,Sam Freeman,1,,653,Sam Freeman,freemsa01,manual_decision +2943,Sammy Solis,1,,1871,Sammy Solis,solissa01,manual_decision +2954,Seranthony Dominguez,1,,524,Seranthony Dominguez,dominse01,manual_decision +2958,Shane Carle,1,,326,Shane Carle,carlesh01,manual_decision +2963,Spencer Kieboom,1,,1037,Spencer Kieboom,kiebosp01,manual_decision +2985,Tim Collins,1,,402,Tim Collins,colliti01,manual_decision +2994,Tony Sipp,1,,1829,Tony Sipp,sippto01,manual_decision +3002,Trevor Hildenberger,1,,897,Trevor Hildenberger,hildetr01,manual_decision +3023,Victor Arano,1,,83,Victor Arano,aranovi01,manual_decision +3025,Victor Martinez,1,,1221,Victor Martinez,martivi01,manual_decision +3047,Yacksel Rios,1,,1650,Yacksel Rios,riosya01,manual_decision +3055,Yefry Ramirez,1,,1607,Yefry Ramirez,ramirye01,manual_decision +3062,Yovani Gallardo,1,,671,Yovani Gallardo,gallayo01,manual_decision +3065,Zach Duke,1,,545,Zach Duke,dukeza01,manual_decision +5182,Danny Duffy,6,duffyda01,541,Danny Duffy,duffyda01,automatic_bbref_match +5183,Robbie Ray,6,rayro02,1620,Robbie Ray,rayro02,automatic_bbref_match +5184,Wade Miley,6,mileywa01,1318,Wade Miley,mileywa01,automatic_bbref_match +5296,Merrill Kelly,6,kellyme01,1020,Merrill Kelly,kellyme01,automatic_bbref_match +5375,Mike Mayers,6,mayermi01,1251,Mike Mayers,mayermi01,automatic_bbref_match +5415,Johnny Cueto,6,cuetojo01,451,Johnny Cueto,cuetojo01,automatic_bbref_match +5455,Justin Garza,6,garzaju01,703,Justin Garza,garzaju01,automatic_bbref_match +5630,Evan Marshall,6,marshev01,1207,Evan Marshall,marshev01,automatic_bbref_match +5631,Carlos Martinez,6,martica04,1223,Carlos Martinez,martica04,automatic_bbref_match +5632,Phil Maton,6,matonph01,1238,Phil Maton,matonph01,automatic_bbref_match +5802,KeBryan Hayes,6,hayeske01,838,KeBryan Hayes,hayeske01,automatic_bbref_match +5881,Riley Adams,6,adamsri03,17,Riley Adams,adamsri03,automatic_bbref_match +5925,Dansby Swanson,6,swansda01,1947,Dansby Swanson,swansda01,automatic_bbref_match +5926,Tom Murphy,6,murphto04,1388,Tom Murphy,murphto04,automatic_bbref_match +5970,Wil Myers,6,myerswi01,1395,Wil Myers,myerswi01,automatic_bbref_match +5971,Gary Sanchez,6,sanchga02,1746,Gary Sanchez,sanchga02,automatic_bbref_match +6017,DJ Peters,6,peterdj01,1545,DJ Peters,peterdj01,automatic_bbref_match +6018,Brandon Marsh,6,marshbr02,1205,Brandon Marsh,marshbr02,automatic_bbref_match +6108,Daz Cameron,6,camerda01,310,Daz Cameron,camerda01,automatic_bbref_match +6203,Domingo Leyba,6,leybado01,1120,Domingo Leyba,leybado01,automatic_bbref_match +5173,Shohei Ohtani,6,ohtansh01,1455,Shohei Ohtani,ohtansh01,automatic_bbref_match +5174,Ranger Suarez,6,suarera01,1936,Ranger Suarez,suarera01,automatic_bbref_match +5175,Tejay Antone,6,antonte01,79,Tejay Antone,antonte01,automatic_bbref_match +5176,Jacob deGrom,6,degroja01,484,Jacob deGrom,degroja01,automatic_bbref_match +5177,Chris Ellis,6,ellisch01,568,Chris Ellis,ellisch01,automatic_bbref_match +5178,Zack Wheeler,6,wheelza01,2139,Zack Wheeler,wheelza01,automatic_bbref_match +5179,Carlos Rodon,6,rodonca01,1670,Carlos Rodon,rodonca01,automatic_bbref_match +5180,Jonathan Loaisiga,6,loaisjo01,1132,Jonathan Loaisiga,loaisjo01,automatic_bbref_match +5181,Lance Lynn,6,lynnla01,1173,Lance Lynn,lynnla01,automatic_bbref_match +5185,Corbin Burnes,6,burneco01,286,Corbin Burnes,burneco01,automatic_bbref_match +5186,Max Scherzer,6,scherma01,1773,Max Scherzer,scherma01,automatic_bbref_match +5187,Walker Buehler,6,buehlwa01,277,Walker Buehler,buehlwa01,automatic_bbref_match +5188,Garrett Whitlock,6,whitlga01,2146,Garrett Whitlock,whitlga01,automatic_bbref_match +5189,Brandon Woodruff,6,woodrbr01,2196,Brandon Woodruff,woodrbr01,automatic_bbref_match +5190,Gerrit Cole,6,colege01,398,Gerrit Cole,colege01,automatic_bbref_match +5191,Nestor Cortes Jr,6,cortene01,421,Nestor Cortes Jr,cortene01,automatic_bbref_match +5192,Tyler Gilbert,6,gilbety01,717,Tyler Gilbert,gilbety01,automatic_bbref_match +5193,Josh Hader,6,haderjo01,802,Josh Hader,haderjo01,automatic_bbref_match +5194,Tyler Mahle,6,mahlety01,1183,Tyler Mahle,mahlety01,automatic_bbref_match +5195,Tony Santillan,6,santito01,1766,Tony Santillan,santito01,automatic_bbref_match +5196,Max Fried,6,friedma01,659,Max Fried,friedma01,automatic_bbref_match +5197,Freddy Peralta,6,peralfr01,1525,Freddy Peralta,peralfr01,automatic_bbref_match +5198,Shane Bieber,6,biebesh01,194,Shane Bieber,biebesh01,automatic_bbref_match +5199,Trevor Bauer,6,bauertr01,150,Trevor Bauer,bauertr01,automatic_bbref_match +5200,Luis Gil,6,gillu01,716,Luis Gil,gillu01,automatic_bbref_match +5201,Pablo Lopez,6,lopezpa01,1146,Pablo Lopez,lopezpa01,automatic_bbref_match +5202,John Means,6,meansjo01,2,John Means,meansjo01,automatic_bbref_match +5203,Casey Sadler,6,sadleca02,1736,Casey Sadler,sadleca02,automatic_bbref_match +5204,Kevin Gausman,6,gausmke01,706,Kevin Gausman,gausmke01,automatic_bbref_match +5205,Art Warren,6,warrear01,2119,Art Warren,warrear01,automatic_bbref_match +5206,Spencer Turnbull,6,turnbsp01,2028,Spencer Turnbull,turnbsp01,automatic_bbref_match +5207,Luis Cessa,6,cessalu01,361,Luis Cessa,cessalu01,automatic_bbref_match +5208,Tyler Glasnow,6,glasnty01,726,Tyler Glasnow,glasnty01,automatic_bbref_match +5209,Cal Quantrill,6,quantca01,1593,Cal Quantrill,quantca01,automatic_bbref_match +5210,Trevor Rogers,6,rogertr01,1693,Trevor Rogers,rogertr01,automatic_bbref_match +5211,Nathan Eovaldi,6,eovalna01,576,Nathan Eovaldi,eovalna01,automatic_bbref_match +5212,Aaron Loup,6,loupaa01,1152,Aaron Loup,loupaa01,automatic_bbref_match +5213,Sonny Gray,6,grayso01,765,Sonny Gray,grayso01,automatic_bbref_match +5214,Chris Bassitt,6,bassich01,146,Chris Bassitt,bassich01,automatic_bbref_match +5215,Alek Manoah,6,manoaal01,1192,Alek Manoah,manoaal01,automatic_bbref_match +5216,Luis Castillo,6,castilu02,344,Luis Castillo,castilu02,automatic_bbref_match +5217,Logan Webb,6,webblo01,2127,Logan Webb,webblo01,automatic_bbref_match +5218,Anthony DeSclafani,6,desclan01,493,Anthony DeSclafani,desclan01,automatic_bbref_match +5258,Jordan Romano,6,romanjo03,1699,Jordan Romano,romanjo03,automatic_bbref_match +5219,Collin McHugh,6,mchugco01,1278,Collin McHugh,mchugco01,automatic_bbref_match +5220,Patrick Sandoval,6,sandopa02,1754,Patrick Sandoval,sandopa02,automatic_bbref_match +5221,Lucas Giolito,6,giolilu01,724,Lucas Giolito,giolilu01,automatic_bbref_match +5222,Chris Sale,6,salech01,1739,Chris Sale,salech01,automatic_bbref_match +5223,Julio Urias,6,uriasju01,2038,Julio Urias,uriasju01,automatic_bbref_match +5224,Chad Green,6,greench03,768,Chad Green,greench03,automatic_bbref_match +5225,Aaron Sanchez,6,sanchaa01,1745,Aaron Sanchez,sanchaa01,automatic_bbref_match +5226,Ian Anderson,6,anderia01,74,Ian Anderson,anderia01,automatic_bbref_match +5227,Michael Fulmer,6,fulmemi01,666,Michael Fulmer,fulmemi01,automatic_bbref_match +5228,Charlie Morton,6,mortoch02,1375,Charlie Morton,mortoch02,automatic_bbref_match +5229,Juan Minaya,6,minayju01,1334,Juan Minaya,minayju01,automatic_bbref_match +5230,Jordan Montgomery,6,montgjo01,1356,Jordan Montgomery,montgjo01,automatic_bbref_match +5231,Andrew Chafin,6,chafian01,363,Andrew Chafin,chafian01,automatic_bbref_match +5232,Wily Peralta,6,peralwi01,1523,Wily Peralta,peralwi01,automatic_bbref_match +5233,Craig Kimbrel,6,kimbrcr01,1043,Craig Kimbrel,kimbrcr01,automatic_bbref_match +5234,Casey Mize,6,mizeca01,1342,Casey Mize,mizeca01,automatic_bbref_match +5235,Lance McCullers Jr,6,mcculla02,1271,Lance McCullers Jr,mcculla02,automatic_bbref_match +5236,Carlos Hernandez,6,hernaca04,880,Carlos Hernandez,hernaca04,automatic_bbref_match +5237,Emmanuel Clase,6,claseem01,385,Emmanuel Clase,claseem01,automatic_bbref_match +5238,Raisel Iglesias,6,iglesra01,950,Raisel Iglesias,iglesra01,automatic_bbref_match +5239,Justin Dunn,6,dunnju01,546,Justin Dunn,dunnju01,automatic_bbref_match +5240,Scott Barlow,6,barlosc01,128,Scott Barlow,barlosc01,automatic_bbref_match +5241,Jose Urquidy,6,urquijo01,2041,Jose Urquidy,urquijo01,automatic_bbref_match +5242,Sandy Alcantara,6,alcansa01,35,Sandy Alcantara,alcansa01,automatic_bbref_match +5243,Zach Eflin,6,eflinza01,562,Zach Eflin,eflinza01,automatic_bbref_match +5244,Frankie Montas,6,montafr02,1351,Frankie Montas,montafr02,automatic_bbref_match +5245,Kyle Gibson,6,gibsoky01,715,Kyle Gibson,gibsoky01,automatic_bbref_match +5246,Jose Suarez,6,suarejo01,1937,Jose Suarez,suarejo01,automatic_bbref_match +5247,Joe Musgrove,6,musgrjo01,1394,Joe Musgrove,musgrjo01,automatic_bbref_match +5248,Cole Sulser,6,sulseco01,1942,Cole Sulser,sulseco01,automatic_bbref_match +5249,Josh Rogers,6,rogerjo01,1690,Josh Rogers,rogerjo01,automatic_bbref_match +5250,Garrett Crochet,6,crochga01,439,Garrett Crochet,crochga01,automatic_bbref_match +5251,Chris Flexen,6,flexech01,626,Chris Flexen,flexech01,automatic_bbref_match +5252,Kendall Graveman,6,graveke01,764,Kendall Graveman,graveke01,automatic_bbref_match +5253,Tanner Houck,6,houckta01,927,Tanner Houck,houckta01,automatic_bbref_match +5254,Drew Steckenrider,6,steckdr01,1898,Drew Steckenrider,steckdr01,automatic_bbref_match +5255,Dillon Peters,6,peterdi01,1544,Dillon Peters,peterdi01,automatic_bbref_match +5256,Marcus Stroman,6,stromma01,1928,Marcus Stroman,stromma01,automatic_bbref_match +5257,Jarlin Garcia,6,garcija04,684,Jarlin Garcia,garcija04,automatic_bbref_match +5259,Liam Hendriks,6,hendrli01,857,Liam Hendriks,hendrli01,automatic_bbref_match +5260,Adrian Sampson,6,sampsad01,1742,Adrian Sampson,sampsad01,automatic_bbref_match +5261,Luke Jackson,6,jackslu01,960,Luke Jackson,jackslu01,automatic_bbref_match +5262,Kyle Freeland,6,freelky01,650,Kyle Freeland,freelky01,automatic_bbref_match +5263,Framber Valdez,6,valdefr01,2048,Framber Valdez,valdefr01,automatic_bbref_match +5264,Alex Cobb,6,cobbal01,394,Alex Cobb,cobbal01,automatic_bbref_match +5265,Sean Manaea,6,manaese01,1189,Sean Manaea,manaese01,automatic_bbref_match +5266,Steven Okert,6,okertst01,1456,Steven Okert,okertst01,automatic_bbref_match +5267,Eric Lauer,6,lauerer01,1096,Eric Lauer,lauerer01,automatic_bbref_match +5268,Tony Gonsolin,6,gonsoto01,734,Tony Gonsolin,gonsoto01,automatic_bbref_match +5269,David Bednar,6,bednada01,162,David Bednar,bednada01,automatic_bbref_match +5270,Aaron Civale,6,civalaa01,383,Aaron Civale,civalaa01,automatic_bbref_match +5271,Drew Rasmussen,6,rasmudr01,1618,Drew Rasmussen,rasmudr01,automatic_bbref_match +5272,Dominic Leone,6,leonedo01,1116,Dominic Leone,leonedo01,automatic_bbref_match +5273,Chasen Shreve,6,shrevch01,1819,Chasen Shreve,shrevch01,automatic_bbref_match +5274,Zac Gallen,6,galleza01,673,Zac Gallen,galleza01,automatic_bbref_match +5275,Kenley Jansen,6,janseke01,968,Kenley Jansen,janseke01,automatic_bbref_match +5276,Clayton Kershaw,6,kershcl01,1034,Clayton Kershaw,kershcl01,automatic_bbref_match +5277,Dylan Cease,6,ceasedy01,355,Dylan Cease,ceasedy01,automatic_bbref_match +5278,Blake Treinen,6,treinbl01,2011,Blake Treinen,treinbl01,automatic_bbref_match +5279,Jose Berrios,6,berrijo01,182,Jose Berrios,berrijo01,automatic_bbref_match +5280,Nick Pivetta,6,pivetni01,1564,Nick Pivetta,pivetni01,automatic_bbref_match +5282,Vladimir Gutierrez,6,gutievl01,797,Vladimir Gutierrez,gutievl01,automatic_bbref_match +5283,Adam Wainwright,6,wainwad01,2099,Adam Wainwright,wainwad01,automatic_bbref_match +5284,Jesse Chavez,6,chaveje01,370,Jesse Chavez,chaveje01,automatic_bbref_match +5285,Domingo Tapia,6,tapiado01,1956,Domingo Tapia,tapiado01,automatic_bbref_match +5286,Lucas Luetge,6,luetglu01,1164,Lucas Luetge,luetglu01,automatic_bbref_match +5287,TJ McFarland,6,mcfartj01,1273,TJ McFarland,mcfartj01,automatic_bbref_match +5288,Mark Melancon,6,melanma01,1298,Mark Melancon,melanma01,automatic_bbref_match +5289,Matthew Boyd,6,boydma01,230,Matthew Boyd,boydma01,automatic_bbref_match +5290,Huascar Ynoa,6,ynoahu01,2215,Huascar Ynoa,ynoahu01,automatic_bbref_match +5291,Kyle Muller,6,mulleky01,1380,Kyle Muller,mulleky01,automatic_bbref_match +5292,Andrew Kittredge,6,kittran01,1057,Andrew Kittredge,kittran01,automatic_bbref_match +5293,Tyler Matzek,6,matzety01,1244,Tyler Matzek,matzety01,automatic_bbref_match +5294,Richard Rodriguez,6,rodriri05,1674,Richard Rodriguez,rodriri05,automatic_bbref_match +5295,Jimmy Nelson,6,nelsoji02,1409,Jimmy Nelson,nelsoji02,automatic_bbref_match +5297,Drew Smith,6,smithdr01,1848,Drew Smith,smithdr01,automatic_bbref_match +5298,Tyler Alexander,6,alexaty01,37,Tyler Alexander,alexaty01,automatic_bbref_match +5299,Michael Kopech,6,kopecmi01,1071,Michael Kopech,kopecmi01,automatic_bbref_match +5300,Dillon Maples,6,mapledi01,1195,Dillon Maples,mapledi01,automatic_bbref_match +5301,Ryan Burr,6,burrry01,287,Ryan Burr,burrry01,automatic_bbref_match +5302,Jameson Taillon,6,taillja01,1954,Jameson Taillon,taillja01,automatic_bbref_match +5303,Ryan Pressly,6,pressry01,1584,Ryan Pressly,pressry01,automatic_bbref_match +5304,Devin Williams,6,willide03,2158,Devin Williams,willide03,automatic_bbref_match +5305,Marco Gonzales,6,gonzama02,735,Marco Gonzales,gonzama02,automatic_bbref_match +5306,Tyler Rogers,6,rogerty01,1691,Tyler Rogers,rogerty01,automatic_bbref_match +5307,Joe Ryan,6,ryanjo04,1732,Joe Ryan,ryanjo04,automatic_bbref_match +5308,Ryan Tepera,6,teperry01,1974,Ryan Tepera,teperry01,automatic_bbref_match +5309,Mychal Givens,6,givenmy01,725,Mychal Givens,givenmy01,automatic_bbref_match +5310,Jose Alvarez,6,alvarjo02,59,Jose Alvarez,alvarjo02,automatic_bbref_match +5311,Adrian Houser,6,housead01,928,Adrian Houser,housead01,automatic_bbref_match +5312,Joel Payamps,6,payamjo01,1507,Joel Payamps,payamjo01,automatic_bbref_match +5313,JT Chargois,6,chargjt01,368,JT Chargois,chargjt01,automatic_bbref_match +5314,Joe Barlow,6,barlojo01,129,Joe Barlow,barlojo01,automatic_bbref_match +5315,Corey Kluber,6,klubeco01,1060,Corey Kluber,klubeco01,automatic_bbref_match +5316,Josh Taylor,6,taylojo02,1967,Josh Taylor,taylojo02,automatic_bbref_match +5317,Corey Knebel,6,knebeco01,1063,Corey Knebel,knebeco01,automatic_bbref_match +5318,Drew Pomeranz,6,pomerdr01,1572,Drew Pomeranz,pomerdr01,automatic_bbref_match +5319,Connor Brogdon,6,brogdco01,261,Connor Brogdon,brogdco01,automatic_bbref_match +5320,Cristian Javier,6,javiecr01,971,Cristian Javier,javiecr01,automatic_bbref_match +5321,Keegan Thompson,6,thompke02,1982,Keegan Thompson,thompke02,automatic_bbref_match +5322,Michael Pineda,6,pinedmi01,1560,Michael Pineda,pinedmi01,automatic_bbref_match +5323,German Marquez,6,marquge01,1204,German Marquez,marquge01,automatic_bbref_match +5324,Aroldis Chapman,6,chapmar01,366,Aroldis Chapman,chapmar01,automatic_bbref_match +5325,Caleb Baragar,6,baragca01,124,Caleb Baragar,baragca01,automatic_bbref_match +5326,Steven Matz,6,matzst01,1243,Steven Matz,matzst01,automatic_bbref_match +5327,Jaime Barria,6,barrija01,141,Jaime Barria,barrija01,automatic_bbref_match +5328,Hector Neris,6,nerishe01,1413,Hector Neris,nerishe01,automatic_bbref_match +5329,Reynaldo Lopez,6,lopezre01,1145,Reynaldo Lopez,lopezre01,automatic_bbref_match +5330,Aaron Nola,6,nolaaa01,1433,Aaron Nola,nolaaa01,automatic_bbref_match +5331,Will Smith,6,smithwi04,1843,Will Smith,smithwi04,automatic_bbref_match +5332,Ian Kennedy,6,kenneia01,1029,Ian Kennedy,kenneia01,automatic_bbref_match +5333,Kodi Whitley,6,whitlko01,2145,Kodi Whitley,whitlko01,automatic_bbref_match +5334,Tyler Wells,6,wellsty01,2132,Tyler Wells,wellsty01,automatic_bbref_match +5335,Paul Sewald,6,sewalpa01,1806,Paul Sewald,sewalpa01,automatic_bbref_match +5336,Shane McClanahan,6,mcclash01,1268,Shane McClanahan,mcclash01,automatic_bbref_match +5337,Adam Cimber,6,cimbead01,380,Adam Cimber,cimbead01,automatic_bbref_match +5338,Tyler Clippard,6,clippty01,393,Tyler Clippard,clippty01,automatic_bbref_match +5339,Eduardo Rodriguez,6,rodried05,1675,Eduardo Rodriguez,rodried05,automatic_bbref_match +5340,Zach Thompson,6,thompza01,1981,Zach Thompson,thompza01,automatic_bbref_match +5341,Ryan Thompson,6,thompry02,1983,Ryan Thompson,thompry02,automatic_bbref_match +5342,Dylan Floro,6,florody01,629,Dylan Floro,florody01,automatic_bbref_match +5343,Ashton Goudeau,6,goudeas01,759,Ashton Goudeau,goudeas01,automatic_bbref_match +5344,Jake Cousins,6,cousija01,424,Jake Cousins,cousija01,automatic_bbref_match +5345,Yacksel Rios,6,riosya01,1650,Yacksel Rios,riosya01,automatic_bbref_match +5346,Josh Staumont,6,staumjo01,1897,Josh Staumont,staumjo01,automatic_bbref_match +5347,Michael King,6,kingmi01,1047,Michael King,kingmi01,automatic_bbref_match +5348,Alex Wood,6,woodal02,2193,Alex Wood,woodal02,automatic_bbref_match +5349,Darwinzon Hernandez,6,hernada02,877,Darwinzon Hernandez,hernada02,automatic_bbref_match +5350,Tarik Skubal,6,skubata01,1836,Tarik Skubal,skubata01,automatic_bbref_match +5351,Taylor Widener,6,widenta01,2149,Taylor Widener,widenta01,automatic_bbref_match +5352,Camilo Doval,6,dovalca01,529,Camilo Doval,dovalca01,automatic_bbref_match +5353,Noe Ramirez,6,ramirno01,1606,Noe Ramirez,ramirno01,automatic_bbref_match +5354,Antonio Senzatela,6,senzaan01,1801,Antonio Senzatela,senzaan01,automatic_bbref_match +5355,Jeff Hoffman,6,hoffmje02,910,Jeff Hoffman,hoffmje02,automatic_bbref_match +5356,Gregory Soto,6,sotogr01,1878,Gregory Soto,sotogr01,automatic_bbref_match +5357,Matt Barnes,6,barnema01,131,Matt Barnes,barnema01,automatic_bbref_match +5358,Chris Stratton,6,stratch01,1922,Chris Stratton,stratch01,automatic_bbref_match +5359,Chris Rodriguez,6,rodrich01,1681,Chris Rodriguez,rodrich01,automatic_bbref_match +5360,Luke Weaver,6,weavelu01,2124,Luke Weaver,weavelu01,automatic_bbref_match +5361,Giovanny Gallegos,6,gallegi01,672,Giovanny Gallegos,gallegi01,automatic_bbref_match +5362,Phil Bickford,6,bickfph01,191,Phil Bickford,bickfph01,automatic_bbref_match +5363,James Kaprielian,6,kaprija01,1008,James Kaprielian,kaprija01,automatic_bbref_match +5364,Bruce Zimmermann,6,zimmebr02,2231,Bruce Zimmermann,zimmebr02,automatic_bbref_match +5365,Blake Snell,6,snellbl01,1861,Blake Snell,snellbl01,automatic_bbref_match +5366,Yusei Kikuchi,6,kikucyu01,1040,Yusei Kikuchi,kikucyu01,automatic_bbref_match +5367,Domingo German,6,germado01,713,Domingo German,germado01,automatic_bbref_match +5368,Lucas Gilbreath,6,gilbrlu01,719,Lucas Gilbreath,gilbrlu01,automatic_bbref_match +5369,Jon Gray,6,grayjo02,766,Jon Gray,grayjo02,automatic_bbref_match +5370,Dillon Tate,6,tatedi01,1959,Dillon Tate,tatedi01,automatic_bbref_match +5371,Richard Bleier,6,bleieri01,212,Richard Bleier,bleieri01,automatic_bbref_match +5372,Justin Steele,6,steelju01,1899,Justin Steele,steelju01,automatic_bbref_match +5373,Blake Parker,6,parkebl01,1499,Blake Parker,parkebl01,automatic_bbref_match +5374,Jordan Sheffield,6,sheffjo01,1812,Jordan Sheffield,sheffjo01,automatic_bbref_match +5376,Madison Bumgarner,6,bumgama01,278,Madison Bumgarner,bumgama01,automatic_bbref_match +5377,Hyun Jin Ryu,6,ryuhy01,1733,Hyun Jin Ryu,ryuhy01,automatic_bbref_match +5378,Kris Bubic,6,bubickr01,274,Kris Bubic,bubickr01,automatic_bbref_match +5379,Anthony Bender,6,bendean01,176,Anthony Bender,bendean01,automatic_bbref_match +5380,Trevor Richards,6,richatr01,1646,Trevor Richards,richatr01,automatic_bbref_match +5381,Tyler Duffey,6,duffety01,540,Tyler Duffey,duffety01,automatic_bbref_match +5382,Elieser Hernandez,6,hernael01,874,Elieser Hernandez,hernael01,automatic_bbref_match +5383,Diego Castillo,6,castidi01,345,Diego Castillo,castidi01,automatic_bbref_match +5384,Tyler Anderson,6,anderty01,68,Tyler Anderson,anderty01,automatic_bbref_match +5385,Caleb Thielbar,6,thielca01,1977,Caleb Thielbar,thielca01,automatic_bbref_match +5386,Bailey Ober,6,oberba01,1447,Bailey Ober,oberba01,automatic_bbref_match +5387,Clay Holmes,6,holmecl01,919,Clay Holmes,holmecl01,automatic_bbref_match +5388,Rich Hill,6,hillri01,898,Rich Hill,hillri01,automatic_bbref_match +5389,James Karinchak,6,karinja01,1009,James Karinchak,karinja01,automatic_bbref_match +5390,Steve Cishek,6,cishest01,381,Steve Cishek,cishest01,automatic_bbref_match +5391,Wandy Peralta,6,peralwa01,1524,Wandy Peralta,peralwa01,automatic_bbref_match +5392,Robert Stephenson,6,stephro01,1904,Robert Stephenson,stephro01,automatic_bbref_match +5393,Jhoulys Chacin,6,chacijh01,362,Jhoulys Chacin,chacijh01,automatic_bbref_match +5394,Pierce Johnson,6,johnspi01,985,Pierce Johnson,johnspi01,automatic_bbref_match +5395,Yohan Ramirez,6,ramiryo01,1611,Yohan Ramirez,ramiryo01,automatic_bbref_match +5396,Brad Boxberger,6,boxbebr01,229,Brad Boxberger,boxbebr01,automatic_bbref_match +5397,Craig Stammen,6,stammcr01,1891,Craig Stammen,stammcr01,automatic_bbref_match +5398,Tim Mayza,6,mayzati01,1253,Tim Mayza,mayzati01,automatic_bbref_match +5399,Jose Ruiz,6,ruizjo01,1724,Jose Ruiz,ruizjo01,automatic_bbref_match +5400,Bryan Shaw,6,shawbr01,1808,Bryan Shaw,shawbr01,automatic_bbref_match +5401,Jake McGee,6,mcgeeja01,1274,Jake McGee,mcgeeja01,automatic_bbref_match +5402,Logan Gilbert,6,gilbelo01,718,Logan Gilbert,gilbelo01,automatic_bbref_match +5403,Lou Trivino,6,trivilo01,2016,Lou Trivino,trivilo01,automatic_bbref_match +5404,Yu Darvish,6,darviyu01,462,Yu Darvish,darviyu01,automatic_bbref_match +5405,Zach Plesac,6,plesaza01,1566,Zach Plesac,plesaza01,automatic_bbref_match +5406,Zack Littell,6,litteza01,1127,Zack Littell,litteza01,automatic_bbref_match +5407,Paolo Espino,6,espinpa01,583,Paolo Espino,espinpa01,automatic_bbref_match +5408,JP Feyereisen,6,feyerjo01,612,JP Feyereisen,feyerjo01,automatic_bbref_match +5409,Edwin Diaz,6,diazed04,503,Edwin Diaz,diazed04,automatic_bbref_match +5410,Joe Kelly,6,kellyjo05,1021,Joe Kelly,kellyjo05,automatic_bbref_match +5411,Marcos Diplan,6,diplama01,519,Marcos Diplan,diplama01,automatic_bbref_match +5412,Adbert Alzolay,6,alzolad01,63,Adbert Alzolay,alzolad01,automatic_bbref_match +5413,Ralph Garza,6,garzara01,704,Ralph Garza,garzara01,automatic_bbref_match +5414,Ross Stripling,6,stripro01,1927,Ross Stripling,stripro01,automatic_bbref_match +5416,Jharel Cotton,6,cottojh01,423,Jharel Cotton,cottojh01,automatic_bbref_match +5417,Hunter Strickland,6,strichu01,1925,Hunter Strickland,strichu01,automatic_bbref_match +5418,Seth Lugo,6,lugose01,1165,Seth Lugo,lugose01,automatic_bbref_match +5419,Hirokazu Sawamura,6,sawamhi01,1769,Hirokazu Sawamura,sawamhi01,automatic_bbref_match +5420,Kwang Hyun Kim,6,kimkw01,946,Kwang Hyun Kim,kimkw01,automatic_bbref_match +5421,Alex Vesia,6,vesiaal01,2072,Alex Vesia,vesiaal01,automatic_bbref_match +5422,Lucas Sims,6,simslu01,1826,Lucas Sims,simslu01,automatic_bbref_match +5423,Jack Flaherty,6,flaheja01,622,Jack Flaherty,flaheja01,automatic_bbref_match +5424,Edgar Santana,6,santaed01,1763,Edgar Santana,santaed01,automatic_bbref_match +5425,Kyle Funkhouser,6,funkhky01,668,Kyle Funkhouser,funkhky01,automatic_bbref_match +5426,Joe Ross,6,rossjo01,1715,Joe Ross,rossjo01,automatic_bbref_match +5427,Triston McKenzie,6,mckentr01,1282,Triston McKenzie,mckentr01,automatic_bbref_match +5428,Louis Head,6,headlo01,840,Louis Head,headlo01,automatic_bbref_match +5429,Victor Gonzalez,6,gonzavi02,743,Victor Gonzalez,gonzavi02,automatic_bbref_match +5430,Sean Doolittle,6,doolise01,528,Sean Doolittle,doolise01,automatic_bbref_match +5431,Cole Irvin,6,irvinco01,954,Cole Irvin,irvinco01,automatic_bbref_match +5432,Tony Watson,6,watsoto01,2122,Tony Watson,watsoto01,automatic_bbref_match +5433,Archie Bradley,6,bradlar01,236,Archie Bradley,bradlar01,automatic_bbref_match +5434,Austin Gomber,6,gombeau01,730,Austin Gomber,gombeau01,automatic_bbref_match +5435,Daniel Hudson,6,hudsoda01,933,Daniel Hudson,hudsoda01,automatic_bbref_match +5436,Nick Neidert,6,neideni01,1408,Nick Neidert,neideni01,automatic_bbref_match +5437,Zack Greinke,6,greinza01,774,Zack Greinke,greinza01,automatic_bbref_match +5438,Mike Minor,6,minormi01,1335,Mike Minor,minormi01,automatic_bbref_match +5439,Ryne Harper,6,harpery01,824,Ryne Harper,harpery01,automatic_bbref_match +5440,Tylor Megill,6,megilty01,1295,Tylor Megill,megilty01,automatic_bbref_match +5441,Jake Odorizzi,6,odorija01,1452,Jake Odorizzi,odorija01,automatic_bbref_match +5442,Alex Reyes,6,reyesal02,1635,Alex Reyes,reyesal02,automatic_bbref_match +5443,Humberto Castellanos,6,castehu01,339,Humberto Castellanos,castehu01,automatic_bbref_match +5444,Brent Suter,6,suterbr01,1943,Brent Suter,suterbr01,automatic_bbref_match +5445,Adam Ottavino,6,ottavad01,1475,Adam Ottavino,ottavad01,automatic_bbref_match +5446,Trevor Stephan,6,stephtr01,1902,Trevor Stephan,stephtr01,automatic_bbref_match +5447,Drew Smyly,6,smylydr01,1858,Drew Smyly,smylydr01,automatic_bbref_match +5448,Ervin Santana,6,santaer01,1758,Ervin Santana,santaer01,automatic_bbref_match +5449,Caleb Smith,6,smithca03,1845,Caleb Smith,smithca03,automatic_bbref_match +5450,Sean Nolin,6,nolinse01,1434,Sean Nolin,nolinse01,automatic_bbref_match +5451,Nick Sandlin,6,sandlni01,1752,Nick Sandlin,sandlni01,automatic_bbref_match +5452,Touki Toussaint,6,toussto01,2005,Touki Toussaint,toussto01,automatic_bbref_match +5453,Dane Dunning,6,dunnida01,548,Dane Dunning,dunnida01,automatic_bbref_match +5454,Miguel Diaz,6,diazmi02,504,Miguel Diaz,diazmi02,automatic_bbref_match +5456,David Price,6,priceda01,1585,David Price,priceda01,automatic_bbref_match +5457,Kyle McGowin,6,mcgowky01,1276,Kyle McGowin,mcgowky01,automatic_bbref_match +5458,Yusmeiro Petit,6,petityu01,1549,Yusmeiro Petit,petityu01,automatic_bbref_match +5459,Taylor Rogers,6,rogerta01,1689,Taylor Rogers,rogerta01,automatic_bbref_match +5460,Kyle Hendricks,6,hendrky01,856,Kyle Hendricks,hendrky01,automatic_bbref_match +5461,Sam Coonrod,6,coonrsa01,414,Sam Coonrod,coonrsa01,automatic_bbref_match +5462,Spencer Patton,6,pattosp01,1505,Spencer Patton,pattosp01,automatic_bbref_match +5463,Chris Martin,6,martich02,1214,Chris Martin,martich02,automatic_bbref_match +5466,Tyler Kinley,6,kinlety01,1050,Tyler Kinley,kinlety01,automatic_bbref_match +5467,Aaron Bummer,6,bummeaa01,279,Aaron Bummer,bummeaa01,automatic_bbref_match +5468,Jordan Holloway,6,hollojo01,917,Jordan Holloway,hollojo01,automatic_bbref_match +5469,Jake Woodford,6,woodfja01,2195,Jake Woodford,woodfja01,automatic_bbref_match +5470,Yimi Garcia,6,garciyi01,680,Yimi Garcia,garciyi01,automatic_bbref_match +5471,Martin Perez,6,perezma02,1535,Martin Perez,perezma02,automatic_bbref_match +5472,Miguel Castro,6,castrmi01,350,Miguel Castro,castrmi01,automatic_bbref_match +5473,Erik Swanson,6,swanser01,1948,Erik Swanson,swanser01,automatic_bbref_match +5474,Alex Lange,6,langeal01,1091,Alex Lange,langeal01,automatic_bbref_match +5475,Joey Lucchesi,6,lucchjo01,1160,Joey Lucchesi,lucchjo01,automatic_bbref_match +5476,Jake Brentz,6,brentja01,251,Jake Brentz,brentja01,automatic_bbref_match +5477,Codi Heuer,6,heuerco01,890,Codi Heuer,heuerco01,automatic_bbref_match +5478,Kenta Maeda,6,maedake01,1181,Kenta Maeda,maedake01,automatic_bbref_match +5479,Ryne Stanek,6,stanery01,1892,Ryne Stanek,stanery01,automatic_bbref_match +5480,John Gant,6,gantjo01,677,John Gant,gantjo01,automatic_bbref_match +5481,Blake Taylor,6,taylobl01,1966,Blake Taylor,taylobl01,automatic_bbref_match +5482,Dinelson Lamet,6,lametdi01,1090,Dinelson Lamet,lametdi01,automatic_bbref_match +5483,Matt Peacock,6,peacoma01,1511,Matt Peacock,peacoma01,automatic_bbref_match +5484,Eli Morgan,6,morgael01,1369,Eli Morgan,morgael01,automatic_bbref_match +5485,Jake Diekman,6,diekmja01,514,Jake Diekman,diekmja01,automatic_bbref_match +5486,Wade LeBlanc,6,leblawa01,1104,Wade LeBlanc,leblawa01,automatic_bbref_match +5487,Carlos Estevez,6,estevca01,585,Carlos Estevez,estevca01,automatic_bbref_match +5488,Trevor Williams,6,willitr01,2156,Trevor Williams,willitr01,automatic_bbref_match +5489,Brett Martin,6,martibr01,1218,Brett Martin,martibr01,automatic_bbref_match +5490,Trevor May,6,maytr01,1248,Trevor May,maytr01,automatic_bbref_match +5491,JT Brubaker,6,brubajt01,269,JT Brubaker,brubajt01,automatic_bbref_match +5492,Taijuan Walker,6,walketa01,2105,Taijuan Walker,walketa01,automatic_bbref_match +5493,Nabil Crismatt,6,crismna01,436,Nabil Crismatt,crismna01,automatic_bbref_match +5494,AJ Minter,6,minteaj01,1336,AJ Minter,minteaj01,automatic_bbref_match +5495,Steven Brault,6,braulst01,243,Steven Brault,braulst01,automatic_bbref_match +5496,Andres Machado,6,machaan02,1176,Andres Machado,machaan02,automatic_bbref_match +5497,Robert Gsellman,6,gsellro01,782,Robert Gsellman,gsellro01,automatic_bbref_match +5498,Jose Alvarado,6,alvarjo03,58,Jose Alvarado,alvarjo03,automatic_bbref_match +5499,Bryse Wilson,6,wilsobr02,2171,Bryse Wilson,wilsobr02,automatic_bbref_match +5500,Cody Poteet,6,poteeco01,1579,Cody Poteet,poteeco01,automatic_bbref_match +5501,Josh Sborz,6,sborzjo01,1770,Josh Sborz,sborzjo01,automatic_bbref_match +5502,Joe Smith,6,smithjo05,1842,Joe Smith,smithjo05,automatic_bbref_match +5503,Jorge Alcala,6,alcaljo01,32,Jorge Alcala,alcaljo01,automatic_bbref_match +5504,Jakob Junis,6,junisja01,1004,Jakob Junis,junisja01,automatic_bbref_match +5505,Jose Cisnero,6,cisnejo01,382,Jose Cisnero,cisnejo01,automatic_bbref_match +5506,Sean Newcomb,6,newcose01,1419,Sean Newcomb,newcose01,automatic_bbref_match +5507,Deolis Guerra,6,guerrde01,787,Deolis Guerra,guerrde01,automatic_bbref_match +5508,Anthony Banda,6,bandaan01,121,Anthony Banda,bandaan01,automatic_bbref_match +5509,JB Wendelken,6,wendejb01,2134,JB Wendelken,wendejb01,automatic_bbref_match +5510,Jeffrey Springs,6,sprinje01,1889,Jeffrey Springs,sprinje01,automatic_bbref_match +5511,Duane Underwood,6,underdu01,2033,Duane Underwood,underdu01,automatic_bbref_match +5512,Garrett Richards,6,richaga01,1645,Garrett Richards,richaga01,automatic_bbref_match +5513,Albert Abreu,6,abreual01,9,Albert Abreu,abreual01,automatic_bbref_match +5514,Kyle Crick,6,crickky01,435,Kyle Crick,crickky01,automatic_bbref_match +5515,Jose Quijada,6,quijajo01,1594,Jose Quijada,quijajo01,automatic_bbref_match +5516,Tayler Saucedo,6,sauceta01,1768,Tayler Saucedo,sauceta01,automatic_bbref_match +5517,Ross Detwiler,6,detwiro01,497,Ross Detwiler,detwiro01,automatic_bbref_match +5518,Anthony Misiewicz,6,misiean01,1338,Anthony Misiewicz,misiean01,automatic_bbref_match +5519,Derek Holland,6,hollade01,914,Derek Holland,hollade01,automatic_bbref_match +5520,Griffin Canning,6,cannigr01,317,Griffin Canning,cannigr01,automatic_bbref_match +5521,Andrew Heaney,6,heanean01,843,Andrew Heaney,heanean01,automatic_bbref_match +5522,Zach Pop,6,popza01,1575,Zach Pop,popza01,automatic_bbref_match +5523,Chad Kuhl,6,kuhlch01,1078,Chad Kuhl,kuhlch01,automatic_bbref_match +5524,John Curtiss,6,curtijo02,455,John Curtiss,curtijo02,automatic_bbref_match +5525,Genesis Cabrera,6,cabrege01,301,Genesis Cabrera,cabrege01,automatic_bbref_match +5526,Luis Patino,6,patinlu01,1504,Luis Patino,patinlu01,automatic_bbref_match +5527,Austin Adams,6,adamsau02,16,Austin Adams,adamsau02,automatic_bbref_match +5528,Taylor Hearn,6,hearnta01,844,Taylor Hearn,hearnta01,automatic_bbref_match +5529,Greg Holland,6,hollagr01,915,Greg Holland,hollagr01,automatic_bbref_match +5530,Brett Anderson,6,anderbr04,66,Brett Anderson,anderbr04,automatic_bbref_match +5531,Anthony Bass,6,bassan01,145,Anthony Bass,bassan01,automatic_bbref_match +5532,Sergio Romo,6,romose01,1705,Sergio Romo,romose01,automatic_bbref_match +5533,Jorge Lopez,6,lopezjo02,1144,Jorge Lopez,lopezjo02,automatic_bbref_match +5534,Brady Singer,6,singebr01,1827,Brady Singer,singebr01,automatic_bbref_match +5535,Bryan Abreu,6,abreubr01,8,Bryan Abreu,abreubr01,automatic_bbref_match +5536,Keegan Akin,6,akinke01,27,Keegan Akin,akinke01,automatic_bbref_match +5537,Kolby Allard,6,allarko01,42,Kolby Allard,allarko01,automatic_bbref_match +5538,Logan Allen,6,allenlo01,45,Logan Allen,allenlo01,automatic_bbref_match +5539,Yency Almonte,6,almonye01,50,Yency Almonte,almonye01,automatic_bbref_match +5540,Chase Anderson,6,anderch01,67,Chase Anderson,anderch01,automatic_bbref_match +5541,Matt Andriese,6,andrima01,76,Matt Andriese,andrima01,automatic_bbref_match +5542,Kohei Arihara,6,arihako01,90,Kohei Arihara,arihako01,automatic_bbref_match +5543,Shawn Armstrong,6,armstsh01,91,Shawn Armstrong,armstsh01,automatic_bbref_match +5544,Jake Arrieta,6,arrieja01,94,Jake Arrieta,arrieja01,automatic_bbref_match +5545,Aaron Ashby,6,ashbyaa01,98,Aaron Ashby,ashbyaa01,automatic_bbref_match +5546,Daniel Bard,6,bardda01,125,Daniel Bard,bardda01,automatic_bbref_match +5547,Charlie Barnes,6,barnech01,134,Charlie Barnes,barnech01,automatic_bbref_match +5548,Jacob Barnes,6,barneja01,133,Jacob Barnes,barneja01,automatic_bbref_match +5549,Brandon Bielak,6,bielabr01,195,Brandon Bielak,bielabr01,automatic_bbref_match +5550,Paul Blackburn,6,blackpa01,204,Paul Blackburn,blackpa01,automatic_bbref_match +5551,Ben Bowden,6,bowdebe01,227,Ben Bowden,bowdebe01,automatic_bbref_match +5552,Brad Brach,6,brachbr01,232,Brad Brach,brachbr01,automatic_bbref_match +5553,Rex Brothers,6,brothre01,264,Rex Brothers,brothre01,automatic_bbref_match +5554,Dylan Bundy,6,bundydy01,280,Dylan Bundy,bundydy01,automatic_bbref_match +5555,Edward Cabrera,6,cabreed02,302,Edward Cabrera,cabreed02,automatic_bbref_match +5556,Trevor Cahill,6,cahiltr01,304,Trevor Cahill,cahiltr01,automatic_bbref_match +5557,Paul Campbell,6,campbpa02,313,Paul Campbell,campbpa02,automatic_bbref_match +5558,Carlos Carrasco,6,carraca01,331,Carlos Carrasco,carraca01,automatic_bbref_match +5559,Anthony Castro,6,castran02,351,Anthony Castro,castran02,automatic_bbref_match +5560,Tyler Chatwood,6,chatwty01,369,Tyler Chatwood,chatwty01,automatic_bbref_match +5561,Taylor Clarke,6,clarkta01,384,Taylor Clarke,clarkta01,automatic_bbref_match +5562,Alex Claudio,6,claudal01,387,Alex Claudio,claudal01,automatic_bbref_match +5563,Sam Clay,6,claysa01,388,Sam Clay,claysa01,automatic_bbref_match +5564,Alex Colome,6,colomal01,404,Alex Colome,colomal01,automatic_bbref_match +5565,Patrick Corbin,6,corbipa01,416,Patrick Corbin,corbipa01,automatic_bbref_match +5566,Wil Crowe,6,crowewi01,446,Wil Crowe,crowewi01,automatic_bbref_match +5567,Zach Davies,6,davieza02,465,Zach Davies,davieza02,automatic_bbref_match +5568,Austin Davis,6,davisau01,471,Austin Davis,davisau01,automatic_bbref_match +5569,Wade Davis,6,daviswa01,468,Wade Davis,daviswa01,automatic_bbref_match +5570,Brett de Geus,6,degeubr01,477,Brett de Geus,degeubr01,automatic_bbref_match +5571,Chase De Jong,6,dejonch01,478,Chase De Jong,dejonch01,automatic_bbref_match +5572,Enyel De Los Santos,6,delosen01,482,Enyel De Los Santos,delosen01,automatic_bbref_match +5573,Randy Dobnak,6,dobnara01,521,Randy Dobnak,dobnara01,automatic_bbref_match +5574,Rafael Dolis,6,dolisra01,523,Rafael Dolis,dolisra01,automatic_bbref_match +5576,Demarcus Evans,6,evansde01,590,DeMarcus Evans,evansde01,automatic_bbref_match +5577,Pete Fairbanks,6,fairbpe01,592,Pete Fairbanks,fairbpe01,automatic_bbref_match +5578,Bailey Falter,6,falteba01,594,Bailey Falter,falteba01,automatic_bbref_match +5579,Jeurys Familia,6,familje01,595,Jeurys Familia,familje01,automatic_bbref_match +5580,Jake Faria,6,fariaja01,596,Jake Faria,fariaja01,automatic_bbref_match +5581,Buck Farmer,6,farmebu01,597,Buck Farmer,farmebu01,automatic_bbref_match +5582,Erick Fedde,6,feddeer01,600,Erick Fedde,feddeer01,automatic_bbref_match +5583,Kyle Finnegan,6,finneky01,617,Kyle Finnegan,finneky01,automatic_bbref_match +5584,Josh Fleming,6,flemijo01,623,Josh Fleming,flemijo01,automatic_bbref_match +5585,Mike Foltynewicz,6,foltymi01,633,Mike Foltynewicz,foltymi01,automatic_bbref_match +5586,Matt Foster,6,fostema01,638,Matt Foster,fostema01,automatic_bbref_match +5587,Paul Fry,6,frypa01,662,Paul Fry,frypa01,automatic_bbref_match +5588,Bryan Garcia,6,garcibr01,685,Bryan Garcia,garcibr01,automatic_bbref_match +5589,Amir Garrett,6,garream01,698,Amir Garrett,garream01,automatic_bbref_match +5590,Braxton Garrett,6,garrebr01,701,Braxton Garrett,garrebr01,automatic_bbref_match +5591,Kevin Ginkel,6,ginkeke01,722,Kevin Ginkel,ginkeke01,automatic_bbref_match +5592,Chi Chi Gonzalez,6,gonzach01,737,Chi Chi Gonzalez,gonzach01,automatic_bbref_match +5593,Brusdar Graterol,6,gratebr01,763,Brusdar Graterol,gratebr01,automatic_bbref_match +5594,Josiah Gray,6,grayjo03,767,Josiah Gray,grayjo03,automatic_bbref_match +5595,Junior Guerra,6,guerrju02,785,Junior Guerra,guerrju02,automatic_bbref_match +5596,David Hale,6,haleda02,805,David Hale,haleda02,automatic_bbref_match +5597,Brad Hand,6,handbr01,816,Brad Hand,handbr01,automatic_bbref_match +5598,JA Happ,6,happja01,821,JA Happ,happja01,automatic_bbref_match +5599,Matt Harvey,6,harvema01,835,Matt Harvey,harvema01,automatic_bbref_match +5600,Ryan Helsley,6,helslry01,853,Ryan Helsley,helslry01,automatic_bbref_match +5601,Heath Hembree,6,hembrhe01,854,Heath Hembree,hembrhe01,automatic_bbref_match +5602,Ryan Hendrix,6,hendrry01,858,Ryan Hendrix,hendrry01,automatic_bbref_match +5603,Sam Hentges,6,hentgsa01,861,Sam Hentges,hentgsa01,automatic_bbref_match +5604,Tim Hill,6,hillti01,900,Tim Hill,hillti01,automatic_bbref_match +5605,Spencer Howard,6,howarsp01,930,Spencer Howard,howarsp01,automatic_bbref_match +5606,Sam Howard,6,howarsa01,929,Sam Howard,howarsa01,automatic_bbref_match +5607,Griffin Jax,6,jaxgr01,972,Griffin Jax,jaxgr01,automatic_bbref_match +5608,Joe Jimenez,6,jimenjo02,979,Joe Jimenez,jimenjo02,automatic_bbref_match +5609,Anthony Kay,6,kayan01,1012,Anthony Kay,kayan01,automatic_bbref_match +5610,Brad Keller,6,kellebr01,1016,Brad Keller,kellebr01,automatic_bbref_match +5611,Kyle Keller,6,kelleky01,1018,Kyle Keller,kelleky01,automatic_bbref_match +5612,Mitch Keller,6,kellemi03,1017,Mitch Keller,kellemi03,automatic_bbref_match +5613,Dallas Keuchel,6,keuchda01,1035,Dallas Keuchel,keuchda01,automatic_bbref_match +5614,John King,6,kingjo01,1045,John King,kingjo01,automatic_bbref_match +5615,Brandon Kintzler,6,kintzbr01,1052,Brandon Kintzler,kintzbr01,automatic_bbref_match +5616,Reiss Knehr,6,knehrre01,1064,Reiss Knehr,knehrre01,automatic_bbref_match +5617,Jackson Kowar,6,kowarja01,1072,Jackson Kowar,kowarja01,automatic_bbref_match +5618,Max Kranick,6,kranima01,1073,Max Kranick,kranima01,automatic_bbref_match +5619,Dean Kremer,6,kremede01,1077,Dean Kremer,kremede01,automatic_bbref_match +5620,Travis Lakins,6,lakintr01,1085,Travis Lakins,lakintr01,automatic_bbref_match +5621,Jon Lester,6,lestejo01,1117,Jon Lester,lestejo01,automatic_bbref_match +5622,Sammy Long,6,longsa01,1139,Sam Long,longsa01,automatic_bbref_match +5623,Michael Lorenzen,6,lorenmi01,1151,Michael Lorenzen,lorenmi01,automatic_bbref_match +5624,Zac Lowther,6,lowthza01,1159,Zac Lowther,lowthza01,automatic_bbref_match +5625,Jesus Luzardo,6,luzarje01,1170,Jesus Luzardo,luzarje01,automatic_bbref_match +5626,Jordan Lyles,6,lylesjo01,1171,Jordan Lyles,lylesjo01,automatic_bbref_match +5627,Daniel Lynch,6,lynchda02,1172,Daniel Lynch,lynchda02,automatic_bbref_match +5628,Matt Manning,6,mannima02,1191,Matt Manning,mannima02,automatic_bbref_match +5629,Joe Mantiply,6,mantijo01,1193,Joe Mantiply,mantijo01,automatic_bbref_match +5633,Chris Mazza,6,mazzach01,1257,Chris Mazza,mazzach01,automatic_bbref_match +5634,Nick Mears,6,mearsni01,1292,Nick Mears,mearsni01,automatic_bbref_match +5636,Keynan Middleton,6,middlke01,1316,Keynan Middleton,middlke01,automatic_bbref_match +5637,Miles Mikolas,6,mikolmi01,1317,Miles Mikolas,mikolmi01,automatic_bbref_match +5638,Andrew Miller,6,millean01,1320,Andrew Miller,millean01,automatic_bbref_match +5639,Alec Mills,6,millsal02,1330,Alec Mills,millsal02,automatic_bbref_match +5640,Rafael Montero,6,montera01,1352,Rafael Montero,montera01,automatic_bbref_match +5641,Matt Moore,6,moorema02,1357,Matt Moore,moorema02,automatic_bbref_match +5642,Adam Morgan,6,morgaad01,1368,Adam Morgan,morgaad01,automatic_bbref_match +5643,Patrick Murphy,6,murphpa02,1389,Patrick Murphy,murphpa02,automatic_bbref_match +5644,Tommy Nance,6,nanceto01,1398,Tommy Nance,nanceto01,automatic_bbref_match +5645,Daniel Norris,6,norrida01,1439,Daniel Norris,norrida01,automatic_bbref_match +5646,Johan Oviedo,6,oviedjo01,1479,Johan Oviedo,oviedjo01,automatic_bbref_match +5647,Chris Paddack,6,paddach01,1483,Chris Paddack,paddach01,automatic_bbref_match +5648,Emilio Pagan,6,paganem01,1484,Emilio Pagan,paganem01,automatic_bbref_match +5649,David Peterson,6,peterda01,1548,David Peterson,peterda01,automatic_bbref_match +5650,Adam Plutko,6,plutkad01,1567,Adam Plutko,plutkad01,automatic_bbref_match +5651,Daniel Ponce de Leon,6,ponceda01,1574,Daniel Ponce de Leon,ponceda01,automatic_bbref_match +5652,Cody Ponce,6,ponceco01,1573,Cody Ponce,ponceco01,automatic_bbref_match +5653,Jose Quintana,6,quintjo01,1596,Jose Quintana,quintjo01,automatic_bbref_match +5654,Tanner Rainey,6,raineta01,1599,Tanner Rainey,raineta01,automatic_bbref_match +5655,Brooks Raley,6,raleybr01,1601,Brooks Raley,raleybr01,automatic_bbref_match +5656,Erasmo Ramirez,6,ramirer02,1604,Erasmo Ramirez,ramirer02,automatic_bbref_match +5657,Hansel Robles,6,robleha01,1665,Hansel Robles,robleha01,automatic_bbref_match +5658,Joely Rodriguez,6,rodrijo06,1673,Joely Rodriguez,rodrijo06,automatic_bbref_match +5659,Michael Rucker,6,ruckemi01,1721,Michael Rucker,ruckemi01,automatic_bbref_match +5660,Miguel Sanchez,6,sanchmi01,1750,Miguel Sanchez,sanchmi01,automatic_bbref_match +5661,Dennis Santana,6,santade01,1762,Dennis Santana,santade01,automatic_bbref_match +5662,Tanner Scott,6,scottta01,1788,Tanner Scott,scottta01,automatic_bbref_match +5663,Justus Sheffield,6,sheffju01,1813,Justus Sheffield,sheffju01,automatic_bbref_match +5664,Matt Shoemaker,6,shoemma01,1817,Matt Shoemaker,shoemma01,automatic_bbref_match +5665,Aaron Slegers,6,slegeaa01,1839,Aaron Slegers,slegeaa01,automatic_bbref_match +5666,Burch Smith,6,smithbu03,1844,Burch Smith,smithbu03,automatic_bbref_match +5667,Riley Smith,6,smithri01,1850,Riley Smith,smithri01,automatic_bbref_match +5668,Joakim Soria,6,soriajo01,1872,Joakim Soria,soriajo01,automatic_bbref_match +5669,Wander Suero,6,suerowa01,1940,Wander Suero,suerowa01,automatic_bbref_match +5670,Mason Thompson,6,thompma02,1984,Mason Thompson,thompma02,automatic_bbref_match +5671,Trent Thornton,6,thorntr01,1988,Trent Thornton,thorntr01,automatic_bbref_match +5672,Josh Tomlin,6,tomlijo01,1996,Josh Tomlin,tomlijo01,automatic_bbref_match +5673,Jose Urena,6,urenajo01,2035,Jose Urena,urenajo01,automatic_bbref_match +5674,Cesar Valdez,6,valdece01,2046,Cesar Valdez,valdece01,automatic_bbref_match +5675,Phillips Valdez,6,valdeph01,2047,Phillips Valdez,valdeph01,automatic_bbref_match +5676,Vince Velasquez,6,velasvi01,2065,Vince Velasquez,velasvi01,automatic_bbref_match +5677,Will Vest,6,vestwi01,2074,Will Vest,vestwi01,automatic_bbref_match +5678,Austin Voth,6,vothau01,2091,Austin Voth,vothau01,automatic_bbref_match +5679,Michael Wacha,6,wachami01,2093,Michael Wacha,wachami01,automatic_bbref_match +5680,Andrew Wantz,6,wantzan01,2115,Andrew Wantz,wantzan01,automatic_bbref_match +5681,Spenser Watkins,6,watkisp01,2121,Spenser Watkins,watkisp01,automatic_bbref_match +5682,Ryan Weathers,6,weathry01,2123,Ryan Weathers,weathry01,automatic_bbref_match +5683,Jacob Webb,6,webbja01,2126,Jacob Webb,webbja01,automatic_bbref_match +5684,Alexander Wells,6,wellsal01,2133,Alexander Wells,wellsal01,automatic_bbref_match +5685,Mitch White,6,whitemi03,2143,Mitch White,whitemi03,automatic_bbref_match +5686,Rowan Wick,6,wickro01,2147,Rowan Wick,wickro01,automatic_bbref_match +5687,Justin Wilson,6,wilsoju10,2167,Justin Wilson,wilsoju10,automatic_bbref_match +5688,Dan Winkler,6,winklda01,2178,Dan Winkler,winklda01,automatic_bbref_match +5689,Matt Wisler,6,wislema01,2183,Matt Wisler,wislema01,automatic_bbref_match +5690,Nick Wittgren,6,wittgni01,2185,Nick Wittgren,wittgni01,automatic_bbref_match +5691,Brandon Workman,6,workmbr01,2198,Brandon Workman,workmbr01,automatic_bbref_match +5692,Hyeon jong Yang,6,yanghy01,2207,Hyeon jong Yang,yanghy01,automatic_bbref_match +5693,Ryan Yarbrough,6,yarbrry01,2208,Ryan Yarbrough,yarbrry01,automatic_bbref_match +5694,Alex Young,6,youngal01,2217,Alex Young,youngal01,automatic_bbref_match +5695,Kyle Zimmer,6,zimmeky01,2228,Kyle Zimmer,zimmeky01,automatic_bbref_match +5696,Tyler Zuber,6,zuberty01,2233,Tyler Zuber,zuberty01,automatic_bbref_match +5697,Byron Buxton,6,buxtoby01,295,Byron Buxton,buxtoby01,automatic_bbref_match +5698,Mike Trout,6,troutmi01,2019,Mike Trout,troutmi01,automatic_bbref_match +5699,Luis Robert,6,roberlu01,1660,Luis Robert,roberlu01,automatic_bbref_match +5700,Fernando Tatis Jr,6,tatisfe02,1960,Fernando Tatis Jr,tatisfe02,automatic_bbref_match +5701,Tyler ONeill,6,oneilty01,1463,Tyler ONeill,oneilty01,automatic_bbref_match +5702,Adam Engel,6,engelad01,574,Adam Engel,engelad01,automatic_bbref_match +5703,Wander Franco,6,francwa01,646,Wander Franco,francwa01,automatic_bbref_match +5704,Carlos Correa,6,correca01,420,Carlos Correa,correca01,automatic_bbref_match +5705,Brandon Crawford,6,crawfbr01,430,Brandon Crawford,crawfbr01,automatic_bbref_match +5706,Juan Soto,6,sotoju01,1879,Juan Soto,sotoju01,automatic_bbref_match +5707,Jose Ramirez,6,ramirjo01,1608,Jose Ramirez,ramirjo01,automatic_bbref_match +5708,Santiago Espinal,6,espinsa01,582,Santiago Espinal,espinsa01,automatic_bbref_match +5709,Mike Zunino,6,zuninmi01,2234,Mike Zunino,zuninmi01,automatic_bbref_match +5710,Marcus Semien,6,semiema01,1799,Marcus Semien,semiema01,automatic_bbref_match +5711,Trea Turner,6,turnetr01,1,Trea Turner,turnetr01,automatic_bbref_match +5712,Kyle Tucker,6,tuckeky01,2023,Kyle Tucker,tuckeky01,automatic_bbref_match +5713,Ronald Acuna Jr,6,acunaro01,12,Ronald Acuna Jr,acunaro01,automatic_bbref_match +5714,Bryce Harper,6,harpebr03,823,Bryce Harper,harpebr03,automatic_bbref_match +5715,Yasmani Grandal,6,grandya01,761,Yasmani Grandal,grandya01,automatic_bbref_match +5716,Edmundo Sosa,6,sosaed01,1876,Edmundo Sosa,sosaed01,automatic_bbref_match +5717,Vladimir Guerrero Jr,6,guerrvl02,789,Vladimir Guerrero Jr,guerrvl02,automatic_bbref_match +5718,Harrison Bader,6,baderha01,110,Harrison Bader,baderha01,automatic_bbref_match +5719,Aaron Judge,6,judgeaa01,3,Aaron Judge,judgeaa01,automatic_bbref_match +5720,Jake Rogers,6,rogerja03,1692,Jake Rogers,rogerja03,automatic_bbref_match +5721,Brandon Nimmo,6,nimmobr01,1425,Brandon Nimmo,nimmobr01,automatic_bbref_match +5722,Bryan Reynolds,6,reynobr01,1641,Bryan Reynolds,reynobr01,automatic_bbref_match +5723,Darin Ruf,6,rufda01,1722,Darin Ruf,rufda01,automatic_bbref_match +5724,Austin Riley,6,rileyau01,1649,Austin Riley,rileyau01,automatic_bbref_match +5725,Corey Seager,6,seageco01,1794,Corey Seager,seageco01,automatic_bbref_match +5726,Paul Goldschmidt,6,goldspa01,729,Paul Goldschmidt,goldspa01,automatic_bbref_match +5727,Starling Marte,6,martest01,1208,Starling Marte,martest01,automatic_bbref_match +5728,Tim Anderson,6,anderti01,73,Tim Anderson,anderti01,automatic_bbref_match +5729,Kevin Kiermaier,6,kiermke01,1039,Kevin Kiermaier,kiermke01,automatic_bbref_match +5730,Matt Olson,6,olsonma02,1461,Matt Olson,olsonma02,automatic_bbref_match +5731,Mitch Garver,6,garvemi01,702,Mitch Garver,garvemi01,automatic_bbref_match +5732,Tony Kemp,6,kempto01,1027,Tony Kemp,kempto01,automatic_bbref_match +5733,Bo Bichette,6,bichebo01,190,Bo Bichette,bichebo01,automatic_bbref_match +5734,Taylor Walls,6,wallsta01,2110,Taylor Walls,wallsta01,automatic_bbref_match +5735,Willson Contreras,6,contrwi01,410,Willson Contreras,contrwi01,automatic_bbref_match +5736,Cedric Mullins,6,mullice01,1381,Cedric Mullins,mullice01,automatic_bbref_match +5737,Enrique Hernandez,6,hernaen02,871,Enrique Hernandez,hernaen02,automatic_bbref_match +5738,Max Muncy,6,muncyma01,1382,Max Muncy,muncyma01,automatic_bbref_match +5739,Christian Arroyo,6,arroych01,96,Christian Arroyo,arroych01,automatic_bbref_match +5740,Javier Baez,6,baezja01,112,Javier Baez,baezja01,automatic_bbref_match +5741,Brett Phillips,6,phillbr02,1555,Brett Phillips,phillbr02,automatic_bbref_match +5742,Xander Bogaerts,6,bogaexa01,216,Xander Bogaerts,bogaexa01,automatic_bbref_match +5743,Salvador Perez,6,perezsa02,1534,Salvador Perez,perezsa02,automatic_bbref_match +5744,Manny Machado,6,machama01,1175,Manny Machado,machama01,automatic_bbref_match +5745,Buster Posey,6,poseybu01,1578,Buster Posey,poseybu01,automatic_bbref_match +5746,Lorenzo Cain,6,cainlo01,305,Lorenzo Cain,cainlo01,automatic_bbref_match +5747,Mookie Betts,6,bettsmo01,187,Mookie Betts,bettsmo01,automatic_bbref_match +5748,Brandon Lowe,6,lowebr01,1156,Brandon Lowe,lowebr01,automatic_bbref_match +5749,Joey Gallo,6,gallojo01,674,Joey Gallo,gallojo01,automatic_bbref_match +5750,Jorge Polanco,6,polanjo01,1570,Jorge Polanco,polanjo01,automatic_bbref_match +5751,Nicky Lopez,6,lopezni01,1149,Nicky Lopez,lopezni01,automatic_bbref_match +5752,Connor Joe,6,joeco01,983,Connor Joe,joeco01,automatic_bbref_match +5753,Willy Adames,6,adamewi01,14,Willy Adames,adamewi01,automatic_bbref_match +5754,Joey Wendle,6,wendljo01,2135,Joey Wendle,wendljo01,automatic_bbref_match +5755,Jake Cronenworth,6,croneja01,442,Jake Cronenworth,croneja01,automatic_bbref_match +5756,Steven Duggar,6,duggast01,543,Steven Duggar,duggast01,automatic_bbref_match +5757,Jake Meyers,6,meyerja02,1315,Jake Meyers,meyerja02,automatic_bbref_match +5758,Dustin Garneau,6,garnedu01,697,Dustin Garneau,garnedu01,automatic_bbref_match +5759,AJ Pollock,6,polloaj01,1571,AJ Pollock,polloaj01,automatic_bbref_match +5760,Chas McCormick,6,mccorch01,1269,Chas McCormick,mccorch01,automatic_bbref_match +5882,Hunter Renfroe,6,renfrhu01,1631,Hunter Renfroe,renfrhu01,automatic_bbref_match +5761,Brandon Belt,6,beltbr01,173,Brandon Belt,beltbr01,automatic_bbref_match +5762,Luis Arraez,6,arraelu01,93,Luis Arraez,arraelu01,automatic_bbref_match +5763,Trevor Story,6,storytr01,1914,Trevor Story,storytr01,automatic_bbref_match +5764,Ha Seong Kim,6,kimha01,1042,Ha Seong Kim,kimha01,automatic_bbref_match +5765,Nico Hoerner,6,hoernni01,909,Nico Hoerner,hoernni01,automatic_bbref_match +5766,George Springer,6,springe01,1888,George Springer,springe01,automatic_bbref_match +5767,Jacob Stallings,6,stallja01,1890,Jacob Stallings,stallja01,automatic_bbref_match +5768,Will D Smith,6,smithwi05,1841,Will Smith,smithwi05,automatic_bbref_match +5769,Ramon Laureano,6,laurera01,1097,Ramon Laureano,laurera01,automatic_bbref_match +5770,Pablo Reyes,6,reyespa01,1637,Pablo Reyes,reyespa01,automatic_bbref_match +5771,Randy Arozarena,6,arozara01,92,Randy Arozarena,arozara01,automatic_bbref_match +5772,Kyle Schwarber,6,schwaky01,1784,Kyle Schwarber,schwaky01,automatic_bbref_match +5773,Freddie Freeman,6,freemfr01,652,Freddie Freeman,freemfr01,automatic_bbref_match +5774,Kolten Wong,6,wongko01,2188,Kolten Wong,wongko01,automatic_bbref_match +5775,Ryan McMahon,6,mcmahry01,1286,Ryan McMahon,mcmahry01,automatic_bbref_match +5776,Yan Gomes,6,gomesya01,731,Yan Gomes,gomesya01,automatic_bbref_match +5777,Andy Ibanez,6,ibanean01,948,Andy Ibanez,ibanean01,automatic_bbref_match +5778,Ty France,6,francty01,642,Ty France,francty01,automatic_bbref_match +5779,Pete Alonso,6,alonspe01,53,Pete Alonso,alonspe01,automatic_bbref_match +5780,Frank Schwindel,6,schwifr01,1786,Frank Schwindel,schwifr01,automatic_bbref_match +5781,Joey Votto,6,vottojo01,2092,Joey Votto,vottojo01,automatic_bbref_match +5782,Teoscar Hernandez,6,hernate01,873,Teoscar Hernandez,hernate01,automatic_bbref_match +5783,Jean Segura,6,segurje01,1796,Jean Segura,segurje01,automatic_bbref_match +5784,JT Realmuto,6,realmjt01,1622,JT Realmuto,realmjt01,automatic_bbref_match +5785,Jose Altuve,6,altuvjo01,56,Jose Altuve,altuvjo01,automatic_bbref_match +5786,Yoan Moncada,6,moncayo01,1348,Yoan Moncada,moncayo01,automatic_bbref_match +5787,Ramon Urias,6,uriasra01,2037,Ramon Urias,uriasra01,automatic_bbref_match +5788,Danny Jansen,6,janseda01,969,Danny Jansen,janseda01,automatic_bbref_match +5789,Alex Avila,6,avilaal01,104,Alex Avila,avilaal01,automatic_bbref_match +5790,Nolan Arenado,6,arenano01,88,Nolan Arenado,arenano01,automatic_bbref_match +5791,Adam Frazier,6,fraziad01,648,Adam Frazier,fraziad01,automatic_bbref_match +5792,Trent Grisham,6,grishtr01,776,Trent Grisham,grishtr01,automatic_bbref_match +5793,Manny Pina,6,pinama01,1558,Manny Pina,pinama01,automatic_bbref_match +5794,Lewin Diaz,6,diazle01,506,Lewin Diaz,diazle01,automatic_bbref_match +5795,CJ Cron,6,croncj01,441,CJ Cron,croncj01,automatic_bbref_match +5796,Evan Longoria,6,longoev01,1140,Evan Longoria,longoev01,automatic_bbref_match +5797,Jonathan India,6,indiajo01,953,Jonathan India,indiajo01,automatic_bbref_match +5798,Jose Siri,6,sirijo01,1830,Jose Siri,sirijo01,automatic_bbref_match +5799,Yuli Gurriel,6,gourryu01,793,Yuli Gurriel,gourryu01,automatic_bbref_match +5800,Adolis Garcia,6,garciad02,690,Adolis Garcia,garciad02,automatic_bbref_match +5801,Jeimer Candelario,6,candeje01,315,Jeimer Candelario,candeje01,automatic_bbref_match +5803,Justin Turner,6,turneju01,2029,Justin Turner,turneju01,automatic_bbref_match +5804,Rafael Ortega,6,ortegra01,1465,Rafael Ortega,ortegra01,automatic_bbref_match +5805,Kyle Isbel,6,isbelky01,956,Kyle Isbel,isbelky01,automatic_bbref_match +5806,Manuel Margot,6,margoma01,1198,Manuel Margot,margoma01,automatic_bbref_match +5807,Sean Murphy,6,murphse01,1390,Sean Murphy,murphse01,automatic_bbref_match +5808,Jake Fraley,6,fraleja01,641,Jake Fraley,fraleja01,automatic_bbref_match +5809,Elias Diaz,6,diazel01,502,Elias Diaz,diazel01,automatic_bbref_match +5810,Tyrone Taylor,6,tayloty01,1965,Tyrone Taylor,tayloty01,automatic_bbref_match +5811,Francisco Lindor,6,lindofr01,1124,Francisco Lindor,lindofr01,automatic_bbref_match +5812,Mike Brosseau,6,brossmi01,263,Mike Brosseau,brossmi01,automatic_bbref_match +5813,Josh Donaldson,6,donaljo02,526,Josh Donaldson,donaljo02,automatic_bbref_match +5814,Carson Kelly,6,kellyca02,1023,Carson Kelly,kellyca02,automatic_bbref_match +5815,Austin Hays,6,haysau01,839,Austin Hays,haysau01,automatic_bbref_match +5816,Patrick Wisdom,6,wisdopa01,2181,Patrick Wisdom,wisdopa01,automatic_bbref_match +5818,Lars Nootbaar,6,nootbla01,1436,Lars Nootbaar,nootbla01,automatic_bbref_match +5819,Kris Bryant,6,bryankr01,273,Kris Bryant,bryankr01,automatic_bbref_match +5820,Avisail Garcia,6,garciav01,678,Avisail Garcia,garciav01,automatic_bbref_match +5821,Matt Chapman,6,chapmma01,367,Matt Chapman,chapmma01,automatic_bbref_match +5822,Max Stassi,6,stassma01,1896,Max Stassi,stassma01,automatic_bbref_match +5823,Jason Castro,6,castrja01,347,Jason Castro,castrja01,automatic_bbref_match +5824,Nick Madrigal,6,madrini01,1178,Nick Madrigal,madrini01,automatic_bbref_match +5825,Adam Duvall,6,duvalad01,553,Adam Duvall,duvalad01,automatic_bbref_match +5826,Jesse Winker,6,winkeje01,2177,Jesse Winker,winkeje01,automatic_bbref_match +5827,JP Crawford,6,crawfjp01,432,JP Crawford,crawfjp01,automatic_bbref_match +5828,Nicholas Castellanos,6,casteni01,340,Nicholas Castellanos,casteni01,automatic_bbref_match +5829,Josh Bell,6,belljo02,168,Josh Bell,belljo02,automatic_bbref_match +5830,Isiah Kiner Falefa,6,kineris01,1044,Isiah Kiner Falefa,kineris01,automatic_bbref_match +5831,Luis Urias,6,uriaslu01,2039,Luis Urias,uriaslu01,automatic_bbref_match +5832,Yonny Hernandez,6,hernayo02,878,Yonny Hernandez,hernayo02,automatic_bbref_match +5833,Daulton Varsho,6,varshda01,2058,Daulton Varsho,varshda01,automatic_bbref_match +5834,Tommy Edman,6,edmanto01,558,Tommy Edman,edmanto01,automatic_bbref_match +5835,Giancarlo Stanton,6,stantmi03,1893,Giancarlo Stanton,stantmi03,automatic_bbref_match +5836,Thairo Estrada,6,estrath01,587,Thairo Estrada,estrath01,automatic_bbref_match +5837,Rafael Devers,6,deverra01,499,Rafael Devers,deverra01,automatic_bbref_match +5838,Alex Bregman,6,bregmal01,248,Alex Bregman,bregmal01,automatic_bbref_match +5839,Keibert Ruiz,6,ruizke01,1725,Keibert Ruiz,ruizke01,automatic_bbref_match +5840,Jesus Sanchez,6,sanchje02,1749,Jesus Sanchez,sanchje02,automatic_bbref_match +5841,Dylan Carlson,6,carlsdy01,327,Dylan Carlson,carlsdy01,automatic_bbref_match +5883,Cam Gallagher,6,gallaca01,670,Cam Gallagher,gallaca01,automatic_bbref_match +5842,Yordan Alvarez,6,alvaryo01,61,Yordan Alvarez,alvaryo01,automatic_bbref_match +5843,Aledmys Diaz,6,diazal02,505,Aledmys Diaz,diazal02,automatic_bbref_match +5844,Myles Straw,6,strawmy01,1924,Myles Straw,strawmy01,automatic_bbref_match +5845,Eric Haase,6,haaseer01,801,Eric Haase,haaseer01,automatic_bbref_match +5846,Whit Merrifield,6,merriwh01,1309,Whit Merrifield,merriwh01,automatic_bbref_match +5847,Lourdes Gurriel Jr,6,gurrilo01,794,Lourdes Gurriel Jr,gurrilo01,automatic_bbref_match +5848,Matt Duffy,6,duffyma01,542,Matt Duffy,duffyma01,automatic_bbref_match +5849,Ozzie Albies,6,albieoz01,31,Ozzie Albies,albieoz01,automatic_bbref_match +5850,Jazz Chisholm,6,chishja01,375,Jazz Chisholm,chishja01,automatic_bbref_match +5851,Michael Brantley,6,brantmi02,240,Michael Brantley,brantmi02,automatic_bbref_match +5852,Brian Anderson,6,anderbr06,69,Brian Anderson,anderbr06,automatic_bbref_match +5853,Miguel Rojas,6,rojasmi02,1694,Miguel Rojas,rojasmi02,automatic_bbref_match +5854,Ketel Marte,6,marteke01,1210,Ketel Marte,marteke01,automatic_bbref_match +5855,Jared Walsh,6,walshja01,2111,Jared Walsh,walshja01,automatic_bbref_match +5856,Alejandro Kirk,6,kirkal01,1056,Alejandro Kirk,kirkal01,automatic_bbref_match +5857,JD Martinez,6,martijd02,1229,JD Martinez,martijd02,automatic_bbref_match +5858,Michael A Taylor,6,taylomi02,1963,Michael Taylor,taylomi02,automatic_bbref_match +5859,Tyler Stephenson,6,stephty01,1905,Tyler Stephenson,stephty01,automatic_bbref_match +5860,Tres Barrera,6,barretr01,137,Tres Barrera,barretr01,automatic_bbref_match +5861,Mike Yastrzemski,6,yastrmi01,2210,Mike Yastrzemski,yastrmi01,automatic_bbref_match +5862,Austin Nola,6,nolaau01,1432,Austin Nola,nolaau01,automatic_bbref_match +5863,Bryan De La Cruz,6,delacbr01,479,Bryan De La Cruz,delacbr01,automatic_bbref_match +5864,Austin Slater,6,slateau01,1838,Austin Slater,slateau01,automatic_bbref_match +5865,Alcides Escobar,6,escobal02,580,Alcides Escobar,escobal02,automatic_bbref_match +5866,Seth Brown,6,brownse01,265,Seth Brown,brownse01,automatic_bbref_match +5867,Jose Abreu,6,abreujo02,7,Jose Abreu,abreujo02,automatic_bbref_match +5868,Akil Baddoo,6,baddoak01,109,Akil Baddoo,baddoak01,automatic_bbref_match +5869,Rhys Hoskins,6,hoskirh01,925,Rhys Hoskins,hoskirh01,automatic_bbref_match +5870,Mitch Haniger,6,hanigmi01,818,Mitch Haniger,hanigmi01,automatic_bbref_match +5871,Andrew Benintendi,6,beninan01,177,Andrew Benintendi,beninan01,automatic_bbref_match +5872,Chris Taylor,6,tayloch03,1964,Chris Taylor,tayloch03,automatic_bbref_match +5873,Leury Garcia,6,garcile02,679,Leury Garcia,garcile02,automatic_bbref_match +5874,Ryan Zimmerman,6,zimmery01,2229,Ryan Zimmerman,zimmery01,automatic_bbref_match +5875,Garrett Cooper,6,coopega03,415,Garrett Cooper,coopega03,automatic_bbref_match +5876,Robbie Grossman,6,grossro01,779,Robbie Grossman,grossro01,automatic_bbref_match +5877,Nelson Cruz,6,cruzne02,447,Nelson Cruz,cruzne02,automatic_bbref_match +5878,Max Kepler,6,keplema01,1031,Max Kepler,keplema01,automatic_bbref_match +5879,Abraham Toro,6,toroab01,2001,Abraham Toro,toroab01,automatic_bbref_match +5880,Gavin Lux,6,luxga01,1169,Gavin Lux,luxga01,automatic_bbref_match +5884,Eduardo Escobar,6,escobed01,581,Eduardo Escobar,escobed01,automatic_bbref_match +5885,Mark Canha,6,canhama01,316,Mark Canha,canhama01,automatic_bbref_match +5886,Paul DeJong,6,dejonpa01,485,Paul DeJong,dejonpa01,automatic_bbref_match +5887,Matt Vierling,6,vierlma01,2077,Matt Vierling,vierlma01,automatic_bbref_match +5888,Wilmer Flores,6,florewi01,627,Wilmer Flores,florewi01,automatic_bbref_match +5889,Lane Thomas,6,thomala02,1978,Lane Thomas,thomala02,automatic_bbref_match +5890,Yadier Molina,6,molinya01,1344,Yadier Molina,molinya01,automatic_bbref_match +5891,JD Davis,6,davisjd01,474,JD Davis,davisjd01,automatic_bbref_match +5892,Andres Gimenez,6,gimenan01,721,Andres Gimenez,gimenan01,automatic_bbref_match +5893,Josh Harrison,6,harrijo05,829,Josh Harrison,harrijo05,automatic_bbref_match +5894,Oscar Mercado,6,mercaos01,1306,Oscar Mercado,mercaos01,automatic_bbref_match +5895,Nathaniel Lowe,6,lowena01,1155,Nathaniel Lowe,lowena01,automatic_bbref_match +5896,Charlie Culberson,6,culbech01,453,Charlie Culberson,culbech01,automatic_bbref_match +5897,Odubel Herrera,6,herreod01,882,Odubel Herrera,herreod01,automatic_bbref_match +5898,Alex Verdugo,6,verdual01,2069,Alex Verdugo,verdual01,automatic_bbref_match +5899,Bradley Zimmer,6,zimmebr01,2227,Bradley Zimmer,zimmebr01,automatic_bbref_match +5900,Franmil Reyes,6,reyesfr01,1634,Franmil Reyes,reyesfr01,automatic_bbref_match +5901,Kyle Lewis,6,lewisky01,1118,Kyle Lewis,lewisky01,automatic_bbref_match +5902,Brendan Rodgers,6,rodgebr02,1668,Brendan Rodgers,rodgebr02,automatic_bbref_match +5903,Jonathan Villar,6,villajo01,2079,Jonathan Villar,villajo01,automatic_bbref_match +5904,Austin Meadows,6,meadoau01,1290,Austin Meadows,meadoau01,automatic_bbref_match +5905,Omar Narvaez,6,narvaom01,1401,Omar Narvaez,narvaom01,automatic_bbref_match +5906,Andrelton Simmons,6,simmoan01,1825,Andrelton Simmons,simmoan01,automatic_bbref_match +5907,Jeff McNeil,6,mcneije01,1287,Jeff McNeil,mcneije01,automatic_bbref_match +5908,Amed Rosario,6,rosaram01,1711,Amed Rosario,rosaram01,automatic_bbref_match +5909,Donovan Solano,6,solando01,1868,Donovan Solano,solando01,automatic_bbref_match +5910,Starlin Castro,6,castrst01,348,Starlin Castro,castrst01,automatic_bbref_match +5911,LaMonte Wade Jr,6,wadela01,2095,LaMonte Wade Jr,wadela01,automatic_bbref_match +5912,Jordan Luplow,6,luplojo01,1168,Jordan Luplow,luplojo01,automatic_bbref_match +5913,Freddy Galvis,6,galvifr01,675,Freddy Galvis,galvifr01,automatic_bbref_match +5914,Emmanuel Rivera,6,riverem01,1657,Emmanuel Rivera,riverem01,automatic_bbref_match +5915,Eloy Jimenez,6,jimenel02,980,Eloy Jimenez,jimenel02,automatic_bbref_match +5916,Curt Casali,6,casalcu01,334,Curt Casali,casalcu01,automatic_bbref_match +5917,Ian Happ,6,happia01,820,Ian Happ,happia01,automatic_bbref_match +5918,Jonathan Schoop,6,schoojo01,1779,Jonathan Schoop,schoojo01,automatic_bbref_match +5919,Billy Hamilton,6,hamilbi02,810,Billy Hamilton,hamilbi02,automatic_bbref_match +5920,Yandy Diaz,6,diazya01,507,Yandy Diaz,diazya01,automatic_bbref_match +5921,Kyle Seager,6,seageky01,1793,Kyle Seager,seageky01,automatic_bbref_match +5922,Adalberto Mondesi,6,mondera02,1349,Adalberto Mondesi,mondera02,automatic_bbref_match +5923,Anthony Rizzo,6,rizzoan01,1658,Anthony Rizzo,rizzoan01,automatic_bbref_match +5924,Ji Man Choi,6,choiji01,377,Ji Man Choi,choiji01,automatic_bbref_match +5927,Jesus Aguilar,6,aguilje01,25,Jesus Aguilar,aguilje01,automatic_bbref_match +5928,David Fletcher,6,fletcda02,624,David Fletcher,fletcda02,automatic_bbref_match +5929,Anthony Alford,6,alforan01,41,Anthony Alford,alforan01,automatic_bbref_match +5930,Luis Torrens,6,torrelu01,2002,Luis Torrens,torrelu01,automatic_bbref_match +5931,Eddie Rosario,6,rosared01,1710,Eddie Rosario,rosared01,automatic_bbref_match +5932,Alex Kirilloff,6,kirilal01,1055,Alex Kirilloff,kirilal01,automatic_bbref_match +5933,Webster Rivas,6,rivaswe01,1652,Webster Rivas,rivaswe01,automatic_bbref_match +5934,Luis Guillorme,6,guilllu01,792,Luis Guillorme,guilllu01,automatic_bbref_match +5935,Taylor Ward,6,wardta01,2116,Taylor Ward,wardta01,automatic_bbref_match +5936,Travis Jankowski,6,jankotr01,967,Travis Jankowski,jankotr01,automatic_bbref_match +5937,Sam Hilliard,6,hillisa01,903,Sam Hilliard,hillisa01,automatic_bbref_match +5938,Christian Yelich,6,yelicch01,2212,Christian Yelich,yelicch01,automatic_bbref_match +5939,Tommy Pham,6,phamth01,1552,Tommy Pham,phamth01,automatic_bbref_match +5940,Andrew McCutchen,6,mccutan01,1272,Andrew McCutchen,mccutan01,automatic_bbref_match +5941,Dylan Moore,6,mooredy01,1358,Dylan Moore,mooredy01,automatic_bbref_match +5942,Jace Peterson,6,peterja01,1547,Jace Peterson,peterja01,automatic_bbref_match +5943,Brandon Drury,6,drurybr01,535,Brandon Drury,drurybr01,automatic_bbref_match +5944,Kyle Farmer,6,farmeky01,598,Kyle Farmer,farmeky01,automatic_bbref_match +5945,DJ LeMahieu,6,lemahdj01,1114,DJ LeMahieu,lemahdj01,automatic_bbref_match +5946,Brett Gardner,6,gardnbr01,695,Brett Gardner,gardnbr01,automatic_bbref_match +5947,Jo Adell,6,adelljo01,20,Jo Adell,adelljo01,automatic_bbref_match +5948,Pedro Severino,6,severpe01,1804,Pedro Severino,severpe01,automatic_bbref_match +5949,Mauricio Dubon,6,dubonma01,538,Mauricio Dubon,dubonma01,automatic_bbref_match +5950,Tyler Wade,6,wadety01,2094,Tyler Wade,wadety01,automatic_bbref_match +5951,David Peralta,6,peralda01,1522,David Peralta,peralda01,automatic_bbref_match +5952,Ryan Jeffers,6,jeffery01,975,Ryan Jeffers,jeffery01,automatic_bbref_match +5953,Christian Vazquez,6,vazquch01,2063,Christian Vazquez,vazquch01,automatic_bbref_match +5954,Trevor Larnach,6,larnatr01,1094,Trevor Larnach,larnatr01,automatic_bbref_match +5955,Sergio Alcantara,6,alcanse01,34,Sergio Alcantara,alcanse01,automatic_bbref_match +5956,Nick Solak,6,solakni01,1867,Nick Solak,solakni01,automatic_bbref_match +5957,Yermin Mercedes,6,merceye01,1307,Yermin Mercedes,merceye01,automatic_bbref_match +5958,Jorge Mateo,6,mateojo01,1233,Jorge Mateo,mateojo01,automatic_bbref_match +5959,Kyle Higashioka,6,higasky01,895,Kyle Higashioka,higasky01,automatic_bbref_match +5960,Raimel Tapia,6,tapiara01,1957,Raimel Tapia,tapiara01,automatic_bbref_match +5961,Miguel Sano,6,sanomi01,1757,Miguel Sano,sanomi01,automatic_bbref_match +5962,Tomas Nido,6,nidoto01,1424,Tomas Nido,nidoto01,automatic_bbref_match +5963,Jon Berti,6,bertijo01,183,Jon Berti,bertijo01,automatic_bbref_match +5964,Robinson Chirinos,6,chiriro01,373,Robinson Chirinos,chiriro01,automatic_bbref_match +5965,Eric Hosmer,6,hosmeer01,926,Eric Hosmer,hosmeer01,automatic_bbref_match +5966,Austin Barnes,6,barneau01,132,Austin Barnes,barneau01,automatic_bbref_match +5967,Tyler Naquin,6,naquity01,1399,Tyler Naquin,naquity01,automatic_bbref_match +5968,Charlie Blackmon,6,blackch02,205,Charlie Blackmon,blackch02,automatic_bbref_match +5969,Michael Conforto,6,confomi01,407,Michael Conforto,confomi01,automatic_bbref_match +5972,Hanser Alberto,6,alberha01,30,Hanser Alberto,alberha01,automatic_bbref_match +5973,Jordy Mercer,6,mercejo03,1308,Jordy Mercer,mercejo03,automatic_bbref_match +5974,Ryan Mountcastle,6,mountry01,1377,Ryan Mountcastle,mountry01,automatic_bbref_match +5975,Gleyber Torres,6,torregl01,2003,Gleyber Torres,torregl01,automatic_bbref_match +5976,Nick Maton,6,matonni01,1239,Nick Maton,matonni01,automatic_bbref_match +5977,Nick Ahmed,6,ahmedni01,26,Nick Ahmed,ahmedni01,automatic_bbref_match +5978,Josh Rojas,6,rojasjo01,1695,Josh Rojas,rojasjo01,automatic_bbref_match +5979,Randal Grichuk,6,grichra01,775,Randal Grichuk,grichra01,automatic_bbref_match +5980,Garrett Hampson,6,hampsga01,814,Garrett Hampson,hampsga01,automatic_bbref_match +5981,Kevin Pillar,6,pillake01,1557,Kevin Pillar,pillake01,automatic_bbref_match +5982,Ehire Adrianza,6,adriaeh01,22,Ehire Adrianza,adriaeh01,automatic_bbref_match +5983,Gio Urshela,6,urshegi01,2042,Gio Urshela,urshegi01,automatic_bbref_match +5984,Reese McGuire,6,mcguire01,1277,Reese McGuire,mcguire01,automatic_bbref_match +5985,Cavan Biggio,6,biggica01,196,Cavan Biggio,biggica01,automatic_bbref_match +5986,Jarrod Dyson,6,dysonja01,555,Jarrod Dyson,dysonja01,automatic_bbref_match +5987,Eddy Alvarez,6,alvared01,60,Eddy Alvarez,alvared01,automatic_bbref_match +5988,Trey Mancini,6,mancitr01,1190,Trey Mancini,mancitr01,automatic_bbref_match +5989,Luke Voit,6,voitlu01,2087,Luke Voit,voitlu01,automatic_bbref_match +5990,Luis V Garcia,6,garcilu04,694,Luis Garcia Jr,garcilu04,automatic_bbref_match +5991,Tommy La Stella,6,lasteto01,1082,Tommy La Stella,lasteto01,automatic_bbref_match +5992,Yonathan Daza,6,dazayo01,476,Yonathan Daza,dazayo01,automatic_bbref_match +5993,Yu Chang,6,changyu01,364,Yu Chang,changyu01,automatic_bbref_match +5994,Josh Naylor,6,naylojo01,1404,Josh Naylor,naylojo01,automatic_bbref_match +5995,Asdrubal Cabrera,6,cabreas01,299,Asdrubal Cabrera,cabreas01,automatic_bbref_match +5996,Kevin Plawecki,6,plaweke01,1565,Kevin Plawecki,plaweke01,automatic_bbref_match +5997,Jason Heyward,6,heywaja01,891,Jason Heyward,heywaja01,automatic_bbref_match +5998,Jose Rondon,6,rondojo02,1707,Jose Rondon,rondojo02,automatic_bbref_match +5999,Christian Walker,6,walkech02,2104,Christian Walker,walkech02,automatic_bbref_match +6000,Elvis Andrus,6,andruel01,77,Elvis Andrus,andruel01,automatic_bbref_match +6001,Gavin Sheets,6,sheetga01,1811,Gavin Sheets,sheetga01,automatic_bbref_match +6002,Bobby Bradley,6,bradlbo01,237,Bobby Bradley,bradlbo01,automatic_bbref_match +6003,Joshua Fuentes,6,fuentjo01,664,Joshua Fuentes,fuentjo01,automatic_bbref_match +6004,Brad Miller,6,millebr02,1322,Brad Miller,millebr02,automatic_bbref_match +6005,Jake Marisnick,6,marisja01,1200,Jake Marisnick,marisja01,automatic_bbref_match +6006,Kyle Garlick,6,garliky01,696,Kyle Garlick,garliky01,automatic_bbref_match +6007,Taylor Jones,6,jonesta01,992,Taylor Jones,jonesta01,automatic_bbref_match +6008,Luke Williams,6,willilu01,2159,Luke Williams,willilu01,automatic_bbref_match +6009,Kevin Newman,6,newmake01,1420,Kevin Newman,newmake01,automatic_bbref_match +6010,Nick Gordon,6,gordoni01,752,Nick Gordon,gordoni01,automatic_bbref_match +6011,Ronald Torreyes,6,torrero01,2004,Ronald Torreyes,torrero01,automatic_bbref_match +6012,Travis dArnaud,6,darnatr01,461,Travis dArnaud,darnatr01,automatic_bbref_match +6013,Guillermo Heredia,6,heredgu01,862,Guillermo Heredia,heredgu01,automatic_bbref_match +6014,Chad Pinder,6,pindech01,1559,Chad Pinder,pindech01,automatic_bbref_match +6015,Corey Dickerson,6,dickeco01,513,Corey Dickerson,dickeco01,automatic_bbref_match +6016,Rougned Odor,6,odorro01,1451,Rougned Odor,odorro01,automatic_bbref_match +6019,Jack Mayfield,6,mayfija01,1252,Jack Mayfield,mayfija01,automatic_bbref_match +6020,Cesar Hernandez,6,hernace02,870,Cesar Hernandez,hernace02,automatic_bbref_match +6021,Tucker Barnhart,6,barnhtu01,135,Tucker Barnhart,barnhtu01,automatic_bbref_match +6022,Victor Reyes,6,reyesvi01,1638,Victor Reyes,reyesvi01,automatic_bbref_match +6023,Anthony Santander,6,santaan02,1764,Anthony Santander,santaan02,automatic_bbref_match +6024,Magneuris Sierra,6,sierrma01,1823,Magneuris Sierra,sierrma01,automatic_bbref_match +6025,Andrew Stevenson,6,stevean01,1906,Andrew Stevenson,stevean01,automatic_bbref_match +6026,Bobby Dalbec,6,dalbebo01,458,Bobby Dalbec,dalbebo01,automatic_bbref_match +6027,Andrew Vaughn,6,vaughan01,2061,Andrew Vaughn,vaughan01,automatic_bbref_match +6028,Matt Beaty,6,beatyma01,157,Matt Beaty,beatyma01,automatic_bbref_match +6029,Brock Holt,6,holtbr01,921,Brock Holt,holtbr01,automatic_bbref_match +6030,Yadiel Hernandez,6,hernaya01,875,Yadiel Hernandez,hernaya01,automatic_bbref_match +6031,Jose Trevino,6,trevijo01,2013,Jose Trevino,trevijo01,automatic_bbref_match +6032,Billy McKinney,6,mckinbi01,1283,Billy McKinney,mckinbi01,automatic_bbref_match +6033,Harold Ramirez,6,ramirha02,1609,Harold Ramirez,ramirha02,automatic_bbref_match +6034,Jed Lowrie,6,lowrije01,1158,Jed Lowrie,lowrije01,automatic_bbref_match +6035,Andy Young,6,youngan02,2220,Andy Young,youngan02,automatic_bbref_match +6036,Derek Hill,6,hillde01,899,Derek Hill,hillde01,automatic_bbref_match +6037,Albert Pujols,6,pujolal01,1591,Albert Pujols,pujolal01,automatic_bbref_match +6038,Austin Romine,6,rominau01,1704,Austin Romine,rominau01,automatic_bbref_match +6039,Nick Senzel,6,senzeni01,1802,Nick Senzel,senzeni01,automatic_bbref_match +6040,Willi Castro,6,castrwi01,352,Willi Castro,castrwi01,automatic_bbref_match +6041,Juan Lagares,6,lagarju01,1083,Juan Lagares,lagarju01,automatic_bbref_match +6042,Jorge Alfaro,6,alfarjo01,40,Jorge Alfaro,alfarjo01,automatic_bbref_match +6043,Ben Gamel,6,gamelbe01,676,Ben Gamel,gamelbe01,automatic_bbref_match +6044,Rob Refsnyder,6,refsnro01,1626,Rob Refsnyder,refsnro01,automatic_bbref_match +6045,Khris Davis,6,daviskh01,469,Khris Davis,daviskh01,automatic_bbref_match +6046,Rodolfo Castro,6,castrro01,353,Rodolfo Castro,castrro01,automatic_bbref_match +6047,Jose Iglesias,6,iglesjo01,949,Jose Iglesias,iglesjo01,automatic_bbref_match +6048,Yoshi Tsutsugo,6,tsutsyo01,2021,Yoshi Tsutsugo,tsutsyo01,automatic_bbref_match +6049,Cristian Pache,6,pachecr01,1482,Cristian Pache,pachecr01,automatic_bbref_match +6050,Yohel Pozo,6,pozoyo01,1581,Yohel Pozo,pozoyo01,automatic_bbref_match +6051,Jorge Soler,6,solerjo01,1870,Jorge Soler,solerjo01,automatic_bbref_match +6052,Victor Caratini,6,caratvi01,325,Victor Caratini,caratvi01,automatic_bbref_match +6053,Willie Calhoun,6,calhowi01,307,Willie Calhoun,calhowi01,automatic_bbref_match +6054,Lewis Brinson,6,brinsle01,258,Lewis Brinson,brinsle01,automatic_bbref_match +6055,Marwin Gonzalez,6,gonzama01,741,Marwin Gonzalez,gonzama01,automatic_bbref_match +6056,Breyvic Valera,6,valerbr01,2051,Breyvic Valera,valerbr01,automatic_bbref_match +6057,Erik Gonzalez,6,gonzaer01,742,Erik Gonzalez,gonzaer01,automatic_bbref_match +6058,Michael Chavis,6,chavimi01,371,Michael Chavis,chavimi01,automatic_bbref_match +6059,Cal Raleigh,6,raleica01,1600,Cal Raleigh,raleica01,automatic_bbref_match +6060,Alec Bohm,6,bohmal01,217,Alec Bohm,bohmal01,automatic_bbref_match +6061,Maikel Franco,6,francma02,645,Maikel Franco,francma02,automatic_bbref_match +6062,Phil Gosselin,6,gosseph01,757,Phil Gosselin,gosseph01,automatic_bbref_match +6063,Kelvin Gutierrez,6,gutieke01,796,Kelvin Gutierrez,gutieke01,automatic_bbref_match +6064,Dominic Smith,6,smithdo02,1849,Dominic Smith,smithdo02,automatic_bbref_match +6065,Rene Rivera,6,riverre01,1655,Rene Rivera,riverre01,automatic_bbref_match +6066,Jonah Heim,6,heimjo01,849,Jonah Heim,heimjo01,automatic_bbref_match +6067,Willians Astudillo,6,astudwi01,101,Willians Astudillo,astudwi01,automatic_bbref_match +6068,John Nogowski,6,nogowjo01,1431,John Nogowski,nogowjo01,automatic_bbref_match +6069,Stephen Piscotty,6,piscost01,1563,Stephen Piscotty,piscost01,automatic_bbref_match +6070,Joc Pederson,6,pederjo01,1514,Joc Pederson,pederjo01,automatic_bbref_match +6071,Edward Olivares,6,olivaed02,1458,Edward Olivares,olivaed02,automatic_bbref_match +6072,Rowdy Tellez,6,tellero01,1972,Rowdy Tellez,tellero01,automatic_bbref_match +6073,James McCann,6,mccanja02,1261,James McCann,mccanja02,automatic_bbref_match +6074,Josh Reddick,6,reddijo01,1623,Josh Reddick,reddijo01,automatic_bbref_match +6075,Kurt Suzuki,6,suzukku01,1945,Kurt Suzuki,suzukku01,automatic_bbref_match +6076,Leody Taveras,6,taverle01,1962,Leody Taveras,taverle01,automatic_bbref_match +6077,Zach McKinstry,6,mckinza01,1284,Zach McKinstry,mckinza01,automatic_bbref_match +6078,Richie Martin,6,martiri01,1216,Richie Martin,martiri01,automatic_bbref_match +6079,Orlando Arcia,6,arciaor01,86,Orlando Arcia,arciaor01,automatic_bbref_match +6080,Ernie Clement,6,clemeer01,391,Ernie Clement,clemeer01,automatic_bbref_match +6081,Jose Peraza,6,perazjo01,1527,Jose Peraza,perazjo01,automatic_bbref_match +6082,Aaron Hicks,6,hicksaa01,892,Aaron Hicks,hicksaa01,automatic_bbref_match +6083,Justin Upton,6,uptonju01,2034,Justin Upton,uptonju01,automatic_bbref_match +6085,Luis Rengifo,6,rengilu01,1632,Luis Rengifo,rengilu01,automatic_bbref_match +6086,Pavin Smith,6,smithpa04,1851,Pavin Smith,smithpa04,automatic_bbref_match +6087,Phillip Evans,6,evansph01,589,Phillip Evans,evansph01,automatic_bbref_match +6088,Jose Rojas,6,rojasjo02,1696,Jose Rojas,rojasjo02,automatic_bbref_match +6089,Carlos Santana,6,santaca01,1759,Carlos Santana,santaca01,automatic_bbref_match +6090,Niko Goodrum,6,goodrni01,748,Niko Goodrum,goodrni01,automatic_bbref_match +6091,Roberto Perez,6,perezro02,1538,Roberto Perez,perezro02,automatic_bbref_match +6092,Wilmer Difo,6,difowi01,516,Wilmer Difo,difowi01,automatic_bbref_match +6093,Jarren Duran,6,duranja01,552,Jarren Duran,duranja01,automatic_bbref_match +6094,Austin Wynns,6,wynnsau01,2202,Austin Wynns,wynnsau01,automatic_bbref_match +6095,David Bote,6,boteda01,224,David Bote,boteda01,automatic_bbref_match +6096,Brent Rooker,6,rookebr01,1708,Brent Rooker,rookebr01,automatic_bbref_match +6097,Pat Valaika,6,valaipa01,2044,Pat Valaika,valaipa01,automatic_bbref_match +6098,Sheldon Neuse,6,neusesh01,1415,Sheldon Neuse,neusesh01,automatic_bbref_match +6099,Josh VanMeter,6,vanmejo01,2052,Josh VanMeter,vanmejo01,automatic_bbref_match +6100,Shed Long,6,longsh01,1138,Shed Long,longsh01,automatic_bbref_match +6101,Aristides Aquino,6,aquinar01,81,Aristides Aquino,aquinar01,automatic_bbref_match +6102,Miguel Andujar,6,andujmi01,78,Miguel Andujar,andujmi01,automatic_bbref_match +6103,Jake Bauers,6,bauerja01,151,Jake Bauers,bauerja01,automatic_bbref_match +6104,Miguel Cabrera,6,cabremi01,298,Miguel Cabrera,cabremi01,automatic_bbref_match +6105,Danny Mendick,6,mendida01,1302,Danny Mendick,mendida01,automatic_bbref_match +6106,Jarred Kelenic,6,kelenja01,1015,Jarred Kelenic,kelenja01,automatic_bbref_match +6107,Martin Maldonado,6,maldoma01,1187,Martin Maldonado,maldoma01,automatic_bbref_match +6109,Ryan McKenna,6,mckenry01,1281,Ryan McKenna,mckenry01,automatic_bbref_match +6110,Hoy Park,6,parkho01,1498,Hoy Park,parkho01,automatic_bbref_match +6111,Jake Lamb,6,lambja01,1087,Jake Lamb,lambja01,automatic_bbref_match +6112,Will Craig,6,craigwi01,429,Will Craig,craigwi01,automatic_bbref_match +6113,Isaac Paredes,6,paredis01,1497,Isaac Paredes,paredis01,automatic_bbref_match +6114,Aramis Garcia,6,garciar01,683,Aramis Garcia,garciar01,automatic_bbref_match +6115,Ender Inciarte,6,inciaen01,952,Ender Inciarte,inciaen01,automatic_bbref_match +6116,Donovan Walton,6,waltodo01,2113,Donovan Walton,waltodo01,automatic_bbref_match +6117,Harold Castro,6,castrha01,349,Harold Castro,castrha01,automatic_bbref_match +6118,William Contreras,6,contrwi02,411,William Contreras,contrwi02,automatic_bbref_match +6119,Owen Miller,6,milleow01,1327,Owen Miller,milleow01,automatic_bbref_match +6120,Zack Collins,6,colliza01,403,Zack Collins,colliza01,automatic_bbref_match +6121,Eugenio Suarez,6,suareeu01,1934,Eugenio Suarez,suareeu01,automatic_bbref_match +6122,Patrick Mazeika,6,mazeipa01,1255,Patrick Mazeika,mazeipa01,automatic_bbref_match +6123,Andrew Velazquez,6,velazan01,2067,Andrew Velazquez,velazan01,automatic_bbref_match +6124,Eric Sogard,6,sogarer01,1865,Eric Sogard,sogarer01,automatic_bbref_match +6125,Wilson Ramos,6,ramoswi01,1612,Wilson Ramos,ramoswi01,automatic_bbref_match +6126,Anthony Rendon,6,rendoan01,1630,Anthony Rendon,rendoan01,automatic_bbref_match +6127,Stephen Vogt,6,vogtst01,2086,Stephen Vogt,vogtst01,automatic_bbref_match +6128,Marcell Ozuna,6,ozunama01,1481,Marcell Ozuna,ozunama01,automatic_bbref_match +6129,Hunter Dozier,6,doziehu01,533,Hunter Dozier,doziehu01,automatic_bbref_match +6130,Abraham Almonte,6,almonab01,49,Abraham Almonte,almonab01,automatic_bbref_match +6131,Austin Hedges,6,hedgeau01,848,Austin Hedges,hedgeau01,automatic_bbref_match +6132,Carter Kieboom,6,kieboca01,1038,Carter Kieboom,kieboca01,automatic_bbref_match +6133,Shogo Akiyama,6,akiyash01,28,Shogo Akiyama,akiyash01,automatic_bbref_match +6134,Jonathan Arauz,6,arauzjo01,84,Jonathan Arauz,arauzjo01,automatic_bbref_match +6135,Grayson Greiner,6,greingr01,773,Grayson Greiner,greingr01,automatic_bbref_match +6136,Didi Gregorius,6,gregodi01,772,Didi Gregorius,gregodi01,automatic_bbref_match +6137,Keston Hiura,6,hiurake01,905,Keston Hiura,hiurake01,automatic_bbref_match +6138,Chad Wallach,6,wallach01,2108,Chad Wallach,wallach01,automatic_bbref_match +6139,Adam Eaton,6,eatonad02,556,Adam Eaton,eatonad02,automatic_bbref_match +6140,Mitch Moreland,6,morelmi01,1365,Mitch Moreland,morelmi01,automatic_bbref_match +6141,Kole Calhoun,6,calhoko01,306,Kole Calhoun,calhoko01,automatic_bbref_match +6142,DJ Stewart,6,stewadj01,1909,DJ Stewart,stewadj01,automatic_bbref_match +6143,Clint Frazier,6,frazicl01,649,Clint Frazier,frazicl01,automatic_bbref_match +6144,Sandy Leon,6,leonsa01,1115,Sandy Leon,leonsa01,automatic_bbref_match +6145,Victor Robles,6,roblevi01,1666,Victor Robles,roblevi01,automatic_bbref_match +6146,Seby Zavala,6,zavalse01,2223,Seby Zavala,zavalse01,automatic_bbref_match +6147,Alex Blandino,6,blandal01,210,Alex Blandino,blandal01,automatic_bbref_match +6148,Colin Moran,6,moranco01,1360,Colin Moran,moranco01,automatic_bbref_match +6149,Jurickson Profar,6,profaju01,1587,Jurickson Profar,profaju01,automatic_bbref_match +6150,Gregory Polanco,6,polangr01,1569,Gregory Polanco,polangr01,automatic_bbref_match +6151,Isan Diaz,6,diazis01,508,Isan Diaz,diazis01,automatic_bbref_match +6152,Rio Ruiz,6,ruizri01,1723,Rio Ruiz,ruizri01,automatic_bbref_match +6153,Zack Short,6,shortza01,1818,Zack Short,shortza01,automatic_bbref_match +6154,Franchy Cordero,6,cordefr02,418,Franchy Cordero,cordefr02,automatic_bbref_match +6155,Tim Locastro,6,locasti01,1133,Tim Locastro,locasti01,automatic_bbref_match +6156,Jackie Bradley Jr,6,bradlja02,239,Jackie Bradley Jr,bradlja02,automatic_bbref_match +6157,Daniel Vogelbach,6,vogelda01,2085,Daniel Vogelbach,vogelda01,automatic_bbref_match +6158,Daniel Johnson,6,johnsda07,988,Daniel Johnson,johnsda07,automatic_bbref_match +6159,Jason Vosler,6,vosleja01,2090,Jason Vosler,vosleja01,automatic_bbref_match +6160,Danny Santana,6,santada01,1760,Danny Santana,santada01,automatic_bbref_match +6161,Alex Dickerson,6,dickeal01,512,Alex Dickerson,dickeal01,automatic_bbref_match +6162,Travis Shaw,6,shawtr01,1809,Travis Shaw,shawtr01,automatic_bbref_match +6163,Eli White,6,whiteel04,2140,Eli White,whiteel04,automatic_bbref_match +6164,Cody Bellinger,6,bellico01,170,Cody Bellinger,bellico01,automatic_bbref_match +6165,Dom Nunez,6,nunezdo01,1444,Dom Nunez,nunezdo01,automatic_bbref_match +6166,Michael Perez,6,perezmi03,1539,Michael Perez,perezmi03,automatic_bbref_match +6167,Daniel Robertson,6,roberda10,1663,Daniel Robertson,roberda10,automatic_bbref_match +6168,Sam Haggerty,6,haggesa01,803,Sam Haggerty,haggesa01,automatic_bbref_match +6170,Evan White,6,whiteev01,2142,Evan White,whiteev01,automatic_bbref_match +6171,Cole Tucker,6,tuckeco01,2022,Cole Tucker,tuckeco01,automatic_bbref_match +6172,Gerardo Parra,6,parrage01,1501,Gerardo Parra,parrage01,automatic_bbref_match +6173,David Dahl,6,dahlda01,457,David Dahl,dahlda01,automatic_bbref_match +6174,Ben Rortvedt,6,rortvbe01,1709,Ben Rortvedt,rortvbe01,automatic_bbref_match +6175,Kean Wong,6,wongke01,2190,Kean Wong,wongke01,automatic_bbref_match +6176,Kaai Tom,6,tomka01,1995,Kaai Tom,tomka01,automatic_bbref_match +6177,Pablo Sandoval,6,sandopa01,1753,Pablo Sandoval,sandopa01,automatic_bbref_match +6178,Jahmai Jones,6,jonesja08,993,Jahmai Jones,jonesja08,automatic_bbref_match +6179,Jonathan Davis,6,davisjo05,470,Jonathan Davis,davisjo05,automatic_bbref_match +6180,Ryan OHearn,6,ohearry01,1453,Ryan OHearn,ohearry01,automatic_bbref_match +6181,Mike Moustakas,6,moustmi01,1378,Mike Moustakas,moustmi01,automatic_bbref_match +6182,Taylor Trammell,6,trammta01,2008,Taylor Trammell,trammta01,automatic_bbref_match +6183,Kevan Smith,6,smithke04,1847,Kevan Smith,smithke04,automatic_bbref_match +6184,Andrew Romine,6,rominan01,1703,Andrew Romine,rominan01,automatic_bbref_match +6185,Mike Tauchman,6,tauchmi01,1961,Mike Tauchman,tauchmi01,automatic_bbref_match +6186,Brian Goodwin,6,goodwbr01,749,Brian Goodwin,goodwbr01,automatic_bbref_match +6187,Justin Williams,6,williju02,2162,Justin Williams,williju02,automatic_bbref_match +6188,Jake Cave,6,caveja01,354,Jake Cave,caveja01,automatic_bbref_match +6189,Robel Garcia,6,garciro02,682,Robel Garcia,garciro02,automatic_bbref_match +6190,Joe Panik,6,panikjo01,1493,Joe Panik,panikjo01,automatic_bbref_match +6191,JaCoby Jones,6,jonesja07,991,JaCoby Jones,jonesja07,automatic_bbref_match +6192,Max Schrock,6,schroma01,1781,Max Schrock,schroma01,automatic_bbref_match +6193,Jason Martin,6,martija03,1217,Jason Martin,martija03,automatic_bbref_match +6194,Luke Raley,6,raleylu01,1602,Luke Raley,raleylu01,automatic_bbref_match +6195,Ildemaro Vargas,6,vargail01,2054,Ildemaro Vargas,vargail01,automatic_bbref_match +6196,Nomar Mazara,6,mazarno01,1254,Nomar Mazara,mazarno01,automatic_bbref_match +6197,Matt Carpenter,6,carpema01,329,Matt Carpenter,carpema01,automatic_bbref_match +6198,Andrew Knizner,6,kniznan01,1065,Andrew Knizner,kniznan01,automatic_bbref_match +6199,Mike Ford,6,fordmi01,635,Mike Ford,fordmi01,automatic_bbref_match +6200,Jose Marmolejos,6,marmojo01,1203,Jose Marmolejos,marmojo01,automatic_bbref_match +6201,Stevie Wilkerson,6,wilkest01,2153,Stevie Wilkerson,wilkest01,automatic_bbref_match +6202,Alex Jackson,6,jacksal02,961,Alex Jackson,jacksal02,automatic_bbref_match +6204,Chance Sisco,6,siscoch01,1831,Chance Sisco,siscoch01,automatic_bbref_match +6206,Andrew Knapp,6,knappan01,1062,Andrew Knapp,knappan01,automatic_bbref_match +6207,Drew Ellis,6,ellisdr01,569,Drew Ellis,ellisdr01,automatic_bbref_match +6208,Byron Buxton,7,buxtoby01,295,Byron Buxton,buxtoby01,automatic_bbref_match +6209,Shohei Ohtani,7,ohtansh01,1455,Shohei Ohtani,ohtansh01,automatic_bbref_match +6210,Jacob deGrom,7,degroja01,484,Jacob deGrom,degroja01,automatic_bbref_match +6211,Ranger Suarez,7,suarera01,1936,Ranger Suarez,suarera01,automatic_bbref_match +6212,Zack Wheeler,7,wheelza01,2139,Zack Wheeler,wheelza01,automatic_bbref_match +6213,Mike Trout,7,troutmi01,2019,Mike Trout,troutmi01,automatic_bbref_match +6214,Luis Robert,7,roberlu01,1660,Luis Robert,roberlu01,automatic_bbref_match +6215,Fernando Tatis Jr,7,tatisfe02,1960,Fernando Tatis Jr,tatisfe02,automatic_bbref_match +6216,Tyler ONeill,7,oneilty01,1463,Tyler ONeill,oneilty01,automatic_bbref_match +6217,Adam Engel,7,engelad01,574,Adam Engel,engelad01,automatic_bbref_match +6218,Wander Franco,7,francwa01,646,Wander Franco,francwa01,automatic_bbref_match +6219,Carlos Correa,7,correca01,420,Carlos Correa,correca01,automatic_bbref_match +6220,Brandon Crawford,7,crawfbr01,430,Brandon Crawford,crawfbr01,automatic_bbref_match +6221,Juan Soto,7,sotoju01,1879,Juan Soto,sotoju01,automatic_bbref_match +6222,Robbie Ray,7,rayro02,1620,Robbie Ray,rayro02,automatic_bbref_match +6223,Wade Miley,7,mileywa01,1318,Wade Miley,mileywa01,automatic_bbref_match +6224,Jose Ramirez,7,ramirjo01,1608,Jose Ramirez,ramirjo01,automatic_bbref_match +6225,Chris Ellis,7,ellisch01,568,Chris Ellis,ellisch01,automatic_bbref_match +6226,Corbin Burnes,7,burneco01,286,Corbin Burnes,burneco01,automatic_bbref_match +6227,Max Scherzer,7,scherma01,1773,Max Scherzer,scherma01,automatic_bbref_match +6228,Santiago Espinal,7,espinsa01,582,Santiago Espinal,espinsa01,automatic_bbref_match +6229,Mike Zunino,7,zuninmi01,2234,Mike Zunino,zuninmi01,automatic_bbref_match +6230,Marcus Semien,7,semiema01,1799,Marcus Semien,semiema01,automatic_bbref_match +6231,Trea Turner,7,turnetr01,1,Trea Turner,turnetr01,automatic_bbref_match +6232,Kyle Tucker,7,tuckeky01,2023,Kyle Tucker,tuckeky01,automatic_bbref_match +6233,Ronald Acuna Jr,7,acunaro01,12,Ronald Acuna Jr,acunaro01,automatic_bbref_match +6234,Walker Buehler,7,buehlwa01,277,Walker Buehler,buehlwa01,automatic_bbref_match +6235,Bryce Harper,7,harpebr03,823,Bryce Harper,harpebr03,automatic_bbref_match +6236,Yasmani Grandal,7,grandya01,761,Yasmani Grandal,grandya01,automatic_bbref_match +6237,Brandon Woodruff,7,woodrbr01,2196,Brandon Woodruff,woodrbr01,automatic_bbref_match +6238,Vladimir Guerrero Jr,7,guerrvl02,789,Vladimir Guerrero Jr,guerrvl02,automatic_bbref_match +6239,Harrison Bader,7,baderha01,110,Harrison Bader,baderha01,automatic_bbref_match +6240,Carlos Rodon,7,rodonca01,1670,Carlos Rodon,rodonca01,automatic_bbref_match +6241,Gerrit Cole,7,colege01,398,Gerrit Cole,colege01,automatic_bbref_match +6242,Aaron Judge,7,judgeaa01,3,Aaron Judge,judgeaa01,automatic_bbref_match +6243,Brandon Nimmo,7,nimmobr01,1425,Brandon Nimmo,nimmobr01,automatic_bbref_match +6244,Josh Hader,7,haderjo01,802,Josh Hader,haderjo01,automatic_bbref_match +6245,Bryan Reynolds,7,reynobr01,1641,Bryan Reynolds,reynobr01,automatic_bbref_match +6246,Darin Ruf,7,rufda01,1722,Darin Ruf,rufda01,automatic_bbref_match +6247,Austin Riley,7,rileyau01,1649,Austin Riley,rileyau01,automatic_bbref_match +6248,Corey Seager,7,seageco01,1794,Corey Seager,seageco01,automatic_bbref_match +6249,Tejay Antone,7,antonte01,79,Tejay Antone,antonte01,automatic_bbref_match +6250,Paul Goldschmidt,7,goldspa01,729,Paul Goldschmidt,goldspa01,automatic_bbref_match +6251,Starling Marte,7,martest01,1208,Starling Marte,martest01,automatic_bbref_match +6252,Lance Lynn,7,lynnla01,1173,Lance Lynn,lynnla01,automatic_bbref_match +6253,Max Fried,7,friedma01,659,Max Fried,friedma01,automatic_bbref_match +6254,Tim Anderson,7,anderti01,73,Tim Anderson,anderti01,automatic_bbref_match +6255,Shane Bieber,7,biebesh01,194,Shane Bieber,biebesh01,automatic_bbref_match +6256,Matt Olson,7,olsonma02,1461,Matt Olson,olsonma02,automatic_bbref_match +6257,Mitch Garver,7,garvemi01,702,Mitch Garver,garvemi01,automatic_bbref_match +6258,Trevor Bauer,7,bauertr01,150,Trevor Bauer,bauertr01,automatic_bbref_match +6259,Tony Kemp,7,kempto01,1027,Tony Kemp,kempto01,automatic_bbref_match +6260,Bo Bichette,7,bichebo01,190,Bo Bichette,bichebo01,automatic_bbref_match +6261,Willson Contreras,7,contrwi01,410,Willson Contreras,contrwi01,automatic_bbref_match +6262,Cedric Mullins,7,mullice01,1381,Cedric Mullins,mullice01,automatic_bbref_match +6263,John Means,7,meansjo01,2,John Means,meansjo01,automatic_bbref_match +6264,Casey Sadler,7,sadleca02,1736,Casey Sadler,sadleca02,automatic_bbref_match +6265,Kevin Gausman,7,gausmke01,706,Kevin Gausman,gausmke01,automatic_bbref_match +6266,Max Muncy,7,muncyma01,1382,Max Muncy,muncyma01,automatic_bbref_match +6267,Art Warren,7,warrear01,2119,Art Warren,warrear01,automatic_bbref_match +6268,Javier Baez,7,baezja01,112,Javier Baez,baezja01,automatic_bbref_match +6269,Brett Phillips,7,phillbr02,1555,Brett Phillips,phillbr02,automatic_bbref_match +6270,Xander Bogaerts,7,bogaexa01,216,Xander Bogaerts,bogaexa01,automatic_bbref_match +6271,Tyler Glasnow,7,glasnty01,726,Tyler Glasnow,glasnty01,automatic_bbref_match +6272,Cal Quantrill,7,quantca01,1593,Cal Quantrill,quantca01,automatic_bbref_match +6273,Salvador Perez,7,perezsa02,1534,Salvador Perez,perezsa02,automatic_bbref_match +6274,Aaron Loup,7,loupaa01,1152,Aaron Loup,loupaa01,automatic_bbref_match +6275,Chris Bassitt,7,bassich01,146,Chris Bassitt,bassich01,automatic_bbref_match +6276,Manny Machado,7,machama01,1175,Manny Machado,machama01,automatic_bbref_match +6277,Nestor Cortes Jr,7,cortene01,421,Nestor Cortes Jr,cortene01,automatic_bbref_match +6278,Alek Manoah,7,manoaal01,1192,Alek Manoah,manoaal01,automatic_bbref_match +6396,JP Crawford,7,crawfjp01,432,JP Crawford,crawfjp01,automatic_bbref_match +6279,Tyler Gilbert,7,gilbety01,717,Tyler Gilbert,gilbety01,automatic_bbref_match +6280,Luis Castillo,7,castilu02,344,Luis Castillo,castilu02,automatic_bbref_match +6281,Buster Posey,7,poseybu01,1578,Buster Posey,poseybu01,automatic_bbref_match +6282,Logan Webb,7,webblo01,2127,Logan Webb,webblo01,automatic_bbref_match +6283,Mookie Betts,7,bettsmo01,187,Mookie Betts,bettsmo01,automatic_bbref_match +6284,Brandon Lowe,7,lowebr01,1156,Brandon Lowe,lowebr01,automatic_bbref_match +6285,Joey Gallo,7,gallojo01,674,Joey Gallo,gallojo01,automatic_bbref_match +6286,Jorge Polanco,7,polanjo01,1570,Jorge Polanco,polanjo01,automatic_bbref_match +6287,Nicky Lopez,7,lopezni01,1149,Nicky Lopez,lopezni01,automatic_bbref_match +6288,Connor Joe,7,joeco01,983,Connor Joe,joeco01,automatic_bbref_match +6289,Willy Adames,7,adamewi01,14,Willy Adames,adamewi01,automatic_bbref_match +6290,Joey Wendle,7,wendljo01,2135,Joey Wendle,wendljo01,automatic_bbref_match +6291,Jake Cronenworth,7,croneja01,442,Jake Cronenworth,croneja01,automatic_bbref_match +6292,Lucas Giolito,7,giolilu01,724,Lucas Giolito,giolilu01,automatic_bbref_match +6293,Dustin Garneau,7,garnedu01,697,Dustin Garneau,garnedu01,automatic_bbref_match +6294,AJ Pollock,7,polloaj01,1571,AJ Pollock,polloaj01,automatic_bbref_match +6295,Julio Urias,7,uriasju01,2038,Julio Urias,uriasju01,automatic_bbref_match +6296,Chad Green,7,greench03,768,Chad Green,greench03,automatic_bbref_match +6297,Chas McCormick,7,mccorch01,1269,Chas McCormick,mccorch01,automatic_bbref_match +6298,Freddy Peralta,7,peralfr01,1525,Freddy Peralta,peralfr01,automatic_bbref_match +6299,Brandon Belt,7,beltbr01,173,Brandon Belt,beltbr01,automatic_bbref_match +6300,Luis Arraez,7,arraelu01,93,Luis Arraez,arraelu01,automatic_bbref_match +6301,Jonathan Loaisiga,7,loaisjo01,1132,Jonathan Loaisiga,loaisjo01,automatic_bbref_match +6302,Trevor Story,7,storytr01,1914,Trevor Story,storytr01,automatic_bbref_match +6303,Nico Hoerner,7,hoernni01,909,Nico Hoerner,hoernni01,automatic_bbref_match +6304,George Springer,7,springe01,1888,George Springer,springe01,automatic_bbref_match +6305,Jacob Stallings,7,stallja01,1890,Jacob Stallings,stallja01,automatic_bbref_match +6306,Luis Gil,7,gillu01,716,Luis Gil,gillu01,automatic_bbref_match +6307,Pablo Lopez,7,lopezpa01,1146,Pablo Lopez,lopezpa01,automatic_bbref_match +6308,Michael Fulmer,7,fulmemi01,666,Michael Fulmer,fulmemi01,automatic_bbref_match +6309,Will D Smith,7,smithwi05,1841,Will Smith,smithwi05,automatic_bbref_match +6310,Charlie Morton,7,mortoch02,1375,Charlie Morton,mortoch02,automatic_bbref_match +6311,Juan Minaya,7,minayju01,1334,Juan Minaya,minayju01,automatic_bbref_match +6312,Ramon Laureano,7,laurera01,1097,Ramon Laureano,laurera01,automatic_bbref_match +6313,Randy Arozarena,7,arozara01,92,Randy Arozarena,arozara01,automatic_bbref_match +6314,Kyle Schwarber,7,schwaky01,1784,Kyle Schwarber,schwaky01,automatic_bbref_match +6315,Andrew Chafin,7,chafian01,363,Andrew Chafin,chafian01,automatic_bbref_match +6316,Freddie Freeman,7,freemfr01,652,Freddie Freeman,freemfr01,automatic_bbref_match +6317,Craig Kimbrel,7,kimbrcr01,1043,Craig Kimbrel,kimbrcr01,automatic_bbref_match +6397,Casey Mize,7,mizeca01,1342,Casey Mize,mizeca01,automatic_bbref_match +6318,Kolten Wong,7,wongko01,2188,Kolten Wong,wongko01,automatic_bbref_match +6319,Ryan McMahon,7,mcmahry01,1286,Ryan McMahon,mcmahry01,automatic_bbref_match +6320,Spencer Turnbull,7,turnbsp01,2028,Spencer Turnbull,turnbsp01,automatic_bbref_match +6321,Lance McCullers Jr,7,mcculla02,1271,Lance McCullers Jr,mcculla02,automatic_bbref_match +6322,Yan Gomes,7,gomesya01,731,Yan Gomes,gomesya01,automatic_bbref_match +6323,Andy Ibanez,7,ibanean01,948,Andy Ibanez,ibanean01,automatic_bbref_match +6324,Ty France,7,francty01,642,Ty France,francty01,automatic_bbref_match +6325,Pete Alonso,7,alonspe01,53,Pete Alonso,alonspe01,automatic_bbref_match +6326,Trevor Rogers,7,rogertr01,1693,Trevor Rogers,rogertr01,automatic_bbref_match +6327,Frank Schwindel,7,schwifr01,1786,Frank Schwindel,schwifr01,automatic_bbref_match +6328,Joey Votto,7,vottojo01,2092,Joey Votto,vottojo01,automatic_bbref_match +6329,Teoscar Hernandez,7,hernate01,873,Teoscar Hernandez,hernate01,automatic_bbref_match +6330,Jean Segura,7,segurje01,1796,Jean Segura,segurje01,automatic_bbref_match +6331,JT Realmuto,7,realmjt01,1622,JT Realmuto,realmjt01,automatic_bbref_match +6332,Nathan Eovaldi,7,eovalna01,576,Nathan Eovaldi,eovalna01,automatic_bbref_match +6333,Jose Altuve,7,altuvjo01,56,Jose Altuve,altuvjo01,automatic_bbref_match +6334,Yoan Moncada,7,moncayo01,1348,Yoan Moncada,moncayo01,automatic_bbref_match +6335,Sonny Gray,7,grayso01,765,Sonny Gray,grayso01,automatic_bbref_match +6336,Emmanuel Clase,7,claseem01,385,Emmanuel Clase,claseem01,automatic_bbref_match +6337,Ramon Urias,7,uriasra01,2037,Ramon Urias,uriasra01,automatic_bbref_match +6338,Raisel Iglesias,7,iglesra01,950,Raisel Iglesias,iglesra01,automatic_bbref_match +6339,Danny Jansen,7,janseda01,969,Danny Jansen,janseda01,automatic_bbref_match +6340,Anthony DeSclafani,7,desclan01,493,Anthony DeSclafani,desclan01,automatic_bbref_match +6341,Collin McHugh,7,mchugco01,1278,Collin McHugh,mchugco01,automatic_bbref_match +6342,Nolan Arenado,7,arenano01,88,Nolan Arenado,arenano01,automatic_bbref_match +6343,Adam Frazier,7,fraziad01,648,Adam Frazier,fraziad01,automatic_bbref_match +6344,Trent Grisham,7,grishtr01,776,Trent Grisham,grishtr01,automatic_bbref_match +6345,CJ Cron,7,croncj01,441,CJ Cron,croncj01,automatic_bbref_match +6346,Patrick Sandoval,7,sandopa02,1754,Patrick Sandoval,sandopa02,automatic_bbref_match +6347,Evan Longoria,7,longoev01,1140,Evan Longoria,longoev01,automatic_bbref_match +6348,Jonathan India,7,indiajo01,953,Jonathan India,indiajo01,automatic_bbref_match +6349,Sandy Alcantara,7,alcansa01,35,Sandy Alcantara,alcansa01,automatic_bbref_match +6350,Frankie Montas,7,montafr02,1351,Frankie Montas,montafr02,automatic_bbref_match +6351,Jose Siri,7,sirijo01,1830,Jose Siri,sirijo01,automatic_bbref_match +6352,Yuli Gurriel,7,gourryu01,793,Yuli Gurriel,gourryu01,automatic_bbref_match +6353,Adolis Garcia,7,garciad02,690,Adolis Garcia,garciad02,automatic_bbref_match +6354,Kyle Gibson,7,gibsoky01,715,Kyle Gibson,gibsoky01,automatic_bbref_match +6355,Cole Sulser,7,sulseco01,1942,Cole Sulser,sulseco01,automatic_bbref_match +6398,Aaron Civale,7,civalaa01,383,Aaron Civale,civalaa01,automatic_bbref_match +6356,Jeimer Candelario,7,candeje01,315,Jeimer Candelario,candeje01,automatic_bbref_match +6357,Justin Turner,7,turneju01,2029,Justin Turner,turneju01,automatic_bbref_match +6358,Rafael Ortega,7,ortegra01,1465,Rafael Ortega,ortegra01,automatic_bbref_match +6359,Chris Sale,7,salech01,1739,Chris Sale,salech01,automatic_bbref_match +6360,Garrett Crochet,7,crochga01,439,Garrett Crochet,crochga01,automatic_bbref_match +6361,Kyle Isbel,7,isbelky01,956,Kyle Isbel,isbelky01,automatic_bbref_match +6362,Sean Murphy,7,murphse01,1390,Sean Murphy,murphse01,automatic_bbref_match +6363,Jake Fraley,7,fraleja01,641,Jake Fraley,fraleja01,automatic_bbref_match +6364,Chris Flexen,7,flexech01,626,Chris Flexen,flexech01,automatic_bbref_match +6365,Kendall Graveman,7,graveke01,764,Kendall Graveman,graveke01,automatic_bbref_match +6366,Garrett Whitlock,7,whitlga01,2146,Garrett Whitlock,whitlga01,automatic_bbref_match +6367,Tanner Houck,7,houckta01,927,Tanner Houck,houckta01,automatic_bbref_match +6368,Elias Diaz,7,diazel01,502,Elias Diaz,diazel01,automatic_bbref_match +6369,Drew Steckenrider,7,steckdr01,1898,Drew Steckenrider,steckdr01,automatic_bbref_match +6370,Francisco Lindor,7,lindofr01,1124,Francisco Lindor,lindofr01,automatic_bbref_match +6371,Edmundo Sosa,7,sosaed01,1876,Edmundo Sosa,sosaed01,automatic_bbref_match +6372,Josh Donaldson,7,donaljo02,526,Josh Donaldson,donaljo02,automatic_bbref_match +6373,Marcus Stroman,7,stromma01,1928,Marcus Stroman,stromma01,automatic_bbref_match +6374,Jarlin Garcia,7,garcija04,684,Jarlin Garcia,garcija04,automatic_bbref_match +6375,Carson Kelly,7,kellyca02,1023,Carson Kelly,kellyca02,automatic_bbref_match +6376,Patrick Wisdom,7,wisdopa01,2181,Patrick Wisdom,wisdopa01,automatic_bbref_match +6377,Aaron Sanchez,7,sanchaa01,1745,Aaron Sanchez,sanchaa01,automatic_bbref_match +6378,Jordan Romano,7,romanjo03,1699,Jordan Romano,romanjo03,automatic_bbref_match +6379,Liam Hendriks,7,hendrli01,857,Liam Hendriks,hendrli01,automatic_bbref_match +6380,Ian Anderson,7,anderia01,74,Ian Anderson,anderia01,automatic_bbref_match +6382,Framber Valdez,7,valdefr01,2048,Framber Valdez,valdefr01,automatic_bbref_match +6383,Jake Rogers,7,rogerja03,1692,Jake Rogers,rogerja03,automatic_bbref_match +6384,Lars Nootbaar,7,nootbla01,1436,Lars Nootbaar,nootbla01,automatic_bbref_match +6385,Kris Bryant,7,bryankr01,273,Kris Bryant,bryankr01,automatic_bbref_match +6386,Avisail Garcia,7,garciav01,678,Avisail Garcia,garciav01,automatic_bbref_match +6387,Matt Chapman,7,chapmma01,367,Matt Chapman,chapmma01,automatic_bbref_match +6388,Max Stassi,7,stassma01,1896,Max Stassi,stassma01,automatic_bbref_match +6389,Steven Okert,7,okertst01,1456,Steven Okert,okertst01,automatic_bbref_match +6390,Jason Castro,7,castrja01,347,Jason Castro,castrja01,automatic_bbref_match +6391,Nick Madrigal,7,madrini01,1178,Nick Madrigal,madrini01,automatic_bbref_match +6392,Adam Duvall,7,duvalad01,553,Adam Duvall,duvalad01,automatic_bbref_match +6393,Jesse Winker,7,winkeje01,2177,Jesse Winker,winkeje01,automatic_bbref_match +6394,Tony Gonsolin,7,gonsoto01,734,Tony Gonsolin,gonsoto01,automatic_bbref_match +6395,David Bednar,7,bednada01,162,David Bednar,bednada01,automatic_bbref_match +6399,Nicholas Castellanos,7,casteni01,340,Nicholas Castellanos,casteni01,automatic_bbref_match +6400,Josh Bell,7,belljo02,168,Josh Bell,belljo02,automatic_bbref_match +6401,Luis Urias,7,uriaslu01,2039,Luis Urias,uriaslu01,automatic_bbref_match +6402,Drew Rasmussen,7,rasmudr01,1618,Drew Rasmussen,rasmudr01,automatic_bbref_match +6403,Daulton Varsho,7,varshda01,2058,Daulton Varsho,varshda01,automatic_bbref_match +6404,Dominic Leone,7,leonedo01,1116,Dominic Leone,leonedo01,automatic_bbref_match +6405,Tony Santillan,7,santito01,1766,Tony Santillan,santito01,automatic_bbref_match +6406,Zac Gallen,7,galleza01,673,Zac Gallen,galleza01,automatic_bbref_match +6407,Kenley Jansen,7,janseke01,968,Kenley Jansen,janseke01,automatic_bbref_match +6408,Tommy Edman,7,edmanto01,558,Tommy Edman,edmanto01,automatic_bbref_match +6409,Giancarlo Stanton,7,stantmi03,1893,Giancarlo Stanton,stantmi03,automatic_bbref_match +6410,Clayton Kershaw,7,kershcl01,1034,Clayton Kershaw,kershcl01,automatic_bbref_match +6411,Blake Treinen,7,treinbl01,2011,Blake Treinen,treinbl01,automatic_bbref_match +6412,Thairo Estrada,7,estrath01,587,Thairo Estrada,estrath01,automatic_bbref_match +6413,Danny Duffy,7,duffyda01,541,Danny Duffy,duffyda01,automatic_bbref_match +6414,Jose Berrios,7,berrijo01,182,Jose Berrios,berrijo01,automatic_bbref_match +6415,Rafael Devers,7,deverra01,499,Rafael Devers,deverra01,automatic_bbref_match +6416,Alex Bregman,7,bregmal01,248,Alex Bregman,bregmal01,automatic_bbref_match +6417,Kevin Kiermaier,7,kiermke01,1039,Kevin Kiermaier,kiermke01,automatic_bbref_match +6418,Adam Wainwright,7,wainwad01,2099,Adam Wainwright,wainwad01,automatic_bbref_match +6419,Jesse Chavez,7,chaveje01,370,Jesse Chavez,chaveje01,automatic_bbref_match +6420,Domingo Tapia,7,tapiado01,1956,Domingo Tapia,tapiado01,automatic_bbref_match +6421,Lucas Luetge,7,luetglu01,1164,Lucas Luetge,luetglu01,automatic_bbref_match +6422,Mark Melancon,7,melanma01,1298,Mark Melancon,melanma01,automatic_bbref_match +6423,Keibert Ruiz,7,ruizke01,1725,Keibert Ruiz,ruizke01,automatic_bbref_match +6424,Jesus Sanchez,7,sanchje02,1749,Jesus Sanchez,sanchje02,automatic_bbref_match +6425,Dylan Carlson,7,carlsdy01,327,Dylan Carlson,carlsdy01,automatic_bbref_match +6426,Andrew Kittredge,7,kittran01,1057,Andrew Kittredge,kittran01,automatic_bbref_match +6427,Taylor Walls,7,wallsta01,2110,Taylor Walls,wallsta01,automatic_bbref_match +6428,Justin Dunn,7,dunnju01,546,Justin Dunn,dunnju01,automatic_bbref_match +6429,Tyler Matzek,7,matzety01,1244,Tyler Matzek,matzety01,automatic_bbref_match +6430,Jose Urquidy,7,urquijo01,2041,Jose Urquidy,urquijo01,automatic_bbref_match +6431,Enrique Hernandez,7,hernaen02,871,Enrique Hernandez,hernaen02,automatic_bbref_match +6432,Yordan Alvarez,7,alvaryo01,61,Yordan Alvarez,alvaryo01,automatic_bbref_match +6433,Myles Straw,7,strawmy01,1924,Myles Straw,strawmy01,automatic_bbref_match +6434,Whit Merrifield,7,merriwh01,1309,Whit Merrifield,merriwh01,automatic_bbref_match +6435,Christian Arroyo,7,arroych01,96,Christian Arroyo,arroych01,automatic_bbref_match +6436,Joe Musgrove,7,musgrjo01,1394,Joe Musgrove,musgrjo01,automatic_bbref_match +6437,Richard Rodriguez,7,rodriri05,1674,Richard Rodriguez,rodriri05,automatic_bbref_match +6438,Jimmy Nelson,7,nelsoji02,1409,Jimmy Nelson,nelsoji02,automatic_bbref_match +6439,Matt Duffy,7,duffyma01,542,Matt Duffy,duffyma01,automatic_bbref_match +6440,Ozzie Albies,7,albieoz01,31,Ozzie Albies,albieoz01,automatic_bbref_match +6441,Jazz Chisholm,7,chishja01,375,Jazz Chisholm,chishja01,automatic_bbref_match +6442,Luis Cessa,7,cessalu01,361,Luis Cessa,cessalu01,automatic_bbref_match +6443,Michael Brantley,7,brantmi02,240,Michael Brantley,brantmi02,automatic_bbref_match +6444,Drew Smith,7,smithdr01,1848,Drew Smith,smithdr01,automatic_bbref_match +6445,Tyler Alexander,7,alexaty01,37,Tyler Alexander,alexaty01,automatic_bbref_match +6446,Michael Kopech,7,kopecmi01,1071,Michael Kopech,kopecmi01,automatic_bbref_match +6447,Dillon Maples,7,mapledi01,1195,Dillon Maples,mapledi01,automatic_bbref_match +6448,Miguel Rojas,7,rojasmi02,1694,Miguel Rojas,rojasmi02,automatic_bbref_match +6449,Ketel Marte,7,marteke01,1210,Ketel Marte,marteke01,automatic_bbref_match +6450,Jared Walsh,7,walshja01,2111,Jared Walsh,walshja01,automatic_bbref_match +6451,Ryan Pressly,7,pressry01,1584,Ryan Pressly,pressry01,automatic_bbref_match +6452,Devin Williams,7,willide03,2158,Devin Williams,willide03,automatic_bbref_match +6453,Marco Gonzales,7,gonzama02,735,Marco Gonzales,gonzama02,automatic_bbref_match +6454,JD Martinez,7,martijd02,1229,JD Martinez,martijd02,automatic_bbref_match +6455,Tyler Rogers,7,rogerty01,1691,Tyler Rogers,rogerty01,automatic_bbref_match +6456,Tyler Stephenson,7,stephty01,1905,Tyler Stephenson,stephty01,automatic_bbref_match +6457,Alex Cobb,7,cobbal01,394,Alex Cobb,cobbal01,automatic_bbref_match +6458,Ryan Tepera,7,teperry01,1974,Ryan Tepera,teperry01,automatic_bbref_match +6459,Mike Yastrzemski,7,yastrmi01,2210,Mike Yastrzemski,yastrmi01,automatic_bbref_match +6460,Jose Alvarez,7,alvarjo02,59,Jose Alvarez,alvarjo02,automatic_bbref_match +6461,Austin Nola,7,nolaau01,1432,Austin Nola,nolaau01,automatic_bbref_match +6462,Lorenzo Cain,7,cainlo01,305,Lorenzo Cain,cainlo01,automatic_bbref_match +6463,Sean Manaea,7,manaese01,1189,Sean Manaea,manaese01,automatic_bbref_match +6464,Bryan De La Cruz,7,delacbr01,479,Bryan De La Cruz,delacbr01,automatic_bbref_match +6465,Alcides Escobar,7,escobal02,580,Alcides Escobar,escobal02,automatic_bbref_match +6466,Eric Lauer,7,lauerer01,1096,Eric Lauer,lauerer01,automatic_bbref_match +6467,Jose Abreu,7,abreujo02,7,Jose Abreu,abreujo02,automatic_bbref_match +6468,Akil Baddoo,7,baddoak01,109,Akil Baddoo,baddoak01,automatic_bbref_match +6469,Rhys Hoskins,7,hoskirh01,925,Rhys Hoskins,hoskirh01,automatic_bbref_match +6470,Joel Payamps,7,payamjo01,1507,Joel Payamps,payamjo01,automatic_bbref_match +6471,Mitch Haniger,7,hanigmi01,818,Mitch Haniger,hanigmi01,automatic_bbref_match +6472,Tyler Mahle,7,mahlety01,1183,Tyler Mahle,mahlety01,automatic_bbref_match +6473,Andrew Benintendi,7,beninan01,177,Andrew Benintendi,beninan01,automatic_bbref_match +6474,Chris Taylor,7,tayloch03,1964,Chris Taylor,tayloch03,automatic_bbref_match +6475,Steven Duggar,7,duggast01,543,Steven Duggar,duggast01,automatic_bbref_match +6476,Jake Meyers,7,meyerja02,1315,Jake Meyers,meyerja02,automatic_bbref_match +6477,Leury Garcia,7,garcile02,679,Leury Garcia,garcile02,automatic_bbref_match +6478,Joe Barlow,7,barlojo01,129,Joe Barlow,barlojo01,automatic_bbref_match +6479,Ryan Zimmerman,7,zimmery01,2229,Ryan Zimmerman,zimmery01,automatic_bbref_match +6480,Garrett Cooper,7,coopega03,415,Garrett Cooper,coopega03,automatic_bbref_match +6481,Corey Knebel,7,knebeco01,1063,Corey Knebel,knebeco01,automatic_bbref_match +6482,Connor Brogdon,7,brogdco01,261,Connor Brogdon,brogdco01,automatic_bbref_match +6483,Dylan Cease,7,ceasedy01,355,Dylan Cease,ceasedy01,automatic_bbref_match +6484,Nick Pivetta,7,pivetni01,1564,Nick Pivetta,pivetni01,automatic_bbref_match +6486,Robbie Grossman,7,grossro01,779,Robbie Grossman,grossro01,automatic_bbref_match +6487,German Marquez,7,marquge01,1204,German Marquez,marquge01,automatic_bbref_match +6488,Nelson Cruz,7,cruzne02,447,Nelson Cruz,cruzne02,automatic_bbref_match +6489,Aroldis Chapman,7,chapmar01,366,Aroldis Chapman,chapmar01,automatic_bbref_match +6490,Ha Seong Kim,7,kimha01,1042,Ha Seong Kim,kimha01,automatic_bbref_match +6491,Huascar Ynoa,7,ynoahu01,2215,Huascar Ynoa,ynoahu01,automatic_bbref_match +6492,Kyle Muller,7,mulleky01,1380,Kyle Muller,mulleky01,automatic_bbref_match +6493,Riley Adams,7,adamsri03,17,Riley Adams,adamsri03,automatic_bbref_match +6494,Pablo Reyes,7,reyespa01,1637,Pablo Reyes,reyespa01,automatic_bbref_match +6495,Hector Neris,7,nerishe01,1413,Hector Neris,nerishe01,automatic_bbref_match +6496,Hunter Renfroe,7,renfrhu01,1631,Hunter Renfroe,renfrhu01,automatic_bbref_match +6497,Reynaldo Lopez,7,lopezre01,1145,Reynaldo Lopez,lopezre01,automatic_bbref_match +6498,Will Smith,7,smithwi04,1843,Will Smith,smithwi04,automatic_bbref_match +6499,Eduardo Escobar,7,escobed01,581,Eduardo Escobar,escobed01,automatic_bbref_match +6500,Mark Canha,7,canhama01,316,Mark Canha,canhama01,automatic_bbref_match +6501,Ian Kennedy,7,kenneia01,1029,Ian Kennedy,kenneia01,automatic_bbref_match +6502,Kodi Whitley,7,whitlko01,2145,Kodi Whitley,whitlko01,automatic_bbref_match +6503,Tyler Wells,7,wellsty01,2132,Tyler Wells,wellsty01,automatic_bbref_match +6504,Paul Sewald,7,sewalpa01,1806,Paul Sewald,sewalpa01,automatic_bbref_match +6505,Jameson Taillon,7,taillja01,1954,Jameson Taillon,taillja01,automatic_bbref_match +6506,Matt Vierling,7,vierlma01,2077,Matt Vierling,vierlma01,automatic_bbref_match +6507,Wilmer Flores,7,florewi01,627,Wilmer Flores,florewi01,automatic_bbref_match +6508,Joe Ryan,7,ryanjo04,1732,Joe Ryan,ryanjo04,automatic_bbref_match +6509,Alex Avila,7,avilaal01,104,Alex Avila,avilaal01,automatic_bbref_match +6510,Adrian Houser,7,housead01,928,Adrian Houser,housead01,automatic_bbref_match +6511,Adam Cimber,7,cimbead01,380,Adam Cimber,cimbead01,automatic_bbref_match +6512,Lane Thomas,7,thomala02,1978,Lane Thomas,thomala02,automatic_bbref_match +6513,Yadier Molina,7,molinya01,1344,Yadier Molina,molinya01,automatic_bbref_match +6514,JD Davis,7,davisjd01,474,JD Davis,davisjd01,automatic_bbref_match +6515,Ryan Thompson,7,thompry02,1983,Ryan Thompson,thompry02,automatic_bbref_match +6516,Josh Harrison,7,harrijo05,829,Josh Harrison,harrijo05,automatic_bbref_match +6517,Manny Pina,7,pinama01,1558,Manny Pina,pinama01,automatic_bbref_match +6518,Lewin Diaz,7,diazle01,506,Lewin Diaz,diazle01,automatic_bbref_match +6519,Scott Barlow,7,barlosc01,128,Scott Barlow,barlosc01,automatic_bbref_match +6520,Dylan Floro,7,florody01,629,Dylan Floro,florody01,automatic_bbref_match +6521,Ashton Goudeau,7,goudeas01,759,Ashton Goudeau,goudeas01,automatic_bbref_match +6522,Jake Cousins,7,cousija01,424,Jake Cousins,cousija01,automatic_bbref_match +6523,Nathaniel Lowe,7,lowena01,1155,Nathaniel Lowe,lowena01,automatic_bbref_match +6524,Zach Eflin,7,eflinza01,562,Zach Eflin,eflinza01,automatic_bbref_match +6525,Charlie Culberson,7,culbech01,453,Charlie Culberson,culbech01,automatic_bbref_match +6526,Josh Staumont,7,staumjo01,1897,Josh Staumont,staumjo01,automatic_bbref_match +6527,Josh Rogers,7,rogerjo01,1690,Josh Rogers,rogerjo01,automatic_bbref_match +6528,KeBryan Hayes,7,hayeske01,838,KeBryan Hayes,hayeske01,automatic_bbref_match +6529,Manuel Margot,7,margoma01,1198,Manuel Margot,margoma01,automatic_bbref_match +6530,Alex Verdugo,7,verdual01,2069,Alex Verdugo,verdual01,automatic_bbref_match +6531,Tyrone Taylor,7,tayloty01,1965,Tyrone Taylor,tayloty01,automatic_bbref_match +6532,Mike Brosseau,7,brossmi01,263,Mike Brosseau,brossmi01,automatic_bbref_match +6533,Cristian Javier,7,javiecr01,971,Cristian Javier,javiecr01,automatic_bbref_match +6534,Camilo Doval,7,dovalca01,529,Camilo Doval,dovalca01,automatic_bbref_match +6535,Noe Ramirez,7,ramirno01,1606,Noe Ramirez,ramirno01,automatic_bbref_match +6536,Austin Hays,7,haysau01,839,Austin Hays,haysau01,automatic_bbref_match +6537,Gregory Soto,7,sotogr01,1878,Gregory Soto,sotogr01,automatic_bbref_match +6538,Matt Barnes,7,barnema01,131,Matt Barnes,barnema01,automatic_bbref_match +6539,Adrian Sampson,7,sampsad01,1742,Adrian Sampson,sampsad01,automatic_bbref_match +6540,Chris Stratton,7,stratch01,1922,Chris Stratton,stratch01,automatic_bbref_match +6541,Luke Jackson,7,jackslu01,960,Luke Jackson,jackslu01,automatic_bbref_match +6542,Chris Rodriguez,7,rodrich01,1681,Chris Rodriguez,rodrich01,automatic_bbref_match +6543,Bradley Zimmer,7,zimmebr01,2227,Bradley Zimmer,zimmebr01,automatic_bbref_match +6544,Giovanny Gallegos,7,gallegi01,672,Giovanny Gallegos,gallegi01,automatic_bbref_match +6545,Phil Bickford,7,bickfph01,191,Phil Bickford,bickfph01,automatic_bbref_match +6546,Franmil Reyes,7,reyesfr01,1634,Franmil Reyes,reyesfr01,automatic_bbref_match +6547,Steven Matz,7,matzst01,1243,Steven Matz,matzst01,automatic_bbref_match +6548,Kyle Lewis,7,lewisky01,1118,Kyle Lewis,lewisky01,automatic_bbref_match +6549,Lucas Gilbreath,7,gilbrlu01,719,Lucas Gilbreath,gilbrlu01,automatic_bbref_match +6550,Brendan Rodgers,7,rodgebr02,1668,Brendan Rodgers,rodgebr02,automatic_bbref_match +6551,Jonathan Villar,7,villajo01,2079,Jonathan Villar,villajo01,automatic_bbref_match +6552,Austin Meadows,7,meadoau01,1290,Austin Meadows,meadoau01,automatic_bbref_match +6553,Omar Narvaez,7,narvaom01,1401,Omar Narvaez,narvaom01,automatic_bbref_match +6554,Dillon Tate,7,tatedi01,1959,Dillon Tate,tatedi01,automatic_bbref_match +6555,Jordan Montgomery,7,montgjo01,1356,Jordan Montgomery,montgjo01,automatic_bbref_match +6556,Richard Bleier,7,bleieri01,212,Richard Bleier,bleieri01,automatic_bbref_match +6557,Andrelton Simmons,7,simmoan01,1825,Andrelton Simmons,simmoan01,automatic_bbref_match +6558,Wily Peralta,7,peralwi01,1523,Wily Peralta,peralwi01,automatic_bbref_match +6559,Isiah Kiner Falefa,7,kineris01,1044,Isiah Kiner Falefa,kineris01,automatic_bbref_match +6560,Aaron Nola,7,nolaaa01,1433,Aaron Nola,nolaaa01,automatic_bbref_match +6561,Jordan Sheffield,7,sheffjo01,1812,Jordan Sheffield,sheffjo01,automatic_bbref_match +6562,Jeff McNeil,7,mcneije01,1287,Jeff McNeil,mcneije01,automatic_bbref_match +6563,Yonny Hernandez,7,hernayo02,878,Yonny Hernandez,hernayo02,automatic_bbref_match +6564,Carlos Hernandez,7,hernaca04,880,Carlos Hernandez,hernaca04,automatic_bbref_match +6565,Chasen Shreve,7,shrevch01,1819,Chasen Shreve,shrevch01,automatic_bbref_match +6566,Donovan Solano,7,solando01,1868,Donovan Solano,solando01,automatic_bbref_match +6567,Madison Bumgarner,7,bumgama01,278,Madison Bumgarner,bumgama01,automatic_bbref_match +6568,Starlin Castro,7,castrst01,348,Starlin Castro,castrst01,automatic_bbref_match +6569,Anthony Bender,7,bendean01,176,Anthony Bender,bendean01,automatic_bbref_match +6570,LaMonte Wade Jr,7,wadela01,2095,LaMonte Wade Jr,wadela01,automatic_bbref_match +6571,TJ McFarland,7,mcfartj01,1273,TJ McFarland,mcfartj01,automatic_bbref_match +6572,Shane McClanahan,7,mcclash01,1268,Shane McClanahan,mcclash01,automatic_bbref_match +6573,Trevor Richards,7,richatr01,1646,Trevor Richards,richatr01,automatic_bbref_match +6574,Eduardo Rodriguez,7,rodried05,1675,Eduardo Rodriguez,rodried05,automatic_bbref_match +6575,Zach Thompson,7,thompza01,1981,Zach Thompson,thompza01,automatic_bbref_match +6576,Tyler Duffey,7,duffety01,540,Tyler Duffey,duffety01,automatic_bbref_match +6577,Freddy Galvis,7,galvifr01,675,Freddy Galvis,galvifr01,automatic_bbref_match +6578,Aledmys Diaz,7,diazal02,505,Aledmys Diaz,diazal02,automatic_bbref_match +6579,Diego Castillo,7,castidi01,345,Diego Castillo,castidi01,automatic_bbref_match +6580,Eric Haase,7,haaseer01,801,Eric Haase,haaseer01,automatic_bbref_match +6581,Lourdes Gurriel Jr,7,gurrilo01,794,Lourdes Gurriel Jr,gurrilo01,automatic_bbref_match +6582,Caleb Thielbar,7,thielca01,1977,Caleb Thielbar,thielca01,automatic_bbref_match +6583,Ian Happ,7,happia01,820,Ian Happ,happia01,automatic_bbref_match +6584,Jose Suarez,7,suarejo01,1937,Jose Suarez,suarejo01,automatic_bbref_match +6585,Alex Wood,7,woodal02,2193,Alex Wood,woodal02,automatic_bbref_match +6586,Clay Holmes,7,holmecl01,919,Clay Holmes,holmecl01,automatic_bbref_match +6587,Jonathan Schoop,7,schoojo01,1779,Jonathan Schoop,schoojo01,automatic_bbref_match +6588,Billy Hamilton,7,hamilbi02,810,Billy Hamilton,hamilbi02,automatic_bbref_match +6589,Yandy Diaz,7,diazya01,507,Yandy Diaz,diazya01,automatic_bbref_match +6590,Brian Anderson,7,anderbr06,69,Brian Anderson,anderbr06,automatic_bbref_match +6591,Merrill Kelly,7,kellyme01,1020,Merrill Kelly,kellyme01,automatic_bbref_match +6592,Adalberto Mondesi,7,mondera02,1349,Adalberto Mondesi,mondera02,automatic_bbref_match +6593,Anthony Rizzo,7,rizzoan01,1658,Anthony Rizzo,rizzoan01,automatic_bbref_match +6594,Ji Man Choi,7,choiji01,377,Ji Man Choi,choiji01,automatic_bbref_match +6595,Tarik Skubal,7,skubata01,1836,Tarik Skubal,skubata01,automatic_bbref_match +6596,Dansby Swanson,7,swansda01,1947,Dansby Swanson,swansda01,automatic_bbref_match +6597,Dillon Peters,7,peterdi01,1544,Dillon Peters,peterdi01,automatic_bbref_match +6598,Ryan Burr,7,burrry01,287,Ryan Burr,burrry01,automatic_bbref_match +6599,James Karinchak,7,karinja01,1009,James Karinchak,karinja01,automatic_bbref_match +6600,Alejandro Kirk,7,kirkal01,1056,Alejandro Kirk,kirkal01,automatic_bbref_match +6601,Michael A Taylor,7,taylomi02,1963,Michael Taylor,taylomi02,automatic_bbref_match +6602,Kyle Freeland,7,freelky01,650,Kyle Freeland,freelky01,automatic_bbref_match +6603,Mychal Givens,7,givenmy01,725,Mychal Givens,givenmy01,automatic_bbref_match +6604,Tres Barrera,7,barretr01,137,Tres Barrera,barretr01,automatic_bbref_match +6605,James Kaprielian,7,kaprija01,1008,James Kaprielian,kaprija01,automatic_bbref_match +6606,Blake Snell,7,snellbl01,1861,Blake Snell,snellbl01,automatic_bbref_match +6607,Steve Cishek,7,cishest01,381,Steve Cishek,cishest01,automatic_bbref_match +6608,Yusei Kikuchi,7,kikucyu01,1040,Yusei Kikuchi,kikucyu01,automatic_bbref_match +6609,Jon Gray,7,grayjo02,766,Jon Gray,grayjo02,automatic_bbref_match +6610,Austin Slater,7,slateau01,1838,Austin Slater,slateau01,automatic_bbref_match +6611,Seth Brown,7,brownse01,265,Seth Brown,brownse01,automatic_bbref_match +6612,Jhoulys Chacin,7,chacijh01,362,Jhoulys Chacin,chacijh01,automatic_bbref_match +6613,Jesus Aguilar,7,aguilje01,25,Jesus Aguilar,aguilje01,automatic_bbref_match +6614,Corey Kluber,7,klubeco01,1060,Corey Kluber,klubeco01,automatic_bbref_match +6615,Justin Steele,7,steelju01,1899,Justin Steele,steelju01,automatic_bbref_match +6616,Yohan Ramirez,7,ramiryo01,1611,Yohan Ramirez,ramiryo01,automatic_bbref_match +6617,Brad Boxberger,7,boxbebr01,229,Brad Boxberger,boxbebr01,automatic_bbref_match +6618,Craig Stammen,7,stammcr01,1891,Craig Stammen,stammcr01,automatic_bbref_match +6619,Tim Mayza,7,mayzati01,1253,Tim Mayza,mayzati01,automatic_bbref_match +6620,Jose Ruiz,7,ruizjo01,1724,Jose Ruiz,ruizjo01,automatic_bbref_match +6621,David Fletcher,7,fletcda02,624,David Fletcher,fletcda02,automatic_bbref_match +6622,Anthony Alford,7,alforan01,41,Anthony Alford,alforan01,automatic_bbref_match +6623,JT Chargois,7,chargjt01,368,JT Chargois,chargjt01,automatic_bbref_match +6624,Jake McGee,7,mcgeeja01,1274,Jake McGee,mcgeeja01,automatic_bbref_match +6625,Josh Taylor,7,taylojo02,1967,Josh Taylor,taylojo02,automatic_bbref_match +6626,Drew Pomeranz,7,pomerdr01,1572,Drew Pomeranz,pomerdr01,automatic_bbref_match +6627,Keegan Thompson,7,thompke02,1982,Keegan Thompson,thompke02,automatic_bbref_match +6628,Hyun Jin Ryu,7,ryuhy01,1733,Hyun Jin Ryu,ryuhy01,automatic_bbref_match +6629,Lou Trivino,7,trivilo01,2016,Lou Trivino,trivilo01,automatic_bbref_match +6630,Yu Darvish,7,darviyu01,462,Yu Darvish,darviyu01,automatic_bbref_match +6631,Zach Plesac,7,plesaza01,1566,Zach Plesac,plesaza01,automatic_bbref_match +6632,Zack Littell,7,litteza01,1127,Zack Littell,litteza01,automatic_bbref_match +6633,Vladimir Gutierrez,7,gutievl01,797,Vladimir Gutierrez,gutievl01,automatic_bbref_match +6634,Max Kepler,7,keplema01,1031,Max Kepler,keplema01,automatic_bbref_match +6635,JP Feyereisen,7,feyerjo01,612,JP Feyereisen,feyerjo01,automatic_bbref_match +6636,Luis Guillorme,7,guilllu01,792,Luis Guillorme,guilllu01,automatic_bbref_match +6637,Matthew Boyd,7,boydma01,230,Matthew Boyd,boydma01,automatic_bbref_match +6638,Abraham Toro,7,toroab01,2001,Abraham Toro,toroab01,automatic_bbref_match +6639,Edwin Diaz,7,diazed04,503,Edwin Diaz,diazed04,automatic_bbref_match +6640,Joe Kelly,7,kellyjo05,1021,Joe Kelly,kellyjo05,automatic_bbref_match +6641,Taylor Ward,7,wardta01,2116,Taylor Ward,wardta01,automatic_bbref_match +6642,Travis Jankowski,7,jankotr01,967,Travis Jankowski,jankotr01,automatic_bbref_match +6643,Gavin Lux,7,luxga01,1169,Gavin Lux,luxga01,automatic_bbref_match +6644,Caleb Baragar,7,baragca01,124,Caleb Baragar,baragca01,automatic_bbref_match +6645,Marcos Diplan,7,diplama01,519,Marcos Diplan,diplama01,automatic_bbref_match +6646,Christian Yelich,7,yelicch01,2212,Christian Yelich,yelicch01,automatic_bbref_match +6647,Ralph Garza,7,garzara01,704,Ralph Garza,garzara01,automatic_bbref_match +6648,Jaime Barria,7,barrija01,141,Jaime Barria,barrija01,automatic_bbref_match +6649,Jharel Cotton,7,cottojh01,423,Jharel Cotton,cottojh01,automatic_bbref_match +6650,Hunter Strickland,7,strichu01,1925,Hunter Strickland,strichu01,automatic_bbref_match +6651,Cam Gallagher,7,gallaca01,670,Cam Gallagher,gallaca01,automatic_bbref_match +6652,Rich Hill,7,hillri01,898,Rich Hill,hillri01,automatic_bbref_match +6653,Andrew McCutchen,7,mccutan01,1272,Andrew McCutchen,mccutan01,automatic_bbref_match +6654,Kwang Hyun Kim,7,kimkw01,946,Kwang Hyun Kim,kimkw01,automatic_bbref_match +6655,Alex Vesia,7,vesiaal01,2072,Alex Vesia,vesiaal01,automatic_bbref_match +6656,Paul DeJong,7,dejonpa01,485,Paul DeJong,dejonpa01,automatic_bbref_match +6657,Lucas Sims,7,simslu01,1826,Lucas Sims,simslu01,automatic_bbref_match +6658,Jack Flaherty,7,flaheja01,622,Jack Flaherty,flaheja01,automatic_bbref_match +6659,Triston McKenzie,7,mckentr01,1282,Triston McKenzie,mckentr01,automatic_bbref_match +6660,Edgar Santana,7,santaed01,1763,Edgar Santana,santaed01,automatic_bbref_match +6661,Kyle Funkhouser,7,funkhky01,668,Kyle Funkhouser,funkhky01,automatic_bbref_match +6662,Jace Peterson,7,peterja01,1547,Jace Peterson,peterja01,automatic_bbref_match +6663,Tyler Clippard,7,clippty01,393,Tyler Clippard,clippty01,automatic_bbref_match +6664,Andres Gimenez,7,gimenan01,721,Andres Gimenez,gimenan01,automatic_bbref_match +6665,Louis Head,7,headlo01,840,Louis Head,headlo01,automatic_bbref_match +6666,Brandon Drury,7,drurybr01,535,Brandon Drury,drurybr01,automatic_bbref_match +6667,Oscar Mercado,7,mercaos01,1306,Oscar Mercado,mercaos01,automatic_bbref_match +6668,Kyle Farmer,7,farmeky01,598,Kyle Farmer,farmeky01,automatic_bbref_match +6669,Tony Watson,7,watsoto01,2122,Tony Watson,watsoto01,automatic_bbref_match +6670,Yacksel Rios,7,riosya01,1650,Yacksel Rios,riosya01,automatic_bbref_match +6671,Michael King,7,kingmi01,1047,Michael King,kingmi01,automatic_bbref_match +6672,Odubel Herrera,7,herreod01,882,Odubel Herrera,herreod01,automatic_bbref_match +6673,DJ LeMahieu,7,lemahdj01,1114,DJ LeMahieu,lemahdj01,automatic_bbref_match +6674,Darwinzon Hernandez,7,hernada02,877,Darwinzon Hernandez,hernada02,automatic_bbref_match +6675,Daniel Hudson,7,hudsoda01,933,Daniel Hudson,hudsoda01,automatic_bbref_match +6676,Zack Greinke,7,greinza01,774,Zack Greinke,greinza01,automatic_bbref_match +6677,Brett Gardner,7,gardnbr01,695,Brett Gardner,gardnbr01,automatic_bbref_match +6678,Logan Gilbert,7,gilbelo01,718,Logan Gilbert,gilbelo01,automatic_bbref_match +6679,Jo Adell,7,adelljo01,20,Jo Adell,adelljo01,automatic_bbref_match +6680,Pedro Severino,7,severpe01,1804,Pedro Severino,severpe01,automatic_bbref_match +6681,Antonio Senzatela,7,senzaan01,1801,Antonio Senzatela,senzaan01,automatic_bbref_match +6682,Michael Pineda,7,pinedmi01,1560,Michael Pineda,pinedmi01,automatic_bbref_match +6683,Jeff Hoffman,7,hoffmje02,910,Jeff Hoffman,hoffmje02,automatic_bbref_match +6684,Luke Weaver,7,weavelu01,2124,Luke Weaver,weavelu01,automatic_bbref_match +6685,Paolo Espino,7,espinpa01,583,Paolo Espino,espinpa01,automatic_bbref_match +6686,Ryne Harper,7,harpery01,824,Ryne Harper,harpery01,automatic_bbref_match +6687,Alex Reyes,7,reyesal02,1635,Alex Reyes,reyesal02,automatic_bbref_match +6688,Adbert Alzolay,7,alzolad01,63,Adbert Alzolay,alzolad01,automatic_bbref_match +6689,Tyler Wade,7,wadety01,2094,Tyler Wade,wadety01,automatic_bbref_match +6690,Domingo German,7,germado01,713,Domingo German,germado01,automatic_bbref_match +6691,Christian Vazquez,7,vazquch01,2063,Christian Vazquez,vazquch01,automatic_bbref_match +6692,Blake Parker,7,parkebl01,1499,Blake Parker,parkebl01,automatic_bbref_match +6693,Amed Rosario,7,rosaram01,1711,Amed Rosario,rosaram01,automatic_bbref_match +6694,Mike Mayers,7,mayermi01,1251,Mike Mayers,mayermi01,automatic_bbref_match +6695,Joe Ross,7,rossjo01,1715,Joe Ross,rossjo01,automatic_bbref_match +6696,Nick Sandlin,7,sandlni01,1752,Nick Sandlin,sandlni01,automatic_bbref_match +6697,Jorge Mateo,7,mateojo01,1233,Jorge Mateo,mateojo01,automatic_bbref_match +6698,Kyle Higashioka,7,higasky01,895,Kyle Higashioka,higasky01,automatic_bbref_match +6699,Raimel Tapia,7,tapiara01,1957,Raimel Tapia,tapiara01,automatic_bbref_match +6700,Jordan Luplow,7,luplojo01,1168,Jordan Luplow,luplojo01,automatic_bbref_match +6701,Jon Berti,7,bertijo01,183,Jon Berti,bertijo01,automatic_bbref_match +6702,Bailey Ober,7,oberba01,1447,Bailey Ober,oberba01,automatic_bbref_match +6703,Emmanuel Rivera,7,riverem01,1657,Emmanuel Rivera,riverem01,automatic_bbref_match +6704,Eloy Jimenez,7,jimenel02,980,Eloy Jimenez,jimenel02,automatic_bbref_match +6705,Curt Casali,7,casalcu01,334,Curt Casali,casalcu01,automatic_bbref_match +6706,Miguel Diaz,7,diazmi02,504,Miguel Diaz,diazmi02,automatic_bbref_match +6707,Robinson Chirinos,7,chiriro01,373,Robinson Chirinos,chiriro01,automatic_bbref_match +6708,Kyle Seager,7,seageky01,1793,Kyle Seager,seageky01,automatic_bbref_match +6709,Austin Gomber,7,gombeau01,730,Austin Gomber,gombeau01,automatic_bbref_match +6710,Eric Hosmer,7,hosmeer01,926,Eric Hosmer,hosmeer01,automatic_bbref_match +6711,Tyler Naquin,7,naquity01,1399,Tyler Naquin,naquity01,automatic_bbref_match +6712,Taylor Widener,7,widenta01,2149,Taylor Widener,widenta01,automatic_bbref_match +6713,David Price,7,priceda01,1585,David Price,priceda01,automatic_bbref_match +6714,Charlie Blackmon,7,blackch02,205,Charlie Blackmon,blackch02,automatic_bbref_match +6715,Bruce Zimmermann,7,zimmebr02,2231,Bruce Zimmermann,zimmebr02,automatic_bbref_match +6716,Wandy Peralta,7,peralwa01,1524,Wandy Peralta,peralwa01,automatic_bbref_match +6717,Humberto Castellanos,7,castehu01,339,Humberto Castellanos,castehu01,automatic_bbref_match +6718,Kyle McGowin,7,mcgowky01,1276,Kyle McGowin,mcgowky01,automatic_bbref_match +6719,Robert Stephenson,7,stephro01,1904,Robert Stephenson,stephro01,automatic_bbref_match +6720,Tom Murphy,7,murphto04,1388,Tom Murphy,murphto04,automatic_bbref_match +6721,Pierce Johnson,7,johnspi01,985,Pierce Johnson,johnspi01,automatic_bbref_match +6722,Drew Smyly,7,smylydr01,1858,Drew Smyly,smylydr01,automatic_bbref_match +6723,Yusmeiro Petit,7,petityu01,1549,Yusmeiro Petit,petityu01,automatic_bbref_match +6724,Bryan Shaw,7,shawbr01,1808,Bryan Shaw,shawbr01,automatic_bbref_match +6725,Luis Torrens,7,torrelu01,2002,Luis Torrens,torrelu01,automatic_bbref_match +6726,Eddie Rosario,7,rosared01,1710,Eddie Rosario,rosared01,automatic_bbref_match +6727,Taylor Rogers,7,rogerta01,1689,Taylor Rogers,rogerta01,automatic_bbref_match +6728,Wil Myers,7,myerswi01,1395,Wil Myers,myerswi01,automatic_bbref_match +6729,Gary Sanchez,7,sanchga02,1746,Gary Sanchez,sanchga02,automatic_bbref_match +6730,Alex Kirilloff,7,kirilal01,1055,Alex Kirilloff,kirilal01,automatic_bbref_match +6731,Webster Rivas,7,rivaswe01,1652,Webster Rivas,rivaswe01,automatic_bbref_match +6732,Caleb Smith,7,smithca03,1845,Caleb Smith,smithca03,automatic_bbref_match +6733,Hanser Alberto,7,alberha01,30,Hanser Alberto,alberha01,automatic_bbref_match +6734,Kris Bubic,7,bubickr01,274,Kris Bubic,bubickr01,automatic_bbref_match +6735,Dane Dunning,7,dunnida01,548,Dane Dunning,dunnida01,automatic_bbref_match +6736,Ryan Mountcastle,7,mountry01,1377,Ryan Mountcastle,mountry01,automatic_bbref_match +6737,Gleyber Torres,7,torregl01,2003,Gleyber Torres,torregl01,automatic_bbref_match +6738,Sam Hilliard,7,hillisa01,903,Sam Hilliard,hillisa01,automatic_bbref_match +6739,Sam Coonrod,7,coonrsa01,414,Sam Coonrod,coonrsa01,automatic_bbref_match +6740,Spencer Patton,7,pattosp01,1505,Spencer Patton,pattosp01,automatic_bbref_match +6741,Nick Maton,7,matonni01,1239,Nick Maton,matonni01,automatic_bbref_match +6742,Elieser Hernandez,7,hernael01,874,Elieser Hernandez,hernael01,automatic_bbref_match +6743,Tommy Pham,7,phamth01,1552,Tommy Pham,phamth01,automatic_bbref_match +6744,Tyler Anderson,7,anderty01,68,Tyler Anderson,anderty01,automatic_bbref_match +6745,Nick Ahmed,7,ahmedni01,26,Nick Ahmed,ahmedni01,automatic_bbref_match +6746,Seth Lugo,7,lugose01,1165,Seth Lugo,lugose01,automatic_bbref_match +6747,Hirokazu Sawamura,7,sawamhi01,1769,Hirokazu Sawamura,sawamhi01,automatic_bbref_match +6749,Josh Rojas,7,rojasjo01,1695,Josh Rojas,rojasjo01,automatic_bbref_match +6750,Dylan Moore,7,mooredy01,1358,Dylan Moore,mooredy01,automatic_bbref_match +6752,Tyler Kinley,7,kinlety01,1050,Tyler Kinley,kinlety01,automatic_bbref_match +6753,Aaron Bummer,7,bummeaa01,279,Aaron Bummer,bummeaa01,automatic_bbref_match +6754,Jordan Holloway,7,hollojo01,917,Jordan Holloway,hollojo01,automatic_bbref_match +6755,Garrett Hampson,7,hampsga01,814,Garrett Hampson,hampsga01,automatic_bbref_match +6756,Kevin Pillar,7,pillake01,1557,Kevin Pillar,pillake01,automatic_bbref_match +6757,Ehire Adrianza,7,adriaeh01,22,Ehire Adrianza,adriaeh01,automatic_bbref_match +6758,Yimi Garcia,7,garciyi01,680,Yimi Garcia,garciyi01,automatic_bbref_match +6759,Miguel Castro,7,castrmi01,350,Miguel Castro,castrmi01,automatic_bbref_match +6760,Erik Swanson,7,swanser01,1948,Erik Swanson,swanser01,automatic_bbref_match +6761,Gio Urshela,7,urshegi01,2042,Gio Urshela,urshegi01,automatic_bbref_match +6762,Reese McGuire,7,mcguire01,1277,Reese McGuire,mcguire01,automatic_bbref_match +6763,Victor Gonzalez,7,gonzavi02,743,Victor Gonzalez,gonzavi02,automatic_bbref_match +6764,Sean Doolittle,7,doolise01,528,Sean Doolittle,doolise01,automatic_bbref_match +6765,Cole Irvin,7,irvinco01,954,Cole Irvin,irvinco01,automatic_bbref_match +6766,Joey Lucchesi,7,lucchjo01,1160,Joey Lucchesi,lucchjo01,automatic_bbref_match +6767,Eddy Alvarez,7,alvared01,60,Eddy Alvarez,alvared01,automatic_bbref_match +6768,Archie Bradley,7,bradlar01,236,Archie Bradley,bradlar01,automatic_bbref_match +6769,Nick Neidert,7,neideni01,1408,Nick Neidert,neideni01,automatic_bbref_match +6770,Mike Minor,7,minormi01,1335,Mike Minor,minormi01,automatic_bbref_match +6771,Mauricio Dubon,7,dubonma01,538,Mauricio Dubon,dubonma01,automatic_bbref_match +6772,Trey Mancini,7,mancitr01,1190,Trey Mancini,mancitr01,automatic_bbref_match +6773,Jake Brentz,7,brentja01,251,Jake Brentz,brentja01,automatic_bbref_match +6774,Brent Suter,7,suterbr01,1943,Brent Suter,suterbr01,automatic_bbref_match +6775,David Peralta,7,peralda01,1522,David Peralta,peralda01,automatic_bbref_match +6776,Ryan Jeffers,7,jeffery01,975,Ryan Jeffers,jeffery01,automatic_bbref_match +6777,Ross Stripling,7,stripro01,1927,Ross Stripling,stripro01,automatic_bbref_match +6778,Johnny Cueto,7,cuetojo01,451,Johnny Cueto,cuetojo01,automatic_bbref_match +6779,Adam Ottavino,7,ottavad01,1475,Adam Ottavino,ottavad01,automatic_bbref_match +6780,Luis V Garcia,7,garcilu04,694,Luis Garcia Jr,garcilu04,automatic_bbref_match +6781,Trevor Larnach,7,larnatr01,1094,Trevor Larnach,larnatr01,automatic_bbref_match +6782,Codi Heuer,7,heuerco01,890,Codi Heuer,heuerco01,automatic_bbref_match +6783,Yonathan Daza,7,dazayo01,476,Yonathan Daza,dazayo01,automatic_bbref_match +6784,Trevor Stephan,7,stephtr01,1902,Trevor Stephan,stephtr01,automatic_bbref_match +6785,Ervin Santana,7,santaer01,1758,Ervin Santana,santaer01,automatic_bbref_match +6786,Sergio Alcantara,7,alcanse01,34,Sergio Alcantara,alcanse01,automatic_bbref_match +6787,Nick Solak,7,solakni01,1867,Nick Solak,solakni01,automatic_bbref_match +6788,Ryne Stanek,7,stanery01,1892,Ryne Stanek,stanery01,automatic_bbref_match +6789,John Gant,7,gantjo01,677,John Gant,gantjo01,automatic_bbref_match +6790,Sean Nolin,7,nolinse01,1434,Sean Nolin,nolinse01,automatic_bbref_match +6791,Yermin Mercedes,7,merceye01,1307,Yermin Mercedes,merceye01,automatic_bbref_match +6792,Miguel Sano,7,sanomi01,1757,Miguel Sano,sanomi01,automatic_bbref_match +6793,Kevin Plawecki,7,plaweke01,1565,Kevin Plawecki,plaweke01,automatic_bbref_match +6794,Tomas Nido,7,nidoto01,1424,Tomas Nido,nidoto01,automatic_bbref_match +6795,Martin Perez,7,perezma02,1535,Martin Perez,perezma02,automatic_bbref_match +6796,Blake Taylor,7,taylobl01,1966,Blake Taylor,taylobl01,automatic_bbref_match +6797,Jose Rondon,7,rondojo02,1707,Jose Rondon,rondojo02,automatic_bbref_match +6798,Gavin Sheets,7,sheetga01,1811,Gavin Sheets,sheetga01,automatic_bbref_match +6799,Austin Barnes,7,barneau01,132,Austin Barnes,barneau01,automatic_bbref_match +6800,Justin Garza,7,garzaju01,703,Justin Garza,garzaju01,automatic_bbref_match +6801,Jake Diekman,7,diekmja01,514,Jake Diekman,diekmja01,automatic_bbref_match +6802,Brad Miller,7,millebr02,1322,Brad Miller,millebr02,automatic_bbref_match +6803,Tylor Megill,7,megilty01,1295,Tylor Megill,megilty01,automatic_bbref_match +6804,Jake Odorizzi,7,odorija01,1452,Jake Odorizzi,odorija01,automatic_bbref_match +6805,Brett Martin,7,martibr01,1218,Brett Martin,martibr01,automatic_bbref_match +6806,Trevor May,7,maytr01,1248,Trevor May,maytr01,automatic_bbref_match +6807,Michael Conforto,7,confomi01,407,Michael Conforto,confomi01,automatic_bbref_match +6808,Kenta Maeda,7,maedake01,1181,Kenta Maeda,maedake01,automatic_bbref_match +6809,Taijuan Walker,7,walketa01,2105,Taijuan Walker,walketa01,automatic_bbref_match +6810,Jordy Mercer,7,mercejo03,1308,Jordy Mercer,mercejo03,automatic_bbref_match +6811,Touki Toussaint,7,toussto01,2005,Touki Toussaint,toussto01,automatic_bbref_match +6812,Kyle Hendricks,7,hendrky01,856,Kyle Hendricks,hendrky01,automatic_bbref_match +6813,AJ Minter,7,minteaj01,1336,AJ Minter,minteaj01,automatic_bbref_match +6814,Kevin Newman,7,newmake01,1420,Kevin Newman,newmake01,automatic_bbref_match +6815,Chris Martin,7,martich02,1214,Chris Martin,martich02,automatic_bbref_match +6816,Randal Grichuk,7,grichra01,775,Randal Grichuk,grichra01,automatic_bbref_match +6817,Andres Machado,7,machaan02,1176,Andres Machado,machaan02,automatic_bbref_match +6818,Robert Gsellman,7,gsellro01,782,Robert Gsellman,gsellro01,automatic_bbref_match +6819,Travis dArnaud,7,darnatr01,461,Travis dArnaud,darnatr01,automatic_bbref_match +6820,Jose Alvarado,7,alvarjo03,58,Jose Alvarado,alvarjo03,automatic_bbref_match +6821,Guillermo Heredia,7,heredgu01,862,Guillermo Heredia,heredgu01,automatic_bbref_match +6822,Chad Pinder,7,pindech01,1559,Chad Pinder,pindech01,automatic_bbref_match +6823,Cavan Biggio,7,biggica01,196,Cavan Biggio,biggica01,automatic_bbref_match +6824,Rougned Odor,7,odorro01,1451,Rougned Odor,odorro01,automatic_bbref_match +6825,DJ Peters,7,peterdj01,1545,DJ Peters,peterdj01,automatic_bbref_match +6826,Alex Lange,7,langeal01,1091,Alex Lange,langeal01,automatic_bbref_match +6827,Jarrod Dyson,7,dysonja01,555,Jarrod Dyson,dysonja01,automatic_bbref_match +6828,Josh Sborz,7,sborzjo01,1770,Josh Sborz,sborzjo01,automatic_bbref_match +6829,Jorge Alcala,7,alcaljo01,32,Jorge Alcala,alcaljo01,automatic_bbref_match +6830,Jose Cisnero,7,cisnejo01,382,Jose Cisnero,cisnejo01,automatic_bbref_match +6831,Deolis Guerra,7,guerrde01,787,Deolis Guerra,guerrde01,automatic_bbref_match +6832,Brandon Marsh,7,marshbr02,1205,Brandon Marsh,marshbr02,automatic_bbref_match +6833,Luke Voit,7,voitlu01,2087,Luke Voit,voitlu01,automatic_bbref_match +6834,Tommy La Stella,7,lasteto01,1082,Tommy La Stella,lasteto01,automatic_bbref_match +6835,JB Wendelken,7,wendejb01,2134,JB Wendelken,wendejb01,automatic_bbref_match +6836,Yu Chang,7,changyu01,364,Yu Chang,changyu01,automatic_bbref_match +6837,Josh Naylor,7,naylojo01,1404,Josh Naylor,naylojo01,automatic_bbref_match +6838,Jeffrey Springs,7,sprinje01,1889,Jeffrey Springs,sprinje01,automatic_bbref_match +6839,Jake Woodford,7,woodfja01,2195,Jake Woodford,woodfja01,automatic_bbref_match +6840,Asdrubal Cabrera,7,cabreas01,299,Asdrubal Cabrera,cabreas01,automatic_bbref_match +6841,Jason Heyward,7,heywaja01,891,Jason Heyward,heywaja01,automatic_bbref_match +6842,Albert Abreu,7,abreual01,9,Albert Abreu,abreual01,automatic_bbref_match +6843,Christian Walker,7,walkech02,2104,Christian Walker,walkech02,automatic_bbref_match +6844,Elvis Andrus,7,andruel01,77,Elvis Andrus,andruel01,automatic_bbref_match +6845,Dinelson Lamet,7,lametdi01,1090,Dinelson Lamet,lametdi01,automatic_bbref_match +6846,Bobby Bradley,7,bradlbo01,237,Bobby Bradley,bradlbo01,automatic_bbref_match +6847,Kyle Crick,7,crickky01,435,Kyle Crick,crickky01,automatic_bbref_match +6848,Wade LeBlanc,7,leblawa01,1104,Wade LeBlanc,leblawa01,automatic_bbref_match +6849,Joshua Fuentes,7,fuentjo01,664,Joshua Fuentes,fuentjo01,automatic_bbref_match +6850,Carlos Estevez,7,estevca01,585,Carlos Estevez,estevca01,automatic_bbref_match +6851,Jose Quijada,7,quijajo01,1594,Jose Quijada,quijajo01,automatic_bbref_match +6852,Tayler Saucedo,7,sauceta01,1768,Tayler Saucedo,sauceta01,automatic_bbref_match +6853,Cesar Hernandez,7,hernace02,870,Cesar Hernandez,hernace02,automatic_bbref_match +6854,Jake Marisnick,7,marisja01,1200,Jake Marisnick,marisja01,automatic_bbref_match +6855,Nabil Crismatt,7,crismna01,436,Nabil Crismatt,crismna01,automatic_bbref_match +6856,Steven Brault,7,braulst01,243,Steven Brault,braulst01,automatic_bbref_match +6857,Kyle Garlick,7,garliky01,696,Kyle Garlick,garliky01,automatic_bbref_match +6858,Taylor Jones,7,jonesta01,992,Taylor Jones,jonesta01,automatic_bbref_match +6859,Luke Williams,7,willilu01,2159,Luke Williams,willilu01,automatic_bbref_match +6860,Nick Gordon,7,gordoni01,752,Nick Gordon,gordoni01,automatic_bbref_match +6861,Matt Peacock,7,peacoma01,1511,Matt Peacock,peacoma01,automatic_bbref_match +6862,Ronald Torreyes,7,torrero01,2004,Ronald Torreyes,torrero01,automatic_bbref_match +6863,Eli Morgan,7,morgael01,1369,Eli Morgan,morgael01,automatic_bbref_match +6864,Trevor Williams,7,willitr01,2156,Trevor Williams,willitr01,automatic_bbref_match +6865,Tucker Barnhart,7,barnhtu01,135,Tucker Barnhart,barnhtu01,automatic_bbref_match +6866,JT Brubaker,7,brubajt01,269,JT Brubaker,brubajt01,automatic_bbref_match +6867,Cody Poteet,7,poteeco01,1579,Cody Poteet,poteeco01,automatic_bbref_match +6868,Corey Dickerson,7,dickeco01,513,Corey Dickerson,dickeco01,automatic_bbref_match +6869,Joe Smith,7,smithjo05,1842,Joe Smith,smithjo05,automatic_bbref_match +6870,Sean Newcomb,7,newcose01,1419,Sean Newcomb,newcose01,automatic_bbref_match +6871,Anthony Banda,7,bandaan01,121,Anthony Banda,bandaan01,automatic_bbref_match +6918,Jake Arrieta,7,arrieja01,94,Jake Arrieta,arrieja01,automatic_bbref_match +6872,Zach Pop,7,popza01,1575,Zach Pop,popza01,automatic_bbref_match +6873,Victor Reyes,7,reyesvi01,1638,Victor Reyes,reyesvi01,automatic_bbref_match +6874,Bobby Dalbec,7,dalbebo01,458,Bobby Dalbec,dalbebo01,automatic_bbref_match +6875,Andrew Vaughn,7,vaughan01,2061,Andrew Vaughn,vaughan01,automatic_bbref_match +6876,Matt Beaty,7,beatyma01,157,Matt Beaty,beatyma01,automatic_bbref_match +6877,Bryse Wilson,7,wilsobr02,2171,Bryse Wilson,wilsobr02,automatic_bbref_match +6878,Duane Underwood,7,underdu01,2033,Duane Underwood,underdu01,automatic_bbref_match +6879,Jack Mayfield,7,mayfija01,1252,Jack Mayfield,mayfija01,automatic_bbref_match +6880,Jakob Junis,7,junisja01,1004,Jakob Junis,junisja01,automatic_bbref_match +6881,Andrew Heaney,7,heanean01,843,Andrew Heaney,heanean01,automatic_bbref_match +6882,Ross Detwiler,7,detwiro01,497,Ross Detwiler,detwiro01,automatic_bbref_match +6883,John Curtiss,7,curtijo02,455,John Curtiss,curtijo02,automatic_bbref_match +6884,Genesis Cabrera,7,cabrege01,301,Genesis Cabrera,cabrege01,automatic_bbref_match +6885,Garrett Richards,7,richaga01,1645,Garrett Richards,richaga01,automatic_bbref_match +6886,Anthony Misiewicz,7,misiean01,1338,Anthony Misiewicz,misiean01,automatic_bbref_match +6887,Luis Patino,7,patinlu01,1504,Luis Patino,patinlu01,automatic_bbref_match +6888,Yadiel Hernandez,7,hernaya01,875,Yadiel Hernandez,hernaya01,automatic_bbref_match +6889,Billy McKinney,7,mckinbi01,1283,Billy McKinney,mckinbi01,automatic_bbref_match +6890,Derek Holland,7,hollade01,914,Derek Holland,hollade01,automatic_bbref_match +6891,Austin Adams,7,adamsau02,16,Austin Adams,adamsau02,automatic_bbref_match +6892,Taylor Hearn,7,hearnta01,844,Taylor Hearn,hearnta01,automatic_bbref_match +6893,Anthony Santander,7,santaan02,1764,Anthony Santander,santaan02,automatic_bbref_match +6894,Magneuris Sierra,7,sierrma01,1823,Magneuris Sierra,sierrma01,automatic_bbref_match +6895,Andrew Stevenson,7,stevean01,1906,Andrew Stevenson,stevean01,automatic_bbref_match +6896,Harold Ramirez,7,ramirha02,1609,Harold Ramirez,ramirha02,automatic_bbref_match +6897,Anthony Bass,7,bassan01,145,Anthony Bass,bassan01,automatic_bbref_match +6898,Sergio Romo,7,romose01,1705,Sergio Romo,romose01,automatic_bbref_match +6899,Griffin Canning,7,cannigr01,317,Griffin Canning,cannigr01,automatic_bbref_match +6900,Brock Holt,7,holtbr01,921,Brock Holt,holtbr01,automatic_bbref_match +6901,Jose Trevino,7,trevijo01,2013,Jose Trevino,trevijo01,automatic_bbref_match +6902,Chad Kuhl,7,kuhlch01,1078,Chad Kuhl,kuhlch01,automatic_bbref_match +6903,Greg Holland,7,hollagr01,915,Greg Holland,hollagr01,automatic_bbref_match +6904,Brett Anderson,7,anderbr04,66,Brett Anderson,anderbr04,automatic_bbref_match +6905,Ryan OHearn,7,ohearry01,1453,Ryan OHearn,ohearry01,automatic_bbref_match +6906,Jorge Lopez,7,lopezjo02,1144,Jorge Lopez,lopezjo02,automatic_bbref_match +6907,Brady Singer,7,singebr01,1827,Brady Singer,singebr01,automatic_bbref_match +6908,Jed Lowrie,7,lowrije01,1158,Jed Lowrie,lowrije01,automatic_bbref_match +6909,Bryan Abreu,7,abreubr01,8,Bryan Abreu,abreubr01,automatic_bbref_match +6910,Keegan Akin,7,akinke01,27,Keegan Akin,akinke01,automatic_bbref_match +6911,Kolby Allard,7,allarko01,42,Kolby Allard,allarko01,automatic_bbref_match +6912,Logan Allen,7,allenlo01,45,Logan Allen,allenlo01,automatic_bbref_match +6913,Yency Almonte,7,almonye01,50,Yency Almonte,almonye01,automatic_bbref_match +6914,Chase Anderson,7,anderch01,67,Chase Anderson,anderch01,automatic_bbref_match +6915,Matt Andriese,7,andrima01,76,Matt Andriese,andrima01,automatic_bbref_match +6916,Kohei Arihara,7,arihako01,90,Kohei Arihara,arihako01,automatic_bbref_match +6917,Shawn Armstrong,7,armstsh01,91,Shawn Armstrong,armstsh01,automatic_bbref_match +6919,Aaron Ashby,7,ashbyaa01,98,Aaron Ashby,ashbyaa01,automatic_bbref_match +6920,Daniel Bard,7,bardda01,125,Daniel Bard,bardda01,automatic_bbref_match +6921,Charlie Barnes,7,barnech01,134,Charlie Barnes,barnech01,automatic_bbref_match +6922,Jacob Barnes,7,barneja01,133,Jacob Barnes,barneja01,automatic_bbref_match +6923,Brandon Bielak,7,bielabr01,195,Brandon Bielak,bielabr01,automatic_bbref_match +6924,Paul Blackburn,7,blackpa01,204,Paul Blackburn,blackpa01,automatic_bbref_match +6925,Ben Bowden,7,bowdebe01,227,Ben Bowden,bowdebe01,automatic_bbref_match +6926,Brad Brach,7,brachbr01,232,Brad Brach,brachbr01,automatic_bbref_match +6927,Rex Brothers,7,brothre01,264,Rex Brothers,brothre01,automatic_bbref_match +6928,Dylan Bundy,7,bundydy01,280,Dylan Bundy,bundydy01,automatic_bbref_match +6929,Edward Cabrera,7,cabreed02,302,Edward Cabrera,cabreed02,automatic_bbref_match +6930,Trevor Cahill,7,cahiltr01,304,Trevor Cahill,cahiltr01,automatic_bbref_match +6931,Paul Campbell,7,campbpa02,313,Paul Campbell,campbpa02,automatic_bbref_match +6932,Carlos Carrasco,7,carraca01,331,Carlos Carrasco,carraca01,automatic_bbref_match +6933,Anthony Castro,7,castran02,351,Anthony Castro,castran02,automatic_bbref_match +6934,Tyler Chatwood,7,chatwty01,369,Tyler Chatwood,chatwty01,automatic_bbref_match +6935,Taylor Clarke,7,clarkta01,384,Taylor Clarke,clarkta01,automatic_bbref_match +6936,Alex Claudio,7,claudal01,387,Alex Claudio,claudal01,automatic_bbref_match +6937,Sam Clay,7,claysa01,388,Sam Clay,claysa01,automatic_bbref_match +6938,Alex Colome,7,colomal01,404,Alex Colome,colomal01,automatic_bbref_match +6939,Patrick Corbin,7,corbipa01,416,Patrick Corbin,corbipa01,automatic_bbref_match +6940,Wil Crowe,7,crowewi01,446,Wil Crowe,crowewi01,automatic_bbref_match +6941,Zach Davies,7,davieza02,465,Zach Davies,davieza02,automatic_bbref_match +6942,Austin Davis,7,davisau01,471,Austin Davis,davisau01,automatic_bbref_match +6943,Wade Davis,7,daviswa01,468,Wade Davis,daviswa01,automatic_bbref_match +6944,Brett de Geus,7,degeubr01,477,Brett de Geus,degeubr01,automatic_bbref_match +6945,Chase De Jong,7,dejonch01,478,Chase De Jong,dejonch01,automatic_bbref_match +6946,Enyel De Los Santos,7,delosen01,482,Enyel De Los Santos,delosen01,automatic_bbref_match +6947,Randy Dobnak,7,dobnara01,521,Randy Dobnak,dobnara01,automatic_bbref_match +6948,Rafael Dolis,7,dolisra01,523,Rafael Dolis,dolisra01,automatic_bbref_match +6950,Demarcus Evans,7,evansde01,590,DeMarcus Evans,evansde01,automatic_bbref_match +6951,Pete Fairbanks,7,fairbpe01,592,Pete Fairbanks,fairbpe01,automatic_bbref_match +6952,Bailey Falter,7,falteba01,594,Bailey Falter,falteba01,automatic_bbref_match +6953,Jeurys Familia,7,familje01,595,Jeurys Familia,familje01,automatic_bbref_match +6954,Jake Faria,7,fariaja01,596,Jake Faria,fariaja01,automatic_bbref_match +6955,Buck Farmer,7,farmebu01,597,Buck Farmer,farmebu01,automatic_bbref_match +6956,Erick Fedde,7,feddeer01,600,Erick Fedde,feddeer01,automatic_bbref_match +6957,Kyle Finnegan,7,finneky01,617,Kyle Finnegan,finneky01,automatic_bbref_match +6958,Josh Fleming,7,flemijo01,623,Josh Fleming,flemijo01,automatic_bbref_match +6959,Mike Foltynewicz,7,foltymi01,633,Mike Foltynewicz,foltymi01,automatic_bbref_match +6960,Matt Foster,7,fostema01,638,Matt Foster,fostema01,automatic_bbref_match +6961,Paul Fry,7,frypa01,662,Paul Fry,frypa01,automatic_bbref_match +6962,Bryan Garcia,7,garcibr01,685,Bryan Garcia,garcibr01,automatic_bbref_match +6963,Amir Garrett,7,garream01,698,Amir Garrett,garream01,automatic_bbref_match +6964,Braxton Garrett,7,garrebr01,701,Braxton Garrett,garrebr01,automatic_bbref_match +6965,Kevin Ginkel,7,ginkeke01,722,Kevin Ginkel,ginkeke01,automatic_bbref_match +6966,Chi Chi Gonzalez,7,gonzach01,737,Chi Chi Gonzalez,gonzach01,automatic_bbref_match +6967,Brusdar Graterol,7,gratebr01,763,Brusdar Graterol,gratebr01,automatic_bbref_match +6968,Josiah Gray,7,grayjo03,767,Josiah Gray,grayjo03,automatic_bbref_match +6969,Junior Guerra,7,guerrju02,785,Junior Guerra,guerrju02,automatic_bbref_match +6970,David Hale,7,haleda02,805,David Hale,haleda02,automatic_bbref_match +6971,Brad Hand,7,handbr01,816,Brad Hand,handbr01,automatic_bbref_match +6972,JA Happ,7,happja01,821,JA Happ,happja01,automatic_bbref_match +6973,Matt Harvey,7,harvema01,835,Matt Harvey,harvema01,automatic_bbref_match +6974,Ryan Helsley,7,helslry01,853,Ryan Helsley,helslry01,automatic_bbref_match +6975,Heath Hembree,7,hembrhe01,854,Heath Hembree,hembrhe01,automatic_bbref_match +6976,Ryan Hendrix,7,hendrry01,858,Ryan Hendrix,hendrry01,automatic_bbref_match +6977,Sam Hentges,7,hentgsa01,861,Sam Hentges,hentgsa01,automatic_bbref_match +6978,Tim Hill,7,hillti01,900,Tim Hill,hillti01,automatic_bbref_match +6979,Spencer Howard,7,howarsp01,930,Spencer Howard,howarsp01,automatic_bbref_match +6980,Sam Howard,7,howarsa01,929,Sam Howard,howarsa01,automatic_bbref_match +6981,Griffin Jax,7,jaxgr01,972,Griffin Jax,jaxgr01,automatic_bbref_match +6982,Joe Jimenez,7,jimenjo02,979,Joe Jimenez,jimenjo02,automatic_bbref_match +6983,Anthony Kay,7,kayan01,1012,Anthony Kay,kayan01,automatic_bbref_match +6984,Brad Keller,7,kellebr01,1016,Brad Keller,kellebr01,automatic_bbref_match +6985,Kyle Keller,7,kelleky01,1018,Kyle Keller,kelleky01,automatic_bbref_match +6986,Mitch Keller,7,kellemi03,1017,Mitch Keller,kellemi03,automatic_bbref_match +6987,Dallas Keuchel,7,keuchda01,1035,Dallas Keuchel,keuchda01,automatic_bbref_match +6988,John King,7,kingjo01,1045,John King,kingjo01,automatic_bbref_match +6989,Brandon Kintzler,7,kintzbr01,1052,Brandon Kintzler,kintzbr01,automatic_bbref_match +6990,Reiss Knehr,7,knehrre01,1064,Reiss Knehr,knehrre01,automatic_bbref_match +6991,Jackson Kowar,7,kowarja01,1072,Jackson Kowar,kowarja01,automatic_bbref_match +6992,Max Kranick,7,kranima01,1073,Max Kranick,kranima01,automatic_bbref_match +6993,Dean Kremer,7,kremede01,1077,Dean Kremer,kremede01,automatic_bbref_match +6994,Travis Lakins,7,lakintr01,1085,Travis Lakins,lakintr01,automatic_bbref_match +6995,Jon Lester,7,lestejo01,1117,Jon Lester,lestejo01,automatic_bbref_match +6996,Sammy Long,7,longsa01,1139,Sam Long,longsa01,automatic_bbref_match +6997,Michael Lorenzen,7,lorenmi01,1151,Michael Lorenzen,lorenmi01,automatic_bbref_match +6998,Zac Lowther,7,lowthza01,1159,Zac Lowther,lowthza01,automatic_bbref_match +6999,Jesus Luzardo,7,luzarje01,1170,Jesus Luzardo,luzarje01,automatic_bbref_match +7000,Jordan Lyles,7,lylesjo01,1171,Jordan Lyles,lylesjo01,automatic_bbref_match +7001,Daniel Lynch,7,lynchda02,1172,Daniel Lynch,lynchda02,automatic_bbref_match +7002,Matt Manning,7,mannima02,1191,Matt Manning,mannima02,automatic_bbref_match +7003,Joe Mantiply,7,mantijo01,1193,Joe Mantiply,mantijo01,automatic_bbref_match +7004,Evan Marshall,7,marshev01,1207,Evan Marshall,marshev01,automatic_bbref_match +7005,Carlos Martinez,7,martica04,1223,Carlos Martinez,martica04,automatic_bbref_match +7006,Phil Maton,7,matonph01,1238,Phil Maton,matonph01,automatic_bbref_match +7007,Chris Mazza,7,mazzach01,1257,Chris Mazza,mazzach01,automatic_bbref_match +7008,Nick Mears,7,mearsni01,1292,Nick Mears,mearsni01,automatic_bbref_match +7010,Keynan Middleton,7,middlke01,1316,Keynan Middleton,middlke01,automatic_bbref_match +7011,Miles Mikolas,7,mikolmi01,1317,Miles Mikolas,mikolmi01,automatic_bbref_match +7012,Andrew Miller,7,millean01,1320,Andrew Miller,millean01,automatic_bbref_match +7013,Alec Mills,7,millsal02,1330,Alec Mills,millsal02,automatic_bbref_match +7014,Rafael Montero,7,montera01,1352,Rafael Montero,montera01,automatic_bbref_match +7015,Matt Moore,7,moorema02,1357,Matt Moore,moorema02,automatic_bbref_match +7016,Adam Morgan,7,morgaad01,1368,Adam Morgan,morgaad01,automatic_bbref_match +7017,Patrick Murphy,7,murphpa02,1389,Patrick Murphy,murphpa02,automatic_bbref_match +7018,Tommy Nance,7,nanceto01,1398,Tommy Nance,nanceto01,automatic_bbref_match +7019,Daniel Norris,7,norrida01,1439,Daniel Norris,norrida01,automatic_bbref_match +7020,Johan Oviedo,7,oviedjo01,1479,Johan Oviedo,oviedjo01,automatic_bbref_match +7021,Chris Paddack,7,paddach01,1483,Chris Paddack,paddach01,automatic_bbref_match +7022,Emilio Pagan,7,paganem01,1484,Emilio Pagan,paganem01,automatic_bbref_match +7023,David Peterson,7,peterda01,1548,David Peterson,peterda01,automatic_bbref_match +7024,Adam Plutko,7,plutkad01,1567,Adam Plutko,plutkad01,automatic_bbref_match +7025,Daniel Ponce de Leon,7,ponceda01,1574,Daniel Ponce de Leon,ponceda01,automatic_bbref_match +7026,Cody Ponce,7,ponceco01,1573,Cody Ponce,ponceco01,automatic_bbref_match +7027,Jose Quintana,7,quintjo01,1596,Jose Quintana,quintjo01,automatic_bbref_match +7028,Tanner Rainey,7,raineta01,1599,Tanner Rainey,raineta01,automatic_bbref_match +7029,Brooks Raley,7,raleybr01,1601,Brooks Raley,raleybr01,automatic_bbref_match +7030,Erasmo Ramirez,7,ramirer02,1604,Erasmo Ramirez,ramirer02,automatic_bbref_match +7031,Hansel Robles,7,robleha01,1665,Hansel Robles,robleha01,automatic_bbref_match +7032,Joely Rodriguez,7,rodrijo06,1673,Joely Rodriguez,rodrijo06,automatic_bbref_match +7033,Michael Rucker,7,ruckemi01,1721,Michael Rucker,ruckemi01,automatic_bbref_match +7034,Miguel Sanchez,7,sanchmi01,1750,Miguel Sanchez,sanchmi01,automatic_bbref_match +7035,Dennis Santana,7,santade01,1762,Dennis Santana,santade01,automatic_bbref_match +7036,Tanner Scott,7,scottta01,1788,Tanner Scott,scottta01,automatic_bbref_match +7037,Justus Sheffield,7,sheffju01,1813,Justus Sheffield,sheffju01,automatic_bbref_match +7038,Matt Shoemaker,7,shoemma01,1817,Matt Shoemaker,shoemma01,automatic_bbref_match +7039,Aaron Slegers,7,slegeaa01,1839,Aaron Slegers,slegeaa01,automatic_bbref_match +7040,Burch Smith,7,smithbu03,1844,Burch Smith,smithbu03,automatic_bbref_match +7041,Riley Smith,7,smithri01,1850,Riley Smith,smithri01,automatic_bbref_match +7042,Joakim Soria,7,soriajo01,1872,Joakim Soria,soriajo01,automatic_bbref_match +7043,Wander Suero,7,suerowa01,1940,Wander Suero,suerowa01,automatic_bbref_match +7044,Mason Thompson,7,thompma02,1984,Mason Thompson,thompma02,automatic_bbref_match +7045,Trent Thornton,7,thorntr01,1988,Trent Thornton,thorntr01,automatic_bbref_match +7046,Josh Tomlin,7,tomlijo01,1996,Josh Tomlin,tomlijo01,automatic_bbref_match +7047,Jose Urena,7,urenajo01,2035,Jose Urena,urenajo01,automatic_bbref_match +7048,Cesar Valdez,7,valdece01,2046,Cesar Valdez,valdece01,automatic_bbref_match +7049,Phillips Valdez,7,valdeph01,2047,Phillips Valdez,valdeph01,automatic_bbref_match +7050,Vince Velasquez,7,velasvi01,2065,Vince Velasquez,velasvi01,automatic_bbref_match +7051,Will Vest,7,vestwi01,2074,Will Vest,vestwi01,automatic_bbref_match +7052,Austin Voth,7,vothau01,2091,Austin Voth,vothau01,automatic_bbref_match +7053,Michael Wacha,7,wachami01,2093,Michael Wacha,wachami01,automatic_bbref_match +7054,Andrew Wantz,7,wantzan01,2115,Andrew Wantz,wantzan01,automatic_bbref_match +7055,Spenser Watkins,7,watkisp01,2121,Spenser Watkins,watkisp01,automatic_bbref_match +7056,Ryan Weathers,7,weathry01,2123,Ryan Weathers,weathry01,automatic_bbref_match +7057,Jacob Webb,7,webbja01,2126,Jacob Webb,webbja01,automatic_bbref_match +7058,Alexander Wells,7,wellsal01,2133,Alexander Wells,wellsal01,automatic_bbref_match +7059,Mitch White,7,whitemi03,2143,Mitch White,whitemi03,automatic_bbref_match +7060,Rowan Wick,7,wickro01,2147,Rowan Wick,wickro01,automatic_bbref_match +7061,Justin Wilson,7,wilsoju10,2167,Justin Wilson,wilsoju10,automatic_bbref_match +7062,Dan Winkler,7,winklda01,2178,Dan Winkler,winklda01,automatic_bbref_match +7063,Matt Wisler,7,wislema01,2183,Matt Wisler,wislema01,automatic_bbref_match +7064,Nick Wittgren,7,wittgni01,2185,Nick Wittgren,wittgni01,automatic_bbref_match +7065,Brandon Workman,7,workmbr01,2198,Brandon Workman,workmbr01,automatic_bbref_match +7066,Hyeon jong Yang,7,yanghy01,2207,Hyeon jong Yang,yanghy01,automatic_bbref_match +7067,Ryan Yarbrough,7,yarbrry01,2208,Ryan Yarbrough,yarbrry01,automatic_bbref_match +7068,Alex Young,7,youngal01,2217,Alex Young,youngal01,automatic_bbref_match +7069,Kyle Zimmer,7,zimmeky01,2228,Kyle Zimmer,zimmeky01,automatic_bbref_match +7070,Tyler Zuber,7,zuberty01,2233,Tyler Zuber,zuberty01,automatic_bbref_match +7071,Andy Young,7,youngan02,2220,Andy Young,youngan02,automatic_bbref_match +7072,Derek Hill,7,hillde01,899,Derek Hill,hillde01,automatic_bbref_match +7073,Albert Pujols,7,pujolal01,1591,Albert Pujols,pujolal01,automatic_bbref_match +7074,Austin Romine,7,rominau01,1704,Austin Romine,rominau01,automatic_bbref_match +7075,Nick Senzel,7,senzeni01,1802,Nick Senzel,senzeni01,automatic_bbref_match +7076,Willi Castro,7,castrwi01,352,Willi Castro,castrwi01,automatic_bbref_match +7077,Juan Lagares,7,lagarju01,1083,Juan Lagares,lagarju01,automatic_bbref_match +7078,Jorge Alfaro,7,alfarjo01,40,Jorge Alfaro,alfarjo01,automatic_bbref_match +7079,Ben Gamel,7,gamelbe01,676,Ben Gamel,gamelbe01,automatic_bbref_match +7080,Rob Refsnyder,7,refsnro01,1626,Rob Refsnyder,refsnro01,automatic_bbref_match +7081,Khris Davis,7,daviskh01,469,Khris Davis,daviskh01,automatic_bbref_match +7082,Rodolfo Castro,7,castrro01,353,Rodolfo Castro,castrro01,automatic_bbref_match +7083,Jose Iglesias,7,iglesjo01,949,Jose Iglesias,iglesjo01,automatic_bbref_match +7084,Yoshi Tsutsugo,7,tsutsyo01,2021,Yoshi Tsutsugo,tsutsyo01,automatic_bbref_match +7085,Cristian Pache,7,pachecr01,1482,Cristian Pache,pachecr01,automatic_bbref_match +7086,Yohel Pozo,7,pozoyo01,1581,Yohel Pozo,pozoyo01,automatic_bbref_match +7087,Jorge Soler,7,solerjo01,1870,Jorge Soler,solerjo01,automatic_bbref_match +7088,Victor Caratini,7,caratvi01,325,Victor Caratini,caratvi01,automatic_bbref_match +7089,Willie Calhoun,7,calhowi01,307,Willie Calhoun,calhowi01,automatic_bbref_match +7090,Lewis Brinson,7,brinsle01,258,Lewis Brinson,brinsle01,automatic_bbref_match +7091,Marwin Gonzalez,7,gonzama01,741,Marwin Gonzalez,gonzama01,automatic_bbref_match +7092,Breyvic Valera,7,valerbr01,2051,Breyvic Valera,valerbr01,automatic_bbref_match +7093,Erik Gonzalez,7,gonzaer01,742,Erik Gonzalez,gonzaer01,automatic_bbref_match +7094,Michael Chavis,7,chavimi01,371,Michael Chavis,chavimi01,automatic_bbref_match +7095,Cal Raleigh,7,raleica01,1600,Cal Raleigh,raleica01,automatic_bbref_match +7096,Alec Bohm,7,bohmal01,217,Alec Bohm,bohmal01,automatic_bbref_match +7097,Maikel Franco,7,francma02,645,Maikel Franco,francma02,automatic_bbref_match +7098,Phil Gosselin,7,gosseph01,757,Phil Gosselin,gosseph01,automatic_bbref_match +7099,Kelvin Gutierrez,7,gutieke01,796,Kelvin Gutierrez,gutieke01,automatic_bbref_match +7100,Dominic Smith,7,smithdo02,1849,Dominic Smith,smithdo02,automatic_bbref_match +7101,Rene Rivera,7,riverre01,1655,Rene Rivera,riverre01,automatic_bbref_match +7102,Jonah Heim,7,heimjo01,849,Jonah Heim,heimjo01,automatic_bbref_match +7103,Willians Astudillo,7,astudwi01,101,Willians Astudillo,astudwi01,automatic_bbref_match +7104,John Nogowski,7,nogowjo01,1431,John Nogowski,nogowjo01,automatic_bbref_match +7105,Stephen Piscotty,7,piscost01,1563,Stephen Piscotty,piscost01,automatic_bbref_match +7106,Joc Pederson,7,pederjo01,1514,Joc Pederson,pederjo01,automatic_bbref_match +7107,Edward Olivares,7,olivaed02,1458,Edward Olivares,olivaed02,automatic_bbref_match +7108,Rowdy Tellez,7,tellero01,1972,Rowdy Tellez,tellero01,automatic_bbref_match +7109,James McCann,7,mccanja02,1261,James McCann,mccanja02,automatic_bbref_match +7110,Josh Reddick,7,reddijo01,1623,Josh Reddick,reddijo01,automatic_bbref_match +7111,Kurt Suzuki,7,suzukku01,1945,Kurt Suzuki,suzukku01,automatic_bbref_match +7112,Leody Taveras,7,taverle01,1962,Leody Taveras,taverle01,automatic_bbref_match +7113,Zach McKinstry,7,mckinza01,1284,Zach McKinstry,mckinza01,automatic_bbref_match +7114,Richie Martin,7,martiri01,1216,Richie Martin,martiri01,automatic_bbref_match +7115,Orlando Arcia,7,arciaor01,86,Orlando Arcia,arciaor01,automatic_bbref_match +7116,Ernie Clement,7,clemeer01,391,Ernie Clement,clemeer01,automatic_bbref_match +7117,Jose Peraza,7,perazjo01,1527,Jose Peraza,perazjo01,automatic_bbref_match +7118,Aaron Hicks,7,hicksaa01,892,Aaron Hicks,hicksaa01,automatic_bbref_match +7119,Justin Upton,7,uptonju01,2034,Justin Upton,uptonju01,automatic_bbref_match +7120,Luis Rengifo,7,rengilu01,1632,Luis Rengifo,rengilu01,automatic_bbref_match +7121,Pavin Smith,7,smithpa04,1851,Pavin Smith,smithpa04,automatic_bbref_match +7122,Phillip Evans,7,evansph01,589,Phillip Evans,evansph01,automatic_bbref_match +7123,Jose Rojas,7,rojasjo02,1696,Jose Rojas,rojasjo02,automatic_bbref_match +7124,Carlos Santana,7,santaca01,1759,Carlos Santana,santaca01,automatic_bbref_match +7125,Niko Goodrum,7,goodrni01,748,Niko Goodrum,goodrni01,automatic_bbref_match +7126,Roberto Perez,7,perezro02,1538,Roberto Perez,perezro02,automatic_bbref_match +7127,Wilmer Difo,7,difowi01,516,Wilmer Difo,difowi01,automatic_bbref_match +7128,Jarren Duran,7,duranja01,552,Jarren Duran,duranja01,automatic_bbref_match +7129,Austin Wynns,7,wynnsau01,2202,Austin Wynns,wynnsau01,automatic_bbref_match +7130,David Bote,7,boteda01,224,David Bote,boteda01,automatic_bbref_match +7131,Brent Rooker,7,rookebr01,1708,Brent Rooker,rookebr01,automatic_bbref_match +7132,Pat Valaika,7,valaipa01,2044,Pat Valaika,valaipa01,automatic_bbref_match +7133,Sheldon Neuse,7,neusesh01,1415,Sheldon Neuse,neusesh01,automatic_bbref_match +7134,Josh VanMeter,7,vanmejo01,2052,Josh VanMeter,vanmejo01,automatic_bbref_match +7135,Shed Long,7,longsh01,1138,Shed Long,longsh01,automatic_bbref_match +7136,Aristides Aquino,7,aquinar01,81,Aristides Aquino,aquinar01,automatic_bbref_match +7137,Miguel Andujar,7,andujmi01,78,Miguel Andujar,andujmi01,automatic_bbref_match +7138,Jake Bauers,7,bauerja01,151,Jake Bauers,bauerja01,automatic_bbref_match +7139,Miguel Cabrera,7,cabremi01,298,Miguel Cabrera,cabremi01,automatic_bbref_match +7140,Danny Mendick,7,mendida01,1302,Danny Mendick,mendida01,automatic_bbref_match +7141,Jarred Kelenic,7,kelenja01,1015,Jarred Kelenic,kelenja01,automatic_bbref_match +7142,Martin Maldonado,7,maldoma01,1187,Martin Maldonado,maldoma01,automatic_bbref_match +7143,Daz Cameron,7,camerda01,310,Daz Cameron,camerda01,automatic_bbref_match +7144,Ryan McKenna,7,mckenry01,1281,Ryan McKenna,mckenry01,automatic_bbref_match +7145,Hoy Park,7,parkho01,1498,Hoy Park,parkho01,automatic_bbref_match +7146,Jake Lamb,7,lambja01,1087,Jake Lamb,lambja01,automatic_bbref_match +7147,Will Craig,7,craigwi01,429,Will Craig,craigwi01,automatic_bbref_match +7148,Isaac Paredes,7,paredis01,1497,Isaac Paredes,paredis01,automatic_bbref_match +7149,Aramis Garcia,7,garciar01,683,Aramis Garcia,garciar01,automatic_bbref_match +7150,Ender Inciarte,7,inciaen01,952,Ender Inciarte,inciaen01,automatic_bbref_match +7151,Donovan Walton,7,waltodo01,2113,Donovan Walton,waltodo01,automatic_bbref_match +7152,Harold Castro,7,castrha01,349,Harold Castro,castrha01,automatic_bbref_match +7153,William Contreras,7,contrwi02,411,William Contreras,contrwi02,automatic_bbref_match +7154,Owen Miller,7,milleow01,1327,Owen Miller,milleow01,automatic_bbref_match +7155,Zack Collins,7,colliza01,403,Zack Collins,colliza01,automatic_bbref_match +7156,Eugenio Suarez,7,suareeu01,1934,Eugenio Suarez,suareeu01,automatic_bbref_match +7157,Patrick Mazeika,7,mazeipa01,1255,Patrick Mazeika,mazeipa01,automatic_bbref_match +7158,Andrew Velazquez,7,velazan01,2067,Andrew Velazquez,velazan01,automatic_bbref_match +7159,Eric Sogard,7,sogarer01,1865,Eric Sogard,sogarer01,automatic_bbref_match +7160,Wilson Ramos,7,ramoswi01,1612,Wilson Ramos,ramoswi01,automatic_bbref_match +7161,Anthony Rendon,7,rendoan01,1630,Anthony Rendon,rendoan01,automatic_bbref_match +7162,Stephen Vogt,7,vogtst01,2086,Stephen Vogt,vogtst01,automatic_bbref_match +7163,Marcell Ozuna,7,ozunama01,1481,Marcell Ozuna,ozunama01,automatic_bbref_match +7164,Hunter Dozier,7,doziehu01,533,Hunter Dozier,doziehu01,automatic_bbref_match +7165,Abraham Almonte,7,almonab01,49,Abraham Almonte,almonab01,automatic_bbref_match +7166,Austin Hedges,7,hedgeau01,848,Austin Hedges,hedgeau01,automatic_bbref_match +7167,Carter Kieboom,7,kieboca01,1038,Carter Kieboom,kieboca01,automatic_bbref_match +7168,Shogo Akiyama,7,akiyash01,28,Shogo Akiyama,akiyash01,automatic_bbref_match +7169,Jonathan Arauz,7,arauzjo01,84,Jonathan Arauz,arauzjo01,automatic_bbref_match +7170,Grayson Greiner,7,greingr01,773,Grayson Greiner,greingr01,automatic_bbref_match +7171,Didi Gregorius,7,gregodi01,772,Didi Gregorius,gregodi01,automatic_bbref_match +7172,Keston Hiura,7,hiurake01,905,Keston Hiura,hiurake01,automatic_bbref_match +7173,Chad Wallach,7,wallach01,2108,Chad Wallach,wallach01,automatic_bbref_match +7174,Adam Eaton,7,eatonad02,556,Adam Eaton,eatonad02,automatic_bbref_match +7175,Mitch Moreland,7,morelmi01,1365,Mitch Moreland,morelmi01,automatic_bbref_match +7176,Kole Calhoun,7,calhoko01,306,Kole Calhoun,calhoko01,automatic_bbref_match +7177,DJ Stewart,7,stewadj01,1909,DJ Stewart,stewadj01,automatic_bbref_match +7178,Clint Frazier,7,frazicl01,649,Clint Frazier,frazicl01,automatic_bbref_match +7179,Sandy Leon,7,leonsa01,1115,Sandy Leon,leonsa01,automatic_bbref_match +7180,Victor Robles,7,roblevi01,1666,Victor Robles,roblevi01,automatic_bbref_match +7181,Seby Zavala,7,zavalse01,2223,Seby Zavala,zavalse01,automatic_bbref_match +7182,Alex Blandino,7,blandal01,210,Alex Blandino,blandal01,automatic_bbref_match +7183,Colin Moran,7,moranco01,1360,Colin Moran,moranco01,automatic_bbref_match +7184,Jurickson Profar,7,profaju01,1587,Jurickson Profar,profaju01,automatic_bbref_match +7185,Gregory Polanco,7,polangr01,1569,Gregory Polanco,polangr01,automatic_bbref_match +7186,Isan Diaz,7,diazis01,508,Isan Diaz,diazis01,automatic_bbref_match +7187,Rio Ruiz,7,ruizri01,1723,Rio Ruiz,ruizri01,automatic_bbref_match +7188,Zack Short,7,shortza01,1818,Zack Short,shortza01,automatic_bbref_match +7189,Franchy Cordero,7,cordefr02,418,Franchy Cordero,cordefr02,automatic_bbref_match +7190,Tim Locastro,7,locasti01,1133,Tim Locastro,locasti01,automatic_bbref_match +7191,Jackie Bradley Jr,7,bradlja02,239,Jackie Bradley Jr,bradlja02,automatic_bbref_match +7192,Daniel Vogelbach,7,vogelda01,2085,Daniel Vogelbach,vogelda01,automatic_bbref_match +7193,Daniel Johnson,7,johnsda07,988,Daniel Johnson,johnsda07,automatic_bbref_match +7194,Jason Vosler,7,vosleja01,2090,Jason Vosler,vosleja01,automatic_bbref_match +7195,Danny Santana,7,santada01,1760,Danny Santana,santada01,automatic_bbref_match +7196,Alex Dickerson,7,dickeal01,512,Alex Dickerson,dickeal01,automatic_bbref_match +7197,Travis Shaw,7,shawtr01,1809,Travis Shaw,shawtr01,automatic_bbref_match +7198,Eli White,7,whiteel04,2140,Eli White,whiteel04,automatic_bbref_match +7199,Cody Bellinger,7,bellico01,170,Cody Bellinger,bellico01,automatic_bbref_match +7200,Dom Nunez,7,nunezdo01,1444,Dom Nunez,nunezdo01,automatic_bbref_match +7201,Michael Perez,7,perezmi03,1539,Michael Perez,perezmi03,automatic_bbref_match +7202,Daniel Robertson,7,roberda10,1663,Daniel Robertson,roberda10,automatic_bbref_match +7203,Sam Haggerty,7,haggesa01,803,Sam Haggerty,haggesa01,automatic_bbref_match +7204,Evan White,7,whiteev01,2142,Evan White,whiteev01,automatic_bbref_match +7205,Cole Tucker,7,tuckeco01,2022,Cole Tucker,tuckeco01,automatic_bbref_match +7206,Gerardo Parra,7,parrage01,1501,Gerardo Parra,parrage01,automatic_bbref_match +7207,David Dahl,7,dahlda01,457,David Dahl,dahlda01,automatic_bbref_match +7208,Ben Rortvedt,7,rortvbe01,1709,Ben Rortvedt,rortvbe01,automatic_bbref_match +7209,Kean Wong,7,wongke01,2190,Kean Wong,wongke01,automatic_bbref_match +7210,Kaai Tom,7,tomka01,1995,Kaai Tom,tomka01,automatic_bbref_match +7211,Pablo Sandoval,7,sandopa01,1753,Pablo Sandoval,sandopa01,automatic_bbref_match +7212,Jahmai Jones,7,jonesja08,993,Jahmai Jones,jonesja08,automatic_bbref_match +7213,Jonathan Davis,7,davisjo05,470,Jonathan Davis,davisjo05,automatic_bbref_match +7214,Mike Moustakas,7,moustmi01,1378,Mike Moustakas,moustmi01,automatic_bbref_match +7215,Taylor Trammell,7,trammta01,2008,Taylor Trammell,trammta01,automatic_bbref_match +7216,Kevan Smith,7,smithke04,1847,Kevan Smith,smithke04,automatic_bbref_match +7217,Andrew Romine,7,rominan01,1703,Andrew Romine,rominan01,automatic_bbref_match +7218,Mike Tauchman,7,tauchmi01,1961,Mike Tauchman,tauchmi01,automatic_bbref_match +7219,Brian Goodwin,7,goodwbr01,749,Brian Goodwin,goodwbr01,automatic_bbref_match +7220,Justin Williams,7,williju02,2162,Justin Williams,williju02,automatic_bbref_match +7221,Jake Cave,7,caveja01,354,Jake Cave,caveja01,automatic_bbref_match +7222,Robel Garcia,7,garciro02,682,Robel Garcia,garciro02,automatic_bbref_match +7223,Joe Panik,7,panikjo01,1493,Joe Panik,panikjo01,automatic_bbref_match +7224,JaCoby Jones,7,jonesja07,991,JaCoby Jones,jonesja07,automatic_bbref_match +7225,Max Schrock,7,schroma01,1781,Max Schrock,schroma01,automatic_bbref_match +7226,Jason Martin,7,martija03,1217,Jason Martin,martija03,automatic_bbref_match +7227,Luke Raley,7,raleylu01,1602,Luke Raley,raleylu01,automatic_bbref_match +7228,Ildemaro Vargas,7,vargail01,2054,Ildemaro Vargas,vargail01,automatic_bbref_match +7229,Nomar Mazara,7,mazarno01,1254,Nomar Mazara,mazarno01,automatic_bbref_match +7230,Matt Carpenter,7,carpema01,329,Matt Carpenter,carpema01,automatic_bbref_match +7231,Andrew Knizner,7,kniznan01,1065,Andrew Knizner,kniznan01,automatic_bbref_match +7232,Mike Ford,7,fordmi01,635,Mike Ford,fordmi01,automatic_bbref_match +7233,Jose Marmolejos,7,marmojo01,1203,Jose Marmolejos,marmojo01,automatic_bbref_match +7234,Stevie Wilkerson,7,wilkest01,2153,Stevie Wilkerson,wilkest01,automatic_bbref_match +7235,Alex Jackson,7,jacksal02,961,Alex Jackson,jacksal02,automatic_bbref_match +7236,Domingo Leyba,7,leybado01,1120,Domingo Leyba,leybado01,automatic_bbref_match +7237,Chance Sisco,7,siscoch01,1831,Chance Sisco,siscoch01,automatic_bbref_match +7238,Andrew Knapp,7,knappan01,1062,Andrew Knapp,knappan01,automatic_bbref_match +7239,Drew Ellis,7,ellisdr01,569,Drew Ellis,ellisdr01,automatic_bbref_match +7240,Aaron Ashby,8,ashbyaa01,98,Aaron Ashby,ashbyaa01,automatic_bbref_match +7241,Aaron Bummer,8,bummeaa01,279,Aaron Bummer,bummeaa01,automatic_bbref_match +7242,Aaron Civale,8,civalaa01,383,Aaron Civale,civalaa01,automatic_bbref_match +7243,Aaron Hicks,8,hicksaa01,892,Aaron Hicks,hicksaa01,automatic_bbref_match +7244,Aaron Judge,8,judgeaa01,3,Aaron Judge,judgeaa01,automatic_bbref_match +7245,Aaron Loup,8,loupaa01,1152,Aaron Loup,loupaa01,automatic_bbref_match +7246,Aaron Nola,8,nolaaa01,1433,Aaron Nola,nolaaa01,automatic_bbref_match +7247,Aaron Sanchez,8,sanchaa01,1745,Aaron Sanchez,sanchaa01,automatic_bbref_match +7248,Abraham Toro,8,toroab01,2001,Abraham Toro,toroab01,automatic_bbref_match +7249,Adam Cimber,8,cimbead01,380,Adam Cimber,cimbead01,automatic_bbref_match +7250,Adam Duvall,8,duvalad01,553,Adam Duvall,duvalad01,automatic_bbref_match +7251,Adam Engel,8,engelad01,574,Adam Engel,engelad01,automatic_bbref_match +7252,Adam Frazier,8,fraziad01,648,Adam Frazier,fraziad01,automatic_bbref_match +7253,Adam Oller,8,ollerad01,1459,Adam Oller,ollerad01,automatic_bbref_match +7254,Adam Ottavino,8,ottavad01,1475,Adam Ottavino,ottavad01,automatic_bbref_match +7255,Adam Wainwright,8,wainwad01,2099,Adam Wainwright,wainwad01,automatic_bbref_match +7256,Adley Rutschman,8,rutscad01,1729,Adley Rutschman,rutscad01,automatic_bbref_match +7257,Adolis Garcia,8,garciad02,690,Adolis Garcia,garciad02,automatic_bbref_match +7258,Adrian Houser,8,housead01,928,Adrian Houser,housead01,automatic_bbref_match +7259,Adrian Martinez,8,martiad01,1225,Adrian Martinez,martiad01,automatic_bbref_match +7260,Adrian Morejon,8,morejad01,1363,Adrian Morejon,morejad01,automatic_bbref_match +7261,Adrian Sampson,8,sampsad01,1742,Adrian Sampson,sampsad01,automatic_bbref_match +7262,AJ Minter,8,minteaj01,1336,AJ Minter,minteaj01,automatic_bbref_match +7263,AJ Pollock,8,polloaj01,1571,AJ Pollock,polloaj01,automatic_bbref_match +7264,AJ Puk,8,pukaj01,1592,AJ Puk,pukaj01,automatic_bbref_match +7265,Akil Baddoo,8,baddoak01,109,Akil Baddoo,baddoak01,automatic_bbref_match +7266,Alan Trejo,8,trejoal01,2012,Alan Trejo,trejoal01,automatic_bbref_match +7267,Albert Abreu,8,abreual01,9,Albert Abreu,abreual01,automatic_bbref_match +7268,Albert Almora Jr,8,almoral01,51,Albert Almora Jr,almoral01,automatic_bbref_match +7269,Albert Pujols,8,pujolal01,1591,Albert Pujols,pujolal01,automatic_bbref_match +7270,Alcides Escobar,8,escobal02,580,Alcides Escobar,escobal02,automatic_bbref_match +7271,Alec Bohm,8,bohmal01,217,Alec Bohm,bohmal01,automatic_bbref_match +7272,Aledmys Diaz,8,diazal02,505,Aledmys Diaz,diazal02,automatic_bbref_match +7273,Alejandro Kirk,8,kirkal01,1056,Alejandro Kirk,kirkal01,automatic_bbref_match +7274,Alejo Lopez,8,lopezal03,1148,Alejo Lopez,lopezal03,automatic_bbref_match +7275,Alek Manoah,8,manoaal01,1192,Alek Manoah,manoaal01,automatic_bbref_match +7276,Alek Thomas,8,thomaal01,1979,Alek Thomas,thomaal01,automatic_bbref_match +7277,Alex Bregman,8,bregmal01,248,Alex Bregman,bregmal01,automatic_bbref_match +7278,Alex Call,8,callal02,308,Alex Call,callal02,automatic_bbref_match +7279,Alex Cobb,8,cobbal01,394,Alex Cobb,cobbal01,automatic_bbref_match +7280,Alex Colome,8,colomal01,404,Alex Colome,colomal01,automatic_bbref_match +7281,Alex Faedo,8,faedoal01,591,Alex Faedo,faedoal01,automatic_bbref_match +7282,Alex Kirilloff,8,kirilal01,1055,Alex Kirilloff,kirilal01,automatic_bbref_match +7283,Alex Lange,8,langeal01,1091,Alex Lange,langeal01,automatic_bbref_match +7284,Alex Verdugo,8,verdual01,2069,Alex Verdugo,verdual01,automatic_bbref_match +7285,Alex Vesia,8,vesiaal01,2072,Alex Vesia,vesiaal01,automatic_bbref_match +7286,Alex Wood,8,woodal02,2193,Alex Wood,woodal02,automatic_bbref_match +7287,Alex Young,8,youngal01,2217,Alex Young,youngal01,automatic_bbref_match +7288,Alexis Diaz,8,diazal03,509,Alexis Diaz,diazal03,automatic_bbref_match +7289,Alfonso Rivas,8,rivasal01,1654,Alfonso Rivas,rivasal01,automatic_bbref_match +7290,Amed Rosario,8,rosaram01,1711,Amed Rosario,rosaram01,automatic_bbref_match +7291,Amir Garrett,8,garream01,698,Amir Garrett,garream01,automatic_bbref_match +7292,Andre Pallante,8,pallaan01,1492,Andre Pallante,pallaan01,automatic_bbref_match +7293,Andrelton Simmons,8,simmoan01,1825,Andrelton Simmons,simmoan01,automatic_bbref_match +7294,Andres Gimenez,8,gimenan01,721,Andres Gimenez,gimenan01,automatic_bbref_match +7295,Andres Machado,8,machaan02,1176,Andres Machado,machaan02,automatic_bbref_match +7296,Andres Munoz,8,munozan01,1384,Andres Munoz,munozan01,automatic_bbref_match +7297,Andrew Bellatti,8,bellaan01,169,Andrew Bellatti,bellaan01,automatic_bbref_match +7298,Andrew Benintendi,8,beninan01,177,Andrew Benintendi,beninan01,automatic_bbref_match +7299,Andrew Chafin,8,chafian01,363,Andrew Chafin,chafian01,automatic_bbref_match +7300,Andrew Heaney,8,heanean01,843,Andrew Heaney,heanean01,automatic_bbref_match +7301,Andrew Kittredge,8,kittran01,1057,Andrew Kittredge,kittran01,automatic_bbref_match +7302,Andrew Knizner,8,kniznan01,1065,Andrew Knizner,kniznan01,automatic_bbref_match +7303,Andrew McCutchen,8,mccutan01,1272,Andrew McCutchen,mccutan01,automatic_bbref_match +7304,Andrew Vaughn,8,vaughan01,2061,Andrew Vaughn,vaughan01,automatic_bbref_match +7305,Andrew Velazquez,8,velazan01,2067,Andrew Velazquez,velazan01,automatic_bbref_match +7306,Andrew Wantz,8,wantzan01,2115,Andrew Wantz,wantzan01,automatic_bbref_match +7307,Andy Ibanez,8,ibanean01,948,Andy Ibanez,ibanean01,automatic_bbref_match +7308,Anibal Sanchez,8,sanchan01,1743,Anibal Sanchez,sanchan01,automatic_bbref_match +7309,Anthony Banda,8,bandaan01,121,Anthony Banda,bandaan01,automatic_bbref_match +7310,Anthony Bass,8,bassan01,145,Anthony Bass,bassan01,automatic_bbref_match +7311,Anthony Bender,8,bendean01,176,Anthony Bender,bendean01,automatic_bbref_match +7312,Anthony Gose,8,gosean01,756,Anthony Gose,gosean01,automatic_bbref_match +7313,Anthony Misiewicz,8,misiean01,1338,Anthony Misiewicz,misiean01,automatic_bbref_match +7314,Anthony Rendon,8,rendoan01,1630,Anthony Rendon,rendoan01,automatic_bbref_match +7315,Anthony Rizzo,8,rizzoan01,1658,Anthony Rizzo,rizzoan01,automatic_bbref_match +7316,Anthony Santander,8,santaan02,1764,Anthony Santander,santaan02,automatic_bbref_match +7317,Antonio Senzatela,8,senzaan01,1801,Antonio Senzatela,senzaan01,automatic_bbref_match +7318,Aramis Garcia,8,garciar01,683,Aramis Garcia,garciar01,automatic_bbref_match +7319,Aristides Aquino,8,aquinar01,81,Aristides Aquino,aquinar01,automatic_bbref_match +7320,Aroldis Chapman,8,chapmar01,366,Aroldis Chapman,chapmar01,automatic_bbref_match +7321,Art Warren,8,warrear01,2119,Art Warren,warrear01,automatic_bbref_match +7322,Austin Barnes,8,barneau01,132,Austin Barnes,barneau01,automatic_bbref_match +7323,Austin Davis,8,davisau01,471,Austin Davis,davisau01,automatic_bbref_match +7324,Austin Gomber,8,gombeau01,730,Austin Gomber,gombeau01,automatic_bbref_match +7325,Austin Hays,8,haysau01,839,Austin Hays,haysau01,automatic_bbref_match +7326,Austin Hedges,8,hedgeau01,848,Austin Hedges,hedgeau01,automatic_bbref_match +7327,Austin Meadows,8,meadoau01,1290,Austin Meadows,meadoau01,automatic_bbref_match +7328,Austin Nola,8,nolaau01,1432,Austin Nola,nolaau01,automatic_bbref_match +7329,Austin Pruitt,8,pruitau01,1588,Austin Pruitt,pruitau01,automatic_bbref_match +7330,Austin Riley,8,rileyau01,1649,Austin Riley,rileyau01,automatic_bbref_match +7331,Austin Romine,8,rominau01,1704,Austin Romine,rominau01,automatic_bbref_match +7332,Austin Slater,8,slateau01,1838,Austin Slater,slateau01,automatic_bbref_match +7333,Austin Voth,8,vothau01,2091,Austin Voth,vothau01,automatic_bbref_match +7334,Austin Wynns,8,wynnsau01,2202,Austin Wynns,wynnsau01,automatic_bbref_match +7335,Avisail Garcia,8,garciav01,678,Avisail Garcia,garciav01,automatic_bbref_match +7336,Bailey Falter,8,falteba01,594,Bailey Falter,falteba01,automatic_bbref_match +7337,Bailey Ober,8,oberba01,1447,Bailey Ober,oberba01,automatic_bbref_match +7338,Beau Brieske,8,briesbe01,256,Beau Brieske,briesbe01,automatic_bbref_match +7339,Ben Gamel,8,gamelbe01,676,Ben Gamel,gamelbe01,automatic_bbref_match +7340,Bennett Sousa,8,sousabe01,1880,Bennett Sousa,sousabe01,automatic_bbref_match +7341,Blake Snell,8,snellbl01,1861,Blake Snell,snellbl01,automatic_bbref_match +7342,Bligh Madris,8,madribl01,1179,Bligh Madris,madribl01,automatic_bbref_match +7343,Bo Bichette,8,bichebo01,190,Bo Bichette,bichebo01,automatic_bbref_match +7344,Bobby Dalbec,8,dalbebo01,458,Bobby Dalbec,dalbebo01,automatic_bbref_match +7345,Bobby Witt Jr,8,wittbo02,2184,Bobby Witt Jr,wittbo02,automatic_bbref_match +7346,Brad Boxberger,8,boxbebr01,229,Brad Boxberger,boxbebr01,automatic_bbref_match +7347,Brad Hand,8,handbr01,816,Brad Hand,handbr01,automatic_bbref_match +7348,Brad Keller,8,kellebr01,1016,Brad Keller,kellebr01,automatic_bbref_match +7349,Brad Miller,8,millebr02,1322,Brad Miller,millebr02,automatic_bbref_match +7350,Bradley Zimmer,8,zimmebr01,2227,Bradley Zimmer,zimmebr01,automatic_bbref_match +7351,Brady Singer,8,singebr01,1827,Brady Singer,singebr01,automatic_bbref_match +7352,Brandon Belt,8,beltbr01,173,Brandon Belt,beltbr01,automatic_bbref_match +7353,Brandon Crawford,8,crawfbr01,430,Brandon Crawford,crawfbr01,automatic_bbref_match +7354,Brandon Drury,8,drurybr01,535,Brandon Drury,drurybr01,automatic_bbref_match +7355,Brandon Hughes,8,hughebr01,938,Brandon Hughes,hughebr01,automatic_bbref_match +7356,Brandon Lowe,8,lowebr01,1156,Brandon Lowe,lowebr01,automatic_bbref_match +7357,Brandon Marsh,8,marshbr02,1205,Brandon Marsh,marshbr02,automatic_bbref_match +7358,Brandon Nimmo,8,nimmobr01,1425,Brandon Nimmo,nimmobr01,automatic_bbref_match +7359,Brandon Woodruff,8,woodrbr01,2196,Brandon Woodruff,woodrbr01,automatic_bbref_match +7360,Braxton Garrett,8,garrebr01,701,Braxton Garrett,garrebr01,automatic_bbref_match +7361,Brayan Bello,8,bellobr01,171,Brayan Bello,bellobr01,automatic_bbref_match +7362,Brendan Donovan,8,donovbr01,527,Brendan Donovan,donovbr01,automatic_bbref_match +7363,Brendan Rodgers,8,rodgebr02,1668,Brendan Rodgers,rodgebr02,automatic_bbref_match +7364,Brent Suter,8,suterbr01,1943,Brent Suter,suterbr01,automatic_bbref_match +7365,Brett Martin,8,martibr01,1218,Brett Martin,martibr01,automatic_bbref_match +7366,Brett Phillips,8,phillbr02,1555,Brett Phillips,phillbr02,automatic_bbref_match +7367,Brian Anderson,8,anderbr06,69,Brian Anderson,anderbr06,automatic_bbref_match +7368,Brian Serven,8,servebr01,1803,Brian Serven,servebr01,automatic_bbref_match +7369,Brock Burke,8,burkebr01,284,Brock Burke,burkebr01,automatic_bbref_match +7370,Brooks Raley,8,raleybr01,1601,Brooks Raley,raleybr01,automatic_bbref_match +7371,Bruce Zimmermann,8,zimmebr02,2231,Bruce Zimmermann,zimmebr02,automatic_bbref_match +7372,Brusdar Graterol,8,gratebr01,763,Brusdar Graterol,gratebr01,automatic_bbref_match +7373,Bryan Abreu,8,abreubr01,8,Bryan Abreu,abreubr01,automatic_bbref_match +7374,Bryan Baker,8,bakerbr01,117,Bryan Baker,bakerbr01,automatic_bbref_match +7375,Bryan De La Cruz,8,delacbr01,479,Bryan De La Cruz,delacbr01,automatic_bbref_match +7376,Bryan Reynolds,8,reynobr01,1641,Bryan Reynolds,reynobr01,automatic_bbref_match +7377,Bryan Shaw,8,shawbr01,1808,Bryan Shaw,shawbr01,automatic_bbref_match +7378,Bryce Elder,8,elderbr01,564,Bryce Elder,elderbr01,automatic_bbref_match +7379,Bryce Harper,8,harpebr03,823,Bryce Harper,harpebr03,automatic_bbref_match +7380,Bryse Wilson,8,wilsobr02,2171,Bryse Wilson,wilsobr02,automatic_bbref_match +7381,Bryson Stott,8,stottbr01,1915,Bryson Stott,stottbr01,automatic_bbref_match +7382,Bubba Thompson,8,thompbu01,1986,Bubba Thompson,thompbu01,automatic_bbref_match +7383,Buck Farmer,8,farmebu01,597,Buck Farmer,farmebu01,automatic_bbref_match +7384,Buddy Kennedy,8,kennebu01,1030,Buddy Kennedy,kennebu01,automatic_bbref_match +7385,Byron Buxton,8,buxtoby01,295,Byron Buxton,buxtoby01,automatic_bbref_match +7386,Cal Quantrill,8,quantca01,1593,Cal Quantrill,quantca01,automatic_bbref_match +7387,Cal Raleigh,8,raleica01,1600,Cal Raleigh,raleica01,automatic_bbref_match +7388,Cal Stevenson,8,steveca01,1907,Cal Stevenson,steveca01,automatic_bbref_match +7389,Caleb Ferguson,8,ferguca01,605,Caleb Ferguson,ferguca01,automatic_bbref_match +7390,Caleb Smith,8,smithca03,1845,Caleb Smith,smithca03,automatic_bbref_match +7391,Caleb Thielbar,8,thielca01,1977,Caleb Thielbar,thielca01,automatic_bbref_match +7392,Calvin Faucher,8,fauchca01,599,Calvin Faucher,fauchca01,automatic_bbref_match +7393,Calvin Mitchell,8,mitchca01,1341,Calvin Mitchell,mitchca01,automatic_bbref_match +7394,Camilo Doval,8,dovalca01,529,Camilo Doval,dovalca01,automatic_bbref_match +7395,Carl Edwards Jr,8,edwarca01,560,Carl Edwards Jr,edwarca01,automatic_bbref_match +7396,Carlos Carrasco,8,carraca01,331,Carlos Carrasco,carraca01,automatic_bbref_match +7397,Carlos Correa,8,correca01,420,Carlos Correa,correca01,automatic_bbref_match +7398,Carlos Estevez,8,estevca01,585,Carlos Estevez,estevca01,automatic_bbref_match +7399,Carlos Hernandez,8,hernaca04,880,Carlos Hernandez,hernaca04,automatic_bbref_match +7400,Carlos Rodon,8,rodonca01,1670,Carlos Rodon,rodonca01,automatic_bbref_match +7401,Carlos Santana,8,santaca01,1759,Carlos Santana,santaca01,automatic_bbref_match +7402,Carson Kelly,8,kellyca02,1023,Carson Kelly,kellyca02,automatic_bbref_match +7403,Cavan Biggio,8,biggica01,196,Cavan Biggio,biggica01,automatic_bbref_match +7404,Cedric Mullins,8,mullice01,1381,Cedric Mullins,mullice01,automatic_bbref_match +7405,Cesar Hernandez,8,hernace02,870,Cesar Hernandez,hernace02,automatic_bbref_match +7406,Chad Kuhl,8,kuhlch01,1078,Chad Kuhl,kuhlch01,automatic_bbref_match +7407,Chad Pinder,8,pindech01,1559,Chad Pinder,pindech01,automatic_bbref_match +7408,Charles Leblanc,8,leblach01,1105,Charles Leblanc,leblach01,automatic_bbref_match +7409,Charlie Blackmon,8,blackch02,205,Charlie Blackmon,blackch02,automatic_bbref_match +7410,Charlie Culberson,8,culbech01,453,Charlie Culberson,culbech01,automatic_bbref_match +7411,Charlie Morton,8,mortoch02,1375,Charlie Morton,mortoch02,automatic_bbref_match +7412,Chas McCormick,8,mccorch01,1269,Chas McCormick,mccorch01,automatic_bbref_match +7413,Chase Anderson,8,anderch01,67,Chase Anderson,anderch01,automatic_bbref_match +7414,Chase De Jong,8,dejonch01,478,Chase De Jong,dejonch01,automatic_bbref_match +7415,Chase Silseth,8,silsech01,1824,Chase Silseth,silsech01,automatic_bbref_match +7416,Chasen Shreve,8,shrevch01,1819,Chasen Shreve,shrevch01,automatic_bbref_match +7417,Chris Archer,8,archech01,85,Chris Archer,archech01,automatic_bbref_match +7418,Chris Bassitt,8,bassich01,146,Chris Bassitt,bassich01,automatic_bbref_match +7419,Chris Flexen,8,flexech01,626,Chris Flexen,flexech01,automatic_bbref_match +7420,Chris Martin,8,martich02,1214,Chris Martin,martich02,automatic_bbref_match +7421,Chris Stratton,8,stratch01,1922,Chris Stratton,stratch01,automatic_bbref_match +7422,Chris Taylor,8,tayloch03,1964,Chris Taylor,tayloch03,automatic_bbref_match +7423,Christian Arroyo,8,arroych01,96,Christian Arroyo,arroych01,automatic_bbref_match +7424,Christian Bethancourt,8,bethach01,185,Christian Bethancourt,bethach01,automatic_bbref_match +7425,Christian Vazquez,8,vazquch01,2063,Christian Vazquez,vazquch01,automatic_bbref_match +7426,Christian Walker,8,walkech02,2104,Christian Walker,walkech02,automatic_bbref_match +7427,Christian Yelich,8,yelicch01,2212,Christian Yelich,yelicch01,automatic_bbref_match +7428,Christopher Morel,8,morelch01,1364,Christopher Morel,morelch01,automatic_bbref_match +7429,Chuckie Robinson,8,robinch04,1664,Chuckie Robinson,robinch04,automatic_bbref_match +7430,Cionel Perez,8,perezci01,1540,Cionel Perez,perezci01,automatic_bbref_match +7431,CJ Abrams,8,abramcj01,6,CJ Abrams,abramcj01,automatic_bbref_match +7432,CJ Cron,8,croncj01,441,CJ Cron,croncj01,automatic_bbref_match +7433,Clarke Schmidt,8,schmicl01,1774,Clarke Schmidt,schmicl01,automatic_bbref_match +7434,Clay Holmes,8,holmecl01,919,Clay Holmes,holmecl01,automatic_bbref_match +7435,Clayton Kershaw,8,kershcl01,1034,Clayton Kershaw,kershcl01,automatic_bbref_match +7436,Cody Bellinger,8,bellico01,170,Cody Bellinger,bellico01,automatic_bbref_match +7437,Cody Morris,8,morrico01,1372,Cody Morris,morrico01,automatic_bbref_match +7438,Cody Poteet,8,poteeco01,1579,Cody Poteet,poteeco01,automatic_bbref_match +7439,Cole Irvin,8,irvinco01,954,Cole Irvin,irvinco01,automatic_bbref_match +7440,Cole Ragans,8,raganco01,1598,Cole Ragans,raganco01,automatic_bbref_match +7441,Cole Sands,8,sandsco01,1755,Cole Sands,sandsco01,automatic_bbref_match +7442,Cole Sulser,8,sulseco01,1942,Cole Sulser,sulseco01,automatic_bbref_match +7443,Cole Tucker,8,tuckeco01,2022,Cole Tucker,tuckeco01,automatic_bbref_match +7444,Colin Holderman,8,holdeco01,913,Colin Holderman,holdeco01,automatic_bbref_match +7445,Colin Moran,8,moranco01,1360,Colin Moran,moranco01,automatic_bbref_match +7446,Colin Poche,8,pocheco01,1568,Colin Poche,pocheco01,automatic_bbref_match +7447,Collin McHugh,8,mchugco01,1278,Collin McHugh,mchugco01,automatic_bbref_match +7448,Collin Snider,8,snideco01,1862,Collin Snider,snideco01,automatic_bbref_match +7449,Connor Brogdon,8,brogdco01,261,Connor Brogdon,brogdco01,automatic_bbref_match +7450,Connor Joe,8,joeco01,983,Connor Joe,joeco01,automatic_bbref_match +7451,Connor Overton,8,overtco01,1478,Connor Overton,overtco01,automatic_bbref_match +7452,Connor Wong,8,wongco01,2189,Connor Wong,wongco01,automatic_bbref_match +7453,Cooper Hummel,8,hummeco01,939,Cooper Hummel,hummeco01,automatic_bbref_match +7454,Corbin Burnes,8,burneco01,286,Corbin Burnes,burneco01,automatic_bbref_match +7455,Corbin Carroll,8,carroco02,332,Corbin Carroll,carroco02,automatic_bbref_match +7456,Corey Dickerson,8,dickeco01,513,Corey Dickerson,dickeco01,automatic_bbref_match +7457,Corey Kluber,8,klubeco01,1060,Corey Kluber,klubeco01,automatic_bbref_match +7458,Corey Knebel,8,knebeco01,1063,Corey Knebel,knebeco01,automatic_bbref_match +7459,Corey Seager,8,seageco01,1794,Corey Seager,seageco01,automatic_bbref_match +7460,Cory Abbott,8,abbotco01,5,Cory Abbott,abbotco01,automatic_bbref_match +7461,Craig Kimbrel,8,kimbrcr01,1043,Craig Kimbrel,kimbrcr01,automatic_bbref_match +7462,Craig Stammen,8,stammcr01,1891,Craig Stammen,stammcr01,automatic_bbref_match +7463,Cristian Javier,8,javiecr01,971,Cristian Javier,javiecr01,automatic_bbref_match +7464,Cristian Pache,8,pachecr01,1482,Cristian Pache,pachecr01,automatic_bbref_match +7465,Cristopher Sanchez,8,sanchcr01,1748,Cristopher Sanchez,sanchcr01,automatic_bbref_match +7466,Curt Casali,8,casalcu01,334,Curt Casali,casalcu01,automatic_bbref_match +7467,Dakota Hudson,8,hudsoda02,934,Dakota Hudson,hudsoda02,automatic_bbref_match +7468,Dallas Keuchel,8,keuchda01,1035,Dallas Keuchel,keuchda01,automatic_bbref_match +7469,Daniel Vogelbach,8,vogelda01,2085,Daniel Vogelbach,vogelda01,automatic_bbref_match +7470,Dane Dunning,8,dunnida01,548,Dane Dunning,dunnida01,automatic_bbref_match +7471,Daniel Bard,8,bardda01,125,Daniel Bard,bardda01,automatic_bbref_match +7472,Daniel Castano,8,castada01,337,Daniel Castano,castada01,automatic_bbref_match +7473,Daniel Hudson,8,hudsoda01,933,Daniel Hudson,hudsoda01,automatic_bbref_match +7474,Daniel Lynch,8,lynchda02,1172,Daniel Lynch,lynchda02,automatic_bbref_match +7475,Daniel Norris,8,norrida01,1439,Daniel Norris,norrida01,automatic_bbref_match +7476,Danny Jansen,8,janseda01,969,Danny Jansen,janseda01,automatic_bbref_match +7477,Danny Mendick,8,mendida01,1302,Danny Mendick,mendida01,automatic_bbref_match +7478,Dansby Swanson,8,swansda01,1947,Dansby Swanson,swansda01,automatic_bbref_match +7479,Dany Jimenez,8,jimenda01,981,Dany Jimenez,jimenda01,automatic_bbref_match +7480,Darick Hall,8,hallda02,808,Darick Hall,hallda02,automatic_bbref_match +7481,Darin Ruf,8,rufda01,1722,Darin Ruf,rufda01,automatic_bbref_match +7482,Darren ODay,8,odayda01,1449,Darren ODay,odayda01,automatic_bbref_match +7483,Daulton Jefferies,8,jeffeda01,974,Daulton Jefferies,jeffeda01,automatic_bbref_match +7484,Daulton Varsho,8,varshda01,2058,Daulton Varsho,varshda01,automatic_bbref_match +7485,Dauri Moreta,8,moretda01,1367,Dauri Moreta,moretda01,automatic_bbref_match +7486,David Bednar,8,bednada01,162,David Bednar,bednada01,automatic_bbref_match +7487,David Bote,8,boteda01,224,David Bote,boteda01,automatic_bbref_match +7488,David Fletcher,8,fletcda02,624,David Fletcher,fletcda02,automatic_bbref_match +7490,David Peralta,8,peralda01,1522,David Peralta,peralda01,automatic_bbref_match +7491,David Peterson,8,peterda01,1548,David Peterson,peterda01,automatic_bbref_match +7492,David Phelps,8,phelpda01,1554,David Phelps,phelpda01,automatic_bbref_match +7493,David Price,8,priceda01,1585,David Price,priceda01,automatic_bbref_match +7494,David Robertson,8,roberda08,1662,David Robertson,roberda08,automatic_bbref_match +7495,David Villar,8,villada01,2080,David Villar,villada01,automatic_bbref_match +7496,Davis Martin,8,martida03,1219,Davis Martin,martida03,automatic_bbref_match +7497,Daz Cameron,8,camerda01,310,Daz Cameron,camerda01,automatic_bbref_match +7498,Dean Kremer,8,kremede01,1077,Dean Kremer,kremede01,automatic_bbref_match +7499,Dee Strange Gordon,8,gordode01,1920,Dee Strange Gordon,gordode01,automatic_bbref_match +7500,Dennis Santana,8,santade01,1762,Dennis Santana,santade01,automatic_bbref_match +7501,Derek Hill,8,hillde01,899,Derek Hill,hillde01,automatic_bbref_match +7502,Dermis Garcia,8,garcide02,687,Dermis Garcia,garcide02,automatic_bbref_match +7503,Devin Smeltzer,8,smeltde01,1840,Devin Smeltzer,smeltde01,automatic_bbref_match +7504,Devin Williams,8,willide03,2158,Devin Williams,willide03,automatic_bbref_match +7505,Didi Gregorius,8,gregodi01,772,Didi Gregorius,gregodi01,automatic_bbref_match +7506,Diego Castillo,8,castidi01,345,Diego Castillo,castidi01,automatic_bbref_match +7507,Dillon Peters,8,peterdi01,1544,Dillon Peters,peterdi01,automatic_bbref_match +7508,Dillon Tate,8,tatedi01,1959,Dillon Tate,tatedi01,automatic_bbref_match +7509,Dinelson Lamet,8,lametdi01,1090,Dinelson Lamet,lametdi01,automatic_bbref_match +7510,DJ LeMahieu,8,lemahdj01,1114,DJ LeMahieu,lemahdj01,automatic_bbref_match +7511,Domingo Acevedo,8,acevedo01,11,Domingo Acevedo,acevedo01,automatic_bbref_match +7512,Domingo German,8,germado01,713,Domingo German,germado01,automatic_bbref_match +7513,Dominic Leone,8,leonedo01,1116,Dominic Leone,leonedo01,automatic_bbref_match +7514,Dominic Smith,8,smithdo02,1849,Dominic Smith,smithdo02,automatic_bbref_match +7515,Donovan Solano,8,solando01,1868,Donovan Solano,solando01,automatic_bbref_match +7516,Donovan Walton,8,waltodo01,2113,Donovan Walton,waltodo01,automatic_bbref_match +7517,Drew Hutchison,8,hutchdr01,944,Drew Hutchison,hutchdr01,automatic_bbref_match +7518,Drew Rasmussen,8,rasmudr01,1618,Drew Rasmussen,rasmudr01,automatic_bbref_match +7519,Drew Smith,8,smithdr01,1848,Drew Smith,smithdr01,automatic_bbref_match +7520,Drew Smyly,8,smylydr01,1858,Drew Smyly,smylydr01,automatic_bbref_match +7521,Drew Waters,8,waterdr01,2120,Drew Waters,waterdr01,automatic_bbref_match +7522,Duane Underwood,8,underdu01,2033,Duane Underwood,underdu01,automatic_bbref_match +7523,Dustin May,8,maydu01,1249,Dustin May,maydu01,automatic_bbref_match +7524,Dylan Bundy,8,bundydy01,280,Dylan Bundy,bundydy01,automatic_bbref_match +7525,Dylan Carlson,8,carlsdy01,327,Dylan Carlson,carlsdy01,automatic_bbref_match +7526,Dylan Cease,8,ceasedy01,355,Dylan Cease,ceasedy01,automatic_bbref_match +7527,Dylan Coleman,8,colemdy01,401,Dylan Coleman,colemdy01,automatic_bbref_match +7528,Dylan Floro,8,florody01,629,Dylan Floro,florody01,automatic_bbref_match +7529,Dylan Lee,8,leedy01,1108,Dylan Lee,leedy01,automatic_bbref_match +7530,Dylan Moore,8,mooredy01,1358,Dylan Moore,mooredy01,automatic_bbref_match +7531,Eddie Rosario,8,rosared01,1710,Eddie Rosario,rosared01,automatic_bbref_match +7532,Edmundo Sosa,8,sosaed01,1876,Edmundo Sosa,sosaed01,automatic_bbref_match +7533,Eduardo Escobar,8,escobed01,581,Eduardo Escobar,escobed01,automatic_bbref_match +7534,Eduardo Rodriguez,8,rodried05,1675,Eduardo Rodriguez,rodried05,automatic_bbref_match +7535,Edward Cabrera,8,cabreed02,302,Edward Cabrera,cabreed02,automatic_bbref_match +7536,Edward Olivares,8,olivaed02,1458,Edward Olivares,olivaed02,automatic_bbref_match +7537,Edwin Diaz,8,diazed04,503,Edwin Diaz,diazed04,automatic_bbref_match +7538,Edwin Rios,8,riosed01,1651,Edwin Rios,riosed01,automatic_bbref_match +7539,Ehire Adrianza,8,adriaeh01,22,Ehire Adrianza,adriaeh01,automatic_bbref_match +7540,Elehuris Montero,8,monteel01,1353,Elehuris Montero,monteel01,automatic_bbref_match +7541,Eli Morgan,8,morgael01,1369,Eli Morgan,morgael01,automatic_bbref_match +7542,Eli White,8,whiteel04,2140,Eli White,whiteel04,automatic_bbref_match +7543,Elias Diaz,8,diazel01,502,Elias Diaz,diazel01,automatic_bbref_match +7544,Elieser Hernandez,8,hernael01,874,Elieser Hernandez,hernael01,automatic_bbref_match +7545,Eloy Jimenez,8,jimenel02,980,Eloy Jimenez,jimenel02,automatic_bbref_match +7546,Elvin Rodriguez,8,rodriel02,1679,Elvin Rodriguez,rodriel02,automatic_bbref_match +7547,Elvis Andrus,8,andruel01,77,Elvis Andrus,andruel01,automatic_bbref_match +7548,Emilio Pagan,8,paganem01,1484,Emilio Pagan,paganem01,automatic_bbref_match +7549,Emmanuel Clase,8,claseem01,385,Emmanuel Clase,claseem01,automatic_bbref_match +7550,Emmanuel Rivera,8,riverem01,1657,Emmanuel Rivera,riverem01,automatic_bbref_match +7551,Enrique Hernandez,8,hernaen02,871,Enrique Hernandez,hernaen02,automatic_bbref_match +7552,Enyel De Los Santos,8,delosen01,482,Enyel De Los Santos,delosen01,automatic_bbref_match +7553,Erasmo Ramirez,8,ramirer02,1604,Erasmo Ramirez,ramirer02,automatic_bbref_match +7554,Eric Haase,8,haaseer01,801,Eric Haase,haaseer01,automatic_bbref_match +7555,Eric Hosmer,8,hosmeer01,926,Eric Hosmer,hosmeer01,automatic_bbref_match +7556,Eric Lauer,8,lauerer01,1096,Eric Lauer,lauerer01,automatic_bbref_match +7557,Eric Stout,8,stouter01,1916,Eric Stout,stouter01,automatic_bbref_match +7558,Erich Uelmen,8,uelmeer01,2032,Erich Uelmen,uelmeer01,automatic_bbref_match +7559,Erick Fedde,8,feddeer01,600,Erick Fedde,feddeer01,automatic_bbref_match +7560,Erik Swanson,8,swanser01,1948,Erik Swanson,swanser01,automatic_bbref_match +7561,Ernie Clement,8,clemeer01,391,Ernie Clement,clemeer01,automatic_bbref_match +7562,Eugenio Suarez,8,suareeu01,1934,Eugenio Suarez,suareeu01,automatic_bbref_match +7563,Evan Longoria,8,longoev01,1140,Evan Longoria,longoev01,automatic_bbref_match +7565,Ezequiel Duran,8,duranez01,551,Ezequiel Duran,duranez01,automatic_bbref_match +7566,Felix Bautista,8,bautife01,154,Felix Bautista,bautife01,automatic_bbref_match +7567,Framber Valdez,8,valdefr01,2048,Framber Valdez,valdefr01,automatic_bbref_match +7568,Franchy Cordero,8,cordefr02,418,Franchy Cordero,cordefr02,automatic_bbref_match +7569,Francisco Lindor,8,lindofr01,1124,Francisco Lindor,lindofr01,automatic_bbref_match +7571,Frank Schwindel,8,schwifr01,1786,Frank Schwindel,schwifr01,automatic_bbref_match +7572,Frankie Montas,8,montafr02,1351,Frankie Montas,montafr02,automatic_bbref_match +7573,Franmil Reyes,8,reyesfr01,1634,Franmil Reyes,reyesfr01,automatic_bbref_match +7574,Freddie Freeman,8,freemfr01,652,Freddie Freeman,freemfr01,automatic_bbref_match +7575,Freddy Peralta,8,peralfr01,1525,Freddy Peralta,peralfr01,automatic_bbref_match +7576,Gabriel Arias,8,ariasga01,89,Gabriel Arias,ariasga01,automatic_bbref_match +7577,Gabriel Moreno,8,morenga01,1366,Gabriel Moreno,morenga01,automatic_bbref_match +7579,Garrett Cooper,8,coopega03,415,Garrett Cooper,coopega03,automatic_bbref_match +7580,Garrett Hampson,8,hampsga01,814,Garrett Hampson,hampsga01,automatic_bbref_match +7581,Garrett Hill,8,hillga02,901,Garrett Hill,hillga02,automatic_bbref_match +7582,Garrett Mitchell,8,mitchga01,1340,Garrett Mitchell,mitchga01,automatic_bbref_match +7583,Garrett Richards,8,richaga01,1645,Garrett Richards,richaga01,automatic_bbref_match +7584,Garrett Stubbs,8,stubbga01,1931,Garrett Stubbs,stubbga01,automatic_bbref_match +7585,Garrett Whitlock,8,whitlga01,2146,Garrett Whitlock,whitlga01,automatic_bbref_match +7586,Gary Sanchez,8,sanchga02,1746,Gary Sanchez,sanchga02,automatic_bbref_match +7587,Gavin Lux,8,luxga01,1169,Gavin Lux,luxga01,automatic_bbref_match +7588,Gavin Sheets,8,sheetga01,1811,Gavin Sheets,sheetga01,automatic_bbref_match +7589,Genesis Cabrera,8,cabrege01,301,Genesis Cabrera,cabrege01,automatic_bbref_match +7590,George Kirby,8,kirbyge01,1054,George Kirby,kirbyge01,automatic_bbref_match +7591,George Springer,8,springe01,1888,George Springer,springe01,automatic_bbref_match +7592,Geraldo Perdomo,8,perdoge01,1531,Geraldo Perdomo,perdoge01,automatic_bbref_match +7593,German Marquez,8,marquge01,1204,German Marquez,marquge01,automatic_bbref_match +7594,Gerrit Cole,8,colege01,398,Gerrit Cole,colege01,automatic_bbref_match +7595,Giancarlo Stanton,8,stantmi03,1893,Giancarlo Stanton,stantmi03,automatic_bbref_match +7596,Gilberto Celestino,8,celesgi01,358,Gilberto Celestino,celesgi01,automatic_bbref_match +7597,Gio Urshela,8,urshegi01,2042,Gio Urshela,urshegi01,automatic_bbref_match +7598,Giovanny Gallegos,8,gallegi01,672,Giovanny Gallegos,gallegi01,automatic_bbref_match +7599,Glenn Otto,8,ottogl01,1476,Glenn Otto,ottogl01,automatic_bbref_match +7600,Gleyber Torres,8,torregl01,2003,Gleyber Torres,torregl01,automatic_bbref_match +7601,Graham Ashcraft,8,ashcrgr01,99,Graham Ashcraft,ashcrgr01,automatic_bbref_match +7602,Greg Allen,8,allengr01,44,Greg Allen,allengr01,automatic_bbref_match +7603,Gregory Soto,8,sotogr01,1878,Gregory Soto,sotogr01,automatic_bbref_match +7604,Griffin Jax,8,jaxgr01,972,Griffin Jax,jaxgr01,automatic_bbref_match +7605,Guillermo Heredia,8,heredgu01,862,Guillermo Heredia,heredgu01,automatic_bbref_match +7606,Gunnar Henderson,8,hendegu01,855,Gunnar Henderson,hendegu01,automatic_bbref_match +7607,Ha Seong Kim,8,kimha01,1042,Ha Seong Kim,kimha01,automatic_bbref_match +7608,Hansel Robles,8,robleha01,1665,Hansel Robles,robleha01,automatic_bbref_match +7609,Hanser Alberto,8,alberha01,30,Hanser Alberto,alberha01,automatic_bbref_match +7610,Harold Castro,8,castrha01,349,Harold Castro,castrha01,automatic_bbref_match +7611,Harold Ramirez,8,ramirha02,1609,Harold Ramirez,ramirha02,automatic_bbref_match +7612,Harrison Bader,8,baderha01,110,Harrison Bader,baderha01,automatic_bbref_match +7613,Hayden Wesneski,8,wesneha01,2137,Hayden Wesneski,wesneha01,automatic_bbref_match +7614,Heath Hembree,8,hembrhe01,854,Heath Hembree,hembrhe01,automatic_bbref_match +7615,Hector Neris,8,nerishe01,1413,Hector Neris,nerishe01,automatic_bbref_match +7616,Hirokazu Sawamura,8,sawamhi01,1769,Hirokazu Sawamura,sawamhi01,automatic_bbref_match +7617,Hoby Milner,8,milneho01,1332,Hoby Milner,milneho01,automatic_bbref_match +7618,Huascar Brazoban,8,brazohu01,246,Huascar Brazoban,brazohu01,automatic_bbref_match +7619,Humberto Castellanos,8,castehu01,339,Humberto Castellanos,castehu01,automatic_bbref_match +7620,Hunter Brown,8,brownhu01,267,Hunter Brown,brownhu01,automatic_bbref_match +7621,Hunter Dozier,8,doziehu01,533,Hunter Dozier,doziehu01,automatic_bbref_match +7622,Hunter Greene,8,greenhu01,770,Hunter Greene,greenhu01,automatic_bbref_match +7623,Hunter Harvey,8,harvehu01,836,Hunter Harvey,harvehu01,automatic_bbref_match +7624,Hunter Renfroe,8,renfrhu01,1631,Hunter Renfroe,renfrhu01,automatic_bbref_match +7625,Hunter Strickland,8,strichu01,1925,Hunter Strickland,strichu01,automatic_bbref_match +7626,Hyun Jin Ryu,8,ryuhy01,1733,Hyun Jin Ryu,ryuhy01,automatic_bbref_match +7627,Ian Anderson,8,anderia01,74,Ian Anderson,anderia01,automatic_bbref_match +7628,Ian Gibaut,8,gibauia01,714,Ian Gibaut,gibauia01,automatic_bbref_match +7629,Ian Happ,8,happia01,820,Ian Happ,happia01,automatic_bbref_match +7630,Ian Kennedy,8,kenneia01,1029,Ian Kennedy,kenneia01,automatic_bbref_match +7631,Ildemaro Vargas,8,vargail01,2054,Ildemaro Vargas,vargail01,automatic_bbref_match +7632,Isaac Paredes,8,paredis01,1497,Isaac Paredes,paredis01,automatic_bbref_match +7633,Isiah Kiner Falefa,8,kineris01,1044,Isiah Kiner Falefa,kineris01,automatic_bbref_match +7634,Jace Peterson,8,peterja01,1547,Jace Peterson,peterja01,automatic_bbref_match +7635,Jack Flaherty,8,flaheja01,622,Jack Flaherty,flaheja01,automatic_bbref_match +7636,Jack Mayfield,8,mayfija01,1252,Jack Mayfield,mayfija01,automatic_bbref_match +7637,Jack Suwinski,8,suwinja01,1944,Jack Suwinski,suwinja01,automatic_bbref_match +7638,Jackie Bradley Jr,8,bradlja02,239,Jackie Bradley Jr,bradlja02,automatic_bbref_match +7639,Jackson Stephens,8,stephja01,1903,Jackson Stephens,stephja01,automatic_bbref_match +7640,Jacob deGrom,8,degroja01,484,Jacob deGrom,degroja01,automatic_bbref_match +7641,Jacob Stallings,8,stallja01,1890,Jacob Stallings,stallja01,automatic_bbref_match +7642,Jaime Barria,8,barrija01,141,Jaime Barria,barrija01,automatic_bbref_match +7643,Jake Bird,8,birdja01,198,Jake Bird,birdja01,automatic_bbref_match +7644,Jake Burger,8,burgeja01,283,Jake Burger,burgeja01,automatic_bbref_match +7645,Jake Cave,8,caveja01,354,Jake Cave,caveja01,automatic_bbref_match +7646,Jake Cronenworth,8,croneja01,442,Jake Cronenworth,croneja01,automatic_bbref_match +7647,Jake Diekman,8,diekmja01,514,Jake Diekman,diekmja01,automatic_bbref_match +7648,Jake Fraley,8,fraleja01,641,Jake Fraley,fraleja01,automatic_bbref_match +7649,Jake Junis,8,junisja01,1004,Jakob Junis,junisja01,automatic_bbref_match +7650,Jake Lamb,8,lambja01,1087,Jake Lamb,lambja01,automatic_bbref_match +7651,Jake Marisnick,8,marisja01,1200,Jake Marisnick,marisja01,automatic_bbref_match +7652,Jake McCarthy,8,mccarja02,1265,Jake McCarthy,mccarja02,automatic_bbref_match +7653,Jake McGee,8,mcgeeja01,1274,Jake McGee,mcgeeja01,automatic_bbref_match +7654,Jake Meyers,8,meyerja02,1315,Jake Meyers,meyerja02,automatic_bbref_match +7655,Jake Odorizzi,8,odorija01,1452,Jake Odorizzi,odorija01,automatic_bbref_match +7656,Jake Woodford,8,woodfja01,2195,Jake Woodford,woodfja01,automatic_bbref_match +7657,Jalen Beeks,8,beeksja02,165,Jalen Beeks,beeksja02,automatic_bbref_match +7658,James Kaprielian,8,kaprija01,1008,James Kaprielian,kaprija01,automatic_bbref_match +7659,James Karinchak,8,karinja01,1009,James Karinchak,karinja01,automatic_bbref_match +7660,James McCann,8,mccanja02,1261,James McCann,mccanja02,automatic_bbref_match +7661,Jameson Taillon,8,taillja01,1954,Jameson Taillon,taillja01,automatic_bbref_match +7662,Jandel Gustave,8,gustaja01,795,Jandel Gustave,gustaja01,automatic_bbref_match +7663,Jared Koenig,8,koenija01,1068,Jared Koenig,koenija01,automatic_bbref_match +7664,Jared Walsh,8,walshja01,2111,Jared Walsh,walshja01,automatic_bbref_match +7665,Jarlin Garcia,8,garcija04,684,Jarlin Garcia,garcija04,automatic_bbref_match +7666,Jarred Kelenic,8,kelenja01,1015,Jarred Kelenic,kelenja01,automatic_bbref_match +7667,Jarren Duran,8,duranja01,552,Jarren Duran,duranja01,automatic_bbref_match +7668,Jason Adam,8,adamja01,13,Jason Adam,adamja01,automatic_bbref_match +7669,Jason Alexander,8,alexaja01,38,Jason Alexander,alexaja01,automatic_bbref_match +7670,Jason Castro,8,castrja01,347,Jason Castro,castrja01,automatic_bbref_match +7671,Jason Delay,8,delayja01,487,Jason Delay,delayja01,automatic_bbref_match +7672,Jason Foley,8,foleyja01,632,Jason Foley,foleyja01,automatic_bbref_match +7673,Jason Heyward,8,heywaja01,891,Jason Heyward,heywaja01,automatic_bbref_match +7674,Jason Vosler,8,vosleja01,2090,Jason Vosler,vosleja01,automatic_bbref_match +7675,Javier Assad,8,assadja01,100,Javier Assad,assadja01,automatic_bbref_match +7676,Javier Baez,8,baezja01,112,Javier Baez,baezja01,automatic_bbref_match +7677,Jazz Chisholm,8,chishja01,375,Jazz Chisholm,chishja01,automatic_bbref_match +7678,JB Wendelken,8,wendejb01,2134,JB Wendelken,wendejb01,automatic_bbref_match +7679,JD Davis,8,davisjd01,474,JD Davis,davisjd01,automatic_bbref_match +7680,JD Martinez,8,martijd02,1229,JD Martinez,martijd02,automatic_bbref_match +7681,Jean Segura,8,segurje01,1796,Jean Segura,segurje01,automatic_bbref_match +7682,Jed Lowrie,8,lowrije01,1158,Jed Lowrie,lowrije01,automatic_bbref_match +7683,Jeff Hoffman,8,hoffmje02,910,Jeff Hoffman,hoffmje02,automatic_bbref_match +7684,Jeff McNeil,8,mcneije01,1287,Jeff McNeil,mcneije01,automatic_bbref_match +7685,Jeffrey Springs,8,sprinje01,1889,Jeffrey Springs,sprinje01,automatic_bbref_match +7686,Jeimer Candelario,8,candeje01,315,Jeimer Candelario,candeje01,automatic_bbref_match +7687,Jerar Encarnacion,8,encarje01,572,Jerar Encarnacion,encarje01,automatic_bbref_match +7688,Jeremy Pena,8,penaje02,1519,Jeremy Pena,penaje02,automatic_bbref_match +7689,Jermaine Palacios,8,palacje01,1487,Jermaine Palacios,palacje01,automatic_bbref_match +7690,Jesse Chavez,8,chaveje01,370,Jesse Chavez,chaveje01,automatic_bbref_match +7691,Jesse Winker,8,winkeje01,2177,Jesse Winker,winkeje01,automatic_bbref_match +7692,Jesus Aguilar,8,aguilje01,25,Jesus Aguilar,aguilje01,automatic_bbref_match +7693,Jesus Luzardo,8,luzarje01,1170,Jesus Luzardo,luzarje01,automatic_bbref_match +7694,Jesus Sanchez,8,sanchje02,1749,Jesus Sanchez,sanchje02,automatic_bbref_match +7695,Jeurys Familia,8,familje01,595,Jeurys Familia,familje01,automatic_bbref_match +7696,Jharel Cotton,8,cottojh01,423,Jharel Cotton,cottojh01,automatic_bbref_match +7697,Jhoan Duran,8,duranjh01,550,Jhoan Duran,duranjh01,automatic_bbref_match +7698,Jhoulys Chacin,8,chacijh01,362,Jhoulys Chacin,chacijh01,automatic_bbref_match +7699,Ji Man Choi,8,choiji01,377,Ji Man Choi,choiji01,automatic_bbref_match +7700,Jimmy Herget,8,hergeji01,863,Jimmy Herget,hergeji01,automatic_bbref_match +7701,Jimmy Lambert,8,lambeji01,1089,Jimmy Lambert,lambeji01,automatic_bbref_match +7702,JJ Bleday,8,bledajj01,211,JJ Bleday,bledajj01,automatic_bbref_match +7703,JJ Matijevic,8,matijjj01,1237,JJ Matijevic,matijjj01,automatic_bbref_match +7704,Jo Adell,8,adelljo01,20,Jo Adell,adelljo01,automatic_bbref_match +7705,Joan Adon,8,adonjo01,21,Joan Adon,adonjo01,automatic_bbref_match +7706,Joc Pederson,8,pederjo01,1514,Joc Pederson,pederjo01,automatic_bbref_match +7707,Joe Barlow,8,barlojo01,129,Joe Barlow,barlojo01,automatic_bbref_match +7708,Joe Jimenez,8,jimenjo02,979,Joe Jimenez,jimenjo02,automatic_bbref_match +7709,Joe Kelly,8,kellyjo05,1021,Joe Kelly,kellyjo05,automatic_bbref_match +7710,Joe Mantiply,8,mantijo01,1193,Joe Mantiply,mantijo01,automatic_bbref_match +7711,Joe Musgrove,8,musgrjo01,1394,Joe Musgrove,musgrjo01,automatic_bbref_match +7712,Joe Ryan,8,ryanjo04,1732,Joe Ryan,ryanjo04,automatic_bbref_match +7713,Joe Smith,8,smithjo05,1842,Joe Smith,smithjo05,automatic_bbref_match +7714,Joel Kuhnel,8,kuhnejo01,1079,Joel Kuhnel,kuhnejo01,automatic_bbref_match +7715,Joel Payamps,8,payamjo01,1507,Joel Payamps,payamjo01,automatic_bbref_match +7716,Joely Rodriguez,8,rodrijo06,1673,Joely Rodriguez,rodrijo06,automatic_bbref_match +7717,Joey Bart,8,bartjo01,142,Joey Bart,bartjo01,automatic_bbref_match +7718,Joey Gallo,8,gallojo01,674,Joey Gallo,gallojo01,automatic_bbref_match +7719,Joey Krehbiel,8,krehbjo01,1075,Joey Krehbiel,krehbjo01,automatic_bbref_match +7720,Joey Meneses,8,menesjo01,1303,Joey Meneses,menesjo01,automatic_bbref_match +7721,Joey Votto,8,vottojo01,2092,Joey Votto,vottojo01,automatic_bbref_match +7722,Joey Wendle,8,wendljo01,2135,Joey Wendle,wendljo01,automatic_bbref_match +7723,Joey Wentz,8,wentzjo01,2136,Joey Wentz,wentzjo01,automatic_bbref_match +7724,Johan Camargo,8,camarjo01,309,Johan Camargo,camarjo01,automatic_bbref_match +7725,Johan Oviedo,8,oviedjo01,1479,Johan Oviedo,oviedjo01,automatic_bbref_match +7726,John Brebbia,8,brebbjo01,247,John Brebbia,brebbjo01,automatic_bbref_match +7727,John King,8,kingjo01,1045,John King,kingjo01,automatic_bbref_match +7728,John Schreiber,8,schrejo01,1780,John Schreiber,schrejo01,automatic_bbref_match +7729,Johnny Cueto,8,cuetojo01,451,Johnny Cueto,cuetojo01,automatic_bbref_match +7730,Jon Berti,8,bertijo01,183,Jon Berti,bertijo01,automatic_bbref_match +7731,Jon Gray,8,grayjo02,766,Jon Gray,grayjo02,automatic_bbref_match +7732,Jon Heasley,8,heasljo01,845,Jon Heasley,heasljo01,automatic_bbref_match +7733,Jonah Bride,8,bridejo01,255,Jonah Bride,bridejo01,automatic_bbref_match +7734,Jonah Heim,8,heimjo01,849,Jonah Heim,heimjo01,automatic_bbref_match +7735,Jonathan Aranda,8,arandjo01,82,Jonathan Aranda,arandjo01,automatic_bbref_match +7736,Jonathan Davis,8,davisjo05,470,Jonathan Davis,davisjo05,automatic_bbref_match +7737,Jonathan Hernandez,8,hernajo02,876,Jonathan Hernandez,hernajo02,automatic_bbref_match +7738,Jonathan India,8,indiajo01,953,Jonathan India,indiajo01,automatic_bbref_match +7739,Jonathan Loaisiga,8,loaisjo01,1132,Jonathan Loaisiga,loaisjo01,automatic_bbref_match +7740,Jonathan Schoop,8,schoojo01,1779,Jonathan Schoop,schoojo01,automatic_bbref_match +7741,Jonathan Villar,8,villajo01,2079,Jonathan Villar,villajo01,automatic_bbref_match +7742,Jordan Groshans,8,groshjo01,778,Jordan Groshans,groshjo01,automatic_bbref_match +7743,Jordan Hicks,8,hicksjo03,894,Jordan Hicks,hicksjo03,automatic_bbref_match +7744,Jordan Luplow,8,luplojo01,1168,Jordan Luplow,luplojo01,automatic_bbref_match +7745,Jordan Lyles,8,lylesjo01,1171,Jordan Lyles,lylesjo01,automatic_bbref_match +7746,Jordan Montgomery,8,montgjo01,1356,Jordan Montgomery,montgjo01,automatic_bbref_match +7747,Jordan Romano,8,romanjo03,1699,Jordan Romano,romanjo03,automatic_bbref_match +7748,Jordan Weems,8,weemsjo01,2129,Jordan Weems,weemsjo01,automatic_bbref_match +7749,Jorge Alfaro,8,alfarjo01,40,Jorge Alfaro,alfarjo01,automatic_bbref_match +7750,Jorge Lopez,8,lopezjo02,1144,Jorge Lopez,lopezjo02,automatic_bbref_match +7751,Jorge Mateo,8,mateojo01,1233,Jorge Mateo,mateojo01,automatic_bbref_match +7752,Jorge Polanco,8,polanjo01,1570,Jorge Polanco,polanjo01,automatic_bbref_match +7753,Jorge Soler,8,solerjo01,1870,Jorge Soler,solerjo01,automatic_bbref_match +7754,Jose Abreu,8,abreujo02,7,Jose Abreu,abreujo02,automatic_bbref_match +7755,Jose Altuve,8,altuvjo01,56,Jose Altuve,altuvjo01,automatic_bbref_match +7756,Jose Alvarado,8,alvarjo03,58,Jose Alvarado,alvarjo03,automatic_bbref_match +7757,Jose Azocar,8,azocajo01,107,Jose Azocar,azocajo01,automatic_bbref_match +7758,Jose Barrero,8,garcijo02,139,Jose Barrero,garcijo02,automatic_bbref_match +7759,Jose Berrios,8,berrijo01,182,Jose Berrios,berrijo01,automatic_bbref_match +7760,Jose Cisnero,8,cisnejo01,382,Jose Cisnero,cisnejo01,automatic_bbref_match +7761,Jose Cuas,8,cuasjo01,450,Jose Cuas,cuasjo01,automatic_bbref_match +7762,Jose Herrera,8,herrejo04,884,Jose Herrera,herrejo04,automatic_bbref_match +7763,Jose Iglesias,8,iglesjo01,949,Jose Iglesias,iglesjo01,automatic_bbref_match +7764,Jose Leclerc,8,leclejo01,1106,Jose Leclerc,leclejo01,automatic_bbref_match +7765,Jose Miranda,8,miranjo01,1337,Jose Miranda,miranjo01,automatic_bbref_match +7766,Jose Quijada,8,quijajo01,1594,Jose Quijada,quijajo01,automatic_bbref_match +7767,Jose Quintana,8,quintjo01,1596,Jose Quintana,quintjo01,automatic_bbref_match +7768,Jose Ramirez,8,ramirjo01,1608,Jose Ramirez,ramirjo01,automatic_bbref_match +7769,Jose Ruiz,8,ruizjo01,1724,Jose Ruiz,ruizjo01,automatic_bbref_match +7770,Jose Siri,8,sirijo01,1830,Jose Siri,sirijo01,automatic_bbref_match +7771,Jose Suarez,8,suarejo01,1937,Jose Suarez,suarejo01,automatic_bbref_match +7772,Jose Trevino,8,trevijo01,2013,Jose Trevino,trevijo01,automatic_bbref_match +7773,Jose Urena,8,urenajo01,2035,Jose Urena,urenajo01,automatic_bbref_match +7774,Jose Urquidy,8,urquijo01,2041,Jose Urquidy,urquijo01,automatic_bbref_match +7775,Josh Bell,8,belljo02,168,Josh Bell,belljo02,automatic_bbref_match +7776,Josh Donaldson,8,donaljo02,526,Josh Donaldson,donaljo02,automatic_bbref_match +7777,Josh Fleming,8,flemijo01,623,Josh Fleming,flemijo01,automatic_bbref_match +7778,Josh Hader,8,haderjo01,802,Josh Hader,haderjo01,automatic_bbref_match +7779,Josh Harrison,8,harrijo05,829,Josh Harrison,harrijo05,automatic_bbref_match +7780,Josh Jung,8,jungjo01,1002,Josh Jung,jungjo01,automatic_bbref_match +7781,Josh Lowe,8,lowejo01,1157,Josh Lowe,lowejo01,automatic_bbref_match +7782,Josh Naylor,8,naylojo01,1404,Josh Naylor,naylojo01,automatic_bbref_match +7783,Josh Rogers,8,rogerjo01,1690,Josh Rogers,rogerjo01,automatic_bbref_match +7784,Josh Rojas,8,rojasjo01,1695,Josh Rojas,rojasjo01,automatic_bbref_match +7785,Josh Smith,8,smithjo11,1852,Josh Smith,smithjo11,automatic_bbref_match +7786,Josh Staumont,8,staumjo01,1897,Josh Staumont,staumjo01,automatic_bbref_match +7787,Josh VanMeter,8,vanmejo01,2052,Josh VanMeter,vanmejo01,automatic_bbref_match +7788,Josh Winckowski,8,winckjo01,2174,Josh Winckowski,winckjo01,automatic_bbref_match +7789,Josh Winder,8,windejo01,2175,Josh Winder,windejo01,automatic_bbref_match +7790,Josiah Gray,8,grayjo03,767,Josiah Gray,grayjo03,automatic_bbref_match +7791,Jovani Moran,8,moranjo01,1361,Jovani Moran,moranjo01,automatic_bbref_match +7792,JP Crawford,8,crawfjp01,432,JP Crawford,crawfjp01,automatic_bbref_match +7793,JP Feyereisen,8,feyerjo01,612,JP Feyereisen,feyerjo01,automatic_bbref_match +7794,JP Sears,8,searsjp01,1795,JP Sears,searsjp01,automatic_bbref_match +7795,JT Brubaker,8,brubajt01,269,JT Brubaker,brubajt01,automatic_bbref_match +7796,JT Chargois,8,chargjt01,368,JT Chargois,chargjt01,automatic_bbref_match +7797,JT Realmuto,8,realmjt01,1622,JT Realmuto,realmjt01,automatic_bbref_match +7798,Juan Lagares,8,lagarju01,1083,Juan Lagares,lagarju01,automatic_bbref_match +7799,Juan Soto,8,sotoju01,1879,Juan Soto,sotoju01,automatic_bbref_match +7800,Juan Yepez,8,yepezju01,2213,Juan Yepez,yepezju01,automatic_bbref_match +7801,Julian Merryweather,8,merryju01,1311,Julian Merryweather,merryju01,automatic_bbref_match +7802,Julio Rodriguez,8,rodriju01,1682,Julio Rodriguez,rodriju01,automatic_bbref_match +7803,Julio Urias,8,uriasju01,2038,Julio Urias,uriasju01,automatic_bbref_match +7804,Jurickson Profar,8,profaju01,1587,Jurickson Profar,profaju01,automatic_bbref_match +7805,Justin Bruihl,8,bruihju01,271,Justin Bruihl,bruihju01,automatic_bbref_match +7806,Justin Dunn,8,dunnju01,546,Justin Dunn,dunnju01,automatic_bbref_match +7807,Justin Lawrence,8,lawreju01,1100,Justin Lawrence,lawreju01,automatic_bbref_match +7808,Justin Steele,8,steelju01,1899,Justin Steele,steelju01,automatic_bbref_match +7809,Justin Turner,8,turneju01,2029,Justin Turner,turneju01,automatic_bbref_match +7810,Justin Verlander,8,verlaju01,2071,Justin Verlander,verlaju01,automatic_bbref_match +7811,Kaleb Ort,8,ortka01,1464,Kaleb Ort,ortka01,automatic_bbref_match +7812,KeBryan Hayes,8,hayeske01,838,KeBryan Hayes,hayeske01,automatic_bbref_match +7813,Keegan Akin,8,akinke01,27,Keegan Akin,akinke01,automatic_bbref_match +7814,Keegan Thompson,8,thompke02,1982,Keegan Thompson,thompke02,automatic_bbref_match +7815,Keibert Ruiz,8,ruizke01,1725,Keibert Ruiz,ruizke01,automatic_bbref_match +7816,Ken Waldichuk,8,waldike01,2101,Ken Waldichuk,waldike01,automatic_bbref_match +7817,Kendall Graveman,8,graveke01,764,Kendall Graveman,graveke01,automatic_bbref_match +7818,Kenley Jansen,8,janseke01,968,Kenley Jansen,janseke01,automatic_bbref_match +7819,Kerry Carpenter,8,carpeke01,330,Kerry Carpenter,carpeke01,automatic_bbref_match +7820,Keston Hiura,8,hiurake01,905,Keston Hiura,hiurake01,automatic_bbref_match +7821,Ketel Marte,8,marteke01,1210,Ketel Marte,marteke01,automatic_bbref_match +7822,Kevin Gausman,8,gausmke01,706,Kevin Gausman,gausmke01,automatic_bbref_match +7823,Kevin Ginkel,8,ginkeke01,722,Kevin Ginkel,ginkeke01,automatic_bbref_match +7824,Kevin Kiermaier,8,kiermke01,1039,Kevin Kiermaier,kiermke01,automatic_bbref_match +7825,Kevin Newman,8,newmake01,1420,Kevin Newman,newmake01,automatic_bbref_match +7826,Kevin Plawecki,8,plaweke01,1565,Kevin Plawecki,plaweke01,automatic_bbref_match +7827,Kevin Smith,8,smithke05,1854,Kevin Smith,smithke05,automatic_bbref_match +7828,Kirby Snead,8,sneadki01,1859,Kirby Snead,sneadki01,automatic_bbref_match +7829,Kirk McCarty,8,mccarki01,1266,Kirk McCarty,mccarki01,automatic_bbref_match +7830,Kody Clemens,8,clemeko01,390,Kody Clemens,clemeko01,automatic_bbref_match +7831,Kole Calhoun,8,calhoko01,306,Kole Calhoun,calhoko01,automatic_bbref_match +7832,Kolten Wong,8,wongko01,2188,Kolten Wong,wongko01,automatic_bbref_match +7833,Konnor Pilkington,8,pilkiko01,1556,Konnor Pilkington,pilkiko01,automatic_bbref_match +7834,Kris Bryant,8,bryankr01,273,Kris Bryant,bryankr01,automatic_bbref_match +7835,Kris Bubic,8,bubickr01,274,Kris Bubic,bubickr01,automatic_bbref_match +7836,Kurt Suzuki,8,suzukku01,1945,Kurt Suzuki,suzukku01,automatic_bbref_match +7837,Kutter Crawford,8,crawfku01,431,Kutter Crawford,crawfku01,automatic_bbref_match +7838,Kyle Bradish,8,bradiky01,235,Kyle Bradish,bradiky01,automatic_bbref_match +7839,Kyle Farmer,8,farmeky01,598,Kyle Farmer,farmeky01,automatic_bbref_match +7840,Kyle Finnegan,8,finneky01,617,Kyle Finnegan,finneky01,automatic_bbref_match +7841,Kyle Freeland,8,freelky01,650,Kyle Freeland,freelky01,automatic_bbref_match +7842,Kyle Garlick,8,garliky01,696,Kyle Garlick,garliky01,automatic_bbref_match +7843,Kyle Gibson,8,gibsoky01,715,Kyle Gibson,gibsoky01,automatic_bbref_match +7844,Kyle Hendricks,8,hendrky01,856,Kyle Hendricks,hendrky01,automatic_bbref_match +7845,Kyle Higashioka,8,higasky01,895,Kyle Higashioka,higasky01,automatic_bbref_match +7846,Kyle Isbel,8,isbelky01,956,Kyle Isbel,isbelky01,automatic_bbref_match +7847,Kyle Nelson,8,nelsoky01,1412,Kyle Nelson,nelsoky01,automatic_bbref_match +7848,Kyle Schwarber,8,schwaky01,1784,Kyle Schwarber,schwaky01,automatic_bbref_match +7849,Kyle Stowers,8,stoweky01,1917,Kyle Stowers,stoweky01,automatic_bbref_match +7850,Kyle Tucker,8,tuckeky01,2023,Kyle Tucker,tuckeky01,automatic_bbref_match +7851,Kyle Wright,8,wrighky01,2200,Kyle Wright,wrighky01,automatic_bbref_match +7852,LaMonte Wade Jr,8,wadela01,2095,LaMonte Wade Jr,wadela01,automatic_bbref_match +7853,Lance Lynn,8,lynnla01,1173,Lance Lynn,lynnla01,automatic_bbref_match +7854,Lance McCullers Jr,8,mcculla02,1271,Lance McCullers Jr,mcculla02,automatic_bbref_match +7855,Lane Thomas,8,thomala02,1978,Lane Thomas,thomala02,automatic_bbref_match +7856,Lars Nootbaar,8,nootbla01,1436,Lars Nootbaar,nootbla01,automatic_bbref_match +7857,Leody Taveras,8,taverle01,1962,Leody Taveras,taverle01,automatic_bbref_match +7858,Leury Garcia,8,garcile02,679,Leury Garcia,garcile02,automatic_bbref_match +7859,Lewin Diaz,8,diazle01,506,Lewin Diaz,diazle01,automatic_bbref_match +7860,Liam Hendriks,8,hendrli01,857,Liam Hendriks,hendrli01,automatic_bbref_match +7861,Logan Gilbert,8,gilbelo01,718,Logan Gilbert,gilbelo01,automatic_bbref_match +7862,Logan Webb,8,webblo01,2127,Logan Webb,webblo01,automatic_bbref_match +7863,Lorenzo Cain,8,cainlo01,305,Lorenzo Cain,cainlo01,automatic_bbref_match +7864,Lou Trivino,8,trivilo01,2016,Lou Trivino,trivilo01,automatic_bbref_match +7865,Louie Varland,8,varlalo01,2057,Louie Varland,varlalo01,automatic_bbref_match +7866,Louis Head,8,headlo01,840,Louis Head,headlo01,automatic_bbref_match +7867,Lourdes Gurriel Jr,8,gurrilo01,794,Lourdes Gurriel Jr,gurrilo01,automatic_bbref_match +7868,Lucas Gilbreath,8,gilbrlu01,719,Lucas Gilbreath,gilbrlu01,automatic_bbref_match +7869,Lucas Giolito,8,giolilu01,724,Lucas Giolito,giolilu01,automatic_bbref_match +7870,Lucas Luetge,8,luetglu01,1164,Lucas Luetge,luetglu01,automatic_bbref_match +7871,Luis Arraez,8,arraelu01,93,Luis Arraez,arraelu01,automatic_bbref_match +7872,Luis Barrera,8,barrelu01,138,Luis Barrera,barrelu01,automatic_bbref_match +7873,Luis Castillo,8,castilu02,344,Luis Castillo,castilu02,automatic_bbref_match +7874,Luis Cessa,8,cessalu01,361,Luis Cessa,cessalu01,automatic_bbref_match +7875,Luis V Garcia,8,garcilu04,694,Luis Garcia Jr,garcilu04,automatic_bbref_match +7878,Luis Gonzalez,8,gonzalu03,746,Luis Gonzalez,gonzalu03,automatic_bbref_match +7879,Luis Guillorme,8,guilllu01,792,Luis Guillorme,guilllu01,automatic_bbref_match +7881,Luis Rengifo,8,rengilu01,1632,Luis Rengifo,rengilu01,automatic_bbref_match +7882,Luis Robert,8,roberlu01,1660,Luis Robert,roberlu01,automatic_bbref_match +7883,Luis Severino,8,severlu01,1805,Luis Severino,severlu01,automatic_bbref_match +7884,Luis Torrens,8,torrelu01,2002,Luis Torrens,torrelu01,automatic_bbref_match +7885,Luis Urias,8,uriaslu01,2039,Luis Urias,uriaslu01,automatic_bbref_match +7886,Luke Maile,8,mailelu01,1185,Luke Maile,mailelu01,automatic_bbref_match +7887,Luke Raley,8,raleylu01,1602,Luke Raley,raleylu01,automatic_bbref_match +7888,Luke Voit,8,voitlu01,2087,Luke Voit,voitlu01,automatic_bbref_match +7889,Luke Weaver,8,weavelu01,2124,Luke Weaver,weavelu01,automatic_bbref_match +7890,Luke Williams,8,willilu01,2159,Luke Williams,willilu01,automatic_bbref_match +7891,MacKenzie Gore,8,gorema01,754,MacKenzie Gore,gorema01,automatic_bbref_match +7892,Madison Bumgarner,8,bumgama01,278,Madison Bumgarner,bumgama01,automatic_bbref_match +7893,Magneuris Sierra,8,sierrma01,1823,Magneuris Sierra,sierrma01,automatic_bbref_match +7894,Maikel Franco,8,francma02,645,Maikel Franco,francma02,automatic_bbref_match +7895,Manny Banuelos,8,banuema01,123,Manny Banuelos,banuema01,automatic_bbref_match +7896,Manny Machado,8,machama01,1175,Manny Machado,machama01,automatic_bbref_match +7897,Manuel Margot,8,margoma01,1198,Manuel Margot,margoma01,automatic_bbref_match +7898,Manuel Rodriguez,8,rodrima01,1678,Manuel Rodriguez,rodrima01,automatic_bbref_match +7899,Marcell Ozuna,8,ozunama01,1481,Marcell Ozuna,ozunama01,automatic_bbref_match +7900,Marco Gonzales,8,gonzama02,735,Marco Gonzales,gonzama02,automatic_bbref_match +7901,Marcus Semien,8,semiema01,1799,Marcus Semien,semiema01,automatic_bbref_match +7902,Marcus Stroman,8,stromma01,1928,Marcus Stroman,stromma01,automatic_bbref_match +7903,Mark Canha,8,canhama01,316,Mark Canha,canhama01,automatic_bbref_match +7904,Mark Contreras,8,contrma01,413,Mark Contreras,contrma01,automatic_bbref_match +7905,Mark Leiter,8,leitema02,1112,Mark Leiter,leitema02,automatic_bbref_match +7906,Mark Mathias,8,mathima01,1234,Mark Mathias,mathima01,automatic_bbref_match +7907,Mark Melancon,8,melanma01,1298,Mark Melancon,melanma01,automatic_bbref_match +7908,Martin Maldonado,8,maldoma01,1187,Martin Maldonado,maldoma01,automatic_bbref_match +7909,Martin Perez,8,perezma02,1535,Martin Perez,perezma02,automatic_bbref_match +7910,Marwin Gonzalez,8,gonzama01,741,Marwin Gonzalez,gonzama01,automatic_bbref_match +7911,Mason Thompson,8,thompma02,1984,Mason Thompson,thompma02,automatic_bbref_match +7912,Matt Barnes,8,barnema01,131,Matt Barnes,barnema01,automatic_bbref_match +7914,Matt Brash,8,brashma01,241,Matt Brash,brashma01,automatic_bbref_match +7915,Matt Bush,8,bushma01,289,Matt Bush,bushma01,automatic_bbref_match +7916,Matt Carpenter,8,carpema01,329,Matt Carpenter,carpema01,automatic_bbref_match +7917,Matt Chapman,8,chapmma01,367,Matt Chapman,chapmma01,automatic_bbref_match +7918,Matt Duffy,8,duffyma01,542,Matt Duffy,duffyma01,automatic_bbref_match +7919,Matt Festa,8,festama01,610,Matt Festa,festama01,automatic_bbref_match +7920,Matt Foster,8,fostema01,638,Matt Foster,fostema01,automatic_bbref_match +7921,Matt Manning,8,mannima02,1191,Matt Manning,mannima02,automatic_bbref_match +7922,Matt Moore,8,moorema02,1357,Matt Moore,moorema02,automatic_bbref_match +7923,Matt Olson,8,olsonma02,1461,Matt Olson,olsonma02,automatic_bbref_match +7924,Matt Reynolds,8,reynoma03,1640,Matt Reynolds,reynoma03,automatic_bbref_match +7925,Matt Strahm,8,strahma01,1918,Matt Strahm,strahma01,automatic_bbref_match +7926,Matt Swarmer,8,swarmma01,1949,Matt Swarmer,swarmma01,automatic_bbref_match +7927,Matt Thaiss,8,thaisma01,1975,Matt Thaiss,thaisma01,automatic_bbref_match +7928,Matt Vierling,8,vierlma01,2077,Matt Vierling,vierlma01,automatic_bbref_match +7929,Matt Wallner,8,wallnma01,2109,Matt Wallner,wallnma01,automatic_bbref_match +7930,Matt Wisler,8,wislema01,2183,Matt Wisler,wislema01,automatic_bbref_match +7931,Matthew Liberatore,8,liberma01,1121,Matthew Liberatore,liberma01,automatic_bbref_match +7932,Mauricio Dubon,8,dubonma01,538,Mauricio Dubon,dubonma01,automatic_bbref_match +7933,Max Castillo,8,castima03,346,Max Castillo,castima03,automatic_bbref_match +7934,Max Fried,8,friedma01,659,Max Fried,friedma01,automatic_bbref_match +7935,Max Kepler,8,keplema01,1031,Max Kepler,keplema01,automatic_bbref_match +7936,Max Muncy,8,muncyma01,1382,Max Muncy,muncyma01,automatic_bbref_match +7937,Max Scherzer,8,scherma01,1773,Max Scherzer,scherma01,automatic_bbref_match +7938,Max Stassi,8,stassma01,1896,Max Stassi,stassma01,automatic_bbref_match +7939,Meibrys Viloria,8,vilorme01,2081,Meibrys Viloria,vilorme01,automatic_bbref_match +7940,Merrill Kelly,8,kellyme01,1020,Merrill Kelly,kellyme01,automatic_bbref_match +7941,Michael Brantley,8,brantmi02,240,Michael Brantley,brantmi02,automatic_bbref_match +7942,Michael Chavis,8,chavimi01,371,Michael Chavis,chavimi01,automatic_bbref_match +7943,Michael Fulmer,8,fulmemi01,666,Michael Fulmer,fulmemi01,automatic_bbref_match +7944,Michael Grove,8,grovemi01,781,Michael Grove,grovemi01,automatic_bbref_match +7945,Michael Harris,8,harrimi04,827,Michael Harris,harrimi04,automatic_bbref_match +7946,Michael Hermosillo,8,hermomi01,865,Michael Hermosillo,hermomi01,automatic_bbref_match +7947,Michael King,8,kingmi01,1047,Michael King,kingmi01,automatic_bbref_match +7948,Michael Kopech,8,kopecmi01,1071,Michael Kopech,kopecmi01,automatic_bbref_match +7949,Michael Lorenzen,8,lorenmi01,1151,Michael Lorenzen,lorenmi01,automatic_bbref_match +7950,Michael Massey,8,massemi02,1231,Michael Massey,massemi02,automatic_bbref_match +7951,Michael Papierski,8,papiemi01,1495,Michael Papierski,papiemi01,automatic_bbref_match +7952,Michael Perez,8,perezmi03,1539,Michael Perez,perezmi03,automatic_bbref_match +7953,Michael Pineda,8,pinedmi01,1560,Michael Pineda,pinedmi01,automatic_bbref_match +7954,Michael Rucker,8,ruckemi01,1721,Michael Rucker,ruckemi01,automatic_bbref_match +7955,Michael Stefanic,8,stefami01,1901,Michael Stefanic,stefami01,automatic_bbref_match +7957,Michael Toglia,8,toglimi01,1994,Michael Toglia,toglimi01,automatic_bbref_match +7958,Michael Wacha,8,wachami01,2093,Michael Wacha,wachami01,automatic_bbref_match +7959,Mickey Moniak,8,moniami01,1350,Mickey Moniak,moniami01,automatic_bbref_match +7960,Miguel Andujar,8,andujmi01,78,Miguel Andujar,andujmi01,automatic_bbref_match +7961,Miguel Cabrera,8,cabremi01,298,Miguel Cabrera,cabremi01,automatic_bbref_match +7962,Miguel Castro,8,castrmi01,350,Miguel Castro,castrmi01,automatic_bbref_match +7963,Miguel Rojas,8,rojasmi02,1694,Miguel Rojas,rojasmi02,automatic_bbref_match +7964,Miguel Sano,8,sanomi01,1757,Miguel Sano,sanomi01,automatic_bbref_match +7965,Mike Baumann,8,baumami01,152,Mike Baumann,baumami01,automatic_bbref_match +7966,Mike Brosseau,8,brossmi01,263,Mike Brosseau,brossmi01,automatic_bbref_match +7967,Mike Clevinger,8,clevimi01,392,Mike Clevinger,clevimi01,automatic_bbref_match +7968,Mike Ford,8,fordmi01,635,Mike Ford,fordmi01,automatic_bbref_match +7969,Mike Mayers,8,mayermi01,1251,Mike Mayers,mayermi01,automatic_bbref_match +7970,Mike Minor,8,minormi01,1335,Mike Minor,minormi01,automatic_bbref_match +7971,Mike Moustakas,8,moustmi01,1378,Mike Moustakas,moustmi01,automatic_bbref_match +7972,Mike Trout,8,troutmi01,2019,Mike Trout,troutmi01,automatic_bbref_match +7973,Mike Yastrzemski,8,yastrmi01,2210,Mike Yastrzemski,yastrmi01,automatic_bbref_match +7974,Mike Zunino,8,zuninmi01,2234,Mike Zunino,zuninmi01,automatic_bbref_match +8064,Reynaldo Lopez,8,lopezre01,1145,Reynaldo Lopez,lopezre01,automatic_bbref_match +7975,Miles Mikolas,8,mikolmi01,1317,Miles Mikolas,mikolmi01,automatic_bbref_match +7976,Mitch Garver,8,garvemi01,702,Mitch Garver,garvemi01,automatic_bbref_match +7977,Mitch Haniger,8,hanigmi01,818,Mitch Haniger,hanigmi01,automatic_bbref_match +7978,Mitch Keller,8,kellemi03,1017,Mitch Keller,kellemi03,automatic_bbref_match +7979,Mitch White,8,whitemi03,2143,Mitch White,whitemi03,automatic_bbref_match +7980,MJ Melendez,8,melenmj01,1299,MJ Melendez,melenmj01,automatic_bbref_match +7981,Mookie Betts,8,bettsmo01,187,Mookie Betts,bettsmo01,automatic_bbref_match +7982,Mychal Givens,8,givenmy01,725,Mychal Givens,givenmy01,automatic_bbref_match +7983,Myles Straw,8,strawmy01,1924,Myles Straw,strawmy01,automatic_bbref_match +7984,Nabil Crismatt,8,crismna01,436,Nabil Crismatt,crismna01,automatic_bbref_match +7985,Nate Eaton,8,eatonna01,557,Nate Eaton,eatonna01,automatic_bbref_match +7986,Nathan Eovaldi,8,eovalna01,576,Nathan Eovaldi,eovalna01,automatic_bbref_match +7987,Nathaniel Lowe,8,lowena01,1155,Nathaniel Lowe,lowena01,automatic_bbref_match +7988,Nelson Cruz,8,cruzne02,447,Nelson Cruz,cruzne02,automatic_bbref_match +7989,Nelson Velazquez,8,velazne01,2068,Nelson Velazquez,velazne01,automatic_bbref_match +7990,Nestor Cortes Jr,8,cortene01,421,Nestor Cortes Jr,cortene01,automatic_bbref_match +7991,Nicholas Castellanos,8,casteni01,340,Nicholas Castellanos,casteni01,automatic_bbref_match +7992,Nick Allen,8,allenni02,46,Nick Allen,allenni02,automatic_bbref_match +7993,Nick Fortes,8,forteni01,637,Nick Fortes,forteni01,automatic_bbref_match +7994,Nick Gordon,8,gordoni01,752,Nick Gordon,gordoni01,automatic_bbref_match +7995,Nick Lodolo,8,lodolni01,1135,Nick Lodolo,lodolni01,automatic_bbref_match +7996,Nick Madrigal,8,madrini01,1178,Nick Madrigal,madrini01,automatic_bbref_match +7997,Nick Martinez,8,martini01,1224,Nick Martinez,martini01,automatic_bbref_match +7998,Nick Maton,8,matonni01,1239,Nick Maton,matonni01,automatic_bbref_match +7999,Nick Nelson,8,nelsoni01,1410,Nick Nelson,nelsoni01,automatic_bbref_match +8000,Nick Pivetta,8,pivetni01,1564,Nick Pivetta,pivetni01,automatic_bbref_match +8001,Nick Pratto,8,prattni01,1583,Nick Pratto,prattni01,automatic_bbref_match +8002,Nick Sandlin,8,sandlni01,1752,Nick Sandlin,sandlni01,automatic_bbref_match +8003,Nick Senzel,8,senzeni01,1802,Nick Senzel,senzeni01,automatic_bbref_match +8004,Nick Solak,8,solakni01,1867,Nick Solak,solakni01,automatic_bbref_match +8005,Nick Vespi,8,vespini01,2073,Nick Vespi,vespini01,automatic_bbref_match +8006,Nick Wittgren,8,wittgni01,2185,Nick Wittgren,wittgni01,automatic_bbref_match +8007,Nicky Lopez,8,lopezni01,1149,Nicky Lopez,lopezni01,automatic_bbref_match +8008,Nico Hoerner,8,hoernni01,909,Nico Hoerner,hoernni01,automatic_bbref_match +8009,Noah Syndergaard,8,syndeno01,1953,Noah Syndergaard,syndeno01,automatic_bbref_match +8010,Noe Ramirez,8,ramirno01,1606,Noe Ramirez,ramirno01,automatic_bbref_match +8011,Nolan Arenado,8,arenano01,88,Nolan Arenado,arenano01,automatic_bbref_match +8012,Nolan Gorman,8,gormano01,755,Nolan Gorman,gormano01,automatic_bbref_match +8013,Nolan Jones,8,jonesno01,994,Nolan Jones,jonesno01,automatic_bbref_match +8014,Nomar Mazara,8,mazarno01,1254,Nomar Mazara,mazarno01,automatic_bbref_match +8015,Odubel Herrera,8,herreod01,882,Odubel Herrera,herreod01,automatic_bbref_match +8016,Oliver Ortega,8,ortegol01,1466,Oliver Ortega,ortegol01,automatic_bbref_match +8017,Omar Narvaez,8,narvaom01,1401,Omar Narvaez,narvaom01,automatic_bbref_match +8018,Oneil Cruz,8,cruzon01,449,Oneil Cruz,cruzon01,automatic_bbref_match +8019,Orlando Arcia,8,arciaor01,86,Orlando Arcia,arciaor01,automatic_bbref_match +8020,Oscar Gonzalez,8,gonzaos01,744,Oscar Gonzalez,gonzaos01,automatic_bbref_match +8021,Oscar Mercado,8,mercaos01,1306,Oscar Mercado,mercaos01,automatic_bbref_match +8022,Oswald Peraza,8,perazos02,1528,Oswald Peraza,perazos02,automatic_bbref_match +8023,Oswaldo Cabrera,8,cabreos01,303,Oswaldo Cabrera,cabreos01,automatic_bbref_match +8024,Owen Miller,8,milleow01,1327,Owen Miller,milleow01,automatic_bbref_match +8025,Ozzie Albies,8,albieoz01,31,Ozzie Albies,albieoz01,automatic_bbref_match +8026,Pablo Lopez,8,lopezpa01,1146,Pablo Lopez,lopezpa01,automatic_bbref_match +8027,Packy Naughton,8,naughpa01,1403,Packy Naughton,naughpa01,automatic_bbref_match +8028,Paolo Espino,8,espinpa01,583,Paolo Espino,espinpa01,automatic_bbref_match +8029,Patrick Corbin,8,corbipa01,416,Patrick Corbin,corbipa01,automatic_bbref_match +8030,Patrick Mazeika,8,mazeipa01,1255,Patrick Mazeika,mazeipa01,automatic_bbref_match +8031,Patrick Sandoval,8,sandopa02,1754,Patrick Sandoval,sandopa02,automatic_bbref_match +8032,Patrick Wisdom,8,wisdopa01,2181,Patrick Wisdom,wisdopa01,automatic_bbref_match +8033,Paul Blackburn,8,blackpa01,204,Paul Blackburn,blackpa01,automatic_bbref_match +8034,Paul DeJong,8,dejonpa01,485,Paul DeJong,dejonpa01,automatic_bbref_match +8035,Paul Goldschmidt,8,goldspa01,729,Paul Goldschmidt,goldspa01,automatic_bbref_match +8036,Paul Sewald,8,sewalpa01,1806,Paul Sewald,sewalpa01,automatic_bbref_match +8037,Pavin Smith,8,smithpa04,1851,Pavin Smith,smithpa04,automatic_bbref_match +8038,Penn Murfee,8,murfepe01,1386,Penn Murfee,murfepe01,automatic_bbref_match +8039,Pete Alonso,8,alonspe01,53,Pete Alonso,alonspe01,automatic_bbref_match +8040,Pete Fairbanks,8,fairbpe01,592,Pete Fairbanks,fairbpe01,automatic_bbref_match +8041,Peter Strzelecki,8,strzepe01,1930,Peter Strzelecki,strzepe01,automatic_bbref_match +8042,Peyton Burdick,8,burdipe01,282,Peyton Burdick,burdipe01,automatic_bbref_match +8043,Phil Bickford,8,bickfph01,191,Phil Bickford,bickfph01,automatic_bbref_match +8044,Phil Gosselin,8,gosseph01,757,Phil Gosselin,gosseph01,automatic_bbref_match +8045,Phil Maton,8,matonph01,1238,Phil Maton,matonph01,automatic_bbref_match +8046,Pierce Johnson,8,johnspi01,985,Pierce Johnson,johnspi01,automatic_bbref_match +8047,PJ Higgins,8,higgipj01,896,PJ Higgins,higgipj01,automatic_bbref_match +8048,Rafael Devers,8,deverra01,499,Rafael Devers,deverra01,automatic_bbref_match +8049,Rafael Montero,8,montera01,1352,Rafael Montero,montera01,automatic_bbref_match +8050,Rafael Ortega,8,ortegra01,1465,Rafael Ortega,ortegra01,automatic_bbref_match +8051,Raimel Tapia,8,tapiara01,1957,Raimel Tapia,tapiara01,automatic_bbref_match +8052,Raisel Iglesias,8,iglesra01,950,Raisel Iglesias,iglesra01,automatic_bbref_match +8053,Ralph Garza,8,garzara01,704,Ralph Garza,garzara01,automatic_bbref_match +8054,Ramon Laureano,8,laurera01,1097,Ramon Laureano,laurera01,automatic_bbref_match +8055,Ramon Urias,8,uriasra01,2037,Ramon Urias,uriasra01,automatic_bbref_match +8056,Randal Grichuk,8,grichra01,775,Randal Grichuk,grichra01,automatic_bbref_match +8057,Randy Arozarena,8,arozara01,92,Randy Arozarena,arozara01,automatic_bbref_match +8058,Ranger Suarez,8,suarera01,1936,Ranger Suarez,suarera01,automatic_bbref_match +8059,Reese McGuire,8,mcguire01,1277,Reese McGuire,mcguire01,automatic_bbref_match +8060,Reid Detmers,8,detmere01,496,Reid Detmers,detmere01,automatic_bbref_match +8061,Reiver Sanmartin,8,sanmare01,1756,Reiver Sanmartin,sanmare01,automatic_bbref_match +8062,Rene Pinto,8,pintore02,1561,Rene Pinto,pintore02,automatic_bbref_match +8063,Reyes Moronta,8,moronre01,1371,Reyes Moronta,moronre01,automatic_bbref_match +8065,Rhys Hoskins,8,hoskirh01,925,Rhys Hoskins,hoskirh01,automatic_bbref_match +8066,Rich Hill,8,hillri01,898,Rich Hill,hillri01,automatic_bbref_match +8067,Richard Bleier,8,bleieri01,212,Richard Bleier,bleieri01,automatic_bbref_match +8068,Richie Palacios,8,palacri01,1488,Richie Palacios,palacri01,automatic_bbref_match +8069,Riley Adams,8,adamsri03,17,Riley Adams,adamsri03,automatic_bbref_match +8070,Riley Greene,8,greenri03,771,Riley Greene,greenri03,automatic_bbref_match +8071,Roansy Contreras,8,contrro01,412,Roansy Contreras,contrro01,automatic_bbref_match +8072,Rob Refsnyder,8,refsnro01,1626,Rob Refsnyder,refsnro01,automatic_bbref_match +8073,Robbie Grossman,8,grossro01,779,Robbie Grossman,grossro01,automatic_bbref_match +8074,Robbie Ray,8,rayro02,1620,Robbie Ray,rayro02,automatic_bbref_match +8075,Robert Stephenson,8,stephro01,1904,Robert Stephenson,stephro01,automatic_bbref_match +8076,Robert Suarez,8,suarero01,1938,Robert Suarez,suarero01,automatic_bbref_match +8077,Roberto Perez,8,perezro02,1538,Roberto Perez,perezro02,automatic_bbref_match +8078,Robinson Cano,8,canoro01,319,Robinson Cano,canoro01,automatic_bbref_match +8079,Robinson Chirinos,8,chiriro01,373,Robinson Chirinos,chiriro01,automatic_bbref_match +8080,Rodolfo Castro,8,castrro01,353,Rodolfo Castro,castrro01,automatic_bbref_match +8081,Roman Quinn,8,quinnro01,1595,Roman Quinn,quinnro01,automatic_bbref_match +8082,Romy Gonzalez,8,gonzaro01,745,Romy Gonzalez,gonzaro01,automatic_bbref_match +8083,Ron Marinaccio,8,marinro01,1199,Ron Marinaccio,marinro01,automatic_bbref_match +8084,Ronald Acuna Jr,8,acunaro01,12,Ronald Acuna Jr,acunaro01,automatic_bbref_match +8085,Rony Garcia,8,garciro03,689,Rony Garcia,garciro03,automatic_bbref_match +8086,Ross Detwiler,8,detwiro01,497,Ross Detwiler,detwiro01,automatic_bbref_match +8087,Ross Stripling,8,stripro01,1927,Ross Stripling,stripro01,automatic_bbref_match +8088,Rougned Odor,8,odorro01,1451,Rougned Odor,odorro01,automatic_bbref_match +8089,Rowan Wick,8,wickro01,2147,Rowan Wick,wickro01,automatic_bbref_match +8090,Rowdy Tellez,8,tellero01,1972,Rowdy Tellez,tellero01,automatic_bbref_match +8091,Ryan Borucki,8,borucry01,222,Ryan Borucki,borucry01,automatic_bbref_match +8092,Ryan Brasier,8,brasiry01,242,Ryan Brasier,brasiry01,automatic_bbref_match +8093,Ryan Feltner,8,feltnry01,603,Ryan Feltner,feltnry01,automatic_bbref_match +8094,Ryan Helsley,8,helslry01,853,Ryan Helsley,helslry01,automatic_bbref_match +8095,Ryan Jeffers,8,jeffery01,975,Ryan Jeffers,jeffery01,automatic_bbref_match +8096,Ryan Kreidler,8,kreidry01,1076,Ryan Kreidler,kreidry01,automatic_bbref_match +8097,Ryan McKenna,8,mckenry01,1281,Ryan McKenna,mckenry01,automatic_bbref_match +8098,Ryan McMahon,8,mcmahry01,1286,Ryan McMahon,mcmahry01,automatic_bbref_match +8099,Ryan Mountcastle,8,mountry01,1377,Ryan Mountcastle,mountry01,automatic_bbref_match +8100,Ryan OHearn,8,ohearry01,1453,Ryan OHearn,ohearry01,automatic_bbref_match +8101,Ryan Pepiot,8,pepiory01,1521,Ryan Pepiot,pepiory01,automatic_bbref_match +8102,Ryan Pressly,8,pressry01,1584,Ryan Pressly,pressry01,automatic_bbref_match +8103,Ryan Tepera,8,teperry01,1974,Ryan Tepera,teperry01,automatic_bbref_match +8104,Ryan Thompson,8,thompry02,1983,Ryan Thompson,thompry02,automatic_bbref_match +8105,Ryan Yarbrough,8,yarbrry01,2208,Ryan Yarbrough,yarbrry01,automatic_bbref_match +8106,Ryne Stanek,8,stanery01,1892,Ryne Stanek,stanery01,automatic_bbref_match +8107,Salvador Perez,8,perezsa02,1534,Salvador Perez,perezsa02,automatic_bbref_match +8108,Sam Haggerty,8,haggesa01,803,Sam Haggerty,haggesa01,automatic_bbref_match +8109,Sam Hentges,8,hentgsa01,861,Sam Hentges,hentgsa01,automatic_bbref_match +8110,Sam Hilliard,8,hillisa01,903,Sam Hilliard,hillisa01,automatic_bbref_match +8111,Sam Huff,8,huffsa01,936,Sam Huff,huffsa01,automatic_bbref_match +8112,Sam Long,8,longsa01,1139,Sam Long,longsa01,automatic_bbref_match +8113,Sam Moll,8,mollsa01,1346,Sam Moll,mollsa01,automatic_bbref_match +8114,Sandy Alcantara,8,alcansa01,35,Sandy Alcantara,alcansa01,automatic_bbref_match +8115,Sandy Leon,8,leonsa01,1115,Sandy Leon,leonsa01,automatic_bbref_match +8116,Santiago Espinal,8,espinsa01,582,Santiago Espinal,espinsa01,automatic_bbref_match +8117,Scott Barlow,8,barlosc01,128,Scott Barlow,barlosc01,automatic_bbref_match +8118,Scott Effross,8,effrosc01,561,Scott Effross,effrosc01,automatic_bbref_match +8119,Sean Bouchard,8,bouchse01,225,Sean Bouchard,bouchse01,automatic_bbref_match +8120,Sean Hjelle,8,hjellse01,906,Sean Hjelle,hjellse01,automatic_bbref_match +8121,Sean Manaea,8,manaese01,1189,Sean Manaea,manaese01,automatic_bbref_match +8122,Sean Murphy,8,murphse01,1390,Sean Murphy,murphse01,automatic_bbref_match +8123,Sean Poppen,8,poppese01,1576,Sean Poppen,poppese01,automatic_bbref_match +8124,Seby Zavala,8,zavalse01,2223,Seby Zavala,zavalse01,automatic_bbref_match +8125,Seiya Suzuki,8,suzukse01,1946,Seiya Suzuki,suzukse01,automatic_bbref_match +8126,Seranthony Dominguez,8,dominse01,524,Seranthony Dominguez,dominse01,automatic_bbref_match +8127,Sergio Alcantara,8,alcanse01,34,Sergio Alcantara,alcanse01,automatic_bbref_match +8128,Seth Beer,8,beerse01,166,Seth Beer,beerse01,automatic_bbref_match +8129,Seth Brown,8,brownse01,265,Seth Brown,brownse01,automatic_bbref_match +8130,Seth Lugo,8,lugose01,1165,Seth Lugo,lugose01,automatic_bbref_match +8131,Seth Martinez,8,martise01,1226,Seth Martinez,martise01,automatic_bbref_match +8132,Shane Baz,8,bazsh01,155,Shane Baz,bazsh01,automatic_bbref_match +8133,Shane Bieber,8,biebesh01,194,Shane Bieber,biebesh01,automatic_bbref_match +8134,Shane McClanahan,8,mcclash01,1268,Shane McClanahan,mcclash01,automatic_bbref_match +8135,Shawn Armstrong,8,armstsh01,91,Shawn Armstrong,armstsh01,automatic_bbref_match +8136,Shea Langeliers,8,langesh01,1092,Shea Langeliers,langesh01,automatic_bbref_match +8137,Sheldon Neuse,8,neusesh01,1415,Sheldon Neuse,neusesh01,automatic_bbref_match +8138,Shohei Ohtani,8,ohtansh01,1455,Shohei Ohtani,ohtansh01,automatic_bbref_match +8139,Skye Bolt,8,boltsk01,218,Skye Bolt,boltsk01,automatic_bbref_match +8140,Sonny Gray,8,grayso01,765,Sonny Gray,grayso01,automatic_bbref_match +8141,Spencer Howard,8,howarsp01,930,Spencer Howard,howarsp01,automatic_bbref_match +8142,Spencer Steer,8,steersp01,1900,Spencer Steer,steersp01,automatic_bbref_match +8143,Spencer Strider,8,stridsp01,1926,Spencer Strider,stridsp01,automatic_bbref_match +8144,Spencer Torkelson,8,torkesp01,2000,Spencer Torkelson,torkesp01,automatic_bbref_match +8145,Spenser Watkins,8,watkisp01,2121,Spenser Watkins,watkisp01,automatic_bbref_match +8146,Starling Marte,8,martest01,1208,Starling Marte,martest01,automatic_bbref_match +8147,Stephen Piscotty,8,piscost01,1563,Stephen Piscotty,piscost01,automatic_bbref_match +8148,Stephen Vogt,8,vogtst01,2086,Stephen Vogt,vogtst01,automatic_bbref_match +8149,Steve Cishek,8,cishest01,381,Steve Cishek,cishest01,automatic_bbref_match +8150,Steven Duggar,8,duggast01,543,Steven Duggar,duggast01,automatic_bbref_match +8151,Steven Kwan,8,kwanst01,1080,Steven Kwan,kwanst01,automatic_bbref_match +8152,Steven Matz,8,matzst01,1243,Steven Matz,matzst01,automatic_bbref_match +8153,Steven Okert,8,okertst01,1456,Steven Okert,okertst01,automatic_bbref_match +8154,Steven Wilson,8,wilsost02,2169,Steven Wilson,wilsost02,automatic_bbref_match +8155,Stone Garrett,8,garrest01,699,Stone Garrett,garrest01,automatic_bbref_match +8156,Stuart Fairchild,8,faircst01,593,Stuart Fairchild,faircst01,automatic_bbref_match +8157,Taijuan Walker,8,walketa01,2105,Taijuan Walker,walketa01,automatic_bbref_match +8158,Tanner Banks,8,banksta01,122,Tanner Banks,banksta01,automatic_bbref_match +8159,Tanner Houck,8,houckta01,927,Tanner Houck,houckta01,automatic_bbref_match +8160,Tanner Rainey,8,raineta01,1599,Tanner Rainey,raineta01,automatic_bbref_match +8161,Tanner Scott,8,scottta01,1788,Tanner Scott,scottta01,automatic_bbref_match +8162,Tarik Skubal,8,skubata01,1836,Tarik Skubal,skubata01,automatic_bbref_match +8163,Taylor Clarke,8,clarkta01,384,Taylor Clarke,clarkta01,automatic_bbref_match +8164,Taylor Hearn,8,hearnta01,844,Taylor Hearn,hearnta01,automatic_bbref_match +8165,Taylor Rogers,8,rogerta01,1689,Taylor Rogers,rogerta01,automatic_bbref_match +8166,Taylor Trammell,8,trammta01,2008,Taylor Trammell,trammta01,automatic_bbref_match +8167,Taylor Walls,8,wallsta01,2110,Taylor Walls,wallsta01,automatic_bbref_match +8168,Taylor Ward,8,wardta01,2116,Taylor Ward,wardta01,automatic_bbref_match +8169,Teoscar Hernandez,8,hernate01,873,Teoscar Hernandez,hernate01,automatic_bbref_match +8170,Terrin Vavra,8,vavrate01,2062,Terrin Vavra,vavrate01,automatic_bbref_match +8171,Thairo Estrada,8,estrath01,587,Thairo Estrada,estrath01,automatic_bbref_match +8172,Tim Anderson,8,anderti01,73,Tim Anderson,anderti01,automatic_bbref_match +8173,Tim Hill,8,hillti01,900,Tim Hill,hillti01,automatic_bbref_match +8174,Tim Locastro,8,locasti01,1133,Tim Locastro,locasti01,automatic_bbref_match +8175,Tim Mayza,8,mayzati01,1253,Tim Mayza,mayzati01,automatic_bbref_match +8176,TJ Friedl,8,friedtj01,660,TJ Friedl,friedtj01,automatic_bbref_match +8177,TJ McFarland,8,mcfartj01,1273,TJ McFarland,mcfartj01,automatic_bbref_match +8178,Tomas Nido,8,nidoto01,1424,Tomas Nido,nidoto01,automatic_bbref_match +8179,Tommy Edman,8,edmanto01,558,Tommy Edman,edmanto01,automatic_bbref_match +8180,Tommy Henry,8,henryto01,859,Tommy Henry,henryto01,automatic_bbref_match +8181,Tommy La Stella,8,lasteto01,1082,Tommy La Stella,lasteto01,automatic_bbref_match +8182,Tommy Nance,8,nanceto01,1398,Tommy Nance,nanceto01,automatic_bbref_match +8183,Tommy Pham,8,phamth01,1552,Tommy Pham,phamth01,automatic_bbref_match +8184,Tony Gonsolin,8,gonsoto01,734,Tony Gonsolin,gonsoto01,automatic_bbref_match +8185,Tony Kemp,8,kempto01,1027,Tony Kemp,kempto01,automatic_bbref_match +8186,Travis dArnaud,8,darnatr01,461,Travis dArnaud,darnatr01,automatic_bbref_match +8187,Travis Demeritte,8,demertr01,491,Travis Demeritte,demertr01,automatic_bbref_match +8188,Trayce Thompson,8,thomptr01,1980,Trayce Thompson,thomptr01,automatic_bbref_match +8189,Trea Turner,8,turnetr01,1,Trea Turner,turnetr01,automatic_bbref_match +8190,Trent Grisham,8,grishtr01,776,Trent Grisham,grishtr01,automatic_bbref_match +8191,Trent Thornton,8,thorntr01,1988,Trent Thornton,thorntr01,automatic_bbref_match +8192,Trevor Gott,8,gotttr01,758,Trevor Gott,gotttr01,automatic_bbref_match +8193,Trevor Larnach,8,larnatr01,1094,Trevor Larnach,larnatr01,automatic_bbref_match +8194,Trevor May,8,maytr01,1248,Trevor May,maytr01,automatic_bbref_match +8195,Trevor Megill,8,megiltr01,1294,Trevor Megill,megiltr01,automatic_bbref_match +8196,Trevor Richards,8,richatr01,1646,Trevor Richards,richatr01,automatic_bbref_match +8197,Trevor Rogers,8,rogertr01,1693,Trevor Rogers,rogertr01,automatic_bbref_match +8198,Trevor Stephan,8,stephtr01,1902,Trevor Stephan,stephtr01,automatic_bbref_match +8199,Trevor Story,8,storytr01,1914,Trevor Story,storytr01,automatic_bbref_match +8200,Trevor Williams,8,willitr01,2156,Trevor Williams,willitr01,automatic_bbref_match +8201,Trey Mancini,8,mancitr01,1190,Trey Mancini,mancitr01,automatic_bbref_match +8202,Triston Casas,8,casastr01,335,Triston Casas,casastr01,automatic_bbref_match +8203,Triston McKenzie,8,mckentr01,1282,Triston McKenzie,mckentr01,automatic_bbref_match +8204,Tucker Barnhart,8,barnhtu01,135,Tucker Barnhart,barnhtu01,automatic_bbref_match +8205,Tucker Davidson,8,davidtu01,464,Tucker Davidson,davidtu01,automatic_bbref_match +8206,Tucupita Marcano,8,marcatu01,1196,Tucupita Marcano,marcatu01,automatic_bbref_match +8207,Ty Blach,8,blachty01,202,Ty Blach,blachty01,automatic_bbref_match +8208,Ty France,8,francty01,642,Ty France,francty01,automatic_bbref_match +8209,Tyler Alexander,8,alexaty01,37,Tyler Alexander,alexaty01,automatic_bbref_match +8210,Tyler Anderson,8,anderty01,68,Tyler Anderson,anderty01,automatic_bbref_match +8211,Tyler Beede,8,beedety01,164,Tyler Beede,beedety01,automatic_bbref_match +8212,Tyler Danish,8,danisty01,460,Tyler Danish,danisty01,automatic_bbref_match +8213,Tyler Duffey,8,duffety01,540,Tyler Duffey,duffety01,automatic_bbref_match +8214,Tyler Freeman,8,freemty01,654,Tyler Freeman,freemty01,automatic_bbref_match +8215,Tyler Gilbert,8,gilbety01,717,Tyler Gilbert,gilbety01,automatic_bbref_match +8216,Tyler Heineman,8,heinety01,851,Tyler Heineman,heinety01,automatic_bbref_match +8217,Tyler Kinley,8,kinlety01,1050,Tyler Kinley,kinlety01,automatic_bbref_match +8218,Tyler Mahle,8,mahlety01,1183,Tyler Mahle,mahlety01,automatic_bbref_match +8219,Tyler Matzek,8,matzety01,1244,Tyler Matzek,matzety01,automatic_bbref_match +8220,Tylor Megill,8,megilty01,1295,Tylor Megill,megilty01,automatic_bbref_match +8221,Tyler Naquin,8,naquity01,1399,Tyler Naquin,naquity01,automatic_bbref_match +8222,Tyler Nevin,8,nevinty01,1417,Tyler Nevin,nevinty01,automatic_bbref_match +8223,Tyler ONeill,8,oneilty01,1463,Tyler ONeill,oneilty01,automatic_bbref_match +8224,Tyler Rogers,8,rogerty01,1691,Tyler Rogers,rogerty01,automatic_bbref_match +8225,Tyler Stephenson,8,stephty01,1905,Tyler Stephenson,stephty01,automatic_bbref_match +8226,Tyler Wade,8,wadety01,2094,Tyler Wade,wadety01,automatic_bbref_match +8227,Tyler Wells,8,wellsty01,2132,Tyler Wells,wellsty01,automatic_bbref_match +8228,Tyrone Taylor,8,tayloty01,1965,Tyrone Taylor,tayloty01,automatic_bbref_match +8229,Vaughn Grissom,8,grissva01,777,Vaughn Grissom,grissva01,automatic_bbref_match +8230,Victor Arano,8,aranovi01,83,Victor Arano,aranovi01,automatic_bbref_match +8231,Victor Caratini,8,caratvi01,325,Victor Caratini,caratvi01,automatic_bbref_match +8232,Victor Reyes,8,reyesvi01,1638,Victor Reyes,reyesvi01,automatic_bbref_match +8233,Victor Robles,8,roblevi01,1666,Victor Robles,roblevi01,automatic_bbref_match +8234,Vidal Brujan,8,brujavi01,272,Vidal Brujan,brujavi01,automatic_bbref_match +8235,Vimael Machin,8,machivi01,1177,Vimael Machin,machivi01,automatic_bbref_match +8236,Vince Velasquez,8,velasvi01,2065,Vince Velasquez,velasvi01,automatic_bbref_match +8237,Vinnie Pasquantino,8,pasquvi01,1503,Vinnie Pasquantino,pasquvi01,automatic_bbref_match +8238,Vladimir Guerrero Jr,8,guerrvl02,789,Vladimir Guerrero Jr,guerrvl02,automatic_bbref_match +8239,Vladimir Gutierrez,8,gutievl01,797,Vladimir Gutierrez,gutievl01,automatic_bbref_match +8240,Wade Miley,8,mileywa01,1318,Wade Miley,mileywa01,automatic_bbref_match +8241,Walker Buehler,8,buehlwa01,277,Walker Buehler,buehlwa01,automatic_bbref_match +8242,Wander Franco,8,francwa01,646,Wander Franco,francwa01,automatic_bbref_match +8243,Wandy Peralta,8,peralwa01,1524,Wandy Peralta,peralwa01,automatic_bbref_match +8244,Whit Merrifield,8,merriwh01,1309,Whit Merrifield,merriwh01,automatic_bbref_match +8245,Wil Crowe,8,crowewi01,446,Wil Crowe,crowewi01,automatic_bbref_match +8246,Wil Myers,8,myerswi01,1395,Wil Myers,myerswi01,automatic_bbref_match +8247,Will Benson,8,bensowi01,179,Will Benson,bensowi01,automatic_bbref_match +8248,Will Brennan,8,brennwi02,250,Will Brennan,brennwi02,automatic_bbref_match +8249,Will D Smith,8,smithwi05,1841,Will Smith,smithwi05,automatic_bbref_match +8250,Will Smith,8,smithwi04,1843,Will Smith,smithwi04,automatic_bbref_match +8251,Will Vest,8,vestwi01,2074,Will Vest,vestwi01,automatic_bbref_match +8252,Willi Castro,8,castrwi01,352,Willi Castro,castrwi01,automatic_bbref_match +8253,Willson Contreras,8,contrwi02,411,William Contreras,contrwi02,automatic_bbref_match +8254,William Contreras,8,contrwi01,410,Willson Contreras,contrwi01,automatic_bbref_match +8255,Willy Adames,8,adamewi01,14,Willy Adames,adamewi01,automatic_bbref_match +8256,Wilmer Flores,8,florewi01,627,Wilmer Flores,florewi01,automatic_bbref_match +8257,Wily Peralta,8,peralwi01,1523,Wily Peralta,peralwi01,automatic_bbref_match +8258,Wyatt Mills,8,millswy01,1331,Wyatt Mills,millswy01,automatic_bbref_match +8259,Xander Bogaerts,8,bogaexa01,216,Xander Bogaerts,bogaexa01,automatic_bbref_match +8260,Yadiel Hernandez,8,hernaya01,875,Yadiel Hernandez,hernaya01,automatic_bbref_match +8261,Yadier Molina,8,molinya01,1344,Yadier Molina,molinya01,automatic_bbref_match +8262,Yairo Munoz,8,munozya01,1383,Yairo Munoz,munozya01,automatic_bbref_match +8263,Yan Gomes,8,gomesya01,731,Yan Gomes,gomesya01,automatic_bbref_match +8264,Yandy Diaz,8,diazya01,507,Yandy Diaz,diazya01,automatic_bbref_match +8265,Yasmani Grandal,8,grandya01,761,Yasmani Grandal,grandya01,automatic_bbref_match +8266,Yency Almonte,8,almonye01,50,Yency Almonte,almonye01,automatic_bbref_match +8267,Yermin Mercedes,8,merceye01,1307,Yermin Mercedes,merceye01,automatic_bbref_match +8268,Yerry De Los Santos,8,delosye01,481,Yerry De Los Santos,delosye01,automatic_bbref_match +8269,Yimi Garcia,8,garciyi01,680,Yimi Garcia,garciyi01,automatic_bbref_match +8270,Yoan Moncada,8,moncayo01,1348,Yoan Moncada,moncayo01,automatic_bbref_match +8271,Yohan Ramirez,8,ramiryo01,1611,Yohan Ramirez,ramiryo01,automatic_bbref_match +8272,Yonathan Daza,8,dazayo01,476,Yonathan Daza,dazayo01,automatic_bbref_match +8273,Yordan Alvarez,8,alvaryo01,61,Yordan Alvarez,alvaryo01,automatic_bbref_match +8274,Yoshi Tsutsugo,8,tsutsyo01,2021,Yoshi Tsutsugo,tsutsyo01,automatic_bbref_match +8275,Yu Chang,8,changyu01,364,Yu Chang,changyu01,automatic_bbref_match +8276,Yu Darvish,8,darviyu01,462,Yu Darvish,darviyu01,automatic_bbref_match +8277,Yuli Gurriel,8,gourryu01,793,Yuli Gurriel,gourryu01,automatic_bbref_match +8278,Yunior Marte,8,marteyu01,1211,Yunior Marte,marteyu01,automatic_bbref_match +8279,Yusei Kikuchi,8,kikucyu01,1040,Yusei Kikuchi,kikucyu01,automatic_bbref_match +8280,Zac Gallen,8,galleza01,673,Zac Gallen,galleza01,automatic_bbref_match +8281,Zach Davies,8,davieza02,465,Zach Davies,davieza02,automatic_bbref_match +8282,Zach Eflin,8,eflinza01,562,Zach Eflin,eflinza01,automatic_bbref_match +8283,Zach Jackson,8,jacksza02,963,Zach Jackson,jacksza02,automatic_bbref_match +8284,Zach Logue,8,logueza01,1137,Zach Logue,logueza01,automatic_bbref_match +8285,Zach McKinstry,8,mckinza01,1284,Zach McKinstry,mckinza01,automatic_bbref_match +8286,Zach Plesac,8,plesaza01,1566,Zach Plesac,plesaza01,automatic_bbref_match +8287,Zach Pop,8,popza01,1575,Zach Pop,popza01,automatic_bbref_match +8288,Zach Thompson,8,thompza01,1981,Zach Thompson,thompza01,automatic_bbref_match +8289,Zack Collins,8,colliza01,403,Zack Collins,colliza01,automatic_bbref_match +8290,Zack Greinke,8,greinza01,774,Zack Greinke,greinza01,automatic_bbref_match +8291,Zack Littell,8,litteza01,1127,Zack Littell,litteza01,automatic_bbref_match +8292,Zack Thompson,8,thompza02,1985,Zack Thompson,thompza02,automatic_bbref_match +8293,Zack Wheeler,8,wheelza01,2139,Zack Wheeler,wheelza01,automatic_bbref_match +8294,Diego A Castillo,8,castidi02,341,Diego Castillo,castidi02,automatic_bbref_match +8295,Aaron Ashby,9,ashbyaa01,98,Aaron Ashby,ashbyaa01,automatic_bbref_match +8296,Aaron Bummer,9,bummeaa01,279,Aaron Bummer,bummeaa01,automatic_bbref_match +8297,Aaron Civale,9,civalaa01,383,Aaron Civale,civalaa01,automatic_bbref_match +8298,Aaron Hicks,9,hicksaa01,892,Aaron Hicks,hicksaa01,automatic_bbref_match +8299,Aaron Judge,9,judgeaa01,3,Aaron Judge,judgeaa01,automatic_bbref_match +8300,Aaron Loup,9,loupaa01,1152,Aaron Loup,loupaa01,automatic_bbref_match +8301,Aaron Nola,9,nolaaa01,1433,Aaron Nola,nolaaa01,automatic_bbref_match +8302,Aaron Sanchez,9,sanchaa01,1745,Aaron Sanchez,sanchaa01,automatic_bbref_match +8303,Abraham Toro,9,toroab01,2001,Abraham Toro,toroab01,automatic_bbref_match +8304,Adam Cimber,9,cimbead01,380,Adam Cimber,cimbead01,automatic_bbref_match +8305,Adam Duvall,9,duvalad01,553,Adam Duvall,duvalad01,automatic_bbref_match +8306,Adam Engel,9,engelad01,574,Adam Engel,engelad01,automatic_bbref_match +8307,Adam Frazier,9,fraziad01,648,Adam Frazier,fraziad01,automatic_bbref_match +8308,Adam Oller,9,ollerad01,1459,Adam Oller,ollerad01,automatic_bbref_match +8309,Adam Ottavino,9,ottavad01,1475,Adam Ottavino,ottavad01,automatic_bbref_match +8310,Adam Wainwright,9,wainwad01,2099,Adam Wainwright,wainwad01,automatic_bbref_match +8311,Adley Rutschman,9,rutscad01,1729,Adley Rutschman,rutscad01,automatic_bbref_match +8312,Adolis Garcia,9,garciad02,690,Adolis Garcia,garciad02,automatic_bbref_match +8313,Adrian Houser,9,housead01,928,Adrian Houser,housead01,automatic_bbref_match +8314,Adrian Martinez,9,martiad01,1225,Adrian Martinez,martiad01,automatic_bbref_match +8315,Adrian Morejon,9,morejad01,1363,Adrian Morejon,morejad01,automatic_bbref_match +8316,Adrian Sampson,9,sampsad01,1742,Adrian Sampson,sampsad01,automatic_bbref_match +8317,AJ Minter,9,minteaj01,1336,AJ Minter,minteaj01,automatic_bbref_match +8318,AJ Pollock,9,polloaj01,1571,AJ Pollock,polloaj01,automatic_bbref_match +8319,AJ Puk,9,pukaj01,1592,AJ Puk,pukaj01,automatic_bbref_match +8320,Akil Baddoo,9,baddoak01,109,Akil Baddoo,baddoak01,automatic_bbref_match +8321,Alan Trejo,9,trejoal01,2012,Alan Trejo,trejoal01,automatic_bbref_match +8322,Albert Abreu,9,abreual01,9,Albert Abreu,abreual01,automatic_bbref_match +8323,Albert Almora Jr,9,almoral01,51,Albert Almora Jr,almoral01,automatic_bbref_match +8324,Albert Pujols,9,pujolal01,1591,Albert Pujols,pujolal01,automatic_bbref_match +8325,Alcides Escobar,9,escobal02,580,Alcides Escobar,escobal02,automatic_bbref_match +8326,Alec Bohm,9,bohmal01,217,Alec Bohm,bohmal01,automatic_bbref_match +8327,Aledmys Diaz,9,diazal02,505,Aledmys Diaz,diazal02,automatic_bbref_match +8328,Alejandro Kirk,9,kirkal01,1056,Alejandro Kirk,kirkal01,automatic_bbref_match +8329,Alejo Lopez,9,lopezal03,1148,Alejo Lopez,lopezal03,automatic_bbref_match +8330,Alek Manoah,9,manoaal01,1192,Alek Manoah,manoaal01,automatic_bbref_match +8331,Alek Thomas,9,thomaal01,1979,Alek Thomas,thomaal01,automatic_bbref_match +8332,Alex Bregman,9,bregmal01,248,Alex Bregman,bregmal01,automatic_bbref_match +8333,Alex Call,9,callal02,308,Alex Call,callal02,automatic_bbref_match +8334,Alex Cobb,9,cobbal01,394,Alex Cobb,cobbal01,automatic_bbref_match +8335,Alex Colome,9,colomal01,404,Alex Colome,colomal01,automatic_bbref_match +8336,Alex Faedo,9,faedoal01,591,Alex Faedo,faedoal01,automatic_bbref_match +8337,Alex Kirilloff,9,kirilal01,1055,Alex Kirilloff,kirilal01,automatic_bbref_match +8338,Alex Lange,9,langeal01,1091,Alex Lange,langeal01,automatic_bbref_match +8339,Alex Verdugo,9,verdual01,2069,Alex Verdugo,verdual01,automatic_bbref_match +8340,Alex Vesia,9,vesiaal01,2072,Alex Vesia,vesiaal01,automatic_bbref_match +8341,Alex Wood,9,woodal02,2193,Alex Wood,woodal02,automatic_bbref_match +8342,Alex Young,9,youngal01,2217,Alex Young,youngal01,automatic_bbref_match +8343,Alexis Diaz,9,diazal03,509,Alexis Diaz,diazal03,automatic_bbref_match +8344,Alfonso Rivas,9,rivasal01,1654,Alfonso Rivas,rivasal01,automatic_bbref_match +8345,Amed Rosario,9,rosaram01,1711,Amed Rosario,rosaram01,automatic_bbref_match +8346,Amir Garrett,9,garream01,698,Amir Garrett,garream01,automatic_bbref_match +8347,Andre Pallante,9,pallaan01,1492,Andre Pallante,pallaan01,automatic_bbref_match +8348,Andrelton Simmons,9,simmoan01,1825,Andrelton Simmons,simmoan01,automatic_bbref_match +8349,Andres Gimenez,9,gimenan01,721,Andres Gimenez,gimenan01,automatic_bbref_match +8350,Andres Machado,9,machaan02,1176,Andres Machado,machaan02,automatic_bbref_match +8351,Andres Munoz,9,munozan01,1384,Andres Munoz,munozan01,automatic_bbref_match +8352,Andrew Bellatti,9,bellaan01,169,Andrew Bellatti,bellaan01,automatic_bbref_match +8353,Andrew Benintendi,9,beninan01,177,Andrew Benintendi,beninan01,automatic_bbref_match +8354,Andrew Chafin,9,chafian01,363,Andrew Chafin,chafian01,automatic_bbref_match +8355,Andrew Heaney,9,heanean01,843,Andrew Heaney,heanean01,automatic_bbref_match +8356,Andrew Kittredge,9,kittran01,1057,Andrew Kittredge,kittran01,automatic_bbref_match +8357,Andrew Knizner,9,kniznan01,1065,Andrew Knizner,kniznan01,automatic_bbref_match +8358,Andrew McCutchen,9,mccutan01,1272,Andrew McCutchen,mccutan01,automatic_bbref_match +8359,Andrew Vaughn,9,vaughan01,2061,Andrew Vaughn,vaughan01,automatic_bbref_match +8360,Andrew Velazquez,9,velazan01,2067,Andrew Velazquez,velazan01,automatic_bbref_match +8361,Andrew Wantz,9,wantzan01,2115,Andrew Wantz,wantzan01,automatic_bbref_match +8362,Andy Ibanez,9,ibanean01,948,Andy Ibanez,ibanean01,automatic_bbref_match +8363,Anibal Sanchez,9,sanchan01,1743,Anibal Sanchez,sanchan01,automatic_bbref_match +8364,Anthony Banda,9,bandaan01,121,Anthony Banda,bandaan01,automatic_bbref_match +8365,Anthony Bass,9,bassan01,145,Anthony Bass,bassan01,automatic_bbref_match +8366,Anthony Bender,9,bendean01,176,Anthony Bender,bendean01,automatic_bbref_match +8367,Anthony Gose,9,gosean01,756,Anthony Gose,gosean01,automatic_bbref_match +8368,Anthony Misiewicz,9,misiean01,1338,Anthony Misiewicz,misiean01,automatic_bbref_match +8369,Anthony Rendon,9,rendoan01,1630,Anthony Rendon,rendoan01,automatic_bbref_match +8370,Anthony Rizzo,9,rizzoan01,1658,Anthony Rizzo,rizzoan01,automatic_bbref_match +8371,Anthony Santander,9,santaan02,1764,Anthony Santander,santaan02,automatic_bbref_match +8372,Antonio Senzatela,9,senzaan01,1801,Antonio Senzatela,senzaan01,automatic_bbref_match +8373,Aramis Garcia,9,garciar01,683,Aramis Garcia,garciar01,automatic_bbref_match +8374,Aristides Aquino,9,aquinar01,81,Aristides Aquino,aquinar01,automatic_bbref_match +8375,Aroldis Chapman,9,chapmar01,366,Aroldis Chapman,chapmar01,automatic_bbref_match +8376,Art Warren,9,warrear01,2119,Art Warren,warrear01,automatic_bbref_match +8377,Austin Barnes,9,barneau01,132,Austin Barnes,barneau01,automatic_bbref_match +8378,Austin Davis,9,davisau01,471,Austin Davis,davisau01,automatic_bbref_match +8379,Austin Gomber,9,gombeau01,730,Austin Gomber,gombeau01,automatic_bbref_match +8380,Austin Hays,9,haysau01,839,Austin Hays,haysau01,automatic_bbref_match +8381,Austin Hedges,9,hedgeau01,848,Austin Hedges,hedgeau01,automatic_bbref_match +8382,Austin Meadows,9,meadoau01,1290,Austin Meadows,meadoau01,automatic_bbref_match +8383,Austin Nola,9,nolaau01,1432,Austin Nola,nolaau01,automatic_bbref_match +8384,Austin Pruitt,9,pruitau01,1588,Austin Pruitt,pruitau01,automatic_bbref_match +8385,Austin Riley,9,rileyau01,1649,Austin Riley,rileyau01,automatic_bbref_match +8386,Austin Romine,9,rominau01,1704,Austin Romine,rominau01,automatic_bbref_match +8387,Austin Slater,9,slateau01,1838,Austin Slater,slateau01,automatic_bbref_match +8388,Austin Voth,9,vothau01,2091,Austin Voth,vothau01,automatic_bbref_match +8389,Austin Wynns,9,wynnsau01,2202,Austin Wynns,wynnsau01,automatic_bbref_match +8390,Avisail Garcia,9,garciav01,678,Avisail Garcia,garciav01,automatic_bbref_match +8391,Bailey Falter,9,falteba01,594,Bailey Falter,falteba01,automatic_bbref_match +8392,Bailey Ober,9,oberba01,1447,Bailey Ober,oberba01,automatic_bbref_match +8393,Beau Brieske,9,briesbe01,256,Beau Brieske,briesbe01,automatic_bbref_match +8394,Ben Gamel,9,gamelbe01,676,Ben Gamel,gamelbe01,automatic_bbref_match +8395,Bennett Sousa,9,sousabe01,1880,Bennett Sousa,sousabe01,automatic_bbref_match +8396,Blake Snell,9,snellbl01,1861,Blake Snell,snellbl01,automatic_bbref_match +8397,Bligh Madris,9,madribl01,1179,Bligh Madris,madribl01,automatic_bbref_match +8398,Bo Bichette,9,bichebo01,190,Bo Bichette,bichebo01,automatic_bbref_match +8399,Bobby Dalbec,9,dalbebo01,458,Bobby Dalbec,dalbebo01,automatic_bbref_match +8400,Bobby Witt Jr,9,wittbo02,2184,Bobby Witt Jr,wittbo02,automatic_bbref_match +8401,Brad Boxberger,9,boxbebr01,229,Brad Boxberger,boxbebr01,automatic_bbref_match +8402,Brad Hand,9,handbr01,816,Brad Hand,handbr01,automatic_bbref_match +8403,Brad Keller,9,kellebr01,1016,Brad Keller,kellebr01,automatic_bbref_match +8404,Brad Miller,9,millebr02,1322,Brad Miller,millebr02,automatic_bbref_match +8405,Bradley Zimmer,9,zimmebr01,2227,Bradley Zimmer,zimmebr01,automatic_bbref_match +8406,Brady Singer,9,singebr01,1827,Brady Singer,singebr01,automatic_bbref_match +8407,Brandon Belt,9,beltbr01,173,Brandon Belt,beltbr01,automatic_bbref_match +8408,Brandon Crawford,9,crawfbr01,430,Brandon Crawford,crawfbr01,automatic_bbref_match +8409,Brandon Drury,9,drurybr01,535,Brandon Drury,drurybr01,automatic_bbref_match +8410,Brandon Hughes,9,hughebr01,938,Brandon Hughes,hughebr01,automatic_bbref_match +8411,Brandon Lowe,9,lowebr01,1156,Brandon Lowe,lowebr01,automatic_bbref_match +8412,Brandon Marsh,9,marshbr02,1205,Brandon Marsh,marshbr02,automatic_bbref_match +8413,Brandon Nimmo,9,nimmobr01,1425,Brandon Nimmo,nimmobr01,automatic_bbref_match +8414,Brandon Woodruff,9,woodrbr01,2196,Brandon Woodruff,woodrbr01,automatic_bbref_match +8489,Clay Holmes,9,holmecl01,919,Clay Holmes,holmecl01,automatic_bbref_match +8415,Braxton Garrett,9,garrebr01,701,Braxton Garrett,garrebr01,automatic_bbref_match +8416,Brayan Bello,9,bellobr01,171,Brayan Bello,bellobr01,automatic_bbref_match +8417,Brendan Donovan,9,donovbr01,527,Brendan Donovan,donovbr01,automatic_bbref_match +8418,Brendan Rodgers,9,rodgebr02,1668,Brendan Rodgers,rodgebr02,automatic_bbref_match +8419,Brent Suter,9,suterbr01,1943,Brent Suter,suterbr01,automatic_bbref_match +8420,Brett Martin,9,martibr01,1218,Brett Martin,martibr01,automatic_bbref_match +8421,Brett Phillips,9,phillbr02,1555,Brett Phillips,phillbr02,automatic_bbref_match +8422,Brian Anderson,9,anderbr06,69,Brian Anderson,anderbr06,automatic_bbref_match +8423,Brian Serven,9,servebr01,1803,Brian Serven,servebr01,automatic_bbref_match +8424,Brock Burke,9,burkebr01,284,Brock Burke,burkebr01,automatic_bbref_match +8425,Brooks Raley,9,raleybr01,1601,Brooks Raley,raleybr01,automatic_bbref_match +8426,Bruce Zimmermann,9,zimmebr02,2231,Bruce Zimmermann,zimmebr02,automatic_bbref_match +8427,Brusdar Graterol,9,gratebr01,763,Brusdar Graterol,gratebr01,automatic_bbref_match +8428,Bryan Abreu,9,abreubr01,8,Bryan Abreu,abreubr01,automatic_bbref_match +8429,Bryan Baker,9,bakerbr01,117,Bryan Baker,bakerbr01,automatic_bbref_match +8430,Bryan De La Cruz,9,delacbr01,479,Bryan De La Cruz,delacbr01,automatic_bbref_match +8431,Bryan Reynolds,9,reynobr01,1641,Bryan Reynolds,reynobr01,automatic_bbref_match +8432,Bryan Shaw,9,shawbr01,1808,Bryan Shaw,shawbr01,automatic_bbref_match +8433,Bryce Elder,9,elderbr01,564,Bryce Elder,elderbr01,automatic_bbref_match +8434,Bryce Harper,9,harpebr03,823,Bryce Harper,harpebr03,automatic_bbref_match +8435,Bryse Wilson,9,wilsobr02,2171,Bryse Wilson,wilsobr02,automatic_bbref_match +8436,Bryson Stott,9,stottbr01,1915,Bryson Stott,stottbr01,automatic_bbref_match +8437,Bubba Thompson,9,thompbu01,1986,Bubba Thompson,thompbu01,automatic_bbref_match +8438,Buck Farmer,9,farmebu01,597,Buck Farmer,farmebu01,automatic_bbref_match +8439,Buddy Kennedy,9,kennebu01,1030,Buddy Kennedy,kennebu01,automatic_bbref_match +8440,Byron Buxton,9,buxtoby01,295,Byron Buxton,buxtoby01,automatic_bbref_match +8441,Cal Quantrill,9,quantca01,1593,Cal Quantrill,quantca01,automatic_bbref_match +8442,Cal Raleigh,9,raleica01,1600,Cal Raleigh,raleica01,automatic_bbref_match +8443,Cal Stevenson,9,steveca01,1907,Cal Stevenson,steveca01,automatic_bbref_match +8444,Caleb Ferguson,9,ferguca01,605,Caleb Ferguson,ferguca01,automatic_bbref_match +8445,Caleb Smith,9,smithca03,1845,Caleb Smith,smithca03,automatic_bbref_match +8446,Caleb Thielbar,9,thielca01,1977,Caleb Thielbar,thielca01,automatic_bbref_match +8447,Calvin Faucher,9,fauchca01,599,Calvin Faucher,fauchca01,automatic_bbref_match +8448,Calvin Mitchell,9,mitchca01,1341,Calvin Mitchell,mitchca01,automatic_bbref_match +8449,Camilo Doval,9,dovalca01,529,Camilo Doval,dovalca01,automatic_bbref_match +8488,Clarke Schmidt,9,schmicl01,1774,Clarke Schmidt,schmicl01,automatic_bbref_match +8450,Carl Edwards Jr,9,edwarca01,560,Carl Edwards Jr,edwarca01,automatic_bbref_match +8451,Carlos Carrasco,9,carraca01,331,Carlos Carrasco,carraca01,automatic_bbref_match +8452,Carlos Correa,9,correca01,420,Carlos Correa,correca01,automatic_bbref_match +8453,Carlos Estevez,9,estevca01,585,Carlos Estevez,estevca01,automatic_bbref_match +8454,Carlos Hernandez,9,hernaca04,880,Carlos Hernandez,hernaca04,automatic_bbref_match +8455,Carlos Rodon,9,rodonca01,1670,Carlos Rodon,rodonca01,automatic_bbref_match +8456,Carlos Santana,9,santaca01,1759,Carlos Santana,santaca01,automatic_bbref_match +8457,Carson Kelly,9,kellyca02,1023,Carson Kelly,kellyca02,automatic_bbref_match +8458,Cavan Biggio,9,biggica01,196,Cavan Biggio,biggica01,automatic_bbref_match +8459,Cedric Mullins,9,mullice01,1381,Cedric Mullins,mullice01,automatic_bbref_match +8460,Cesar Hernandez,9,hernace02,870,Cesar Hernandez,hernace02,automatic_bbref_match +8461,Chad Kuhl,9,kuhlch01,1078,Chad Kuhl,kuhlch01,automatic_bbref_match +8462,Chad Pinder,9,pindech01,1559,Chad Pinder,pindech01,automatic_bbref_match +8463,Charles Leblanc,9,leblach01,1105,Charles Leblanc,leblach01,automatic_bbref_match +8464,Charlie Blackmon,9,blackch02,205,Charlie Blackmon,blackch02,automatic_bbref_match +8465,Charlie Culberson,9,culbech01,453,Charlie Culberson,culbech01,automatic_bbref_match +8466,Charlie Morton,9,mortoch02,1375,Charlie Morton,mortoch02,automatic_bbref_match +8467,Chas McCormick,9,mccorch01,1269,Chas McCormick,mccorch01,automatic_bbref_match +8468,Chase Anderson,9,anderch01,67,Chase Anderson,anderch01,automatic_bbref_match +8469,Chase De Jong,9,dejonch01,478,Chase De Jong,dejonch01,automatic_bbref_match +8470,Chase Silseth,9,silsech01,1824,Chase Silseth,silsech01,automatic_bbref_match +8471,Chasen Shreve,9,shrevch01,1819,Chasen Shreve,shrevch01,automatic_bbref_match +8472,Chris Archer,9,archech01,85,Chris Archer,archech01,automatic_bbref_match +8473,Chris Bassitt,9,bassich01,146,Chris Bassitt,bassich01,automatic_bbref_match +8474,Chris Flexen,9,flexech01,626,Chris Flexen,flexech01,automatic_bbref_match +8475,Chris Martin,9,martich02,1214,Chris Martin,martich02,automatic_bbref_match +8476,Chris Stratton,9,stratch01,1922,Chris Stratton,stratch01,automatic_bbref_match +8477,Chris Taylor,9,tayloch03,1964,Chris Taylor,tayloch03,automatic_bbref_match +8478,Christian Arroyo,9,arroych01,96,Christian Arroyo,arroych01,automatic_bbref_match +8479,Christian Bethancourt,9,bethach01,185,Christian Bethancourt,bethach01,automatic_bbref_match +8480,Christian Vazquez,9,vazquch01,2063,Christian Vazquez,vazquch01,automatic_bbref_match +8481,Christian Walker,9,walkech02,2104,Christian Walker,walkech02,automatic_bbref_match +8482,Christian Yelich,9,yelicch01,2212,Christian Yelich,yelicch01,automatic_bbref_match +8483,Christopher Morel,9,morelch01,1364,Christopher Morel,morelch01,automatic_bbref_match +8484,Chuckie Robinson,9,robinch04,1664,Chuckie Robinson,robinch04,automatic_bbref_match +8485,Cionel Perez,9,perezci01,1540,Cionel Perez,perezci01,automatic_bbref_match +8486,CJ Abrams,9,abramcj01,6,CJ Abrams,abramcj01,automatic_bbref_match +8487,CJ Cron,9,croncj01,441,CJ Cron,croncj01,automatic_bbref_match +8490,Clayton Kershaw,9,kershcl01,1034,Clayton Kershaw,kershcl01,automatic_bbref_match +8491,Cody Bellinger,9,bellico01,170,Cody Bellinger,bellico01,automatic_bbref_match +8492,Cody Morris,9,morrico01,1372,Cody Morris,morrico01,automatic_bbref_match +8493,Cody Poteet,9,poteeco01,1579,Cody Poteet,poteeco01,automatic_bbref_match +8494,Cole Irvin,9,irvinco01,954,Cole Irvin,irvinco01,automatic_bbref_match +8495,Cole Ragans,9,raganco01,1598,Cole Ragans,raganco01,automatic_bbref_match +8496,Cole Sands,9,sandsco01,1755,Cole Sands,sandsco01,automatic_bbref_match +8497,Cole Sulser,9,sulseco01,1942,Cole Sulser,sulseco01,automatic_bbref_match +8498,Cole Tucker,9,tuckeco01,2022,Cole Tucker,tuckeco01,automatic_bbref_match +8499,Colin Holderman,9,holdeco01,913,Colin Holderman,holdeco01,automatic_bbref_match +8500,Colin Moran,9,moranco01,1360,Colin Moran,moranco01,automatic_bbref_match +8501,Colin Poche,9,pocheco01,1568,Colin Poche,pocheco01,automatic_bbref_match +8502,Collin McHugh,9,mchugco01,1278,Collin McHugh,mchugco01,automatic_bbref_match +8503,Collin Snider,9,snideco01,1862,Collin Snider,snideco01,automatic_bbref_match +8504,Connor Brogdon,9,brogdco01,261,Connor Brogdon,brogdco01,automatic_bbref_match +8505,Connor Joe,9,joeco01,983,Connor Joe,joeco01,automatic_bbref_match +8506,Connor Overton,9,overtco01,1478,Connor Overton,overtco01,automatic_bbref_match +8507,Connor Wong,9,wongco01,2189,Connor Wong,wongco01,automatic_bbref_match +8508,Cooper Hummel,9,hummeco01,939,Cooper Hummel,hummeco01,automatic_bbref_match +8509,Corbin Burnes,9,burneco01,286,Corbin Burnes,burneco01,automatic_bbref_match +8510,Corbin Carroll,9,carroco02,332,Corbin Carroll,carroco02,automatic_bbref_match +8511,Corey Dickerson,9,dickeco01,513,Corey Dickerson,dickeco01,automatic_bbref_match +8512,Corey Kluber,9,klubeco01,1060,Corey Kluber,klubeco01,automatic_bbref_match +8513,Corey Knebel,9,knebeco01,1063,Corey Knebel,knebeco01,automatic_bbref_match +8514,Corey Seager,9,seageco01,1794,Corey Seager,seageco01,automatic_bbref_match +8515,Cory Abbott,9,abbotco01,5,Cory Abbott,abbotco01,automatic_bbref_match +8516,Craig Kimbrel,9,kimbrcr01,1043,Craig Kimbrel,kimbrcr01,automatic_bbref_match +8517,Craig Stammen,9,stammcr01,1891,Craig Stammen,stammcr01,automatic_bbref_match +8518,Cristian Javier,9,javiecr01,971,Cristian Javier,javiecr01,automatic_bbref_match +8519,Cristian Pache,9,pachecr01,1482,Cristian Pache,pachecr01,automatic_bbref_match +8520,Cristopher Sanchez,9,sanchcr01,1748,Cristopher Sanchez,sanchcr01,automatic_bbref_match +8521,Curt Casali,9,casalcu01,334,Curt Casali,casalcu01,automatic_bbref_match +8522,Dakota Hudson,9,hudsoda02,934,Dakota Hudson,hudsoda02,automatic_bbref_match +8523,Dallas Keuchel,9,keuchda01,1035,Dallas Keuchel,keuchda01,automatic_bbref_match +8524,Daniel Vogelbach,9,vogelda01,2085,Daniel Vogelbach,vogelda01,automatic_bbref_match +8525,Dane Dunning,9,dunnida01,548,Dane Dunning,dunnida01,automatic_bbref_match +8526,Daniel Bard,9,bardda01,125,Daniel Bard,bardda01,automatic_bbref_match +8527,Daniel Castano,9,castada01,337,Daniel Castano,castada01,automatic_bbref_match +8528,Daniel Hudson,9,hudsoda01,933,Daniel Hudson,hudsoda01,automatic_bbref_match +8529,Daniel Lynch,9,lynchda02,1172,Daniel Lynch,lynchda02,automatic_bbref_match +8530,Daniel Norris,9,norrida01,1439,Daniel Norris,norrida01,automatic_bbref_match +8531,Danny Jansen,9,janseda01,969,Danny Jansen,janseda01,automatic_bbref_match +8532,Danny Mendick,9,mendida01,1302,Danny Mendick,mendida01,automatic_bbref_match +8533,Dansby Swanson,9,swansda01,1947,Dansby Swanson,swansda01,automatic_bbref_match +8534,Dany Jimenez,9,jimenda01,981,Dany Jimenez,jimenda01,automatic_bbref_match +8535,Darick Hall,9,hallda02,808,Darick Hall,hallda02,automatic_bbref_match +8536,Darin Ruf,9,rufda01,1722,Darin Ruf,rufda01,automatic_bbref_match +8537,Darren ODay,9,odayda01,1449,Darren ODay,odayda01,automatic_bbref_match +8538,Daulton Jefferies,9,jeffeda01,974,Daulton Jefferies,jeffeda01,automatic_bbref_match +8539,Daulton Varsho,9,varshda01,2058,Daulton Varsho,varshda01,automatic_bbref_match +8540,Dauri Moreta,9,moretda01,1367,Dauri Moreta,moretda01,automatic_bbref_match +8541,David Bednar,9,bednada01,162,David Bednar,bednada01,automatic_bbref_match +8542,David Bote,9,boteda01,224,David Bote,boteda01,automatic_bbref_match +8543,David Fletcher,9,fletcda02,624,David Fletcher,fletcda02,automatic_bbref_match +8544,David Peralta,9,peralda01,1522,David Peralta,peralda01,automatic_bbref_match +8545,David Peterson,9,peterda01,1548,David Peterson,peterda01,automatic_bbref_match +8546,David Phelps,9,phelpda01,1554,David Phelps,phelpda01,automatic_bbref_match +8547,David Price,9,priceda01,1585,David Price,priceda01,automatic_bbref_match +8548,David Robertson,9,roberda08,1662,David Robertson,roberda08,automatic_bbref_match +8549,David Villar,9,villada01,2080,David Villar,villada01,automatic_bbref_match +8550,Davis Martin,9,martida03,1219,Davis Martin,martida03,automatic_bbref_match +8551,Daz Cameron,9,camerda01,310,Daz Cameron,camerda01,automatic_bbref_match +8552,Dean Kremer,9,kremede01,1077,Dean Kremer,kremede01,automatic_bbref_match +8553,Dee Strange Gordon,9,gordode01,1920,Dee Strange Gordon,gordode01,automatic_bbref_match +8554,Dennis Santana,9,santade01,1762,Dennis Santana,santade01,automatic_bbref_match +8555,Derek Hill,9,hillde01,899,Derek Hill,hillde01,automatic_bbref_match +8556,Dermis Garcia,9,garcide02,687,Dermis Garcia,garcide02,automatic_bbref_match +8557,Devin Smeltzer,9,smeltde01,1840,Devin Smeltzer,smeltde01,automatic_bbref_match +8558,Devin Williams,9,willide03,2158,Devin Williams,willide03,automatic_bbref_match +8559,Didi Gregorius,9,gregodi01,772,Didi Gregorius,gregodi01,automatic_bbref_match +8560,Diego Castillo,9,castidi01,345,Diego Castillo,castidi01,automatic_bbref_match +8561,Dillon Peters,9,peterdi01,1544,Dillon Peters,peterdi01,automatic_bbref_match +8562,Dillon Tate,9,tatedi01,1959,Dillon Tate,tatedi01,automatic_bbref_match +8563,Dinelson Lamet,9,lametdi01,1090,Dinelson Lamet,lametdi01,automatic_bbref_match +8564,DJ LeMahieu,9,lemahdj01,1114,DJ LeMahieu,lemahdj01,automatic_bbref_match +8565,Domingo Acevedo,9,acevedo01,11,Domingo Acevedo,acevedo01,automatic_bbref_match +8566,Domingo German,9,germado01,713,Domingo German,germado01,automatic_bbref_match +8567,Dominic Leone,9,leonedo01,1116,Dominic Leone,leonedo01,automatic_bbref_match +8568,Dominic Smith,9,smithdo02,1849,Dominic Smith,smithdo02,automatic_bbref_match +8569,Donovan Solano,9,solando01,1868,Donovan Solano,solando01,automatic_bbref_match +8570,Donovan Walton,9,waltodo01,2113,Donovan Walton,waltodo01,automatic_bbref_match +8571,Drew Hutchison,9,hutchdr01,944,Drew Hutchison,hutchdr01,automatic_bbref_match +8572,Drew Rasmussen,9,rasmudr01,1618,Drew Rasmussen,rasmudr01,automatic_bbref_match +8573,Drew Smith,9,smithdr01,1848,Drew Smith,smithdr01,automatic_bbref_match +8574,Drew Smyly,9,smylydr01,1858,Drew Smyly,smylydr01,automatic_bbref_match +8575,Drew Waters,9,waterdr01,2120,Drew Waters,waterdr01,automatic_bbref_match +8576,Duane Underwood,9,underdu01,2033,Duane Underwood,underdu01,automatic_bbref_match +8577,Dustin May,9,maydu01,1249,Dustin May,maydu01,automatic_bbref_match +8578,Dylan Bundy,9,bundydy01,280,Dylan Bundy,bundydy01,automatic_bbref_match +8579,Dylan Carlson,9,carlsdy01,327,Dylan Carlson,carlsdy01,automatic_bbref_match +8580,Dylan Cease,9,ceasedy01,355,Dylan Cease,ceasedy01,automatic_bbref_match +8581,Dylan Coleman,9,colemdy01,401,Dylan Coleman,colemdy01,automatic_bbref_match +8582,Dylan Floro,9,florody01,629,Dylan Floro,florody01,automatic_bbref_match +8583,Dylan Lee,9,leedy01,1108,Dylan Lee,leedy01,automatic_bbref_match +8584,Dylan Moore,9,mooredy01,1358,Dylan Moore,mooredy01,automatic_bbref_match +8585,Eddie Rosario,9,rosared01,1710,Eddie Rosario,rosared01,automatic_bbref_match +8586,Edmundo Sosa,9,sosaed01,1876,Edmundo Sosa,sosaed01,automatic_bbref_match +8587,Eduardo Escobar,9,escobed01,581,Eduardo Escobar,escobed01,automatic_bbref_match +8588,Eduardo Rodriguez,9,rodried05,1675,Eduardo Rodriguez,rodried05,automatic_bbref_match +8589,Edward Cabrera,9,cabreed02,302,Edward Cabrera,cabreed02,automatic_bbref_match +8590,Edward Olivares,9,olivaed02,1458,Edward Olivares,olivaed02,automatic_bbref_match +8591,Edwin Diaz,9,diazed04,503,Edwin Diaz,diazed04,automatic_bbref_match +8592,Edwin Rios,9,riosed01,1651,Edwin Rios,riosed01,automatic_bbref_match +8593,Ehire Adrianza,9,adriaeh01,22,Ehire Adrianza,adriaeh01,automatic_bbref_match +8594,Elehuris Montero,9,monteel01,1353,Elehuris Montero,monteel01,automatic_bbref_match +8595,Eli Morgan,9,morgael01,1369,Eli Morgan,morgael01,automatic_bbref_match +8596,Eli White,9,whiteel04,2140,Eli White,whiteel04,automatic_bbref_match +8597,Elias Diaz,9,diazel01,502,Elias Diaz,diazel01,automatic_bbref_match +8598,Elieser Hernandez,9,hernael01,874,Elieser Hernandez,hernael01,automatic_bbref_match +8599,Eloy Jimenez,9,jimenel02,980,Eloy Jimenez,jimenel02,automatic_bbref_match +8600,Elvin Rodriguez,9,rodriel02,1679,Elvin Rodriguez,rodriel02,automatic_bbref_match +8601,Elvis Andrus,9,andruel01,77,Elvis Andrus,andruel01,automatic_bbref_match +8602,Emilio Pagan,9,paganem01,1484,Emilio Pagan,paganem01,automatic_bbref_match +8603,Emmanuel Clase,9,claseem01,385,Emmanuel Clase,claseem01,automatic_bbref_match +8604,Emmanuel Rivera,9,riverem01,1657,Emmanuel Rivera,riverem01,automatic_bbref_match +8605,Enrique Hernandez,9,hernaen02,871,Enrique Hernandez,hernaen02,automatic_bbref_match +8606,Enyel De Los Santos,9,delosen01,482,Enyel De Los Santos,delosen01,automatic_bbref_match +8607,Erasmo Ramirez,9,ramirer02,1604,Erasmo Ramirez,ramirer02,automatic_bbref_match +8608,Eric Haase,9,haaseer01,801,Eric Haase,haaseer01,automatic_bbref_match +8609,Eric Hosmer,9,hosmeer01,926,Eric Hosmer,hosmeer01,automatic_bbref_match +8610,Eric Lauer,9,lauerer01,1096,Eric Lauer,lauerer01,automatic_bbref_match +8611,Eric Stout,9,stouter01,1916,Eric Stout,stouter01,automatic_bbref_match +8612,Erich Uelmen,9,uelmeer01,2032,Erich Uelmen,uelmeer01,automatic_bbref_match +8613,Erick Fedde,9,feddeer01,600,Erick Fedde,feddeer01,automatic_bbref_match +8650,Gio Urshela,9,urshegi01,2042,Gio Urshela,urshegi01,automatic_bbref_match +8614,Erik Swanson,9,swanser01,1948,Erik Swanson,swanser01,automatic_bbref_match +8615,Ernie Clement,9,clemeer01,391,Ernie Clement,clemeer01,automatic_bbref_match +8616,Eugenio Suarez,9,suareeu01,1934,Eugenio Suarez,suareeu01,automatic_bbref_match +8617,Evan Longoria,9,longoev01,1140,Evan Longoria,longoev01,automatic_bbref_match +8619,Ezequiel Duran,9,duranez01,551,Ezequiel Duran,duranez01,automatic_bbref_match +8620,Felix Bautista,9,bautife01,154,Felix Bautista,bautife01,automatic_bbref_match +8621,Framber Valdez,9,valdefr01,2048,Framber Valdez,valdefr01,automatic_bbref_match +8622,Franchy Cordero,9,cordefr02,418,Franchy Cordero,cordefr02,automatic_bbref_match +8623,Francisco Lindor,9,lindofr01,1124,Francisco Lindor,lindofr01,automatic_bbref_match +8625,Frank Schwindel,9,schwifr01,1786,Frank Schwindel,schwifr01,automatic_bbref_match +8626,Frankie Montas,9,montafr02,1351,Frankie Montas,montafr02,automatic_bbref_match +8627,Franmil Reyes,9,reyesfr01,1634,Franmil Reyes,reyesfr01,automatic_bbref_match +8628,Freddie Freeman,9,freemfr01,652,Freddie Freeman,freemfr01,automatic_bbref_match +8629,Freddy Peralta,9,peralfr01,1525,Freddy Peralta,peralfr01,automatic_bbref_match +8630,Gabriel Arias,9,ariasga01,89,Gabriel Arias,ariasga01,automatic_bbref_match +8631,Gabriel Moreno,9,morenga01,1366,Gabriel Moreno,morenga01,automatic_bbref_match +8632,Garrett Cooper,9,coopega03,415,Garrett Cooper,coopega03,automatic_bbref_match +8633,Garrett Hampson,9,hampsga01,814,Garrett Hampson,hampsga01,automatic_bbref_match +8634,Garrett Hill,9,hillga02,901,Garrett Hill,hillga02,automatic_bbref_match +8635,Garrett Mitchell,9,mitchga01,1340,Garrett Mitchell,mitchga01,automatic_bbref_match +8636,Garrett Richards,9,richaga01,1645,Garrett Richards,richaga01,automatic_bbref_match +8637,Garrett Stubbs,9,stubbga01,1931,Garrett Stubbs,stubbga01,automatic_bbref_match +8638,Garrett Whitlock,9,whitlga01,2146,Garrett Whitlock,whitlga01,automatic_bbref_match +8639,Gary Sanchez,9,sanchga02,1746,Gary Sanchez,sanchga02,automatic_bbref_match +8640,Gavin Lux,9,luxga01,1169,Gavin Lux,luxga01,automatic_bbref_match +8641,Gavin Sheets,9,sheetga01,1811,Gavin Sheets,sheetga01,automatic_bbref_match +8642,Genesis Cabrera,9,cabrege01,301,Genesis Cabrera,cabrege01,automatic_bbref_match +8643,George Kirby,9,kirbyge01,1054,George Kirby,kirbyge01,automatic_bbref_match +8644,George Springer,9,springe01,1888,George Springer,springe01,automatic_bbref_match +8645,Geraldo Perdomo,9,perdoge01,1531,Geraldo Perdomo,perdoge01,automatic_bbref_match +8646,German Marquez,9,marquge01,1204,German Marquez,marquge01,automatic_bbref_match +8647,Gerrit Cole,9,colege01,398,Gerrit Cole,colege01,automatic_bbref_match +8648,Giancarlo Stanton,9,stantmi03,1893,Giancarlo Stanton,stantmi03,automatic_bbref_match +8649,Gilberto Celestino,9,celesgi01,358,Gilberto Celestino,celesgi01,automatic_bbref_match +8651,Giovanny Gallegos,9,gallegi01,672,Giovanny Gallegos,gallegi01,automatic_bbref_match +8652,Glenn Otto,9,ottogl01,1476,Glenn Otto,ottogl01,automatic_bbref_match +8653,Gleyber Torres,9,torregl01,2003,Gleyber Torres,torregl01,automatic_bbref_match +8654,Graham Ashcraft,9,ashcrgr01,99,Graham Ashcraft,ashcrgr01,automatic_bbref_match +8655,Greg Allen,9,allengr01,44,Greg Allen,allengr01,automatic_bbref_match +8656,Gregory Soto,9,sotogr01,1878,Gregory Soto,sotogr01,automatic_bbref_match +8657,Griffin Jax,9,jaxgr01,972,Griffin Jax,jaxgr01,automatic_bbref_match +8658,Guillermo Heredia,9,heredgu01,862,Guillermo Heredia,heredgu01,automatic_bbref_match +8659,Gunnar Henderson,9,hendegu01,855,Gunnar Henderson,hendegu01,automatic_bbref_match +8660,Ha Seong Kim,9,kimha01,1042,Ha Seong Kim,kimha01,automatic_bbref_match +8661,Hansel Robles,9,robleha01,1665,Hansel Robles,robleha01,automatic_bbref_match +8662,Hanser Alberto,9,alberha01,30,Hanser Alberto,alberha01,automatic_bbref_match +8663,Harold Castro,9,castrha01,349,Harold Castro,castrha01,automatic_bbref_match +8664,Harold Ramirez,9,ramirha02,1609,Harold Ramirez,ramirha02,automatic_bbref_match +8665,Harrison Bader,9,baderha01,110,Harrison Bader,baderha01,automatic_bbref_match +8666,Hayden Wesneski,9,wesneha01,2137,Hayden Wesneski,wesneha01,automatic_bbref_match +8667,Heath Hembree,9,hembrhe01,854,Heath Hembree,hembrhe01,automatic_bbref_match +8668,Hector Neris,9,nerishe01,1413,Hector Neris,nerishe01,automatic_bbref_match +8669,Hirokazu Sawamura,9,sawamhi01,1769,Hirokazu Sawamura,sawamhi01,automatic_bbref_match +8670,Hoby Milner,9,milneho01,1332,Hoby Milner,milneho01,automatic_bbref_match +8671,Huascar Brazoban,9,brazohu01,246,Huascar Brazoban,brazohu01,automatic_bbref_match +8672,Humberto Castellanos,9,castehu01,339,Humberto Castellanos,castehu01,automatic_bbref_match +8673,Hunter Brown,9,brownhu01,267,Hunter Brown,brownhu01,automatic_bbref_match +8674,Hunter Dozier,9,doziehu01,533,Hunter Dozier,doziehu01,automatic_bbref_match +8675,Hunter Greene,9,greenhu01,770,Hunter Greene,greenhu01,automatic_bbref_match +8676,Hunter Harvey,9,harvehu01,836,Hunter Harvey,harvehu01,automatic_bbref_match +8677,Hunter Renfroe,9,renfrhu01,1631,Hunter Renfroe,renfrhu01,automatic_bbref_match +8678,Hunter Strickland,9,strichu01,1925,Hunter Strickland,strichu01,automatic_bbref_match +8679,Hyun Jin Ryu,9,ryuhy01,1733,Hyun Jin Ryu,ryuhy01,automatic_bbref_match +8680,Ian Anderson,9,anderia01,74,Ian Anderson,anderia01,automatic_bbref_match +8681,Ian Gibaut,9,gibauia01,714,Ian Gibaut,gibauia01,automatic_bbref_match +8682,Ian Happ,9,happia01,820,Ian Happ,happia01,automatic_bbref_match +8683,Ian Kennedy,9,kenneia01,1029,Ian Kennedy,kenneia01,automatic_bbref_match +8684,Ildemaro Vargas,9,vargail01,2054,Ildemaro Vargas,vargail01,automatic_bbref_match +8685,Isaac Paredes,9,paredis01,1497,Isaac Paredes,paredis01,automatic_bbref_match +8686,Isiah Kiner Falefa,9,kineris01,1044,Isiah Kiner Falefa,kineris01,automatic_bbref_match +8687,Jace Peterson,9,peterja01,1547,Jace Peterson,peterja01,automatic_bbref_match +8688,Jack Flaherty,9,flaheja01,622,Jack Flaherty,flaheja01,automatic_bbref_match +8689,Jack Mayfield,9,mayfija01,1252,Jack Mayfield,mayfija01,automatic_bbref_match +8690,Jack Suwinski,9,suwinja01,1944,Jack Suwinski,suwinja01,automatic_bbref_match +8691,Jackie Bradley Jr,9,bradlja02,239,Jackie Bradley Jr,bradlja02,automatic_bbref_match +8692,Jackson Stephens,9,stephja01,1903,Jackson Stephens,stephja01,automatic_bbref_match +8736,Jeff Hoffman,9,hoffmje02,910,Jeff Hoffman,hoffmje02,automatic_bbref_match +8693,Jacob deGrom,9,degroja01,484,Jacob deGrom,degroja01,automatic_bbref_match +8694,Jacob Stallings,9,stallja01,1890,Jacob Stallings,stallja01,automatic_bbref_match +8695,Jaime Barria,9,barrija01,141,Jaime Barria,barrija01,automatic_bbref_match +8696,Jake Bird,9,birdja01,198,Jake Bird,birdja01,automatic_bbref_match +8697,Jake Burger,9,burgeja01,283,Jake Burger,burgeja01,automatic_bbref_match +8698,Jake Cave,9,caveja01,354,Jake Cave,caveja01,automatic_bbref_match +8699,Jake Cronenworth,9,croneja01,442,Jake Cronenworth,croneja01,automatic_bbref_match +8700,Jake Diekman,9,diekmja01,514,Jake Diekman,diekmja01,automatic_bbref_match +8701,Jake Fraley,9,fraleja01,641,Jake Fraley,fraleja01,automatic_bbref_match +8702,Jake Junis,9,junisja01,1004,Jakob Junis,junisja01,automatic_bbref_match +8703,Jake Lamb,9,lambja01,1087,Jake Lamb,lambja01,automatic_bbref_match +8704,Jake Marisnick,9,marisja01,1200,Jake Marisnick,marisja01,automatic_bbref_match +8705,Jake McCarthy,9,mccarja02,1265,Jake McCarthy,mccarja02,automatic_bbref_match +8706,Jake McGee,9,mcgeeja01,1274,Jake McGee,mcgeeja01,automatic_bbref_match +8707,Jake Meyers,9,meyerja02,1315,Jake Meyers,meyerja02,automatic_bbref_match +8708,Jake Odorizzi,9,odorija01,1452,Jake Odorizzi,odorija01,automatic_bbref_match +8709,Jake Woodford,9,woodfja01,2195,Jake Woodford,woodfja01,automatic_bbref_match +8710,Jalen Beeks,9,beeksja02,165,Jalen Beeks,beeksja02,automatic_bbref_match +8711,James Kaprielian,9,kaprija01,1008,James Kaprielian,kaprija01,automatic_bbref_match +8712,James Karinchak,9,karinja01,1009,James Karinchak,karinja01,automatic_bbref_match +8713,James McCann,9,mccanja02,1261,James McCann,mccanja02,automatic_bbref_match +8714,Jameson Taillon,9,taillja01,1954,Jameson Taillon,taillja01,automatic_bbref_match +8715,Jandel Gustave,9,gustaja01,795,Jandel Gustave,gustaja01,automatic_bbref_match +8716,Jared Koenig,9,koenija01,1068,Jared Koenig,koenija01,automatic_bbref_match +8717,Jared Walsh,9,walshja01,2111,Jared Walsh,walshja01,automatic_bbref_match +8718,Jarlin Garcia,9,garcija04,684,Jarlin Garcia,garcija04,automatic_bbref_match +8719,Jarred Kelenic,9,kelenja01,1015,Jarred Kelenic,kelenja01,automatic_bbref_match +8720,Jarren Duran,9,duranja01,552,Jarren Duran,duranja01,automatic_bbref_match +8721,Jason Adam,9,adamja01,13,Jason Adam,adamja01,automatic_bbref_match +8722,Jason Alexander,9,alexaja01,38,Jason Alexander,alexaja01,automatic_bbref_match +8723,Jason Castro,9,castrja01,347,Jason Castro,castrja01,automatic_bbref_match +8724,Jason Delay,9,delayja01,487,Jason Delay,delayja01,automatic_bbref_match +8725,Jason Foley,9,foleyja01,632,Jason Foley,foleyja01,automatic_bbref_match +8726,Jason Heyward,9,heywaja01,891,Jason Heyward,heywaja01,automatic_bbref_match +8727,Jason Vosler,9,vosleja01,2090,Jason Vosler,vosleja01,automatic_bbref_match +8728,Javier Assad,9,assadja01,100,Javier Assad,assadja01,automatic_bbref_match +8729,Javier Baez,9,baezja01,112,Javier Baez,baezja01,automatic_bbref_match +8730,Jazz Chisholm,9,chishja01,375,Jazz Chisholm,chishja01,automatic_bbref_match +8731,JB Wendelken,9,wendejb01,2134,JB Wendelken,wendejb01,automatic_bbref_match +8732,JD Davis,9,davisjd01,474,JD Davis,davisjd01,automatic_bbref_match +8733,JD Martinez,9,martijd02,1229,JD Martinez,martijd02,automatic_bbref_match +8734,Jean Segura,9,segurje01,1796,Jean Segura,segurje01,automatic_bbref_match +8735,Jed Lowrie,9,lowrije01,1158,Jed Lowrie,lowrije01,automatic_bbref_match +8737,Jeff McNeil,9,mcneije01,1287,Jeff McNeil,mcneije01,automatic_bbref_match +8738,Jeffrey Springs,9,sprinje01,1889,Jeffrey Springs,sprinje01,automatic_bbref_match +8739,Jeimer Candelario,9,candeje01,315,Jeimer Candelario,candeje01,automatic_bbref_match +8740,Jerar Encarnacion,9,encarje01,572,Jerar Encarnacion,encarje01,automatic_bbref_match +8741,Jeremy Pena,9,penaje02,1519,Jeremy Pena,penaje02,automatic_bbref_match +8742,Jermaine Palacios,9,palacje01,1487,Jermaine Palacios,palacje01,automatic_bbref_match +8743,Jesse Chavez,9,chaveje01,370,Jesse Chavez,chaveje01,automatic_bbref_match +8744,Jesse Winker,9,winkeje01,2177,Jesse Winker,winkeje01,automatic_bbref_match +8745,Jesus Aguilar,9,aguilje01,25,Jesus Aguilar,aguilje01,automatic_bbref_match +8746,Jesus Luzardo,9,luzarje01,1170,Jesus Luzardo,luzarje01,automatic_bbref_match +8747,Jesus Sanchez,9,sanchje02,1749,Jesus Sanchez,sanchje02,automatic_bbref_match +8748,Jeurys Familia,9,familje01,595,Jeurys Familia,familje01,automatic_bbref_match +8749,Jharel Cotton,9,cottojh01,423,Jharel Cotton,cottojh01,automatic_bbref_match +8750,Jhoan Duran,9,duranjh01,550,Jhoan Duran,duranjh01,automatic_bbref_match +8751,Jhoulys Chacin,9,chacijh01,362,Jhoulys Chacin,chacijh01,automatic_bbref_match +8752,Ji Man Choi,9,choiji01,377,Ji Man Choi,choiji01,automatic_bbref_match +8753,Jimmy Herget,9,hergeji01,863,Jimmy Herget,hergeji01,automatic_bbref_match +8754,Jimmy Lambert,9,lambeji01,1089,Jimmy Lambert,lambeji01,automatic_bbref_match +8755,JJ Bleday,9,bledajj01,211,JJ Bleday,bledajj01,automatic_bbref_match +8756,JJ Matijevic,9,matijjj01,1237,JJ Matijevic,matijjj01,automatic_bbref_match +8757,Jo Adell,9,adelljo01,20,Jo Adell,adelljo01,automatic_bbref_match +8758,Joan Adon,9,adonjo01,21,Joan Adon,adonjo01,automatic_bbref_match +8759,Joc Pederson,9,pederjo01,1514,Joc Pederson,pederjo01,automatic_bbref_match +8760,Joe Barlow,9,barlojo01,129,Joe Barlow,barlojo01,automatic_bbref_match +8761,Joe Jimenez,9,jimenjo02,979,Joe Jimenez,jimenjo02,automatic_bbref_match +8762,Joe Kelly,9,kellyjo05,1021,Joe Kelly,kellyjo05,automatic_bbref_match +8763,Joe Mantiply,9,mantijo01,1193,Joe Mantiply,mantijo01,automatic_bbref_match +8764,Joe Musgrove,9,musgrjo01,1394,Joe Musgrove,musgrjo01,automatic_bbref_match +8765,Joe Ryan,9,ryanjo04,1732,Joe Ryan,ryanjo04,automatic_bbref_match +8766,Joe Smith,9,smithjo05,1842,Joe Smith,smithjo05,automatic_bbref_match +8767,Joel Kuhnel,9,kuhnejo01,1079,Joel Kuhnel,kuhnejo01,automatic_bbref_match +8768,Joel Payamps,9,payamjo01,1507,Joel Payamps,payamjo01,automatic_bbref_match +8769,Joely Rodriguez,9,rodrijo06,1673,Joely Rodriguez,rodrijo06,automatic_bbref_match +8770,Joey Bart,9,bartjo01,142,Joey Bart,bartjo01,automatic_bbref_match +8771,Joey Gallo,9,gallojo01,674,Joey Gallo,gallojo01,automatic_bbref_match +8772,Joey Krehbiel,9,krehbjo01,1075,Joey Krehbiel,krehbjo01,automatic_bbref_match +8773,Joey Meneses,9,menesjo01,1303,Joey Meneses,menesjo01,automatic_bbref_match +8774,Joey Votto,9,vottojo01,2092,Joey Votto,vottojo01,automatic_bbref_match +8775,Joey Wendle,9,wendljo01,2135,Joey Wendle,wendljo01,automatic_bbref_match +8776,Joey Wentz,9,wentzjo01,2136,Joey Wentz,wentzjo01,automatic_bbref_match +8777,Johan Camargo,9,camarjo01,309,Johan Camargo,camarjo01,automatic_bbref_match +8778,Johan Oviedo,9,oviedjo01,1479,Johan Oviedo,oviedjo01,automatic_bbref_match +8779,John Brebbia,9,brebbjo01,247,John Brebbia,brebbjo01,automatic_bbref_match +8780,John King,9,kingjo01,1045,John King,kingjo01,automatic_bbref_match +8824,Jose Suarez,9,suarejo01,1937,Jose Suarez,suarejo01,automatic_bbref_match +8781,John Schreiber,9,schrejo01,1780,John Schreiber,schrejo01,automatic_bbref_match +8782,Johnny Cueto,9,cuetojo01,451,Johnny Cueto,cuetojo01,automatic_bbref_match +8783,Jon Berti,9,bertijo01,183,Jon Berti,bertijo01,automatic_bbref_match +8784,Jon Gray,9,grayjo02,766,Jon Gray,grayjo02,automatic_bbref_match +8785,Jon Heasley,9,heasljo01,845,Jon Heasley,heasljo01,automatic_bbref_match +8786,Jonah Bride,9,bridejo01,255,Jonah Bride,bridejo01,automatic_bbref_match +8787,Jonah Heim,9,heimjo01,849,Jonah Heim,heimjo01,automatic_bbref_match +8788,Jonathan Aranda,9,arandjo01,82,Jonathan Aranda,arandjo01,automatic_bbref_match +8789,Jonathan Davis,9,davisjo05,470,Jonathan Davis,davisjo05,automatic_bbref_match +8790,Jonathan Hernandez,9,hernajo02,876,Jonathan Hernandez,hernajo02,automatic_bbref_match +8791,Jonathan India,9,indiajo01,953,Jonathan India,indiajo01,automatic_bbref_match +8792,Jonathan Loaisiga,9,loaisjo01,1132,Jonathan Loaisiga,loaisjo01,automatic_bbref_match +8793,Jonathan Schoop,9,schoojo01,1779,Jonathan Schoop,schoojo01,automatic_bbref_match +8794,Jonathan Villar,9,villajo01,2079,Jonathan Villar,villajo01,automatic_bbref_match +8795,Jordan Groshans,9,groshjo01,778,Jordan Groshans,groshjo01,automatic_bbref_match +8796,Jordan Hicks,9,hicksjo03,894,Jordan Hicks,hicksjo03,automatic_bbref_match +8797,Jordan Luplow,9,luplojo01,1168,Jordan Luplow,luplojo01,automatic_bbref_match +8798,Jordan Lyles,9,lylesjo01,1171,Jordan Lyles,lylesjo01,automatic_bbref_match +8799,Jordan Montgomery,9,montgjo01,1356,Jordan Montgomery,montgjo01,automatic_bbref_match +8800,Jordan Romano,9,romanjo03,1699,Jordan Romano,romanjo03,automatic_bbref_match +8801,Jordan Weems,9,weemsjo01,2129,Jordan Weems,weemsjo01,automatic_bbref_match +8802,Jorge Alfaro,9,alfarjo01,40,Jorge Alfaro,alfarjo01,automatic_bbref_match +8803,Jorge Lopez,9,lopezjo02,1144,Jorge Lopez,lopezjo02,automatic_bbref_match +8804,Jorge Mateo,9,mateojo01,1233,Jorge Mateo,mateojo01,automatic_bbref_match +8805,Jorge Polanco,9,polanjo01,1570,Jorge Polanco,polanjo01,automatic_bbref_match +8806,Jorge Soler,9,solerjo01,1870,Jorge Soler,solerjo01,automatic_bbref_match +8807,Jose Abreu,9,abreujo02,7,Jose Abreu,abreujo02,automatic_bbref_match +8808,Jose Altuve,9,altuvjo01,56,Jose Altuve,altuvjo01,automatic_bbref_match +8809,Jose Alvarado,9,alvarjo03,58,Jose Alvarado,alvarjo03,automatic_bbref_match +8810,Jose Azocar,9,azocajo01,107,Jose Azocar,azocajo01,automatic_bbref_match +8811,Jose Barrero,9,garcijo02,139,Jose Barrero,garcijo02,automatic_bbref_match +8812,Jose Berrios,9,berrijo01,182,Jose Berrios,berrijo01,automatic_bbref_match +8813,Jose Cisnero,9,cisnejo01,382,Jose Cisnero,cisnejo01,automatic_bbref_match +8814,Jose Cuas,9,cuasjo01,450,Jose Cuas,cuasjo01,automatic_bbref_match +8815,Jose Herrera,9,herrejo04,884,Jose Herrera,herrejo04,automatic_bbref_match +8816,Jose Iglesias,9,iglesjo01,949,Jose Iglesias,iglesjo01,automatic_bbref_match +8817,Jose Leclerc,9,leclejo01,1106,Jose Leclerc,leclejo01,automatic_bbref_match +8818,Jose Miranda,9,miranjo01,1337,Jose Miranda,miranjo01,automatic_bbref_match +8819,Jose Quijada,9,quijajo01,1594,Jose Quijada,quijajo01,automatic_bbref_match +8820,Jose Quintana,9,quintjo01,1596,Jose Quintana,quintjo01,automatic_bbref_match +8821,Jose Ramirez,9,ramirjo01,1608,Jose Ramirez,ramirjo01,automatic_bbref_match +8822,Jose Ruiz,9,ruizjo01,1724,Jose Ruiz,ruizjo01,automatic_bbref_match +8823,Jose Siri,9,sirijo01,1830,Jose Siri,sirijo01,automatic_bbref_match +8825,Jose Trevino,9,trevijo01,2013,Jose Trevino,trevijo01,automatic_bbref_match +8826,Jose Urena,9,urenajo01,2035,Jose Urena,urenajo01,automatic_bbref_match +8827,Jose Urquidy,9,urquijo01,2041,Jose Urquidy,urquijo01,automatic_bbref_match +8828,Josh Bell,9,belljo02,168,Josh Bell,belljo02,automatic_bbref_match +8829,Josh Donaldson,9,donaljo02,526,Josh Donaldson,donaljo02,automatic_bbref_match +8830,Josh Fleming,9,flemijo01,623,Josh Fleming,flemijo01,automatic_bbref_match +8831,Josh Hader,9,haderjo01,802,Josh Hader,haderjo01,automatic_bbref_match +8832,Josh Harrison,9,harrijo05,829,Josh Harrison,harrijo05,automatic_bbref_match +8833,Josh Jung,9,jungjo01,1002,Josh Jung,jungjo01,automatic_bbref_match +8834,Josh Lowe,9,lowejo01,1157,Josh Lowe,lowejo01,automatic_bbref_match +8835,Josh Naylor,9,naylojo01,1404,Josh Naylor,naylojo01,automatic_bbref_match +8836,Josh Rogers,9,rogerjo01,1690,Josh Rogers,rogerjo01,automatic_bbref_match +8837,Josh Rojas,9,rojasjo01,1695,Josh Rojas,rojasjo01,automatic_bbref_match +8838,Josh Smith,9,smithjo11,1852,Josh Smith,smithjo11,automatic_bbref_match +8839,Josh Staumont,9,staumjo01,1897,Josh Staumont,staumjo01,automatic_bbref_match +8840,Josh VanMeter,9,vanmejo01,2052,Josh VanMeter,vanmejo01,automatic_bbref_match +8841,Josh Winckowski,9,winckjo01,2174,Josh Winckowski,winckjo01,automatic_bbref_match +8842,Josh Winder,9,windejo01,2175,Josh Winder,windejo01,automatic_bbref_match +8843,Josiah Gray,9,grayjo03,767,Josiah Gray,grayjo03,automatic_bbref_match +8844,Jovani Moran,9,moranjo01,1361,Jovani Moran,moranjo01,automatic_bbref_match +8845,JP Crawford,9,crawfjp01,432,JP Crawford,crawfjp01,automatic_bbref_match +8846,JP Feyereisen,9,feyerjo01,612,JP Feyereisen,feyerjo01,automatic_bbref_match +8847,JP Sears,9,searsjp01,1795,JP Sears,searsjp01,automatic_bbref_match +8848,JT Brubaker,9,brubajt01,269,JT Brubaker,brubajt01,automatic_bbref_match +8849,JT Chargois,9,chargjt01,368,JT Chargois,chargjt01,automatic_bbref_match +8850,JT Realmuto,9,realmjt01,1622,JT Realmuto,realmjt01,automatic_bbref_match +8851,Juan Lagares,9,lagarju01,1083,Juan Lagares,lagarju01,automatic_bbref_match +8852,Juan Soto,9,sotoju01,1879,Juan Soto,sotoju01,automatic_bbref_match +8853,Juan Yepez,9,yepezju01,2213,Juan Yepez,yepezju01,automatic_bbref_match +8854,Julian Merryweather,9,merryju01,1311,Julian Merryweather,merryju01,automatic_bbref_match +8855,Julio Rodriguez,9,rodriju01,1682,Julio Rodriguez,rodriju01,automatic_bbref_match +8856,Julio Urias,9,uriasju01,2038,Julio Urias,uriasju01,automatic_bbref_match +8857,Jurickson Profar,9,profaju01,1587,Jurickson Profar,profaju01,automatic_bbref_match +8858,Justin Bruihl,9,bruihju01,271,Justin Bruihl,bruihju01,automatic_bbref_match +8859,Justin Dunn,9,dunnju01,546,Justin Dunn,dunnju01,automatic_bbref_match +8860,Justin Lawrence,9,lawreju01,1100,Justin Lawrence,lawreju01,automatic_bbref_match +8861,Justin Steele,9,steelju01,1899,Justin Steele,steelju01,automatic_bbref_match +8902,Kyle Stowers,9,stoweky01,1917,Kyle Stowers,stoweky01,automatic_bbref_match +8862,Justin Turner,9,turneju01,2029,Justin Turner,turneju01,automatic_bbref_match +8863,Justin Verlander,9,verlaju01,2071,Justin Verlander,verlaju01,automatic_bbref_match +8864,Kaleb Ort,9,ortka01,1464,Kaleb Ort,ortka01,automatic_bbref_match +8865,KeBryan Hayes,9,hayeske01,838,KeBryan Hayes,hayeske01,automatic_bbref_match +8866,Keegan Akin,9,akinke01,27,Keegan Akin,akinke01,automatic_bbref_match +8867,Keegan Thompson,9,thompke02,1982,Keegan Thompson,thompke02,automatic_bbref_match +8868,Keibert Ruiz,9,ruizke01,1725,Keibert Ruiz,ruizke01,automatic_bbref_match +8869,Ken Waldichuk,9,waldike01,2101,Ken Waldichuk,waldike01,automatic_bbref_match +8870,Kendall Graveman,9,graveke01,764,Kendall Graveman,graveke01,automatic_bbref_match +8871,Kenley Jansen,9,janseke01,968,Kenley Jansen,janseke01,automatic_bbref_match +8872,Kerry Carpenter,9,carpeke01,330,Kerry Carpenter,carpeke01,automatic_bbref_match +8873,Keston Hiura,9,hiurake01,905,Keston Hiura,hiurake01,automatic_bbref_match +8874,Ketel Marte,9,marteke01,1210,Ketel Marte,marteke01,automatic_bbref_match +8875,Kevin Gausman,9,gausmke01,706,Kevin Gausman,gausmke01,automatic_bbref_match +8876,Kevin Ginkel,9,ginkeke01,722,Kevin Ginkel,ginkeke01,automatic_bbref_match +8877,Kevin Kiermaier,9,kiermke01,1039,Kevin Kiermaier,kiermke01,automatic_bbref_match +8878,Kevin Newman,9,newmake01,1420,Kevin Newman,newmake01,automatic_bbref_match +8879,Kevin Plawecki,9,plaweke01,1565,Kevin Plawecki,plaweke01,automatic_bbref_match +8880,Kevin Smith,9,smithke05,1854,Kevin Smith,smithke05,automatic_bbref_match +8881,Kirby Snead,9,sneadki01,1859,Kirby Snead,sneadki01,automatic_bbref_match +8882,Kirk McCarty,9,mccarki01,1266,Kirk McCarty,mccarki01,automatic_bbref_match +8883,Kody Clemens,9,clemeko01,390,Kody Clemens,clemeko01,automatic_bbref_match +8884,Kole Calhoun,9,calhoko01,306,Kole Calhoun,calhoko01,automatic_bbref_match +8885,Kolten Wong,9,wongko01,2188,Kolten Wong,wongko01,automatic_bbref_match +8886,Konnor Pilkington,9,pilkiko01,1556,Konnor Pilkington,pilkiko01,automatic_bbref_match +8887,Kris Bryant,9,bryankr01,273,Kris Bryant,bryankr01,automatic_bbref_match +8888,Kris Bubic,9,bubickr01,274,Kris Bubic,bubickr01,automatic_bbref_match +8889,Kurt Suzuki,9,suzukku01,1945,Kurt Suzuki,suzukku01,automatic_bbref_match +8890,Kutter Crawford,9,crawfku01,431,Kutter Crawford,crawfku01,automatic_bbref_match +8891,Kyle Bradish,9,bradiky01,235,Kyle Bradish,bradiky01,automatic_bbref_match +8892,Kyle Farmer,9,farmeky01,598,Kyle Farmer,farmeky01,automatic_bbref_match +8893,Kyle Finnegan,9,finneky01,617,Kyle Finnegan,finneky01,automatic_bbref_match +8894,Kyle Freeland,9,freelky01,650,Kyle Freeland,freelky01,automatic_bbref_match +8895,Kyle Garlick,9,garliky01,696,Kyle Garlick,garliky01,automatic_bbref_match +8896,Kyle Gibson,9,gibsoky01,715,Kyle Gibson,gibsoky01,automatic_bbref_match +8897,Kyle Hendricks,9,hendrky01,856,Kyle Hendricks,hendrky01,automatic_bbref_match +8898,Kyle Higashioka,9,higasky01,895,Kyle Higashioka,higasky01,automatic_bbref_match +8899,Kyle Isbel,9,isbelky01,956,Kyle Isbel,isbelky01,automatic_bbref_match +8900,Kyle Nelson,9,nelsoky01,1412,Kyle Nelson,nelsoky01,automatic_bbref_match +8901,Kyle Schwarber,9,schwaky01,1784,Kyle Schwarber,schwaky01,automatic_bbref_match +8903,Kyle Tucker,9,tuckeky01,2023,Kyle Tucker,tuckeky01,automatic_bbref_match +8904,Kyle Wright,9,wrighky01,2200,Kyle Wright,wrighky01,automatic_bbref_match +8905,LaMonte Wade Jr,9,wadela01,2095,LaMonte Wade Jr,wadela01,automatic_bbref_match +8906,Lance Lynn,9,lynnla01,1173,Lance Lynn,lynnla01,automatic_bbref_match +8907,Lance McCullers Jr,9,mcculla02,1271,Lance McCullers Jr,mcculla02,automatic_bbref_match +8908,Lane Thomas,9,thomala02,1978,Lane Thomas,thomala02,automatic_bbref_match +8909,Lars Nootbaar,9,nootbla01,1436,Lars Nootbaar,nootbla01,automatic_bbref_match +8910,Leody Taveras,9,taverle01,1962,Leody Taveras,taverle01,automatic_bbref_match +8911,Leury Garcia,9,garcile02,679,Leury Garcia,garcile02,automatic_bbref_match +8912,Lewin Diaz,9,diazle01,506,Lewin Diaz,diazle01,automatic_bbref_match +8913,Liam Hendriks,9,hendrli01,857,Liam Hendriks,hendrli01,automatic_bbref_match +8914,Logan Gilbert,9,gilbelo01,718,Logan Gilbert,gilbelo01,automatic_bbref_match +8915,Logan Webb,9,webblo01,2127,Logan Webb,webblo01,automatic_bbref_match +8916,Lorenzo Cain,9,cainlo01,305,Lorenzo Cain,cainlo01,automatic_bbref_match +8917,Lou Trivino,9,trivilo01,2016,Lou Trivino,trivilo01,automatic_bbref_match +8918,Louie Varland,9,varlalo01,2057,Louie Varland,varlalo01,automatic_bbref_match +8919,Louis Head,9,headlo01,840,Louis Head,headlo01,automatic_bbref_match +8920,Lourdes Gurriel Jr,9,gurrilo01,794,Lourdes Gurriel Jr,gurrilo01,automatic_bbref_match +8921,Lucas Gilbreath,9,gilbrlu01,719,Lucas Gilbreath,gilbrlu01,automatic_bbref_match +8922,Lucas Giolito,9,giolilu01,724,Lucas Giolito,giolilu01,automatic_bbref_match +8923,Lucas Luetge,9,luetglu01,1164,Lucas Luetge,luetglu01,automatic_bbref_match +8924,Luis Arraez,9,arraelu01,93,Luis Arraez,arraelu01,automatic_bbref_match +8925,Luis Barrera,9,barrelu01,138,Luis Barrera,barrelu01,automatic_bbref_match +8926,Luis Castillo,9,castilu02,344,Luis Castillo,castilu02,automatic_bbref_match +8927,Luis Cessa,9,cessalu01,361,Luis Cessa,cessalu01,automatic_bbref_match +8928,Luis V Garcia,9,garcilu04,694,Luis Garcia Jr,garcilu04,automatic_bbref_match +8931,Luis Gonzalez,9,gonzalu03,746,Luis Gonzalez,gonzalu03,automatic_bbref_match +8932,Luis Guillorme,9,guilllu01,792,Luis Guillorme,guilllu01,automatic_bbref_match +8933,Luis Rengifo,9,rengilu01,1632,Luis Rengifo,rengilu01,automatic_bbref_match +8934,Luis Robert,9,roberlu01,1660,Luis Robert,roberlu01,automatic_bbref_match +8935,Luis Severino,9,severlu01,1805,Luis Severino,severlu01,automatic_bbref_match +8936,Luis Torrens,9,torrelu01,2002,Luis Torrens,torrelu01,automatic_bbref_match +8937,Luis Urias,9,uriaslu01,2039,Luis Urias,uriaslu01,automatic_bbref_match +8938,Luke Maile,9,mailelu01,1185,Luke Maile,mailelu01,automatic_bbref_match +8939,Luke Raley,9,raleylu01,1602,Luke Raley,raleylu01,automatic_bbref_match +8940,Luke Voit,9,voitlu01,2087,Luke Voit,voitlu01,automatic_bbref_match +8941,Luke Weaver,9,weavelu01,2124,Luke Weaver,weavelu01,automatic_bbref_match +8942,Luke Williams,9,willilu01,2159,Luke Williams,willilu01,automatic_bbref_match +8943,MacKenzie Gore,9,gorema01,754,MacKenzie Gore,gorema01,automatic_bbref_match +8944,Madison Bumgarner,9,bumgama01,278,Madison Bumgarner,bumgama01,automatic_bbref_match +8945,Magneuris Sierra,9,sierrma01,1823,Magneuris Sierra,sierrma01,automatic_bbref_match +8946,Maikel Franco,9,francma02,645,Maikel Franco,francma02,automatic_bbref_match +8947,Manny Banuelos,9,banuema01,123,Manny Banuelos,banuema01,automatic_bbref_match +9102,Raimel Tapia,9,tapiara01,1957,Raimel Tapia,tapiara01,automatic_bbref_match +8948,Manny Machado,9,machama01,1175,Manny Machado,machama01,automatic_bbref_match +8949,Manuel Margot,9,margoma01,1198,Manuel Margot,margoma01,automatic_bbref_match +8950,Manuel Rodriguez,9,rodrima01,1678,Manuel Rodriguez,rodrima01,automatic_bbref_match +8951,Marcell Ozuna,9,ozunama01,1481,Marcell Ozuna,ozunama01,automatic_bbref_match +8952,Marco Gonzales,9,gonzama02,735,Marco Gonzales,gonzama02,automatic_bbref_match +8953,Marcus Semien,9,semiema01,1799,Marcus Semien,semiema01,automatic_bbref_match +8954,Marcus Stroman,9,stromma01,1928,Marcus Stroman,stromma01,automatic_bbref_match +8955,Mark Canha,9,canhama01,316,Mark Canha,canhama01,automatic_bbref_match +8956,Mark Contreras,9,contrma01,413,Mark Contreras,contrma01,automatic_bbref_match +8957,Mark Leiter,9,leitema02,1112,Mark Leiter,leitema02,automatic_bbref_match +8958,Mark Mathias,9,mathima01,1234,Mark Mathias,mathima01,automatic_bbref_match +8959,Mark Melancon,9,melanma01,1298,Mark Melancon,melanma01,automatic_bbref_match +8960,Martin Maldonado,9,maldoma01,1187,Martin Maldonado,maldoma01,automatic_bbref_match +8961,Martin Perez,9,perezma02,1535,Martin Perez,perezma02,automatic_bbref_match +8962,Marwin Gonzalez,9,gonzama01,741,Marwin Gonzalez,gonzama01,automatic_bbref_match +8963,Mason Thompson,9,thompma02,1984,Mason Thompson,thompma02,automatic_bbref_match +8964,Matt Barnes,9,barnema01,131,Matt Barnes,barnema01,automatic_bbref_match +8965,Matt Brash,9,brashma01,241,Matt Brash,brashma01,automatic_bbref_match +8966,Matt Bush,9,bushma01,289,Matt Bush,bushma01,automatic_bbref_match +8967,Matt Carpenter,9,carpema01,329,Matt Carpenter,carpema01,automatic_bbref_match +8968,Matt Chapman,9,chapmma01,367,Matt Chapman,chapmma01,automatic_bbref_match +8969,Matt Duffy,9,duffyma01,542,Matt Duffy,duffyma01,automatic_bbref_match +8970,Matt Festa,9,festama01,610,Matt Festa,festama01,automatic_bbref_match +8971,Matt Foster,9,fostema01,638,Matt Foster,fostema01,automatic_bbref_match +8972,Matt Manning,9,mannima02,1191,Matt Manning,mannima02,automatic_bbref_match +8973,Matt Moore,9,moorema02,1357,Matt Moore,moorema02,automatic_bbref_match +8974,Matt Olson,9,olsonma02,1461,Matt Olson,olsonma02,automatic_bbref_match +8975,Matt Reynolds,9,reynoma03,1640,Matt Reynolds,reynoma03,automatic_bbref_match +8976,Matt Strahm,9,strahma01,1918,Matt Strahm,strahma01,automatic_bbref_match +8977,Matt Swarmer,9,swarmma01,1949,Matt Swarmer,swarmma01,automatic_bbref_match +8978,Matt Thaiss,9,thaisma01,1975,Matt Thaiss,thaisma01,automatic_bbref_match +8979,Matt Vierling,9,vierlma01,2077,Matt Vierling,vierlma01,automatic_bbref_match +8980,Matt Wallner,9,wallnma01,2109,Matt Wallner,wallnma01,automatic_bbref_match +8981,Matt Wisler,9,wislema01,2183,Matt Wisler,wislema01,automatic_bbref_match +8982,Matthew Liberatore,9,liberma01,1121,Matthew Liberatore,liberma01,automatic_bbref_match +8983,Mauricio Dubon,9,dubonma01,538,Mauricio Dubon,dubonma01,automatic_bbref_match +8984,Max Castillo,9,castima03,346,Max Castillo,castima03,automatic_bbref_match +8985,Max Fried,9,friedma01,659,Max Fried,friedma01,automatic_bbref_match +8986,Max Kepler,9,keplema01,1031,Max Kepler,keplema01,automatic_bbref_match +8987,Max Muncy,9,muncyma01,1382,Max Muncy,muncyma01,automatic_bbref_match +8988,Max Scherzer,9,scherma01,1773,Max Scherzer,scherma01,automatic_bbref_match +8989,Max Stassi,9,stassma01,1896,Max Stassi,stassma01,automatic_bbref_match +8990,Meibrys Viloria,9,vilorme01,2081,Meibrys Viloria,vilorme01,automatic_bbref_match +8991,Merrill Kelly,9,kellyme01,1020,Merrill Kelly,kellyme01,automatic_bbref_match +8992,Michael Brantley,9,brantmi02,240,Michael Brantley,brantmi02,automatic_bbref_match +8993,Michael Chavis,9,chavimi01,371,Michael Chavis,chavimi01,automatic_bbref_match +8994,Michael Fulmer,9,fulmemi01,666,Michael Fulmer,fulmemi01,automatic_bbref_match +8995,Michael Grove,9,grovemi01,781,Michael Grove,grovemi01,automatic_bbref_match +8996,Michael Harris,9,harrimi04,827,Michael Harris,harrimi04,automatic_bbref_match +8997,Michael Hermosillo,9,hermomi01,865,Michael Hermosillo,hermomi01,automatic_bbref_match +8998,Michael King,9,kingmi01,1047,Michael King,kingmi01,automatic_bbref_match +8999,Michael Kopech,9,kopecmi01,1071,Michael Kopech,kopecmi01,automatic_bbref_match +9000,Michael Lorenzen,9,lorenmi01,1151,Michael Lorenzen,lorenmi01,automatic_bbref_match +9001,Michael Massey,9,massemi02,1231,Michael Massey,massemi02,automatic_bbref_match +9002,Michael Papierski,9,papiemi01,1495,Michael Papierski,papiemi01,automatic_bbref_match +9003,Michael Perez,9,perezmi03,1539,Michael Perez,perezmi03,automatic_bbref_match +9004,Michael Pineda,9,pinedmi01,1560,Michael Pineda,pinedmi01,automatic_bbref_match +9005,Michael Rucker,9,ruckemi01,1721,Michael Rucker,ruckemi01,automatic_bbref_match +9006,Michael Stefanic,9,stefami01,1901,Michael Stefanic,stefami01,automatic_bbref_match +9008,Michael Toglia,9,toglimi01,1994,Michael Toglia,toglimi01,automatic_bbref_match +9009,Michael Wacha,9,wachami01,2093,Michael Wacha,wachami01,automatic_bbref_match +9010,Mickey Moniak,9,moniami01,1350,Mickey Moniak,moniami01,automatic_bbref_match +9011,Miguel Andujar,9,andujmi01,78,Miguel Andujar,andujmi01,automatic_bbref_match +9012,Miguel Cabrera,9,cabremi01,298,Miguel Cabrera,cabremi01,automatic_bbref_match +9013,Miguel Castro,9,castrmi01,350,Miguel Castro,castrmi01,automatic_bbref_match +9014,Miguel Rojas,9,rojasmi02,1694,Miguel Rojas,rojasmi02,automatic_bbref_match +9015,Miguel Sano,9,sanomi01,1757,Miguel Sano,sanomi01,automatic_bbref_match +9016,Mike Baumann,9,baumami01,152,Mike Baumann,baumami01,automatic_bbref_match +9017,Mike Brosseau,9,brossmi01,263,Mike Brosseau,brossmi01,automatic_bbref_match +9018,Mike Clevinger,9,clevimi01,392,Mike Clevinger,clevimi01,automatic_bbref_match +9019,Mike Ford,9,fordmi01,635,Mike Ford,fordmi01,automatic_bbref_match +9020,Mike Mayers,9,mayermi01,1251,Mike Mayers,mayermi01,automatic_bbref_match +9021,Mike Minor,9,minormi01,1335,Mike Minor,minormi01,automatic_bbref_match +9022,Mike Moustakas,9,moustmi01,1378,Mike Moustakas,moustmi01,automatic_bbref_match +9023,Mike Trout,9,troutmi01,2019,Mike Trout,troutmi01,automatic_bbref_match +9024,Mike Yastrzemski,9,yastrmi01,2210,Mike Yastrzemski,yastrmi01,automatic_bbref_match +9025,Mike Zunino,9,zuninmi01,2234,Mike Zunino,zuninmi01,automatic_bbref_match +9026,Miles Mikolas,9,mikolmi01,1317,Miles Mikolas,mikolmi01,automatic_bbref_match +9027,Mitch Garver,9,garvemi01,702,Mitch Garver,garvemi01,automatic_bbref_match +9103,Raisel Iglesias,9,iglesra01,950,Raisel Iglesias,iglesra01,automatic_bbref_match +9028,Mitch Haniger,9,hanigmi01,818,Mitch Haniger,hanigmi01,automatic_bbref_match +9029,Mitch Keller,9,kellemi03,1017,Mitch Keller,kellemi03,automatic_bbref_match +9030,Mitch White,9,whitemi03,2143,Mitch White,whitemi03,automatic_bbref_match +9031,MJ Melendez,9,melenmj01,1299,MJ Melendez,melenmj01,automatic_bbref_match +9032,Mookie Betts,9,bettsmo01,187,Mookie Betts,bettsmo01,automatic_bbref_match +9033,Mychal Givens,9,givenmy01,725,Mychal Givens,givenmy01,automatic_bbref_match +9034,Myles Straw,9,strawmy01,1924,Myles Straw,strawmy01,automatic_bbref_match +9035,Nabil Crismatt,9,crismna01,436,Nabil Crismatt,crismna01,automatic_bbref_match +9036,Nate Eaton,9,eatonna01,557,Nate Eaton,eatonna01,automatic_bbref_match +9037,Nathan Eovaldi,9,eovalna01,576,Nathan Eovaldi,eovalna01,automatic_bbref_match +9038,Nathaniel Lowe,9,lowena01,1155,Nathaniel Lowe,lowena01,automatic_bbref_match +9039,Nelson Cruz,9,cruzne02,447,Nelson Cruz,cruzne02,automatic_bbref_match +9040,Nelson Velazquez,9,velazne01,2068,Nelson Velazquez,velazne01,automatic_bbref_match +9041,Nestor Cortes Jr,9,cortene01,421,Nestor Cortes Jr,cortene01,automatic_bbref_match +9042,Nicholas Castellanos,9,casteni01,340,Nicholas Castellanos,casteni01,automatic_bbref_match +9043,Nick Allen,9,allenni02,46,Nick Allen,allenni02,automatic_bbref_match +9044,Nick Fortes,9,forteni01,637,Nick Fortes,forteni01,automatic_bbref_match +9045,Nick Gordon,9,gordoni01,752,Nick Gordon,gordoni01,automatic_bbref_match +9046,Nick Lodolo,9,lodolni01,1135,Nick Lodolo,lodolni01,automatic_bbref_match +9047,Nick Madrigal,9,madrini01,1178,Nick Madrigal,madrini01,automatic_bbref_match +9048,Nick Martinez,9,martini01,1224,Nick Martinez,martini01,automatic_bbref_match +9049,Nick Maton,9,matonni01,1239,Nick Maton,matonni01,automatic_bbref_match +9050,Nick Nelson,9,nelsoni01,1410,Nick Nelson,nelsoni01,automatic_bbref_match +9051,Nick Pivetta,9,pivetni01,1564,Nick Pivetta,pivetni01,automatic_bbref_match +9052,Nick Pratto,9,prattni01,1583,Nick Pratto,prattni01,automatic_bbref_match +9053,Nick Sandlin,9,sandlni01,1752,Nick Sandlin,sandlni01,automatic_bbref_match +9054,Nick Senzel,9,senzeni01,1802,Nick Senzel,senzeni01,automatic_bbref_match +9055,Nick Solak,9,solakni01,1867,Nick Solak,solakni01,automatic_bbref_match +9056,Nick Vespi,9,vespini01,2073,Nick Vespi,vespini01,automatic_bbref_match +9057,Nick Wittgren,9,wittgni01,2185,Nick Wittgren,wittgni01,automatic_bbref_match +9058,Nicky Lopez,9,lopezni01,1149,Nicky Lopez,lopezni01,automatic_bbref_match +9059,Nico Hoerner,9,hoernni01,909,Nico Hoerner,hoernni01,automatic_bbref_match +9060,Noah Syndergaard,9,syndeno01,1953,Noah Syndergaard,syndeno01,automatic_bbref_match +9061,Noe Ramirez,9,ramirno01,1606,Noe Ramirez,ramirno01,automatic_bbref_match +9062,Nolan Arenado,9,arenano01,88,Nolan Arenado,arenano01,automatic_bbref_match +9063,Nolan Gorman,9,gormano01,755,Nolan Gorman,gormano01,automatic_bbref_match +9104,Ralph Garza,9,garzara01,704,Ralph Garza,garzara01,automatic_bbref_match +9064,Nolan Jones,9,jonesno01,994,Nolan Jones,jonesno01,automatic_bbref_match +9065,Nomar Mazara,9,mazarno01,1254,Nomar Mazara,mazarno01,automatic_bbref_match +9066,Odubel Herrera,9,herreod01,882,Odubel Herrera,herreod01,automatic_bbref_match +9067,Oliver Ortega,9,ortegol01,1466,Oliver Ortega,ortegol01,automatic_bbref_match +9068,Omar Narvaez,9,narvaom01,1401,Omar Narvaez,narvaom01,automatic_bbref_match +9069,Oneil Cruz,9,cruzon01,449,Oneil Cruz,cruzon01,automatic_bbref_match +9070,Orlando Arcia,9,arciaor01,86,Orlando Arcia,arciaor01,automatic_bbref_match +9071,Oscar Gonzalez,9,gonzaos01,744,Oscar Gonzalez,gonzaos01,automatic_bbref_match +9072,Oscar Mercado,9,mercaos01,1306,Oscar Mercado,mercaos01,automatic_bbref_match +9073,Oswald Peraza,9,perazos02,1528,Oswald Peraza,perazos02,automatic_bbref_match +9074,Oswaldo Cabrera,9,cabreos01,303,Oswaldo Cabrera,cabreos01,automatic_bbref_match +9075,Owen Miller,9,milleow01,1327,Owen Miller,milleow01,automatic_bbref_match +9076,Ozzie Albies,9,albieoz01,31,Ozzie Albies,albieoz01,automatic_bbref_match +9077,Pablo Lopez,9,lopezpa01,1146,Pablo Lopez,lopezpa01,automatic_bbref_match +9078,Packy Naughton,9,naughpa01,1403,Packy Naughton,naughpa01,automatic_bbref_match +9079,Paolo Espino,9,espinpa01,583,Paolo Espino,espinpa01,automatic_bbref_match +9080,Patrick Corbin,9,corbipa01,416,Patrick Corbin,corbipa01,automatic_bbref_match +9081,Patrick Mazeika,9,mazeipa01,1255,Patrick Mazeika,mazeipa01,automatic_bbref_match +9082,Patrick Sandoval,9,sandopa02,1754,Patrick Sandoval,sandopa02,automatic_bbref_match +9083,Patrick Wisdom,9,wisdopa01,2181,Patrick Wisdom,wisdopa01,automatic_bbref_match +9084,Paul Blackburn,9,blackpa01,204,Paul Blackburn,blackpa01,automatic_bbref_match +9085,Paul DeJong,9,dejonpa01,485,Paul DeJong,dejonpa01,automatic_bbref_match +9086,Paul Goldschmidt,9,goldspa01,729,Paul Goldschmidt,goldspa01,automatic_bbref_match +9087,Paul Sewald,9,sewalpa01,1806,Paul Sewald,sewalpa01,automatic_bbref_match +9088,Pavin Smith,9,smithpa04,1851,Pavin Smith,smithpa04,automatic_bbref_match +9089,Penn Murfee,9,murfepe01,1386,Penn Murfee,murfepe01,automatic_bbref_match +9090,Pete Alonso,9,alonspe01,53,Pete Alonso,alonspe01,automatic_bbref_match +9091,Pete Fairbanks,9,fairbpe01,592,Pete Fairbanks,fairbpe01,automatic_bbref_match +9092,Peter Strzelecki,9,strzepe01,1930,Peter Strzelecki,strzepe01,automatic_bbref_match +9093,Peyton Burdick,9,burdipe01,282,Peyton Burdick,burdipe01,automatic_bbref_match +9094,Phil Bickford,9,bickfph01,191,Phil Bickford,bickfph01,automatic_bbref_match +9095,Phil Gosselin,9,gosseph01,757,Phil Gosselin,gosseph01,automatic_bbref_match +9096,Phil Maton,9,matonph01,1238,Phil Maton,matonph01,automatic_bbref_match +9097,Pierce Johnson,9,johnspi01,985,Pierce Johnson,johnspi01,automatic_bbref_match +9098,PJ Higgins,9,higgipj01,896,PJ Higgins,higgipj01,automatic_bbref_match +9099,Rafael Devers,9,deverra01,499,Rafael Devers,deverra01,automatic_bbref_match +9100,Rafael Montero,9,montera01,1352,Rafael Montero,montera01,automatic_bbref_match +9101,Rafael Ortega,9,ortegra01,1465,Rafael Ortega,ortegra01,automatic_bbref_match +9105,Ramon Laureano,9,laurera01,1097,Ramon Laureano,laurera01,automatic_bbref_match +9106,Ramon Urias,9,uriasra01,2037,Ramon Urias,uriasra01,automatic_bbref_match +9107,Randal Grichuk,9,grichra01,775,Randal Grichuk,grichra01,automatic_bbref_match +9108,Randy Arozarena,9,arozara01,92,Randy Arozarena,arozara01,automatic_bbref_match +9109,Ranger Suarez,9,suarera01,1936,Ranger Suarez,suarera01,automatic_bbref_match +9110,Reese McGuire,9,mcguire01,1277,Reese McGuire,mcguire01,automatic_bbref_match +9111,Reid Detmers,9,detmere01,496,Reid Detmers,detmere01,automatic_bbref_match +9112,Reiver Sanmartin,9,sanmare01,1756,Reiver Sanmartin,sanmare01,automatic_bbref_match +9113,Rene Pinto,9,pintore02,1561,Rene Pinto,pintore02,automatic_bbref_match +9114,Reyes Moronta,9,moronre01,1371,Reyes Moronta,moronre01,automatic_bbref_match +9115,Reynaldo Lopez,9,lopezre01,1145,Reynaldo Lopez,lopezre01,automatic_bbref_match +9116,Rhys Hoskins,9,hoskirh01,925,Rhys Hoskins,hoskirh01,automatic_bbref_match +9117,Rich Hill,9,hillri01,898,Rich Hill,hillri01,automatic_bbref_match +9118,Richard Bleier,9,bleieri01,212,Richard Bleier,bleieri01,automatic_bbref_match +9119,Richie Palacios,9,palacri01,1488,Richie Palacios,palacri01,automatic_bbref_match +9120,Riley Adams,9,adamsri03,17,Riley Adams,adamsri03,automatic_bbref_match +9121,Riley Greene,9,greenri03,771,Riley Greene,greenri03,automatic_bbref_match +9122,Roansy Contreras,9,contrro01,412,Roansy Contreras,contrro01,automatic_bbref_match +9123,Rob Refsnyder,9,refsnro01,1626,Rob Refsnyder,refsnro01,automatic_bbref_match +9124,Robbie Grossman,9,grossro01,779,Robbie Grossman,grossro01,automatic_bbref_match +9125,Robbie Ray,9,rayro02,1620,Robbie Ray,rayro02,automatic_bbref_match +9126,Robert Stephenson,9,stephro01,1904,Robert Stephenson,stephro01,automatic_bbref_match +9127,Robert Suarez,9,suarero01,1938,Robert Suarez,suarero01,automatic_bbref_match +9128,Roberto Perez,9,perezro02,1538,Roberto Perez,perezro02,automatic_bbref_match +9129,Robinson Cano,9,canoro01,319,Robinson Cano,canoro01,automatic_bbref_match +9130,Robinson Chirinos,9,chiriro01,373,Robinson Chirinos,chiriro01,automatic_bbref_match +9131,Rodolfo Castro,9,castrro01,353,Rodolfo Castro,castrro01,automatic_bbref_match +9132,Roman Quinn,9,quinnro01,1595,Roman Quinn,quinnro01,automatic_bbref_match +9133,Romy Gonzalez,9,gonzaro01,745,Romy Gonzalez,gonzaro01,automatic_bbref_match +9134,Ron Marinaccio,9,marinro01,1199,Ron Marinaccio,marinro01,automatic_bbref_match +9135,Ronald Acuna Jr,9,acunaro01,12,Ronald Acuna Jr,acunaro01,automatic_bbref_match +9136,Rony Garcia,9,garciro03,689,Rony Garcia,garciro03,automatic_bbref_match +9137,Ross Detwiler,9,detwiro01,497,Ross Detwiler,detwiro01,automatic_bbref_match +9138,Ross Stripling,9,stripro01,1927,Ross Stripling,stripro01,automatic_bbref_match +9139,Rougned Odor,9,odorro01,1451,Rougned Odor,odorro01,automatic_bbref_match +9140,Rowan Wick,9,wickro01,2147,Rowan Wick,wickro01,automatic_bbref_match +9141,Rowdy Tellez,9,tellero01,1972,Rowdy Tellez,tellero01,automatic_bbref_match +9142,Ryan Borucki,9,borucry01,222,Ryan Borucki,borucry01,automatic_bbref_match +9143,Ryan Brasier,9,brasiry01,242,Ryan Brasier,brasiry01,automatic_bbref_match +9144,Ryan Feltner,9,feltnry01,603,Ryan Feltner,feltnry01,automatic_bbref_match +9145,Ryan Helsley,9,helslry01,853,Ryan Helsley,helslry01,automatic_bbref_match +9146,Ryan Jeffers,9,jeffery01,975,Ryan Jeffers,jeffery01,automatic_bbref_match +9147,Ryan Kreidler,9,kreidry01,1076,Ryan Kreidler,kreidry01,automatic_bbref_match +9148,Ryan McKenna,9,mckenry01,1281,Ryan McKenna,mckenry01,automatic_bbref_match +9149,Ryan McMahon,9,mcmahry01,1286,Ryan McMahon,mcmahry01,automatic_bbref_match +9150,Ryan Mountcastle,9,mountry01,1377,Ryan Mountcastle,mountry01,automatic_bbref_match +9151,Ryan OHearn,9,ohearry01,1453,Ryan OHearn,ohearry01,automatic_bbref_match +9152,Ryan Pepiot,9,pepiory01,1521,Ryan Pepiot,pepiory01,automatic_bbref_match +9153,Ryan Pressly,9,pressry01,1584,Ryan Pressly,pressry01,automatic_bbref_match +9154,Ryan Tepera,9,teperry01,1974,Ryan Tepera,teperry01,automatic_bbref_match +9155,Ryan Thompson,9,thompry02,1983,Ryan Thompson,thompry02,automatic_bbref_match +9156,Ryan Yarbrough,9,yarbrry01,2208,Ryan Yarbrough,yarbrry01,automatic_bbref_match +9157,Ryne Stanek,9,stanery01,1892,Ryne Stanek,stanery01,automatic_bbref_match +9158,Salvador Perez,9,perezsa02,1534,Salvador Perez,perezsa02,automatic_bbref_match +9159,Sam Haggerty,9,haggesa01,803,Sam Haggerty,haggesa01,automatic_bbref_match +9160,Sam Hentges,9,hentgsa01,861,Sam Hentges,hentgsa01,automatic_bbref_match +9161,Sam Hilliard,9,hillisa01,903,Sam Hilliard,hillisa01,automatic_bbref_match +9162,Sam Huff,9,huffsa01,936,Sam Huff,huffsa01,automatic_bbref_match +9163,Sam Long,9,longsa01,1139,Sam Long,longsa01,automatic_bbref_match +9164,Sam Moll,9,mollsa01,1346,Sam Moll,mollsa01,automatic_bbref_match +9165,Sandy Alcantara,9,alcansa01,35,Sandy Alcantara,alcansa01,automatic_bbref_match +9166,Sandy Leon,9,leonsa01,1115,Sandy Leon,leonsa01,automatic_bbref_match +9167,Santiago Espinal,9,espinsa01,582,Santiago Espinal,espinsa01,automatic_bbref_match +9168,Scott Barlow,9,barlosc01,128,Scott Barlow,barlosc01,automatic_bbref_match +9169,Scott Effross,9,effrosc01,561,Scott Effross,effrosc01,automatic_bbref_match +9170,Sean Bouchard,9,bouchse01,225,Sean Bouchard,bouchse01,automatic_bbref_match +9171,Sean Hjelle,9,hjellse01,906,Sean Hjelle,hjellse01,automatic_bbref_match +9172,Sean Manaea,9,manaese01,1189,Sean Manaea,manaese01,automatic_bbref_match +9173,Sean Murphy,9,murphse01,1390,Sean Murphy,murphse01,automatic_bbref_match +9174,Sean Poppen,9,poppese01,1576,Sean Poppen,poppese01,automatic_bbref_match +9175,Seby Zavala,9,zavalse01,2223,Seby Zavala,zavalse01,automatic_bbref_match +9176,Seiya Suzuki,9,suzukse01,1946,Seiya Suzuki,suzukse01,automatic_bbref_match +9177,Seranthony Dominguez,9,dominse01,524,Seranthony Dominguez,dominse01,automatic_bbref_match +9178,Sergio Alcantara,9,alcanse01,34,Sergio Alcantara,alcanse01,automatic_bbref_match +9179,Seth Beer,9,beerse01,166,Seth Beer,beerse01,automatic_bbref_match +9180,Seth Brown,9,brownse01,265,Seth Brown,brownse01,automatic_bbref_match +9181,Seth Lugo,9,lugose01,1165,Seth Lugo,lugose01,automatic_bbref_match +9182,Seth Martinez,9,martise01,1226,Seth Martinez,martise01,automatic_bbref_match +9183,Shane Baz,9,bazsh01,155,Shane Baz,bazsh01,automatic_bbref_match +9184,Shane Bieber,9,biebesh01,194,Shane Bieber,biebesh01,automatic_bbref_match +9185,Shane McClanahan,9,mcclash01,1268,Shane McClanahan,mcclash01,automatic_bbref_match +9186,Shawn Armstrong,9,armstsh01,91,Shawn Armstrong,armstsh01,automatic_bbref_match +9187,Shea Langeliers,9,langesh01,1092,Shea Langeliers,langesh01,automatic_bbref_match +9188,Sheldon Neuse,9,neusesh01,1415,Sheldon Neuse,neusesh01,automatic_bbref_match +9189,Shohei Ohtani,9,ohtansh01,1455,Shohei Ohtani,ohtansh01,automatic_bbref_match +9190,Skye Bolt,9,boltsk01,218,Skye Bolt,boltsk01,automatic_bbref_match +9191,Sonny Gray,9,grayso01,765,Sonny Gray,grayso01,automatic_bbref_match +9192,Spencer Howard,9,howarsp01,930,Spencer Howard,howarsp01,automatic_bbref_match +9193,Spencer Steer,9,steersp01,1900,Spencer Steer,steersp01,automatic_bbref_match +9194,Spencer Strider,9,stridsp01,1926,Spencer Strider,stridsp01,automatic_bbref_match +9195,Spencer Torkelson,9,torkesp01,2000,Spencer Torkelson,torkesp01,automatic_bbref_match +9196,Spenser Watkins,9,watkisp01,2121,Spenser Watkins,watkisp01,automatic_bbref_match +9197,Starling Marte,9,martest01,1208,Starling Marte,martest01,automatic_bbref_match +9198,Stephen Piscotty,9,piscost01,1563,Stephen Piscotty,piscost01,automatic_bbref_match +9199,Stephen Vogt,9,vogtst01,2086,Stephen Vogt,vogtst01,automatic_bbref_match +9200,Steve Cishek,9,cishest01,381,Steve Cishek,cishest01,automatic_bbref_match +9201,Steven Duggar,9,duggast01,543,Steven Duggar,duggast01,automatic_bbref_match +9202,Steven Kwan,9,kwanst01,1080,Steven Kwan,kwanst01,automatic_bbref_match +9203,Steven Matz,9,matzst01,1243,Steven Matz,matzst01,automatic_bbref_match +9204,Steven Okert,9,okertst01,1456,Steven Okert,okertst01,automatic_bbref_match +9205,Steven Wilson,9,wilsost02,2169,Steven Wilson,wilsost02,automatic_bbref_match +9206,Stone Garrett,9,garrest01,699,Stone Garrett,garrest01,automatic_bbref_match +9207,Stuart Fairchild,9,faircst01,593,Stuart Fairchild,faircst01,automatic_bbref_match +9208,Taijuan Walker,9,walketa01,2105,Taijuan Walker,walketa01,automatic_bbref_match +9209,Tanner Banks,9,banksta01,122,Tanner Banks,banksta01,automatic_bbref_match +9210,Tanner Houck,9,houckta01,927,Tanner Houck,houckta01,automatic_bbref_match +9211,Tanner Rainey,9,raineta01,1599,Tanner Rainey,raineta01,automatic_bbref_match +9212,Tanner Scott,9,scottta01,1788,Tanner Scott,scottta01,automatic_bbref_match +9213,Tarik Skubal,9,skubata01,1836,Tarik Skubal,skubata01,automatic_bbref_match +9214,Taylor Clarke,9,clarkta01,384,Taylor Clarke,clarkta01,automatic_bbref_match +9215,Taylor Hearn,9,hearnta01,844,Taylor Hearn,hearnta01,automatic_bbref_match +9216,Taylor Rogers,9,rogerta01,1689,Taylor Rogers,rogerta01,automatic_bbref_match +9217,Taylor Trammell,9,trammta01,2008,Taylor Trammell,trammta01,automatic_bbref_match +9218,Taylor Walls,9,wallsta01,2110,Taylor Walls,wallsta01,automatic_bbref_match +9219,Taylor Ward,9,wardta01,2116,Taylor Ward,wardta01,automatic_bbref_match +9220,Teoscar Hernandez,9,hernate01,873,Teoscar Hernandez,hernate01,automatic_bbref_match +9221,Terrin Vavra,9,vavrate01,2062,Terrin Vavra,vavrate01,automatic_bbref_match +9222,Thairo Estrada,9,estrath01,587,Thairo Estrada,estrath01,automatic_bbref_match +9223,Tim Anderson,9,anderti01,73,Tim Anderson,anderti01,automatic_bbref_match +9224,Tim Hill,9,hillti01,900,Tim Hill,hillti01,automatic_bbref_match +9225,Tim Locastro,9,locasti01,1133,Tim Locastro,locasti01,automatic_bbref_match +9226,Tim Mayza,9,mayzati01,1253,Tim Mayza,mayzati01,automatic_bbref_match +9227,TJ Friedl,9,friedtj01,660,TJ Friedl,friedtj01,automatic_bbref_match +9228,TJ McFarland,9,mcfartj01,1273,TJ McFarland,mcfartj01,automatic_bbref_match +9229,Tomas Nido,9,nidoto01,1424,Tomas Nido,nidoto01,automatic_bbref_match +9230,Tommy Edman,9,edmanto01,558,Tommy Edman,edmanto01,automatic_bbref_match +9231,Tommy Henry,9,henryto01,859,Tommy Henry,henryto01,automatic_bbref_match +9232,Tommy La Stella,9,lasteto01,1082,Tommy La Stella,lasteto01,automatic_bbref_match +9233,Tommy Nance,9,nanceto01,1398,Tommy Nance,nanceto01,automatic_bbref_match +9234,Tommy Pham,9,phamth01,1552,Tommy Pham,phamth01,automatic_bbref_match +9235,Tony Gonsolin,9,gonsoto01,734,Tony Gonsolin,gonsoto01,automatic_bbref_match +9236,Tony Kemp,9,kempto01,1027,Tony Kemp,kempto01,automatic_bbref_match +9237,Travis dArnaud,9,darnatr01,461,Travis dArnaud,darnatr01,automatic_bbref_match +9238,Travis Demeritte,9,demertr01,491,Travis Demeritte,demertr01,automatic_bbref_match +9239,Trayce Thompson,9,thomptr01,1980,Trayce Thompson,thomptr01,automatic_bbref_match +9240,Trea Turner,9,turnetr01,1,Trea Turner,turnetr01,automatic_bbref_match +9241,Trent Grisham,9,grishtr01,776,Trent Grisham,grishtr01,automatic_bbref_match +9242,Trent Thornton,9,thorntr01,1988,Trent Thornton,thorntr01,automatic_bbref_match +9243,Trevor Gott,9,gotttr01,758,Trevor Gott,gotttr01,automatic_bbref_match +9244,Trevor Larnach,9,larnatr01,1094,Trevor Larnach,larnatr01,automatic_bbref_match +9245,Trevor May,9,maytr01,1248,Trevor May,maytr01,automatic_bbref_match +9246,Trevor Megill,9,megiltr01,1294,Trevor Megill,megiltr01,automatic_bbref_match +9247,Trevor Richards,9,richatr01,1646,Trevor Richards,richatr01,automatic_bbref_match +9248,Trevor Rogers,9,rogertr01,1693,Trevor Rogers,rogertr01,automatic_bbref_match +9249,Trevor Stephan,9,stephtr01,1902,Trevor Stephan,stephtr01,automatic_bbref_match +9250,Trevor Story,9,storytr01,1914,Trevor Story,storytr01,automatic_bbref_match +9251,Trevor Williams,9,willitr01,2156,Trevor Williams,willitr01,automatic_bbref_match +9252,Trey Mancini,9,mancitr01,1190,Trey Mancini,mancitr01,automatic_bbref_match +9253,Triston Casas,9,casastr01,335,Triston Casas,casastr01,automatic_bbref_match +9254,Triston McKenzie,9,mckentr01,1282,Triston McKenzie,mckentr01,automatic_bbref_match +9255,Tucker Barnhart,9,barnhtu01,135,Tucker Barnhart,barnhtu01,automatic_bbref_match +9256,Tucker Davidson,9,davidtu01,464,Tucker Davidson,davidtu01,automatic_bbref_match +9257,Tucupita Marcano,9,marcatu01,1196,Tucupita Marcano,marcatu01,automatic_bbref_match +9258,Ty Blach,9,blachty01,202,Ty Blach,blachty01,automatic_bbref_match +9259,Ty France,9,francty01,642,Ty France,francty01,automatic_bbref_match +9260,Tyler Alexander,9,alexaty01,37,Tyler Alexander,alexaty01,automatic_bbref_match +9261,Tyler Anderson,9,anderty01,68,Tyler Anderson,anderty01,automatic_bbref_match +9262,Tyler Beede,9,beedety01,164,Tyler Beede,beedety01,automatic_bbref_match +9263,Tyler Danish,9,danisty01,460,Tyler Danish,danisty01,automatic_bbref_match +9264,Tyler Duffey,9,duffety01,540,Tyler Duffey,duffety01,automatic_bbref_match +9265,Tyler Freeman,9,freemty01,654,Tyler Freeman,freemty01,automatic_bbref_match +9266,Tyler Gilbert,9,gilbety01,717,Tyler Gilbert,gilbety01,automatic_bbref_match +9267,Tyler Heineman,9,heinety01,851,Tyler Heineman,heinety01,automatic_bbref_match +9268,Tyler Kinley,9,kinlety01,1050,Tyler Kinley,kinlety01,automatic_bbref_match +9269,Tyler Mahle,9,mahlety01,1183,Tyler Mahle,mahlety01,automatic_bbref_match +9270,Tyler Matzek,9,matzety01,1244,Tyler Matzek,matzety01,automatic_bbref_match +9271,Tylor Megill,9,megilty01,1295,Tylor Megill,megilty01,automatic_bbref_match +9272,Tyler Naquin,9,naquity01,1399,Tyler Naquin,naquity01,automatic_bbref_match +9273,Tyler Nevin,9,nevinty01,1417,Tyler Nevin,nevinty01,automatic_bbref_match +9274,Tyler ONeill,9,oneilty01,1463,Tyler ONeill,oneilty01,automatic_bbref_match +9275,Tyler Rogers,9,rogerty01,1691,Tyler Rogers,rogerty01,automatic_bbref_match +9276,Tyler Stephenson,9,stephty01,1905,Tyler Stephenson,stephty01,automatic_bbref_match +9277,Tyler Wade,9,wadety01,2094,Tyler Wade,wadety01,automatic_bbref_match +9278,Tyler Wells,9,wellsty01,2132,Tyler Wells,wellsty01,automatic_bbref_match +9279,Tyrone Taylor,9,tayloty01,1965,Tyrone Taylor,tayloty01,automatic_bbref_match +9280,Vaughn Grissom,9,grissva01,777,Vaughn Grissom,grissva01,automatic_bbref_match +9281,Victor Arano,9,aranovi01,83,Victor Arano,aranovi01,automatic_bbref_match +9282,Victor Caratini,9,caratvi01,325,Victor Caratini,caratvi01,automatic_bbref_match +9283,Victor Reyes,9,reyesvi01,1638,Victor Reyes,reyesvi01,automatic_bbref_match +9284,Victor Robles,9,roblevi01,1666,Victor Robles,roblevi01,automatic_bbref_match +9285,Vidal Brujan,9,brujavi01,272,Vidal Brujan,brujavi01,automatic_bbref_match +9286,Vimael Machin,9,machivi01,1177,Vimael Machin,machivi01,automatic_bbref_match +9287,Vince Velasquez,9,velasvi01,2065,Vince Velasquez,velasvi01,automatic_bbref_match +9288,Vinnie Pasquantino,9,pasquvi01,1503,Vinnie Pasquantino,pasquvi01,automatic_bbref_match +9289,Vladimir Guerrero Jr,9,guerrvl02,789,Vladimir Guerrero Jr,guerrvl02,automatic_bbref_match +9290,Vladimir Gutierrez,9,gutievl01,797,Vladimir Gutierrez,gutievl01,automatic_bbref_match +9291,Wade Miley,9,mileywa01,1318,Wade Miley,mileywa01,automatic_bbref_match +9292,Walker Buehler,9,buehlwa01,277,Walker Buehler,buehlwa01,automatic_bbref_match +9293,Wander Franco,9,francwa01,646,Wander Franco,francwa01,automatic_bbref_match +9294,Wandy Peralta,9,peralwa01,1524,Wandy Peralta,peralwa01,automatic_bbref_match +9295,Whit Merrifield,9,merriwh01,1309,Whit Merrifield,merriwh01,automatic_bbref_match +9296,Wil Crowe,9,crowewi01,446,Wil Crowe,crowewi01,automatic_bbref_match +9297,Wil Myers,9,myerswi01,1395,Wil Myers,myerswi01,automatic_bbref_match +9298,Will Benson,9,bensowi01,179,Will Benson,bensowi01,automatic_bbref_match +9299,Will Brennan,9,brennwi02,250,Will Brennan,brennwi02,automatic_bbref_match +9300,Will D Smith,9,smithwi05,1841,Will Smith,smithwi05,automatic_bbref_match +9301,Will Smith,9,smithwi04,1843,Will Smith,smithwi04,automatic_bbref_match +9302,Will Vest,9,vestwi01,2074,Will Vest,vestwi01,automatic_bbref_match +9303,Willi Castro,9,castrwi01,352,Willi Castro,castrwi01,automatic_bbref_match +9304,Willson Contreras,9,contrwi02,411,William Contreras,contrwi02,automatic_bbref_match +9305,William Contreras,9,contrwi01,410,Willson Contreras,contrwi01,automatic_bbref_match +9306,Willy Adames,9,adamewi01,14,Willy Adames,adamewi01,automatic_bbref_match +9307,Wilmer Flores,9,florewi01,627,Wilmer Flores,florewi01,automatic_bbref_match +9308,Wily Peralta,9,peralwi01,1523,Wily Peralta,peralwi01,automatic_bbref_match +9309,Wyatt Mills,9,millswy01,1331,Wyatt Mills,millswy01,automatic_bbref_match +9310,Xander Bogaerts,9,bogaexa01,216,Xander Bogaerts,bogaexa01,automatic_bbref_match +9311,Yadiel Hernandez,9,hernaya01,875,Yadiel Hernandez,hernaya01,automatic_bbref_match +9312,Yadier Molina,9,molinya01,1344,Yadier Molina,molinya01,automatic_bbref_match +9313,Yairo Munoz,9,munozya01,1383,Yairo Munoz,munozya01,automatic_bbref_match +9314,Yan Gomes,9,gomesya01,731,Yan Gomes,gomesya01,automatic_bbref_match +9315,Yandy Diaz,9,diazya01,507,Yandy Diaz,diazya01,automatic_bbref_match +9316,Yasmani Grandal,9,grandya01,761,Yasmani Grandal,grandya01,automatic_bbref_match +9317,Yency Almonte,9,almonye01,50,Yency Almonte,almonye01,automatic_bbref_match +9318,Yermin Mercedes,9,merceye01,1307,Yermin Mercedes,merceye01,automatic_bbref_match +9319,Yerry De Los Santos,9,delosye01,481,Yerry De Los Santos,delosye01,automatic_bbref_match +9320,Yimi Garcia,9,garciyi01,680,Yimi Garcia,garciyi01,automatic_bbref_match +9321,Yoan Moncada,9,moncayo01,1348,Yoan Moncada,moncayo01,automatic_bbref_match +9322,Yohan Ramirez,9,ramiryo01,1611,Yohan Ramirez,ramiryo01,automatic_bbref_match +9323,Yonathan Daza,9,dazayo01,476,Yonathan Daza,dazayo01,automatic_bbref_match +9324,Yordan Alvarez,9,alvaryo01,61,Yordan Alvarez,alvaryo01,automatic_bbref_match +9325,Yoshi Tsutsugo,9,tsutsyo01,2021,Yoshi Tsutsugo,tsutsyo01,automatic_bbref_match +9326,Yu Chang,9,changyu01,364,Yu Chang,changyu01,automatic_bbref_match +9327,Yu Darvish,9,darviyu01,462,Yu Darvish,darviyu01,automatic_bbref_match +9328,Yuli Gurriel,9,gourryu01,793,Yuli Gurriel,gourryu01,automatic_bbref_match +9329,Yunior Marte,9,marteyu01,1211,Yunior Marte,marteyu01,automatic_bbref_match +9330,Yusei Kikuchi,9,kikucyu01,1040,Yusei Kikuchi,kikucyu01,automatic_bbref_match +9331,Zac Gallen,9,galleza01,673,Zac Gallen,galleza01,automatic_bbref_match +9332,Zach Davies,9,davieza02,465,Zach Davies,davieza02,automatic_bbref_match +9333,Zach Eflin,9,eflinza01,562,Zach Eflin,eflinza01,automatic_bbref_match +9334,Zach Jackson,9,jacksza02,963,Zach Jackson,jacksza02,automatic_bbref_match +9335,Zach Logue,9,logueza01,1137,Zach Logue,logueza01,automatic_bbref_match +9336,Zach McKinstry,9,mckinza01,1284,Zach McKinstry,mckinza01,automatic_bbref_match +9337,Zach Plesac,9,plesaza01,1566,Zach Plesac,plesaza01,automatic_bbref_match +9338,Zach Pop,9,popza01,1575,Zach Pop,popza01,automatic_bbref_match +9339,Zach Thompson,9,thompza01,1981,Zach Thompson,thompza01,automatic_bbref_match +9340,Zack Collins,9,colliza01,403,Zack Collins,colliza01,automatic_bbref_match +9341,Zack Greinke,9,greinza01,774,Zack Greinke,greinza01,automatic_bbref_match +9342,Zack Littell,9,litteza01,1127,Zack Littell,litteza01,automatic_bbref_match +9343,Zack Thompson,9,thompza02,1985,Zack Thompson,thompza02,automatic_bbref_match +9344,Zack Wheeler,9,wheelza01,2139,Zack Wheeler,wheelza01,automatic_bbref_match +9345,Diego A Castillo,9,castidi02,341,Diego Castillo,castidi02,automatic_bbref_match +9348,Aaron Hicks,10,hicksaa01,892,Aaron Hicks,hicksaa01,automatic_bbref_match +9346,Aaron Bummer,10,bummeaa01,279,Aaron Bummer,bummeaa01,automatic_bbref_match +9347,Aaron Civale,10,civalaa01,383,Aaron Civale,civalaa01,automatic_bbref_match +9349,Aaron Judge,10,judgeaa01,3,Aaron Judge,judgeaa01,automatic_bbref_match +9351,Aaron Nola,10,nolaaa01,1433,Aaron Nola,nolaaa01,automatic_bbref_match +9352,Abner Uribe,10,uribeab01,2040,Abner Uribe,uribeab01,automatic_bbref_match +9353,Adam Duvall,10,duvalad01,553,Adam Duvall,duvalad01,automatic_bbref_match +9354,Adam Frazier,10,fraziad01,648,Adam Frazier,fraziad01,automatic_bbref_match +9355,Adam Ottavino,10,ottavad01,1475,Adam Ottavino,ottavad01,automatic_bbref_match +9357,Adbert Alzolay,10,alzolad01,63,Adbert Alzolay,alzolad01,automatic_bbref_match +9358,Adley Rutschman,10,rutscad01,1729,Adley Rutschman,rutscad01,automatic_bbref_match +9359,Adolis Garcia,10,garciad02,690,Adolis Garcia,garciad02,automatic_bbref_match +9360,Adrian Houser,10,housead01,928,Adrian Houser,housead01,automatic_bbref_match +9362,AJ Minter,10,minteaj01,1336,AJ Minter,minteaj01,automatic_bbref_match +9363,AJ Puk,10,pukaj01,1592,AJ Puk,pukaj01,automatic_bbref_match +9364,Akil Baddoo,10,baddoak01,109,Akil Baddoo,baddoak01,automatic_bbref_match +9365,Alan Trejo,10,trejoal01,2012,Alan Trejo,trejoal01,automatic_bbref_match +9367,Alec Bohm,10,bohmal01,217,Alec Bohm,bohmal01,automatic_bbref_match +9368,Alec Burleson,10,burleal01,285,Alec Burleson,burleal01,automatic_bbref_match +9369,Alec Marsh,10,marshal01,1206,Alec Marsh,marshal01,automatic_bbref_match +9371,Alejandro Kirk,10,kirkal01,1056,Alejandro Kirk,kirkal01,automatic_bbref_match +9372,Alek Manoah,10,manoaal01,1192,Alek Manoah,manoaal01,automatic_bbref_match +9373,Alek Thomas,10,thomaal01,1979,Alek Thomas,thomaal01,automatic_bbref_match +9374,Alex Bregman,10,bregmal01,248,Alex Bregman,bregmal01,automatic_bbref_match +9375,Alex Call,10,callal02,308,Alex Call,callal02,automatic_bbref_match +9377,Alex Faedo,10,faedoal01,591,Alex Faedo,faedoal01,automatic_bbref_match +9378,Alex Kirilloff,10,kirilal01,1055,Alex Kirilloff,kirilal01,automatic_bbref_match +9379,Alex Lange,10,langeal01,1091,Alex Lange,langeal01,automatic_bbref_match +9380,Alex Verdugo,10,verdual01,2069,Alex Verdugo,verdual01,automatic_bbref_match +9381,Alex Vesia,10,vesiaal01,2072,Alex Vesia,vesiaal01,automatic_bbref_match +9382,Alex Wood,10,woodal02,2193,Alex Wood,woodal02,automatic_bbref_match +9384,Alexis Diaz,10,diazal03,509,Alexis Diaz,diazal03,automatic_bbref_match +9385,Allan Winans,10,winanal01,2173,Allan Winans,winanal01,automatic_bbref_match +9386,Amed Rosario,10,rosaram01,1711,Amed Rosario,rosaram01,automatic_bbref_match +9388,Andre Pallante,10,pallaan01,1492,Andre Pallante,pallaan01,automatic_bbref_match +9389,Andres Gimenez,10,gimenan01,721,Andres Gimenez,gimenan01,automatic_bbref_match +9391,Andres Munoz,10,munozan01,1384,Andres Munoz,munozan01,automatic_bbref_match +9392,Andrew Abbott,10,abbotan01,4,Andrew Abbott,abbotan01,automatic_bbref_match +9393,Andrew Benintendi,10,beninan01,177,Andrew Benintendi,beninan01,automatic_bbref_match +9394,Andrew Chafin,10,chafian01,363,Andrew Chafin,chafian01,automatic_bbref_match +9395,Andrew Heaney,10,heanean01,843,Andrew Heaney,heanean01,automatic_bbref_match +9396,Andrew Knizner,10,kniznan01,1065,Andrew Knizner,kniznan01,automatic_bbref_match +9397,Andrew McCutchen,10,mccutan01,1272,Andrew McCutchen,mccutan01,automatic_bbref_match +9398,Andrew Nardi,10,nardian01,1400,Andrew Nardi,nardian01,automatic_bbref_match +9400,Andrew Vaughn,10,vaughan01,2061,Andrew Vaughn,vaughan01,automatic_bbref_match +9402,Andruw Monasterio,10,monasan01,1347,Andruw Monasterio,monasan01,automatic_bbref_match +9403,Andy Ibanez,10,ibanean01,948,Andy Ibanez,ibanean01,automatic_bbref_match +9405,Angel Zerpa,10,zerpaan01,2224,Angel Zerpa,zerpaan01,automatic_bbref_match +9408,Anthony Rizzo,10,rizzoan01,1658,Anthony Rizzo,rizzoan01,automatic_bbref_match +9409,Anthony Santander,10,santaan02,1764,Anthony Santander,santaan02,automatic_bbref_match +9410,Anthony Volpe,10,volpean01,2088,Anthony Volpe,volpean01,automatic_bbref_match +9411,Aroldis Chapman,10,chapmar01,366,Aroldis Chapman,chapmar01,automatic_bbref_match +9412,Austin Adams,10,adamsau02,16,Austin Adams,adamsau02,automatic_bbref_match +9413,Austin Barnes,10,barneau01,132,Austin Barnes,barneau01,automatic_bbref_match +9415,Austin Gomber,10,gombeau01,730,Austin Gomber,gombeau01,automatic_bbref_match +9416,Austin Hays,10,haysau01,839,Austin Hays,haysau01,automatic_bbref_match +9417,Austin Pruitt,10,pruitau01,1588,Austin Pruitt,pruitau01,automatic_bbref_match +9418,Austin Riley,10,rileyau01,1649,Austin Riley,rileyau01,automatic_bbref_match +9419,Austin Slater,10,slateau01,1838,Austin Slater,slateau01,automatic_bbref_match +9420,Austin Voth,10,vothau01,2091,Austin Voth,vothau01,automatic_bbref_match +9421,Austin Wells,10,wellsau01,2131,Austin Wells,wellsau01,automatic_bbref_match +9423,Bailey Falter,10,falteba01,594,Bailey Falter,falteba01,automatic_bbref_match +9424,Bailey Ober,10,oberba01,1447,Bailey Ober,oberba01,automatic_bbref_match +9425,Beau Brieske,10,briesbe01,256,Beau Brieske,briesbe01,automatic_bbref_match +9426,Ben Lively,10,livelbe01,1130,Ben Lively,livelbe01,automatic_bbref_match +9427,Blake Sabol,10,sabolbl01,1735,Blake Sabol,sabolbl01,automatic_bbref_match +9428,Blake Snell,10,snellbl01,1861,Blake Snell,snellbl01,automatic_bbref_match +9429,Bo Bichette,10,bichebo01,190,Bo Bichette,bichebo01,automatic_bbref_match +9430,Bo Naylor,10,naylobo01,1405,Bo Naylor,naylobo01,automatic_bbref_match +9431,Bobby Miller,10,millebo06,1326,Bobby Miller,millebo06,automatic_bbref_match +9432,Bobby Witt Jr,10,wittbo02,2184,Bobby Witt Jr,wittbo02,automatic_bbref_match +9434,Brad Keller,10,kellebr01,1016,Brad Keller,kellebr01,automatic_bbref_match +9435,Brady Singer,10,singebr01,1827,Brady Singer,singebr01,automatic_bbref_match +9437,Brandon Bielak,10,bielabr01,195,Brandon Bielak,bielabr01,automatic_bbref_match +9438,Brandon Crawford,10,crawfbr01,430,Brandon Crawford,crawfbr01,automatic_bbref_match +9440,Brandon Drury,10,drurybr01,535,Brandon Drury,drurybr01,automatic_bbref_match +9441,Brandon Lowe,10,lowebr01,1156,Brandon Lowe,lowebr01,automatic_bbref_match +9442,Brandon Marsh,10,marshbr02,1205,Brandon Marsh,marshbr02,automatic_bbref_match +9443,Brandon Nimmo,10,nimmobr01,1425,Brandon Nimmo,nimmobr01,automatic_bbref_match +9444,Brandon Pfaadt,10,pfaadbr01,1551,Brandon Pfaadt,pfaadbr01,automatic_bbref_match +9447,Braxton Garrett,10,garrebr01,701,Braxton Garrett,garrebr01,automatic_bbref_match +9448,Brayan Bello,10,bellobr01,171,Brayan Bello,bellobr01,automatic_bbref_match +9449,Brendan Donovan,10,donovbr01,527,Brendan Donovan,donovbr01,automatic_bbref_match +9450,Brendan Rodgers,10,rodgebr02,1668,Brendan Rodgers,rodgebr02,automatic_bbref_match +9452,Brennan Bernardino,10,bernabr01,181,Brennan Bernardino,bernabr01,automatic_bbref_match +9454,Brent Rooker,10,rookebr01,1708,Brent Rooker,rookebr01,automatic_bbref_match +9455,Brent Suter,10,suterbr01,1943,Brent Suter,suterbr01,automatic_bbref_match +9456,Brenton Doyle,10,doylebr02,531,Brenton Doyle,doylebr02,automatic_bbref_match +9457,Brett Baty,10,batybr01,149,Brett Baty,batybr01,automatic_bbref_match +9459,Brice Turang,10,turanbr02,2026,Brice Turang,turanbr02,automatic_bbref_match +9460,Brock Burke,10,burkebr01,284,Brock Burke,burkebr01,automatic_bbref_match +9461,Brock Stewart,10,stewabr01,1908,Brock Stewart,stewabr01,automatic_bbref_match +9462,Brooks Raley,10,raleybr01,1601,Brooks Raley,raleybr01,automatic_bbref_match +9464,Bryan Abreu,10,abreubr01,8,Bryan Abreu,abreubr01,automatic_bbref_match +9466,Bryan De La Cruz,10,delacbr01,479,Bryan De La Cruz,delacbr01,automatic_bbref_match +9467,Bryan Hoeing,10,hoeinbr01,908,Bryan Hoeing,hoeinbr01,automatic_bbref_match +9468,Bryan Reynolds,10,reynobr01,1641,Bryan Reynolds,reynobr01,automatic_bbref_match +9469,Bryan Shaw,10,shawbr01,1808,Bryan Shaw,shawbr01,automatic_bbref_match +9470,Bryan Woo,10,woobr01,2191,Bryan Woo,woobr01,automatic_bbref_match +9471,Bryce Elder,10,elderbr01,564,Bryce Elder,elderbr01,automatic_bbref_match +9472,Bryce Harper,10,harpebr03,823,Bryce Harper,harpebr03,automatic_bbref_match +9473,Bryce Miller,10,millebr04,1328,Bryce Miller,millebr04,automatic_bbref_match +9474,Bryse Wilson,10,wilsobr02,2171,Bryse Wilson,wilsobr02,automatic_bbref_match +9475,Bryson Stott,10,stottbr01,1915,Bryson Stott,stottbr01,automatic_bbref_match +9476,Buck Farmer,10,farmebu01,597,Buck Farmer,farmebu01,automatic_bbref_match +9477,Byron Buxton,10,buxtoby01,295,Byron Buxton,buxtoby01,automatic_bbref_match +9479,Cal Quantrill,10,quantca01,1593,Cal Quantrill,quantca01,automatic_bbref_match +9480,Cal Raleigh,10,raleica01,1600,Cal Raleigh,raleica01,automatic_bbref_match +9481,Caleb Ferguson,10,ferguca01,605,Caleb Ferguson,ferguca01,automatic_bbref_match +9482,Caleb Thielbar,10,thielca01,1977,Caleb Thielbar,thielca01,automatic_bbref_match +9484,Camilo Doval,10,dovalca01,529,Camilo Doval,dovalca01,automatic_bbref_match +9486,Carlos Carrasco,10,carraca01,331,Carlos Carrasco,carraca01,automatic_bbref_match +9487,Carlos Correa,10,correca01,420,Carlos Correa,correca01,automatic_bbref_match +9488,Carlos Estevez,10,estevca01,585,Carlos Estevez,estevca01,automatic_bbref_match +9489,Carlos Hernandez,10,hernaca04,880,Carlos Hernandez,hernaca04,automatic_bbref_match +9491,Carlos Rodon,10,rodonca01,1670,Carlos Rodon,rodonca01,automatic_bbref_match +9492,Carlos Santana,10,santaca01,1759,Carlos Santana,santaca01,automatic_bbref_match +9493,Carmen Mlodzinski,10,mlodzca01,1343,Carmen Mlodzinski,mlodzca01,automatic_bbref_match +9494,Carson Kelly,10,kellyca02,1023,Carson Kelly,kellyca02,automatic_bbref_match +9495,Casey Schmitt,10,schmica01,1775,Casey Schmitt,schmica01,automatic_bbref_match +9496,Cavan Biggio,10,biggica01,196,Cavan Biggio,biggica01,automatic_bbref_match +9497,Ceddanne Rafaela,10,rafaece01,1597,Ceddanne Rafaela,rafaece01,automatic_bbref_match +9498,Cedric Mullins,10,mullice01,1381,Cedric Mullins,mullice01,automatic_bbref_match +9501,Charlie Blackmon,10,blackch02,205,Charlie Blackmon,blackch02,automatic_bbref_match +9502,Charlie Morton,10,mortoch02,1375,Charlie Morton,mortoch02,automatic_bbref_match +9503,Chas McCormick,10,mccorch01,1269,Chas McCormick,mccorch01,automatic_bbref_match +9504,Chase Anderson,10,anderch01,67,Chase Anderson,anderch01,automatic_bbref_match +9505,Chase Silseth,10,silsech01,1824,Chase Silseth,silsech01,automatic_bbref_match +9506,Chris Bassitt,10,bassich01,146,Chris Bassitt,bassich01,automatic_bbref_match +9507,Chris Flexen,10,flexech01,626,Chris Flexen,flexech01,automatic_bbref_match +9508,Chris Martin,10,martich02,1214,Chris Martin,martich02,automatic_bbref_match +9510,Chris Sale,10,salech01,1739,Chris Sale,salech01,automatic_bbref_match +9511,Chris Stratton,10,stratch01,1922,Chris Stratton,stratch01,automatic_bbref_match +9512,Chris Taylor,10,tayloch03,1964,Chris Taylor,tayloch03,automatic_bbref_match +9513,Christian Bethancourt,10,bethach01,185,Christian Bethancourt,bethach01,automatic_bbref_match +9515,Christian Vazquez,10,vazquch01,2063,Christian Vazquez,vazquch01,automatic_bbref_match +9516,Christian Walker,10,walkech02,2104,Christian Walker,walkech02,automatic_bbref_match +9517,Christian Yelich,10,yelicch01,2212,Christian Yelich,yelicch01,automatic_bbref_match +9518,Christopher Morel,10,morelch01,1364,Christopher Morel,morelch01,automatic_bbref_match +9519,Cionel Perez,10,perezci01,1540,Cionel Perez,perezci01,automatic_bbref_match +9520,CJ Abrams,10,abramcj01,6,CJ Abrams,abramcj01,automatic_bbref_match +9522,Clarke Schmidt,10,schmicl01,1774,Clarke Schmidt,schmicl01,automatic_bbref_match +9523,Clay Holmes,10,holmecl01,919,Clay Holmes,holmecl01,automatic_bbref_match +9525,Cody Bellinger,10,bellico01,170,Cody Bellinger,bellico01,automatic_bbref_match +9526,Cody Bolton,10,boltoco01,219,Cody Bolton,boltoco01,automatic_bbref_match +9527,Cole Irvin,10,irvinco01,954,Cole Irvin,irvinco01,automatic_bbref_match +9528,Cole Ragans,10,raganco01,1598,Cole Ragans,raganco01,automatic_bbref_match +9529,Cole Sands,10,sandsco01,1755,Cole Sands,sandsco01,automatic_bbref_match +9530,Colin Holderman,10,holdeco01,913,Colin Holderman,holdeco01,automatic_bbref_match +9531,Colin Poche,10,pocheco01,1568,Colin Poche,pocheco01,automatic_bbref_match +9532,Colin Rea,10,reaco01,1621,Colin Rea,reaco01,automatic_bbref_match +9534,Colton Cowser,10,cowseco01,426,Colton Cowser,cowseco01,automatic_bbref_match +9535,Connor Joe,10,joeco01,983,Connor Joe,joeco01,automatic_bbref_match +9537,Connor Wong,10,wongco01,2189,Connor Wong,wongco01,automatic_bbref_match +9538,Corbin Burnes,10,burneco01,286,Corbin Burnes,burneco01,automatic_bbref_match +9539,Corbin Carroll,10,carroco02,332,Corbin Carroll,carroco02,automatic_bbref_match +9540,Corey Julks,10,julksco01,1001,Corey Julks,julksco01,automatic_bbref_match +9541,Corey Seager,10,seageco01,1794,Corey Seager,seageco01,automatic_bbref_match +9543,Craig Kimbrel,10,kimbrcr01,1043,Craig Kimbrel,kimbrcr01,automatic_bbref_match +9544,Cristian Javier,10,javiecr01,971,Cristian Javier,javiecr01,automatic_bbref_match +9545,Cristian Pache,10,pachecr01,1482,Cristian Pache,pachecr01,automatic_bbref_match +9546,Cristopher Sanchez,10,sanchcr01,1748,Cristopher Sanchez,sanchcr01,automatic_bbref_match +9547,Curt Casali,10,casalcu01,334,Curt Casali,casalcu01,automatic_bbref_match +9548,Dairon Blanco,10,blancda02,209,Dairon Blanco,blancda02,automatic_bbref_match +9549,Dakota Hudson,10,hudsoda02,934,Dakota Hudson,hudsoda02,automatic_bbref_match +9550,Dane Dunning,10,dunnida01,548,Dane Dunning,dunnida01,automatic_bbref_match +9553,Daniel Duarte,10,duartda01,536,Daniel Duarte,duartda01,automatic_bbref_match +9555,Daniel Palencia,10,palenda01,1490,Daniel Palencia,palenda01,automatic_bbref_match +9556,Daniel Vogelbach,10,vogelda01,2085,Daniel Vogelbach,vogelda01,automatic_bbref_match +9557,Danny Jansen,10,janseda01,969,Danny Jansen,janseda01,automatic_bbref_match +9558,Dansby Swanson,10,swansda01,1947,Dansby Swanson,swansda01,automatic_bbref_match +9559,Dany Jimenez,10,jimenda01,981,Dany Jimenez,jimenda01,automatic_bbref_match +9560,Daulton Varsho,10,varshda01,2058,Daulton Varsho,varshda01,automatic_bbref_match +9562,David Bednar,10,bednada01,162,David Bednar,bednada01,automatic_bbref_match +9563,David Fletcher,10,fletcda02,624,David Fletcher,fletcda02,automatic_bbref_match +9564,David Fry,10,fryda01,663,David Fry,fryda01,automatic_bbref_match +9566,David Peralta,10,peralda01,1522,David Peralta,peralda01,automatic_bbref_match +9568,David Robertson,10,roberda08,1662,David Robertson,roberda08,automatic_bbref_match +9569,Davis Schneider,10,schneda03,1777,Davis Schneider,schneda03,automatic_bbref_match +9570,Dean Kremer,10,kremede01,1077,Dean Kremer,kremede01,automatic_bbref_match +9571,Derek Law,10,lawde01,1098,Derek Law,lawde01,automatic_bbref_match +9574,DJ Stewart,10,stewadj01,1909,DJ Stewart,stewadj01,automatic_bbref_match +9576,Dominic Fletcher,10,fletcdo01,625,Dominic Fletcher,fletcdo01,automatic_bbref_match +9577,Dominic Smith,10,smithdo02,1849,Dominic Smith,smithdo02,automatic_bbref_match +9578,Donovan Solano,10,solando01,1868,Donovan Solano,solando01,automatic_bbref_match +9580,Drew Smith,10,smithdr01,1848,Drew Smith,smithdr01,automatic_bbref_match +9581,Drew Smyly,10,smylydr01,1858,Drew Smyly,smylydr01,automatic_bbref_match +9586,Dylan Carlson,10,carlsdy01,327,Dylan Carlson,carlsdy01,automatic_bbref_match +9587,Dylan Cease,10,ceasedy01,355,Dylan Cease,ceasedy01,automatic_bbref_match +9589,Dylan Floro,10,florody01,629,Dylan Floro,florody01,automatic_bbref_match +9590,Dylan Lee,10,leedy01,1108,Dylan Lee,leedy01,automatic_bbref_match +9591,Dylan Moore,10,mooredy01,1358,Dylan Moore,mooredy01,automatic_bbref_match +9592,Eddie Rosario,10,rosared01,1710,Eddie Rosario,rosared01,automatic_bbref_match +9593,Edmundo Sosa,10,sosaed01,1876,Edmundo Sosa,sosaed01,automatic_bbref_match +9594,Edouard Julien,10,julieed01,1000,Edouard Julien,julieed01,automatic_bbref_match +9597,Edward Cabrera,10,cabreed02,302,Edward Cabrera,cabreed02,automatic_bbref_match +9598,Edward Olivares,10,olivaed02,1458,Edward Olivares,olivaed02,automatic_bbref_match +9599,Elehuris Montero,10,monteel01,1353,Elehuris Montero,monteel01,automatic_bbref_match +9600,Eli Morgan,10,morgael01,1369,Eli Morgan,morgael01,automatic_bbref_match +9601,Elias Diaz,10,diazel01,502,Elias Diaz,diazel01,automatic_bbref_match +9602,Elly De La Cruz,10,delacel01,480,Elly De La Cruz,delacel01,automatic_bbref_match +9603,Eloy Jimenez,10,jimenel02,980,Eloy Jimenez,jimenel02,automatic_bbref_match +9605,Elvis Peguero,10,pegueel01,1515,Elvis Peguero,pegueel01,automatic_bbref_match +9606,Emilio Pagan,10,paganem01,1484,Emilio Pagan,paganem01,automatic_bbref_match +9607,Emmanuel Clase,10,claseem01,385,Emmanuel Clase,claseem01,automatic_bbref_match +9608,Emmanuel Rivera,10,riverem01,1657,Emmanuel Rivera,riverem01,automatic_bbref_match +9611,Enmanuel Valdez,10,valdeen01,2049,Enmanuel Valdez,valdeen01,automatic_bbref_match +9612,Enrique Hernandez,10,hernaen02,871,Enrique Hernandez,hernaen02,automatic_bbref_match +9613,Enyel De Los Santos,10,delosen01,482,Enyel De Los Santos,delosen01,automatic_bbref_match +9615,Erik Swanson,10,swanser01,1948,Erik Swanson,swanser01,automatic_bbref_match +9616,Esteury Ruiz,10,ruizes01,1726,Esteury Ruiz,ruizes01,automatic_bbref_match +9617,Estevan Florial,10,flories01,628,Estevan Florial,flories01,automatic_bbref_match +9618,Eugenio Suarez,10,suareeu01,1934,Eugenio Suarez,suareeu01,automatic_bbref_match +9620,Evan Carter,10,carteev01,333,Evan Carter,carteev01,automatic_bbref_match +9624,Ezequiel Duran,10,duranez01,551,Ezequiel Duran,duranez01,automatic_bbref_match +9625,Ezequiel Tovar,10,tovarez01,2007,Ezequiel Tovar,tovarez01,automatic_bbref_match +9627,Fernando Cruz,10,cruzfe01,448,Fernando Cruz,cruzfe01,automatic_bbref_match +9628,Fernando Tatis Jr,10,tatisfe02,1960,Fernando Tatis Jr,tatisfe02,automatic_bbref_match +9629,Framber Valdez,10,valdefr01,2048,Framber Valdez,valdefr01,automatic_bbref_match +9630,Francisco Alvarez,10,alvarfr01,62,Francisco Alvarez,alvarfr01,automatic_bbref_match +9631,Francisco Lindor,10,lindofr01,1124,Francisco Lindor,lindofr01,automatic_bbref_match +9633,Freddie Freeman,10,freemfr01,652,Freddie Freeman,freemfr01,automatic_bbref_match +9634,Freddy Fermin,10,fermifr01,606,Freddy Fermin,fermifr01,automatic_bbref_match +9635,Freddy Peralta,10,peralfr01,1525,Freddy Peralta,peralfr01,automatic_bbref_match +9636,Gabe Speier,10,speiega01,1885,Gabe Speier,speiega01,automatic_bbref_match +9637,Gabriel Arias,10,ariasga01,89,Gabriel Arias,ariasga01,automatic_bbref_match +9638,Gabriel Moreno,10,morenga01,1366,Gabriel Moreno,morenga01,automatic_bbref_match +9639,Garrett Cooper,10,coopega03,415,Garrett Cooper,coopega03,automatic_bbref_match +9640,Garrett Hampson,10,hampsga01,814,Garrett Hampson,hampsga01,automatic_bbref_match +9641,Garrett Stubbs,10,stubbga01,1931,Garrett Stubbs,stubbga01,automatic_bbref_match +9642,Garrett Whitlock,10,whitlga01,2146,Garrett Whitlock,whitlga01,automatic_bbref_match +9643,Gary Sanchez,10,sanchga02,1746,Gary Sanchez,sanchga02,automatic_bbref_match +9645,Gavin Sheets,10,sheetga01,1811,Gavin Sheets,sheetga01,automatic_bbref_match +9646,Gavin Stone,10,stonega01,1913,Gavin Stone,stonega01,automatic_bbref_match +9648,Genesis Cabrera,10,cabrege01,301,Genesis Cabrera,cabrege01,automatic_bbref_match +9649,George Kirby,10,kirbyge01,1054,George Kirby,kirbyge01,automatic_bbref_match +9650,George Soriano,10,soriage01,1873,George Soriano,soriage01,automatic_bbref_match +9651,George Springer,10,springe01,1888,George Springer,springe01,automatic_bbref_match +9652,Geraldo Perdomo,10,perdoge01,1531,Geraldo Perdomo,perdoge01,automatic_bbref_match +9654,Giancarlo Stanton,10,stantmi03,1893,Giancarlo Stanton,stantmi03,automatic_bbref_match +9655,Gio Urshela,10,urshegi01,2042,Gio Urshela,urshegi01,automatic_bbref_match +9656,Giovanny Gallegos,10,gallegi01,672,Giovanny Gallegos,gallegi01,automatic_bbref_match +9657,Gleyber Torres,10,torregl01,2003,Gleyber Torres,torregl01,automatic_bbref_match +9658,Graham Ashcraft,10,ashcrgr01,99,Graham Ashcraft,ashcrgr01,automatic_bbref_match +9659,Grant Hartwig,10,hartwgr01,834,Grant Hartwig,hartwgr01,automatic_bbref_match +9660,Grayson Rodriguez,10,rodrigr01,1684,Grayson Rodriguez,rodrigr01,automatic_bbref_match +9662,Gregory Soto,10,sotogr01,1878,Gregory Soto,sotogr01,automatic_bbref_match +9663,Griffin Canning,10,cannigr01,317,Griffin Canning,cannigr01,automatic_bbref_match +9664,Griffin Jax,10,jaxgr01,972,Griffin Jax,jaxgr01,automatic_bbref_match +9665,Gunnar Henderson,10,hendegu01,855,Gunnar Henderson,hendegu01,automatic_bbref_match +9668,Harold Ramirez,10,ramirha02,1609,Harold Ramirez,ramirha02,automatic_bbref_match +9669,Harrison Bader,10,baderha01,110,Harrison Bader,baderha01,automatic_bbref_match +9670,Hayden Wesneski,10,wesneha01,2137,Hayden Wesneski,wesneha01,automatic_bbref_match +9671,Hector Neris,10,nerishe01,1413,Hector Neris,nerishe01,automatic_bbref_match +9672,Henry Davis,10,davishe01,473,Henry Davis,davishe01,automatic_bbref_match +9674,Hoby Milner,10,milneho01,1332,Hoby Milner,milneho01,automatic_bbref_match +9675,Hogan Harris,10,harriho03,826,Hogan Harris,harriho03,automatic_bbref_match +9677,Hunter Brown,10,brownhu01,267,Hunter Brown,brownhu01,automatic_bbref_match +9678,Hunter Greene,10,greenhu01,770,Hunter Greene,greenhu01,automatic_bbref_match +9679,Hunter Harvey,10,harvehu01,836,Hunter Harvey,harvehu01,automatic_bbref_match +9680,Hunter Renfroe,10,renfrhu01,1631,Hunter Renfroe,renfrhu01,automatic_bbref_match +9683,Ian Hamilton,10,hamilia01,811,Ian Hamilton,hamilia01,automatic_bbref_match +9684,Ian Happ,10,happia01,820,Ian Happ,happia01,automatic_bbref_match +9685,Ildemaro Vargas,10,vargail01,2054,Ildemaro Vargas,vargail01,automatic_bbref_match +9686,Isaac Paredes,10,paredis01,1497,Isaac Paredes,paredis01,automatic_bbref_match +9687,Isaiah Campbell,10,campbis01,312,Isaiah Campbell,campbis01,automatic_bbref_match +9689,Jace Peterson,10,peterja01,1547,Jace Peterson,peterja01,automatic_bbref_match +9690,Jack Flaherty,10,flaheja01,622,Jack Flaherty,flaheja01,automatic_bbref_match +9691,Jack Suwinski,10,suwinja01,1944,Jack Suwinski,suwinja01,automatic_bbref_match +9693,Jacob Stallings,10,stallja01,1890,Jacob Stallings,stallja01,automatic_bbref_match +9694,Jacob Webb,10,webbja01,2126,Jacob Webb,webbja01,automatic_bbref_match +9695,Jacob Young,10,youngja03,2219,Jacob Young,youngja03,automatic_bbref_match +9698,Jake Bauers,10,bauerja01,151,Jake Bauers,bauerja01,automatic_bbref_match +9699,Jake Bird,10,birdja01,198,Jake Bird,birdja01,automatic_bbref_match +9700,Jake Burger,10,burgeja01,283,Jake Burger,burgeja01,automatic_bbref_match +9701,Jake Cave,10,caveja01,354,Jake Cave,caveja01,automatic_bbref_match +9702,Jake Cronenworth,10,croneja01,442,Jake Cronenworth,croneja01,automatic_bbref_match +9703,Jake Diekman,10,diekmja01,514,Jake Diekman,diekmja01,automatic_bbref_match +9704,Jake Fraley,10,fraleja01,641,Jake Fraley,fraleja01,automatic_bbref_match +9705,Jake Irvin,10,irvinja01,955,Jake Irvin,irvinja01,automatic_bbref_match +9706,Jake Junis,10,junisja01,1004,Jakob Junis,junisja01,automatic_bbref_match +9707,Jake McCarthy,10,mccarja02,1265,Jake McCarthy,mccarja02,automatic_bbref_match +9708,Jake Meyers,10,meyerja02,1315,Jake Meyers,meyerja02,automatic_bbref_match +9709,Jake Rogers,10,rogerja03,1692,Jake Rogers,rogerja03,automatic_bbref_match +9711,Jalen Beeks,10,beeksja02,165,Jalen Beeks,beeksja02,automatic_bbref_match +9714,James Mcarthur,10,mcartja01,1258,James McArthur,mcartja01,automatic_bbref_match +9715,James McCann,10,mccanja02,1261,James McCann,mccanja02,automatic_bbref_match +9716,James Outman,10,outmaja01,1477,James Outman,outmaja01,automatic_bbref_match +9717,James Paxton,10,paxtoja01,1506,James Paxton,paxtoja01,automatic_bbref_match +9718,Jameson Taillon,10,taillja01,1954,Jameson Taillon,taillja01,automatic_bbref_match +9719,Jared Shuster,10,shustja01,1821,Jared Shuster,shustja01,automatic_bbref_match +9720,Jared Triolo,10,triolja01,2015,Jared Triolo,triolja01,automatic_bbref_match +9721,Jarred Kelenic,10,kelenja01,1015,Jarred Kelenic,kelenja01,automatic_bbref_match +9722,Jarren Duran,10,duranja01,552,Jarren Duran,duranja01,automatic_bbref_match +9723,Jason Adam,10,adamja01,13,Jason Adam,adamja01,automatic_bbref_match +9724,Jason Delay,10,delayja01,487,Jason Delay,delayja01,automatic_bbref_match +9725,Jason Foley,10,foleyja01,632,Jason Foley,foleyja01,automatic_bbref_match +9726,Jason Heyward,10,heywaja01,891,Jason Heyward,heywaja01,automatic_bbref_match +9728,Javier Assad,10,assadja01,100,Javier Assad,assadja01,automatic_bbref_match +9729,Javier Baez,10,baezja01,112,Javier Baez,baezja01,automatic_bbref_match +9730,Jazz Chisholm,10,chishja01,375,Jazz Chisholm,chishja01,automatic_bbref_match +9731,JD Davis,10,davisjd01,474,JD Davis,davisjd01,automatic_bbref_match +9732,JD Martinez,10,martijd02,1229,JD Martinez,martijd02,automatic_bbref_match +9735,Jeff Hoffman,10,hoffmje02,910,Jeff Hoffman,hoffmje02,automatic_bbref_match +9736,Jeff McNeil,10,mcneije01,1287,Jeff McNeil,mcneije01,automatic_bbref_match +9737,Jeimer Candelario,10,candeje01,315,Jeimer Candelario,candeje01,automatic_bbref_match +9738,Jeremy Pena,10,penaje02,1519,Jeremy Pena,penaje02,automatic_bbref_match +9740,Jesse Winker,10,winkeje01,2177,Jesse Winker,winkeje01,automatic_bbref_match +9741,Jesus Luzardo,10,luzarje01,1170,Jesus Luzardo,luzarje01,automatic_bbref_match +9742,Jesus Sanchez,10,sanchje02,1749,Jesus Sanchez,sanchje02,automatic_bbref_match +9743,Jhony Brito,10,britojh01,259,Jhony Brito,britojh01,automatic_bbref_match +9744,Ji Hwan Bae,10,baeji01,945,Ji Hwan Bae,baeji01,automatic_bbref_match +9746,Jimmy Herget,10,hergeji01,863,Jimmy Herget,hergeji01,automatic_bbref_match +9748,JJ Bleday,10,bledajj01,211,JJ Bleday,bledajj01,automatic_bbref_match +9749,Joan Adon,10,adonjo01,21,Joan Adon,adonjo01,automatic_bbref_match +9750,Joc Pederson,10,pederjo01,1514,Joc Pederson,pederjo01,automatic_bbref_match +9751,Joe Jacques,10,jacqujo01,964,Joe Jacques,jacqujo01,automatic_bbref_match +9752,Joe Jimenez,10,jimenjo02,979,Joe Jimenez,jimenjo02,automatic_bbref_match +9753,Joe Kelly,10,kellyjo05,1021,Joe Kelly,kellyjo05,automatic_bbref_match +9754,Joe Mantiply,10,mantijo01,1193,Joe Mantiply,mantijo01,automatic_bbref_match +9755,Joe Musgrove,10,musgrjo01,1394,Joe Musgrove,musgrjo01,automatic_bbref_match +9756,Joe Ryan,10,ryanjo04,1732,Joe Ryan,ryanjo04,automatic_bbref_match +9757,Joel Payamps,10,payamjo01,1507,Joel Payamps,payamjo01,automatic_bbref_match +9758,Joey Gallo,10,gallojo01,674,Joey Gallo,gallojo01,automatic_bbref_match +9759,Joey Lucchesi,10,lucchjo01,1160,Joey Lucchesi,lucchjo01,automatic_bbref_match +9760,Joey Meneses,10,menesjo01,1303,Joey Meneses,menesjo01,automatic_bbref_match +9762,Joey Wendle,10,wendljo01,2135,Joey Wendle,wendljo01,automatic_bbref_match +9763,Joey Wentz,10,wentzjo01,2136,Joey Wentz,wentzjo01,automatic_bbref_match +9764,Joey Wiemer,10,wiemejo01,2151,Joey Wiemer,wiemejo01,automatic_bbref_match +9766,Johan Rojas,10,rojasjo03,1697,Johan Rojas,rojasjo03,automatic_bbref_match +9767,John Brebbia,10,brebbjo01,247,John Brebbia,brebbjo01,automatic_bbref_match +9768,John King,10,kingjo01,1045,John King,kingjo01,automatic_bbref_match +9769,John Schreiber,10,schrejo01,1780,John Schreiber,schrejo01,automatic_bbref_match +9770,JoJo Romero,10,romerjo01,1702,JoJo Romero,romerjo01,automatic_bbref_match +9771,Jon Berti,10,bertijo01,183,Jon Berti,bertijo01,automatic_bbref_match +9772,Jon Gray,10,grayjo02,766,Jon Gray,grayjo02,automatic_bbref_match +9773,Jonah Bride,10,bridejo01,255,Jonah Bride,bridejo01,automatic_bbref_match +9774,Jonah Heim,10,heimjo01,849,Jonah Heim,heimjo01,automatic_bbref_match +9775,Jonathan Hernandez,10,hernajo02,876,Jonathan Hernandez,hernajo02,automatic_bbref_match +9776,Jonathan India,10,indiajo01,953,Jonathan India,indiajo01,automatic_bbref_match +9779,Jordan Hicks,10,hicksjo03,894,Jordan Hicks,hicksjo03,automatic_bbref_match +9780,Jordan Lyles,10,lylesjo01,1171,Jordan Lyles,lylesjo01,automatic_bbref_match +9781,Jordan Montgomery,10,montgjo01,1356,Jordan Montgomery,montgjo01,automatic_bbref_match +9782,Jordan Romano,10,romanjo03,1699,Jordan Romano,romanjo03,automatic_bbref_match +9783,Jordan Walker,10,walkejo02,2107,Jordan Walker,walkejo02,automatic_bbref_match +9784,Jordan Weems,10,weemsjo01,2129,Jordan Weems,weemsjo01,automatic_bbref_match +9785,Jordan Westburg,10,westbjo01,2138,Jordan Westburg,westbjo01,automatic_bbref_match +9786,Jordan Wicks,10,wicksjo01,2148,Jordan Wicks,wicksjo01,automatic_bbref_match +9787,Jorge Mateo,10,mateojo01,1233,Jorge Mateo,mateojo01,automatic_bbref_match +9788,Jorge Soler,10,solerjo01,1870,Jorge Soler,solerjo01,automatic_bbref_match +9789,Jose Abreu,10,abreujo02,7,Jose Abreu,abreujo02,automatic_bbref_match +9790,Jose Altuve,10,altuvjo01,56,Jose Altuve,altuvjo01,automatic_bbref_match +9791,Jose Alvarado,10,alvarjo03,58,Jose Alvarado,alvarjo03,automatic_bbref_match +9792,Jose Azocar,10,azocajo01,107,Jose Azocar,azocajo01,automatic_bbref_match +9794,Jose Berrios,10,berrijo01,182,Jose Berrios,berrijo01,automatic_bbref_match +9795,Jose Butto,10,buttojo01,293,Jose Butto,buttojo01,automatic_bbref_match +9796,Jose Caballero,10,cabaljo01,296,Jose Caballero,cabaljo01,automatic_bbref_match +9797,Jose Cisnero,10,cisnejo01,382,Jose Cisnero,cisnejo01,automatic_bbref_match +9798,Jose Cuas,10,cuasjo01,450,Jose Cuas,cuasjo01,automatic_bbref_match +9800,Jose Hernandez,10,hernajo03,879,Jose Hernandez,hernajo03,automatic_bbref_match +9802,Jose Leclerc,10,leclejo01,1106,Jose Leclerc,leclejo01,automatic_bbref_match +9803,Jose Quintana,10,quintjo01,1596,Jose Quintana,quintjo01,automatic_bbref_match +9804,Jose Ramirez,10,ramirjo01,1608,Jose Ramirez,ramirjo01,automatic_bbref_match +9805,Jose Ruiz,10,ruizjo01,1724,Jose Ruiz,ruizjo01,automatic_bbref_match +9806,Jose Siri,10,sirijo01,1830,Jose Siri,sirijo01,automatic_bbref_match +9807,Jose Soriano,10,soriajo02,1874,Jose Soriano,soriajo02,automatic_bbref_match +9808,Jose Suarez,10,suarejo01,1937,Jose Suarez,suarejo01,automatic_bbref_match +9809,Jose Trevino,10,trevijo01,2013,Jose Trevino,trevijo01,automatic_bbref_match +9810,Jose Urena,10,urenajo01,2035,Jose Urena,urenajo01,automatic_bbref_match +9812,Josh Bell,10,belljo02,168,Josh Bell,belljo02,automatic_bbref_match +9813,Josh Hader,10,haderjo01,802,Josh Hader,haderjo01,automatic_bbref_match +9814,Josh Jung,10,jungjo01,1002,Josh Jung,jungjo01,automatic_bbref_match +9815,Josh Lowe,10,lowejo01,1157,Josh Lowe,lowejo01,automatic_bbref_match +9816,Josh Naylor,10,naylojo01,1404,Josh Naylor,naylojo01,automatic_bbref_match +9818,Josh Rojas,10,rojasjo01,1695,Josh Rojas,rojasjo01,automatic_bbref_match +9819,Josh Sborz,10,sborzjo01,1770,Josh Sborz,sborzjo01,automatic_bbref_match +9820,Josh Smith,10,smithjo11,1852,Josh Smith,smithjo11,automatic_bbref_match +9821,Josh Winckowski,10,winckjo01,2174,Josh Winckowski,winckjo01,automatic_bbref_match +9823,Josiah Gray,10,grayjo03,767,Josiah Gray,grayjo03,automatic_bbref_match +9825,JP Crawford,10,crawfjp01,432,JP Crawford,crawfjp01,automatic_bbref_match +9826,JP France,10,francjp01,643,JP France,francjp01,automatic_bbref_match +9827,JP Sears,10,searsjp01,1795,JP Sears,searsjp01,automatic_bbref_match +9829,JT Realmuto,10,realmjt01,1622,JT Realmuto,realmjt01,automatic_bbref_match +9830,Juan Soto,10,sotoju01,1879,Juan Soto,sotoju01,automatic_bbref_match +9831,Julian Merryweather,10,merryju01,1311,Julian Merryweather,merryju01,automatic_bbref_match +9832,Julio Rodriguez,10,rodriju01,1682,Julio Rodriguez,rodriju01,automatic_bbref_match +9833,Julio Teheran,10,teherju01,1970,Julio Teheran,teherju01,automatic_bbref_match +9835,Jurickson Profar,10,profaju01,1587,Jurickson Profar,profaju01,automatic_bbref_match +9836,Justin Lawrence,10,lawreju01,1100,Justin Lawrence,lawreju01,automatic_bbref_match +9837,Justin Steele,10,steelju01,1899,Justin Steele,steelju01,automatic_bbref_match +9839,Justin Turner,10,turneju01,2029,Justin Turner,turneju01,automatic_bbref_match +9840,Justin Verlander,10,verlaju01,2071,Justin Verlander,verlaju01,automatic_bbref_match +9842,Keibert Ruiz,10,ruizke01,1725,Keibert Ruiz,ruizke01,automatic_bbref_match +9845,Kenley Jansen,10,janseke01,968,Kenley Jansen,janseke01,automatic_bbref_match +9846,Kenta Maeda,10,maedake01,1181,Kenta Maeda,maedake01,automatic_bbref_match +9847,Kerry Carpenter,10,carpeke01,330,Kerry Carpenter,carpeke01,automatic_bbref_match +9848,Ketel Marte,10,marteke01,1210,Ketel Marte,marteke01,automatic_bbref_match +9849,Kevin Gausman,10,gausmke01,706,Kevin Gausman,gausmke01,automatic_bbref_match +9850,Kevin Ginkel,10,ginkeke01,722,Kevin Ginkel,ginkeke01,automatic_bbref_match +9851,Kevin Kelly,10,kellyke02,1025,Kevin Kelly,kellyke02,automatic_bbref_match +9852,Kevin Kiermaier,10,kiermke01,1039,Kevin Kiermaier,kiermke01,automatic_bbref_match +9853,Kevin Newman,10,newmake01,1420,Kevin Newman,newmake01,automatic_bbref_match +9854,Kevin Pillar,10,pillake01,1557,Kevin Pillar,pillake01,automatic_bbref_match +9855,Kirby Yates,10,yateski01,2211,Kirby Yates,yateski01,automatic_bbref_match +9859,Korey Lee,10,leeko01,1109,Korey Lee,leeko01,automatic_bbref_match +9860,Kris Bryant,10,bryankr01,273,Kris Bryant,bryankr01,automatic_bbref_match +10097,Sam Hentges,10,hentgsa01,861,Sam Hentges,hentgsa01,automatic_bbref_match +9861,Kutter Crawford,10,crawfku01,431,Kutter Crawford,crawfku01,automatic_bbref_match +9862,Kyle Bradish,10,bradiky01,235,Kyle Bradish,bradiky01,automatic_bbref_match +9863,Kyle Finnegan,10,finneky01,617,Kyle Finnegan,finneky01,automatic_bbref_match +9864,Kyle Freeland,10,freelky01,650,Kyle Freeland,freelky01,automatic_bbref_match +9865,Kyle Gibson,10,gibsoky01,715,Kyle Gibson,gibsoky01,automatic_bbref_match +9866,Kyle Hendricks,10,hendrky01,856,Kyle Hendricks,hendrky01,automatic_bbref_match +9867,Kyle Higashioka,10,higasky01,895,Kyle Higashioka,higasky01,automatic_bbref_match +9868,Kyle Isbel,10,isbelky01,956,Kyle Isbel,isbelky01,automatic_bbref_match +9869,Kyle Muller,10,mulleky01,1380,Kyle Muller,mulleky01,automatic_bbref_match +9870,Kyle Nelson,10,nelsoky01,1412,Kyle Nelson,nelsoky01,automatic_bbref_match +9871,Kyle Schwarber,10,schwaky01,1784,Kyle Schwarber,schwaky01,automatic_bbref_match +9872,Kyle Tucker,10,tuckeky01,2023,Kyle Tucker,tuckeky01,automatic_bbref_match +9874,LaMonte Wade Jr,10,wadela01,2095,LaMonte Wade Jr,wadela01,automatic_bbref_match +9875,Lance Lynn,10,lynnla01,1173,Lance Lynn,lynnla01,automatic_bbref_match +9877,Lane Thomas,10,thomala02,1978,Lane Thomas,thomala02,automatic_bbref_match +9878,Lars Nootbaar,10,nootbla01,1436,Lars Nootbaar,nootbla01,automatic_bbref_match +9879,Lawrence Butler,10,butlela01,292,Lawrence Butler,butlela01,automatic_bbref_match +9880,Lenyn Sosa,10,sosale01,1877,Lenyn Sosa,sosale01,automatic_bbref_match +9881,Leody Taveras,10,taverle01,1962,Leody Taveras,taverle01,automatic_bbref_match +9883,Logan Allen,10,allenlo01,45,Logan Allen,allenlo01,automatic_bbref_match +9884,Logan Gilbert,10,gilbelo01,718,Logan Gilbert,gilbelo01,automatic_bbref_match +9886,Logan Webb,10,webblo01,2127,Logan Webb,webblo01,automatic_bbref_match +9887,Louie Varland,10,varlalo01,2057,Louie Varland,varlalo01,automatic_bbref_match +9888,Lourdes Gurriel Jr,10,gurrilo01,794,Lourdes Gurriel Jr,gurrilo01,automatic_bbref_match +9889,Lucas Erceg,10,erceglu01,577,Lucas Erceg,erceglu01,automatic_bbref_match +9891,Lucas Sims,10,simslu01,1826,Lucas Sims,simslu01,automatic_bbref_match +9892,Luis Arraez,10,arraelu01,93,Luis Arraez,arraelu01,automatic_bbref_match +9893,Luis Campusano,10,campulu01,314,Luis Campusano,campulu01,automatic_bbref_match +9894,Luis Castillo,10,castilu02,344,Luis Castillo,castilu02,automatic_bbref_match +9896,Luis Frias,10,friaslu01,658,Luis Frias,friaslu01,automatic_bbref_match +9898,Luis Guillorme,10,guilllu01,792,Luis Guillorme,guilllu01,automatic_bbref_match +9899,Luis Matos,10,matoslu02,1240,Luis Matos,matoslu02,automatic_bbref_match +9903,Luis Rengifo,10,rengilu01,1632,Luis Rengifo,rengilu01,automatic_bbref_match +9905,Luis Severino,10,severlu01,1805,Luis Severino,severlu01,automatic_bbref_match +9906,Luis Urias,10,uriaslu01,2039,Luis Urias,uriaslu01,automatic_bbref_match +9908,Luke Maile,10,mailelu01,1185,Luke Maile,mailelu01,automatic_bbref_match +9909,Luke Raley,10,raleylu01,1602,Luke Raley,raleylu01,automatic_bbref_match +9910,Luke Weaver,10,weavelu01,2124,Luke Weaver,weavelu01,automatic_bbref_match +9912,MacKenzie Gore,10,gorema01,754,MacKenzie Gore,gorema01,automatic_bbref_match +9913,Maikel Garcia,10,garcima01,691,Maikel Garcia,garcima01,automatic_bbref_match +9914,Manny Machado,10,machama01,1175,Manny Machado,machama01,automatic_bbref_match +9915,Manuel Margot,10,margoma01,1198,Manuel Margot,margoma01,automatic_bbref_match +9916,Marcell Ozuna,10,ozunama01,1481,Marcell Ozuna,ozunama01,automatic_bbref_match +9917,Marco Gonzales,10,gonzama02,735,Marco Gonzales,gonzama02,automatic_bbref_match +9918,Marcus Semien,10,semiema01,1799,Marcus Semien,semiema01,automatic_bbref_match +9919,Marcus Stroman,10,stromma01,1928,Marcus Stroman,stromma01,automatic_bbref_match +9920,Mark Canha,10,canhama01,316,Mark Canha,canhama01,automatic_bbref_match +9923,Mark Vientos,10,vientma01,2076,Mark Vientos,vientma01,automatic_bbref_match +9924,Martin Maldonado,10,maldoma01,1187,Martin Maldonado,maldoma01,automatic_bbref_match +9925,Martin Perez,10,perezma02,1535,Martin Perez,perezma02,automatic_bbref_match +9926,Masataka Yoshida,10,yoshima02,2216,Masataka Yoshida,yoshima02,automatic_bbref_match +9927,Mason Englert,10,englema01,575,Mason Englert,englema01,automatic_bbref_match +9928,Mason Miller,10,millema03,1329,Mason Miller,millema03,automatic_bbref_match +9930,Masyn Winn,10,winnma01,2180,Masyn Winn,winnma01,automatic_bbref_match +9934,Matt Carpenter,10,carpema01,329,Matt Carpenter,carpema01,automatic_bbref_match +9935,Matt Chapman,10,chapmma01,367,Matt Chapman,chapmma01,automatic_bbref_match +9937,Matt Koch,10,kochma01,1066,Matt Koch,kochma01,automatic_bbref_match +9938,Matt Manning,10,mannima02,1191,Matt Manning,mannima02,automatic_bbref_match +9940,Matt Olson,10,olsonma02,1461,Matt Olson,olsonma02,automatic_bbref_match +9941,Matt Strahm,10,strahma01,1918,Matt Strahm,strahma01,automatic_bbref_match +9942,Matt Thaiss,10,thaisma01,1975,Matt Thaiss,thaisma01,automatic_bbref_match +9943,Matt Vierling,10,vierlma01,2077,Matt Vierling,vierlma01,automatic_bbref_match +9944,Matt Wallner,10,wallnma01,2109,Matt Wallner,wallnma01,automatic_bbref_match +9945,Matthew Batten,10,battema01,147,Matthew Batten,battema01,automatic_bbref_match +9946,Matthew Liberatore,10,liberma01,1121,Matthew Liberatore,liberma01,automatic_bbref_match +9947,Mauricio Dubon,10,dubonma01,538,Mauricio Dubon,dubonma01,automatic_bbref_match +9949,Max Fried,10,friedma01,659,Max Fried,friedma01,automatic_bbref_match +9950,Max Kepler,10,keplema01,1031,Max Kepler,keplema01,automatic_bbref_match +9951,Max Muncy,10,muncyma01,1382,Max Muncy,muncyma01,automatic_bbref_match +9953,Merrill Kelly,10,kellyme01,1020,Merrill Kelly,kellyme01,automatic_bbref_match +9955,Michael Conforto,10,confomi01,407,Michael Conforto,confomi01,automatic_bbref_match +9957,Michael Grove,10,grovemi01,781,Michael Grove,grovemi01,automatic_bbref_match +9959,Michael King,10,kingmi01,1047,Michael King,kingmi01,automatic_bbref_match +9960,Michael Kopech,10,kopecmi01,1071,Michael Kopech,kopecmi01,automatic_bbref_match +9961,Michael Lorenzen,10,lorenmi01,1151,Michael Lorenzen,lorenmi01,automatic_bbref_match +9962,Michael Massey,10,massemi02,1231,Michael Massey,massemi02,automatic_bbref_match +9963,Michael Soroka,10,sorokmi01,1875,Michael Soroka,sorokmi01,automatic_bbref_match +9964,Michael A Taylor,10,taylomi02,1963,Michael Taylor,taylomi02,automatic_bbref_match +9965,Michael Toglia,10,toglimi01,1994,Michael Toglia,toglimi01,automatic_bbref_match +9966,Michael Tonkin,10,tonkimi01,1998,Michael Tonkin,tonkimi01,automatic_bbref_match +9967,Michael Wacha,10,wachami01,2093,Michael Wacha,wachami01,automatic_bbref_match +9968,Mickey Moniak,10,moniami01,1350,Mickey Moniak,moniami01,automatic_bbref_match +9969,Miguel Amaya,10,amayami01,64,Miguel Amaya,amayami01,automatic_bbref_match +9971,Miguel Castro,10,castrmi01,350,Miguel Castro,castrmi01,automatic_bbref_match +9972,Miguel Rojas,10,rojasmi02,1694,Miguel Rojas,rojasmi02,automatic_bbref_match +9973,Miguel Vargas,10,vargami01,2055,Miguel Vargas,vargami01,automatic_bbref_match +9974,Mike Baumann,10,baumami01,152,Mike Baumann,baumami01,automatic_bbref_match +9976,Mike Clevinger,10,clevimi01,392,Mike Clevinger,clevimi01,automatic_bbref_match +9977,Mike Ford,10,fordmi01,635,Mike Ford,fordmi01,automatic_bbref_match +9980,Mike Tauchman,10,tauchmi01,1961,Mike Tauchman,tauchmi01,automatic_bbref_match +9981,Mike Trout,10,troutmi01,2019,Mike Trout,troutmi01,automatic_bbref_match +9982,Mike Yastrzemski,10,yastrmi01,2210,Mike Yastrzemski,yastrmi01,automatic_bbref_match +9983,Miles Mikolas,10,mikolmi01,1317,Miles Mikolas,mikolmi01,automatic_bbref_match +9984,Mitch Garver,10,garvemi01,702,Mitch Garver,garvemi01,automatic_bbref_match +9985,Mitch Haniger,10,hanigmi01,818,Mitch Haniger,hanigmi01,automatic_bbref_match +9986,Mitch Keller,10,kellemi03,1017,Mitch Keller,kellemi03,automatic_bbref_match +9987,MJ Melendez,10,melenmj01,1299,MJ Melendez,melenmj01,automatic_bbref_match +9988,Mookie Betts,10,bettsmo01,187,Mookie Betts,bettsmo01,automatic_bbref_match +9990,Nate Pearson,10,pearsna01,1513,Nate Pearson,pearsna01,automatic_bbref_match +9991,Nathan Eovaldi,10,eovalna01,576,Nathan Eovaldi,eovalna01,automatic_bbref_match +9992,Nathaniel Lowe,10,lowena01,1155,Nathaniel Lowe,lowena01,automatic_bbref_match +9993,Nelson Velazquez,10,velazne01,2068,Nelson Velazquez,velazne01,automatic_bbref_match +9994,Nick Ahmed,10,ahmedni01,26,Nick Ahmed,ahmedni01,automatic_bbref_match +9995,Nick Allen,10,allenni02,46,Nick Allen,allenni02,automatic_bbref_match +9996,Nick Anderson,10,anderni01,71,Nick Anderson,anderni01,automatic_bbref_match +9997,Nicholas Castellanos,10,casteni01,340,Nicholas Castellanos,casteni01,automatic_bbref_match +9998,Nick Fortes,10,forteni01,637,Nick Fortes,forteni01,automatic_bbref_match +9999,Nick Lodolo,10,lodolni01,1135,Nick Lodolo,lodolni01,automatic_bbref_match +10000,Nick Madrigal,10,madrini01,1178,Nick Madrigal,madrini01,automatic_bbref_match +10001,Nick Martinez,10,martini01,1224,Nick Martinez,martini01,automatic_bbref_match +10003,Nick Pivetta,10,pivetni01,1564,Nick Pivetta,pivetni01,automatic_bbref_match +10005,Nick Ramirez,10,ramirni01,1605,Nick Ramirez,ramirni01,automatic_bbref_match +10006,Nick Sandlin,10,sandlni01,1752,Nick Sandlin,sandlni01,automatic_bbref_match +10007,Nick Senzel,10,senzeni01,1802,Nick Senzel,senzeni01,automatic_bbref_match +10009,Nicky Lopez,10,lopezni01,1149,Nicky Lopez,lopezni01,automatic_bbref_match +10010,Nico Hoerner,10,hoernni01,909,Nico Hoerner,hoernni01,automatic_bbref_match +10012,Nolan Arenado,10,arenano01,88,Nolan Arenado,arenano01,automatic_bbref_match +10013,Nolan Gorman,10,gormano01,755,Nolan Gorman,gormano01,automatic_bbref_match +10014,Nolan Jones,10,jonesno01,994,Nolan Jones,jonesno01,automatic_bbref_match +10015,Nolan Schanuel,10,schanno01,1771,Nolan Schanuel,schanno01,automatic_bbref_match +10016,Omar Narvaez,10,narvaom01,1401,Omar Narvaez,narvaom01,automatic_bbref_match +10017,Orlando Arcia,10,arciaor01,86,Orlando Arcia,arciaor01,automatic_bbref_match +10018,Oscar Colas,10,colasos01,396,Oscar Colas,colasos01,automatic_bbref_match +10019,Osvaldo Bido,10,bidoos01,193,Osvaldo Bido,bidoos01,automatic_bbref_match +10021,Oswaldo Cabrera,10,cabreos01,303,Oswaldo Cabrera,cabreos01,automatic_bbref_match +10022,Owen Miller,10,milleow01,1327,Owen Miller,milleow01,automatic_bbref_match +10023,Ozzie Albies,10,albieoz01,31,Ozzie Albies,albieoz01,automatic_bbref_match +10024,Pablo Lopez,10,lopezpa01,1146,Pablo Lopez,lopezpa01,automatic_bbref_match +10025,Pablo Reyes,10,reyespa01,1637,Pablo Reyes,reyespa01,automatic_bbref_match +10026,Parker Meadows,10,meadopa01,1291,Parker Meadows,meadopa01,automatic_bbref_match +10027,Patrick Bailey,10,bailepa01,115,Patrick Bailey,bailepa01,automatic_bbref_match +10028,Patrick Corbin,10,corbipa01,416,Patrick Corbin,corbipa01,automatic_bbref_match +10029,Patrick Sandoval,10,sandopa02,1754,Patrick Sandoval,sandopa02,automatic_bbref_match +10030,Patrick Wisdom,10,wisdopa01,2181,Patrick Wisdom,wisdopa01,automatic_bbref_match +10031,Paul Blackburn,10,blackpa01,204,Paul Blackburn,blackpa01,automatic_bbref_match +10032,Paul Goldschmidt,10,goldspa01,729,Paul Goldschmidt,goldspa01,automatic_bbref_match +10033,Paul Sewald,10,sewalpa01,1806,Paul Sewald,sewalpa01,automatic_bbref_match +10034,Pavin Smith,10,smithpa04,1851,Pavin Smith,smithpa04,automatic_bbref_match +10035,Pedro Avila,10,avilape01,105,Pedro Avila,avilape01,automatic_bbref_match +10036,Pete Alonso,10,alonspe01,53,Pete Alonso,alonspe01,automatic_bbref_match +10037,Pete Fairbanks,10,fairbpe01,592,Pete Fairbanks,fairbpe01,automatic_bbref_match +10038,Peter Lambert,10,lambepe01,1088,Peter Lambert,lambepe01,automatic_bbref_match +10041,Phil Maton,10,matonph01,1238,Phil Maton,matonph01,automatic_bbref_match +10042,Pierce Johnson,10,johnspi01,985,Pierce Johnson,johnspi01,automatic_bbref_match +10043,Quinn Priester,10,priesqu01,1586,Quinn Priester,priesqu01,automatic_bbref_match +10044,Rafael Devers,10,deverra01,499,Rafael Devers,deverra01,automatic_bbref_match +10045,Rafael Montero,10,montera01,1352,Rafael Montero,montera01,automatic_bbref_match +10046,Rafael Ortega,10,ortegra01,1465,Rafael Ortega,ortegra01,automatic_bbref_match +10047,Raisel Iglesias,10,iglesra01,950,Raisel Iglesias,iglesra01,automatic_bbref_match +10048,Ramon Laureano,10,laurera01,1097,Ramon Laureano,laurera01,automatic_bbref_match +10049,Ramon Urias,10,uriasra01,2037,Ramon Urias,uriasra01,automatic_bbref_match +10050,Randal Grichuk,10,grichra01,775,Randal Grichuk,grichra01,automatic_bbref_match +10051,Randy Arozarena,10,arozara01,92,Randy Arozarena,arozara01,automatic_bbref_match +10052,Ranger Suarez,10,suarera01,1936,Ranger Suarez,suarera01,automatic_bbref_match +10053,Ray Kerr,10,kerrra01,1033,Ray Kerr,kerrra01,automatic_bbref_match +10054,Reese McGuire,10,mcguire01,1277,Reese McGuire,mcguire01,automatic_bbref_match +10055,Reese Olson,10,olsonre01,1462,Reese Olson,olsonre01,automatic_bbref_match +10056,Reid Detmers,10,detmere01,496,Reid Detmers,detmere01,automatic_bbref_match +10057,Reynaldo Lopez,10,lopezre01,1145,Reynaldo Lopez,lopezre01,automatic_bbref_match +10060,Richard Lovelady,10,lovelri01,1153,Richard Lovelady,lovelri01,automatic_bbref_match +10061,Richie Palacios,10,palacri01,1488,Richie Palacios,palacri01,automatic_bbref_match +10062,Riley Adams,10,adamsri03,17,Riley Adams,adamsri03,automatic_bbref_match +10063,Riley Greene,10,greenri03,771,Riley Greene,greenri03,automatic_bbref_match +10064,Roansy Contreras,10,contrro01,412,Roansy Contreras,contrro01,automatic_bbref_match +10065,Rob Refsnyder,10,refsnro01,1626,Rob Refsnyder,refsnro01,automatic_bbref_match +10067,Robbie Grossman,10,grossro01,779,Robbie Grossman,grossro01,automatic_bbref_match +10068,Robert Garcia,10,garciro04,692,Robert Garcia,garciro04,automatic_bbref_match +10070,Robert Suarez,10,suarero01,1938,Robert Suarez,suarero01,automatic_bbref_match +10072,Ron Marinaccio,10,marinro01,1199,Ron Marinaccio,marinro01,automatic_bbref_match +10073,Ronald Acuna Jr,10,acunaro01,12,Ronald Acuna Jr,acunaro01,automatic_bbref_match +10075,Ross Stripling,10,stripro01,1927,Ross Stripling,stripro01,automatic_bbref_match +10076,Rowdy Tellez,10,tellero01,1972,Rowdy Tellez,tellero01,automatic_bbref_match +10077,Royce Lewis,10,lewisro02,1119,Royce Lewis,lewisro02,automatic_bbref_match +10078,Ryan Borucki,10,borucry01,222,Ryan Borucki,borucry01,automatic_bbref_match +10079,Ryan Brasier,10,brasiry01,242,Ryan Brasier,brasiry01,automatic_bbref_match +10080,Ryan Feltner,10,feltnry01,603,Ryan Feltner,feltnry01,automatic_bbref_match +10081,Ryan Helsley,10,helslry01,853,Ryan Helsley,helslry01,automatic_bbref_match +10082,Ryan Jeffers,10,jeffery01,975,Ryan Jeffers,jeffery01,automatic_bbref_match +10083,Ryan McKenna,10,mckenry01,1281,Ryan McKenna,mckenry01,automatic_bbref_match +10084,Ryan McMahon,10,mcmahry01,1286,Ryan McMahon,mcmahry01,automatic_bbref_match +10085,Ryan Mountcastle,10,mountry01,1377,Ryan Mountcastle,mountry01,automatic_bbref_match +10086,Ryan Noda,10,nodary01,1427,Ryan Noda,nodary01,automatic_bbref_match +10088,Ryan Pepiot,10,pepiory01,1521,Ryan Pepiot,pepiory01,automatic_bbref_match +10089,Ryan Pressly,10,pressry01,1584,Ryan Pressly,pressry01,automatic_bbref_match +10090,Ryan Walker,10,walkery01,2106,Ryan Walker,walkery01,automatic_bbref_match +10091,Ryan Yarbrough,10,yarbrry01,2208,Ryan Yarbrough,yarbrry01,automatic_bbref_match +10092,Ryne Nelson,10,nelsory01,1411,Ryne Nelson,nelsory01,automatic_bbref_match +10093,Ryne Stanek,10,stanery01,1892,Ryne Stanek,stanery01,automatic_bbref_match +10094,Sal Frelick,10,frelisa01,657,Sal Frelick,frelisa01,automatic_bbref_match +10095,Salvador Perez,10,perezsa02,1534,Salvador Perez,perezsa02,automatic_bbref_match +10096,Sam Haggerty,10,haggesa01,803,Sam Haggerty,haggesa01,automatic_bbref_match +10099,Sam Long,10,longsa01,1139,Sam Long,longsa01,automatic_bbref_match +10100,Sam Moll,10,mollsa01,1346,Sam Moll,mollsa01,automatic_bbref_match +10103,Santiago Espinal,10,espinsa01,582,Santiago Espinal,espinsa01,automatic_bbref_match +10104,Scott Alexander,10,alexasc02,36,Scott Alexander,alexasc02,automatic_bbref_match +10105,Scott Barlow,10,barlosc01,128,Scott Barlow,barlosc01,automatic_bbref_match +10106,Scott McGough,10,mcgousc01,1275,Scott McGough,mcgousc01,automatic_bbref_match +10107,Sean Manaea,10,manaese01,1189,Sean Manaea,manaese01,automatic_bbref_match +10108,Sean Murphy,10,murphse01,1390,Sean Murphy,murphse01,automatic_bbref_match +10109,Seby Zavala,10,zavalse01,2223,Seby Zavala,zavalse01,automatic_bbref_match +10110,Seiya Suzuki,10,suzukse01,1946,Seiya Suzuki,suzukse01,automatic_bbref_match +10111,Seranthony Dominguez,10,dominse01,524,Seranthony Dominguez,dominse01,automatic_bbref_match +10112,Seth Brown,10,brownse01,265,Seth Brown,brownse01,automatic_bbref_match +10113,Seth Lugo,10,lugose01,1165,Seth Lugo,lugose01,automatic_bbref_match +10114,Seth Martinez,10,martise01,1226,Seth Martinez,martise01,automatic_bbref_match +10115,Shane Bieber,10,biebesh01,194,Shane Bieber,biebesh01,automatic_bbref_match +10117,Shawn Armstrong,10,armstsh01,91,Shawn Armstrong,armstsh01,automatic_bbref_match +10118,Shea Langeliers,10,langesh01,1092,Shea Langeliers,langesh01,automatic_bbref_match +10119,Shelby Miller,10,millesh01,1323,Shelby Miller,millesh01,automatic_bbref_match +10121,Shohei Ohtani,10,ohtansh01,1455,Shohei Ohtani,ohtansh01,automatic_bbref_match +10122,Slade Cecconi,10,ceccosl01,356,Slade Cecconi,ceccosl01,automatic_bbref_match +10123,Spencer Steer,10,steersp01,1900,Spencer Steer,steersp01,automatic_bbref_match +10124,Spencer Strider,10,stridsp01,1926,Spencer Strider,stridsp01,automatic_bbref_match +10125,Spencer Torkelson,10,torkesp01,2000,Spencer Torkelson,torkesp01,automatic_bbref_match +10126,Starling Marte,10,martest01,1208,Starling Marte,martest01,automatic_bbref_match +10128,Steven Kwan,10,kwanst01,1080,Steven Kwan,kwanst01,automatic_bbref_match +10129,Steven Matz,10,matzst01,1243,Steven Matz,matzst01,automatic_bbref_match +10130,Steven Okert,10,okertst01,1456,Steven Okert,okertst01,automatic_bbref_match +10131,Steven Wilson,10,wilsost02,2169,Steven Wilson,wilsost02,automatic_bbref_match +10133,Stuart Fairchild,10,faircst01,593,Stuart Fairchild,faircst01,automatic_bbref_match +10134,Taijuan Walker,10,walketa01,2105,Taijuan Walker,walketa01,automatic_bbref_match +10135,Taj Bradley,10,bradlta01,238,Taj Bradley,bradlta01,automatic_bbref_match +10136,Tanner Banks,10,banksta01,122,Tanner Banks,banksta01,automatic_bbref_match +10137,Tanner Bibee,10,bibeeta01,189,Tanner Bibee,bibeeta01,automatic_bbref_match +10138,Tanner Houck,10,houckta01,927,Tanner Houck,houckta01,automatic_bbref_match +10139,Tanner Scott,10,scottta01,1788,Tanner Scott,scottta01,automatic_bbref_match +10140,Tarik Skubal,10,skubata01,1836,Tarik Skubal,skubata01,automatic_bbref_match +10141,Tayler Saucedo,10,sauceta01,1768,Tayler Saucedo,sauceta01,automatic_bbref_match +10143,Taylor Rogers,10,rogerta01,1689,Taylor Rogers,rogerta01,automatic_bbref_match +10145,Taylor Ward,10,wardta01,2116,Taylor Ward,wardta01,automatic_bbref_match +10146,Teoscar Hernandez,10,hernate01,873,Teoscar Hernandez,hernate01,automatic_bbref_match +10148,Thairo Estrada,10,estrath01,587,Thairo Estrada,estrath01,automatic_bbref_match +10149,Tim Anderson,10,anderti01,73,Tim Anderson,anderti01,automatic_bbref_match +10150,Tim Hill,10,hillti01,900,Tim Hill,hillti01,automatic_bbref_match +10151,Tim Mayza,10,mayzati01,1253,Tim Mayza,mayzati01,automatic_bbref_match +10152,TJ Friedl,10,friedtj01,660,TJ Friedl,friedtj01,automatic_bbref_match +10153,Tom Cosgrove,10,cosgrto01,422,Tom Cosgrove,cosgrto01,automatic_bbref_match +10154,Tom Murphy,10,murphto04,1388,Tom Murphy,murphto04,automatic_bbref_match +10156,Tommy Henry,10,henryto01,859,Tommy Henry,henryto01,automatic_bbref_match +10158,Tommy Kahnle,10,kahnlto01,1006,Tommy Kahnle,kahnlto01,automatic_bbref_match +10159,Tommy Pham,10,phamth01,1552,Tommy Pham,phamth01,automatic_bbref_match +10161,Tony Kemp,10,kempto01,1027,Tony Kemp,kempto01,automatic_bbref_match +10164,Travis Jankowski,10,jankotr01,967,Travis Jankowski,jankotr01,automatic_bbref_match +10165,Trea Turner,10,turnetr01,1,Trea Turner,turnetr01,automatic_bbref_match +10166,Trent Grisham,10,grishtr01,776,Trent Grisham,grishtr01,automatic_bbref_match +10167,Trent Thornton,10,thorntr01,1988,Trent Thornton,thorntr01,automatic_bbref_match +10171,Trevor Megill,10,megiltr01,1294,Trevor Megill,megiltr01,automatic_bbref_match +10172,Trevor Richards,10,richatr01,1646,Trevor Richards,richatr01,automatic_bbref_match +10173,Trevor Story,10,storytr01,1914,Trevor Story,storytr01,automatic_bbref_match +10174,Trevor Williams,10,willitr01,2156,Trevor Williams,willitr01,automatic_bbref_match +10177,Triston Casas,10,casastr01,335,Triston Casas,casastr01,automatic_bbref_match +10180,Ty Blach,10,blachty01,202,Ty Blach,blachty01,automatic_bbref_match +10181,Ty France,10,francty01,642,Ty France,francty01,automatic_bbref_match +10182,Tyler Alexander,10,alexaty01,37,Tyler Alexander,alexaty01,automatic_bbref_match +10183,Tyler Anderson,10,anderty01,68,Tyler Anderson,anderty01,automatic_bbref_match +10184,Tyler Freeman,10,freemty01,654,Tyler Freeman,freemty01,automatic_bbref_match +10185,Tyler Glasnow,10,glasnty01,726,Tyler Glasnow,glasnty01,automatic_bbref_match +10186,Tyler Holton,10,holtoty01,922,Tyler Holton,holtoty01,automatic_bbref_match +10187,Tyler Nevin,10,nevinty01,1417,Tyler Nevin,nevinty01,automatic_bbref_match +10189,Tyler Rogers,10,rogerty01,1691,Tyler Rogers,rogerty01,automatic_bbref_match +10190,Tyler Soderstrom,10,soderty01,1864,Tyler Soderstrom,soderty01,automatic_bbref_match +10191,Tyler Stephenson,10,stephty01,1905,Tyler Stephenson,stephty01,automatic_bbref_match +10192,Tyler Wells,10,wellsty01,2132,Tyler Wells,wellsty01,automatic_bbref_match +10193,Tylor Megill,10,megilty01,1295,Tylor Megill,megilty01,automatic_bbref_match +10194,Tyrone Taylor,10,tayloty01,1965,Tyrone Taylor,tayloty01,automatic_bbref_match +10195,Vaughn Grissom,10,grissva01,777,Vaughn Grissom,grissva01,automatic_bbref_match +10196,Victor Caratini,10,caratvi01,325,Victor Caratini,caratvi01,automatic_bbref_match +10198,Vinnie Pasquantino,10,pasquvi01,1503,Vinnie Pasquantino,pasquvi01,automatic_bbref_match +10199,Vladimir Guerrero Jr,10,guerrvl02,789,Vladimir Guerrero Jr,guerrvl02,automatic_bbref_match +10200,Wade Miley,10,mileywa01,1318,Wade Miley,mileywa01,automatic_bbref_match +10202,Wandy Peralta,10,peralwa01,1524,Wandy Peralta,peralwa01,automatic_bbref_match +10203,Whit Merrifield,10,merriwh01,1309,Whit Merrifield,merriwh01,automatic_bbref_match +10204,Will Benson,10,bensowi01,179,Will Benson,bensowi01,automatic_bbref_match +10205,Will Brennan,10,brennwi02,250,Will Brennan,brennwi02,automatic_bbref_match +10207,Will Smith,10,smithwi05,1841,Will Smith,smithwi05,automatic_bbref_match +10208,Will Vest,10,vestwi01,2074,Will Vest,vestwi01,automatic_bbref_match +10209,Willi Castro,10,castrwi01,352,Willi Castro,castrwi01,automatic_bbref_match +10210,William Contreras,10,contrwi02,411,William Contreras,contrwi02,automatic_bbref_match +10211,Willson Contreras,10,contrwi01,410,Willson Contreras,contrwi01,automatic_bbref_match +10212,Willy Adames,10,adamewi01,14,Willy Adames,adamewi01,automatic_bbref_match +10213,Wilmer Flores,10,florewi01,627,Wilmer Flores,florewi01,automatic_bbref_match +10214,Wilyer Abreu,10,abreuwi02,10,Wilyer Abreu,abreuwi02,automatic_bbref_match +10215,Xander Bogaerts,10,bogaexa01,216,Xander Bogaerts,bogaexa01,automatic_bbref_match +10217,Xzavion Curry,10,curryxz01,454,Xzavion Curry,curryxz01,automatic_bbref_match +10218,Yainer Diaz,10,diazya02,511,Yainer Diaz,diazya02,automatic_bbref_match +10219,Yan Gomes,10,gomesya01,731,Yan Gomes,gomesya01,automatic_bbref_match +10220,Yandy Diaz,10,diazya01,507,Yandy Diaz,diazya01,automatic_bbref_match +10221,Yasmani Grandal,10,grandya01,761,Yasmani Grandal,grandya01,automatic_bbref_match +10222,Yency Almonte,10,almonye01,50,Yency Almonte,almonye01,automatic_bbref_match +10223,Yennier Cano,10,canoye01,320,Yennier Cano,canoye01,automatic_bbref_match +10224,Yimi Garcia,10,garciyi01,680,Yimi Garcia,garciyi01,automatic_bbref_match +10225,Yoan Moncada,10,moncayo01,1348,Yoan Moncada,moncayo01,automatic_bbref_match +10226,Yordan Alvarez,10,alvaryo01,61,Yordan Alvarez,alvaryo01,automatic_bbref_match +10228,Yu Darvish,10,darviyu01,462,Yu Darvish,darviyu01,automatic_bbref_match +10230,Yunior Marte,10,marteyu01,1211,Yunior Marte,marteyu01,automatic_bbref_match +10231,Yusei Kikuchi,10,kikucyu01,1040,Yusei Kikuchi,kikucyu01,automatic_bbref_match +10232,Zac Gallen,10,galleza01,673,Zac Gallen,galleza01,automatic_bbref_match +10234,Zach Eflin,10,eflinza01,562,Zach Eflin,eflinza01,automatic_bbref_match +10235,Zach McKinstry,10,mckinza01,1284,Zach McKinstry,mckinza01,automatic_bbref_match +10237,Zach Neto,10,netoza01,1414,Zach Neto,netoza01,automatic_bbref_match +10239,Zach Remillard,10,remilza01,1629,Zach Remillard,remilza01,automatic_bbref_match +10240,Zack Gelof,10,gelofza01,709,Zack Gelof,gelofza01,automatic_bbref_match +10242,Zack Littell,10,litteza01,1127,Zack Littell,litteza01,automatic_bbref_match +10243,Zack Short,10,shortza01,1818,Zack Short,shortza01,automatic_bbref_match +10244,Zack Thompson,10,thompza02,1985,Zack Thompson,thompza02,automatic_bbref_match +10245,Zack Wheeler,10,wheelza01,2139,Zack Wheeler,wheelza01,automatic_bbref_match +10250,Alika Williams,10,willial04,2161,Alika Williams,willial04,automatic_bbref_match +10251,Amir Garrett,10,garream01,698,Amir Garrett,garream01,automatic_bbref_match +10257,Anthony Rendon,10,rendoan01,1630,Anthony Rendon,rendoan01,automatic_bbref_match +10258,Austin Hedges,10,hedgeau01,848,Austin Hedges,hedgeau01,automatic_bbref_match +10260,Avisail Garcia,10,garciav01,678,Avisail Garcia,garciav01,automatic_bbref_match +10261,Ben Rortvedt,10,rortvbe01,1709,Ben Rortvedt,rortvbe01,automatic_bbref_match +10263,Blake Perkins,10,perkibl01,1543,Blake Perkins,perkibl01,automatic_bbref_match +10264,Bowden Francis,10,francbo01,644,Bowden Francis,francbo01,automatic_bbref_match +10268,Brayan Rocchio,10,rocchbr01,1667,Brayan Rocchio,rocchbr01,automatic_bbref_match +10271,Brett Sullivan,10,sullibr01,1941,Brett Sullivan,sullibr01,automatic_bbref_match +10272,Brett Wisely,10,wiselbr01,2182,Brett Wisely,wiselbr01,automatic_bbref_match +10273,Bryce Jarvis,10,jarvibr01,970,Bryce Jarvis,jarvibr01,automatic_bbref_match +10274,Bubba Thompson,10,thompbu01,1986,Bubba Thompson,thompbu01,automatic_bbref_match +10275,Calvin Faucher,10,fauchca01,599,Calvin Faucher,fauchca01,automatic_bbref_match +10279,Chris Devenski,10,devench02,498,Chris Devenski,devench02,automatic_bbref_match +10282,Cody Bradford,10,bradfco01,233,Cody Bradford,bradfco01,automatic_bbref_match +10283,Colin Selby,10,selbyco01,1797,Colin Selby,selbyco01,automatic_bbref_match +10284,Collin Snider,10,snideco01,1862,Collin Snider,snideco01,automatic_bbref_match +10285,Conner Capel,10,capelco01,323,Conner Capel,capelco01,automatic_bbref_match +10286,Connor Brogdon,10,brogdco01,261,Connor Brogdon,brogdco01,automatic_bbref_match +10287,Cooper Criswell,10,criswco01,438,Cooper Criswell,criswco01,automatic_bbref_match +10290,Curtis Mead,10,meadcu01,1289,Curtis Mead,meadcu01,automatic_bbref_match +10292,Dane Myers,10,myersda01,1396,Dane Myers,myersda01,automatic_bbref_match +10293,Danny Mendick,10,mendida01,1302,Danny Mendick,mendida01,automatic_bbref_match +10295,Dinelson Lamet,10,lametdi01,1090,Dinelson Lamet,lametdi01,automatic_bbref_match +10296,Dominic Canzone,10,canzodo01,322,Dominic Canzone,canzodo01,automatic_bbref_match +10297,Dominic Leone,10,leonedo01,1116,Dominic Leone,leonedo01,automatic_bbref_match +10301,Erasmo Ramirez,10,ramirer02,1604,Erasmo Ramirez,ramirer02,automatic_bbref_match +10307,Grant Anderson,10,andergr01,75,Grant Anderson,andergr01,automatic_bbref_match +10310,Hunter Gaddis,10,gaddihu01,669,Hunter Gaddis,gaddihu01,automatic_bbref_match +10311,Hunter Goodman,10,goodmhu01,747,Hunter Goodman,goodmhu01,automatic_bbref_match +10315,Jared Walsh,10,walshja01,2111,Jared Walsh,walshja01,automatic_bbref_match +10316,Jay Jackson,10,jacksja01,959,Jay Jackson,jacksja01,automatic_bbref_match +10317,Jesse Chavez,10,chaveje01,370,Jesse Chavez,chaveje01,automatic_bbref_match +10319,Jhoan Duran,10,duranjh01,550,Jhoan Duran,duranjh01,automatic_bbref_match +10322,Joey Bart,10,bartjo01,142,Joey Bart,bartjo01,automatic_bbref_match +10324,Jon Singleton,10,singljo02,1828,Jon Singleton,singljo02,automatic_bbref_match +10325,Jonathan Aranda,10,arandjo01,82,Jonathan Aranda,arandjo01,automatic_bbref_match +10329,Jorge Lopez,10,lopezjo02,1144,Jorge Lopez,lopezjo02,automatic_bbref_match +10330,Jorge Polanco,10,polanjo01,1570,Jorge Polanco,polanjo01,automatic_bbref_match +10331,Jose Miranda,10,miranjo01,1337,Jose Miranda,miranjo01,automatic_bbref_match +10333,Josh Fleming,10,flemijo01,623,Josh Fleming,flemijo01,automatic_bbref_match +10339,Keaton Winn,10,winnke01,2179,Keaton Winn,winnke01,automatic_bbref_match +10340,Keegan Akin,10,akinke01,27,Keegan Akin,akinke01,automatic_bbref_match +10341,Keegan Thompson,10,thompke02,1982,Keegan Thompson,thompke02,automatic_bbref_match +10344,Kevin Herget,10,hergeke01,864,Kevin Herget,hergeke01,automatic_bbref_match +10345,Kevin Smith,10,smithke05,1854,Kevin Smith,smithke05,automatic_bbref_match +10346,Kody Clemens,10,clemeko01,390,Kody Clemens,clemeko01,automatic_bbref_match +10347,Kyle Farmer,10,farmeky01,598,Kyle Farmer,farmeky01,automatic_bbref_match +10348,Kyle Harrison,10,harriky01,830,Kyle Harrison,harriky01,automatic_bbref_match +10350,Luke Jackson,10,jackslu01,960,Luke Jackson,jackslu01,automatic_bbref_match +10352,Matt Barnes,10,barnema01,131,Matt Barnes,barnema01,automatic_bbref_match +10353,Matt Carasiti,10,carasma01,324,Matt Carasiti,carasma01,automatic_bbref_match +10354,Matt Mervis,10,mervima01,1312,Matt Mervis,mervima01,automatic_bbref_match +10355,Matt Moore,10,moorema02,1357,Matt Moore,moorema02,automatic_bbref_match +10356,Matt Waldron,10,waldrma01,2102,Matt Waldron,waldrma01,automatic_bbref_match +10358,Michael Busch,10,buschmi02,288,Michael Busch,buschmi02,automatic_bbref_match +10361,Miguel Andujar,10,andujmi01,78,Miguel Andujar,andujmi01,automatic_bbref_match +10363,Miles Mastrobuoni,10,mastrmi01,1232,Miles Mastrobuoni,mastrmi01,automatic_bbref_match +10365,Nestor Cortes Jr,10,cortene01,421,Nestor Cortes Jr,cortene01,automatic_bbref_match +10366,Nick Gonzales,10,gonzani01,736,Nick Gonzales,gonzani01,automatic_bbref_match +10367,Nick Gordon,10,gordoni01,752,Nick Gordon,gordoni01,automatic_bbref_match +10368,Nick Loftin,10,loftini01,1136,Nick Loftin,loftini01,automatic_bbref_match +10369,Noah Davis,10,davisno01,472,Noah Davis,davisno01,automatic_bbref_match +10373,Paul DeJong,10,dejonpa01,485,Paul DeJong,dejonpa01,automatic_bbref_match +10374,Peter Strzelecki,10,strzepe01,1930,Peter Strzelecki,strzepe01,automatic_bbref_match +10376,Randy Vasquez,10,vasqura02,2060,Randy Vasquez,vasqura02,automatic_bbref_match +10377,Rene Pinto,10,pintore02,1561,Rene Pinto,pintore02,automatic_bbref_match +10378,Romy Gonzalez,10,gonzaro01,745,Romy Gonzalez,gonzaro01,automatic_bbref_match +10379,Ronel Blanco,10,blancro01,208,Ronel Blanco,blancro01,automatic_bbref_match +10381,Ryan Thompson,10,thompry02,1983,Ryan Thompson,thompry02,automatic_bbref_match +10382,Ryan Weathers,10,weathry01,2123,Ryan Weathers,weathry01,automatic_bbref_match +10383,Samad Taylor,10,taylosa04,1969,Samad Taylor,taylosa04,automatic_bbref_match +10384,Sean Hjelle,10,hjellse01,906,Sean Hjelle,hjellse01,automatic_bbref_match +10385,Sonny Gray,10,grayso01,765,Sonny Gray,grayso01,automatic_bbref_match +10386,Spencer Turnbull,10,turnbsp01,2028,Spencer Turnbull,turnbsp01,automatic_bbref_match +10389,Tim Herrin,10,herriti01,886,Tim Herrin,herriti01,automatic_bbref_match +10392,Trevor Larnach,10,larnatr01,1094,Trevor Larnach,larnatr01,automatic_bbref_match +10393,Tucker Barnhart,10,barnhtu01,135,Tucker Barnhart,barnhtu01,automatic_bbref_match +10395,Victor Gonzalez,10,gonzavi02,743,Victor Gonzalez,gonzavi02,automatic_bbref_match +10396,Victor Robles,10,roblevi01,1666,Victor Robles,roblevi01,automatic_bbref_match +10397,Vidal Brujan,10,brujavi01,272,Vidal Brujan,brujavi01,automatic_bbref_match +10399,Willie Calhoun,10,calhowi01,307,Willie Calhoun,calhowi01,automatic_bbref_match +10401,Yohan Ramirez,10,ramiryo01,1611,Yohan Ramirez,ramiryo01,automatic_bbref_match +10403,Aaron Bummer,11,bummeaa01,279,Aaron Bummer,bummeaa01,automatic_bbref_match +10404,Aaron Civale,11,civalaa01,383,Aaron Civale,civalaa01,automatic_bbref_match +10405,Aaron Hicks,11,hicksaa01,892,Aaron Hicks,hicksaa01,automatic_bbref_match +10406,Aaron Judge,11,judgeaa01,3,Aaron Judge,judgeaa01,automatic_bbref_match +10408,Aaron Nola,11,nolaaa01,1433,Aaron Nola,nolaaa01,automatic_bbref_match +10409,Abner Uribe,11,uribeab01,2040,Abner Uribe,uribeab01,automatic_bbref_match +10410,Adam Duvall,11,duvalad01,553,Adam Duvall,duvalad01,automatic_bbref_match +10411,Adam Frazier,11,fraziad01,648,Adam Frazier,fraziad01,automatic_bbref_match +10412,Adam Ottavino,11,ottavad01,1475,Adam Ottavino,ottavad01,automatic_bbref_match +10414,Adbert Alzolay,11,alzolad01,63,Adbert Alzolay,alzolad01,automatic_bbref_match +10415,Adley Rutschman,11,rutscad01,1729,Adley Rutschman,rutscad01,automatic_bbref_match +10416,Adolis Garcia,11,garciad02,690,Adolis Garcia,garciad02,automatic_bbref_match +10417,Adrian Houser,11,housead01,928,Adrian Houser,housead01,automatic_bbref_match +10419,AJ Minter,11,minteaj01,1336,AJ Minter,minteaj01,automatic_bbref_match +10420,AJ Puk,11,pukaj01,1592,AJ Puk,pukaj01,automatic_bbref_match +10421,Akil Baddoo,11,baddoak01,109,Akil Baddoo,baddoak01,automatic_bbref_match +10422,Alan Trejo,11,trejoal01,2012,Alan Trejo,trejoal01,automatic_bbref_match +10424,Alec Bohm,11,bohmal01,217,Alec Bohm,bohmal01,automatic_bbref_match +10425,Alec Burleson,11,burleal01,285,Alec Burleson,burleal01,automatic_bbref_match +10426,Alec Marsh,11,marshal01,1206,Alec Marsh,marshal01,automatic_bbref_match +10428,Alejandro Kirk,11,kirkal01,1056,Alejandro Kirk,kirkal01,automatic_bbref_match +10429,Alek Manoah,11,manoaal01,1192,Alek Manoah,manoaal01,automatic_bbref_match +10430,Alek Thomas,11,thomaal01,1979,Alek Thomas,thomaal01,automatic_bbref_match +10431,Alex Bregman,11,bregmal01,248,Alex Bregman,bregmal01,automatic_bbref_match +10432,Alex Call,11,callal02,308,Alex Call,callal02,automatic_bbref_match +10434,Alex Faedo,11,faedoal01,591,Alex Faedo,faedoal01,automatic_bbref_match +10435,Alex Kirilloff,11,kirilal01,1055,Alex Kirilloff,kirilal01,automatic_bbref_match +10436,Alex Lange,11,langeal01,1091,Alex Lange,langeal01,automatic_bbref_match +10437,Alex Verdugo,11,verdual01,2069,Alex Verdugo,verdual01,automatic_bbref_match +10438,Alex Vesia,11,vesiaal01,2072,Alex Vesia,vesiaal01,automatic_bbref_match +10439,Alex Wood,11,woodal02,2193,Alex Wood,woodal02,automatic_bbref_match +10441,Alexis Diaz,11,diazal03,509,Alexis Diaz,diazal03,automatic_bbref_match +10442,Allan Winans,11,winanal01,2173,Allan Winans,winanal01,automatic_bbref_match +10443,Amed Rosario,11,rosaram01,1711,Amed Rosario,rosaram01,automatic_bbref_match +10445,Andre Pallante,11,pallaan01,1492,Andre Pallante,pallaan01,automatic_bbref_match +10446,Andres Gimenez,11,gimenan01,721,Andres Gimenez,gimenan01,automatic_bbref_match +10448,Andres Munoz,11,munozan01,1384,Andres Munoz,munozan01,automatic_bbref_match +10449,Andrew Abbott,11,abbotan01,4,Andrew Abbott,abbotan01,automatic_bbref_match +10450,Andrew Benintendi,11,beninan01,177,Andrew Benintendi,beninan01,automatic_bbref_match +10451,Andrew Chafin,11,chafian01,363,Andrew Chafin,chafian01,automatic_bbref_match +10452,Andrew Heaney,11,heanean01,843,Andrew Heaney,heanean01,automatic_bbref_match +10453,Andrew Knizner,11,kniznan01,1065,Andrew Knizner,kniznan01,automatic_bbref_match +10454,Andrew McCutchen,11,mccutan01,1272,Andrew McCutchen,mccutan01,automatic_bbref_match +10455,Andrew Nardi,11,nardian01,1400,Andrew Nardi,nardian01,automatic_bbref_match +10456,Andrew Vaughn,11,vaughan01,2061,Andrew Vaughn,vaughan01,automatic_bbref_match +10458,Andruw Monasterio,11,monasan01,1347,Andruw Monasterio,monasan01,automatic_bbref_match +10459,Andy Ibanez,11,ibanean01,948,Andy Ibanez,ibanean01,automatic_bbref_match +10461,Angel Zerpa,11,zerpaan01,2224,Angel Zerpa,zerpaan01,automatic_bbref_match +10464,Anthony Rizzo,11,rizzoan01,1658,Anthony Rizzo,rizzoan01,automatic_bbref_match +10465,Anthony Santander,11,santaan02,1764,Anthony Santander,santaan02,automatic_bbref_match +10466,Anthony Volpe,11,volpean01,2088,Anthony Volpe,volpean01,automatic_bbref_match +10467,Aroldis Chapman,11,chapmar01,366,Aroldis Chapman,chapmar01,automatic_bbref_match +10468,Austin Adams,11,adamsau02,16,Austin Adams,adamsau02,automatic_bbref_match +10469,Austin Barnes,11,barneau01,132,Austin Barnes,barneau01,automatic_bbref_match +10471,Austin Gomber,11,gombeau01,730,Austin Gomber,gombeau01,automatic_bbref_match +10472,Austin Hays,11,haysau01,839,Austin Hays,haysau01,automatic_bbref_match +10473,Austin Pruitt,11,pruitau01,1588,Austin Pruitt,pruitau01,automatic_bbref_match +10474,Austin Riley,11,rileyau01,1649,Austin Riley,rileyau01,automatic_bbref_match +10475,Austin Slater,11,slateau01,1838,Austin Slater,slateau01,automatic_bbref_match +10476,Austin Voth,11,vothau01,2091,Austin Voth,vothau01,automatic_bbref_match +10477,Austin Wells,11,wellsau01,2131,Austin Wells,wellsau01,automatic_bbref_match +10479,Bailey Falter,11,falteba01,594,Bailey Falter,falteba01,automatic_bbref_match +10480,Bailey Ober,11,oberba01,1447,Bailey Ober,oberba01,automatic_bbref_match +10481,Beau Brieske,11,briesbe01,256,Beau Brieske,briesbe01,automatic_bbref_match +10482,Ben Lively,11,livelbe01,1130,Ben Lively,livelbe01,automatic_bbref_match +10483,Blake Sabol,11,sabolbl01,1735,Blake Sabol,sabolbl01,automatic_bbref_match +10484,Blake Snell,11,snellbl01,1861,Blake Snell,snellbl01,automatic_bbref_match +10485,Bo Bichette,11,bichebo01,190,Bo Bichette,bichebo01,automatic_bbref_match +10486,Bo Naylor,11,naylobo01,1405,Bo Naylor,naylobo01,automatic_bbref_match +10487,Bobby Miller,11,millebo06,1326,Bobby Miller,millebo06,automatic_bbref_match +10488,Bobby Witt Jr,11,wittbo02,2184,Bobby Witt Jr,wittbo02,automatic_bbref_match +10490,Brad Keller,11,kellebr01,1016,Brad Keller,kellebr01,automatic_bbref_match +10491,Brady Singer,11,singebr01,1827,Brady Singer,singebr01,automatic_bbref_match +10493,Brandon Bielak,11,bielabr01,195,Brandon Bielak,bielabr01,automatic_bbref_match +10494,Brandon Crawford,11,crawfbr01,430,Brandon Crawford,crawfbr01,automatic_bbref_match +10496,Brandon Drury,11,drurybr01,535,Brandon Drury,drurybr01,automatic_bbref_match +10497,Brandon Lowe,11,lowebr01,1156,Brandon Lowe,lowebr01,automatic_bbref_match +10498,Brandon Marsh,11,marshbr02,1205,Brandon Marsh,marshbr02,automatic_bbref_match +10499,Brandon Nimmo,11,nimmobr01,1425,Brandon Nimmo,nimmobr01,automatic_bbref_match +10500,Brandon Pfaadt,11,pfaadbr01,1551,Brandon Pfaadt,pfaadbr01,automatic_bbref_match +10503,Braxton Garrett,11,garrebr01,701,Braxton Garrett,garrebr01,automatic_bbref_match +10504,Brayan Bello,11,bellobr01,171,Brayan Bello,bellobr01,automatic_bbref_match +10505,Brendan Donovan,11,donovbr01,527,Brendan Donovan,donovbr01,automatic_bbref_match +10506,Brendan Rodgers,11,rodgebr02,1668,Brendan Rodgers,rodgebr02,automatic_bbref_match +10508,Brennan Bernardino,11,bernabr01,181,Brennan Bernardino,bernabr01,automatic_bbref_match +10510,Brent Rooker,11,rookebr01,1708,Brent Rooker,rookebr01,automatic_bbref_match +10511,Brent Suter,11,suterbr01,1943,Brent Suter,suterbr01,automatic_bbref_match +10512,Brenton Doyle,11,doylebr02,531,Brenton Doyle,doylebr02,automatic_bbref_match +10513,Brett Baty,11,batybr01,149,Brett Baty,batybr01,automatic_bbref_match +10515,Brice Turang,11,turanbr02,2026,Brice Turang,turanbr02,automatic_bbref_match +10516,Brock Burke,11,burkebr01,284,Brock Burke,burkebr01,automatic_bbref_match +10517,Brock Stewart,11,stewabr01,1908,Brock Stewart,stewabr01,automatic_bbref_match +10518,Brooks Raley,11,raleybr01,1601,Brooks Raley,raleybr01,automatic_bbref_match +10520,Bryan Abreu,11,abreubr01,8,Bryan Abreu,abreubr01,automatic_bbref_match +10522,Bryan De La Cruz,11,delacbr01,479,Bryan De La Cruz,delacbr01,automatic_bbref_match +10523,Bryan Hoeing,11,hoeinbr01,908,Bryan Hoeing,hoeinbr01,automatic_bbref_match +10524,Bryan Reynolds,11,reynobr01,1641,Bryan Reynolds,reynobr01,automatic_bbref_match +10525,Bryan Shaw,11,shawbr01,1808,Bryan Shaw,shawbr01,automatic_bbref_match +10526,Bryan Woo,11,woobr01,2191,Bryan Woo,woobr01,automatic_bbref_match +10527,Bryce Elder,11,elderbr01,564,Bryce Elder,elderbr01,automatic_bbref_match +10528,Bryce Harper,11,harpebr03,823,Bryce Harper,harpebr03,automatic_bbref_match +10529,Bryce Miller,11,millebr04,1328,Bryce Miller,millebr04,automatic_bbref_match +10530,Bryse Wilson,11,wilsobr02,2171,Bryse Wilson,wilsobr02,automatic_bbref_match +10531,Bryson Stott,11,stottbr01,1915,Bryson Stott,stottbr01,automatic_bbref_match +10532,Buck Farmer,11,farmebu01,597,Buck Farmer,farmebu01,automatic_bbref_match +10533,Byron Buxton,11,buxtoby01,295,Byron Buxton,buxtoby01,automatic_bbref_match +10535,Cal Quantrill,11,quantca01,1593,Cal Quantrill,quantca01,automatic_bbref_match +10536,Cal Raleigh,11,raleica01,1600,Cal Raleigh,raleica01,automatic_bbref_match +10537,Caleb Ferguson,11,ferguca01,605,Caleb Ferguson,ferguca01,automatic_bbref_match +10538,Caleb Thielbar,11,thielca01,1977,Caleb Thielbar,thielca01,automatic_bbref_match +10540,Camilo Doval,11,dovalca01,529,Camilo Doval,dovalca01,automatic_bbref_match +10542,Carlos Carrasco,11,carraca01,331,Carlos Carrasco,carraca01,automatic_bbref_match +10543,Carlos Correa,11,correca01,420,Carlos Correa,correca01,automatic_bbref_match +10544,Carlos Estevez,11,estevca01,585,Carlos Estevez,estevca01,automatic_bbref_match +10545,Carlos Hernandez,11,hernaca04,880,Carlos Hernandez,hernaca04,automatic_bbref_match +10547,Carlos Rodon,11,rodonca01,1670,Carlos Rodon,rodonca01,automatic_bbref_match +10548,Carlos Santana,11,santaca01,1759,Carlos Santana,santaca01,automatic_bbref_match +10549,Carmen Mlodzinski,11,mlodzca01,1343,Carmen Mlodzinski,mlodzca01,automatic_bbref_match +10550,Carson Kelly,11,kellyca02,1023,Carson Kelly,kellyca02,automatic_bbref_match +10551,Casey Schmitt,11,schmica01,1775,Casey Schmitt,schmica01,automatic_bbref_match +10552,Cavan Biggio,11,biggica01,196,Cavan Biggio,biggica01,automatic_bbref_match +10553,Ceddanne Rafaela,11,rafaece01,1597,Ceddanne Rafaela,rafaece01,automatic_bbref_match +10554,Cedric Mullins,11,mullice01,1381,Cedric Mullins,mullice01,automatic_bbref_match +10557,Charlie Blackmon,11,blackch02,205,Charlie Blackmon,blackch02,automatic_bbref_match +10558,Charlie Morton,11,mortoch02,1375,Charlie Morton,mortoch02,automatic_bbref_match +10559,Chas McCormick,11,mccorch01,1269,Chas McCormick,mccorch01,automatic_bbref_match +10560,Chase Anderson,11,anderch01,67,Chase Anderson,anderch01,automatic_bbref_match +10561,Chase Silseth,11,silsech01,1824,Chase Silseth,silsech01,automatic_bbref_match +10562,Chris Bassitt,11,bassich01,146,Chris Bassitt,bassich01,automatic_bbref_match +10563,Chris Flexen,11,flexech01,626,Chris Flexen,flexech01,automatic_bbref_match +10564,Chris Martin,11,martich02,1214,Chris Martin,martich02,automatic_bbref_match +10566,Chris Sale,11,salech01,1739,Chris Sale,salech01,automatic_bbref_match +10567,Chris Stratton,11,stratch01,1922,Chris Stratton,stratch01,automatic_bbref_match +10568,Chris Taylor,11,tayloch03,1964,Chris Taylor,tayloch03,automatic_bbref_match +10569,Christian Bethancourt,11,bethach01,185,Christian Bethancourt,bethach01,automatic_bbref_match +10571,Christian Vazquez,11,vazquch01,2063,Christian Vazquez,vazquch01,automatic_bbref_match +10572,Christian Walker,11,walkech02,2104,Christian Walker,walkech02,automatic_bbref_match +10573,Christian Yelich,11,yelicch01,2212,Christian Yelich,yelicch01,automatic_bbref_match +10574,Christopher Morel,11,morelch01,1364,Christopher Morel,morelch01,automatic_bbref_match +10575,Cionel Perez,11,perezci01,1540,Cionel Perez,perezci01,automatic_bbref_match +10576,CJ Abrams,11,abramcj01,6,CJ Abrams,abramcj01,automatic_bbref_match +10578,Clarke Schmidt,11,schmicl01,1774,Clarke Schmidt,schmicl01,automatic_bbref_match +10579,Clay Holmes,11,holmecl01,919,Clay Holmes,holmecl01,automatic_bbref_match +10581,Cody Bellinger,11,bellico01,170,Cody Bellinger,bellico01,automatic_bbref_match +10582,Cody Bolton,11,boltoco01,219,Cody Bolton,boltoco01,automatic_bbref_match +10583,Cole Irvin,11,irvinco01,954,Cole Irvin,irvinco01,automatic_bbref_match +10584,Cole Ragans,11,raganco01,1598,Cole Ragans,raganco01,automatic_bbref_match +10585,Cole Sands,11,sandsco01,1755,Cole Sands,sandsco01,automatic_bbref_match +10586,Colin Holderman,11,holdeco01,913,Colin Holderman,holdeco01,automatic_bbref_match +10587,Colin Poche,11,pocheco01,1568,Colin Poche,pocheco01,automatic_bbref_match +10588,Colin Rea,11,reaco01,1621,Colin Rea,reaco01,automatic_bbref_match +10590,Colton Cowser,11,cowseco01,426,Colton Cowser,cowseco01,automatic_bbref_match +10591,Connor Joe,11,joeco01,983,Connor Joe,joeco01,automatic_bbref_match +10593,Connor Wong,11,wongco01,2189,Connor Wong,wongco01,automatic_bbref_match +10594,Corbin Burnes,11,burneco01,286,Corbin Burnes,burneco01,automatic_bbref_match +10595,Corbin Carroll,11,carroco02,332,Corbin Carroll,carroco02,automatic_bbref_match +10596,Corey Julks,11,julksco01,1001,Corey Julks,julksco01,automatic_bbref_match +10597,Corey Seager,11,seageco01,1794,Corey Seager,seageco01,automatic_bbref_match +10599,Craig Kimbrel,11,kimbrcr01,1043,Craig Kimbrel,kimbrcr01,automatic_bbref_match +10600,Cristian Javier,11,javiecr01,971,Cristian Javier,javiecr01,automatic_bbref_match +10601,Cristian Pache,11,pachecr01,1482,Cristian Pache,pachecr01,automatic_bbref_match +10602,Cristopher Sanchez,11,sanchcr01,1748,Cristopher Sanchez,sanchcr01,automatic_bbref_match +10603,Curt Casali,11,casalcu01,334,Curt Casali,casalcu01,automatic_bbref_match +10604,Dairon Blanco,11,blancda02,209,Dairon Blanco,blancda02,automatic_bbref_match +10605,Dakota Hudson,11,hudsoda02,934,Dakota Hudson,hudsoda02,automatic_bbref_match +10606,Dane Dunning,11,dunnida01,548,Dane Dunning,dunnida01,automatic_bbref_match +10609,Daniel Duarte,11,duartda01,536,Daniel Duarte,duartda01,automatic_bbref_match +10611,Daniel Palencia,11,palenda01,1490,Daniel Palencia,palenda01,automatic_bbref_match +10612,Daniel Vogelbach,11,vogelda01,2085,Daniel Vogelbach,vogelda01,automatic_bbref_match +10613,Danny Jansen,11,janseda01,969,Danny Jansen,janseda01,automatic_bbref_match +10614,Dansby Swanson,11,swansda01,1947,Dansby Swanson,swansda01,automatic_bbref_match +10615,Dany Jimenez,11,jimenda01,981,Dany Jimenez,jimenda01,automatic_bbref_match +10616,Daulton Varsho,11,varshda01,2058,Daulton Varsho,varshda01,automatic_bbref_match +10618,David Bednar,11,bednada01,162,David Bednar,bednada01,automatic_bbref_match +10619,David Fletcher,11,fletcda02,624,David Fletcher,fletcda02,automatic_bbref_match +10620,David Fry,11,fryda01,663,David Fry,fryda01,automatic_bbref_match +10622,David Peralta,11,peralda01,1522,David Peralta,peralda01,automatic_bbref_match +10624,David Robertson,11,roberda08,1662,David Robertson,roberda08,automatic_bbref_match +10625,Davis Schneider,11,schneda03,1777,Davis Schneider,schneda03,automatic_bbref_match +10626,Dean Kremer,11,kremede01,1077,Dean Kremer,kremede01,automatic_bbref_match +10627,Derek Law,11,lawde01,1098,Derek Law,lawde01,automatic_bbref_match +10630,DJ Stewart,11,stewadj01,1909,DJ Stewart,stewadj01,automatic_bbref_match +10632,Dominic Fletcher,11,fletcdo01,625,Dominic Fletcher,fletcdo01,automatic_bbref_match +10633,Dominic Smith,11,smithdo02,1849,Dominic Smith,smithdo02,automatic_bbref_match +10634,Donovan Solano,11,solando01,1868,Donovan Solano,solando01,automatic_bbref_match +10636,Drew Smith,11,smithdr01,1848,Drew Smith,smithdr01,automatic_bbref_match +10637,Drew Smyly,11,smylydr01,1858,Drew Smyly,smylydr01,automatic_bbref_match +10642,Dylan Carlson,11,carlsdy01,327,Dylan Carlson,carlsdy01,automatic_bbref_match +10643,Dylan Cease,11,ceasedy01,355,Dylan Cease,ceasedy01,automatic_bbref_match +10645,Dylan Floro,11,florody01,629,Dylan Floro,florody01,automatic_bbref_match +10646,Dylan Lee,11,leedy01,1108,Dylan Lee,leedy01,automatic_bbref_match +10647,Dylan Moore,11,mooredy01,1358,Dylan Moore,mooredy01,automatic_bbref_match +10648,Eddie Rosario,11,rosared01,1710,Eddie Rosario,rosared01,automatic_bbref_match +10649,Edmundo Sosa,11,sosaed01,1876,Edmundo Sosa,sosaed01,automatic_bbref_match +10650,Edouard Julien,11,julieed01,1000,Edouard Julien,julieed01,automatic_bbref_match +10653,Edward Cabrera,11,cabreed02,302,Edward Cabrera,cabreed02,automatic_bbref_match +10654,Edward Olivares,11,olivaed02,1458,Edward Olivares,olivaed02,automatic_bbref_match +10655,Elehuris Montero,11,monteel01,1353,Elehuris Montero,monteel01,automatic_bbref_match +10656,Eli Morgan,11,morgael01,1369,Eli Morgan,morgael01,automatic_bbref_match +10657,Elias Diaz,11,diazel01,502,Elias Diaz,diazel01,automatic_bbref_match +10658,Elly De La Cruz,11,delacel01,480,Elly De La Cruz,delacel01,automatic_bbref_match +10659,Eloy Jimenez,11,jimenel02,980,Eloy Jimenez,jimenel02,automatic_bbref_match +10661,Elvis Peguero,11,pegueel01,1515,Elvis Peguero,pegueel01,automatic_bbref_match +10662,Emilio Pagan,11,paganem01,1484,Emilio Pagan,paganem01,automatic_bbref_match +10663,Emmanuel Clase,11,claseem01,385,Emmanuel Clase,claseem01,automatic_bbref_match +10664,Emmanuel Rivera,11,riverem01,1657,Emmanuel Rivera,riverem01,automatic_bbref_match +10667,Enmanuel Valdez,11,valdeen01,2049,Enmanuel Valdez,valdeen01,automatic_bbref_match +10668,Enrique Hernandez,11,hernaen02,871,Enrique Hernandez,hernaen02,automatic_bbref_match +10669,Enyel De Los Santos,11,delosen01,482,Enyel De Los Santos,delosen01,automatic_bbref_match +10671,Erik Swanson,11,swanser01,1948,Erik Swanson,swanser01,automatic_bbref_match +10672,Esteury Ruiz,11,ruizes01,1726,Esteury Ruiz,ruizes01,automatic_bbref_match +10673,Estevan Florial,11,flories01,628,Estevan Florial,flories01,automatic_bbref_match +10674,Eugenio Suarez,11,suareeu01,1934,Eugenio Suarez,suareeu01,automatic_bbref_match +10676,Evan Carter,11,carteev01,333,Evan Carter,carteev01,automatic_bbref_match +10680,Ezequiel Duran,11,duranez01,551,Ezequiel Duran,duranez01,automatic_bbref_match +10681,Ezequiel Tovar,11,tovarez01,2007,Ezequiel Tovar,tovarez01,automatic_bbref_match +10683,Fernando Cruz,11,cruzfe01,448,Fernando Cruz,cruzfe01,automatic_bbref_match +10684,Fernando Tatis Jr,11,tatisfe02,1960,Fernando Tatis Jr,tatisfe02,automatic_bbref_match +10685,Framber Valdez,11,valdefr01,2048,Framber Valdez,valdefr01,automatic_bbref_match +10686,Francisco Alvarez,11,alvarfr01,62,Francisco Alvarez,alvarfr01,automatic_bbref_match +10687,Francisco Lindor,11,lindofr01,1124,Francisco Lindor,lindofr01,automatic_bbref_match +10689,Freddie Freeman,11,freemfr01,652,Freddie Freeman,freemfr01,automatic_bbref_match +10690,Freddy Fermin,11,fermifr01,606,Freddy Fermin,fermifr01,automatic_bbref_match +10691,Freddy Peralta,11,peralfr01,1525,Freddy Peralta,peralfr01,automatic_bbref_match +10692,Gabe Speier,11,speiega01,1885,Gabe Speier,speiega01,automatic_bbref_match +10693,Gabriel Arias,11,ariasga01,89,Gabriel Arias,ariasga01,automatic_bbref_match +10694,Gabriel Moreno,11,morenga01,1366,Gabriel Moreno,morenga01,automatic_bbref_match +10695,Garrett Cooper,11,coopega03,415,Garrett Cooper,coopega03,automatic_bbref_match +10696,Garrett Hampson,11,hampsga01,814,Garrett Hampson,hampsga01,automatic_bbref_match +10697,Garrett Stubbs,11,stubbga01,1931,Garrett Stubbs,stubbga01,automatic_bbref_match +10698,Garrett Whitlock,11,whitlga01,2146,Garrett Whitlock,whitlga01,automatic_bbref_match +10699,Gary Sanchez,11,sanchga02,1746,Gary Sanchez,sanchga02,automatic_bbref_match +10701,Gavin Sheets,11,sheetga01,1811,Gavin Sheets,sheetga01,automatic_bbref_match +10702,Gavin Stone,11,stonega01,1913,Gavin Stone,stonega01,automatic_bbref_match +10704,Genesis Cabrera,11,cabrege01,301,Genesis Cabrera,cabrege01,automatic_bbref_match +10705,George Kirby,11,kirbyge01,1054,George Kirby,kirbyge01,automatic_bbref_match +10706,George Soriano,11,soriage01,1873,George Soriano,soriage01,automatic_bbref_match +10707,George Springer,11,springe01,1888,George Springer,springe01,automatic_bbref_match +10708,Geraldo Perdomo,11,perdoge01,1531,Geraldo Perdomo,perdoge01,automatic_bbref_match +10710,Giancarlo Stanton,11,stantmi03,1893,Giancarlo Stanton,stantmi03,automatic_bbref_match +10711,Gio Urshela,11,urshegi01,2042,Gio Urshela,urshegi01,automatic_bbref_match +10712,Giovanny Gallegos,11,gallegi01,672,Giovanny Gallegos,gallegi01,automatic_bbref_match +10713,Gleyber Torres,11,torregl01,2003,Gleyber Torres,torregl01,automatic_bbref_match +10714,Graham Ashcraft,11,ashcrgr01,99,Graham Ashcraft,ashcrgr01,automatic_bbref_match +10715,Grant Hartwig,11,hartwgr01,834,Grant Hartwig,hartwgr01,automatic_bbref_match +10716,Grayson Rodriguez,11,rodrigr01,1684,Grayson Rodriguez,rodrigr01,automatic_bbref_match +10718,Gregory Soto,11,sotogr01,1878,Gregory Soto,sotogr01,automatic_bbref_match +10719,Griffin Canning,11,cannigr01,317,Griffin Canning,cannigr01,automatic_bbref_match +10720,Griffin Jax,11,jaxgr01,972,Griffin Jax,jaxgr01,automatic_bbref_match +10721,Gunnar Henderson,11,hendegu01,855,Gunnar Henderson,hendegu01,automatic_bbref_match +10724,Harold Ramirez,11,ramirha02,1609,Harold Ramirez,ramirha02,automatic_bbref_match +10725,Harrison Bader,11,baderha01,110,Harrison Bader,baderha01,automatic_bbref_match +10726,Hayden Wesneski,11,wesneha01,2137,Hayden Wesneski,wesneha01,automatic_bbref_match +10727,Hector Neris,11,nerishe01,1413,Hector Neris,nerishe01,automatic_bbref_match +10728,Henry Davis,11,davishe01,473,Henry Davis,davishe01,automatic_bbref_match +10730,Hoby Milner,11,milneho01,1332,Hoby Milner,milneho01,automatic_bbref_match +10731,Hogan Harris,11,harriho03,826,Hogan Harris,harriho03,automatic_bbref_match +10733,Hunter Brown,11,brownhu01,267,Hunter Brown,brownhu01,automatic_bbref_match +10734,Hunter Greene,11,greenhu01,770,Hunter Greene,greenhu01,automatic_bbref_match +10735,Hunter Harvey,11,harvehu01,836,Hunter Harvey,harvehu01,automatic_bbref_match +10736,Hunter Renfroe,11,renfrhu01,1631,Hunter Renfroe,renfrhu01,automatic_bbref_match +10739,Ian Hamilton,11,hamilia01,811,Ian Hamilton,hamilia01,automatic_bbref_match +10740,Ian Happ,11,happia01,820,Ian Happ,happia01,automatic_bbref_match +10741,Ildemaro Vargas,11,vargail01,2054,Ildemaro Vargas,vargail01,automatic_bbref_match +10742,Isaac Paredes,11,paredis01,1497,Isaac Paredes,paredis01,automatic_bbref_match +10743,Isaiah Campbell,11,campbis01,312,Isaiah Campbell,campbis01,automatic_bbref_match +10745,Jace Peterson,11,peterja01,1547,Jace Peterson,peterja01,automatic_bbref_match +10746,Jack Flaherty,11,flaheja01,622,Jack Flaherty,flaheja01,automatic_bbref_match +10747,Jack Suwinski,11,suwinja01,1944,Jack Suwinski,suwinja01,automatic_bbref_match +10749,Jacob Stallings,11,stallja01,1890,Jacob Stallings,stallja01,automatic_bbref_match +10750,Jacob Webb,11,webbja01,2126,Jacob Webb,webbja01,automatic_bbref_match +10751,Jacob Young,11,youngja03,2219,Jacob Young,youngja03,automatic_bbref_match +10754,Jake Bauers,11,bauerja01,151,Jake Bauers,bauerja01,automatic_bbref_match +10755,Jake Bird,11,birdja01,198,Jake Bird,birdja01,automatic_bbref_match +10756,Jake Burger,11,burgeja01,283,Jake Burger,burgeja01,automatic_bbref_match +10757,Jake Cave,11,caveja01,354,Jake Cave,caveja01,automatic_bbref_match +10758,Jake Cronenworth,11,croneja01,442,Jake Cronenworth,croneja01,automatic_bbref_match +10759,Jake Diekman,11,diekmja01,514,Jake Diekman,diekmja01,automatic_bbref_match +10760,Jake Fraley,11,fraleja01,641,Jake Fraley,fraleja01,automatic_bbref_match +10761,Jake Irvin,11,irvinja01,955,Jake Irvin,irvinja01,automatic_bbref_match +10762,Jake Junis,11,junisja01,1004,Jakob Junis,junisja01,automatic_bbref_match +10763,Jake McCarthy,11,mccarja02,1265,Jake McCarthy,mccarja02,automatic_bbref_match +10764,Jake Meyers,11,meyerja02,1315,Jake Meyers,meyerja02,automatic_bbref_match +10765,Jake Rogers,11,rogerja03,1692,Jake Rogers,rogerja03,automatic_bbref_match +10767,Jalen Beeks,11,beeksja02,165,Jalen Beeks,beeksja02,automatic_bbref_match +10770,James Mcarthur,11,mcartja01,1258,James McArthur,mcartja01,automatic_bbref_match +10771,James McCann,11,mccanja02,1261,James McCann,mccanja02,automatic_bbref_match +10772,James Outman,11,outmaja01,1477,James Outman,outmaja01,automatic_bbref_match +10773,James Paxton,11,paxtoja01,1506,James Paxton,paxtoja01,automatic_bbref_match +10774,Jameson Taillon,11,taillja01,1954,Jameson Taillon,taillja01,automatic_bbref_match +10775,Jared Shuster,11,shustja01,1821,Jared Shuster,shustja01,automatic_bbref_match +10776,Jared Triolo,11,triolja01,2015,Jared Triolo,triolja01,automatic_bbref_match +10777,Jarred Kelenic,11,kelenja01,1015,Jarred Kelenic,kelenja01,automatic_bbref_match +10778,Jarren Duran,11,duranja01,552,Jarren Duran,duranja01,automatic_bbref_match +10779,Jason Adam,11,adamja01,13,Jason Adam,adamja01,automatic_bbref_match +10780,Jason Delay,11,delayja01,487,Jason Delay,delayja01,automatic_bbref_match +10781,Jason Foley,11,foleyja01,632,Jason Foley,foleyja01,automatic_bbref_match +10782,Jason Heyward,11,heywaja01,891,Jason Heyward,heywaja01,automatic_bbref_match +10784,Javier Assad,11,assadja01,100,Javier Assad,assadja01,automatic_bbref_match +10785,Javier Baez,11,baezja01,112,Javier Baez,baezja01,automatic_bbref_match +10786,Jazz Chisholm,11,chishja01,375,Jazz Chisholm,chishja01,automatic_bbref_match +10787,JD Davis,11,davisjd01,474,JD Davis,davisjd01,automatic_bbref_match +10788,JD Martinez,11,martijd02,1229,JD Martinez,martijd02,automatic_bbref_match +10791,Jeff Hoffman,11,hoffmje02,910,Jeff Hoffman,hoffmje02,automatic_bbref_match +10792,Jeff McNeil,11,mcneije01,1287,Jeff McNeil,mcneije01,automatic_bbref_match +10793,Jeimer Candelario,11,candeje01,315,Jeimer Candelario,candeje01,automatic_bbref_match +10794,Jeremy Pena,11,penaje02,1519,Jeremy Pena,penaje02,automatic_bbref_match +10796,Jesse Winker,11,winkeje01,2177,Jesse Winker,winkeje01,automatic_bbref_match +10797,Jesus Luzardo,11,luzarje01,1170,Jesus Luzardo,luzarje01,automatic_bbref_match +10798,Jesus Sanchez,11,sanchje02,1749,Jesus Sanchez,sanchje02,automatic_bbref_match +10799,Jhony Brito,11,britojh01,259,Jhony Brito,britojh01,automatic_bbref_match +10800,Ji Hwan Bae,11,baeji01,945,Ji Hwan Bae,baeji01,automatic_bbref_match +10802,Jimmy Herget,11,hergeji01,863,Jimmy Herget,hergeji01,automatic_bbref_match +10804,JJ Bleday,11,bledajj01,211,JJ Bleday,bledajj01,automatic_bbref_match +10805,Joan Adon,11,adonjo01,21,Joan Adon,adonjo01,automatic_bbref_match +10806,Joc Pederson,11,pederjo01,1514,Joc Pederson,pederjo01,automatic_bbref_match +10807,Joe Jacques,11,jacqujo01,964,Joe Jacques,jacqujo01,automatic_bbref_match +10808,Joe Jimenez,11,jimenjo02,979,Joe Jimenez,jimenjo02,automatic_bbref_match +10809,Joe Kelly,11,kellyjo05,1021,Joe Kelly,kellyjo05,automatic_bbref_match +10810,Joe Mantiply,11,mantijo01,1193,Joe Mantiply,mantijo01,automatic_bbref_match +10811,Joe Musgrove,11,musgrjo01,1394,Joe Musgrove,musgrjo01,automatic_bbref_match +10812,Joe Ryan,11,ryanjo04,1732,Joe Ryan,ryanjo04,automatic_bbref_match +10813,Joel Payamps,11,payamjo01,1507,Joel Payamps,payamjo01,automatic_bbref_match +10814,Joey Gallo,11,gallojo01,674,Joey Gallo,gallojo01,automatic_bbref_match +10815,Joey Lucchesi,11,lucchjo01,1160,Joey Lucchesi,lucchjo01,automatic_bbref_match +10816,Joey Meneses,11,menesjo01,1303,Joey Meneses,menesjo01,automatic_bbref_match +10818,Joey Wendle,11,wendljo01,2135,Joey Wendle,wendljo01,automatic_bbref_match +10819,Joey Wentz,11,wentzjo01,2136,Joey Wentz,wentzjo01,automatic_bbref_match +10820,Joey Wiemer,11,wiemejo01,2151,Joey Wiemer,wiemejo01,automatic_bbref_match +10822,Johan Rojas,11,rojasjo03,1697,Johan Rojas,rojasjo03,automatic_bbref_match +10823,John Brebbia,11,brebbjo01,247,John Brebbia,brebbjo01,automatic_bbref_match +10824,John King,11,kingjo01,1045,John King,kingjo01,automatic_bbref_match +10825,John Schreiber,11,schrejo01,1780,John Schreiber,schrejo01,automatic_bbref_match +10826,JoJo Romero,11,romerjo01,1702,JoJo Romero,romerjo01,automatic_bbref_match +10827,Jon Berti,11,bertijo01,183,Jon Berti,bertijo01,automatic_bbref_match +10828,Jon Gray,11,grayjo02,766,Jon Gray,grayjo02,automatic_bbref_match +10829,Jonah Bride,11,bridejo01,255,Jonah Bride,bridejo01,automatic_bbref_match +10830,Jonah Heim,11,heimjo01,849,Jonah Heim,heimjo01,automatic_bbref_match +10831,Jonathan Hernandez,11,hernajo02,876,Jonathan Hernandez,hernajo02,automatic_bbref_match +10832,Jonathan India,11,indiajo01,953,Jonathan India,indiajo01,automatic_bbref_match +10835,Jordan Hicks,11,hicksjo03,894,Jordan Hicks,hicksjo03,automatic_bbref_match +10836,Jordan Lyles,11,lylesjo01,1171,Jordan Lyles,lylesjo01,automatic_bbref_match +10837,Jordan Montgomery,11,montgjo01,1356,Jordan Montgomery,montgjo01,automatic_bbref_match +10838,Jordan Romano,11,romanjo03,1699,Jordan Romano,romanjo03,automatic_bbref_match +10839,Jordan Walker,11,walkejo02,2107,Jordan Walker,walkejo02,automatic_bbref_match +10840,Jordan Weems,11,weemsjo01,2129,Jordan Weems,weemsjo01,automatic_bbref_match +10841,Jordan Westburg,11,westbjo01,2138,Jordan Westburg,westbjo01,automatic_bbref_match +10842,Jordan Wicks,11,wicksjo01,2148,Jordan Wicks,wicksjo01,automatic_bbref_match +10843,Jorge Mateo,11,mateojo01,1233,Jorge Mateo,mateojo01,automatic_bbref_match +10844,Jorge Soler,11,solerjo01,1870,Jorge Soler,solerjo01,automatic_bbref_match +10845,Jose Abreu,11,abreujo02,7,Jose Abreu,abreujo02,automatic_bbref_match +10846,Jose Altuve,11,altuvjo01,56,Jose Altuve,altuvjo01,automatic_bbref_match +10847,Jose Alvarado,11,alvarjo03,58,Jose Alvarado,alvarjo03,automatic_bbref_match +10848,Jose Azocar,11,azocajo01,107,Jose Azocar,azocajo01,automatic_bbref_match +10850,Jose Berrios,11,berrijo01,182,Jose Berrios,berrijo01,automatic_bbref_match +10851,Jose Butto,11,buttojo01,293,Jose Butto,buttojo01,automatic_bbref_match +10852,Jose Caballero,11,cabaljo01,296,Jose Caballero,cabaljo01,automatic_bbref_match +10853,Jose Cisnero,11,cisnejo01,382,Jose Cisnero,cisnejo01,automatic_bbref_match +10854,Jose Cuas,11,cuasjo01,450,Jose Cuas,cuasjo01,automatic_bbref_match +10856,Jose Hernandez,11,hernajo03,879,Jose Hernandez,hernajo03,automatic_bbref_match +10858,Jose Leclerc,11,leclejo01,1106,Jose Leclerc,leclejo01,automatic_bbref_match +10859,Jose Quintana,11,quintjo01,1596,Jose Quintana,quintjo01,automatic_bbref_match +10860,Jose Ramirez,11,ramirjo01,1608,Jose Ramirez,ramirjo01,automatic_bbref_match +10861,Jose Ruiz,11,ruizjo01,1724,Jose Ruiz,ruizjo01,automatic_bbref_match +10862,Jose Siri,11,sirijo01,1830,Jose Siri,sirijo01,automatic_bbref_match +10863,Jose Soriano,11,soriajo02,1874,Jose Soriano,soriajo02,automatic_bbref_match +10864,Jose Suarez,11,suarejo01,1937,Jose Suarez,suarejo01,automatic_bbref_match +10865,Jose Trevino,11,trevijo01,2013,Jose Trevino,trevijo01,automatic_bbref_match +10866,Jose Urena,11,urenajo01,2035,Jose Urena,urenajo01,automatic_bbref_match +10868,Josh Bell,11,belljo02,168,Josh Bell,belljo02,automatic_bbref_match +10869,Josh Hader,11,haderjo01,802,Josh Hader,haderjo01,automatic_bbref_match +10870,Josh Jung,11,jungjo01,1002,Josh Jung,jungjo01,automatic_bbref_match +10871,Josh Lowe,11,lowejo01,1157,Josh Lowe,lowejo01,automatic_bbref_match +10872,Josh Naylor,11,naylojo01,1404,Josh Naylor,naylojo01,automatic_bbref_match +10874,Josh Rojas,11,rojasjo01,1695,Josh Rojas,rojasjo01,automatic_bbref_match +10875,Josh Sborz,11,sborzjo01,1770,Josh Sborz,sborzjo01,automatic_bbref_match +10876,Josh Smith,11,smithjo11,1852,Josh Smith,smithjo11,automatic_bbref_match +10877,Josh Winckowski,11,winckjo01,2174,Josh Winckowski,winckjo01,automatic_bbref_match +10879,Josiah Gray,11,grayjo03,767,Josiah Gray,grayjo03,automatic_bbref_match +10881,JP Crawford,11,crawfjp01,432,JP Crawford,crawfjp01,automatic_bbref_match +10882,JP France,11,francjp01,643,JP France,francjp01,automatic_bbref_match +10883,JP Sears,11,searsjp01,1795,JP Sears,searsjp01,automatic_bbref_match +10885,JT Realmuto,11,realmjt01,1622,JT Realmuto,realmjt01,automatic_bbref_match +10886,Juan Soto,11,sotoju01,1879,Juan Soto,sotoju01,automatic_bbref_match +10887,Julian Merryweather,11,merryju01,1311,Julian Merryweather,merryju01,automatic_bbref_match +10888,Julio Rodriguez,11,rodriju01,1682,Julio Rodriguez,rodriju01,automatic_bbref_match +10889,Julio Teheran,11,teherju01,1970,Julio Teheran,teherju01,automatic_bbref_match +10891,Jurickson Profar,11,profaju01,1587,Jurickson Profar,profaju01,automatic_bbref_match +10892,Justin Lawrence,11,lawreju01,1100,Justin Lawrence,lawreju01,automatic_bbref_match +10893,Justin Steele,11,steelju01,1899,Justin Steele,steelju01,automatic_bbref_match +10895,Justin Turner,11,turneju01,2029,Justin Turner,turneju01,automatic_bbref_match +10896,Justin Verlander,11,verlaju01,2071,Justin Verlander,verlaju01,automatic_bbref_match +10898,Keibert Ruiz,11,ruizke01,1725,Keibert Ruiz,ruizke01,automatic_bbref_match +10901,Kenley Jansen,11,janseke01,968,Kenley Jansen,janseke01,automatic_bbref_match +10902,Kenta Maeda,11,maedake01,1181,Kenta Maeda,maedake01,automatic_bbref_match +10903,Kerry Carpenter,11,carpeke01,330,Kerry Carpenter,carpeke01,automatic_bbref_match +10904,Ketel Marte,11,marteke01,1210,Ketel Marte,marteke01,automatic_bbref_match +10905,Kevin Gausman,11,gausmke01,706,Kevin Gausman,gausmke01,automatic_bbref_match +10906,Kevin Ginkel,11,ginkeke01,722,Kevin Ginkel,ginkeke01,automatic_bbref_match +10907,Kevin Kelly,11,kellyke02,1025,Kevin Kelly,kellyke02,automatic_bbref_match +10908,Kevin Kiermaier,11,kiermke01,1039,Kevin Kiermaier,kiermke01,automatic_bbref_match +10909,Kevin Newman,11,newmake01,1420,Kevin Newman,newmake01,automatic_bbref_match +10910,Kevin Pillar,11,pillake01,1557,Kevin Pillar,pillake01,automatic_bbref_match +10911,Kirby Yates,11,yateski01,2211,Kirby Yates,yateski01,automatic_bbref_match +10915,Korey Lee,11,leeko01,1109,Korey Lee,leeko01,automatic_bbref_match +10916,Kris Bryant,11,bryankr01,273,Kris Bryant,bryankr01,automatic_bbref_match +10917,Kutter Crawford,11,crawfku01,431,Kutter Crawford,crawfku01,automatic_bbref_match +10918,Kyle Bradish,11,bradiky01,235,Kyle Bradish,bradiky01,automatic_bbref_match +10919,Kyle Finnegan,11,finneky01,617,Kyle Finnegan,finneky01,automatic_bbref_match +10920,Kyle Freeland,11,freelky01,650,Kyle Freeland,freelky01,automatic_bbref_match +10921,Kyle Gibson,11,gibsoky01,715,Kyle Gibson,gibsoky01,automatic_bbref_match +10922,Kyle Hendricks,11,hendrky01,856,Kyle Hendricks,hendrky01,automatic_bbref_match +10923,Kyle Higashioka,11,higasky01,895,Kyle Higashioka,higasky01,automatic_bbref_match +10924,Kyle Isbel,11,isbelky01,956,Kyle Isbel,isbelky01,automatic_bbref_match +10925,Kyle Muller,11,mulleky01,1380,Kyle Muller,mulleky01,automatic_bbref_match +10926,Kyle Nelson,11,nelsoky01,1412,Kyle Nelson,nelsoky01,automatic_bbref_match +10927,Kyle Schwarber,11,schwaky01,1784,Kyle Schwarber,schwaky01,automatic_bbref_match +10928,Kyle Tucker,11,tuckeky01,2023,Kyle Tucker,tuckeky01,automatic_bbref_match +10930,LaMonte Wade Jr,11,wadela01,2095,LaMonte Wade Jr,wadela01,automatic_bbref_match +10931,Lance Lynn,11,lynnla01,1173,Lance Lynn,lynnla01,automatic_bbref_match +10933,Lane Thomas,11,thomala02,1978,Lane Thomas,thomala02,automatic_bbref_match +10934,Lars Nootbaar,11,nootbla01,1436,Lars Nootbaar,nootbla01,automatic_bbref_match +10935,Lawrence Butler,11,butlela01,292,Lawrence Butler,butlela01,automatic_bbref_match +10936,Lenyn Sosa,11,sosale01,1877,Lenyn Sosa,sosale01,automatic_bbref_match +10937,Leody Taveras,11,taverle01,1962,Leody Taveras,taverle01,automatic_bbref_match +10939,Logan Allen,11,allenlo01,45,Logan Allen,allenlo01,automatic_bbref_match +10940,Logan Gilbert,11,gilbelo01,718,Logan Gilbert,gilbelo01,automatic_bbref_match +10942,Logan Webb,11,webblo01,2127,Logan Webb,webblo01,automatic_bbref_match +10943,Louie Varland,11,varlalo01,2057,Louie Varland,varlalo01,automatic_bbref_match +10944,Lourdes Gurriel Jr,11,gurrilo01,794,Lourdes Gurriel Jr,gurrilo01,automatic_bbref_match +10945,Lucas Erceg,11,erceglu01,577,Lucas Erceg,erceglu01,automatic_bbref_match +10947,Lucas Sims,11,simslu01,1826,Lucas Sims,simslu01,automatic_bbref_match +10948,Luis Arraez,11,arraelu01,93,Luis Arraez,arraelu01,automatic_bbref_match +10949,Luis Campusano,11,campulu01,314,Luis Campusano,campulu01,automatic_bbref_match +10950,Luis Castillo,11,castilu02,344,Luis Castillo,castilu02,automatic_bbref_match +10952,Luis Frias,11,friaslu01,658,Luis Frias,friaslu01,automatic_bbref_match +10954,Luis Guillorme,11,guilllu01,792,Luis Guillorme,guilllu01,automatic_bbref_match +10955,Luis Matos,11,matoslu02,1240,Luis Matos,matoslu02,automatic_bbref_match +10959,Luis Rengifo,11,rengilu01,1632,Luis Rengifo,rengilu01,automatic_bbref_match +10961,Luis Severino,11,severlu01,1805,Luis Severino,severlu01,automatic_bbref_match +10962,Luis Urias,11,uriaslu01,2039,Luis Urias,uriaslu01,automatic_bbref_match +10964,Luke Maile,11,mailelu01,1185,Luke Maile,mailelu01,automatic_bbref_match +10965,Luke Raley,11,raleylu01,1602,Luke Raley,raleylu01,automatic_bbref_match +10966,Luke Weaver,11,weavelu01,2124,Luke Weaver,weavelu01,automatic_bbref_match +10968,MacKenzie Gore,11,gorema01,754,MacKenzie Gore,gorema01,automatic_bbref_match +10969,Maikel Garcia,11,garcima01,691,Maikel Garcia,garcima01,automatic_bbref_match +10970,Manny Machado,11,machama01,1175,Manny Machado,machama01,automatic_bbref_match +10971,Manuel Margot,11,margoma01,1198,Manuel Margot,margoma01,automatic_bbref_match +10972,Marcell Ozuna,11,ozunama01,1481,Marcell Ozuna,ozunama01,automatic_bbref_match +10973,Marco Gonzales,11,gonzama02,735,Marco Gonzales,gonzama02,automatic_bbref_match +10974,Marcus Semien,11,semiema01,1799,Marcus Semien,semiema01,automatic_bbref_match +10975,Marcus Stroman,11,stromma01,1928,Marcus Stroman,stromma01,automatic_bbref_match +10976,Mark Canha,11,canhama01,316,Mark Canha,canhama01,automatic_bbref_match +10979,Mark Vientos,11,vientma01,2076,Mark Vientos,vientma01,automatic_bbref_match +10980,Martin Maldonado,11,maldoma01,1187,Martin Maldonado,maldoma01,automatic_bbref_match +10981,Martin Perez,11,perezma02,1535,Martin Perez,perezma02,automatic_bbref_match +10982,Masataka Yoshida,11,yoshima02,2216,Masataka Yoshida,yoshima02,automatic_bbref_match +10983,Mason Englert,11,englema01,575,Mason Englert,englema01,automatic_bbref_match +10984,Mason Miller,11,millema03,1329,Mason Miller,millema03,automatic_bbref_match +10986,Masyn Winn,11,winnma01,2180,Masyn Winn,winnma01,automatic_bbref_match +10990,Matt Carpenter,11,carpema01,329,Matt Carpenter,carpema01,automatic_bbref_match +10991,Matt Chapman,11,chapmma01,367,Matt Chapman,chapmma01,automatic_bbref_match +10993,Matt Koch,11,kochma01,1066,Matt Koch,kochma01,automatic_bbref_match +10994,Matt Manning,11,mannima02,1191,Matt Manning,mannima02,automatic_bbref_match +10996,Matt Olson,11,olsonma02,1461,Matt Olson,olsonma02,automatic_bbref_match +10997,Matt Strahm,11,strahma01,1918,Matt Strahm,strahma01,automatic_bbref_match +10998,Matt Thaiss,11,thaisma01,1975,Matt Thaiss,thaisma01,automatic_bbref_match +10999,Matt Vierling,11,vierlma01,2077,Matt Vierling,vierlma01,automatic_bbref_match +11000,Matt Wallner,11,wallnma01,2109,Matt Wallner,wallnma01,automatic_bbref_match +11001,Matthew Batten,11,battema01,147,Matthew Batten,battema01,automatic_bbref_match +11002,Matthew Liberatore,11,liberma01,1121,Matthew Liberatore,liberma01,automatic_bbref_match +11003,Mauricio Dubon,11,dubonma01,538,Mauricio Dubon,dubonma01,automatic_bbref_match +11005,Max Fried,11,friedma01,659,Max Fried,friedma01,automatic_bbref_match +11006,Max Kepler,11,keplema01,1031,Max Kepler,keplema01,automatic_bbref_match +11007,Max Muncy,11,muncyma01,1382,Max Muncy,muncyma01,automatic_bbref_match +11009,Merrill Kelly,11,kellyme01,1020,Merrill Kelly,kellyme01,automatic_bbref_match +11011,Michael Conforto,11,confomi01,407,Michael Conforto,confomi01,automatic_bbref_match +11013,Michael Grove,11,grovemi01,781,Michael Grove,grovemi01,automatic_bbref_match +11015,Michael King,11,kingmi01,1047,Michael King,kingmi01,automatic_bbref_match +11016,Michael Kopech,11,kopecmi01,1071,Michael Kopech,kopecmi01,automatic_bbref_match +11017,Michael Lorenzen,11,lorenmi01,1151,Michael Lorenzen,lorenmi01,automatic_bbref_match +11018,Michael Massey,11,massemi02,1231,Michael Massey,massemi02,automatic_bbref_match +11019,Michael Soroka,11,sorokmi01,1875,Michael Soroka,sorokmi01,automatic_bbref_match +11020,Michael A Taylor,11,taylomi02,1963,Michael Taylor,taylomi02,automatic_bbref_match +11021,Michael Toglia,11,toglimi01,1994,Michael Toglia,toglimi01,automatic_bbref_match +11022,Michael Tonkin,11,tonkimi01,1998,Michael Tonkin,tonkimi01,automatic_bbref_match +11023,Michael Wacha,11,wachami01,2093,Michael Wacha,wachami01,automatic_bbref_match +11024,Mickey Moniak,11,moniami01,1350,Mickey Moniak,moniami01,automatic_bbref_match +11025,Miguel Amaya,11,amayami01,64,Miguel Amaya,amayami01,automatic_bbref_match +11027,Miguel Castro,11,castrmi01,350,Miguel Castro,castrmi01,automatic_bbref_match +11028,Miguel Rojas,11,rojasmi02,1694,Miguel Rojas,rojasmi02,automatic_bbref_match +11029,Miguel Vargas,11,vargami01,2055,Miguel Vargas,vargami01,automatic_bbref_match +11030,Mike Baumann,11,baumami01,152,Mike Baumann,baumami01,automatic_bbref_match +11032,Mike Clevinger,11,clevimi01,392,Mike Clevinger,clevimi01,automatic_bbref_match +11033,Mike Ford,11,fordmi01,635,Mike Ford,fordmi01,automatic_bbref_match +11036,Mike Tauchman,11,tauchmi01,1961,Mike Tauchman,tauchmi01,automatic_bbref_match +11037,Mike Trout,11,troutmi01,2019,Mike Trout,troutmi01,automatic_bbref_match +11038,Mike Yastrzemski,11,yastrmi01,2210,Mike Yastrzemski,yastrmi01,automatic_bbref_match +11039,Miles Mikolas,11,mikolmi01,1317,Miles Mikolas,mikolmi01,automatic_bbref_match +11040,Mitch Garver,11,garvemi01,702,Mitch Garver,garvemi01,automatic_bbref_match +11041,Mitch Haniger,11,hanigmi01,818,Mitch Haniger,hanigmi01,automatic_bbref_match +11042,Mitch Keller,11,kellemi03,1017,Mitch Keller,kellemi03,automatic_bbref_match +11043,MJ Melendez,11,melenmj01,1299,MJ Melendez,melenmj01,automatic_bbref_match +11044,Mookie Betts,11,bettsmo01,187,Mookie Betts,bettsmo01,automatic_bbref_match +11046,Nate Pearson,11,pearsna01,1513,Nate Pearson,pearsna01,automatic_bbref_match +11047,Nathan Eovaldi,11,eovalna01,576,Nathan Eovaldi,eovalna01,automatic_bbref_match +11048,Nathaniel Lowe,11,lowena01,1155,Nathaniel Lowe,lowena01,automatic_bbref_match +11049,Nelson Velazquez,11,velazne01,2068,Nelson Velazquez,velazne01,automatic_bbref_match +11050,Nick Ahmed,11,ahmedni01,26,Nick Ahmed,ahmedni01,automatic_bbref_match +11051,Nick Allen,11,allenni02,46,Nick Allen,allenni02,automatic_bbref_match +11052,Nick Anderson,11,anderni01,71,Nick Anderson,anderni01,automatic_bbref_match +11053,Nicholas Castellanos,11,casteni01,340,Nicholas Castellanos,casteni01,automatic_bbref_match +11054,Nick Fortes,11,forteni01,637,Nick Fortes,forteni01,automatic_bbref_match +11055,Nick Lodolo,11,lodolni01,1135,Nick Lodolo,lodolni01,automatic_bbref_match +11056,Nick Madrigal,11,madrini01,1178,Nick Madrigal,madrini01,automatic_bbref_match +11057,Nick Martinez,11,martini01,1224,Nick Martinez,martini01,automatic_bbref_match +11059,Nick Pivetta,11,pivetni01,1564,Nick Pivetta,pivetni01,automatic_bbref_match +11061,Nick Ramirez,11,ramirni01,1605,Nick Ramirez,ramirni01,automatic_bbref_match +11062,Nick Sandlin,11,sandlni01,1752,Nick Sandlin,sandlni01,automatic_bbref_match +11063,Nick Senzel,11,senzeni01,1802,Nick Senzel,senzeni01,automatic_bbref_match +11065,Nicky Lopez,11,lopezni01,1149,Nicky Lopez,lopezni01,automatic_bbref_match +11066,Nico Hoerner,11,hoernni01,909,Nico Hoerner,hoernni01,automatic_bbref_match +11068,Nolan Arenado,11,arenano01,88,Nolan Arenado,arenano01,automatic_bbref_match +11069,Nolan Gorman,11,gormano01,755,Nolan Gorman,gormano01,automatic_bbref_match +11070,Nolan Jones,11,jonesno01,994,Nolan Jones,jonesno01,automatic_bbref_match +11071,Nolan Schanuel,11,schanno01,1771,Nolan Schanuel,schanno01,automatic_bbref_match +11072,Omar Narvaez,11,narvaom01,1401,Omar Narvaez,narvaom01,automatic_bbref_match +11073,Orlando Arcia,11,arciaor01,86,Orlando Arcia,arciaor01,automatic_bbref_match +11074,Oscar Colas,11,colasos01,396,Oscar Colas,colasos01,automatic_bbref_match +11075,Osvaldo Bido,11,bidoos01,193,Osvaldo Bido,bidoos01,automatic_bbref_match +11077,Oswaldo Cabrera,11,cabreos01,303,Oswaldo Cabrera,cabreos01,automatic_bbref_match +11078,Owen Miller,11,milleow01,1327,Owen Miller,milleow01,automatic_bbref_match +11079,Ozzie Albies,11,albieoz01,31,Ozzie Albies,albieoz01,automatic_bbref_match +11080,Pablo Lopez,11,lopezpa01,1146,Pablo Lopez,lopezpa01,automatic_bbref_match +11081,Pablo Reyes,11,reyespa01,1637,Pablo Reyes,reyespa01,automatic_bbref_match +11082,Parker Meadows,11,meadopa01,1291,Parker Meadows,meadopa01,automatic_bbref_match +11083,Patrick Bailey,11,bailepa01,115,Patrick Bailey,bailepa01,automatic_bbref_match +11084,Patrick Corbin,11,corbipa01,416,Patrick Corbin,corbipa01,automatic_bbref_match +11085,Patrick Sandoval,11,sandopa02,1754,Patrick Sandoval,sandopa02,automatic_bbref_match +11086,Patrick Wisdom,11,wisdopa01,2181,Patrick Wisdom,wisdopa01,automatic_bbref_match +11087,Paul Blackburn,11,blackpa01,204,Paul Blackburn,blackpa01,automatic_bbref_match +11088,Paul Goldschmidt,11,goldspa01,729,Paul Goldschmidt,goldspa01,automatic_bbref_match +11089,Paul Sewald,11,sewalpa01,1806,Paul Sewald,sewalpa01,automatic_bbref_match +11090,Pavin Smith,11,smithpa04,1851,Pavin Smith,smithpa04,automatic_bbref_match +11091,Pedro Avila,11,avilape01,105,Pedro Avila,avilape01,automatic_bbref_match +11092,Pete Alonso,11,alonspe01,53,Pete Alonso,alonspe01,automatic_bbref_match +11093,Pete Fairbanks,11,fairbpe01,592,Pete Fairbanks,fairbpe01,automatic_bbref_match +11094,Peter Lambert,11,lambepe01,1088,Peter Lambert,lambepe01,automatic_bbref_match +11097,Phil Maton,11,matonph01,1238,Phil Maton,matonph01,automatic_bbref_match +11098,Pierce Johnson,11,johnspi01,985,Pierce Johnson,johnspi01,automatic_bbref_match +11099,Quinn Priester,11,priesqu01,1586,Quinn Priester,priesqu01,automatic_bbref_match +11147,Ryan Yarbrough,11,yarbrry01,2208,Ryan Yarbrough,yarbrry01,automatic_bbref_match +11100,Rafael Devers,11,deverra01,499,Rafael Devers,deverra01,automatic_bbref_match +11101,Rafael Montero,11,montera01,1352,Rafael Montero,montera01,automatic_bbref_match +11102,Rafael Ortega,11,ortegra01,1465,Rafael Ortega,ortegra01,automatic_bbref_match +11103,Raisel Iglesias,11,iglesra01,950,Raisel Iglesias,iglesra01,automatic_bbref_match +11104,Ramon Laureano,11,laurera01,1097,Ramon Laureano,laurera01,automatic_bbref_match +11105,Ramon Urias,11,uriasra01,2037,Ramon Urias,uriasra01,automatic_bbref_match +11106,Randal Grichuk,11,grichra01,775,Randal Grichuk,grichra01,automatic_bbref_match +11107,Randy Arozarena,11,arozara01,92,Randy Arozarena,arozara01,automatic_bbref_match +11108,Ranger Suarez,11,suarera01,1936,Ranger Suarez,suarera01,automatic_bbref_match +11109,Ray Kerr,11,kerrra01,1033,Ray Kerr,kerrra01,automatic_bbref_match +11110,Reese McGuire,11,mcguire01,1277,Reese McGuire,mcguire01,automatic_bbref_match +11111,Reese Olson,11,olsonre01,1462,Reese Olson,olsonre01,automatic_bbref_match +11112,Reid Detmers,11,detmere01,496,Reid Detmers,detmere01,automatic_bbref_match +11113,Reynaldo Lopez,11,lopezre01,1145,Reynaldo Lopez,lopezre01,automatic_bbref_match +11116,Richard Lovelady,11,lovelri01,1153,Richard Lovelady,lovelri01,automatic_bbref_match +11117,Richie Palacios,11,palacri01,1488,Richie Palacios,palacri01,automatic_bbref_match +11118,Riley Adams,11,adamsri03,17,Riley Adams,adamsri03,automatic_bbref_match +11119,Riley Greene,11,greenri03,771,Riley Greene,greenri03,automatic_bbref_match +11120,Roansy Contreras,11,contrro01,412,Roansy Contreras,contrro01,automatic_bbref_match +11121,Rob Refsnyder,11,refsnro01,1626,Rob Refsnyder,refsnro01,automatic_bbref_match +11123,Robbie Grossman,11,grossro01,779,Robbie Grossman,grossro01,automatic_bbref_match +11124,Robert Garcia,11,garciro04,692,Robert Garcia,garciro04,automatic_bbref_match +11126,Robert Suarez,11,suarero01,1938,Robert Suarez,suarero01,automatic_bbref_match +11128,Ron Marinaccio,11,marinro01,1199,Ron Marinaccio,marinro01,automatic_bbref_match +11129,Ronald Acuna Jr,11,acunaro01,12,Ronald Acuna Jr,acunaro01,automatic_bbref_match +11131,Ross Stripling,11,stripro01,1927,Ross Stripling,stripro01,automatic_bbref_match +11132,Rowdy Tellez,11,tellero01,1972,Rowdy Tellez,tellero01,automatic_bbref_match +11133,Royce Lewis,11,lewisro02,1119,Royce Lewis,lewisro02,automatic_bbref_match +11134,Ryan Borucki,11,borucry01,222,Ryan Borucki,borucry01,automatic_bbref_match +11135,Ryan Brasier,11,brasiry01,242,Ryan Brasier,brasiry01,automatic_bbref_match +11136,Ryan Feltner,11,feltnry01,603,Ryan Feltner,feltnry01,automatic_bbref_match +11137,Ryan Helsley,11,helslry01,853,Ryan Helsley,helslry01,automatic_bbref_match +11138,Ryan Jeffers,11,jeffery01,975,Ryan Jeffers,jeffery01,automatic_bbref_match +11139,Ryan McKenna,11,mckenry01,1281,Ryan McKenna,mckenry01,automatic_bbref_match +11140,Ryan McMahon,11,mcmahry01,1286,Ryan McMahon,mcmahry01,automatic_bbref_match +11141,Ryan Mountcastle,11,mountry01,1377,Ryan Mountcastle,mountry01,automatic_bbref_match +11142,Ryan Noda,11,nodary01,1427,Ryan Noda,nodary01,automatic_bbref_match +11144,Ryan Pepiot,11,pepiory01,1521,Ryan Pepiot,pepiory01,automatic_bbref_match +11145,Ryan Pressly,11,pressry01,1584,Ryan Pressly,pressry01,automatic_bbref_match +11146,Ryan Walker,11,walkery01,2106,Ryan Walker,walkery01,automatic_bbref_match +11148,Ryne Nelson,11,nelsory01,1411,Ryne Nelson,nelsory01,automatic_bbref_match +11149,Ryne Stanek,11,stanery01,1892,Ryne Stanek,stanery01,automatic_bbref_match +11150,Sal Frelick,11,frelisa01,657,Sal Frelick,frelisa01,automatic_bbref_match +11151,Salvador Perez,11,perezsa02,1534,Salvador Perez,perezsa02,automatic_bbref_match +11152,Sam Haggerty,11,haggesa01,803,Sam Haggerty,haggesa01,automatic_bbref_match +11153,Sam Hentges,11,hentgsa01,861,Sam Hentges,hentgsa01,automatic_bbref_match +11155,Sam Long,11,longsa01,1139,Sam Long,longsa01,automatic_bbref_match +11156,Sam Moll,11,mollsa01,1346,Sam Moll,mollsa01,automatic_bbref_match +11159,Santiago Espinal,11,espinsa01,582,Santiago Espinal,espinsa01,automatic_bbref_match +11160,Scott Alexander,11,alexasc02,36,Scott Alexander,alexasc02,automatic_bbref_match +11161,Scott Barlow,11,barlosc01,128,Scott Barlow,barlosc01,automatic_bbref_match +11162,Scott McGough,11,mcgousc01,1275,Scott McGough,mcgousc01,automatic_bbref_match +11163,Sean Manaea,11,manaese01,1189,Sean Manaea,manaese01,automatic_bbref_match +11164,Sean Murphy,11,murphse01,1390,Sean Murphy,murphse01,automatic_bbref_match +11165,Seby Zavala,11,zavalse01,2223,Seby Zavala,zavalse01,automatic_bbref_match +11166,Seiya Suzuki,11,suzukse01,1946,Seiya Suzuki,suzukse01,automatic_bbref_match +11167,Seranthony Dominguez,11,dominse01,524,Seranthony Dominguez,dominse01,automatic_bbref_match +11168,Seth Brown,11,brownse01,265,Seth Brown,brownse01,automatic_bbref_match +11169,Seth Lugo,11,lugose01,1165,Seth Lugo,lugose01,automatic_bbref_match +11170,Seth Martinez,11,martise01,1226,Seth Martinez,martise01,automatic_bbref_match +11171,Shane Bieber,11,biebesh01,194,Shane Bieber,biebesh01,automatic_bbref_match +11173,Shawn Armstrong,11,armstsh01,91,Shawn Armstrong,armstsh01,automatic_bbref_match +11174,Shea Langeliers,11,langesh01,1092,Shea Langeliers,langesh01,automatic_bbref_match +11175,Shelby Miller,11,millesh01,1323,Shelby Miller,millesh01,automatic_bbref_match +11177,Shohei Ohtani,11,ohtansh01,1455,Shohei Ohtani,ohtansh01,automatic_bbref_match +11178,Slade Cecconi,11,ceccosl01,356,Slade Cecconi,ceccosl01,automatic_bbref_match +11179,Spencer Steer,11,steersp01,1900,Spencer Steer,steersp01,automatic_bbref_match +11180,Spencer Strider,11,stridsp01,1926,Spencer Strider,stridsp01,automatic_bbref_match +11181,Spencer Torkelson,11,torkesp01,2000,Spencer Torkelson,torkesp01,automatic_bbref_match +11182,Starling Marte,11,martest01,1208,Starling Marte,martest01,automatic_bbref_match +11184,Steven Kwan,11,kwanst01,1080,Steven Kwan,kwanst01,automatic_bbref_match +11185,Steven Matz,11,matzst01,1243,Steven Matz,matzst01,automatic_bbref_match +11186,Steven Okert,11,okertst01,1456,Steven Okert,okertst01,automatic_bbref_match +11187,Steven Wilson,11,wilsost02,2169,Steven Wilson,wilsost02,automatic_bbref_match +11189,Stuart Fairchild,11,faircst01,593,Stuart Fairchild,faircst01,automatic_bbref_match +11190,Taijuan Walker,11,walketa01,2105,Taijuan Walker,walketa01,automatic_bbref_match +11191,Taj Bradley,11,bradlta01,238,Taj Bradley,bradlta01,automatic_bbref_match +11192,Tanner Banks,11,banksta01,122,Tanner Banks,banksta01,automatic_bbref_match +11193,Tanner Bibee,11,bibeeta01,189,Tanner Bibee,bibeeta01,automatic_bbref_match +11194,Tanner Houck,11,houckta01,927,Tanner Houck,houckta01,automatic_bbref_match +11195,Tanner Scott,11,scottta01,1788,Tanner Scott,scottta01,automatic_bbref_match +11196,Tarik Skubal,11,skubata01,1836,Tarik Skubal,skubata01,automatic_bbref_match +11197,Tayler Saucedo,11,sauceta01,1768,Tayler Saucedo,sauceta01,automatic_bbref_match +11199,Taylor Rogers,11,rogerta01,1689,Taylor Rogers,rogerta01,automatic_bbref_match +11201,Taylor Ward,11,wardta01,2116,Taylor Ward,wardta01,automatic_bbref_match +11202,Teoscar Hernandez,11,hernate01,873,Teoscar Hernandez,hernate01,automatic_bbref_match +11204,Thairo Estrada,11,estrath01,587,Thairo Estrada,estrath01,automatic_bbref_match +11205,Tim Anderson,11,anderti01,73,Tim Anderson,anderti01,automatic_bbref_match +11206,Tim Hill,11,hillti01,900,Tim Hill,hillti01,automatic_bbref_match +11207,Tim Mayza,11,mayzati01,1253,Tim Mayza,mayzati01,automatic_bbref_match +11208,TJ Friedl,11,friedtj01,660,TJ Friedl,friedtj01,automatic_bbref_match +11209,Tom Cosgrove,11,cosgrto01,422,Tom Cosgrove,cosgrto01,automatic_bbref_match +11210,Tom Murphy,11,murphto04,1388,Tom Murphy,murphto04,automatic_bbref_match +11212,Tommy Henry,11,henryto01,859,Tommy Henry,henryto01,automatic_bbref_match +11214,Tommy Kahnle,11,kahnlto01,1006,Tommy Kahnle,kahnlto01,automatic_bbref_match +11215,Tommy Pham,11,phamth01,1552,Tommy Pham,phamth01,automatic_bbref_match +11217,Tony Kemp,11,kempto01,1027,Tony Kemp,kempto01,automatic_bbref_match +11220,Travis Jankowski,11,jankotr01,967,Travis Jankowski,jankotr01,automatic_bbref_match +11221,Trea Turner,11,turnetr01,1,Trea Turner,turnetr01,automatic_bbref_match +11222,Trent Grisham,11,grishtr01,776,Trent Grisham,grishtr01,automatic_bbref_match +11223,Trent Thornton,11,thorntr01,1988,Trent Thornton,thorntr01,automatic_bbref_match +11227,Trevor Megill,11,megiltr01,1294,Trevor Megill,megiltr01,automatic_bbref_match +11228,Trevor Richards,11,richatr01,1646,Trevor Richards,richatr01,automatic_bbref_match +11229,Trevor Story,11,storytr01,1914,Trevor Story,storytr01,automatic_bbref_match +11230,Trevor Williams,11,willitr01,2156,Trevor Williams,willitr01,automatic_bbref_match +11233,Triston Casas,11,casastr01,335,Triston Casas,casastr01,automatic_bbref_match +11236,Ty Blach,11,blachty01,202,Ty Blach,blachty01,automatic_bbref_match +11237,Ty France,11,francty01,642,Ty France,francty01,automatic_bbref_match +11238,Tyler Alexander,11,alexaty01,37,Tyler Alexander,alexaty01,automatic_bbref_match +11239,Tyler Anderson,11,anderty01,68,Tyler Anderson,anderty01,automatic_bbref_match +11240,Tyler Freeman,11,freemty01,654,Tyler Freeman,freemty01,automatic_bbref_match +11241,Tyler Glasnow,11,glasnty01,726,Tyler Glasnow,glasnty01,automatic_bbref_match +11242,Tyler Holton,11,holtoty01,922,Tyler Holton,holtoty01,automatic_bbref_match +11243,Tyler Nevin,11,nevinty01,1417,Tyler Nevin,nevinty01,automatic_bbref_match +11245,Tyler Rogers,11,rogerty01,1691,Tyler Rogers,rogerty01,automatic_bbref_match +11246,Tyler Soderstrom,11,soderty01,1864,Tyler Soderstrom,soderty01,automatic_bbref_match +11247,Tyler Stephenson,11,stephty01,1905,Tyler Stephenson,stephty01,automatic_bbref_match +11248,Tyler Wells,11,wellsty01,2132,Tyler Wells,wellsty01,automatic_bbref_match +11249,Tylor Megill,11,megilty01,1295,Tylor Megill,megilty01,automatic_bbref_match +11250,Tyrone Taylor,11,tayloty01,1965,Tyrone Taylor,tayloty01,automatic_bbref_match +11251,Vaughn Grissom,11,grissva01,777,Vaughn Grissom,grissva01,automatic_bbref_match +11252,Victor Caratini,11,caratvi01,325,Victor Caratini,caratvi01,automatic_bbref_match +11254,Vinnie Pasquantino,11,pasquvi01,1503,Vinnie Pasquantino,pasquvi01,automatic_bbref_match +11255,Vladimir Guerrero Jr,11,guerrvl02,789,Vladimir Guerrero Jr,guerrvl02,automatic_bbref_match +11256,Wade Miley,11,mileywa01,1318,Wade Miley,mileywa01,automatic_bbref_match +11258,Wandy Peralta,11,peralwa01,1524,Wandy Peralta,peralwa01,automatic_bbref_match +11259,Whit Merrifield,11,merriwh01,1309,Whit Merrifield,merriwh01,automatic_bbref_match +11260,Will Benson,11,bensowi01,179,Will Benson,bensowi01,automatic_bbref_match +11261,Will Brennan,11,brennwi02,250,Will Brennan,brennwi02,automatic_bbref_match +11263,Will Smith,11,smithwi05,1841,Will Smith,smithwi05,automatic_bbref_match +11264,Will Vest,11,vestwi01,2074,Will Vest,vestwi01,automatic_bbref_match +11265,Willi Castro,11,castrwi01,352,Willi Castro,castrwi01,automatic_bbref_match +11266,William Contreras,11,contrwi02,411,William Contreras,contrwi02,automatic_bbref_match +11267,Willson Contreras,11,contrwi01,410,Willson Contreras,contrwi01,automatic_bbref_match +11268,Willy Adames,11,adamewi01,14,Willy Adames,adamewi01,automatic_bbref_match +11269,Wilmer Flores,11,florewi01,627,Wilmer Flores,florewi01,automatic_bbref_match +11270,Wilyer Abreu,11,abreuwi02,10,Wilyer Abreu,abreuwi02,automatic_bbref_match +11271,Xander Bogaerts,11,bogaexa01,216,Xander Bogaerts,bogaexa01,automatic_bbref_match +11273,Xzavion Curry,11,curryxz01,454,Xzavion Curry,curryxz01,automatic_bbref_match +11274,Yainer Diaz,11,diazya02,511,Yainer Diaz,diazya02,automatic_bbref_match +11275,Yan Gomes,11,gomesya01,731,Yan Gomes,gomesya01,automatic_bbref_match +11276,Yandy Diaz,11,diazya01,507,Yandy Diaz,diazya01,automatic_bbref_match +11277,Yasmani Grandal,11,grandya01,761,Yasmani Grandal,grandya01,automatic_bbref_match +11278,Yency Almonte,11,almonye01,50,Yency Almonte,almonye01,automatic_bbref_match +11279,Yennier Cano,11,canoye01,320,Yennier Cano,canoye01,automatic_bbref_match +11280,Yimi Garcia,11,garciyi01,680,Yimi Garcia,garciyi01,automatic_bbref_match +11281,Yoan Moncada,11,moncayo01,1348,Yoan Moncada,moncayo01,automatic_bbref_match +11282,Yordan Alvarez,11,alvaryo01,61,Yordan Alvarez,alvaryo01,automatic_bbref_match +11284,Yu Darvish,11,darviyu01,462,Yu Darvish,darviyu01,automatic_bbref_match +11286,Yunior Marte,11,marteyu01,1211,Yunior Marte,marteyu01,automatic_bbref_match +11287,Yusei Kikuchi,11,kikucyu01,1040,Yusei Kikuchi,kikucyu01,automatic_bbref_match +11288,Zac Gallen,11,galleza01,673,Zac Gallen,galleza01,automatic_bbref_match +11290,Zach Eflin,11,eflinza01,562,Zach Eflin,eflinza01,automatic_bbref_match +11291,Zach McKinstry,11,mckinza01,1284,Zach McKinstry,mckinza01,automatic_bbref_match +11293,Zach Neto,11,netoza01,1414,Zach Neto,netoza01,automatic_bbref_match +11295,Zach Remillard,11,remilza01,1629,Zach Remillard,remilza01,automatic_bbref_match +11296,Zack Gelof,11,gelofza01,709,Zack Gelof,gelofza01,automatic_bbref_match +11298,Zack Littell,11,litteza01,1127,Zack Littell,litteza01,automatic_bbref_match +11299,Zack Short,11,shortza01,1818,Zack Short,shortza01,automatic_bbref_match +11300,Zack Thompson,11,thompza02,1985,Zack Thompson,thompza02,automatic_bbref_match +11301,Zack Wheeler,11,wheelza01,2139,Zack Wheeler,wheelza01,automatic_bbref_match +11306,Alika Williams,11,willial04,2161,Alika Williams,willial04,automatic_bbref_match +11307,Amir Garrett,11,garream01,698,Amir Garrett,garream01,automatic_bbref_match +11313,Anthony Rendon,11,rendoan01,1630,Anthony Rendon,rendoan01,automatic_bbref_match +11314,Austin Hedges,11,hedgeau01,848,Austin Hedges,hedgeau01,automatic_bbref_match +11316,Avisail Garcia,11,garciav01,678,Avisail Garcia,garciav01,automatic_bbref_match +11317,Ben Rortvedt,11,rortvbe01,1709,Ben Rortvedt,rortvbe01,automatic_bbref_match +11319,Blake Perkins,11,perkibl01,1543,Blake Perkins,perkibl01,automatic_bbref_match +11320,Bowden Francis,11,francbo01,644,Bowden Francis,francbo01,automatic_bbref_match +11324,Brayan Rocchio,11,rocchbr01,1667,Brayan Rocchio,rocchbr01,automatic_bbref_match +11327,Brett Sullivan,11,sullibr01,1941,Brett Sullivan,sullibr01,automatic_bbref_match +11328,Brett Wisely,11,wiselbr01,2182,Brett Wisely,wiselbr01,automatic_bbref_match +11329,Bryce Jarvis,11,jarvibr01,970,Bryce Jarvis,jarvibr01,automatic_bbref_match +11330,Bubba Thompson,11,thompbu01,1986,Bubba Thompson,thompbu01,automatic_bbref_match +11331,Calvin Faucher,11,fauchca01,599,Calvin Faucher,fauchca01,automatic_bbref_match +11335,Chris Devenski,11,devench02,498,Chris Devenski,devench02,automatic_bbref_match +11338,Cody Bradford,11,bradfco01,233,Cody Bradford,bradfco01,automatic_bbref_match +11339,Colin Selby,11,selbyco01,1797,Colin Selby,selbyco01,automatic_bbref_match +11340,Collin Snider,11,snideco01,1862,Collin Snider,snideco01,automatic_bbref_match +11341,Conner Capel,11,capelco01,323,Conner Capel,capelco01,automatic_bbref_match +11342,Connor Brogdon,11,brogdco01,261,Connor Brogdon,brogdco01,automatic_bbref_match +11343,Cooper Criswell,11,criswco01,438,Cooper Criswell,criswco01,automatic_bbref_match +11346,Curtis Mead,11,meadcu01,1289,Curtis Mead,meadcu01,automatic_bbref_match +11348,Dane Myers,11,myersda01,1396,Dane Myers,myersda01,automatic_bbref_match +11349,Danny Mendick,11,mendida01,1302,Danny Mendick,mendida01,automatic_bbref_match +11351,Dinelson Lamet,11,lametdi01,1090,Dinelson Lamet,lametdi01,automatic_bbref_match +11352,Dominic Canzone,11,canzodo01,322,Dominic Canzone,canzodo01,automatic_bbref_match +11353,Dominic Leone,11,leonedo01,1116,Dominic Leone,leonedo01,automatic_bbref_match +11357,Erasmo Ramirez,11,ramirer02,1604,Erasmo Ramirez,ramirer02,automatic_bbref_match +11362,Grant Anderson,11,andergr01,75,Grant Anderson,andergr01,automatic_bbref_match +11365,Hunter Gaddis,11,gaddihu01,669,Hunter Gaddis,gaddihu01,automatic_bbref_match +11366,Hunter Goodman,11,goodmhu01,747,Hunter Goodman,goodmhu01,automatic_bbref_match +11370,Jared Walsh,11,walshja01,2111,Jared Walsh,walshja01,automatic_bbref_match +11371,Jay Jackson,11,jacksja01,959,Jay Jackson,jacksja01,automatic_bbref_match +11372,Jesse Chavez,11,chaveje01,370,Jesse Chavez,chaveje01,automatic_bbref_match +11374,Jhoan Duran,11,duranjh01,550,Jhoan Duran,duranjh01,automatic_bbref_match +11377,Joey Bart,11,bartjo01,142,Joey Bart,bartjo01,automatic_bbref_match +11379,Jon Singleton,11,singljo02,1828,Jon Singleton,singljo02,automatic_bbref_match +11380,Jonathan Aranda,11,arandjo01,82,Jonathan Aranda,arandjo01,automatic_bbref_match +11384,Jorge Lopez,11,lopezjo02,1144,Jorge Lopez,lopezjo02,automatic_bbref_match +11385,Jorge Polanco,11,polanjo01,1570,Jorge Polanco,polanjo01,automatic_bbref_match +11386,Jose Miranda,11,miranjo01,1337,Jose Miranda,miranjo01,automatic_bbref_match +11388,Josh Fleming,11,flemijo01,623,Josh Fleming,flemijo01,automatic_bbref_match +11394,Keaton Winn,11,winnke01,2179,Keaton Winn,winnke01,automatic_bbref_match +11395,Keegan Akin,11,akinke01,27,Keegan Akin,akinke01,automatic_bbref_match +11396,Keegan Thompson,11,thompke02,1982,Keegan Thompson,thompke02,automatic_bbref_match +11399,Kevin Herget,11,hergeke01,864,Kevin Herget,hergeke01,automatic_bbref_match +11400,Kevin Smith,11,smithke05,1854,Kevin Smith,smithke05,automatic_bbref_match +11401,Kody Clemens,11,clemeko01,390,Kody Clemens,clemeko01,automatic_bbref_match +11402,Kyle Farmer,11,farmeky01,598,Kyle Farmer,farmeky01,automatic_bbref_match +11403,Kyle Harrison,11,harriky01,830,Kyle Harrison,harriky01,automatic_bbref_match +11405,Luke Jackson,11,jackslu01,960,Luke Jackson,jackslu01,automatic_bbref_match +11407,Matt Barnes,11,barnema01,131,Matt Barnes,barnema01,automatic_bbref_match +11408,Matt Carasiti,11,carasma01,324,Matt Carasiti,carasma01,automatic_bbref_match +11409,Matt Mervis,11,mervima01,1312,Matt Mervis,mervima01,automatic_bbref_match +11410,Matt Moore,11,moorema02,1357,Matt Moore,moorema02,automatic_bbref_match +11411,Matt Waldron,11,waldrma01,2102,Matt Waldron,waldrma01,automatic_bbref_match +11413,Michael Busch,11,buschmi02,288,Michael Busch,buschmi02,automatic_bbref_match +11416,Miguel Andujar,11,andujmi01,78,Miguel Andujar,andujmi01,automatic_bbref_match +11418,Miles Mastrobuoni,11,mastrmi01,1232,Miles Mastrobuoni,mastrmi01,automatic_bbref_match +11420,Nestor Cortes Jr,11,cortene01,421,Nestor Cortes Jr,cortene01,automatic_bbref_match +11421,Nick Gonzales,11,gonzani01,736,Nick Gonzales,gonzani01,automatic_bbref_match +11422,Nick Gordon,11,gordoni01,752,Nick Gordon,gordoni01,automatic_bbref_match +11423,Nick Loftin,11,loftini01,1136,Nick Loftin,loftini01,automatic_bbref_match +11424,Noah Davis,11,davisno01,472,Noah Davis,davisno01,automatic_bbref_match +11428,Paul DeJong,11,dejonpa01,485,Paul DeJong,dejonpa01,automatic_bbref_match +11429,Peter Strzelecki,11,strzepe01,1930,Peter Strzelecki,strzepe01,automatic_bbref_match +11431,Randy Vasquez,11,vasqura02,2060,Randy Vasquez,vasqura02,automatic_bbref_match +11432,Rene Pinto,11,pintore02,1561,Rene Pinto,pintore02,automatic_bbref_match +11433,Romy Gonzalez,11,gonzaro01,745,Romy Gonzalez,gonzaro01,automatic_bbref_match +11434,Ronel Blanco,11,blancro01,208,Ronel Blanco,blancro01,automatic_bbref_match +11436,Ryan Thompson,11,thompry02,1983,Ryan Thompson,thompry02,automatic_bbref_match +11437,Ryan Weathers,11,weathry01,2123,Ryan Weathers,weathry01,automatic_bbref_match +11438,Samad Taylor,11,taylosa04,1969,Samad Taylor,taylosa04,automatic_bbref_match +11439,Sean Hjelle,11,hjellse01,906,Sean Hjelle,hjellse01,automatic_bbref_match +11440,Sonny Gray,11,grayso01,765,Sonny Gray,grayso01,automatic_bbref_match +11441,Spencer Turnbull,11,turnbsp01,2028,Spencer Turnbull,turnbsp01,automatic_bbref_match +11444,Tim Herrin,11,herriti01,886,Tim Herrin,herriti01,automatic_bbref_match +11447,Trevor Larnach,11,larnatr01,1094,Trevor Larnach,larnatr01,automatic_bbref_match +11448,Tucker Barnhart,11,barnhtu01,135,Tucker Barnhart,barnhtu01,automatic_bbref_match +11450,Victor Gonzalez,11,gonzavi02,743,Victor Gonzalez,gonzavi02,automatic_bbref_match +11451,Victor Robles,11,roblevi01,1666,Victor Robles,roblevi01,automatic_bbref_match +11452,Vidal Brujan,11,brujavi01,272,Vidal Brujan,brujavi01,automatic_bbref_match +11454,Willie Calhoun,11,calhowi01,307,Willie Calhoun,calhowi01,automatic_bbref_match +11456,Yohan Ramirez,11,ramiryo01,1611,Yohan Ramirez,ramiryo01,automatic_bbref_match +11458,Aaron Bummer,12,bummeaa01,279,Aaron Bummer,bummeaa01,automatic_bbref_match +11459,Aaron Civale,12,civalaa01,383,Aaron Civale,civalaa01,automatic_bbref_match +11460,Aaron Hicks,12,hicksaa01,892,Aaron Hicks,hicksaa01,automatic_bbref_match +11461,Aaron Judge,12,judgeaa01,3,Aaron Judge,judgeaa01,automatic_bbref_match +11462,Aaron Nola,12,nolaaa01,1433,Aaron Nola,nolaaa01,automatic_bbref_match +11463,Aaron Schunk,12,schunaa01,1783,Aaron Schunk,schunaa01,automatic_bbref_match +11464,Abraham Toro,12,toroab01,2001,Abraham Toro,toroab01,automatic_bbref_match +11465,Adam Cimber,12,cimbead01,380,Adam Cimber,cimbead01,automatic_bbref_match +11466,Adam Duvall,12,duvalad01,553,Adam Duvall,duvalad01,automatic_bbref_match +11467,Adam Frazier,12,fraziad01,648,Adam Frazier,fraziad01,automatic_bbref_match +11468,Adam Mazur,12,mazurad01,1256,Adam Mazur,mazurad01,automatic_bbref_match +11469,Adam Oller,12,ollerad01,1459,Adam Oller,ollerad01,automatic_bbref_match +11470,Adam Ottavino,12,ottavad01,1475,Adam Ottavino,ottavad01,automatic_bbref_match +11471,Addison Barger,12,bargead01,127,Addison Barger,bargead01,automatic_bbref_match +11472,Adley Rutschman,12,rutscad01,1729,Adley Rutschman,rutscad01,automatic_bbref_match +11473,Adolis Garcia,12,garciad02,690,Adolis Garcia,garciad02,automatic_bbref_match +11474,Adrian Del Castillo,12,delcaad01,486,Adrian Del Castillo,delcaad01,automatic_bbref_match +11475,Adrian Houser,12,housead01,928,Adrian Houser,housead01,automatic_bbref_match +11476,Adrian Morejon,12,morejad01,1363,Adrian Morejon,morejad01,automatic_bbref_match +11477,AJ Minter,12,minteaj01,1336,AJ Minter,minteaj01,automatic_bbref_match +11478,AJ Puk,12,pukaj01,1592,AJ Puk,pukaj01,automatic_bbref_match +11479,Akil Baddoo,12,baddoak01,109,Akil Baddoo,baddoak01,automatic_bbref_match +11480,Alan Trejo,12,trejoal01,2012,Alan Trejo,trejoal01,automatic_bbref_match +11481,Albert Suarez,12,suareal01,1933,Albert Suarez,suareal01,automatic_bbref_match +11482,Alec Bohm,12,bohmal01,217,Alec Bohm,bohmal01,automatic_bbref_match +11483,Alec Burleson,12,burleal01,285,Alec Burleson,burleal01,automatic_bbref_match +11484,Alec Marsh,12,marshal01,1206,Alec Marsh,marshal01,automatic_bbref_match +11485,Alejandro Kirk,12,kirkal01,1056,Alejandro Kirk,kirkal01,automatic_bbref_match +11486,Alek Thomas,12,thomaal01,1979,Alek Thomas,thomaal01,automatic_bbref_match +11487,Alex Bregman,12,bregmal01,248,Alex Bregman,bregmal01,automatic_bbref_match +11488,Alex Call,12,callal02,308,Alex Call,callal02,automatic_bbref_match +11489,Alex Faedo,12,faedoal01,591,Alex Faedo,faedoal01,automatic_bbref_match +11490,Alex Jackson,12,jacksal02,961,Alex Jackson,jacksal02,automatic_bbref_match +11491,Alex Kirilloff,12,kirilal01,1055,Alex Kirilloff,kirilal01,automatic_bbref_match +11492,Alex Verdugo,12,verdual01,2069,Alex Verdugo,verdual01,automatic_bbref_match +11493,Alex Vesia,12,vesiaal01,2072,Alex Vesia,vesiaal01,automatic_bbref_match +11494,Alex Wood,12,woodal02,2193,Alex Wood,woodal02,automatic_bbref_match +11495,Alexis Diaz,12,diazal03,509,Alexis Diaz,diazal03,automatic_bbref_match +11496,Ali Sanchez,12,sanchal04,1747,Ali Sanchez,sanchal04,automatic_bbref_match +11497,Alika Williams,12,willial04,2161,Alika Williams,willial04,automatic_bbref_match +11498,Amed Rosario,12,rosaram01,1711,Amed Rosario,rosaram01,automatic_bbref_match +11499,Andre Pallante,12,pallaan01,1492,Andre Pallante,pallaan01,automatic_bbref_match +11500,Andres Chaparro,12,chapaan01,365,Andres Chaparro,chapaan01,automatic_bbref_match +11501,Andres Gimenez,12,gimenan01,721,Andres Gimenez,gimenan01,automatic_bbref_match +11502,Andres Munoz,12,munozan01,1384,Andres Munoz,munozan01,automatic_bbref_match +11503,Andrew Abbott,12,abbotan01,4,Andrew Abbott,abbotan01,automatic_bbref_match +11504,Andrew Benintendi,12,beninan01,177,Andrew Benintendi,beninan01,automatic_bbref_match +11505,Andrew Chafin,12,chafian01,363,Andrew Chafin,chafian01,automatic_bbref_match +11506,Andrew Heaney,12,heanean01,843,Andrew Heaney,heanean01,automatic_bbref_match +11507,Andrew Kittredge,12,kittran01,1057,Andrew Kittredge,kittran01,automatic_bbref_match +11508,Andrew Knizner,12,kniznan01,1065,Andrew Knizner,kniznan01,automatic_bbref_match +11509,Andrew McCutchen,12,mccutan01,1272,Andrew McCutchen,mccutan01,automatic_bbref_match +11510,Andrew Nardi,12,nardian01,1400,Andrew Nardi,nardian01,automatic_bbref_match +11511,Andrew Vaughn,12,vaughan01,2061,Andrew Vaughn,vaughan01,automatic_bbref_match +11512,Andruw Monasterio,12,monasan01,1347,Andruw Monasterio,monasan01,automatic_bbref_match +11513,Andy Ibanez,12,ibanean01,948,Andy Ibanez,ibanean01,automatic_bbref_match +11514,Andy Pages,12,pagesan01,1485,Andy Pages,pagesan01,automatic_bbref_match +11515,Angel Chivilli,12,chivian01,376,Angel Chivilli,chivian01,automatic_bbref_match +11516,Angel Martinez,12,martian02,1228,Angel Martinez,martian02,automatic_bbref_match +11517,Angel Zerpa,12,zerpaan01,2224,Angel Zerpa,zerpaan01,automatic_bbref_match +11518,Anthony Banda,12,bandaan01,121,Anthony Banda,bandaan01,automatic_bbref_match +11519,Anthony Bender,12,bendean01,176,Anthony Bender,bendean01,automatic_bbref_match +11520,Anthony Molina,12,molinan01,1345,Anthony Molina,molinan01,automatic_bbref_match +11521,Anthony Rendon,12,rendoan01,1630,Anthony Rendon,rendoan01,automatic_bbref_match +11522,Anthony Rizzo,12,rizzoan01,1658,Anthony Rizzo,rizzoan01,automatic_bbref_match +11523,Anthony Santander,12,santaan02,1764,Anthony Santander,santaan02,automatic_bbref_match +11524,Anthony Volpe,12,volpean01,2088,Anthony Volpe,volpean01,automatic_bbref_match +11525,Aroldis Chapman,12,chapmar01,366,Aroldis Chapman,chapmar01,automatic_bbref_match +11526,Austin Adams,12,adamsau02,16,Austin Adams,adamsau02,automatic_bbref_match +11527,Austin Barnes,12,barneau01,132,Austin Barnes,barneau01,automatic_bbref_match +11528,Austin Gomber,12,gombeau01,730,Austin Gomber,gombeau01,automatic_bbref_match +11529,Austin Hays,12,haysau01,839,Austin Hays,haysau01,automatic_bbref_match +11530,Austin Hedges,12,hedgeau01,848,Austin Hedges,hedgeau01,automatic_bbref_match +11531,Austin Martin,12,martiau01,1220,Austin Martin,martiau01,automatic_bbref_match +11532,Austin Riley,12,rileyau01,1649,Austin Riley,rileyau01,automatic_bbref_match +11533,Austin Slater,12,slateau01,1838,Austin Slater,slateau01,automatic_bbref_match +11534,Austin Voth,12,vothau01,2091,Austin Voth,vothau01,automatic_bbref_match +11535,Austin Wells,12,wellsau01,2131,Austin Wells,wellsau01,automatic_bbref_match +11536,Bailey Falter,12,falteba01,594,Bailey Falter,falteba01,automatic_bbref_match +11537,Bailey Ober,12,oberba01,1447,Bailey Ober,oberba01,automatic_bbref_match +11538,Beau Brieske,12,briesbe01,256,Beau Brieske,briesbe01,automatic_bbref_match +11539,Ben Brown,12,brownbe02,266,Ben Brown,brownbe02,automatic_bbref_match +11541,Ben Joyce,12,joycebe01,998,Ben Joyce,joycebe01,automatic_bbref_match +11542,Ben Lively,12,livelbe01,1130,Ben Lively,livelbe01,automatic_bbref_match +11543,Ben Rice,12,ricebe01,1643,Ben Rice,ricebe01,automatic_bbref_match +11544,Ben Rortvedt,12,rortvbe01,1709,Ben Rortvedt,rortvbe01,automatic_bbref_match +11546,Blake Snell,12,snellbl01,1861,Blake Snell,snellbl01,automatic_bbref_match +11547,Blake Treinen,12,treinbl01,2011,Blake Treinen,treinbl01,automatic_bbref_match +11548,Blaze Alexander,12,alexabl01,39,Blaze Alexander,alexabl01,automatic_bbref_match +11549,Bligh Madris,12,madribl01,1179,Bligh Madris,madribl01,automatic_bbref_match +11550,Bo Bichette,12,bichebo01,190,Bo Bichette,bichebo01,automatic_bbref_match +11551,Bo Naylor,12,naylobo01,1405,Bo Naylor,naylobo01,automatic_bbref_match +11552,Bobby Dalbec,12,dalbebo01,458,Bobby Dalbec,dalbebo01,automatic_bbref_match +11553,Bobby Miller,12,millebo06,1326,Bobby Miller,millebo06,automatic_bbref_match +11554,Bobby Witt Jr,12,wittbo02,2184,Bobby Witt Jr,wittbo02,automatic_bbref_match +11555,Bowden Francis,12,francbo01,644,Bowden Francis,francbo01,automatic_bbref_match +11556,Brad Keller,12,kellebr01,1016,Brad Keller,kellebr01,automatic_bbref_match +11557,Braden Shewmake,12,shewmbr01,1815,Braden Shewmake,shewmbr01,automatic_bbref_match +11558,Bradley Blalock,12,blalobr01,206,Bradley Blalock,blalobr01,automatic_bbref_match +11559,Brady Singer,12,singebr01,1827,Brady Singer,singebr01,automatic_bbref_match +11560,Brandon Bielak,12,bielabr01,195,Brandon Bielak,bielabr01,automatic_bbref_match +11561,Brandon Crawford,12,crawfbr01,430,Brandon Crawford,crawfbr01,automatic_bbref_match +11562,Brandon Drury,12,drurybr01,535,Brandon Drury,drurybr01,automatic_bbref_match +11563,Brandon Lowe,12,lowebr01,1156,Brandon Lowe,lowebr01,automatic_bbref_match +11564,Brandon Marsh,12,marshbr02,1205,Brandon Marsh,marshbr02,automatic_bbref_match +11565,Brandon Nimmo,12,nimmobr01,1425,Brandon Nimmo,nimmobr01,automatic_bbref_match +11566,Brandon Pfaadt,12,pfaadbr01,1551,Brandon Pfaadt,pfaadbr01,automatic_bbref_match +11567,Brant Hurter,12,hurtebr01,942,Brant Hurter,hurtebr01,automatic_bbref_match +11568,Braxton Garrett,12,garrebr01,701,Braxton Garrett,garrebr01,automatic_bbref_match +11569,Brayan Bello,12,bellobr01,171,Brayan Bello,bellobr01,automatic_bbref_match +11570,Brayan Rocchio,12,rocchbr01,1667,Brayan Rocchio,rocchbr01,automatic_bbref_match +11571,Brenan Hanifee,12,hanifbr01,817,Brenan Hanifee,hanifbr01,automatic_bbref_match +11572,Brendan Donovan,12,donovbr01,527,Brendan Donovan,donovbr01,automatic_bbref_match +11573,Brendan Rodgers,12,rodgebr02,1668,Brendan Rodgers,rodgebr02,automatic_bbref_match +11574,Brendon Little,12,littlbr02,1128,Brendon Little,littlbr02,automatic_bbref_match +11575,Brennan Bernardino,12,bernabr01,181,Brennan Bernardino,bernabr01,automatic_bbref_match +11576,Brent Honeywell,12,honeybr01,923,Brent Honeywell,honeybr01,automatic_bbref_match +11577,Brent Rooker,12,rookebr01,1708,Brent Rooker,rookebr01,automatic_bbref_match +11578,Brent Suter,12,suterbr01,1943,Brent Suter,suterbr01,automatic_bbref_match +11579,Brenton Doyle,12,doylebr02,531,Brenton Doyle,doylebr02,automatic_bbref_match +11580,Brett Baty,12,batybr01,149,Brett Baty,batybr01,automatic_bbref_match +11581,Brett Harris,12,harribr02,828,Brett Harris,harribr02,automatic_bbref_match +11582,Brett Wisely,12,wiselbr01,2182,Brett Wisely,wiselbr01,automatic_bbref_match +11583,Brian Serven,12,servebr01,1803,Brian Serven,servebr01,automatic_bbref_match +11584,Brice Turang,12,turanbr02,2026,Brice Turang,turanbr02,automatic_bbref_match +11585,Brock Burke,12,burkebr01,284,Brock Burke,burkebr01,automatic_bbref_match +11586,Brooks Baldwin,12,baldwbr01,120,Brooks Baldwin,baldwbr01,automatic_bbref_match +11587,Brooks Lee,12,leebr02,1110,Brooks Lee,leebr02,automatic_bbref_match +11588,Bryan Abreu,12,abreubr01,8,Bryan Abreu,abreubr01,automatic_bbref_match +11589,Bryan Baker,12,bakerbr01,117,Bryan Baker,bakerbr01,automatic_bbref_match +11590,Bryan De La Cruz,12,delacbr01,479,Bryan De La Cruz,delacbr01,automatic_bbref_match +11591,Bryan Hoeing,12,hoeinbr01,908,Bryan Hoeing,hoeinbr01,automatic_bbref_match +11592,Bryan Hudson,12,hudsobr01,935,Bryan Hudson,hudsobr01,automatic_bbref_match +11593,Bryan King,12,kingbr02,1046,Bryan King,kingbr02,automatic_bbref_match +11594,Bryan Ramos,12,ramosbr01,1616,Bryan Ramos,ramosbr01,automatic_bbref_match +11595,Bryan Reynolds,12,reynobr01,1641,Bryan Reynolds,reynobr01,automatic_bbref_match +11596,Bryan Sammons,12,sammobr01,1741,Bryan Sammons,sammobr01,automatic_bbref_match +11598,Bryce Elder,12,elderbr01,564,Bryce Elder,elderbr01,automatic_bbref_match +11599,Bryce Harper,12,harpebr03,823,Bryce Harper,harpebr03,automatic_bbref_match +11600,Bryce Jarvis,12,jarvibr01,970,Bryce Jarvis,jarvibr01,automatic_bbref_match +11601,Bryce Johnson,12,johnsbr03,987,Bryce Johnson,johnsbr03,automatic_bbref_match +11602,Bryce Miller,12,millebr04,1328,Bryce Miller,millebr04,automatic_bbref_match +11603,Bryse Wilson,12,wilsobr02,2171,Bryse Wilson,wilsobr02,automatic_bbref_match +11604,Bryson Stott,12,stottbr01,1915,Bryson Stott,stottbr01,automatic_bbref_match +11605,Buck Farmer,12,farmebu01,597,Buck Farmer,farmebu01,automatic_bbref_match +11606,Burch Smith,12,smithbu03,1844,Burch Smith,smithbu03,automatic_bbref_match +11607,Byron Buxton,12,buxtoby01,295,Byron Buxton,buxtoby01,automatic_bbref_match +11608,Cade Povich,12,povicca01,1580,Cade Povich,povicca01,automatic_bbref_match +11689,Dane Myers,12,myersda01,1396,Dane Myers,myersda01,automatic_bbref_match +11609,Cade Smith,12,smithca06,1853,Cade Smith,smithca06,automatic_bbref_match +11610,Cal Quantrill,12,quantca01,1593,Cal Quantrill,quantca01,automatic_bbref_match +11611,Cal Raleigh,12,raleica01,1600,Cal Raleigh,raleica01,automatic_bbref_match +11612,Caleb Ferguson,12,ferguca01,605,Caleb Ferguson,ferguca01,automatic_bbref_match +11613,Caleb Thielbar,12,thielca01,1977,Caleb Thielbar,thielca01,automatic_bbref_match +11614,Calvin Faucher,12,fauchca01,599,Calvin Faucher,fauchca01,automatic_bbref_match +11615,Cam Booser,12,booseca01,221,Cam Booser,booseca01,automatic_bbref_match +11616,Camilo Doval,12,dovalca01,529,Camilo Doval,dovalca01,automatic_bbref_match +11617,Carlos Carrasco,12,carraca01,331,Carlos Carrasco,carraca01,automatic_bbref_match +11618,Carlos Correa,12,correca01,420,Carlos Correa,correca01,automatic_bbref_match +11619,Carlos Estevez,12,estevca01,585,Carlos Estevez,estevca01,automatic_bbref_match +11620,Carlos Hernandez,12,hernaca04,880,Carlos Hernandez,hernaca04,automatic_bbref_match +11621,Carlos Rodon,12,rodonca01,1670,Carlos Rodon,rodonca01,automatic_bbref_match +11622,Carlos Santana,12,santaca01,1759,Carlos Santana,santaca01,automatic_bbref_match +11623,Carmen Mlodzinski,12,mlodzca01,1343,Carmen Mlodzinski,mlodzca01,automatic_bbref_match +11624,Carson Fulmer,12,fulmeca01,667,Carson Fulmer,fulmeca01,automatic_bbref_match +11625,Carson Kelly,12,kellyca02,1023,Carson Kelly,kellyca02,automatic_bbref_match +11626,Carson Spiers,12,spierca01,1887,Carson Spiers,spierca01,automatic_bbref_match +11627,Casey Mize,12,mizeca01,1342,Casey Mize,mizeca01,automatic_bbref_match +11628,Casey Schmitt,12,schmica01,1775,Casey Schmitt,schmica01,automatic_bbref_match +11629,Cavan Biggio,12,biggica01,196,Cavan Biggio,biggica01,automatic_bbref_match +11630,Ceddanne Rafaela,12,rafaece01,1597,Ceddanne Rafaela,rafaece01,automatic_bbref_match +11631,Cedric Mullins,12,mullice01,1381,Cedric Mullins,mullice01,automatic_bbref_match +11632,Chad Green,12,greench03,768,Chad Green,greench03,automatic_bbref_match +11633,Chad Kuhl,12,kuhlch01,1078,Chad Kuhl,kuhlch01,automatic_bbref_match +11634,Charlie Blackmon,12,blackch02,205,Charlie Blackmon,blackch02,automatic_bbref_match +11635,Charlie Morton,12,mortoch02,1375,Charlie Morton,mortoch02,automatic_bbref_match +11636,Chas McCormick,12,mccorch01,1269,Chas McCormick,mccorch01,automatic_bbref_match +11637,Chase Anderson,12,anderch01,67,Chase Anderson,anderch01,automatic_bbref_match +11638,Chris Bassitt,12,bassich01,146,Chris Bassitt,bassich01,automatic_bbref_match +11639,Chris Devenski,12,devench02,498,Chris Devenski,devench02,automatic_bbref_match +11640,Chris Flexen,12,flexech01,626,Chris Flexen,flexech01,automatic_bbref_match +11641,Chris Martin,12,martich02,1214,Chris Martin,martich02,automatic_bbref_match +11642,Chris Paddack,12,paddach01,1483,Chris Paddack,paddach01,automatic_bbref_match +11644,Chris Sale,12,salech01,1739,Chris Sale,salech01,automatic_bbref_match +11645,Chris Stratton,12,stratch01,1922,Chris Stratton,stratch01,automatic_bbref_match +11646,Chris Taylor,12,tayloch03,1964,Chris Taylor,tayloch03,automatic_bbref_match +11647,Christian Bethancourt,12,bethach01,185,Christian Bethancourt,bethach01,automatic_bbref_match +11648,Christian Encarnacion Strand,12,encarch01,573,Christian Encarnacion Strand,encarch01,automatic_bbref_match +11649,Christian Scott,12,scottch01,1789,Christian Scott,scottch01,automatic_bbref_match +11650,Christian Vazquez,12,vazquch01,2063,Christian Vazquez,vazquch01,automatic_bbref_match +11651,Christian Walker,12,walkech02,2104,Christian Walker,walkech02,automatic_bbref_match +11652,Christian Yelich,12,yelicch01,2212,Christian Yelich,yelicch01,automatic_bbref_match +11653,Christopher Morel,12,morelch01,1364,Christopher Morel,morelch01,automatic_bbref_match +11654,Chuckie Robinson,12,robinch04,1664,Chuckie Robinson,robinch04,automatic_bbref_match +11655,Cionel Perez,12,perezci01,1540,Cionel Perez,perezci01,automatic_bbref_match +11656,CJ Abrams,12,abramcj01,6,CJ Abrams,abramcj01,automatic_bbref_match +11657,Clarke Schmidt,12,schmicl01,1774,Clarke Schmidt,schmicl01,automatic_bbref_match +11658,Clay Holmes,12,holmecl01,919,Clay Holmes,holmecl01,automatic_bbref_match +11659,Clayton Kershaw,12,kershcl01,1034,Clayton Kershaw,kershcl01,automatic_bbref_match +11660,Cody Bellinger,12,bellico01,170,Cody Bellinger,bellico01,automatic_bbref_match +11661,Cody Bradford,12,bradfco01,233,Cody Bradford,bradfco01,automatic_bbref_match +11662,Cole Irvin,12,irvinco01,954,Cole Irvin,irvinco01,automatic_bbref_match +11663,Cole Ragans,12,raganco01,1598,Cole Ragans,raganco01,automatic_bbref_match +11664,Cole Sands,12,sandsco01,1755,Cole Sands,sandsco01,automatic_bbref_match +11666,Colin Poche,12,pocheco01,1568,Colin Poche,pocheco01,automatic_bbref_match +11667,Colin Rea,12,reaco01,1621,Colin Rea,reaco01,automatic_bbref_match +11668,Collin Snider,12,snideco01,1862,Collin Snider,snideco01,automatic_bbref_match +11669,Colt Keith,12,keithco01,1013,Colt Keith,keithco01,automatic_bbref_match +11670,Colten Brewer,12,breweco01,252,Colten Brewer,breweco01,automatic_bbref_match +11671,Colton Cowser,12,cowseco01,426,Colton Cowser,cowseco01,automatic_bbref_match +11672,Connor Joe,12,joeco01,983,Connor Joe,joeco01,automatic_bbref_match +11673,Connor Norby,12,norbyco01,1437,Connor Norby,norbyco01,automatic_bbref_match +11674,Connor Wong,12,wongco01,2189,Connor Wong,wongco01,automatic_bbref_match +11675,Cooper Criswell,12,criswco01,438,Cooper Criswell,criswco01,automatic_bbref_match +11676,Corbin Burnes,12,burneco01,286,Corbin Burnes,burneco01,automatic_bbref_match +11677,Corbin Carroll,12,carroco02,332,Corbin Carroll,carroco02,automatic_bbref_match +11678,Corey Julks,12,julksco01,1001,Corey Julks,julksco01,automatic_bbref_match +11679,Corey Seager,12,seageco01,1794,Corey Seager,seageco01,automatic_bbref_match +11680,Craig Kimbrel,12,kimbrcr01,1043,Craig Kimbrel,kimbrcr01,automatic_bbref_match +11681,Cristian Javier,12,javiecr01,971,Cristian Javier,javiecr01,automatic_bbref_match +11682,Cristian Pache,12,pachecr01,1482,Cristian Pache,pachecr01,automatic_bbref_match +11683,Cristopher Sanchez,12,sanchcr01,1748,Cristopher Sanchez,sanchcr01,automatic_bbref_match +11684,Curt Casali,12,casalcu01,334,Curt Casali,casalcu01,automatic_bbref_match +11685,Curtis Mead,12,meadcu01,1289,Curtis Mead,meadcu01,automatic_bbref_match +11686,Dairon Blanco,12,blancda02,209,Dairon Blanco,blancda02,automatic_bbref_match +11687,Dakota Hudson,12,hudsoda02,934,Dakota Hudson,hudsoda02,automatic_bbref_match +11688,Dane Dunning,12,dunnida01,548,Dane Dunning,dunnida01,automatic_bbref_match +11691,Daniel Hudson,12,hudsoda01,933,Daniel Hudson,hudsoda01,automatic_bbref_match +11692,Daniel Lynch,12,lynchda02,1172,Daniel Lynch,lynchda02,automatic_bbref_match +11693,Daniel Schneemann,12,schneda04,1776,Daniel Schneemann,schneda04,automatic_bbref_match +11694,Daniel Vogelbach,12,vogelda01,2085,Daniel Vogelbach,vogelda01,automatic_bbref_match +11695,Danny Jansen,12,janseda01,969,Danny Jansen,janseda01,automatic_bbref_match +11696,Danny Mendick,12,mendida01,1302,Danny Mendick,mendida01,automatic_bbref_match +11697,Danny Young,12,youngda02,2218,Danny Young,youngda02,automatic_bbref_match +11698,Dansby Swanson,12,swansda01,1947,Dansby Swanson,swansda01,automatic_bbref_match +11699,Dany Jimenez,12,jimenda01,981,Dany Jimenez,jimenda01,automatic_bbref_match +11700,Darell Hernaiz,12,hernada04,866,Darell Hernaiz,hernada04,automatic_bbref_match +11701,Darren McCaughan,12,mccauda01,1267,Darren McCaughan,mccauda01,automatic_bbref_match +11702,Daulton Varsho,12,varshda01,2058,Daulton Varsho,varshda01,automatic_bbref_match +11703,David Bednar,12,bednada01,162,David Bednar,bednada01,automatic_bbref_match +11704,David Dahl,12,dahlda01,457,David Dahl,dahlda01,automatic_bbref_match +11705,David Festa,12,festada01,611,David Festa,festada01,automatic_bbref_match +11706,David Fry,12,fryda01,663,David Fry,fryda01,automatic_bbref_match +11707,David Hamilton,12,hamilda03,812,David Hamilton,hamilda03,automatic_bbref_match +11708,David Peralta,12,peralda01,1522,David Peralta,peralda01,automatic_bbref_match +11709,David Peterson,12,peterda01,1548,David Peterson,peterda01,automatic_bbref_match +11710,David Robertson,12,roberda08,1662,David Robertson,roberda08,automatic_bbref_match +11711,Davis Daniel,12,danieda01,459,Davis Daniel,danieda01,automatic_bbref_match +11712,Davis Martin,12,martida03,1219,Davis Martin,martida03,automatic_bbref_match +11713,Davis Schneider,12,schneda03,1777,Davis Schneider,schneda03,automatic_bbref_match +11714,Daz Cameron,12,camerda01,310,Daz Cameron,camerda01,automatic_bbref_match +11715,Dean Kremer,12,kremede01,1077,Dean Kremer,kremede01,automatic_bbref_match +11716,Declan Cronin,12,cronide01,443,Declan Cronin,cronide01,automatic_bbref_match +11717,Dedniel Nunez,12,nunezde01,1445,Dedniel Nunez,nunezde01,automatic_bbref_match +11718,Dennis Santana,12,santade01,1762,Dennis Santana,santade01,automatic_bbref_match +11719,Derek Hill,12,hillde01,899,Derek Hill,hillde01,automatic_bbref_match +11720,Derek Law,12,lawde01,1098,Derek Law,lawde01,automatic_bbref_match +11721,Devin Williams,12,willide03,2158,Devin Williams,willide03,automatic_bbref_match +11722,Dillon Dingler,12,dingldi01,517,Dillon Dingler,dingldi01,automatic_bbref_match +11723,Dillon Tate,12,tatedi01,1959,Dillon Tate,tatedi01,automatic_bbref_match +11724,DJ Herz,12,herzdj01,888,DJ Herz,herzdj01,automatic_bbref_match +11725,DJ LeMahieu,12,lemahdj01,1114,DJ LeMahieu,lemahdj01,automatic_bbref_match +11726,DJ Stewart,12,stewadj01,1909,DJ Stewart,stewadj01,automatic_bbref_match +11727,DL Hall,12,halldl01,807,DL Hall,halldl01,automatic_bbref_match +11728,Dominic Canzone,12,canzodo01,322,Dominic Canzone,canzodo01,automatic_bbref_match +11729,Dominic Fletcher,12,fletcdo01,625,Dominic Fletcher,fletcdo01,automatic_bbref_match +11730,Dominic Smith,12,smithdo02,1849,Dominic Smith,smithdo02,automatic_bbref_match +11731,Donovan Solano,12,solando01,1868,Donovan Solano,solando01,automatic_bbref_match +11732,Drew Millas,12,milladr01,1319,Drew Millas,milladr01,automatic_bbref_match +11733,Drew Rasmussen,12,rasmudr01,1618,Drew Rasmussen,rasmudr01,automatic_bbref_match +11734,Drew Smyly,12,smylydr01,1858,Drew Smyly,smylydr01,automatic_bbref_match +11735,Drew Thorpe,12,thorpdr01,1990,Drew Thorpe,thorpdr01,automatic_bbref_match +11736,Dylan Carlson,12,carlsdy01,327,Dylan Carlson,carlsdy01,automatic_bbref_match +11737,Dylan Cease,12,ceasedy01,355,Dylan Cease,ceasedy01,automatic_bbref_match +11738,Dylan Crews,12,crewsdy01,433,Dylan Crews,crewsdy01,automatic_bbref_match +11739,Dylan Floro,12,florody01,629,Dylan Floro,florody01,automatic_bbref_match +11740,Dylan Lee,12,leedy01,1108,Dylan Lee,leedy01,automatic_bbref_match +11741,Dylan Moore,12,mooredy01,1358,Dylan Moore,mooredy01,automatic_bbref_match +11742,Eddie Rosario,12,rosared01,1710,Eddie Rosario,rosared01,automatic_bbref_match +11743,Edmundo Sosa,12,sosaed01,1876,Edmundo Sosa,sosaed01,automatic_bbref_match +11744,Edouard Julien,12,julieed01,1000,Edouard Julien,julieed01,automatic_bbref_match +11745,Eduard Bazardo,12,bazared01,156,Eduard Bazardo,bazared01,automatic_bbref_match +11746,Eduardo Rodriguez,12,rodried05,1675,Eduardo Rodriguez,rodried05,automatic_bbref_match +11747,Eduardo Salazar,12,salazed01,1738,Eduardo Salazar,salazed01,automatic_bbref_match +11749,Edward Olivares,12,olivaed02,1458,Edward Olivares,olivaed02,automatic_bbref_match +11750,Edwin Diaz,12,diazed04,503,Edwin Diaz,diazed04,automatic_bbref_match +11751,Edwin Uceta,12,ucetaed01,2031,Edwin Uceta,ucetaed01,automatic_bbref_match +11752,Elehuris Montero,12,monteel01,1353,Elehuris Montero,monteel01,automatic_bbref_match +11753,Eli Morgan,12,morgael01,1369,Eli Morgan,morgael01,automatic_bbref_match +11754,Elias Diaz,12,diazel01,502,Elias Diaz,diazel01,automatic_bbref_match +11755,Elly De La Cruz,12,delacel01,480,Elly De La Cruz,delacel01,automatic_bbref_match +11756,Eloy Jimenez,12,jimenel02,980,Eloy Jimenez,jimenel02,automatic_bbref_match +11757,Elvis Peguero,12,pegueel01,1515,Elvis Peguero,pegueel01,automatic_bbref_match +11758,Emerson Hancock,12,hancoem01,815,Emerson Hancock,hancoem01,automatic_bbref_match +11759,Emilio Pagan,12,paganem01,1484,Emilio Pagan,paganem01,automatic_bbref_match +11760,Emmanuel Clase,12,claseem01,385,Emmanuel Clase,claseem01,automatic_bbref_match +11761,Emmanuel Ramirez,12,ramirem01,1610,Emmanuel Ramirez,ramirem01,automatic_bbref_match +11762,Emmanuel Rivera,12,riverem01,1657,Emmanuel Rivera,riverem01,automatic_bbref_match +11763,Enmanuel Valdez,12,valdeen01,2049,Enmanuel Valdez,valdeen01,automatic_bbref_match +11764,Enoli Paredes,12,pareden01,1496,Enoli Paredes,pareden01,automatic_bbref_match +11765,Enrique Hernandez,12,hernaen02,871,Enrique Hernandez,hernaen02,automatic_bbref_match +11766,Enyel De Los Santos,12,delosen01,482,Enyel De Los Santos,delosen01,automatic_bbref_match +11767,Erasmo Ramirez,12,ramirer02,1604,Erasmo Ramirez,ramirer02,automatic_bbref_match +11768,Eric Haase,12,haaseer01,801,Eric Haase,haaseer01,automatic_bbref_match +11769,Eric Wagaman,12,wagamer01,2096,Eric Wagaman,wagamer01,automatic_bbref_match +11770,Erick Fedde,12,feddeer01,600,Erick Fedde,feddeer01,automatic_bbref_match +11771,Erik Miller,12,milleer01,1325,Erik Miller,milleer01,automatic_bbref_match +11772,Erik Swanson,12,swanser01,1948,Erik Swanson,swanser01,automatic_bbref_match +11773,Ernie Clement,12,clemeer01,391,Ernie Clement,clemeer01,automatic_bbref_match +11774,Esteury Ruiz,12,ruizes01,1726,Esteury Ruiz,ruizes01,automatic_bbref_match +11775,Estevan Florial,12,flories01,628,Estevan Florial,flories01,automatic_bbref_match +11776,Ethan Roberts,12,roberet01,1661,Ethan Roberts,roberet01,automatic_bbref_match +11777,Eugenio Suarez,12,suareeu01,1934,Eugenio Suarez,suareeu01,automatic_bbref_match +11778,Evan Carter,12,carteev01,333,Evan Carter,carteev01,automatic_bbref_match +11780,Ezequiel Duran,12,duranez01,551,Ezequiel Duran,duranez01,automatic_bbref_match +11781,Ezequiel Tovar,12,tovarez01,2007,Ezequiel Tovar,tovarez01,automatic_bbref_match +11782,Fernando Cruz,12,cruzfe01,448,Fernando Cruz,cruzfe01,automatic_bbref_match +11783,Fernando Tatis Jr,12,tatisfe02,1960,Fernando Tatis Jr,tatisfe02,automatic_bbref_match +11784,Framber Valdez,12,valdefr01,2048,Framber Valdez,valdefr01,automatic_bbref_match +11785,Francisco Alvarez,12,alvarfr01,62,Francisco Alvarez,alvarfr01,automatic_bbref_match +11786,Francisco Lindor,12,lindofr01,1124,Francisco Lindor,lindofr01,automatic_bbref_match +11787,Frankie Montas,12,montafr02,1351,Frankie Montas,montafr02,automatic_bbref_match +11788,Fraser Ellard,12,ellarfr01,566,Fraser Ellard,ellarfr01,automatic_bbref_match +11789,Freddie Freeman,12,freemfr01,652,Freddie Freeman,freemfr01,automatic_bbref_match +11790,Freddy Fermin,12,fermifr01,606,Freddy Fermin,fermifr01,automatic_bbref_match +11791,Freddy Peralta,12,peralfr01,1525,Freddy Peralta,peralfr01,automatic_bbref_match +11792,Gabe Speier,12,speiega01,1885,Gabe Speier,speiega01,automatic_bbref_match +11793,Gabriel Arias,12,ariasga01,89,Gabriel Arias,ariasga01,automatic_bbref_match +11794,Gabriel Moreno,12,morenga01,1366,Gabriel Moreno,morenga01,automatic_bbref_match +11795,Garrett Cleavinger,12,cleavga01,389,Garrett Cleavinger,cleavga01,automatic_bbref_match +11796,Garrett Cooper,12,coopega03,415,Garrett Cooper,coopega03,automatic_bbref_match +11797,Garrett Crochet,12,crochga01,439,Garrett Crochet,crochga01,automatic_bbref_match +11798,Garrett Hampson,12,hampsga01,814,Garrett Hampson,hampsga01,automatic_bbref_match +11799,Garrett Mitchell,12,mitchga01,1340,Garrett Mitchell,mitchga01,automatic_bbref_match +11800,Garrett Stubbs,12,stubbga01,1931,Garrett Stubbs,stubbga01,automatic_bbref_match +11801,Gary Sanchez,12,sanchga02,1746,Gary Sanchez,sanchga02,automatic_bbref_match +11802,Gavin Lux,12,luxga01,1169,Gavin Lux,luxga01,automatic_bbref_match +11803,Gavin Sheets,12,sheetga01,1811,Gavin Sheets,sheetga01,automatic_bbref_match +11804,Gavin Stone,12,stonega01,1913,Gavin Stone,stonega01,automatic_bbref_match +11805,Gavin Williams,12,williga01,2160,Gavin Williams,williga01,automatic_bbref_match +11806,Genesis Cabrera,12,cabrege01,301,Genesis Cabrera,cabrege01,automatic_bbref_match +11807,George Kirby,12,kirbyge01,1054,George Kirby,kirbyge01,automatic_bbref_match +11808,George Soriano,12,soriage01,1873,George Soriano,soriage01,automatic_bbref_match +11809,George Springer,12,springe01,1888,George Springer,springe01,automatic_bbref_match +11810,Geraldo Perdomo,12,perdoge01,1531,Geraldo Perdomo,perdoge01,automatic_bbref_match +11811,Gerrit Cole,12,colege01,398,Gerrit Cole,colege01,automatic_bbref_match +11812,Giancarlo Stanton,12,stantmi03,1893,Giancarlo Stanton,stantmi03,automatic_bbref_match +11813,Gio Urshela,12,urshegi01,2042,Gio Urshela,urshegi01,automatic_bbref_match +11814,Giovanny Gallegos,12,gallegi01,672,Giovanny Gallegos,gallegi01,automatic_bbref_match +11815,Gleyber Torres,12,torregl01,2003,Gleyber Torres,torregl01,automatic_bbref_match +11816,Graham Ashcraft,12,ashcrgr01,99,Graham Ashcraft,ashcrgr01,automatic_bbref_match +11817,Grant Anderson,12,andergr01,75,Grant Anderson,andergr01,automatic_bbref_match +11818,Grant Holmes,12,holmegr01,920,Grant Holmes,holmegr01,automatic_bbref_match +11819,Grant McCray,12,mccragr01,1270,Grant McCray,mccragr01,automatic_bbref_match +11820,Grayson Rodriguez,12,rodrigr01,1684,Grayson Rodriguez,rodrigr01,automatic_bbref_match +11821,Greg Weissert,12,weissgr01,2130,Greg Weissert,weissgr01,automatic_bbref_match +11822,Gregory Soto,12,sotogr01,1878,Gregory Soto,sotogr01,automatic_bbref_match +11823,Griffin Canning,12,cannigr01,317,Griffin Canning,cannigr01,automatic_bbref_match +11824,Griffin Conine,12,coningr01,408,Griffin Conine,coningr01,automatic_bbref_match +11825,Griffin Jax,12,jaxgr01,972,Griffin Jax,jaxgr01,automatic_bbref_match +11826,Gunnar Henderson,12,hendegu01,855,Gunnar Henderson,hendegu01,automatic_bbref_match +11827,Gus Varland,12,varlagu01,2056,Gus Varland,varlagu01,automatic_bbref_match +11828,Ha Seong Kim,12,kimha01,1042,Ha Seong Kim,kimha01,automatic_bbref_match +11829,Hans Crouse,12,crousha01,444,Hans Crouse,crousha01,automatic_bbref_match +11830,Harold Ramirez,12,ramirha02,1609,Harold Ramirez,ramirha02,automatic_bbref_match +11831,Harrison Bader,12,baderha01,110,Harrison Bader,baderha01,automatic_bbref_match +11832,Hayden Birdsong,12,birdsha01,199,Hayden Birdsong,birdsha01,automatic_bbref_match +11833,Hayden Wesneski,12,wesneha01,2137,Hayden Wesneski,wesneha01,automatic_bbref_match +11834,Hector Neris,12,nerishe01,1413,Hector Neris,nerishe01,automatic_bbref_match +11835,Heliot Ramos,12,ramoshe02,1615,Heliot Ramos,ramoshe02,automatic_bbref_match +11836,Henry Davis,12,davishe01,473,Henry Davis,davishe01,automatic_bbref_match +11837,Heston Kjerstad,12,kjershe01,1058,Heston Kjerstad,kjershe01,automatic_bbref_match +11838,Hoby Milner,12,milneho01,1332,Hoby Milner,milneho01,automatic_bbref_match +11840,Huascar Brazoban,12,brazohu01,246,Huascar Brazoban,brazohu01,automatic_bbref_match +11841,Hunter Brown,12,brownhu01,267,Hunter Brown,brownhu01,automatic_bbref_match +11842,Hunter Gaddis,12,gaddihu01,669,Hunter Gaddis,gaddihu01,automatic_bbref_match +11843,Hunter Goodman,12,goodmhu01,747,Hunter Goodman,goodmhu01,automatic_bbref_match +11844,Hunter Greene,12,greenhu01,770,Hunter Greene,greenhu01,automatic_bbref_match +11845,Hunter Harvey,12,harvehu01,836,Hunter Harvey,harvehu01,automatic_bbref_match +11846,Hunter Renfroe,12,renfrhu01,1631,Hunter Renfroe,renfrhu01,automatic_bbref_match +11847,Hunter Stratton,12,strathu01,1923,Hunter Stratton,strathu01,automatic_bbref_match +11848,Hunter Strickland,12,strichu01,1925,Hunter Strickland,strichu01,automatic_bbref_match +11849,Ian Hamilton,12,hamilia01,811,Ian Hamilton,hamilia01,automatic_bbref_match +11850,Ian Happ,12,happia01,820,Ian Happ,happia01,automatic_bbref_match +11851,Ildemaro Vargas,12,vargail01,2054,Ildemaro Vargas,vargail01,automatic_bbref_match +11852,Isaac Paredes,12,paredis01,1497,Isaac Paredes,paredis01,automatic_bbref_match +11853,Isiah Kiner Falefa,12,kineris01,1044,Isiah Kiner Falefa,kineris01,automatic_bbref_match +11854,Ivan Herrera,12,herreiv01,885,Ivan Herrera,herreiv01,automatic_bbref_match +11855,Jace Jung,12,jungja01,1003,Jace Jung,jungja01,automatic_bbref_match +11856,Jack Flaherty,12,flaheja01,622,Jack Flaherty,flaheja01,automatic_bbref_match +11857,Jack Kochanowicz,12,kochaja01,1067,Jack Kochanowicz,kochaja01,automatic_bbref_match +11858,Jack Leiter,12,leiteja01,1113,Jack Leiter,leiteja01,automatic_bbref_match +11859,Jack Lopez,12,lopezja03,1143,Jack Lopez,lopezja03,automatic_bbref_match +11860,Jack Suwinski,12,suwinja01,1944,Jack Suwinski,suwinja01,automatic_bbref_match +11861,Jackson Chourio,12,chourja01,379,Jackson Chourio,chourja01,automatic_bbref_match +11863,Jackson Merrill,12,merrija01,1310,Jackson Merrill,merrija01,automatic_bbref_match +11864,Jacob Amaya,12,amayaja01,65,Jacob Amaya,amayaja01,automatic_bbref_match +11865,Jacob Barnes,12,barneja01,133,Jacob Barnes,barneja01,automatic_bbref_match +11866,Jacob Hurtubise,12,hurtuja01,943,Jacob Hurtubise,hurtuja01,automatic_bbref_match +11867,Jacob Latz,12,latzja01,1095,Jacob Latz,latzja01,automatic_bbref_match +11868,Jacob Stallings,12,stallja01,1890,Jacob Stallings,stallja01,automatic_bbref_match +11869,Jacob Webb,12,webbja01,2126,Jacob Webb,webbja01,automatic_bbref_match +11870,Jacob Wilson,12,wilsoja05,2172,Jacob Wilson,wilsoja05,automatic_bbref_match +11871,Jacob Young,12,youngja03,2219,Jacob Young,youngja03,automatic_bbref_match +11872,Jake Bauers,12,bauerja01,151,Jake Bauers,bauerja01,automatic_bbref_match +11873,Jake Bird,12,birdja01,198,Jake Bird,birdja01,automatic_bbref_match +11874,Jake Burger,12,burgeja01,283,Jake Burger,burgeja01,automatic_bbref_match +11875,Jake Cave,12,caveja01,354,Jake Cave,caveja01,automatic_bbref_match +11876,Jake Cousins,12,cousija01,424,Jake Cousins,cousija01,automatic_bbref_match +11877,Jake Cronenworth,12,croneja01,442,Jake Cronenworth,croneja01,automatic_bbref_match +11878,Jake Diekman,12,diekmja01,514,Jake Diekman,diekmja01,automatic_bbref_match +11879,Jake Fraley,12,fraleja01,641,Jake Fraley,fraleja01,automatic_bbref_match +11880,Jake Irvin,12,irvinja01,955,Jake Irvin,irvinja01,automatic_bbref_match +11882,Jake McCarthy,12,mccarja02,1265,Jake McCarthy,mccarja02,automatic_bbref_match +11883,Jake Meyers,12,meyerja02,1315,Jake Meyers,meyerja02,automatic_bbref_match +11884,Jake Rogers,12,rogerja03,1692,Jake Rogers,rogerja03,automatic_bbref_match +11885,Jake Woodford,12,woodfja01,2195,Jake Woodford,woodfja01,automatic_bbref_match +11886,Jalen Beeks,12,beeksja02,165,Jalen Beeks,beeksja02,automatic_bbref_match +11887,James McArthur,12,mcartja01,1258,James McArthur,mcartja01,automatic_bbref_match +11888,James McCann,12,mccanja02,1261,James McCann,mccanja02,automatic_bbref_match +11889,James Outman,12,outmaja01,1477,James Outman,outmaja01,automatic_bbref_match +11890,James Paxton,12,paxtoja01,1506,James Paxton,paxtoja01,automatic_bbref_match +11891,James Wood,12,woodja03,2194,James Wood,woodja03,automatic_bbref_match +11893,Jared Jones,12,jonesja09,995,Jared Jones,jonesja09,automatic_bbref_match +11894,Jared Koenig,12,koenija01,1068,Jared Koenig,koenija01,automatic_bbref_match +11895,Jared Shuster,12,shustja01,1821,Jared Shuster,shustja01,automatic_bbref_match +11896,Jared Triolo,12,triolja01,2015,Jared Triolo,triolja01,automatic_bbref_match +11862,Jackson Holliday,12,hollija01,916,Jackson Holliday,hollija01,automatic_bbref_match +11892,Jameson Taillon,12,taillja01,1954,Jameson Taillon,taillja01,automatic_bbref_match +11897,Jared Walsh,12,walshja01,2111,Jared Walsh,walshja01,automatic_bbref_match +11898,Jarred Kelenic,12,kelenja01,1015,Jarred Kelenic,kelenja01,automatic_bbref_match +11899,Jarren Duran,12,duranja01,552,Jarren Duran,duranja01,automatic_bbref_match +11900,Jason Adam,12,adamja01,13,Jason Adam,adamja01,automatic_bbref_match +11901,Jason Foley,12,foleyja01,632,Jason Foley,foleyja01,automatic_bbref_match +11902,Jason Heyward,12,heywaja01,891,Jason Heyward,heywaja01,automatic_bbref_match +11903,Jasson Dominguez,12,dominja01,525,Jasson Dominguez,dominja01,automatic_bbref_match +11904,Javier Assad,12,assadja01,100,Javier Assad,assadja01,automatic_bbref_match +11905,Javier Baez,12,baezja01,112,Javier Baez,baezja01,automatic_bbref_match +11906,Jay Jackson,12,jacksja01,959,Jay Jackson,jacksja01,automatic_bbref_match +11907,Jazz Chisholm,12,chishja01,375,Jazz Chisholm,chishja01,automatic_bbref_match +11908,JD Davis,12,davisjd01,474,JD Davis,davisjd01,automatic_bbref_match +11910,Jeff Criswell,12,criswje01,437,Jeff Criswell,criswje01,automatic_bbref_match +11911,Jeff Hoffman,12,hoffmje02,910,Jeff Hoffman,hoffmje02,automatic_bbref_match +11912,Jeff McNeil,12,mcneije01,1287,Jeff McNeil,mcneije01,automatic_bbref_match +11913,Jeffrey Springs,12,sprinje01,1889,Jeffrey Springs,sprinje01,automatic_bbref_match +11914,Jeimer Candelario,12,candeje01,315,Jeimer Candelario,candeje01,automatic_bbref_match +11915,Jerar Encarnacion,12,encarje01,572,Jerar Encarnacion,encarje01,automatic_bbref_match +11916,Jeremiah Estrada,12,estraje01,588,Jeremiah Estrada,estraje01,automatic_bbref_match +11917,Jeremy Pena,12,penaje02,1519,Jeremy Pena,penaje02,automatic_bbref_match +11918,Jesse Chavez,12,chaveje01,370,Jesse Chavez,chaveje01,automatic_bbref_match +11919,Jesse Winker,12,winkeje01,2177,Jesse Winker,winkeje01,automatic_bbref_match +11920,Jesus Luzardo,12,luzarje01,1170,Jesus Luzardo,luzarje01,automatic_bbref_match +11921,Jesus Sanchez,12,sanchje02,1749,Jesus Sanchez,sanchje02,automatic_bbref_match +11922,Jesus Tinoco,12,tinocje01,1992,Jesus Tinoco,tinocje01,automatic_bbref_match +11923,Jhoan Duran,12,duranjh01,550,Jhoan Duran,duranjh01,automatic_bbref_match +11924,Jhonkensy Noel,12,noeljh01,1428,Jhonkensy Noel,noeljh01,automatic_bbref_match +11926,Ji Hwan Bae,12,baeji01,945,Ji Hwan Bae,baeji01,automatic_bbref_match +11927,JJ Bleday,12,bledajj01,211,JJ Bleday,bledajj01,automatic_bbref_match +11929,Joc Pederson,12,pederjo01,1514,Joc Pederson,pederjo01,automatic_bbref_match +11931,Joe Jimenez,12,jimenjo02,979,Joe Jimenez,jimenjo02,automatic_bbref_match +11932,Joe Kelly,12,kellyjo05,1021,Joe Kelly,kellyjo05,automatic_bbref_match +11933,Joe Mantiply,12,mantijo01,1193,Joe Mantiply,mantijo01,automatic_bbref_match +11934,Joe Musgrove,12,musgrjo01,1394,Joe Musgrove,musgrjo01,automatic_bbref_match +11935,Joe Ross,12,rossjo01,1715,Joe Ross,rossjo01,automatic_bbref_match +11936,Joe Ryan,12,ryanjo04,1732,Joe Ryan,ryanjo04,automatic_bbref_match +11937,Joel Payamps,12,payamjo01,1507,Joel Payamps,payamjo01,automatic_bbref_match +11938,Joey Bart,12,bartjo01,142,Joey Bart,bartjo01,automatic_bbref_match +11939,Joey Cantillo,12,cantijo01,321,Joey Cantillo,cantijo01,automatic_bbref_match +11930,Joe Boyle,12,boylejo01,231,Joe Boyle,boylejo01,automatic_bbref_match +11925,Jhony Brito,12,britojh01,259,Jhony Brito,britojh01,automatic_bbref_match +11909,JD Martinez,12,martijd02,1229,JD Martinez,martijd02,automatic_bbref_match +11940,Joey Estes,12,estesjo01,584,Joey Estes,estesjo01,automatic_bbref_match +11941,Joey Gallo,12,gallojo01,674,Joey Gallo,gallojo01,automatic_bbref_match +11942,Joey Loperfido,12,loperjo01,1141,Joey Loperfido,loperjo01,automatic_bbref_match +11943,Joey Meneses,12,menesjo01,1303,Joey Meneses,menesjo01,automatic_bbref_match +11944,Joey Ortiz,12,ortizjo06,1468,Joey Ortiz,ortizjo06,automatic_bbref_match +11945,Joey Wentz,12,wentzjo01,2136,Joey Wentz,wentzjo01,automatic_bbref_match +11946,Johan Rojas,12,rojasjo03,1697,Johan Rojas,rojasjo03,automatic_bbref_match +11947,John Brebbia,12,brebbjo01,247,John Brebbia,brebbjo01,automatic_bbref_match +11948,John King,12,kingjo01,1045,John King,kingjo01,automatic_bbref_match +11949,John Schreiber,12,schrejo01,1780,John Schreiber,schrejo01,automatic_bbref_match +11950,JoJo Romero,12,romerjo01,1702,JoJo Romero,romerjo01,automatic_bbref_match +11951,Jon Berti,12,bertijo01,183,Jon Berti,bertijo01,automatic_bbref_match +11952,Jon Gray,12,grayjo02,766,Jon Gray,grayjo02,automatic_bbref_match +11953,Jon Singleton,12,singljo02,1828,Jon Singleton,singljo02,automatic_bbref_match +11954,Jonah Bride,12,bridejo01,255,Jonah Bride,bridejo01,automatic_bbref_match +11955,Jonah Heim,12,heimjo01,849,Jonah Heim,heimjo01,automatic_bbref_match +11956,Jonatan Clase,12,clasejo01,386,Jonatan Clase,clasejo01,automatic_bbref_match +11957,Jonathan Aranda,12,arandjo01,82,Jonathan Aranda,arandjo01,automatic_bbref_match +11958,Jonathan Cannon,12,cannojo02,318,Jonathan Cannon,cannojo02,automatic_bbref_match +11959,Jonathan Hernandez,12,hernajo02,876,Jonathan Hernandez,hernajo02,automatic_bbref_match +11960,Jonathan India,12,indiajo01,953,Jonathan India,indiajo01,automatic_bbref_match +11961,Jonny DeLuca,12,delucjo01,490,Jonny DeLuca,delucjo01,automatic_bbref_match +11962,Jordan Beck,12,beckjo01,159,Jordan Beck,beckjo01,automatic_bbref_match +11963,Jordan Hicks,12,hicksjo03,894,Jordan Hicks,hicksjo03,automatic_bbref_match +11964,Jordan Leasure,12,leasujo01,1103,Jordan Leasure,leasujo01,automatic_bbref_match +11965,Jordan Montgomery,12,montgjo01,1356,Jordan Montgomery,montgjo01,automatic_bbref_match +11966,Jordan Walker,12,walkejo02,2107,Jordan Walker,walkejo02,automatic_bbref_match +11967,Jordan Weems,12,weemsjo01,2129,Jordan Weems,weemsjo01,automatic_bbref_match +11968,Jordan Westburg,12,westbjo01,2138,Jordan Westburg,westbjo01,automatic_bbref_match +11969,Jordan Wicks,12,wicksjo01,2148,Jordan Wicks,wicksjo01,automatic_bbref_match +11970,Jorge Alcala,12,alcaljo01,32,Jorge Alcala,alcaljo01,automatic_bbref_match +11971,Jorge Lopez,12,lopezjo02,1144,Jorge Lopez,lopezjo02,automatic_bbref_match +11972,Jorge Mateo,12,mateojo01,1233,Jorge Mateo,mateojo01,automatic_bbref_match +11973,Jorge Polanco,12,polanjo01,1570,Jorge Polanco,polanjo01,automatic_bbref_match +11974,Jorge Soler,12,solerjo01,1870,Jorge Soler,solerjo01,automatic_bbref_match +11975,Jose Ferrer,12,ferrejo01,609,Jose Ferrer,ferrejo01,automatic_bbref_match +11976,Jose Abreu,12,abreujo02,7,Jose Abreu,abreujo02,automatic_bbref_match +11977,Jose Altuve,12,altuvjo01,56,Jose Altuve,altuvjo01,automatic_bbref_match +11978,Jose Alvarado,12,alvarjo03,58,Jose Alvarado,alvarjo03,automatic_bbref_match +11979,Jose Azocar,12,azocajo01,107,Jose Azocar,azocajo01,automatic_bbref_match +11980,Jose Berrios,12,berrijo01,182,Jose Berrios,berrijo01,automatic_bbref_match +11981,Jose Butto,12,buttojo01,293,Jose Butto,buttojo01,automatic_bbref_match +11983,Jose Fermin,12,fermijo01,607,Jose Fermin,fermijo01,automatic_bbref_match +11984,Jose Herrera,12,herrejo04,884,Jose Herrera,herrejo04,automatic_bbref_match +11986,Jose Leclerc,12,leclejo01,1106,Jose Leclerc,leclejo01,automatic_bbref_match +11987,Jose Miranda,12,miranjo01,1337,Jose Miranda,miranjo01,automatic_bbref_match +11988,Jose Quintana,12,quintjo01,1596,Jose Quintana,quintjo01,automatic_bbref_match +11989,Jose Ramirez,12,ramirjo01,1608,Jose Ramirez,ramirjo01,automatic_bbref_match +11990,Jose Ruiz,12,ruizjo01,1724,Jose Ruiz,ruizjo01,automatic_bbref_match +11991,Jose Siri,12,sirijo01,1830,Jose Siri,sirijo01,automatic_bbref_match +11993,Jose Suarez,12,suarejo01,1937,Jose Suarez,suarejo01,automatic_bbref_match +11994,Jose Tena,12,tenajo01,1973,Jose Tena,tenajo01,automatic_bbref_match +11995,Jose Trevino,12,trevijo01,2013,Jose Trevino,trevijo01,automatic_bbref_match +11996,Jose Urena,12,urenajo01,2035,Jose Urena,urenajo01,automatic_bbref_match +11997,Josh Bell,12,belljo02,168,Josh Bell,belljo02,automatic_bbref_match +11998,Josh Fleming,12,flemijo01,623,Josh Fleming,flemijo01,automatic_bbref_match +11999,Josh Hader,12,haderjo01,802,Josh Hader,haderjo01,automatic_bbref_match +12000,Josh Jung,12,jungjo01,1002,Josh Jung,jungjo01,automatic_bbref_match +12001,Josh Lowe,12,lowejo01,1157,Josh Lowe,lowejo01,automatic_bbref_match +12002,Josh Naylor,12,naylojo01,1404,Josh Naylor,naylojo01,automatic_bbref_match +12003,Josh Palacios,12,palacjo01,1489,Josh Palacios,palacjo01,automatic_bbref_match +12004,Josh Rojas,12,rojasjo01,1695,Josh Rojas,rojasjo01,automatic_bbref_match +12005,Josh Smith,12,smithjo11,1852,Josh Smith,smithjo11,automatic_bbref_match +12006,Josh Staumont,12,staumjo01,1897,Josh Staumont,staumjo01,automatic_bbref_match +12007,Josh Winckowski,12,winckjo01,2174,Josh Winckowski,winckjo01,automatic_bbref_match +12008,JP Crawford,12,crawfjp01,432,JP Crawford,crawfjp01,automatic_bbref_match +12009,JP Sears,12,searsjp01,1795,JP Sears,searsjp01,automatic_bbref_match +12010,JT Chargois,12,chargjt01,368,JT Chargois,chargjt01,automatic_bbref_match +12011,JT Ginn,12,ginnjt01,723,JT Ginn,ginnjt01,automatic_bbref_match +12013,Juan Soto,12,sotoju01,1879,Juan Soto,sotoju01,automatic_bbref_match +12014,Juan Yepez,12,yepezju01,2213,Juan Yepez,yepezju01,automatic_bbref_match +12015,Julian Aguiar,12,aguiaju01,24,Julian Aguiar,aguiaju01,automatic_bbref_match +12016,Julio Rodriguez,12,rodriju01,1682,Julio Rodriguez,rodriju01,automatic_bbref_match +12017,Jung Hoo Lee,12,leeju01,1107,Jung Hoo Lee,leeju01,automatic_bbref_match +12018,Junior Caminero,12,caminju01,311,Junior Caminero,caminju01,automatic_bbref_match +12019,Jurickson Profar,12,profaju01,1587,Jurickson Profar,profaju01,automatic_bbref_match +12020,Justin Anderson,12,anderju01,70,Justin Anderson,anderju01,automatic_bbref_match +12021,Justin Lawrence,12,lawreju01,1100,Justin Lawrence,lawreju01,automatic_bbref_match +12022,Justin Martinez,12,martiju01,1227,Justin Martinez,martiju01,automatic_bbref_match +11985,Jose Iglesias,12,iglesjo01,949,Jose Iglesias,iglesjo01,automatic_bbref_match +12023,Justin Slaten,12,slateju01,1837,Justin Slaten,slateju01,automatic_bbref_match +11992,Jose Soriano,12,soriajo02,1874,Jose Soriano,soriajo02,automatic_bbref_match +12024,Justin Steele,12,steelju01,1899,Justin Steele,steelju01,automatic_bbref_match +12025,Justin Turner,12,turneju01,2029,Justin Turner,turneju01,automatic_bbref_match +12026,Justin Verlander,12,verlaju01,2071,Justin Verlander,verlaju01,automatic_bbref_match +12027,Justin Wilson,12,wilsoju10,2167,Justin Wilson,wilsoju10,automatic_bbref_match +12028,Justin Wrobleski,12,wroblju01,2201,Justin Wrobleski,wroblju01,automatic_bbref_match +12029,Justyn Henry Malloy,12,malloju02,1188,Justyn Henry Malloy,malloju02,automatic_bbref_match +12030,Kaleb Ort,12,ortka01,1464,Kaleb Ort,ortka01,automatic_bbref_match +12031,Keaton Winn,12,winnke01,2179,Keaton Winn,winnke01,automatic_bbref_match +12032,KeBryan Hayes,12,hayeske01,838,KeBryan Hayes,hayeske01,automatic_bbref_match +12033,Keegan Akin,12,akinke01,27,Keegan Akin,akinke01,automatic_bbref_match +12034,Keegan Thompson,12,thompke02,1982,Keegan Thompson,thompke02,automatic_bbref_match +12035,Keibert Ruiz,12,ruizke01,1725,Keibert Ruiz,ruizke01,automatic_bbref_match +12036,Keider Montero,12,monteke01,1354,Keider Montero,monteke01,automatic_bbref_match +12037,Kenley Jansen,12,janseke01,968,Kenley Jansen,janseke01,automatic_bbref_match +12038,Kenta Maeda,12,maedake01,1181,Kenta Maeda,maedake01,automatic_bbref_match +12039,Kerry Carpenter,12,carpeke01,330,Kerry Carpenter,carpeke01,automatic_bbref_match +12040,Ketel Marte,12,marteke01,1210,Ketel Marte,marteke01,automatic_bbref_match +12041,Kevin Gausman,12,gausmke01,706,Kevin Gausman,gausmke01,automatic_bbref_match +12042,Kevin Ginkel,12,ginkeke01,722,Kevin Ginkel,ginkeke01,automatic_bbref_match +12043,Kevin Kelly,12,kellyke02,1025,Kevin Kelly,kellyke02,automatic_bbref_match +12044,Kevin Kiermaier,12,kiermke01,1039,Kevin Kiermaier,kiermke01,automatic_bbref_match +12045,Kevin Newman,12,newmake01,1420,Kevin Newman,newmake01,automatic_bbref_match +12046,Kevin Pillar,12,pillake01,1557,Kevin Pillar,pillake01,automatic_bbref_match +12047,Kirby Yates,12,yateski01,2211,Kirby Yates,yateski01,automatic_bbref_match +12048,Kody Clemens,12,clemeko01,390,Kody Clemens,clemeko01,automatic_bbref_match +12050,Korey Lee,12,leeko01,1109,Korey Lee,leeko01,automatic_bbref_match +12051,Kris Bryant,12,bryankr01,273,Kris Bryant,bryankr01,automatic_bbref_match +12052,Kris Bubic,12,bubickr01,274,Kris Bubic,bubickr01,automatic_bbref_match +12053,Kutter Crawford,12,crawfku01,431,Kutter Crawford,crawfku01,automatic_bbref_match +12055,Kyle Farmer,12,farmeky01,598,Kyle Farmer,farmeky01,automatic_bbref_match +12056,Kyle Finnegan,12,finneky01,617,Kyle Finnegan,finneky01,automatic_bbref_match +12057,Kyle Freeland,12,freelky01,650,Kyle Freeland,freelky01,automatic_bbref_match +12058,Kyle Gibson,12,gibsoky01,715,Kyle Gibson,gibsoky01,automatic_bbref_match +12059,Kyle Harrison,12,harriky01,830,Kyle Harrison,harriky01,automatic_bbref_match +12060,Kyle Hendricks,12,hendrky01,856,Kyle Hendricks,hendrky01,automatic_bbref_match +12061,Kyle Higashioka,12,higasky01,895,Kyle Higashioka,higasky01,automatic_bbref_match +12062,Kyle Isbel,12,isbelky01,956,Kyle Isbel,isbelky01,automatic_bbref_match +12063,Kyle Leahy,12,leahyky01,1101,Kyle Leahy,leahyky01,automatic_bbref_match +12064,Kyle Manzardo,12,manzaky01,1194,Kyle Manzardo,manzaky01,automatic_bbref_match +12065,Kyle McCann,12,mccanky01,1262,Kyle McCann,mccanky01,automatic_bbref_match +12066,Kyle Muller,12,mulleky01,1380,Kyle Muller,mulleky01,automatic_bbref_match +12067,Kyle Nicolas,12,nicolky01,1423,Kyle Nicolas,nicolky01,automatic_bbref_match +12068,Kyle Schwarber,12,schwaky01,1784,Kyle Schwarber,schwaky01,automatic_bbref_match +12069,Kyle Stowers,12,stoweky01,1917,Kyle Stowers,stoweky01,automatic_bbref_match +12070,Kyle Tucker,12,tuckeky01,2023,Kyle Tucker,tuckeky01,automatic_bbref_match +12071,Kyle Tyler,12,tylerky01,2030,Kyle Tyler,tylerky01,automatic_bbref_match +12072,LaMonte Wade Jr,12,wadela01,2095,LaMonte Wade Jr,wadela01,automatic_bbref_match +12073,Lance Lynn,12,lynnla01,1173,Lance Lynn,lynnla01,automatic_bbref_match +12074,Landen Roupp,12,rouppla01,1717,Landen Roupp,rouppla01,automatic_bbref_match +12075,Landon Knack,12,knackla01,1061,Landon Knack,knackla01,automatic_bbref_match +12076,Lane Thomas,12,thomala02,1978,Lane Thomas,thomala02,automatic_bbref_match +12077,Lars Nootbaar,12,nootbla01,1436,Lars Nootbaar,nootbla01,automatic_bbref_match +12078,Lawrence Butler,12,butlela01,292,Lawrence Butler,butlela01,automatic_bbref_match +12079,Lenyn Sosa,12,sosale01,1877,Lenyn Sosa,sosale01,automatic_bbref_match +12080,Leo Jimenez,12,jimenle01,982,Leo Jimenez,jimenle01,automatic_bbref_match +12081,Leo Rivas,12,rivasle01,1653,Leo Rivas,rivasle01,automatic_bbref_match +12082,Leody Taveras,12,taverle01,1962,Leody Taveras,taverle01,automatic_bbref_match +12083,Logan Allen,12,allenlo01,45,Logan Allen,allenlo01,automatic_bbref_match +12084,Logan Gilbert,12,gilbelo01,718,Logan Gilbert,gilbelo01,automatic_bbref_match +12085,Logan OHoppe,12,ohopplo01,1454,Logan OHoppe,ohopplo01,automatic_bbref_match +12086,Logan T Allen,12,allenlo02,48,Logan Allen,allenlo02,automatic_bbref_match +12087,Logan Webb,12,webblo01,2127,Logan Webb,webblo01,automatic_bbref_match +12088,Louie Varland,12,varlalo01,2057,Louie Varland,varlalo01,automatic_bbref_match +12089,Lourdes Gurriel Jr,12,gurrilo01,794,Lourdes Gurriel Jr,gurrilo01,automatic_bbref_match +12090,Lucas Erceg,12,erceglu01,577,Lucas Erceg,erceglu01,automatic_bbref_match +12091,Lucas Sims,12,simslu01,1826,Lucas Sims,simslu01,automatic_bbref_match +12092,Luis Arraez,12,arraelu01,93,Luis Arraez,arraelu01,automatic_bbref_match +12093,Luis Campusano,12,campulu01,314,Luis Campusano,campulu01,automatic_bbref_match +12094,Luis Castillo,12,castilu02,344,Luis Castillo,castilu02,automatic_bbref_match +12096,Luis Gil,12,gillu01,716,Luis Gil,gillu01,automatic_bbref_match +12097,Luis Guillorme,12,guilllu01,792,Luis Guillorme,guilllu01,automatic_bbref_match +12098,Luis Matos,12,matoslu02,1240,Luis Matos,matoslu02,automatic_bbref_match +12099,Luis Medina,12,medinlu02,1293,Luis Medina,medinlu02,automatic_bbref_match +12101,Luis Rengifo,12,rengilu01,1632,Luis Rengifo,rengilu01,automatic_bbref_match +12102,Luis Robert,12,roberlu01,1660,Luis Robert,roberlu01,automatic_bbref_match +12103,Luis Severino,12,severlu01,1805,Luis Severino,severlu01,automatic_bbref_match +12104,Luis Torrens,12,torrelu01,2002,Luis Torrens,torrelu01,automatic_bbref_match +12105,Luis Urias,12,uriaslu01,2039,Luis Urias,uriaslu01,automatic_bbref_match +12106,Luis V Garcia,12,garcilu04,694,Luis Garcia Jr,garcilu04,automatic_bbref_match +12107,Luke Jackson,12,jackslu01,960,Luke Jackson,jackslu01,automatic_bbref_match +12108,Luke Little,12,littllu01,1129,Luke Little,littllu01,automatic_bbref_match +12109,Luke Maile,12,mailelu01,1185,Luke Maile,mailelu01,automatic_bbref_match +12110,Luke Raley,12,raleylu01,1602,Luke Raley,raleylu01,automatic_bbref_match +12111,Luke Weaver,12,weavelu01,2124,Luke Weaver,weavelu01,automatic_bbref_match +12112,MacKenzie Gore,12,gorema01,754,MacKenzie Gore,gorema01,automatic_bbref_match +12114,Manny Machado,12,machama01,1175,Manny Machado,machama01,automatic_bbref_match +12115,Manuel Margot,12,margoma01,1198,Manuel Margot,margoma01,automatic_bbref_match +12116,Manuel Rodriguez,12,rodrima01,1678,Manuel Rodriguez,rodrima01,automatic_bbref_match +12117,Marcell Ozuna,12,ozunama01,1481,Marcell Ozuna,ozunama01,automatic_bbref_match +12118,Marco Gonzales,12,gonzama02,735,Marco Gonzales,gonzama02,automatic_bbref_match +12119,Marco Luciano,12,luciama01,1162,Marco Luciano,luciama01,automatic_bbref_match +12120,Marcus Semien,12,semiema01,1799,Marcus Semien,semiema01,automatic_bbref_match +12121,Marcus Stroman,12,stromma01,1928,Marcus Stroman,stromma01,automatic_bbref_match +12122,Mark Canha,12,canhama01,316,Mark Canha,canhama01,automatic_bbref_match +12123,Mark Leiter,12,leitema02,1112,Mark Leiter,leitema02,automatic_bbref_match +12124,Mark Vientos,12,vientma01,2076,Mark Vientos,vientma01,automatic_bbref_match +12125,Martin Maldonado,12,maldoma01,1187,Martin Maldonado,maldoma01,automatic_bbref_match +12126,Martin Perez,12,perezma02,1535,Martin Perez,perezma02,automatic_bbref_match +12127,Masataka Yoshida,12,yoshima02,2216,Masataka Yoshida,yoshima02,automatic_bbref_match +12128,Mason Black,12,blackma01,203,Mason Black,blackma01,automatic_bbref_match +12129,Mason Englert,12,englema01,575,Mason Englert,englema01,automatic_bbref_match +12130,Mason Miller,12,millema03,1329,Mason Miller,millema03,automatic_bbref_match +12131,Masyn Winn,12,winnma01,2180,Masyn Winn,winnma01,automatic_bbref_match +12133,Matt Boyd,12,boydma01,230,Matthew Boyd,boydma01,automatic_bbref_match +12134,Matt Carpenter,12,carpema01,329,Matt Carpenter,carpema01,automatic_bbref_match +12135,Matt Chapman,12,chapmma01,367,Matt Chapman,chapmma01,automatic_bbref_match +12136,Matt Festa,12,festama01,610,Matt Festa,festama01,automatic_bbref_match +12137,Matt Moore,12,moorema02,1357,Matt Moore,moorema02,automatic_bbref_match +12138,Matt Olson,12,olsonma02,1461,Matt Olson,olsonma02,automatic_bbref_match +12139,Matt Strahm,12,strahma01,1918,Matt Strahm,strahma01,automatic_bbref_match +12140,Matt Thaiss,12,thaisma01,1975,Matt Thaiss,thaisma01,automatic_bbref_match +12141,Matt Vierling,12,vierlma01,2077,Matt Vierling,vierlma01,automatic_bbref_match +12142,Matt Waldron,12,waldrma01,2102,Matt Waldron,waldrma01,automatic_bbref_match +12143,Matt Wallner,12,wallnma01,2109,Matt Wallner,wallnma01,automatic_bbref_match +12144,Matthew Liberatore,12,liberma01,1121,Matthew Liberatore,liberma01,automatic_bbref_match +12145,Mauricio Dubon,12,dubonma01,538,Mauricio Dubon,dubonma01,automatic_bbref_match +12147,Max Kepler,12,keplema01,1031,Max Kepler,keplema01,automatic_bbref_match +12148,Max Meyer,12,meyerma01,1314,Max Meyer,meyerma01,automatic_bbref_match +12149,Max Muncy,12,muncyma01,1382,Max Muncy,muncyma01,automatic_bbref_match +12113,Maikel Garcia,12,garcima01,691,Maikel Garcia,garcima01,automatic_bbref_match +12132,Matt Bowman,12,bowmama01,228,Matt Bowman,bowmama01,automatic_bbref_match +12150,Max Scherzer,12,scherma01,1773,Max Scherzer,scherma01,automatic_bbref_match +12151,Max Schuemann,12,schuema01,1782,Max Schuemann,schuema01,automatic_bbref_match +12152,Merrill Kelly,12,kellyme01,1020,Merrill Kelly,kellyme01,automatic_bbref_match +12153,Michael A Taylor,12,taylomi02,1963,Michael Taylor,taylomi02,automatic_bbref_match +12154,Michael Busch,12,buschmi02,288,Michael Busch,buschmi02,automatic_bbref_match +12155,Michael Conforto,12,confomi01,407,Michael Conforto,confomi01,automatic_bbref_match +12156,Michael Grove,12,grovemi01,781,Michael Grove,grovemi01,automatic_bbref_match +12157,Michael Harris,12,harrimi04,827,Michael Harris,harrimi04,automatic_bbref_match +12158,Michael Kelly,12,kellymi03,1022,Michael Kelly,kellymi03,automatic_bbref_match +12159,Michael King,12,kingmi01,1047,Michael King,kingmi01,automatic_bbref_match +12161,Michael Lorenzen,12,lorenmi01,1151,Michael Lorenzen,lorenmi01,automatic_bbref_match +12162,Michael Massey,12,massemi02,1231,Michael Massey,massemi02,automatic_bbref_match +12163,Michael Petersen,12,petermi01,1546,Michael Petersen,petermi01,automatic_bbref_match +12164,Michael Siani,12,sianimi01,1822,Michael Siani,sianimi01,automatic_bbref_match +12165,Michael Soroka,12,sorokmi01,1875,Michael Soroka,sorokmi01,automatic_bbref_match +12166,Michael Stefanic,12,stefami01,1901,Michael Stefanic,stefami01,automatic_bbref_match +12167,Michael Toglia,12,toglimi01,1994,Michael Toglia,toglimi01,automatic_bbref_match +12168,Michael Tonkin,12,tonkimi01,1998,Michael Tonkin,tonkimi01,automatic_bbref_match +12169,Michael Wacha,12,wachami01,2093,Michael Wacha,wachami01,automatic_bbref_match +12170,Michel Otanez,12,otanemi01,1473,Michel Otanez,otanemi01,automatic_bbref_match +12171,Mickey Moniak,12,moniami01,1350,Mickey Moniak,moniami01,automatic_bbref_match +12172,Miguel Amaya,12,amayami01,64,Miguel Amaya,amayami01,automatic_bbref_match +12173,Miguel Andujar,12,andujmi01,78,Miguel Andujar,andujmi01,automatic_bbref_match +12174,Miguel Rojas,12,rojasmi02,1694,Miguel Rojas,rojasmi02,automatic_bbref_match +12175,Miguel Sano,12,sanomi01,1757,Miguel Sano,sanomi01,automatic_bbref_match +12176,Miguel Vargas,12,vargami01,2055,Miguel Vargas,vargami01,automatic_bbref_match +12177,Mike Baumann,12,baumami01,152,Mike Baumann,baumami01,automatic_bbref_match +12178,Mike Ford,12,fordmi01,635,Mike Ford,fordmi01,automatic_bbref_match +12179,Mike Tauchman,12,tauchmi01,1961,Mike Tauchman,tauchmi01,automatic_bbref_match +12180,Mike Trout,12,troutmi01,2019,Mike Trout,troutmi01,automatic_bbref_match +12181,Mike Yastrzemski,12,yastrmi01,2210,Mike Yastrzemski,yastrmi01,automatic_bbref_match +12182,Miles Mastrobuoni,12,mastrmi01,1232,Miles Mastrobuoni,mastrmi01,automatic_bbref_match +12183,Miles Mikolas,12,mikolmi01,1317,Miles Mikolas,mikolmi01,automatic_bbref_match +12184,Mitch Garver,12,garvemi01,702,Mitch Garver,garvemi01,automatic_bbref_match +12185,Mitch Haniger,12,hanigmi01,818,Mitch Haniger,hanigmi01,automatic_bbref_match +12186,Mitch Keller,12,kellemi03,1017,Mitch Keller,kellemi03,automatic_bbref_match +12187,Mitch Spence,12,spencmi01,1886,Mitch Spence,spencmi01,automatic_bbref_match +12188,Mitch White,12,whitemi03,2143,Mitch White,whitemi03,automatic_bbref_match +12189,Mitchell Parker,12,parkemi01,1500,Mitchell Parker,parkemi01,automatic_bbref_match +12190,MJ Melendez,12,melenmj01,1299,MJ Melendez,melenmj01,automatic_bbref_match +12191,Mookie Betts,12,bettsmo01,187,Mookie Betts,bettsmo01,automatic_bbref_match +12192,Nasim Nunez,12,nunezna01,1446,Nasim Nunez,nunezna01,automatic_bbref_match +12193,Nate Pearson,12,pearsna01,1513,Nate Pearson,pearsna01,automatic_bbref_match +12195,Nathan Lukes,12,lukesna01,1167,Nathan Lukes,lukesna01,automatic_bbref_match +12196,Nathaniel Lowe,12,lowena01,1155,Nathaniel Lowe,lowena01,automatic_bbref_match +12197,Nelson Velazquez,12,velazne01,2068,Nelson Velazquez,velazne01,automatic_bbref_match +12198,Nestor Cortes Jr,12,cortene01,421,Nestor Cortes Jr,cortene01,automatic_bbref_match +12199,Nicholas Castellanos,12,casteni01,340,Nicholas Castellanos,casteni01,automatic_bbref_match +12200,Nick Ahmed,12,ahmedni01,26,Nick Ahmed,ahmedni01,automatic_bbref_match +12201,Nick Allen,12,allenni02,46,Nick Allen,allenni02,automatic_bbref_match +12202,Nick Anderson,12,anderni01,71,Nick Anderson,anderni01,automatic_bbref_match +12203,Nick Fortes,12,forteni01,637,Nick Fortes,forteni01,automatic_bbref_match +12204,Nick Gonzales,12,gonzani01,736,Nick Gonzales,gonzani01,automatic_bbref_match +12205,Nick Gordon,12,gordoni01,752,Nick Gordon,gordoni01,automatic_bbref_match +12206,Nick Lodolo,12,lodolni01,1135,Nick Lodolo,lodolni01,automatic_bbref_match +12207,Nick Loftin,12,loftini01,1136,Nick Loftin,loftini01,automatic_bbref_match +12208,Nick Madrigal,12,madrini01,1178,Nick Madrigal,madrini01,automatic_bbref_match +12209,Nick Martinez,12,martini01,1224,Nick Martinez,martini01,automatic_bbref_match +12210,Nick Martini,12,martini02,1230,Nick Martini,martini02,automatic_bbref_match +12211,Nick Mears,12,mearsni01,1292,Nick Mears,mearsni01,automatic_bbref_match +12212,Nick Nastrini,12,nastrni01,1402,Nick Nastrini,nastrni01,automatic_bbref_match +12213,Nick Pivetta,12,pivetni01,1564,Nick Pivetta,pivetni01,automatic_bbref_match +12214,Nick Sandlin,12,sandlni01,1752,Nick Sandlin,sandlni01,automatic_bbref_match +12215,Nick Senzel,12,senzeni01,1802,Nick Senzel,senzeni01,automatic_bbref_match +12216,Nick Sogard,12,sogarni01,1866,Nick Sogard,sogarni01,automatic_bbref_match +12217,Nicky Lopez,12,lopezni01,1149,Nicky Lopez,lopezni01,automatic_bbref_match +12218,Nico Hoerner,12,hoernni01,909,Nico Hoerner,hoernni01,automatic_bbref_match +12219,Niko Kavadas,12,kavadni01,1011,Niko Kavadas,kavadni01,automatic_bbref_match +12220,Noah Davis,12,davisno01,472,Noah Davis,davisno01,automatic_bbref_match +12221,Noelvi Marte,12,marteno01,1212,Noelvi Marte,marteno01,automatic_bbref_match +12222,Nolan Arenado,12,arenano01,88,Nolan Arenado,arenano01,automatic_bbref_match +12223,Nolan Gorman,12,gormano01,755,Nolan Gorman,gormano01,automatic_bbref_match +12224,Nolan Jones,12,jonesno01,994,Nolan Jones,jonesno01,automatic_bbref_match +12225,Nolan Schanuel,12,schanno01,1771,Nolan Schanuel,schanno01,automatic_bbref_match +12226,Oliver Dunn,12,dunnol01,547,Oliver Dunn,dunnol01,automatic_bbref_match +12227,Omar Narvaez,12,narvaom01,1401,Omar Narvaez,narvaom01,automatic_bbref_match +12228,Oneil Cruz,12,cruzon01,449,Oneil Cruz,cruzon01,automatic_bbref_match +12229,Orion Kerkering,12,kerkeor01,1032,Orion Kerkering,kerkeor01,automatic_bbref_match +12230,Orlando Arcia,12,arciaor01,86,Orlando Arcia,arciaor01,automatic_bbref_match +12231,Osvaldo Bido,12,bidoos01,193,Osvaldo Bido,bidoos01,automatic_bbref_match +12272,Reynaldo Lopez,12,lopezre01,1145,Reynaldo Lopez,lopezre01,automatic_bbref_match +12232,Oswaldo Cabrera,12,cabreos01,303,Oswaldo Cabrera,cabreos01,automatic_bbref_match +12233,Otto Lopez,12,lopezot01,1150,Otto Lopez,lopezot01,automatic_bbref_match +12234,Ozzie Albies,12,albieoz01,31,Ozzie Albies,albieoz01,automatic_bbref_match +12235,Pablo Lopez,12,lopezpa01,1146,Pablo Lopez,lopezpa01,automatic_bbref_match +12236,Pablo Reyes,12,reyespa01,1637,Pablo Reyes,reyespa01,automatic_bbref_match +12237,Parker Meadows,12,meadopa01,1291,Parker Meadows,meadopa01,automatic_bbref_match +12238,Patrick Bailey,12,bailepa01,115,Patrick Bailey,bailepa01,automatic_bbref_match +12239,Patrick Corbin,12,corbipa01,416,Patrick Corbin,corbipa01,automatic_bbref_match +12240,Patrick Sandoval,12,sandopa02,1754,Patrick Sandoval,sandopa02,automatic_bbref_match +12241,Patrick Wisdom,12,wisdopa01,2181,Patrick Wisdom,wisdopa01,automatic_bbref_match +12242,Paul Blackburn,12,blackpa01,204,Paul Blackburn,blackpa01,automatic_bbref_match +12243,Paul DeJong,12,dejonpa01,485,Paul DeJong,dejonpa01,automatic_bbref_match +12244,Paul Goldschmidt,12,goldspa01,729,Paul Goldschmidt,goldspa01,automatic_bbref_match +12245,Paul Sewald,12,sewalpa01,1806,Paul Sewald,sewalpa01,automatic_bbref_match +12246,Paul Skenes,12,skenepa01,1833,Paul Skenes,skenepa01,automatic_bbref_match +12247,Pavin Smith,12,smithpa04,1851,Pavin Smith,smithpa04,automatic_bbref_match +12248,Pedro Avila,12,avilape01,105,Pedro Avila,avilape01,automatic_bbref_match +12250,Pete Alonso,12,alonspe01,53,Pete Alonso,alonspe01,automatic_bbref_match +12251,Pete Crow Armstrong,12,crowape01,445,Pete Crow Armstrong,crowape01,automatic_bbref_match +12252,Pete Fairbanks,12,fairbpe01,592,Pete Fairbanks,fairbpe01,automatic_bbref_match +12253,Peter Lambert,12,lambepe01,1088,Peter Lambert,lambepe01,automatic_bbref_match +12254,Phil Maton,12,matonph01,1238,Phil Maton,matonph01,automatic_bbref_match +12256,Porter Hodge,12,hodgepo01,907,Porter Hodge,hodgepo01,automatic_bbref_match +12257,Quinn Priester,12,priesqu01,1586,Quinn Priester,priesqu01,automatic_bbref_match +12258,Rafael Devers,12,deverra01,499,Rafael Devers,deverra01,automatic_bbref_match +12259,Rafael Montero,12,montera01,1352,Rafael Montero,montera01,automatic_bbref_match +12260,Raisel Iglesias,12,iglesra01,950,Raisel Iglesias,iglesra01,automatic_bbref_match +12261,Ramon Laureano,12,laurera01,1097,Ramon Laureano,laurera01,automatic_bbref_match +12263,Randal Grichuk,12,grichra01,775,Randal Grichuk,grichra01,automatic_bbref_match +12264,Randy Arozarena,12,arozara01,92,Randy Arozarena,arozara01,automatic_bbref_match +12265,Randy Rodriguez,12,rodrira02,1683,Randy Rodriguez,rodrira02,automatic_bbref_match +12266,Randy Vasquez,12,vasqura02,2060,Randy Vasquez,vasqura02,automatic_bbref_match +12267,Ranger Suarez,12,suarera01,1936,Ranger Suarez,suarera01,automatic_bbref_match +12268,Reed Garrett,12,garrere01,700,Reed Garrett,garrere01,automatic_bbref_match +12269,Reese McGuire,12,mcguire01,1277,Reese McGuire,mcguire01,automatic_bbref_match +12270,Reese Olson,12,olsonre01,1462,Reese Olson,olsonre01,automatic_bbref_match +12271,Reid Detmers,12,detmere01,496,Reid Detmers,detmere01,automatic_bbref_match +12255,Pierce Johnson,12,johnspi01,985,Pierce Johnson,johnspi01,automatic_bbref_match +12273,Rhett Lowder,12,lowderh01,1154,Rhett Lowder,lowderh01,automatic_bbref_match +12274,Rhys Hoskins,12,hoskirh01,925,Rhys Hoskins,hoskirh01,automatic_bbref_match +12276,Richie Palacios,12,palacri01,1488,Richie Palacios,palacri01,automatic_bbref_match +12277,Riley Adams,12,adamsri03,17,Riley Adams,adamsri03,automatic_bbref_match +12278,Riley Greene,12,greenri03,771,Riley Greene,greenri03,automatic_bbref_match +12279,Roansy Contreras,12,contrro01,412,Roansy Contreras,contrro01,automatic_bbref_match +12280,Rob Refsnyder,12,refsnro01,1626,Rob Refsnyder,refsnro01,automatic_bbref_match +12281,Robbie Grossman,12,grossro01,779,Robbie Grossman,grossro01,automatic_bbref_match +12282,Robbie Ray,12,rayro02,1620,Robbie Ray,rayro02,automatic_bbref_match +12283,Robert Garcia,12,garciro04,692,Robert Garcia,garciro04,automatic_bbref_match +12284,Robert Suarez,12,suarero01,1938,Robert Suarez,suarero01,automatic_bbref_match +12285,Roddery Munoz,12,munozro01,1385,Roddery Munoz,munozro01,automatic_bbref_match +12286,Romy Gonzalez,12,gonzaro01,745,Romy Gonzalez,gonzaro01,automatic_bbref_match +12287,Ron Marinaccio,12,marinro01,1199,Ron Marinaccio,marinro01,automatic_bbref_match +12288,Ronald Acuna Jr,12,acunaro01,12,Ronald Acuna Jr,acunaro01,automatic_bbref_match +12289,Ronel Blanco,12,blancro01,208,Ronel Blanco,blancro01,automatic_bbref_match +12290,Ross Stripling,12,stripro01,1927,Ross Stripling,stripro01,automatic_bbref_match +12291,Rowdy Tellez,12,tellero01,1972,Rowdy Tellez,tellero01,automatic_bbref_match +12292,Royce Lewis,12,lewisro02,1119,Royce Lewis,lewisro02,automatic_bbref_match +12293,Ryan Bliss,12,blissry01,215,Ryan Bliss,blissry01,automatic_bbref_match +12294,Ryan Brasier,12,brasiry01,242,Ryan Brasier,brasiry01,automatic_bbref_match +12295,Ryan Burr,12,burrry01,287,Ryan Burr,burrry01,automatic_bbref_match +12296,Ryan Feltner,12,feltnry01,603,Ryan Feltner,feltnry01,automatic_bbref_match +12298,Ryan Helsley,12,helslry01,853,Ryan Helsley,helslry01,automatic_bbref_match +12299,Ryan Jeffers,12,jeffery01,975,Ryan Jeffers,jeffery01,automatic_bbref_match +12300,Ryan Kreidler,12,kreidry01,1076,Ryan Kreidler,kreidry01,automatic_bbref_match +12301,Ryan McMahon,12,mcmahry01,1286,Ryan McMahon,mcmahry01,automatic_bbref_match +12302,Ryan Mountcastle,12,mountry01,1377,Ryan Mountcastle,mountry01,automatic_bbref_match +12303,Ryan Noda,12,nodary01,1427,Ryan Noda,nodary01,automatic_bbref_match +12304,Ryan OHearn,12,ohearry01,1453,Ryan OHearn,ohearry01,automatic_bbref_match +12305,Ryan Pepiot,12,pepiory01,1521,Ryan Pepiot,pepiory01,automatic_bbref_match +12306,Ryan Pressly,12,pressry01,1584,Ryan Pressly,pressry01,automatic_bbref_match +12307,Ryan Thompson,12,thompry02,1983,Ryan Thompson,thompry02,automatic_bbref_match +12308,Ryan Walker,12,walkery01,2106,Ryan Walker,walkery01,automatic_bbref_match +12309,Ryan Weathers,12,weathry01,2123,Ryan Weathers,weathry01,automatic_bbref_match +12310,Ryan Yarbrough,12,yarbrry01,2208,Ryan Yarbrough,yarbrry01,automatic_bbref_match +12312,Ryne Nelson,12,nelsory01,1411,Ryne Nelson,nelsory01,automatic_bbref_match +12313,Ryne Stanek,12,stanery01,1892,Ryne Stanek,stanery01,automatic_bbref_match +12314,Sal Frelick,12,frelisa01,657,Sal Frelick,frelisa01,automatic_bbref_match +12275,Richard Lovelady,12,lovelri01,1153,Richard Lovelady,lovelri01,automatic_bbref_match +12311,Ryder Ryan,12,ryanry01,1731,Ryder Ryan,ryanry01,automatic_bbref_match +12315,Salvador Perez,12,perezsa02,1534,Salvador Perez,perezsa02,automatic_bbref_match +12316,Sam Hentges,12,hentgsa01,861,Sam Hentges,hentgsa01,automatic_bbref_match +12317,Sam Hilliard,12,hillisa01,903,Sam Hilliard,hillisa01,automatic_bbref_match +12318,Sam Long,12,longsa01,1139,Sam Long,longsa01,automatic_bbref_match +12319,Sam Moll,12,mollsa01,1346,Sam Moll,mollsa01,automatic_bbref_match +12320,Santiago Espinal,12,espinsa01,582,Santiago Espinal,espinsa01,automatic_bbref_match +12321,Scott Alexander,12,alexasc02,36,Scott Alexander,alexasc02,automatic_bbref_match +12322,Scott Barlow,12,barlosc01,128,Scott Barlow,barlosc01,automatic_bbref_match +12323,Scott Blewett,12,blewesc01,214,Scott Blewett,blewesc01,automatic_bbref_match +12324,Scott McGough,12,mcgousc01,1275,Scott McGough,mcgousc01,automatic_bbref_match +12325,Sean Bouchard,12,bouchse01,225,Sean Bouchard,bouchse01,automatic_bbref_match +12326,Sean Guenther,12,guentse01,783,Sean Guenther,guentse01,automatic_bbref_match +12327,Sean Hjelle,12,hjellse01,906,Sean Hjelle,hjellse01,automatic_bbref_match +12329,Sean Murphy,12,murphse01,1390,Sean Murphy,murphse01,automatic_bbref_match +12330,Sean Reid-Foley,12,reidfse01,1627,Sean Reid Foley,reidfse01,automatic_bbref_match +12331,Seiya Suzuki,12,suzukse01,1946,Seiya Suzuki,suzukse01,automatic_bbref_match +12333,Seth Brown,12,brownse01,265,Seth Brown,brownse01,automatic_bbref_match +12334,Seth Lugo,12,lugose01,1165,Seth Lugo,lugose01,automatic_bbref_match +12335,Seth Martinez,12,martise01,1226,Seth Martinez,martise01,automatic_bbref_match +12336,Shane Baz,12,bazsh01,155,Shane Baz,bazsh01,automatic_bbref_match +12337,Shawn Armstrong,12,armstsh01,91,Shawn Armstrong,armstsh01,automatic_bbref_match +12338,Shawn Dubin,12,dubinsh01,537,Shawn Dubin,dubinsh01,automatic_bbref_match +12339,Shea Langeliers,12,langesh01,1092,Shea Langeliers,langesh01,automatic_bbref_match +12340,Shelby Miller,12,millesh01,1323,Shelby Miller,millesh01,automatic_bbref_match +12341,Shohei Ohtani,12,ohtansh01,1455,Shohei Ohtani,ohtansh01,automatic_bbref_match +12342,Shota Imanaga,12,imanash01,951,Shota Imanaga,imanash01,automatic_bbref_match +12343,Simeon Woods Richardson,12,woodssi01,2197,Simeon Woods Richardson,woodssi01,automatic_bbref_match +12344,Sixto Sanchez,12,sanchsi01,1751,Sixto Sanchez,sanchsi01,automatic_bbref_match +12345,Slade Cecconi,12,ceccosl01,356,Slade Cecconi,ceccosl01,automatic_bbref_match +12346,Sonny Gray,12,grayso01,765,Sonny Gray,grayso01,automatic_bbref_match +12347,Spencer Arrighetti,12,arrigsp01,95,Spencer Arrighetti,arrigsp01,automatic_bbref_match +12348,Spencer Bivens,12,bivensp01,201,Spencer Bivens,bivensp01,automatic_bbref_match +12349,Spencer Horwitz,12,horwisp01,924,Spencer Horwitz,horwisp01,automatic_bbref_match +12350,Spencer Schwellenbach,12,schwesp01,1785,Spencer Schwellenbach,schwesp01,automatic_bbref_match +12351,Spencer Steer,12,steersp01,1900,Spencer Steer,steersp01,automatic_bbref_match +12352,Spencer Torkelson,12,torkesp01,2000,Spencer Torkelson,torkesp01,automatic_bbref_match +12353,Spencer Turnbull,12,turnbsp01,2028,Spencer Turnbull,turnbsp01,automatic_bbref_match +12354,Starling Marte,12,martest01,1208,Starling Marte,martest01,automatic_bbref_match +12355,Stephen Kolek,12,kolekst01,1070,Stephen Kolek,kolekst01,automatic_bbref_match +12332,Seranthony Dominguez,12,dominse01,524,Seranthony Dominguez,dominse01,automatic_bbref_match +12357,Steven Matz,12,matzst01,1243,Steven Matz,matzst01,automatic_bbref_match +12358,Steven Okert,12,okertst01,1456,Steven Okert,okertst01,automatic_bbref_match +12359,Steven Wilson,12,wilsost02,2169,Steven Wilson,wilsost02,automatic_bbref_match +12360,Stuart Fairchild,12,faircst01,593,Stuart Fairchild,faircst01,automatic_bbref_match +12361,Taijuan Walker,12,walketa01,2105,Taijuan Walker,walketa01,automatic_bbref_match +12362,Taj Bradley,12,bradlta01,238,Taj Bradley,bradlta01,automatic_bbref_match +12363,Tanner Banks,12,banksta01,122,Tanner Banks,banksta01,automatic_bbref_match +12364,Tanner Bibee,12,bibeeta01,189,Tanner Bibee,bibeeta01,automatic_bbref_match +12365,Tanner Gordon,12,gordota01,753,Tanner Gordon,gordota01,automatic_bbref_match +12366,Tanner Houck,12,houckta01,927,Tanner Houck,houckta01,automatic_bbref_match +12367,Tanner Rainey,12,raineta01,1599,Tanner Rainey,raineta01,automatic_bbref_match +12368,Tanner Scott,12,scottta01,1788,Tanner Scott,scottta01,automatic_bbref_match +12369,Tarik Skubal,12,skubata01,1836,Tarik Skubal,skubata01,automatic_bbref_match +12370,Tayler Saucedo,12,sauceta01,1768,Tayler Saucedo,sauceta01,automatic_bbref_match +12371,Tayler Scott,12,scottta02,1787,Tayler Scott,scottta02,automatic_bbref_match +12372,Taylor Rogers,12,rogerta01,1689,Taylor Rogers,rogerta01,automatic_bbref_match +12373,Taylor Walls,12,wallsta01,2110,Taylor Walls,wallsta01,automatic_bbref_match +12374,Taylor Ward,12,wardta01,2116,Taylor Ward,wardta01,automatic_bbref_match +12375,Teoscar Hernandez,12,hernate01,873,Teoscar Hernandez,hernate01,automatic_bbref_match +12376,Thairo Estrada,12,estrath01,587,Thairo Estrada,estrath01,automatic_bbref_match +12377,Thyago Vieira,12,vieirth01,2075,Thyago Vieira,vieirth01,automatic_bbref_match +12378,Tim Anderson,12,anderti01,73,Tim Anderson,anderti01,automatic_bbref_match +12379,Tim Herrin,12,herriti01,886,Tim Herrin,herriti01,automatic_bbref_match +12380,Tim Hill,12,hillti01,900,Tim Hill,hillti01,automatic_bbref_match +12381,Tim Mayza,12,mayzati01,1253,Tim Mayza,mayzati01,automatic_bbref_match +12382,TJ Friedl,12,friedtj01,660,TJ Friedl,friedtj01,automatic_bbref_match +12383,TJ McFarland,12,mcfartj01,1273,TJ McFarland,mcfartj01,automatic_bbref_match +12384,Tobias Myers,12,myersto01,1397,Tobias Myers,myersto01,automatic_bbref_match +12385,Tomas Nido,12,nidoto01,1424,Tomas Nido,nidoto01,automatic_bbref_match +12386,Tommy Edman,12,edmanto01,558,Tommy Edman,edmanto01,automatic_bbref_match +12387,Tommy Henry,12,henryto01,859,Tommy Henry,henryto01,automatic_bbref_match +12388,Tommy Kahnle,12,kahnlto01,1006,Tommy Kahnle,kahnlto01,automatic_bbref_match +12389,Tommy Nance,12,nanceto01,1398,Tommy Nance,nanceto01,automatic_bbref_match +12390,Tommy Pham,12,phamth01,1552,Tommy Pham,phamth01,automatic_bbref_match +12391,Tony Santillan,12,santito01,1766,Tony Santillan,santito01,automatic_bbref_match +12392,Touki Toussaint,12,toussto01,2005,Touki Toussaint,toussto01,automatic_bbref_match +12393,Travis dArnaud,12,darnatr01,461,Travis dArnaud,darnatr01,automatic_bbref_match +12394,Travis Jankowski,12,jankotr01,967,Travis Jankowski,jankotr01,automatic_bbref_match +12395,Trea Turner,12,turnetr01,1,Trea Turner,turnetr01,automatic_bbref_match +12396,Trent Grisham,12,grishtr01,776,Trent Grisham,grishtr01,automatic_bbref_match +12397,Trent Thornton,12,thorntr01,1988,Trent Thornton,thorntr01,automatic_bbref_match +12398,Trevor Larnach,12,larnatr01,1094,Trevor Larnach,larnatr01,automatic_bbref_match +12399,Trevor Megill,12,megiltr01,1294,Trevor Megill,megiltr01,automatic_bbref_match +12400,Trevor Richards,12,richatr01,1646,Trevor Richards,richatr01,automatic_bbref_match +12401,Trevor Rogers,12,rogertr01,1693,Trevor Rogers,rogertr01,automatic_bbref_match +12402,Trevor Story,12,storytr01,1914,Trevor Story,storytr01,automatic_bbref_match +12403,Trevor Williams,12,willitr01,2156,Trevor Williams,willitr01,automatic_bbref_match +12404,Trey Cabbage,12,cabbatr01,297,Trey Cabbage,cabbatr01,automatic_bbref_match +12405,Trey Lipscomb,12,lipsctr01,1125,Trey Lipscomb,lipsctr01,automatic_bbref_match +12406,Trey Sweeney,12,sweentr01,1951,Trey Sweeney,sweentr01,automatic_bbref_match +12407,Triston Casas,12,casastr01,335,Triston Casas,casastr01,automatic_bbref_match +12408,Triston McKenzie,12,mckentr01,1282,Triston McKenzie,mckentr01,automatic_bbref_match +12409,Tucker Barnhart,12,barnhtu01,135,Tucker Barnhart,barnhtu01,automatic_bbref_match +12410,Ty Blach,12,blachty01,202,Ty Blach,blachty01,automatic_bbref_match +12411,Ty France,12,francty01,642,Ty France,francty01,automatic_bbref_match +12412,Tyler Alexander,12,alexaty01,37,Tyler Alexander,alexaty01,automatic_bbref_match +12413,Tyler Anderson,12,anderty01,68,Tyler Anderson,anderty01,automatic_bbref_match +12414,Tyler Ferguson,12,ferguty01,604,Tyler Ferguson,ferguty01,automatic_bbref_match +12415,Tyler Fitzgerald,12,fitzgty01,620,Tyler Fitzgerald,fitzgty01,automatic_bbref_match +12416,Tyler Freeman,12,freemty01,654,Tyler Freeman,freemty01,automatic_bbref_match +12417,Tyler Glasnow,12,glasnty01,726,Tyler Glasnow,glasnty01,automatic_bbref_match +12418,Tyler Holton,12,holtoty01,922,Tyler Holton,holtoty01,automatic_bbref_match +12419,Tyler Kinley,12,kinlety01,1050,Tyler Kinley,kinlety01,automatic_bbref_match +12420,Tyler Nevin,12,nevinty01,1417,Tyler Nevin,nevinty01,automatic_bbref_match +12421,Tyler ONeill,12,oneilty01,1463,Tyler ONeill,oneilty01,automatic_bbref_match +12423,Tyler Rogers,12,rogerty01,1691,Tyler Rogers,rogerty01,automatic_bbref_match +12424,Tyler Soderstrom,12,soderty01,1864,Tyler Soderstrom,soderty01,automatic_bbref_match +12425,Tyler Stephenson,12,stephty01,1905,Tyler Stephenson,stephty01,automatic_bbref_match +12426,Tyler Wade,12,wadety01,2094,Tyler Wade,wadety01,automatic_bbref_match +12427,Tylor Megill,12,megilty01,1295,Tylor Megill,megilty01,automatic_bbref_match +12428,Tyrone Taylor,12,tayloty01,1965,Tyrone Taylor,tayloty01,automatic_bbref_match +12429,Tyson Miller,12,millety01,1324,Tyson Miller,millety01,automatic_bbref_match +12431,Vaughn Grissom,12,grissva01,777,Vaughn Grissom,grissva01,automatic_bbref_match +12432,Victor Caratini,12,caratvi01,325,Victor Caratini,caratvi01,automatic_bbref_match +12433,Victor Gonzalez,12,gonzavi02,743,Victor Gonzalez,gonzavi02,automatic_bbref_match +12434,Victor Robles,12,roblevi01,1666,Victor Robles,roblevi01,automatic_bbref_match +12435,Victor Scott,12,scottvi01,1790,Victor Scott,scottvi01,automatic_bbref_match +12436,Victor Vodnik,12,vodnivi01,2084,Victor Vodnik,vodnivi01,automatic_bbref_match +12437,Vidal Brujan,12,brujavi01,272,Vidal Brujan,brujavi01,automatic_bbref_match +12438,Vinnie Pasquantino,12,pasquvi01,1503,Vinnie Pasquantino,pasquvi01,automatic_bbref_match +12439,Vladimir Guerrero Jr,12,guerrvl02,789,Vladimir Guerrero Jr,guerrvl02,automatic_bbref_match +12440,Walker Buehler,12,buehlwa01,277,Walker Buehler,buehlwa01,automatic_bbref_match +12441,Wandy Peralta,12,peralwa01,1524,Wandy Peralta,peralwa01,automatic_bbref_match +12442,Wenceel Perez,12,perezwe01,1541,Wenceel Perez,perezwe01,automatic_bbref_match +12443,Weston Wilson,12,wilsowe01,2170,Weston Wilson,wilsowe01,automatic_bbref_match +12444,Whit Merrifield,12,merriwh01,1309,Whit Merrifield,merriwh01,automatic_bbref_match +12445,Will Benson,12,bensowi01,179,Will Benson,bensowi01,automatic_bbref_match +12446,Will Brennan,12,brennwi02,250,Will Brennan,brennwi02,automatic_bbref_match +12447,Will D Smith,12,smithwi05,1841,Will Smith,smithwi05,automatic_bbref_match +12448,Will Smith,12,smithwi04,1843,Will Smith,smithwi04,automatic_bbref_match +12449,Will Vest,12,vestwi01,2074,Will Vest,vestwi01,automatic_bbref_match +12450,Will Wagner,12,wagnewi01,2097,Will Wagner,wagnewi01,automatic_bbref_match +12451,Willi Castro,12,castrwi01,352,Willi Castro,castrwi01,automatic_bbref_match +12452,William Contreras,12,contrwi02,411,William Contreras,contrwi02,automatic_bbref_match +12453,Willie Calhoun,12,calhowi01,307,Willie Calhoun,calhowi01,automatic_bbref_match +12454,Willson Contreras,12,contrwi01,410,Willson Contreras,contrwi01,automatic_bbref_match +12455,Willy Adames,12,adamewi01,14,Willy Adames,adamewi01,automatic_bbref_match +12456,Wilmer Flores,12,florewi01,627,Wilmer Flores,florewi01,automatic_bbref_match +12457,Wilyer Abreu,12,abreuwi02,10,Wilyer Abreu,abreuwi02,automatic_bbref_match +12458,Wyatt Langford,12,langfwy01,1093,Wyatt Langford,langfwy01,automatic_bbref_match +12459,Xander Bogaerts,12,bogaexa01,216,Xander Bogaerts,bogaexa01,automatic_bbref_match +12460,Xavier Edwards,12,edwarxa01,559,Xavier Edwards,edwarxa01,automatic_bbref_match +12461,Xzavion Curry,12,curryxz01,454,Xzavion Curry,curryxz01,automatic_bbref_match +12462,Yainer Diaz,12,diazya02,511,Yainer Diaz,diazya02,automatic_bbref_match +12463,Yan Gomes,12,gomesya01,731,Yan Gomes,gomesya01,automatic_bbref_match +12464,Yandy Diaz,12,diazya01,507,Yandy Diaz,diazya01,automatic_bbref_match +12465,Yariel Rodriguez,12,rodriya01,1686,Yariel Rodriguez,rodriya01,automatic_bbref_match +12466,Yasmani Grandal,12,grandya01,761,Yasmani Grandal,grandya01,automatic_bbref_match +12467,Yennier Cano,12,canoye01,320,Yennier Cano,canoye01,automatic_bbref_match +12468,Yerry Rodriguez,12,rodriye01,1680,Yerry Rodriguez,rodriye01,automatic_bbref_match +12469,Yimi Garcia,12,garciyi01,680,Yimi Garcia,garciyi01,automatic_bbref_match +12470,Yohan Ramirez,12,ramiryo01,1611,Yohan Ramirez,ramiryo01,automatic_bbref_match +12471,Yonny Chirinos,12,chiriyo01,374,Yonny Chirinos,chiriyo01,automatic_bbref_match +12472,Yordan Alvarez,12,alvaryo01,61,Yordan Alvarez,alvaryo01,automatic_bbref_match +12473,Yoshinobu Yamamoto,12,yamamyo01,2206,Yoshinobu Yamamoto,yamamyo01,automatic_bbref_match +12474,Yu Darvish,12,darviyu01,462,Yu Darvish,darviyu01,automatic_bbref_match +12475,Yuki Matsui,12,matsuyu01,1241,Yuki Matsui,matsuyu01,automatic_bbref_match +12476,Yuli Gurriel,12,gourryu01,793,Yuli Gurriel,gourryu01,automatic_bbref_match +12477,Yunior Marte,12,marteyu01,1211,Yunior Marte,marteyu01,automatic_bbref_match +12478,Yusei Kikuchi,12,kikucyu01,1040,Yusei Kikuchi,kikucyu01,automatic_bbref_match +12479,Zac Gallen,12,galleza01,673,Zac Gallen,galleza01,automatic_bbref_match +12480,Zach DeLoach,12,deloaza01,489,Zach DeLoach,deloaza01,automatic_bbref_match +12481,Zach Dezenzo,12,dezenza01,500,Zach Dezenzo,dezenza01,automatic_bbref_match +12482,Zach Eflin,12,eflinza01,562,Zach Eflin,eflinza01,automatic_bbref_match +12483,Zach McKinstry,12,mckinza01,1284,Zach McKinstry,mckinza01,automatic_bbref_match +12484,Zach Neto,12,netoza01,1414,Zach Neto,netoza01,automatic_bbref_match +12485,Zach Pop,12,popza01,1575,Zach Pop,popza01,automatic_bbref_match +12486,Zack Gelof,12,gelofza01,709,Zack Gelof,gelofza01,automatic_bbref_match +12487,Zack Kelly,12,kellyza01,1024,Zack Kelly,kellyza01,automatic_bbref_match +12488,Zack Littell,12,litteza01,1127,Zack Littell,litteza01,automatic_bbref_match +12489,Zack Short,12,shortza01,1818,Zack Short,shortza01,automatic_bbref_match +12490,Zack Wheeler,12,wheelza01,2139,Zack Wheeler,wheelza01,automatic_bbref_match +12491,Zebby Matthews,12,matthze01,1242,Zebby Matthews,matthze01,automatic_bbref_match +11928,Jo Adell,12,adelljo01,20,Jo Adell,adelljo01,automatic_bbref_match +11881,Jake Junis,12,junisja01,1004,Jakob Junis,junisja01,automatic_bbref_match +11545,Blake Perkins,12,perkibl01,1543,Blake Perkins,perkibl01,automatic_bbref_match +12297,Ryan Fernandez,12,fernary01,608,Ryan Fernandez,fernary01,automatic_bbref_match +12356,Steven Kwan,12,kwanst01,1080,Steven Kwan,kwanst01,automatic_bbref_match +11839,Hogan Harris,12,harriho03,826,Hogan Harris,harriho03,automatic_bbref_match +11597,Bryan Woo,12,woobr01,2191,Bryan Woo,woobr01,automatic_bbref_match +12012,JT Realmuto,12,realmjt01,1622,JT Realmuto,realmjt01,automatic_bbref_match +12146,Max Fried,12,friedma01,659,Max Fried,friedma01,automatic_bbref_match +12262,Ramon Urias,12,uriasra01,2037,Ramon Urias,uriasra01,automatic_bbref_match +11982,Jose Caballero,12,cabaljo01,296,Jose Caballero,cabaljo01,automatic_bbref_match +12194,Nathan Eovaldi,12,eovalna01,576,Nathan Eovaldi,eovalna01,automatic_bbref_match +11643,Chris Roycroft,12,roycrch01,1718,Chris Roycroft,roycrch01,automatic_bbref_match +12430,Valente Bellozo,12,bellova01,172,Valente Bellozo,bellova01,automatic_bbref_match +12054,Kyle Bradish,12,bradiky01,235,Kyle Bradish,bradiky01,automatic_bbref_match +12328,Sean Manaea,12,manaese01,1189,Sean Manaea,manaese01,automatic_bbref_match +11748,Edward Cabrera,12,cabreed02,302,Edward Cabrera,cabreed02,automatic_bbref_match +11665,Colin Holderman,12,holdeco01,913,Colin Holderman,holdeco01,automatic_bbref_match +12160,Michael Kopech,12,kopecmi01,1071,Michael Kopech,kopecmi01,automatic_bbref_match +2014,AJ Minter,1,,90000,NEW_TEMP_90000,,new_sbaplayer +2,AJ Minter,2,,90000,NEW_TEMP_90000,,new_sbaplayer +1008,AJ Minter,3,,90000,NEW_TEMP_90000,,new_sbaplayer +3594,AJ Minter,4,,90000,NEW_TEMP_90000,,new_sbaplayer +4210,AJ Minter,5,,90000,NEW_TEMP_90000,,new_sbaplayer +2015,AJ Pollock,1,,90001,NEW_TEMP_90001,,new_sbaplayer +3,AJ Pollock,2,,90001,NEW_TEMP_90001,,new_sbaplayer +1009,AJ Pollock,3,,90001,NEW_TEMP_90001,,new_sbaplayer +3082,AJ Pollock,4,,90001,NEW_TEMP_90001,,new_sbaplayer +4516,AJ Pollock,5,,90001,NEW_TEMP_90001,,new_sbaplayer +2016,Aaron Altherr,1,,90002,NEW_TEMP_90002,,new_sbaplayer +4,Aaron Altherr,2,,90002,NEW_TEMP_90002,,new_sbaplayer +1010,Aaron Altherr,3,,90002,NEW_TEMP_90002,,new_sbaplayer +2017,Aaron Bummer,1,,90003,NEW_TEMP_90003,,new_sbaplayer +6,Aaron Bummer,2,,90003,NEW_TEMP_90003,,new_sbaplayer +1012,Aaron Bummer,3,,90003,NEW_TEMP_90003,,new_sbaplayer +3579,Aaron Bummer,4,,90003,NEW_TEMP_90003,,new_sbaplayer +4434,Aaron Bummer,5,,90003,NEW_TEMP_90003,,new_sbaplayer +2018,Aaron Hicks,1,,90004,NEW_TEMP_90004,,new_sbaplayer +8,Aaron Hicks,2,,90004,NEW_TEMP_90004,,new_sbaplayer +1014,Aaron Hicks,3,,90004,NEW_TEMP_90004,,new_sbaplayer +3072,Aaron Hicks,4,,90004,NEW_TEMP_90004,,new_sbaplayer +4587,Aaron Hicks,5,,90004,NEW_TEMP_90004,,new_sbaplayer +2019,Aaron Judge,1,,90005,NEW_TEMP_90005,,new_sbaplayer +9,Aaron Judge,2,,90005,NEW_TEMP_90005,,new_sbaplayer +1015,Aaron Judge,3,,90005,NEW_TEMP_90005,,new_sbaplayer +3073,Aaron Judge,4,,90005,NEW_TEMP_90005,,new_sbaplayer +4207,Aaron Judge,5,,90005,NEW_TEMP_90005,,new_sbaplayer +2020,Aaron Nola,1,,90006,NEW_TEMP_90006,,new_sbaplayer +10,Aaron Nola,2,,90006,NEW_TEMP_90006,,new_sbaplayer +1016,Aaron Nola,3,,90006,NEW_TEMP_90006,,new_sbaplayer +3582,Aaron Nola,4,,90006,NEW_TEMP_90006,,new_sbaplayer +4204,Aaron Nola,5,,90006,NEW_TEMP_90006,,new_sbaplayer +2021,Aaron Sanchez,1,,90007,NEW_TEMP_90007,,new_sbaplayer +11,Aaron Sanchez,2,,90007,NEW_TEMP_90007,,new_sbaplayer +1017,Aaron Sanchez,3,,90007,NEW_TEMP_90007,,new_sbaplayer +2023,Adalberto Mondesi,1,,90008,NEW_TEMP_90008,,new_sbaplayer +14,Adalberto Mondesi,2,,90008,NEW_TEMP_90008,,new_sbaplayer +1020,Adalberto Mondesi,3,,90008,NEW_TEMP_90008,,new_sbaplayer +3075,Adalberto Mondesi,4,,90008,NEW_TEMP_90008,,new_sbaplayer +4483,Adalberto Mondesi,5,,90008,NEW_TEMP_90008,,new_sbaplayer +2024,Adam Conley,1,,90009,NEW_TEMP_90009,,new_sbaplayer +16,Adam Conley,2,,90009,NEW_TEMP_90009,,new_sbaplayer +1022,Adam Conley,3,,90009,NEW_TEMP_90009,,new_sbaplayer +2025,Adam Duvall,1,,90010,NEW_TEMP_90010,,new_sbaplayer +17,Adam Duvall,2,,90010,NEW_TEMP_90010,,new_sbaplayer +1023,Adam Duvall,3,,90010,NEW_TEMP_90010,,new_sbaplayer +3076,Adam Duvall,4,,90010,NEW_TEMP_90010,,new_sbaplayer +4544,Adam Duvall,5,,90010,NEW_TEMP_90010,,new_sbaplayer +2026,Adam Eaton,1,,90011,NEW_TEMP_90011,,new_sbaplayer +18,Adam Eaton,2,,90011,NEW_TEMP_90011,,new_sbaplayer +1024,Adam Eaton,3,,90011,NEW_TEMP_90011,,new_sbaplayer +3077,Adam Eaton,4,,90011,NEW_TEMP_90011,,new_sbaplayer +4775,Adam Eaton,5,,90011,NEW_TEMP_90011,,new_sbaplayer +2027,Adam Engel,1,,90012,NEW_TEMP_90012,,new_sbaplayer +19,Adam Engel,2,,90012,NEW_TEMP_90012,,new_sbaplayer +1025,Adam Engel,3,,90012,NEW_TEMP_90012,,new_sbaplayer +3078,Adam Engel,4,,90012,NEW_TEMP_90012,,new_sbaplayer +4448,Adam Engel,5,,90012,NEW_TEMP_90012,,new_sbaplayer +2028,Adam Frazier,1,,90013,NEW_TEMP_90013,,new_sbaplayer +20,Adam Frazier,2,,90013,NEW_TEMP_90013,,new_sbaplayer +1026,Adam Frazier,3,,90013,NEW_TEMP_90013,,new_sbaplayer +3079,Adam Frazier,4,,90013,NEW_TEMP_90013,,new_sbaplayer +4603,Adam Frazier,5,,90013,NEW_TEMP_90013,,new_sbaplayer +2029,Adam Jones,1,,90014,NEW_TEMP_90014,,new_sbaplayer +22,Adam Jones,2,,90014,NEW_TEMP_90014,,new_sbaplayer +1028,Adam Jones,3,,90014,NEW_TEMP_90014,,new_sbaplayer +2030,Adam Kolarek,1,,90015,NEW_TEMP_90015,,new_sbaplayer +23,Adam Kolarek,2,,90015,NEW_TEMP_90015,,new_sbaplayer +1029,Adam Kolarek,3,,90015,NEW_TEMP_90015,,new_sbaplayer +3585,Adam Kolarek,4,,90015,NEW_TEMP_90015,,new_sbaplayer +4388,Adam Kolarek,5,,90015,NEW_TEMP_90015,,new_sbaplayer +2031,Adam Morgan,1,,90016,NEW_TEMP_90016,,new_sbaplayer +24,Adam Morgan,2,,90016,NEW_TEMP_90016,,new_sbaplayer +1030,Adam Morgan,3,,90016,NEW_TEMP_90016,,new_sbaplayer +3586,Adam Morgan,4,,90016,NEW_TEMP_90016,,new_sbaplayer +4717,Adam Morgan,5,,90016,NEW_TEMP_90016,,new_sbaplayer +2032,Adam Ottavino,1,,90017,NEW_TEMP_90017,,new_sbaplayer +25,Adam Ottavino,2,,90017,NEW_TEMP_90017,,new_sbaplayer +1031,Adam Ottavino,3,,90017,NEW_TEMP_90017,,new_sbaplayer +3587,Adam Ottavino,4,,90017,NEW_TEMP_90017,,new_sbaplayer +4777,Adam Ottavino,5,,90017,NEW_TEMP_90017,,new_sbaplayer +2033,Adam Warren,1,,90018,NEW_TEMP_90018,,new_sbaplayer +28,Adam Warren,2,,90018,NEW_TEMP_90018,,new_sbaplayer +1034,Adam Warren,3,,90018,NEW_TEMP_90018,,new_sbaplayer +2035,Addison Russell,1,,90019,NEW_TEMP_90019,,new_sbaplayer +29,Addison Russell,2,,90019,NEW_TEMP_90019,,new_sbaplayer +1035,Addison Russell,3,,90019,NEW_TEMP_90019,,new_sbaplayer +2036,Adeiny Hechavarria,1,,90020,NEW_TEMP_90020,,new_sbaplayer +30,Adeiny Hechavarria,2,,90020,NEW_TEMP_90020,,new_sbaplayer +1036,Adeiny Hechavarria,3,,90020,NEW_TEMP_90020,,new_sbaplayer +3081,Adeiny Hechavarria,4,,90020,NEW_TEMP_90020,,new_sbaplayer +4778,Adeiny Hechavarria,5,,90020,NEW_TEMP_90020,,new_sbaplayer +2039,Albert Almora,1,,90021,NEW_TEMP_90021,,new_sbaplayer +33,Albert Almora,2,,90021,NEW_TEMP_90021,,new_sbaplayer +1039,Albert Almora,3,,90021,NEW_TEMP_90021,,new_sbaplayer +3083,Albert Almora,4,,90021,NEW_TEMP_90021,,new_sbaplayer +4781,Albert Almora,5,,90021,NEW_TEMP_90021,,new_sbaplayer +2040,Albert Pujols,1,,90022,NEW_TEMP_90022,,new_sbaplayer +34,Albert Pujols,2,,90022,NEW_TEMP_90022,,new_sbaplayer +1040,Albert Pujols,3,,90022,NEW_TEMP_90022,,new_sbaplayer +3084,Albert Pujols,4,,90022,NEW_TEMP_90022,,new_sbaplayer +4782,Albert Pujols,5,,90022,NEW_TEMP_90022,,new_sbaplayer +2042,Aledmys Diaz,1,,90023,NEW_TEMP_90023,,new_sbaplayer +36,Aledmys Diaz,2,,90023,NEW_TEMP_90023,,new_sbaplayer +1042,Aledmys Diaz,3,,90023,NEW_TEMP_90023,,new_sbaplayer +3086,Aledmys Diaz,4,,90023,NEW_TEMP_90023,,new_sbaplayer +4690,Aledmys Diaz,5,,90023,NEW_TEMP_90023,,new_sbaplayer +2044,Alex Avila,1,,90024,NEW_TEMP_90024,,new_sbaplayer +37,Alex Avila,2,,90024,NEW_TEMP_90024,,new_sbaplayer +1043,Alex Avila,3,,90024,NEW_TEMP_90024,,new_sbaplayer +3088,Alex Avila,4,,90024,NEW_TEMP_90024,,new_sbaplayer +4369,Alex Avila,5,,90024,NEW_TEMP_90024,,new_sbaplayer +2046,Alex Bregman,1,,90025,NEW_TEMP_90025,,new_sbaplayer +38,Alex Bregman,2,,90025,NEW_TEMP_90025,,new_sbaplayer +1044,Alex Bregman,3,,90025,NEW_TEMP_90025,,new_sbaplayer +3089,Alex Bregman,4,,90025,NEW_TEMP_90025,,new_sbaplayer +4437,Alex Bregman,5,,90025,NEW_TEMP_90025,,new_sbaplayer +2047,Alex Claudio,1,,90026,NEW_TEMP_90026,,new_sbaplayer +39,Alex Claudio,2,,90026,NEW_TEMP_90026,,new_sbaplayer +1045,Alex Claudio,3,,90026,NEW_TEMP_90026,,new_sbaplayer +3596,Alex Claudio,4,,90026,NEW_TEMP_90026,,new_sbaplayer +4742,Alex Claudio,5,,90026,NEW_TEMP_90026,,new_sbaplayer +2048,Alex Cobb,1,,90027,NEW_TEMP_90027,,new_sbaplayer +3597,Alex Cobb,4,,90027,NEW_TEMP_90027,,new_sbaplayer +4409,Alex Cobb,5,,90027,NEW_TEMP_90027,,new_sbaplayer +2049,Alex Colome,1,,90028,NEW_TEMP_90028,,new_sbaplayer +40,Alex Colome,2,,90028,NEW_TEMP_90028,,new_sbaplayer +1046,Alex Colome,3,,90028,NEW_TEMP_90028,,new_sbaplayer +3598,Alex Colome,4,,90028,NEW_TEMP_90028,,new_sbaplayer +4296,Alex Colome,5,,90028,NEW_TEMP_90028,,new_sbaplayer +2050,Alex Gordon,1,,90029,NEW_TEMP_90029,,new_sbaplayer +42,Alex Gordon,2,,90029,NEW_TEMP_90029,,new_sbaplayer +1048,Alex Gordon,3,,90029,NEW_TEMP_90029,,new_sbaplayer +3091,Alex Gordon,4,,90029,NEW_TEMP_90029,,new_sbaplayer +4764,Alex Gordon,5,,90029,NEW_TEMP_90029,,new_sbaplayer +2052,Alex Wood,1,,90030,NEW_TEMP_90030,,new_sbaplayer +45,Alex Wood,2,,90030,NEW_TEMP_90030,,new_sbaplayer +1051,Alex Wood,3,,90030,NEW_TEMP_90030,,new_sbaplayer +3600,Alex Wood,4,,90030,NEW_TEMP_90030,,new_sbaplayer +4784,Alex Wood,5,,90030,NEW_TEMP_90030,,new_sbaplayer +2053,Amed Rosario,1,,90031,NEW_TEMP_90031,,new_sbaplayer +47,Amed Rosario,2,,90031,NEW_TEMP_90031,,new_sbaplayer +1053,Amed Rosario,3,,90031,NEW_TEMP_90031,,new_sbaplayer +3093,Amed Rosario,4,,90031,NEW_TEMP_90031,,new_sbaplayer +4786,Amed Rosario,5,,90031,NEW_TEMP_90031,,new_sbaplayer +2054,Amir Garrett,1,,90032,NEW_TEMP_90032,,new_sbaplayer +48,Amir Garrett,2,,90032,NEW_TEMP_90032,,new_sbaplayer +1054,Amir Garrett,3,,90032,NEW_TEMP_90032,,new_sbaplayer +3602,Amir Garrett,4,,90032,NEW_TEMP_90032,,new_sbaplayer +4488,Amir Garrett,5,,90032,NEW_TEMP_90032,,new_sbaplayer +2055,Andrelton Simmons,1,,90033,NEW_TEMP_90033,,new_sbaplayer +49,Andrelton Simmons,2,,90033,NEW_TEMP_90033,,new_sbaplayer +1055,Andrelton Simmons,3,,90033,NEW_TEMP_90033,,new_sbaplayer +3095,Andrelton Simmons,4,,90033,NEW_TEMP_90033,,new_sbaplayer +4534,Andrelton Simmons,5,,90033,NEW_TEMP_90033,,new_sbaplayer +2056,Andrew Benintendi,1,,90034,NEW_TEMP_90034,,new_sbaplayer +50,Andrew Benintendi,2,,90034,NEW_TEMP_90034,,new_sbaplayer +1056,Andrew Benintendi,3,,90034,NEW_TEMP_90034,,new_sbaplayer +3097,Andrew Benintendi,4,,90034,NEW_TEMP_90034,,new_sbaplayer +4787,Andrew Benintendi,5,,90034,NEW_TEMP_90034,,new_sbaplayer +2057,Andrew Cashner,1,,90035,NEW_TEMP_90035,,new_sbaplayer +51,Andrew Cashner,2,,90035,NEW_TEMP_90035,,new_sbaplayer +1057,Andrew Cashner,3,,90035,NEW_TEMP_90035,,new_sbaplayer +2058,Andrew Chafin,1,,90036,NEW_TEMP_90036,,new_sbaplayer +52,Andrew Chafin,2,,90036,NEW_TEMP_90036,,new_sbaplayer +1058,Andrew Chafin,3,,90036,NEW_TEMP_90036,,new_sbaplayer +3604,Andrew Chafin,4,,90036,NEW_TEMP_90036,,new_sbaplayer +4788,Andrew Chafin,5,,90036,NEW_TEMP_90036,,new_sbaplayer +2059,Andrew Heaney,1,,90037,NEW_TEMP_90037,,new_sbaplayer +53,Andrew Heaney,2,,90037,NEW_TEMP_90037,,new_sbaplayer +1059,Andrew Heaney,3,,90037,NEW_TEMP_90037,,new_sbaplayer +3605,Andrew Heaney,4,,90037,NEW_TEMP_90037,,new_sbaplayer +4395,Andrew Heaney,5,,90037,NEW_TEMP_90037,,new_sbaplayer +2060,Andrew Knapp,1,,90038,NEW_TEMP_90038,,new_sbaplayer +55,Andrew Knapp,2,,90038,NEW_TEMP_90038,,new_sbaplayer +1061,Andrew Knapp,3,,90038,NEW_TEMP_90038,,new_sbaplayer +3098,Andrew Knapp,4,,90038,NEW_TEMP_90038,,new_sbaplayer +4283,Andrew Knapp,5,,90038,NEW_TEMP_90038,,new_sbaplayer +2061,Andrew McCutchen,1,,90039,NEW_TEMP_90039,,new_sbaplayer +56,Andrew McCutchen,2,,90039,NEW_TEMP_90039,,new_sbaplayer +1062,Andrew McCutchen,3,,90039,NEW_TEMP_90039,,new_sbaplayer +3100,Andrew McCutchen,4,,90039,NEW_TEMP_90039,,new_sbaplayer +4790,Andrew McCutchen,5,,90039,NEW_TEMP_90039,,new_sbaplayer +2062,Andrew Miller,1,,90040,NEW_TEMP_90040,,new_sbaplayer +57,Andrew Miller,2,,90040,NEW_TEMP_90040,,new_sbaplayer +1063,Andrew Miller,3,,90040,NEW_TEMP_90040,,new_sbaplayer +3607,Andrew Miller,4,,90040,NEW_TEMP_90040,,new_sbaplayer +4631,Andrew Miller,5,,90040,NEW_TEMP_90040,,new_sbaplayer +2064,Andrew Stevenson,1,,90041,NEW_TEMP_90041,,new_sbaplayer +3101,Andrew Stevenson,4,,90041,NEW_TEMP_90041,,new_sbaplayer +4128,Andrew Stevenson,5,,90041,NEW_TEMP_90041,,new_sbaplayer +2065,Andrew Suarez,1,,90042,NEW_TEMP_90042,,new_sbaplayer +58,Andrew Suarez,2,,90042,NEW_TEMP_90042,,new_sbaplayer +1064,Andrew Suarez,3,,90042,NEW_TEMP_90042,,new_sbaplayer +3608,Andrew Suarez,4,,90042,NEW_TEMP_90042,,new_sbaplayer +4442,Andrew Suarez,5,,90042,NEW_TEMP_90042,,new_sbaplayer +2066,Anibal Sanchez,1,,90043,NEW_TEMP_90043,,new_sbaplayer +59,Anibal Sanchez,2,,90043,NEW_TEMP_90043,,new_sbaplayer +1065,Anibal Sanchez,3,,90043,NEW_TEMP_90043,,new_sbaplayer +3610,Anibal Sanchez,4,,90043,NEW_TEMP_90043,,new_sbaplayer +4760,Anibal Sanchez,5,,90043,NEW_TEMP_90043,,new_sbaplayer +2067,Anthony DeSclafani,1,,90044,NEW_TEMP_90044,,new_sbaplayer +61,Anthony DeSclafani,2,,90044,NEW_TEMP_90044,,new_sbaplayer +1067,Anthony DeSclafani,3,,90044,NEW_TEMP_90044,,new_sbaplayer +3613,Anthony DeSclafani,4,,90044,NEW_TEMP_90044,,new_sbaplayer +4795,Anthony DeSclafani,5,,90044,NEW_TEMP_90044,,new_sbaplayer +2068,Anthony Rendon,1,,90045,NEW_TEMP_90045,,new_sbaplayer +62,Anthony Rendon,2,,90045,NEW_TEMP_90045,,new_sbaplayer +1068,Anthony Rendon,3,,90045,NEW_TEMP_90045,,new_sbaplayer +3106,Anthony Rendon,4,,90045,NEW_TEMP_90045,,new_sbaplayer +4232,Anthony Rendon,5,,90045,NEW_TEMP_90045,,new_sbaplayer +2069,Anthony Rizzo,1,,90046,NEW_TEMP_90046,,new_sbaplayer +63,Anthony Rizzo,2,,90046,NEW_TEMP_90046,,new_sbaplayer +1069,Anthony Rizzo,3,,90046,NEW_TEMP_90046,,new_sbaplayer +3107,Anthony Rizzo,4,,90046,NEW_TEMP_90046,,new_sbaplayer +4525,Anthony Rizzo,5,,90046,NEW_TEMP_90046,,new_sbaplayer +2070,Anthony Swarzak,1,,90047,NEW_TEMP_90047,,new_sbaplayer +65,Anthony Swarzak,2,,90047,NEW_TEMP_90047,,new_sbaplayer +1071,Anthony Swarzak,3,,90047,NEW_TEMP_90047,,new_sbaplayer +2071,Antonio Senzatela,1,,90048,NEW_TEMP_90048,,new_sbaplayer +66,Antonio Senzatela,2,,90048,NEW_TEMP_90048,,new_sbaplayer +1072,Antonio Senzatela,3,,90048,NEW_TEMP_90048,,new_sbaplayer +3616,Antonio Senzatela,4,,90048,NEW_TEMP_90048,,new_sbaplayer +4151,Antonio Senzatela,5,,90048,NEW_TEMP_90048,,new_sbaplayer +2072,Archie Bradley,1,,90049,NEW_TEMP_90049,,new_sbaplayer +67,Archie Bradley,2,,90049,NEW_TEMP_90049,,new_sbaplayer +1073,Archie Bradley,3,,90049,NEW_TEMP_90049,,new_sbaplayer +3617,Archie Bradley,4,,90049,NEW_TEMP_90049,,new_sbaplayer +4489,Archie Bradley,5,,90049,NEW_TEMP_90049,,new_sbaplayer +2073,Ariel Jurado,1,,90050,NEW_TEMP_90050,,new_sbaplayer +68,Ariel Jurado,2,,90050,NEW_TEMP_90050,,new_sbaplayer +1074,Ariel Jurado,3,,90050,NEW_TEMP_90050,,new_sbaplayer +2075,Aroldis Chapman,1,,90051,NEW_TEMP_90051,,new_sbaplayer +70,Aroldis Chapman,2,,90051,NEW_TEMP_90051,,new_sbaplayer +1076,Aroldis Chapman,3,,90051,NEW_TEMP_90051,,new_sbaplayer +3618,Aroldis Chapman,4,,90051,NEW_TEMP_90051,,new_sbaplayer +4410,Aroldis Chapman,5,,90051,NEW_TEMP_90051,,new_sbaplayer +2076,Asdrubal Cabrera,1,,90052,NEW_TEMP_90052,,new_sbaplayer +71,Asdrubal Cabrera,2,,90052,NEW_TEMP_90052,,new_sbaplayer +1077,Asdrubal Cabrera,3,,90052,NEW_TEMP_90052,,new_sbaplayer +3110,Asdrubal Cabrera,4,,90052,NEW_TEMP_90052,,new_sbaplayer +4739,Asdrubal Cabrera,5,,90052,NEW_TEMP_90052,,new_sbaplayer +2077,Austin Barnes,1,,90053,NEW_TEMP_90053,,new_sbaplayer +75,Austin Barnes,2,,90053,NEW_TEMP_90053,,new_sbaplayer +1081,Austin Barnes,3,,90053,NEW_TEMP_90053,,new_sbaplayer +3112,Austin Barnes,4,,90053,NEW_TEMP_90053,,new_sbaplayer +4349,Austin Barnes,5,,90053,NEW_TEMP_90053,,new_sbaplayer +2078,Austin Gomber,1,,90054,NEW_TEMP_90054,,new_sbaplayer +3623,Austin Gomber,4,,90054,NEW_TEMP_90054,,new_sbaplayer +4389,Austin Gomber,5,,90054,NEW_TEMP_90054,,new_sbaplayer +2079,Austin Hedges,1,,90055,NEW_TEMP_90055,,new_sbaplayer +79,Austin Hedges,2,,90055,NEW_TEMP_90055,,new_sbaplayer +1085,Austin Hedges,3,,90055,NEW_TEMP_90055,,new_sbaplayer +3114,Austin Hedges,4,,90055,NEW_TEMP_90055,,new_sbaplayer +4802,Austin Hedges,5,,90055,NEW_TEMP_90055,,new_sbaplayer +2081,Austin Pruitt,1,,90056,NEW_TEMP_90056,,new_sbaplayer +82,Austin Pruitt,2,,90056,NEW_TEMP_90056,,new_sbaplayer +1088,Austin Pruitt,3,,90056,NEW_TEMP_90056,,new_sbaplayer +2082,Austin Romine,1,,90057,NEW_TEMP_90057,,new_sbaplayer +84,Austin Romine,2,,90057,NEW_TEMP_90057,,new_sbaplayer +1090,Austin Romine,3,,90057,NEW_TEMP_90057,,new_sbaplayer +3118,Austin Romine,4,,90057,NEW_TEMP_90057,,new_sbaplayer +4804,Austin Romine,5,,90057,NEW_TEMP_90057,,new_sbaplayer +2083,Austin Slater,1,,90058,NEW_TEMP_90058,,new_sbaplayer +85,Austin Slater,2,,90058,NEW_TEMP_90058,,new_sbaplayer +1091,Austin Slater,3,,90058,NEW_TEMP_90058,,new_sbaplayer +3119,Austin Slater,4,,90058,NEW_TEMP_90058,,new_sbaplayer +4208,Austin Slater,5,,90058,NEW_TEMP_90058,,new_sbaplayer +2084,Austin Wynns,1,,90059,NEW_TEMP_90059,,new_sbaplayer +87,Austin Wynns,2,,90059,NEW_TEMP_90059,,new_sbaplayer +1093,Austin Wynns,3,,90059,NEW_TEMP_90059,,new_sbaplayer +2085,Avisail Garcia,1,,90060,NEW_TEMP_90060,,new_sbaplayer +88,Avisail Garcia,2,,90060,NEW_TEMP_90060,,new_sbaplayer +1094,Avisail Garcia,3,,90060,NEW_TEMP_90060,,new_sbaplayer +3120,Avisail Garcia,4,,90060,NEW_TEMP_90060,,new_sbaplayer +4805,Avisail Garcia,5,,90060,NEW_TEMP_90060,,new_sbaplayer +2087,Ben Gamel,1,,90061,NEW_TEMP_90061,,new_sbaplayer +89,Ben Gamel,2,,90061,NEW_TEMP_90061,,new_sbaplayer +1095,Ben Gamel,3,,90061,NEW_TEMP_90061,,new_sbaplayer +3122,Ben Gamel,4,,90061,NEW_TEMP_90061,,new_sbaplayer +4807,Ben Gamel,5,,90061,NEW_TEMP_90061,,new_sbaplayer +2088,Ben Zobrist,1,,90062,NEW_TEMP_90062,,new_sbaplayer +90,Ben Zobrist,2,,90062,NEW_TEMP_90062,,new_sbaplayer +1096,Ben Zobrist,3,,90062,NEW_TEMP_90062,,new_sbaplayer +2089,Billy Hamilton,1,,90063,NEW_TEMP_90063,,new_sbaplayer +91,Billy Hamilton,2,,90063,NEW_TEMP_90063,,new_sbaplayer +1097,Billy Hamilton,3,,90063,NEW_TEMP_90063,,new_sbaplayer +3123,Billy Hamilton,4,,90063,NEW_TEMP_90063,,new_sbaplayer +4808,Billy Hamilton,5,,90063,NEW_TEMP_90063,,new_sbaplayer +2090,Billy McKinney,1,,90064,NEW_TEMP_90064,,new_sbaplayer +92,Billy McKinney,2,,90064,NEW_TEMP_90064,,new_sbaplayer +1098,Billy McKinney,3,,90064,NEW_TEMP_90064,,new_sbaplayer +2091,Blaine Hardy,1,,90065,NEW_TEMP_90065,,new_sbaplayer +93,Blaine Hardy,2,,90065,NEW_TEMP_90065,,new_sbaplayer +1099,Blaine Hardy,3,,90065,NEW_TEMP_90065,,new_sbaplayer +2092,Blake Parker,1,,90066,NEW_TEMP_90066,,new_sbaplayer +94,Blake Parker,2,,90066,NEW_TEMP_90066,,new_sbaplayer +1100,Blake Parker,3,,90066,NEW_TEMP_90066,,new_sbaplayer +3626,Blake Parker,4,,90066,NEW_TEMP_90066,,new_sbaplayer +4377,Blake Parker,5,,90066,NEW_TEMP_90066,,new_sbaplayer +2093,Blake Snell,1,,90067,NEW_TEMP_90067,,new_sbaplayer +95,Blake Snell,2,,90067,NEW_TEMP_90067,,new_sbaplayer +1101,Blake Snell,3,,90067,NEW_TEMP_90067,,new_sbaplayer +3627,Blake Snell,4,,90067,NEW_TEMP_90067,,new_sbaplayer +4338,Blake Snell,5,,90067,NEW_TEMP_90067,,new_sbaplayer +2094,Blake Swihart,1,,90068,NEW_TEMP_90068,,new_sbaplayer +96,Blake Swihart,2,,90068,NEW_TEMP_90068,,new_sbaplayer +1102,Blake Swihart,3,,90068,NEW_TEMP_90068,,new_sbaplayer +2095,Blake Treinen,1,,90069,NEW_TEMP_90069,,new_sbaplayer +97,Blake Treinen,2,,90069,NEW_TEMP_90069,,new_sbaplayer +1103,Blake Treinen,3,,90069,NEW_TEMP_90069,,new_sbaplayer +3629,Blake Treinen,4,,90069,NEW_TEMP_90069,,new_sbaplayer +4809,Blake Treinen,5,,90069,NEW_TEMP_90069,,new_sbaplayer +2097,Brad Boxberger,1,,90070,NEW_TEMP_90070,,new_sbaplayer +99,Brad Boxberger,2,,90070,NEW_TEMP_90070,,new_sbaplayer +1105,Brad Boxberger,3,,90070,NEW_TEMP_90070,,new_sbaplayer +3630,Brad Boxberger,4,,90070,NEW_TEMP_90070,,new_sbaplayer +4548,Brad Boxberger,5,,90070,NEW_TEMP_90070,,new_sbaplayer +2098,Brad Brach,1,,90071,NEW_TEMP_90071,,new_sbaplayer +100,Brad Brach,2,,90071,NEW_TEMP_90071,,new_sbaplayer +1106,Brad Brach,3,,90071,NEW_TEMP_90071,,new_sbaplayer +3631,Brad Brach,4,,90071,NEW_TEMP_90071,,new_sbaplayer +4810,Brad Brach,5,,90071,NEW_TEMP_90071,,new_sbaplayer +2099,Brad Hand,1,,90072,NEW_TEMP_90072,,new_sbaplayer +101,Brad Hand,2,,90072,NEW_TEMP_90072,,new_sbaplayer +1107,Brad Hand,3,,90072,NEW_TEMP_90072,,new_sbaplayer +3632,Brad Hand,4,,90072,NEW_TEMP_90072,,new_sbaplayer +4449,Brad Hand,5,,90072,NEW_TEMP_90072,,new_sbaplayer +2100,Brad Keller,1,,90073,NEW_TEMP_90073,,new_sbaplayer +102,Brad Keller,2,,90073,NEW_TEMP_90073,,new_sbaplayer +1108,Brad Keller,3,,90073,NEW_TEMP_90073,,new_sbaplayer +3633,Brad Keller,4,,90073,NEW_TEMP_90073,,new_sbaplayer +4199,Brad Keller,5,,90073,NEW_TEMP_90073,,new_sbaplayer +2101,Brad Peacock,1,,90074,NEW_TEMP_90074,,new_sbaplayer +104,Brad Peacock,2,,90074,NEW_TEMP_90074,,new_sbaplayer +1110,Brad Peacock,3,,90074,NEW_TEMP_90074,,new_sbaplayer +2103,Brandon Belt,1,,90075,NEW_TEMP_90075,,new_sbaplayer +107,Brandon Belt,2,,90075,NEW_TEMP_90075,,new_sbaplayer +1113,Brandon Belt,3,,90075,NEW_TEMP_90075,,new_sbaplayer +3129,Brandon Belt,4,,90075,NEW_TEMP_90075,,new_sbaplayer +4159,Brandon Belt,5,,90075,NEW_TEMP_90075,,new_sbaplayer +2104,Brandon Crawford,1,,90076,NEW_TEMP_90076,,new_sbaplayer +109,Brandon Crawford,2,,90076,NEW_TEMP_90076,,new_sbaplayer +1115,Brandon Crawford,3,,90076,NEW_TEMP_90076,,new_sbaplayer +3130,Brandon Crawford,4,,90076,NEW_TEMP_90076,,new_sbaplayer +4289,Brandon Crawford,5,,90076,NEW_TEMP_90076,,new_sbaplayer +2105,Brandon Dixon,1,,90077,NEW_TEMP_90077,,new_sbaplayer +110,Brandon Dixon,2,,90077,NEW_TEMP_90077,,new_sbaplayer +1116,Brandon Dixon,3,,90077,NEW_TEMP_90077,,new_sbaplayer +2107,Brandon Kintzler,1,,90078,NEW_TEMP_90078,,new_sbaplayer +112,Brandon Kintzler,2,,90078,NEW_TEMP_90078,,new_sbaplayer +1118,Brandon Kintzler,3,,90078,NEW_TEMP_90078,,new_sbaplayer +3639,Brandon Kintzler,4,,90078,NEW_TEMP_90078,,new_sbaplayer +4258,Brandon Kintzler,5,,90078,NEW_TEMP_90078,,new_sbaplayer +2111,Brandon Nimmo,1,,90079,NEW_TEMP_90079,,new_sbaplayer +114,Brandon Nimmo,2,,90079,NEW_TEMP_90079,,new_sbaplayer +1120,Brandon Nimmo,3,,90079,NEW_TEMP_90079,,new_sbaplayer +3133,Brandon Nimmo,4,,90079,NEW_TEMP_90079,,new_sbaplayer +4273,Brandon Nimmo,5,,90079,NEW_TEMP_90079,,new_sbaplayer +2112,Brent Suter,1,,90080,NEW_TEMP_90080,,new_sbaplayer +119,Brent Suter,2,,90080,NEW_TEMP_90080,,new_sbaplayer +1125,Brent Suter,3,,90080,NEW_TEMP_90080,,new_sbaplayer +3644,Brent Suter,4,,90080,NEW_TEMP_90080,,new_sbaplayer +4526,Brent Suter,5,,90080,NEW_TEMP_90080,,new_sbaplayer +2113,Brett Anderson,1,,90081,NEW_TEMP_90081,,new_sbaplayer +120,Brett Anderson,2,,90081,NEW_TEMP_90081,,new_sbaplayer +1126,Brett Anderson,3,,90081,NEW_TEMP_90081,,new_sbaplayer +3645,Brett Anderson,4,,90081,NEW_TEMP_90081,,new_sbaplayer +4532,Brett Anderson,5,,90081,NEW_TEMP_90081,,new_sbaplayer +2115,Brett Gardner,1,,90082,NEW_TEMP_90082,,new_sbaplayer +121,Brett Gardner,2,,90082,NEW_TEMP_90082,,new_sbaplayer +1127,Brett Gardner,3,,90082,NEW_TEMP_90082,,new_sbaplayer +3136,Brett Gardner,4,,90082,NEW_TEMP_90082,,new_sbaplayer +4506,Brett Gardner,5,,90082,NEW_TEMP_90082,,new_sbaplayer +2116,Brett Phillips,1,,90083,NEW_TEMP_90083,,new_sbaplayer +123,Brett Phillips,2,,90083,NEW_TEMP_90083,,new_sbaplayer +1129,Brett Phillips,3,,90083,NEW_TEMP_90083,,new_sbaplayer +3137,Brett Phillips,4,,90083,NEW_TEMP_90083,,new_sbaplayer +4458,Brett Phillips,5,,90083,NEW_TEMP_90083,,new_sbaplayer +2117,Brian Anderson,1,,90084,NEW_TEMP_90084,,new_sbaplayer +124,Brian Anderson,2,,90084,NEW_TEMP_90084,,new_sbaplayer +1130,Brian Anderson,3,,90084,NEW_TEMP_90084,,new_sbaplayer +3138,Brian Anderson,4,,90084,NEW_TEMP_90084,,new_sbaplayer +4239,Brian Anderson,5,,90084,NEW_TEMP_90084,,new_sbaplayer +2118,Brian Dozier,1,,90085,NEW_TEMP_90085,,new_sbaplayer +125,Brian Dozier,2,,90085,NEW_TEMP_90085,,new_sbaplayer +1131,Brian Dozier,3,,90085,NEW_TEMP_90085,,new_sbaplayer +3139,Brian Dozier,4,,90085,NEW_TEMP_90085,,new_sbaplayer +4817,Brian Dozier,5,,90085,NEW_TEMP_90085,,new_sbaplayer +2119,Brian Flynn,1,,90086,NEW_TEMP_90086,,new_sbaplayer +126,Brian Flynn,2,,90086,NEW_TEMP_90086,,new_sbaplayer +1132,Brian Flynn,3,,90086,NEW_TEMP_90086,,new_sbaplayer +2120,Brian Johnson,1,,90087,NEW_TEMP_90087,,new_sbaplayer +128,Brian Johnson,2,,90087,NEW_TEMP_90087,,new_sbaplayer +1134,Brian Johnson,3,,90087,NEW_TEMP_90087,,new_sbaplayer +2121,Brian McCann,1,,90088,NEW_TEMP_90088,,new_sbaplayer +129,Brian McCann,2,,90088,NEW_TEMP_90088,,new_sbaplayer +1135,Brian McCann,3,,90088,NEW_TEMP_90088,,new_sbaplayer +2122,Brock Holt,1,,90089,NEW_TEMP_90089,,new_sbaplayer +131,Brock Holt,2,,90089,NEW_TEMP_90089,,new_sbaplayer +1137,Brock Holt,3,,90089,NEW_TEMP_90089,,new_sbaplayer +3141,Brock Holt,4,,90089,NEW_TEMP_90089,,new_sbaplayer +4820,Brock Holt,5,,90089,NEW_TEMP_90089,,new_sbaplayer +2123,Bryan Holaday,1,,90090,NEW_TEMP_90090,,new_sbaplayer +133,Bryan Holaday,2,,90090,NEW_TEMP_90090,,new_sbaplayer +1139,Bryan Holaday,3,,90090,NEW_TEMP_90090,,new_sbaplayer +3142,Bryan Holaday,4,,90090,NEW_TEMP_90090,,new_sbaplayer +4821,Bryan Holaday,5,,90090,NEW_TEMP_90090,,new_sbaplayer +2125,Bryan Shaw,1,,90091,NEW_TEMP_90091,,new_sbaplayer +135,Bryan Shaw,2,,90091,NEW_TEMP_90091,,new_sbaplayer +1141,Bryan Shaw,3,,90091,NEW_TEMP_90091,,new_sbaplayer +2126,Bryce Harper,1,,90092,NEW_TEMP_90092,,new_sbaplayer +136,Bryce Harper,2,,90092,NEW_TEMP_90092,,new_sbaplayer +1142,Bryce Harper,3,,90092,NEW_TEMP_90092,,new_sbaplayer +3144,Bryce Harper,4,,90092,NEW_TEMP_90092,,new_sbaplayer +4287,Bryce Harper,5,,90092,NEW_TEMP_90092,,new_sbaplayer +2127,Buck Farmer,1,,90093,NEW_TEMP_90093,,new_sbaplayer +138,Buck Farmer,2,,90093,NEW_TEMP_90093,,new_sbaplayer +1144,Buck Farmer,3,,90093,NEW_TEMP_90093,,new_sbaplayer +3652,Buck Farmer,4,,90093,NEW_TEMP_90093,,new_sbaplayer +4643,Buck Farmer,5,,90093,NEW_TEMP_90093,,new_sbaplayer +2129,Burch Smith,1,,90094,NEW_TEMP_90094,,new_sbaplayer +3653,Burch Smith,4,,90094,NEW_TEMP_90094,,new_sbaplayer +4247,Burch Smith,5,,90094,NEW_TEMP_90094,,new_sbaplayer +2130,Buster Posey,1,,90095,NEW_TEMP_90095,,new_sbaplayer +140,Buster Posey,2,,90095,NEW_TEMP_90095,,new_sbaplayer +1146,Buster Posey,3,,90095,NEW_TEMP_90095,,new_sbaplayer +2131,CJ Cron,1,,90096,NEW_TEMP_90096,,new_sbaplayer +142,CJ Cron,2,,90096,NEW_TEMP_90096,,new_sbaplayer +1148,CJ Cron,3,,90096,NEW_TEMP_90096,,new_sbaplayer +3170,CJ Cron,4,,90096,NEW_TEMP_90096,,new_sbaplayer +4419,CJ Cron,5,,90096,NEW_TEMP_90096,,new_sbaplayer +2133,Caleb Smith,1,,90097,NEW_TEMP_90097,,new_sbaplayer +145,Caleb Smith,2,,90097,NEW_TEMP_90097,,new_sbaplayer +1151,Caleb Smith,3,,90097,NEW_TEMP_90097,,new_sbaplayer +3657,Caleb Smith,4,,90097,NEW_TEMP_90097,,new_sbaplayer +4310,Caleb Smith,5,,90097,NEW_TEMP_90097,,new_sbaplayer +2134,Cam Bedrosian,1,,90098,NEW_TEMP_90098,,new_sbaplayer +146,Cam Bedrosian,2,,90098,NEW_TEMP_90098,,new_sbaplayer +1152,Cam Bedrosian,3,,90098,NEW_TEMP_90098,,new_sbaplayer +3659,Cam Bedrosian,4,,90098,NEW_TEMP_90098,,new_sbaplayer +4328,Cam Bedrosian,5,,90098,NEW_TEMP_90098,,new_sbaplayer +2135,Cam Gallagher,1,,90099,NEW_TEMP_90099,,new_sbaplayer +147,Cam Gallagher,2,,90099,NEW_TEMP_90099,,new_sbaplayer +1153,Cam Gallagher,3,,90099,NEW_TEMP_90099,,new_sbaplayer +3147,Cam Gallagher,4,,90099,NEW_TEMP_90099,,new_sbaplayer +4195,Cam Gallagher,5,,90099,NEW_TEMP_90099,,new_sbaplayer +2138,Carlos Carrasco,1,,90100,NEW_TEMP_90100,,new_sbaplayer +149,Carlos Carrasco,2,,90100,NEW_TEMP_90100,,new_sbaplayer +1155,Carlos Carrasco,3,,90100,NEW_TEMP_90100,,new_sbaplayer +3661,Carlos Carrasco,4,,90100,NEW_TEMP_90100,,new_sbaplayer +4305,Carlos Carrasco,5,,90100,NEW_TEMP_90100,,new_sbaplayer +2139,Carlos Correa,1,,90101,NEW_TEMP_90101,,new_sbaplayer +150,Carlos Correa,2,,90101,NEW_TEMP_90101,,new_sbaplayer +1156,Carlos Correa,3,,90101,NEW_TEMP_90101,,new_sbaplayer +3149,Carlos Correa,4,,90101,NEW_TEMP_90101,,new_sbaplayer +4271,Carlos Correa,5,,90101,NEW_TEMP_90101,,new_sbaplayer +2140,Carlos Gomez,1,,90102,NEW_TEMP_90102,,new_sbaplayer +152,Carlos Gomez,2,,90102,NEW_TEMP_90102,,new_sbaplayer +1158,Carlos Gomez,3,,90102,NEW_TEMP_90102,,new_sbaplayer +2141,Carlos Gonzalez,1,,90103,NEW_TEMP_90103,,new_sbaplayer +153,Carlos Gonzalez,2,,90103,NEW_TEMP_90103,,new_sbaplayer +1159,Carlos Gonzalez,3,,90103,NEW_TEMP_90103,,new_sbaplayer +2142,Carlos Martinez,1,,90104,NEW_TEMP_90104,,new_sbaplayer +154,Carlos Martinez,2,,90104,NEW_TEMP_90104,,new_sbaplayer +1160,Carlos Martinez,3,,90104,NEW_TEMP_90104,,new_sbaplayer +3664,Carlos Martinez,4,,90104,NEW_TEMP_90104,,new_sbaplayer +4827,Carlos Martinez,5,,90104,NEW_TEMP_90104,,new_sbaplayer +2143,Carlos Rodon,1,,90105,NEW_TEMP_90105,,new_sbaplayer +155,Carlos Rodon,2,,90105,NEW_TEMP_90105,,new_sbaplayer +1161,Carlos Rodon,3,,90105,NEW_TEMP_90105,,new_sbaplayer +3665,Carlos Rodon,4,,90105,NEW_TEMP_90105,,new_sbaplayer +4828,Carlos Rodon,5,,90105,NEW_TEMP_90105,,new_sbaplayer +2144,Carlos Santana,1,,90106,NEW_TEMP_90106,,new_sbaplayer +156,Carlos Santana,2,,90106,NEW_TEMP_90106,,new_sbaplayer +1162,Carlos Santana,3,,90106,NEW_TEMP_90106,,new_sbaplayer +3150,Carlos Santana,4,,90106,NEW_TEMP_90106,,new_sbaplayer +4564,Carlos Santana,5,,90106,NEW_TEMP_90106,,new_sbaplayer +2146,CC Sabathia,1,,90107,NEW_TEMP_90107,,new_sbaplayer +161,CC Sabathia,2,,90107,NEW_TEMP_90107,,new_sbaplayer +1167,CC Sabathia,3,,90107,NEW_TEMP_90107,,new_sbaplayer +2147,Cedric Mullins,1,,90108,NEW_TEMP_90108,,new_sbaplayer +162,Cedric Mullins,2,,90108,NEW_TEMP_90108,,new_sbaplayer +1168,Cedric Mullins,3,,90108,NEW_TEMP_90108,,new_sbaplayer +3154,Cedric Mullins,4,,90108,NEW_TEMP_90108,,new_sbaplayer +4592,Cedric Mullins,5,,90108,NEW_TEMP_90108,,new_sbaplayer +2148,Cesar Hernandez,1,,90109,NEW_TEMP_90109,,new_sbaplayer +163,Cesar Hernandez,2,,90109,NEW_TEMP_90109,,new_sbaplayer +1169,Cesar Hernandez,3,,90109,NEW_TEMP_90109,,new_sbaplayer +3155,Cesar Hernandez,4,,90109,NEW_TEMP_90109,,new_sbaplayer +4342,Cesar Hernandez,5,,90109,NEW_TEMP_90109,,new_sbaplayer +2149,Chad Bettis,1,,90110,NEW_TEMP_90110,,new_sbaplayer +165,Chad Bettis,2,,90110,NEW_TEMP_90110,,new_sbaplayer +1171,Chad Bettis,3,,90110,NEW_TEMP_90110,,new_sbaplayer +2150,Chad Green,1,,90111,NEW_TEMP_90111,,new_sbaplayer +166,Chad Green,2,,90111,NEW_TEMP_90111,,new_sbaplayer +1172,Chad Green,3,,90111,NEW_TEMP_90111,,new_sbaplayer +3670,Chad Green,4,,90111,NEW_TEMP_90111,,new_sbaplayer +4628,Chad Green,5,,90111,NEW_TEMP_90111,,new_sbaplayer +2151,Chad Kuhl,1,,90112,NEW_TEMP_90112,,new_sbaplayer +3671,Chad Kuhl,4,,90112,NEW_TEMP_90112,,new_sbaplayer +4832,Chad Kuhl,5,,90112,NEW_TEMP_90112,,new_sbaplayer +2152,Chad Pinder,1,,90113,NEW_TEMP_90113,,new_sbaplayer +167,Chad Pinder,2,,90113,NEW_TEMP_90113,,new_sbaplayer +1173,Chad Pinder,3,,90113,NEW_TEMP_90113,,new_sbaplayer +3156,Chad Pinder,4,,90113,NEW_TEMP_90113,,new_sbaplayer +4589,Chad Pinder,5,,90113,NEW_TEMP_90113,,new_sbaplayer +2153,Chance Sisco,1,,90114,NEW_TEMP_90114,,new_sbaplayer +169,Chance Sisco,2,,90114,NEW_TEMP_90114,,new_sbaplayer +1175,Chance Sisco,3,,90114,NEW_TEMP_90114,,new_sbaplayer +3159,Chance Sisco,4,,90114,NEW_TEMP_90114,,new_sbaplayer +4693,Chance Sisco,5,,90114,NEW_TEMP_90114,,new_sbaplayer +2154,Charlie Blackmon,1,,90115,NEW_TEMP_90115,,new_sbaplayer +170,Charlie Blackmon,2,,90115,NEW_TEMP_90115,,new_sbaplayer +1176,Charlie Blackmon,3,,90115,NEW_TEMP_90115,,new_sbaplayer +3160,Charlie Blackmon,4,,90115,NEW_TEMP_90115,,new_sbaplayer +4594,Charlie Blackmon,5,,90115,NEW_TEMP_90115,,new_sbaplayer +2155,Charlie Culberson,1,,90116,NEW_TEMP_90116,,new_sbaplayer +171,Charlie Culberson,2,,90116,NEW_TEMP_90116,,new_sbaplayer +1177,Charlie Culberson,3,,90116,NEW_TEMP_90116,,new_sbaplayer +2156,Charlie Morton,1,,90117,NEW_TEMP_90117,,new_sbaplayer +172,Charlie Morton,2,,90117,NEW_TEMP_90117,,new_sbaplayer +1178,Charlie Morton,3,,90117,NEW_TEMP_90117,,new_sbaplayer +3673,Charlie Morton,4,,90117,NEW_TEMP_90117,,new_sbaplayer +4714,Charlie Morton,5,,90117,NEW_TEMP_90117,,new_sbaplayer +2157,Charlie Tilson,1,,90118,NEW_TEMP_90118,,new_sbaplayer +173,Charlie Tilson,2,,90118,NEW_TEMP_90118,,new_sbaplayer +1179,Charlie Tilson,3,,90118,NEW_TEMP_90118,,new_sbaplayer +2158,Chase Anderson,1,,90119,NEW_TEMP_90119,,new_sbaplayer +174,Chase Anderson,2,,90119,NEW_TEMP_90119,,new_sbaplayer +1180,Chase Anderson,3,,90119,NEW_TEMP_90119,,new_sbaplayer +3674,Chase Anderson,4,,90119,NEW_TEMP_90119,,new_sbaplayer +4835,Chase Anderson,5,,90119,NEW_TEMP_90119,,new_sbaplayer +2161,Chaz Roe,1,,90120,NEW_TEMP_90120,,new_sbaplayer +175,Chaz Roe,2,,90120,NEW_TEMP_90120,,new_sbaplayer +1181,Chaz Roe,3,,90120,NEW_TEMP_90120,,new_sbaplayer +3677,Chaz Roe,4,,90120,NEW_TEMP_90120,,new_sbaplayer +4435,Chaz Roe,5,,90120,NEW_TEMP_90120,,new_sbaplayer +2162,Chris Archer,1,,90121,NEW_TEMP_90121,,new_sbaplayer +178,Chris Archer,2,,90121,NEW_TEMP_90121,,new_sbaplayer +1184,Chris Archer,3,,90121,NEW_TEMP_90121,,new_sbaplayer +2163,Chris Davis,1,,90122,NEW_TEMP_90122,,new_sbaplayer +180,Chris Davis,2,,90122,NEW_TEMP_90122,,new_sbaplayer +1186,Chris Davis,3,,90122,NEW_TEMP_90122,,new_sbaplayer +3161,Chris Davis,4,,90122,NEW_TEMP_90122,,new_sbaplayer +4837,Chris Davis,5,,90122,NEW_TEMP_90122,,new_sbaplayer +2164,Chris Devenski,1,,90123,NEW_TEMP_90123,,new_sbaplayer +181,Chris Devenski,2,,90123,NEW_TEMP_90123,,new_sbaplayer +1187,Chris Devenski,3,,90123,NEW_TEMP_90123,,new_sbaplayer +2165,Chris Herrmann,1,,90124,NEW_TEMP_90124,,new_sbaplayer +182,Chris Herrmann,2,,90124,NEW_TEMP_90124,,new_sbaplayer +1188,Chris Herrmann,3,,90124,NEW_TEMP_90124,,new_sbaplayer +2166,Chris Iannetta,1,,90125,NEW_TEMP_90125,,new_sbaplayer +183,Chris Iannetta,2,,90125,NEW_TEMP_90125,,new_sbaplayer +1189,Chris Iannetta,3,,90125,NEW_TEMP_90125,,new_sbaplayer +2167,Chris Martin,1,,90126,NEW_TEMP_90126,,new_sbaplayer +184,Chris Martin,2,,90126,NEW_TEMP_90126,,new_sbaplayer +1190,Chris Martin,3,,90126,NEW_TEMP_90126,,new_sbaplayer +3680,Chris Martin,4,,90126,NEW_TEMP_90126,,new_sbaplayer +4171,Chris Martin,5,,90126,NEW_TEMP_90126,,new_sbaplayer +2168,Chris Owings,1,,90127,NEW_TEMP_90127,,new_sbaplayer +185,Chris Owings,2,,90127,NEW_TEMP_90127,,new_sbaplayer +1191,Chris Owings,3,,90127,NEW_TEMP_90127,,new_sbaplayer +3162,Chris Owings,4,,90127,NEW_TEMP_90127,,new_sbaplayer +4495,Chris Owings,5,,90127,NEW_TEMP_90127,,new_sbaplayer +2170,Chris Sale,1,,90128,NEW_TEMP_90128,,new_sbaplayer +187,Chris Sale,2,,90128,NEW_TEMP_90128,,new_sbaplayer +1193,Chris Sale,3,,90128,NEW_TEMP_90128,,new_sbaplayer +2171,Chris Stratton,1,,90129,NEW_TEMP_90129,,new_sbaplayer +188,Chris Stratton,2,,90129,NEW_TEMP_90129,,new_sbaplayer +1194,Chris Stratton,3,,90129,NEW_TEMP_90129,,new_sbaplayer +3683,Chris Stratton,4,,90129,NEW_TEMP_90129,,new_sbaplayer +4838,Chris Stratton,5,,90129,NEW_TEMP_90129,,new_sbaplayer +2172,Chris Taylor,1,,90130,NEW_TEMP_90130,,new_sbaplayer +189,Chris Taylor,2,,90130,NEW_TEMP_90130,,new_sbaplayer +1195,Chris Taylor,3,,90130,NEW_TEMP_90130,,new_sbaplayer +3163,Chris Taylor,4,,90130,NEW_TEMP_90130,,new_sbaplayer +4202,Chris Taylor,5,,90130,NEW_TEMP_90130,,new_sbaplayer +2174,Christian Vazquez,1,,90131,NEW_TEMP_90131,,new_sbaplayer +190,Christian Vazquez,2,,90131,NEW_TEMP_90131,,new_sbaplayer +1196,Christian Vazquez,3,,90131,NEW_TEMP_90131,,new_sbaplayer +3166,Christian Vazquez,4,,90131,NEW_TEMP_90131,,new_sbaplayer +4480,Christian Vazquez,5,,90131,NEW_TEMP_90131,,new_sbaplayer +2176,Christian Yelich,1,,90132,NEW_TEMP_90132,,new_sbaplayer +192,Christian Yelich,2,,90132,NEW_TEMP_90132,,new_sbaplayer +1198,Christian Yelich,3,,90132,NEW_TEMP_90132,,new_sbaplayer +3168,Christian Yelich,4,,90132,NEW_TEMP_90132,,new_sbaplayer +4665,Christian Yelich,5,,90132,NEW_TEMP_90132,,new_sbaplayer +2177,Clay Buchholz,1,,90133,NEW_TEMP_90133,,new_sbaplayer +194,Clay Buchholz,2,,90133,NEW_TEMP_90133,,new_sbaplayer +1200,Clay Buchholz,3,,90133,NEW_TEMP_90133,,new_sbaplayer +2178,Clayton Kershaw,1,,90134,NEW_TEMP_90134,,new_sbaplayer +196,Clayton Kershaw,2,,90134,NEW_TEMP_90134,,new_sbaplayer +1202,Clayton Kershaw,3,,90134,NEW_TEMP_90134,,new_sbaplayer +3685,Clayton Kershaw,4,,90134,NEW_TEMP_90134,,new_sbaplayer +4228,Clayton Kershaw,5,,90134,NEW_TEMP_90134,,new_sbaplayer +2179,Clayton Richard,1,,90135,NEW_TEMP_90135,,new_sbaplayer +197,Clayton Richard,2,,90135,NEW_TEMP_90135,,new_sbaplayer +1203,Clayton Richard,3,,90135,NEW_TEMP_90135,,new_sbaplayer +2181,Cody Bellinger,1,,90136,NEW_TEMP_90136,,new_sbaplayer +199,Cody Bellinger,2,,90136,NEW_TEMP_90136,,new_sbaplayer +1205,Cody Bellinger,3,,90136,NEW_TEMP_90136,,new_sbaplayer +3172,Cody Bellinger,4,,90136,NEW_TEMP_90136,,new_sbaplayer +4334,Cody Bellinger,5,,90136,NEW_TEMP_90136,,new_sbaplayer +2182,Cody Reed,1,,90137,NEW_TEMP_90137,,new_sbaplayer +3688,Cody Reed,4,,90137,NEW_TEMP_90137,,new_sbaplayer +4841,Cody Reed,5,,90137,NEW_TEMP_90137,,new_sbaplayer +2183,Cole Hamels,1,,90138,NEW_TEMP_90138,,new_sbaplayer +201,Cole Hamels,2,,90138,NEW_TEMP_90138,,new_sbaplayer +1207,Cole Hamels,3,,90138,NEW_TEMP_90138,,new_sbaplayer +2184,Colin Moran,1,,90139,NEW_TEMP_90139,,new_sbaplayer +204,Colin Moran,2,,90139,NEW_TEMP_90139,,new_sbaplayer +1210,Colin Moran,3,,90139,NEW_TEMP_90139,,new_sbaplayer +3174,Colin Moran,4,,90139,NEW_TEMP_90139,,new_sbaplayer +4613,Colin Moran,5,,90139,NEW_TEMP_90139,,new_sbaplayer +2185,Collin McHugh,1,,90140,NEW_TEMP_90140,,new_sbaplayer +206,Collin McHugh,2,,90140,NEW_TEMP_90140,,new_sbaplayer +1212,Collin McHugh,3,,90140,NEW_TEMP_90140,,new_sbaplayer +2186,Corbin Burnes,1,,90141,NEW_TEMP_90141,,new_sbaplayer +209,Corbin Burnes,2,,90141,NEW_TEMP_90141,,new_sbaplayer +1215,Corbin Burnes,3,,90141,NEW_TEMP_90141,,new_sbaplayer +3695,Corbin Burnes,4,,90141,NEW_TEMP_90141,,new_sbaplayer +4175,Corbin Burnes,5,,90141,NEW_TEMP_90141,,new_sbaplayer +2187,Corey Dickerson,1,,90142,NEW_TEMP_90142,,new_sbaplayer +210,Corey Dickerson,2,,90142,NEW_TEMP_90142,,new_sbaplayer +1216,Corey Dickerson,3,,90142,NEW_TEMP_90142,,new_sbaplayer +3175,Corey Dickerson,4,,90142,NEW_TEMP_90142,,new_sbaplayer +4740,Corey Dickerson,5,,90142,NEW_TEMP_90142,,new_sbaplayer +2188,Corey Kluber,1,,90143,NEW_TEMP_90143,,new_sbaplayer +211,Corey Kluber,2,,90143,NEW_TEMP_90143,,new_sbaplayer +1217,Corey Kluber,3,,90143,NEW_TEMP_90143,,new_sbaplayer +2189,Corey Knebel,1,,90144,NEW_TEMP_90144,,new_sbaplayer +3696,Corey Knebel,4,,90144,NEW_TEMP_90144,,new_sbaplayer +4845,Corey Knebel,5,,90144,NEW_TEMP_90144,,new_sbaplayer +2190,Corey Oswalt,1,,90145,NEW_TEMP_90145,,new_sbaplayer +3697,Corey Oswalt,4,,90145,NEW_TEMP_90145,,new_sbaplayer +4670,Corey Oswalt,5,,90145,NEW_TEMP_90145,,new_sbaplayer +2191,Cory Spangenberg,1,,90146,NEW_TEMP_90146,,new_sbaplayer +214,Cory Spangenberg,2,,90146,NEW_TEMP_90146,,new_sbaplayer +1220,Cory Spangenberg,3,,90146,NEW_TEMP_90146,,new_sbaplayer +2193,Craig Kimbrel,1,,90147,NEW_TEMP_90147,,new_sbaplayer +215,Craig Kimbrel,2,,90147,NEW_TEMP_90147,,new_sbaplayer +1221,Craig Kimbrel,3,,90147,NEW_TEMP_90147,,new_sbaplayer +3698,Craig Kimbrel,4,,90147,NEW_TEMP_90147,,new_sbaplayer +4846,Craig Kimbrel,5,,90147,NEW_TEMP_90147,,new_sbaplayer +2194,Craig Stammen,1,,90148,NEW_TEMP_90148,,new_sbaplayer +216,Craig Stammen,2,,90148,NEW_TEMP_90148,,new_sbaplayer +1222,Craig Stammen,3,,90148,NEW_TEMP_90148,,new_sbaplayer +3699,Craig Stammen,4,,90148,NEW_TEMP_90148,,new_sbaplayer +4847,Craig Stammen,5,,90148,NEW_TEMP_90148,,new_sbaplayer +2195,Curt Casali,1,,90149,NEW_TEMP_90149,,new_sbaplayer +217,Curt Casali,2,,90149,NEW_TEMP_90149,,new_sbaplayer +1223,Curt Casali,3,,90149,NEW_TEMP_90149,,new_sbaplayer +3177,Curt Casali,4,,90149,NEW_TEMP_90149,,new_sbaplayer +4450,Curt Casali,5,,90149,NEW_TEMP_90149,,new_sbaplayer +2196,Dallas Keuchel,1,,90150,NEW_TEMP_90150,,new_sbaplayer +220,Dallas Keuchel,2,,90150,NEW_TEMP_90150,,new_sbaplayer +1226,Dallas Keuchel,3,,90150,NEW_TEMP_90150,,new_sbaplayer +3704,Dallas Keuchel,4,,90150,NEW_TEMP_90150,,new_sbaplayer +4189,Dallas Keuchel,5,,90150,NEW_TEMP_90150,,new_sbaplayer +2198,Dan Otero,1,,90151,NEW_TEMP_90151,,new_sbaplayer +221,Dan Otero,2,,90151,NEW_TEMP_90151,,new_sbaplayer +1227,Dan Otero,3,,90151,NEW_TEMP_90151,,new_sbaplayer +2199,Dan Straily,1,,90152,NEW_TEMP_90152,,new_sbaplayer +222,Dan Straily,2,,90152,NEW_TEMP_90152,,new_sbaplayer +1228,Dan Straily,3,,90152,NEW_TEMP_90152,,new_sbaplayer +2200,Dan Winkler,1,,90153,NEW_TEMP_90153,,new_sbaplayer +3706,Dan Winkler,4,,90153,NEW_TEMP_90153,,new_sbaplayer +4678,Dan Winkler,5,,90153,NEW_TEMP_90153,,new_sbaplayer +2201,Daniel Descalso,1,,90154,NEW_TEMP_90154,,new_sbaplayer +223,Daniel Descalso,2,,90154,NEW_TEMP_90154,,new_sbaplayer +1229,Daniel Descalso,3,,90154,NEW_TEMP_90154,,new_sbaplayer +2202,Daniel Mengden,1,,90155,NEW_TEMP_90155,,new_sbaplayer +225,Daniel Mengden,2,,90155,NEW_TEMP_90155,,new_sbaplayer +1231,Daniel Mengden,3,,90155,NEW_TEMP_90155,,new_sbaplayer +3711,Daniel Mengden,4,,90155,NEW_TEMP_90155,,new_sbaplayer +4518,Daniel Mengden,5,,90155,NEW_TEMP_90155,,new_sbaplayer +2203,Daniel Murphy,1,,90156,NEW_TEMP_90156,,new_sbaplayer +226,Daniel Murphy,2,,90156,NEW_TEMP_90156,,new_sbaplayer +1232,Daniel Murphy,3,,90156,NEW_TEMP_90156,,new_sbaplayer +3178,Daniel Murphy,4,,90156,NEW_TEMP_90156,,new_sbaplayer +4852,Daniel Murphy,5,,90156,NEW_TEMP_90156,,new_sbaplayer +2204,Daniel Norris,1,,90157,NEW_TEMP_90157,,new_sbaplayer +227,Daniel Norris,2,,90157,NEW_TEMP_90157,,new_sbaplayer +1233,Daniel Norris,3,,90157,NEW_TEMP_90157,,new_sbaplayer +3712,Daniel Norris,4,,90157,NEW_TEMP_90157,,new_sbaplayer +4426,Daniel Norris,5,,90157,NEW_TEMP_90157,,new_sbaplayer +2205,Daniel Palka,1,,90158,NEW_TEMP_90158,,new_sbaplayer +228,Daniel Palka,2,,90158,NEW_TEMP_90158,,new_sbaplayer +1234,Daniel Palka,3,,90158,NEW_TEMP_90158,,new_sbaplayer +2206,Daniel Robertson,1,,90159,NEW_TEMP_90159,,new_sbaplayer +230,Daniel Robertson,2,,90159,NEW_TEMP_90159,,new_sbaplayer +1236,Daniel Robertson,3,,90159,NEW_TEMP_90159,,new_sbaplayer +3179,Daniel Robertson,4,,90159,NEW_TEMP_90159,,new_sbaplayer +4854,Daniel Robertson,5,,90159,NEW_TEMP_90159,,new_sbaplayer +2207,Daniel Stumpf,1,,90160,NEW_TEMP_90160,,new_sbaplayer +231,Daniel Stumpf,2,,90160,NEW_TEMP_90160,,new_sbaplayer +1237,Daniel Stumpf,3,,90160,NEW_TEMP_90160,,new_sbaplayer +2209,Danny Duffy,1,,90161,NEW_TEMP_90161,,new_sbaplayer +233,Danny Duffy,2,,90161,NEW_TEMP_90161,,new_sbaplayer +1239,Danny Duffy,3,,90161,NEW_TEMP_90161,,new_sbaplayer +3714,Danny Duffy,4,,90161,NEW_TEMP_90161,,new_sbaplayer +4691,Danny Duffy,5,,90161,NEW_TEMP_90161,,new_sbaplayer +2210,Danny Jansen,1,,90162,NEW_TEMP_90162,,new_sbaplayer +234,Danny Jansen,2,,90162,NEW_TEMP_90162,,new_sbaplayer +1240,Danny Jansen,3,,90162,NEW_TEMP_90162,,new_sbaplayer +3181,Danny Jansen,4,,90162,NEW_TEMP_90162,,new_sbaplayer +4528,Danny Jansen,5,,90162,NEW_TEMP_90162,,new_sbaplayer +2212,Dansby Swanson,1,,90163,NEW_TEMP_90163,,new_sbaplayer +236,Dansby Swanson,2,,90163,NEW_TEMP_90163,,new_sbaplayer +1242,Dansby Swanson,3,,90163,NEW_TEMP_90163,,new_sbaplayer +3184,Dansby Swanson,4,,90163,NEW_TEMP_90163,,new_sbaplayer +4179,Dansby Swanson,5,,90163,NEW_TEMP_90163,,new_sbaplayer +2213,David Bote,1,,90164,NEW_TEMP_90164,,new_sbaplayer +239,David Bote,2,,90164,NEW_TEMP_90164,,new_sbaplayer +1245,David Bote,3,,90164,NEW_TEMP_90164,,new_sbaplayer +3187,David Bote,4,,90164,NEW_TEMP_90164,,new_sbaplayer +4758,David Bote,5,,90164,NEW_TEMP_90164,,new_sbaplayer +2214,David Dahl,1,,90165,NEW_TEMP_90165,,new_sbaplayer +240,David Dahl,2,,90165,NEW_TEMP_90165,,new_sbaplayer +1246,David Dahl,3,,90165,NEW_TEMP_90165,,new_sbaplayer +3188,David Dahl,4,,90165,NEW_TEMP_90165,,new_sbaplayer +4858,David Dahl,5,,90165,NEW_TEMP_90165,,new_sbaplayer +2215,David Fletcher,1,,90166,NEW_TEMP_90166,,new_sbaplayer +241,David Fletcher,2,,90166,NEW_TEMP_90166,,new_sbaplayer +1247,David Fletcher,3,,90166,NEW_TEMP_90166,,new_sbaplayer +3189,David Fletcher,4,,90166,NEW_TEMP_90166,,new_sbaplayer +4285,David Fletcher,5,,90166,NEW_TEMP_90166,,new_sbaplayer +2216,David Freese,1,,90167,NEW_TEMP_90167,,new_sbaplayer +242,David Freese,2,,90167,NEW_TEMP_90167,,new_sbaplayer +1248,David Freese,3,,90167,NEW_TEMP_90167,,new_sbaplayer +2218,David Hernandez,1,,90168,NEW_TEMP_90168,,new_sbaplayer +244,David Hernandez,2,,90168,NEW_TEMP_90168,,new_sbaplayer +1250,David Hernandez,3,,90168,NEW_TEMP_90168,,new_sbaplayer +2219,David Hess,1,,90169,NEW_TEMP_90169,,new_sbaplayer +245,David Hess,2,,90169,NEW_TEMP_90169,,new_sbaplayer +1251,David Hess,3,,90169,NEW_TEMP_90169,,new_sbaplayer +2220,David Peralta,1,,90170,NEW_TEMP_90170,,new_sbaplayer +247,David Peralta,2,,90170,NEW_TEMP_90170,,new_sbaplayer +1253,David Peralta,3,,90170,NEW_TEMP_90170,,new_sbaplayer +3190,David Peralta,4,,90170,NEW_TEMP_90170,,new_sbaplayer +4624,David Peralta,5,,90170,NEW_TEMP_90170,,new_sbaplayer +2221,David Price,1,,90171,NEW_TEMP_90171,,new_sbaplayer +249,David Price,2,,90171,NEW_TEMP_90171,,new_sbaplayer +1255,David Price,3,,90171,NEW_TEMP_90171,,new_sbaplayer +2223,Dee Strange Gordon,1,,90172,NEW_TEMP_90172,,new_sbaplayer +251,Dee Strange Gordon,2,,90172,NEW_TEMP_90172,,new_sbaplayer +1257,Dee Strange Gordon,3,,90172,NEW_TEMP_90172,,new_sbaplayer +3192,Dee Strange Gordon,4,,90172,NEW_TEMP_90172,,new_sbaplayer +4860,Dee Strange Gordon,5,,90172,NEW_TEMP_90172,,new_sbaplayer +2224,Delino DeShields,1,,90173,NEW_TEMP_90173,,new_sbaplayer +252,Delino DeShields,2,,90173,NEW_TEMP_90173,,new_sbaplayer +1258,Delino DeShields,3,,90173,NEW_TEMP_90173,,new_sbaplayer +3193,Delino DeShields,4,,90173,NEW_TEMP_90173,,new_sbaplayer +4861,Delino DeShields,5,,90173,NEW_TEMP_90173,,new_sbaplayer +2225,Dellin Betances,1,,90174,NEW_TEMP_90174,,new_sbaplayer +3722,Dellin Betances,4,,90174,NEW_TEMP_90174,,new_sbaplayer +4862,Dellin Betances,5,,90174,NEW_TEMP_90174,,new_sbaplayer +2227,Dereck Rodriguez,1,,90175,NEW_TEMP_90175,,new_sbaplayer +253,Dereck Rodriguez,2,,90175,NEW_TEMP_90175,,new_sbaplayer +1259,Dereck Rodriguez,3,,90175,NEW_TEMP_90175,,new_sbaplayer +2228,Derek Dietrich,1,,90176,NEW_TEMP_90176,,new_sbaplayer +254,Derek Dietrich,2,,90176,NEW_TEMP_90176,,new_sbaplayer +1260,Derek Dietrich,3,,90176,NEW_TEMP_90176,,new_sbaplayer +3194,Derek Dietrich,4,,90176,NEW_TEMP_90176,,new_sbaplayer +4629,Derek Dietrich,5,,90176,NEW_TEMP_90176,,new_sbaplayer +2229,Derek Holland,1,,90177,NEW_TEMP_90177,,new_sbaplayer +256,Derek Holland,2,,90177,NEW_TEMP_90177,,new_sbaplayer +1262,Derek Holland,3,,90177,NEW_TEMP_90177,,new_sbaplayer +3725,Derek Holland,4,,90177,NEW_TEMP_90177,,new_sbaplayer +4866,Derek Holland,5,,90177,NEW_TEMP_90177,,new_sbaplayer +2232,Dexter Fowler,1,,90178,NEW_TEMP_90178,,new_sbaplayer +259,Dexter Fowler,2,,90178,NEW_TEMP_90178,,new_sbaplayer +1265,Dexter Fowler,3,,90178,NEW_TEMP_90178,,new_sbaplayer +3196,Dexter Fowler,4,,90178,NEW_TEMP_90178,,new_sbaplayer +4868,Dexter Fowler,5,,90178,NEW_TEMP_90178,,new_sbaplayer +2233,Didi Gregorius,1,,90179,NEW_TEMP_90179,,new_sbaplayer +260,Didi Gregorius,2,,90179,NEW_TEMP_90179,,new_sbaplayer +1266,Didi Gregorius,3,,90179,NEW_TEMP_90179,,new_sbaplayer +3197,Didi Gregorius,4,,90179,NEW_TEMP_90179,,new_sbaplayer +4461,Didi Gregorius,5,,90179,NEW_TEMP_90179,,new_sbaplayer +2234,Diego Castillo,1,,90180,NEW_TEMP_90180,,new_sbaplayer +261,Diego Castillo,2,,90180,NEW_TEMP_90180,,new_sbaplayer +1267,Diego Castillo,3,,90180,NEW_TEMP_90180,,new_sbaplayer +3728,Diego Castillo,4,,90180,NEW_TEMP_90180,,new_sbaplayer +4277,Diego Castillo,5,,90180,NEW_TEMP_90180,,new_sbaplayer +2236,DJ LeMahieu,1,,90181,NEW_TEMP_90181,,new_sbaplayer +264,DJ LeMahieu,2,,90181,NEW_TEMP_90181,,new_sbaplayer +1270,DJ LeMahieu,3,,90181,NEW_TEMP_90181,,new_sbaplayer +3198,DJ LeMahieu,4,,90181,NEW_TEMP_90181,,new_sbaplayer +4138,DJ LeMahieu,5,,90181,NEW_TEMP_90181,,new_sbaplayer +2237,Domingo German,1,,90182,NEW_TEMP_90182,,new_sbaplayer +266,Domingo German,2,,90182,NEW_TEMP_90182,,new_sbaplayer +1272,Domingo German,3,,90182,NEW_TEMP_90182,,new_sbaplayer +2238,Domingo Santana,1,,90183,NEW_TEMP_90183,,new_sbaplayer +267,Domingo Santana,2,,90183,NEW_TEMP_90183,,new_sbaplayer +1273,Domingo Santana,3,,90183,NEW_TEMP_90183,,new_sbaplayer +3200,Domingo Santana,4,,90183,NEW_TEMP_90183,,new_sbaplayer +4869,Domingo Santana,5,,90183,NEW_TEMP_90183,,new_sbaplayer +2239,Dominic Smith,1,,90184,NEW_TEMP_90184,,new_sbaplayer +269,Dominic Smith,2,,90184,NEW_TEMP_90184,,new_sbaplayer +1275,Dominic Smith,3,,90184,NEW_TEMP_90184,,new_sbaplayer +3201,Dominic Smith,4,,90184,NEW_TEMP_90184,,new_sbaplayer +4211,Dominic Smith,5,,90184,NEW_TEMP_90184,,new_sbaplayer +2241,Dovydas Neverauskas,1,,90185,NEW_TEMP_90185,,new_sbaplayer +3732,Dovydas Neverauskas,4,,90185,NEW_TEMP_90185,,new_sbaplayer +4871,Dovydas Neverauskas,5,,90185,NEW_TEMP_90185,,new_sbaplayer +2242,Drew Pomeranz,1,,90186,NEW_TEMP_90186,,new_sbaplayer +271,Drew Pomeranz,2,,90186,NEW_TEMP_90186,,new_sbaplayer +1277,Drew Pomeranz,3,,90186,NEW_TEMP_90186,,new_sbaplayer +3733,Drew Pomeranz,4,,90186,NEW_TEMP_90186,,new_sbaplayer +4221,Drew Pomeranz,5,,90186,NEW_TEMP_90186,,new_sbaplayer +2245,Drew VerHagen,1,,90187,NEW_TEMP_90187,,new_sbaplayer +273,Drew VerHagen,2,,90187,NEW_TEMP_90187,,new_sbaplayer +1279,Drew VerHagen,3,,90187,NEW_TEMP_90187,,new_sbaplayer +2247,Dylan Bundy,1,,90188,NEW_TEMP_90188,,new_sbaplayer +277,Dylan Bundy,2,,90188,NEW_TEMP_90188,,new_sbaplayer +1283,Dylan Bundy,3,,90188,NEW_TEMP_90188,,new_sbaplayer +3739,Dylan Bundy,4,,90188,NEW_TEMP_90188,,new_sbaplayer +4242,Dylan Bundy,5,,90188,NEW_TEMP_90188,,new_sbaplayer +2248,Dylan Covey,1,,90189,NEW_TEMP_90189,,new_sbaplayer +279,Dylan Covey,2,,90189,NEW_TEMP_90189,,new_sbaplayer +1285,Dylan Covey,3,,90189,NEW_TEMP_90189,,new_sbaplayer +3741,Dylan Covey,4,,90189,NEW_TEMP_90189,,new_sbaplayer +4879,Dylan Covey,5,,90189,NEW_TEMP_90189,,new_sbaplayer +2249,Dylan Floro,1,,90190,NEW_TEMP_90190,,new_sbaplayer +280,Dylan Floro,2,,90190,NEW_TEMP_90190,,new_sbaplayer +1286,Dylan Floro,3,,90190,NEW_TEMP_90190,,new_sbaplayer +3742,Dylan Floro,4,,90190,NEW_TEMP_90190,,new_sbaplayer +4568,Dylan Floro,5,,90190,NEW_TEMP_90190,,new_sbaplayer +2251,Eddie Rosario,1,,90191,NEW_TEMP_90191,,new_sbaplayer +282,Eddie Rosario,2,,90191,NEW_TEMP_90191,,new_sbaplayer +1288,Eddie Rosario,3,,90191,NEW_TEMP_90191,,new_sbaplayer +3208,Eddie Rosario,4,,90191,NEW_TEMP_90191,,new_sbaplayer +4481,Eddie Rosario,5,,90191,NEW_TEMP_90191,,new_sbaplayer +2253,Eduardo Escobar,1,,90192,NEW_TEMP_90192,,new_sbaplayer +284,Eduardo Escobar,2,,90192,NEW_TEMP_90192,,new_sbaplayer +1290,Eduardo Escobar,3,,90192,NEW_TEMP_90192,,new_sbaplayer +3210,Eduardo Escobar,4,,90192,NEW_TEMP_90192,,new_sbaplayer +4881,Eduardo Escobar,5,,90192,NEW_TEMP_90192,,new_sbaplayer +2254,Eduardo Nunez,1,,90193,NEW_TEMP_90193,,new_sbaplayer +285,Eduardo Nunez,2,,90193,NEW_TEMP_90193,,new_sbaplayer +1291,Eduardo Nunez,3,,90193,NEW_TEMP_90193,,new_sbaplayer +2255,Eduardo Rodriguez,1,,90194,NEW_TEMP_90194,,new_sbaplayer +286,Eduardo Rodriguez,2,,90194,NEW_TEMP_90194,,new_sbaplayer +1292,Eduardo Rodriguez,3,,90194,NEW_TEMP_90194,,new_sbaplayer +2257,Edwin Diaz,1,,90195,NEW_TEMP_90195,,new_sbaplayer +287,Edwin Diaz,2,,90195,NEW_TEMP_90195,,new_sbaplayer +1293,Edwin Diaz,3,,90195,NEW_TEMP_90195,,new_sbaplayer +3743,Edwin Diaz,4,,90195,NEW_TEMP_90195,,new_sbaplayer +4243,Edwin Diaz,5,,90195,NEW_TEMP_90195,,new_sbaplayer +2258,Edwin Encarnacion,1,,90196,NEW_TEMP_90196,,new_sbaplayer +288,Edwin Encarnacion,2,,90196,NEW_TEMP_90196,,new_sbaplayer +1294,Edwin Encarnacion,3,,90196,NEW_TEMP_90196,,new_sbaplayer +3212,Edwin Encarnacion,4,,90196,NEW_TEMP_90196,,new_sbaplayer +4883,Edwin Encarnacion,5,,90196,NEW_TEMP_90196,,new_sbaplayer +2259,Edwin Jackson,1,,90197,NEW_TEMP_90197,,new_sbaplayer +289,Edwin Jackson,2,,90197,NEW_TEMP_90197,,new_sbaplayer +1295,Edwin Jackson,3,,90197,NEW_TEMP_90197,,new_sbaplayer +2260,Ehire Adrianza,1,,90198,NEW_TEMP_90198,,new_sbaplayer +290,Ehire Adrianza,2,,90198,NEW_TEMP_90198,,new_sbaplayer +1296,Ehire Adrianza,3,,90198,NEW_TEMP_90198,,new_sbaplayer +3214,Ehire Adrianza,4,,90198,NEW_TEMP_90198,,new_sbaplayer +4735,Ehire Adrianza,5,,90198,NEW_TEMP_90198,,new_sbaplayer +2261,Elias Diaz,1,,90199,NEW_TEMP_90199,,new_sbaplayer +291,Elias Diaz,2,,90199,NEW_TEMP_90199,,new_sbaplayer +1297,Elias Diaz,3,,90199,NEW_TEMP_90199,,new_sbaplayer +3216,Elias Diaz,4,,90199,NEW_TEMP_90199,,new_sbaplayer +4885,Elias Diaz,5,,90199,NEW_TEMP_90199,,new_sbaplayer +2262,Elieser Hernandez,1,,90200,NEW_TEMP_90200,,new_sbaplayer +292,Elieser Hernandez,2,,90200,NEW_TEMP_90200,,new_sbaplayer +1298,Elieser Hernandez,3,,90200,NEW_TEMP_90200,,new_sbaplayer +3744,Elieser Hernandez,4,,90200,NEW_TEMP_90200,,new_sbaplayer +4335,Elieser Hernandez,5,,90200,NEW_TEMP_90200,,new_sbaplayer +2513,Elvis Andrus,1,,90201,NEW_TEMP_90201,,new_sbaplayer +294,Elvis Andrus,2,,90201,NEW_TEMP_90201,,new_sbaplayer +1300,Elvis Andrus,3,,90201,NEW_TEMP_90201,,new_sbaplayer +3218,Elvis Andrus,4,,90201,NEW_TEMP_90201,,new_sbaplayer +4886,Elvis Andrus,5,,90201,NEW_TEMP_90201,,new_sbaplayer +2514,Emilio Pagan,1,,90202,NEW_TEMP_90202,,new_sbaplayer +296,Emilio Pagan,2,,90202,NEW_TEMP_90202,,new_sbaplayer +1302,Emilio Pagan,3,,90202,NEW_TEMP_90202,,new_sbaplayer +3745,Emilio Pagan,4,,90202,NEW_TEMP_90202,,new_sbaplayer +4751,Emilio Pagan,5,,90202,NEW_TEMP_90202,,new_sbaplayer +2515,Ender Inciarte,1,,90203,NEW_TEMP_90203,,new_sbaplayer +297,Ender Inciarte,2,,90203,NEW_TEMP_90203,,new_sbaplayer +1303,Ender Inciarte,3,,90203,NEW_TEMP_90203,,new_sbaplayer +3219,Ender Inciarte,4,,90203,NEW_TEMP_90203,,new_sbaplayer +4887,Ender Inciarte,5,,90203,NEW_TEMP_90203,,new_sbaplayer +2516,Enrique Hernandez,1,,90204,NEW_TEMP_90204,,new_sbaplayer +298,Enrique Hernandez,2,,90204,NEW_TEMP_90204,,new_sbaplayer +1304,Enrique Hernandez,3,,90204,NEW_TEMP_90204,,new_sbaplayer +3220,Enrique Hernandez,4,,90204,NEW_TEMP_90204,,new_sbaplayer +4350,Enrique Hernandez,5,,90204,NEW_TEMP_90204,,new_sbaplayer +2517,Eric Hosmer,1,,90205,NEW_TEMP_90205,,new_sbaplayer +299,Eric Hosmer,2,,90205,NEW_TEMP_90205,,new_sbaplayer +1305,Eric Hosmer,3,,90205,NEW_TEMP_90205,,new_sbaplayer +3222,Eric Hosmer,4,,90205,NEW_TEMP_90205,,new_sbaplayer +4331,Eric Hosmer,5,,90205,NEW_TEMP_90205,,new_sbaplayer +2518,Eric Lauer,1,,90206,NEW_TEMP_90206,,new_sbaplayer +300,Eric Lauer,2,,90206,NEW_TEMP_90206,,new_sbaplayer +1306,Eric Lauer,3,,90206,NEW_TEMP_90206,,new_sbaplayer +3748,Eric Lauer,4,,90206,NEW_TEMP_90206,,new_sbaplayer +4889,Eric Lauer,5,,90206,NEW_TEMP_90206,,new_sbaplayer +2520,Eric Thames,1,,90207,NEW_TEMP_90207,,new_sbaplayer +302,Eric Thames,2,,90207,NEW_TEMP_90207,,new_sbaplayer +1308,Eric Thames,3,,90207,NEW_TEMP_90207,,new_sbaplayer +3224,Eric Thames,4,,90207,NEW_TEMP_90207,,new_sbaplayer +4891,Eric Thames,5,,90207,NEW_TEMP_90207,,new_sbaplayer +2522,Erick Fedde,1,,90208,NEW_TEMP_90208,,new_sbaplayer +303,Erick Fedde,2,,90208,NEW_TEMP_90208,,new_sbaplayer +1309,Erick Fedde,3,,90208,NEW_TEMP_90208,,new_sbaplayer +3750,Erick Fedde,4,,90208,NEW_TEMP_90208,,new_sbaplayer +4218,Erick Fedde,5,,90208,NEW_TEMP_90208,,new_sbaplayer +2523,Erik Gonzalez,1,,90209,NEW_TEMP_90209,,new_sbaplayer +304,Erik Gonzalez,2,,90209,NEW_TEMP_90209,,new_sbaplayer +1310,Erik Gonzalez,3,,90209,NEW_TEMP_90209,,new_sbaplayer +3225,Erik Gonzalez,4,,90209,NEW_TEMP_90209,,new_sbaplayer +4767,Erik Gonzalez,5,,90209,NEW_TEMP_90209,,new_sbaplayer +2524,Erik Kratz,1,,90210,NEW_TEMP_90210,,new_sbaplayer +3226,Erik Kratz,4,,90210,NEW_TEMP_90210,,new_sbaplayer +4142,Erik Kratz,5,,90210,NEW_TEMP_90210,,new_sbaplayer +2525,Eugenio Suarez,1,,90211,NEW_TEMP_90211,,new_sbaplayer +306,Eugenio Suarez,2,,90211,NEW_TEMP_90211,,new_sbaplayer +1312,Eugenio Suarez,3,,90211,NEW_TEMP_90211,,new_sbaplayer +3227,Eugenio Suarez,4,,90211,NEW_TEMP_90211,,new_sbaplayer +4608,Eugenio Suarez,5,,90211,NEW_TEMP_90211,,new_sbaplayer +2527,Evan Longoria,1,,90212,NEW_TEMP_90212,,new_sbaplayer +307,Evan Longoria,2,,90212,NEW_TEMP_90212,,new_sbaplayer +1313,Evan Longoria,3,,90212,NEW_TEMP_90212,,new_sbaplayer +3228,Evan Longoria,4,,90212,NEW_TEMP_90212,,new_sbaplayer +4584,Evan Longoria,5,,90212,NEW_TEMP_90212,,new_sbaplayer +2528,Felipe Vazquez,1,,90213,NEW_TEMP_90213,,new_sbaplayer +310,Felipe Vazquez,2,,90213,NEW_TEMP_90213,,new_sbaplayer +1316,Felipe Vazquez,3,,90213,NEW_TEMP_90213,,new_sbaplayer +2529,Felix Hernandez,1,,90214,NEW_TEMP_90214,,new_sbaplayer +311,Felix Hernandez,2,,90214,NEW_TEMP_90214,,new_sbaplayer +1317,Felix Hernandez,3,,90214,NEW_TEMP_90214,,new_sbaplayer +2530,Felix Pena,1,,90215,NEW_TEMP_90215,,new_sbaplayer +312,Felix Pena,2,,90215,NEW_TEMP_90215,,new_sbaplayer +1318,Felix Pena,3,,90215,NEW_TEMP_90215,,new_sbaplayer +3754,Felix Pena,4,,90215,NEW_TEMP_90215,,new_sbaplayer +4542,Felix Pena,5,,90215,NEW_TEMP_90215,,new_sbaplayer +2531,Fernando Rodney,1,,90216,NEW_TEMP_90216,,new_sbaplayer +313,Fernando Rodney,2,,90216,NEW_TEMP_90216,,new_sbaplayer +1319,Fernando Rodney,3,,90216,NEW_TEMP_90216,,new_sbaplayer +2534,Francisco Cervelli,1,,90217,NEW_TEMP_90217,,new_sbaplayer +316,Francisco Cervelli,2,,90217,NEW_TEMP_90217,,new_sbaplayer +1322,Francisco Cervelli,3,,90217,NEW_TEMP_90217,,new_sbaplayer +3232,Francisco Cervelli,4,,90217,NEW_TEMP_90217,,new_sbaplayer +4169,Francisco Cervelli,5,,90217,NEW_TEMP_90217,,new_sbaplayer +2535,Francisco Lindor,1,,90218,NEW_TEMP_90218,,new_sbaplayer +317,Francisco Lindor,2,,90218,NEW_TEMP_90218,,new_sbaplayer +1323,Francisco Lindor,3,,90218,NEW_TEMP_90218,,new_sbaplayer +3233,Francisco Lindor,4,,90218,NEW_TEMP_90218,,new_sbaplayer +4524,Francisco Lindor,5,,90218,NEW_TEMP_90218,,new_sbaplayer +2536,Francisco Liriano,1,,90219,NEW_TEMP_90219,,new_sbaplayer +318,Francisco Liriano,2,,90219,NEW_TEMP_90219,,new_sbaplayer +1324,Francisco Liriano,3,,90219,NEW_TEMP_90219,,new_sbaplayer +2538,Franmil Reyes,1,,90220,NEW_TEMP_90220,,new_sbaplayer +321,Franmil Reyes,2,,90220,NEW_TEMP_90220,,new_sbaplayer +1327,Franmil Reyes,3,,90220,NEW_TEMP_90220,,new_sbaplayer +3236,Franmil Reyes,4,,90220,NEW_TEMP_90220,,new_sbaplayer +4695,Franmil Reyes,5,,90220,NEW_TEMP_90220,,new_sbaplayer +2539,Freddie Freeman,1,,90221,NEW_TEMP_90221,,new_sbaplayer +322,Freddie Freeman,2,,90221,NEW_TEMP_90221,,new_sbaplayer +1328,Freddie Freeman,3,,90221,NEW_TEMP_90221,,new_sbaplayer +3237,Freddie Freeman,4,,90221,NEW_TEMP_90221,,new_sbaplayer +4148,Freddie Freeman,5,,90221,NEW_TEMP_90221,,new_sbaplayer +2540,Freddy Galvis,1,,90222,NEW_TEMP_90222,,new_sbaplayer +323,Freddy Galvis,2,,90222,NEW_TEMP_90222,,new_sbaplayer +1329,Freddy Galvis,3,,90222,NEW_TEMP_90222,,new_sbaplayer +3238,Freddy Galvis,4,,90222,NEW_TEMP_90222,,new_sbaplayer +4675,Freddy Galvis,5,,90222,NEW_TEMP_90222,,new_sbaplayer +2541,Freddy Peralta,1,,90223,NEW_TEMP_90223,,new_sbaplayer +324,Freddy Peralta,2,,90223,NEW_TEMP_90223,,new_sbaplayer +1330,Freddy Peralta,3,,90223,NEW_TEMP_90223,,new_sbaplayer +3758,Freddy Peralta,4,,90223,NEW_TEMP_90223,,new_sbaplayer +4632,Freddy Peralta,5,,90223,NEW_TEMP_90223,,new_sbaplayer +2543,Garrett Richards,1,,90224,NEW_TEMP_90224,,new_sbaplayer +3761,Garrett Richards,4,,90224,NEW_TEMP_90224,,new_sbaplayer +4399,Garrett Richards,5,,90224,NEW_TEMP_90224,,new_sbaplayer +2544,Gary Sanchez,1,,90225,NEW_TEMP_90225,,new_sbaplayer +328,Gary Sanchez,2,,90225,NEW_TEMP_90225,,new_sbaplayer +1334,Gary Sanchez,3,,90225,NEW_TEMP_90225,,new_sbaplayer +3241,Gary Sanchez,4,,90225,NEW_TEMP_90225,,new_sbaplayer +4900,Gary Sanchez,5,,90225,NEW_TEMP_90225,,new_sbaplayer +2545,George Springer,1,,90226,NEW_TEMP_90226,,new_sbaplayer +331,George Springer,2,,90226,NEW_TEMP_90226,,new_sbaplayer +1337,George Springer,3,,90226,NEW_TEMP_90226,,new_sbaplayer +3243,George Springer,4,,90226,NEW_TEMP_90226,,new_sbaplayer +4198,George Springer,5,,90226,NEW_TEMP_90226,,new_sbaplayer +2546,Gerardo Parra,1,,90227,NEW_TEMP_90227,,new_sbaplayer +332,Gerardo Parra,2,,90227,NEW_TEMP_90227,,new_sbaplayer +1338,Gerardo Parra,3,,90227,NEW_TEMP_90227,,new_sbaplayer +2547,German Marquez,1,,90228,NEW_TEMP_90228,,new_sbaplayer +334,German Marquez,2,,90228,NEW_TEMP_90228,,new_sbaplayer +1340,German Marquez,3,,90228,NEW_TEMP_90228,,new_sbaplayer +3764,German Marquez,4,,90228,NEW_TEMP_90228,,new_sbaplayer +4360,German Marquez,5,,90228,NEW_TEMP_90228,,new_sbaplayer +2548,Gerrit Cole,1,,90229,NEW_TEMP_90229,,new_sbaplayer +335,Gerrit Cole,2,,90229,NEW_TEMP_90229,,new_sbaplayer +1341,Gerrit Cole,3,,90229,NEW_TEMP_90229,,new_sbaplayer +3765,Gerrit Cole,4,,90229,NEW_TEMP_90229,,new_sbaplayer +4215,Gerrit Cole,5,,90229,NEW_TEMP_90229,,new_sbaplayer +2549,Giancarlo Stanton,1,,90230,NEW_TEMP_90230,,new_sbaplayer +336,Giancarlo Stanton,2,,90230,NEW_TEMP_90230,,new_sbaplayer +1342,Giancarlo Stanton,3,,90230,NEW_TEMP_90230,,new_sbaplayer +3244,Giancarlo Stanton,4,,90230,NEW_TEMP_90230,,new_sbaplayer +4452,Giancarlo Stanton,5,,90230,NEW_TEMP_90230,,new_sbaplayer +2550,Gio Gonzalez,1,,90231,NEW_TEMP_90231,,new_sbaplayer +337,Gio Gonzalez,2,,90231,NEW_TEMP_90231,,new_sbaplayer +1343,Gio Gonzalez,3,,90231,NEW_TEMP_90231,,new_sbaplayer +3766,Gio Gonzalez,4,,90231,NEW_TEMP_90231,,new_sbaplayer +4902,Gio Gonzalez,5,,90231,NEW_TEMP_90231,,new_sbaplayer +2551,Gleyber Torres,1,,90232,NEW_TEMP_90232,,new_sbaplayer +341,Gleyber Torres,2,,90232,NEW_TEMP_90232,,new_sbaplayer +1347,Gleyber Torres,3,,90232,NEW_TEMP_90232,,new_sbaplayer +3246,Gleyber Torres,4,,90232,NEW_TEMP_90232,,new_sbaplayer +4904,Gleyber Torres,5,,90232,NEW_TEMP_90232,,new_sbaplayer +2553,Greg Allen,1,,90233,NEW_TEMP_90233,,new_sbaplayer +344,Greg Allen,2,,90233,NEW_TEMP_90233,,new_sbaplayer +1350,Greg Allen,3,,90233,NEW_TEMP_90233,,new_sbaplayer +3248,Greg Allen,4,,90233,NEW_TEMP_90233,,new_sbaplayer +4601,Greg Allen,5,,90233,NEW_TEMP_90233,,new_sbaplayer +2555,Greg Garcia,1,,90234,NEW_TEMP_90234,,new_sbaplayer +345,Greg Garcia,2,,90234,NEW_TEMP_90234,,new_sbaplayer +1351,Greg Garcia,3,,90234,NEW_TEMP_90234,,new_sbaplayer +3249,Greg Garcia,4,,90234,NEW_TEMP_90234,,new_sbaplayer +4906,Greg Garcia,5,,90234,NEW_TEMP_90234,,new_sbaplayer +2556,Greg Holland,1,,90235,NEW_TEMP_90235,,new_sbaplayer +346,Greg Holland,2,,90235,NEW_TEMP_90235,,new_sbaplayer +1352,Greg Holland,3,,90235,NEW_TEMP_90235,,new_sbaplayer +3769,Greg Holland,4,,90235,NEW_TEMP_90235,,new_sbaplayer +4446,Greg Holland,5,,90235,NEW_TEMP_90235,,new_sbaplayer +2558,Gregory Polanco,1,,90236,NEW_TEMP_90236,,new_sbaplayer +347,Gregory Polanco,2,,90236,NEW_TEMP_90236,,new_sbaplayer +1353,Gregory Polanco,3,,90236,NEW_TEMP_90236,,new_sbaplayer +3250,Gregory Polanco,4,,90236,NEW_TEMP_90236,,new_sbaplayer +4907,Gregory Polanco,5,,90236,NEW_TEMP_90236,,new_sbaplayer +2559,Guillermo Heredia,1,,90237,NEW_TEMP_90237,,new_sbaplayer +350,Guillermo Heredia,2,,90237,NEW_TEMP_90237,,new_sbaplayer +1356,Guillermo Heredia,3,,90237,NEW_TEMP_90237,,new_sbaplayer +3251,Guillermo Heredia,4,,90237,NEW_TEMP_90237,,new_sbaplayer +4176,Guillermo Heredia,5,,90237,NEW_TEMP_90237,,new_sbaplayer +2560,Hansel Robles,1,,90238,NEW_TEMP_90238,,new_sbaplayer +351,Hansel Robles,2,,90238,NEW_TEMP_90238,,new_sbaplayer +1357,Hansel Robles,3,,90238,NEW_TEMP_90238,,new_sbaplayer +3772,Hansel Robles,4,,90238,NEW_TEMP_90238,,new_sbaplayer +4908,Hansel Robles,5,,90238,NEW_TEMP_90238,,new_sbaplayer +2561,Harrison Bader,1,,90239,NEW_TEMP_90239,,new_sbaplayer +355,Harrison Bader,2,,90239,NEW_TEMP_90239,,new_sbaplayer +1361,Harrison Bader,3,,90239,NEW_TEMP_90239,,new_sbaplayer +3254,Harrison Bader,4,,90239,NEW_TEMP_90239,,new_sbaplayer +4274,Harrison Bader,5,,90239,NEW_TEMP_90239,,new_sbaplayer +2564,Heath Hembree,1,,90240,NEW_TEMP_90240,,new_sbaplayer +356,Heath Hembree,2,,90240,NEW_TEMP_90240,,new_sbaplayer +1362,Heath Hembree,3,,90240,NEW_TEMP_90240,,new_sbaplayer +3773,Heath Hembree,4,,90240,NEW_TEMP_90240,,new_sbaplayer +4909,Heath Hembree,5,,90240,NEW_TEMP_90240,,new_sbaplayer +2565,Hector Neris,1,,90241,NEW_TEMP_90241,,new_sbaplayer +357,Hector Neris,2,,90241,NEW_TEMP_90241,,new_sbaplayer +1363,Hector Neris,3,,90241,NEW_TEMP_90241,,new_sbaplayer +3774,Hector Neris,4,,90241,NEW_TEMP_90241,,new_sbaplayer +4910,Hector Neris,5,,90241,NEW_TEMP_90241,,new_sbaplayer +2566,Hector Rondon,1,,90242,NEW_TEMP_90242,,new_sbaplayer +359,Hector Rondon,2,,90242,NEW_TEMP_90242,,new_sbaplayer +1365,Hector Rondon,3,,90242,NEW_TEMP_90242,,new_sbaplayer +3775,Hector Rondon,4,,90242,NEW_TEMP_90242,,new_sbaplayer +4911,Hector Rondon,5,,90242,NEW_TEMP_90242,,new_sbaplayer +2567,Hector Santiago,1,,90243,NEW_TEMP_90243,,new_sbaplayer +360,Hector Santiago,2,,90243,NEW_TEMP_90243,,new_sbaplayer +1366,Hector Santiago,3,,90243,NEW_TEMP_90243,,new_sbaplayer +2568,Hector Velazquez,1,,90244,NEW_TEMP_90244,,new_sbaplayer +361,Hector Velazquez,2,,90244,NEW_TEMP_90244,,new_sbaplayer +1367,Hector Velazquez,3,,90244,NEW_TEMP_90244,,new_sbaplayer +2569,Hernan Perez,1,,90245,NEW_TEMP_90245,,new_sbaplayer +362,Hernan Perez,2,,90245,NEW_TEMP_90245,,new_sbaplayer +1368,Hernan Perez,3,,90245,NEW_TEMP_90245,,new_sbaplayer +2570,Homer Bailey,1,,90246,NEW_TEMP_90246,,new_sbaplayer +363,Homer Bailey,2,,90246,NEW_TEMP_90246,,new_sbaplayer +1369,Homer Bailey,3,,90246,NEW_TEMP_90246,,new_sbaplayer +3777,Homer Bailey,4,,90246,NEW_TEMP_90246,,new_sbaplayer +4379,Homer Bailey,5,,90246,NEW_TEMP_90246,,new_sbaplayer +2571,Howie Kendrick,1,,90247,NEW_TEMP_90247,,new_sbaplayer +364,Howie Kendrick,2,,90247,NEW_TEMP_90247,,new_sbaplayer +1370,Howie Kendrick,3,,90247,NEW_TEMP_90247,,new_sbaplayer +3255,Howie Kendrick,4,,90247,NEW_TEMP_90247,,new_sbaplayer +4913,Howie Kendrick,5,,90247,NEW_TEMP_90247,,new_sbaplayer +2572,Hunter Dozier,1,,90248,NEW_TEMP_90248,,new_sbaplayer +366,Hunter Dozier,2,,90248,NEW_TEMP_90248,,new_sbaplayer +1372,Hunter Dozier,3,,90248,NEW_TEMP_90248,,new_sbaplayer +3256,Hunter Dozier,4,,90248,NEW_TEMP_90248,,new_sbaplayer +4699,Hunter Dozier,5,,90248,NEW_TEMP_90248,,new_sbaplayer +2573,Hunter Pence,1,,90249,NEW_TEMP_90249,,new_sbaplayer +367,Hunter Pence,2,,90249,NEW_TEMP_90249,,new_sbaplayer +1373,Hunter Pence,3,,90249,NEW_TEMP_90249,,new_sbaplayer +3257,Hunter Pence,4,,90249,NEW_TEMP_90249,,new_sbaplayer +4917,Hunter Pence,5,,90249,NEW_TEMP_90249,,new_sbaplayer +2574,Hunter Renfroe,1,,90250,NEW_TEMP_90250,,new_sbaplayer +368,Hunter Renfroe,2,,90250,NEW_TEMP_90250,,new_sbaplayer +1374,Hunter Renfroe,3,,90250,NEW_TEMP_90250,,new_sbaplayer +3258,Hunter Renfroe,4,,90250,NEW_TEMP_90250,,new_sbaplayer +4918,Hunter Renfroe,5,,90250,NEW_TEMP_90250,,new_sbaplayer +2576,Hunter Wood,1,,90251,NEW_TEMP_90251,,new_sbaplayer +369,Hunter Wood,2,,90251,NEW_TEMP_90251,,new_sbaplayer +1375,Hunter Wood,3,,90251,NEW_TEMP_90251,,new_sbaplayer +2577,Hyun Jin Ryu,1,,90252,NEW_TEMP_90252,,new_sbaplayer +370,Hyun Jin Ryu,2,,90252,NEW_TEMP_90252,,new_sbaplayer +1376,Hyun Jin Ryu,3,,90252,NEW_TEMP_90252,,new_sbaplayer +3782,Hyun Jin Ryu,4,,90252,NEW_TEMP_90252,,new_sbaplayer +4137,Hyun Jin Ryu,5,,90252,NEW_TEMP_90252,,new_sbaplayer +2578,Ian Desmond,1,,90253,NEW_TEMP_90253,,new_sbaplayer +371,Ian Desmond,2,,90253,NEW_TEMP_90253,,new_sbaplayer +1377,Ian Desmond,3,,90253,NEW_TEMP_90253,,new_sbaplayer +2579,Ian Happ,1,,90254,NEW_TEMP_90254,,new_sbaplayer +372,Ian Happ,2,,90254,NEW_TEMP_90254,,new_sbaplayer +1378,Ian Happ,3,,90254,NEW_TEMP_90254,,new_sbaplayer +3259,Ian Happ,4,,90254,NEW_TEMP_90254,,new_sbaplayer +4406,Ian Happ,5,,90254,NEW_TEMP_90254,,new_sbaplayer +2580,Ian Kennedy,1,,90255,NEW_TEMP_90255,,new_sbaplayer +373,Ian Kennedy,2,,90255,NEW_TEMP_90255,,new_sbaplayer +1379,Ian Kennedy,3,,90255,NEW_TEMP_90255,,new_sbaplayer +3785,Ian Kennedy,4,,90255,NEW_TEMP_90255,,new_sbaplayer +4920,Ian Kennedy,5,,90255,NEW_TEMP_90255,,new_sbaplayer +2581,Ian Kinsler,1,,90256,NEW_TEMP_90256,,new_sbaplayer +374,Ian Kinsler,2,,90256,NEW_TEMP_90256,,new_sbaplayer +1380,Ian Kinsler,3,,90256,NEW_TEMP_90256,,new_sbaplayer +2582,Isiah Kiner Falefa,1,,90257,NEW_TEMP_90257,,new_sbaplayer +377,Isiah Kiner Falefa,2,,90257,NEW_TEMP_90257,,new_sbaplayer +1383,Isiah Kiner Falefa,3,,90257,NEW_TEMP_90257,,new_sbaplayer +3263,Isiah Kiner Falefa,4,,90257,NEW_TEMP_90257,,new_sbaplayer +4238,Isiah Kiner Falefa,5,,90257,NEW_TEMP_90257,,new_sbaplayer +2583,Ivan Nova,1,,90258,NEW_TEMP_90258,,new_sbaplayer +378,Ivan Nova,2,,90258,NEW_TEMP_90258,,new_sbaplayer +1384,Ivan Nova,3,,90258,NEW_TEMP_90258,,new_sbaplayer +3786,Ivan Nova,4,,90258,NEW_TEMP_90258,,new_sbaplayer +4924,Ivan Nova,5,,90258,NEW_TEMP_90258,,new_sbaplayer +2584,JA Happ,1,,90259,NEW_TEMP_90259,,new_sbaplayer +379,JA Happ,2,,90259,NEW_TEMP_90259,,new_sbaplayer +1385,JA Happ,3,,90259,NEW_TEMP_90259,,new_sbaplayer +3787,JA Happ,4,,90259,NEW_TEMP_90259,,new_sbaplayer +4291,JA Happ,5,,90259,NEW_TEMP_90259,,new_sbaplayer +2585,JD Martinez,1,,90260,NEW_TEMP_90260,,new_sbaplayer +382,JD Martinez,2,,90260,NEW_TEMP_90260,,new_sbaplayer +1388,JD Martinez,3,,90260,NEW_TEMP_90260,,new_sbaplayer +3287,JD Martinez,4,,90260,NEW_TEMP_90260,,new_sbaplayer +4942,JD Martinez,5,,90260,NEW_TEMP_90260,,new_sbaplayer +2586,JT Realmuto,1,,90261,NEW_TEMP_90261,,new_sbaplayer +384,JT Realmuto,2,,90261,NEW_TEMP_90261,,new_sbaplayer +1390,JT Realmuto,3,,90261,NEW_TEMP_90261,,new_sbaplayer +3342,JT Realmuto,4,,90261,NEW_TEMP_90261,,new_sbaplayer +4320,JT Realmuto,5,,90261,NEW_TEMP_90261,,new_sbaplayer +2587,Jace Fry,1,,90262,NEW_TEMP_90262,,new_sbaplayer +385,Jace Fry,2,,90262,NEW_TEMP_90262,,new_sbaplayer +1391,Jace Fry,3,,90262,NEW_TEMP_90262,,new_sbaplayer +3788,Jace Fry,4,,90262,NEW_TEMP_90262,,new_sbaplayer +4743,Jace Fry,5,,90262,NEW_TEMP_90262,,new_sbaplayer +2588,Jace Peterson,1,,90263,NEW_TEMP_90263,,new_sbaplayer +386,Jace Peterson,2,,90263,NEW_TEMP_90263,,new_sbaplayer +1392,Jace Peterson,3,,90263,NEW_TEMP_90263,,new_sbaplayer +3264,Jace Peterson,4,,90263,NEW_TEMP_90263,,new_sbaplayer +4590,Jace Peterson,5,,90263,NEW_TEMP_90263,,new_sbaplayer +2589,Jack Flaherty,1,,90264,NEW_TEMP_90264,,new_sbaplayer +387,Jack Flaherty,2,,90264,NEW_TEMP_90264,,new_sbaplayer +1393,Jack Flaherty,3,,90264,NEW_TEMP_90264,,new_sbaplayer +3789,Jack Flaherty,4,,90264,NEW_TEMP_90264,,new_sbaplayer +4925,Jack Flaherty,5,,90264,NEW_TEMP_90264,,new_sbaplayer +2590,Jackie Bradley Jr,1,,90265,NEW_TEMP_90265,,new_sbaplayer +389,Jackie Bradley Jr,2,,90265,NEW_TEMP_90265,,new_sbaplayer +1395,Jackie Bradley Jr,3,,90265,NEW_TEMP_90265,,new_sbaplayer +3266,Jackie Bradley Jr,4,,90265,NEW_TEMP_90265,,new_sbaplayer +4206,Jackie Bradley Jr,5,,90265,NEW_TEMP_90265,,new_sbaplayer +2592,Jacob Barnes,1,,90266,NEW_TEMP_90266,,new_sbaplayer +390,Jacob Barnes,2,,90266,NEW_TEMP_90266,,new_sbaplayer +1396,Jacob Barnes,3,,90266,NEW_TEMP_90266,,new_sbaplayer +3790,Jacob Barnes,4,,90266,NEW_TEMP_90266,,new_sbaplayer +4927,Jacob Barnes,5,,90266,NEW_TEMP_90266,,new_sbaplayer +2593,Jacob deGrom,1,,90267,NEW_TEMP_90267,,new_sbaplayer +391,Jacob deGrom,2,,90267,NEW_TEMP_90267,,new_sbaplayer +1397,Jacob deGrom,3,,90267,NEW_TEMP_90267,,new_sbaplayer +3791,Jacob deGrom,4,,90267,NEW_TEMP_90267,,new_sbaplayer +4152,Jacob deGrom,5,,90267,NEW_TEMP_90267,,new_sbaplayer +2596,JaCoby Jones,1,,90268,NEW_TEMP_90268,,new_sbaplayer +395,JaCoby Jones,2,,90268,NEW_TEMP_90268,,new_sbaplayer +1401,JaCoby Jones,3,,90268,NEW_TEMP_90268,,new_sbaplayer +3269,JaCoby Jones,4,,90268,NEW_TEMP_90268,,new_sbaplayer +4439,JaCoby Jones,5,,90268,NEW_TEMP_90268,,new_sbaplayer +2597,Jaime Barria,1,,90269,NEW_TEMP_90269,,new_sbaplayer +396,Jaime Barria,2,,90269,NEW_TEMP_90269,,new_sbaplayer +1402,Jaime Barria,3,,90269,NEW_TEMP_90269,,new_sbaplayer +3794,Jaime Barria,4,,90269,NEW_TEMP_90269,,new_sbaplayer +4319,Jaime Barria,5,,90269,NEW_TEMP_90269,,new_sbaplayer +2598,Jake Arrieta,1,,90270,NEW_TEMP_90270,,new_sbaplayer +398,Jake Arrieta,2,,90270,NEW_TEMP_90270,,new_sbaplayer +1404,Jake Arrieta,3,,90270,NEW_TEMP_90270,,new_sbaplayer +3796,Jake Arrieta,4,,90270,NEW_TEMP_90270,,new_sbaplayer +4420,Jake Arrieta,5,,90270,NEW_TEMP_90270,,new_sbaplayer +2599,Jake Bauers,1,,90271,NEW_TEMP_90271,,new_sbaplayer +399,Jake Bauers,2,,90271,NEW_TEMP_90271,,new_sbaplayer +1405,Jake Bauers,3,,90271,NEW_TEMP_90271,,new_sbaplayer +2600,Jake Cave,1,,90272,NEW_TEMP_90272,,new_sbaplayer +400,Jake Cave,2,,90272,NEW_TEMP_90272,,new_sbaplayer +1406,Jake Cave,3,,90272,NEW_TEMP_90272,,new_sbaplayer +3270,Jake Cave,4,,90272,NEW_TEMP_90272,,new_sbaplayer +4593,Jake Cave,5,,90272,NEW_TEMP_90272,,new_sbaplayer +2602,Jake Lamb,1,,90273,NEW_TEMP_90273,,new_sbaplayer +403,Jake Lamb,2,,90273,NEW_TEMP_90273,,new_sbaplayer +1409,Jake Lamb,3,,90273,NEW_TEMP_90273,,new_sbaplayer +3273,Jake Lamb,4,,90273,NEW_TEMP_90273,,new_sbaplayer +4931,Jake Lamb,5,,90273,NEW_TEMP_90273,,new_sbaplayer +2603,Jake Marisnick,1,,90274,NEW_TEMP_90274,,new_sbaplayer +404,Jake Marisnick,2,,90274,NEW_TEMP_90274,,new_sbaplayer +1410,Jake Marisnick,3,,90274,NEW_TEMP_90274,,new_sbaplayer +3274,Jake Marisnick,4,,90274,NEW_TEMP_90274,,new_sbaplayer +4415,Jake Marisnick,5,,90274,NEW_TEMP_90274,,new_sbaplayer +2604,Jake McGee,1,,90275,NEW_TEMP_90275,,new_sbaplayer +405,Jake McGee,2,,90275,NEW_TEMP_90275,,new_sbaplayer +1411,Jake McGee,3,,90275,NEW_TEMP_90275,,new_sbaplayer +3798,Jake McGee,4,,90275,NEW_TEMP_90275,,new_sbaplayer +4585,Jake McGee,5,,90275,NEW_TEMP_90275,,new_sbaplayer +2605,Jake Odorizzi,1,,90276,NEW_TEMP_90276,,new_sbaplayer +407,Jake Odorizzi,2,,90276,NEW_TEMP_90276,,new_sbaplayer +1413,Jake Odorizzi,3,,90276,NEW_TEMP_90276,,new_sbaplayer +3800,Jake Odorizzi,4,,90276,NEW_TEMP_90276,,new_sbaplayer +4934,Jake Odorizzi,5,,90276,NEW_TEMP_90276,,new_sbaplayer +2607,Jakob Junis,1,,90277,NEW_TEMP_90277,,new_sbaplayer +409,Jakob Junis,2,,90277,NEW_TEMP_90277,,new_sbaplayer +1415,Jakob Junis,3,,90277,NEW_TEMP_90277,,new_sbaplayer +3802,Jakob Junis,4,,90277,NEW_TEMP_90277,,new_sbaplayer +4936,Jakob Junis,5,,90277,NEW_TEMP_90277,,new_sbaplayer +2608,Jalen Beeks,1,,90278,NEW_TEMP_90278,,new_sbaplayer +410,Jalen Beeks,2,,90278,NEW_TEMP_90278,,new_sbaplayer +1416,Jalen Beeks,3,,90278,NEW_TEMP_90278,,new_sbaplayer +3803,Jalen Beeks,4,,90278,NEW_TEMP_90278,,new_sbaplayer +4630,Jalen Beeks,5,,90278,NEW_TEMP_90278,,new_sbaplayer +2609,James McCann,1,,90279,NEW_TEMP_90279,,new_sbaplayer +411,James McCann,2,,90279,NEW_TEMP_90279,,new_sbaplayer +1417,James McCann,3,,90279,NEW_TEMP_90279,,new_sbaplayer +3276,James McCann,4,,90279,NEW_TEMP_90279,,new_sbaplayer +4161,James McCann,5,,90279,NEW_TEMP_90279,,new_sbaplayer +2610,James Paxton,1,,90280,NEW_TEMP_90280,,new_sbaplayer +412,James Paxton,2,,90280,NEW_TEMP_90280,,new_sbaplayer +1418,James Paxton,3,,90280,NEW_TEMP_90280,,new_sbaplayer +3806,James Paxton,4,,90280,NEW_TEMP_90280,,new_sbaplayer +4937,James Paxton,5,,90280,NEW_TEMP_90280,,new_sbaplayer +2613,Jameson Taillon,1,,90281,NEW_TEMP_90281,,new_sbaplayer +413,Jameson Taillon,2,,90281,NEW_TEMP_90281,,new_sbaplayer +1419,Jameson Taillon,3,,90281,NEW_TEMP_90281,,new_sbaplayer +2614,Jared Hughes,1,,90282,NEW_TEMP_90282,,new_sbaplayer +415,Jared Hughes,2,,90282,NEW_TEMP_90282,,new_sbaplayer +1421,Jared Hughes,3,,90282,NEW_TEMP_90282,,new_sbaplayer +3807,Jared Hughes,4,,90282,NEW_TEMP_90282,,new_sbaplayer +4938,Jared Hughes,5,,90282,NEW_TEMP_90282,,new_sbaplayer +2615,Jarlin Garcia,1,,90283,NEW_TEMP_90283,,new_sbaplayer +417,Jarlin Garcia,2,,90283,NEW_TEMP_90283,,new_sbaplayer +1423,Jarlin Garcia,3,,90283,NEW_TEMP_90283,,new_sbaplayer +3808,Jarlin Garcia,4,,90283,NEW_TEMP_90283,,new_sbaplayer +4490,Jarlin Garcia,5,,90283,NEW_TEMP_90283,,new_sbaplayer +2616,Jarrod Dyson,1,,90284,NEW_TEMP_90284,,new_sbaplayer +418,Jarrod Dyson,2,,90284,NEW_TEMP_90284,,new_sbaplayer +1424,Jarrod Dyson,3,,90284,NEW_TEMP_90284,,new_sbaplayer +3279,Jarrod Dyson,4,,90284,NEW_TEMP_90284,,new_sbaplayer +4940,Jarrod Dyson,5,,90284,NEW_TEMP_90284,,new_sbaplayer +2617,Jason Adam,1,,90285,NEW_TEMP_90285,,new_sbaplayer +3809,Jason Adam,4,,90285,NEW_TEMP_90285,,new_sbaplayer +4718,Jason Adam,5,,90285,NEW_TEMP_90285,,new_sbaplayer +2619,Jason Heyward,1,,90286,NEW_TEMP_90286,,new_sbaplayer +420,Jason Heyward,2,,90286,NEW_TEMP_90286,,new_sbaplayer +1426,Jason Heyward,3,,90286,NEW_TEMP_90286,,new_sbaplayer +3281,Jason Heyward,4,,90286,NEW_TEMP_90286,,new_sbaplayer +4265,Jason Heyward,5,,90286,NEW_TEMP_90286,,new_sbaplayer +2620,Jason Kipnis,1,,90287,NEW_TEMP_90287,,new_sbaplayer +421,Jason Kipnis,2,,90287,NEW_TEMP_90287,,new_sbaplayer +1427,Jason Kipnis,3,,90287,NEW_TEMP_90287,,new_sbaplayer +3282,Jason Kipnis,4,,90287,NEW_TEMP_90287,,new_sbaplayer +4455,Jason Kipnis,5,,90287,NEW_TEMP_90287,,new_sbaplayer +2621,Jason Vargas,1,,90288,NEW_TEMP_90288,,new_sbaplayer +422,Jason Vargas,2,,90288,NEW_TEMP_90288,,new_sbaplayer +1428,Jason Vargas,3,,90288,NEW_TEMP_90288,,new_sbaplayer +2622,Javier Baez,1,,90289,NEW_TEMP_90289,,new_sbaplayer +423,Javier Baez,2,,90289,NEW_TEMP_90289,,new_sbaplayer +1429,Javier Baez,3,,90289,NEW_TEMP_90289,,new_sbaplayer +3283,Javier Baez,4,,90289,NEW_TEMP_90289,,new_sbaplayer +4545,Javier Baez,5,,90289,NEW_TEMP_90289,,new_sbaplayer +2623,Javy Guerra,1,,90290,NEW_TEMP_90290,,new_sbaplayer +424,Javy Guerra,2,,90290,NEW_TEMP_90290,,new_sbaplayer +1430,Javy Guerra,3,,90290,NEW_TEMP_90290,,new_sbaplayer +3811,Javy Guerra,4,,90290,NEW_TEMP_90290,,new_sbaplayer +4588,Javy Guerra,5,,90290,NEW_TEMP_90290,,new_sbaplayer +2624,Jay Bruce,1,,90291,NEW_TEMP_90291,,new_sbaplayer +425,Jay Bruce,2,,90291,NEW_TEMP_90291,,new_sbaplayer +1431,Jay Bruce,3,,90291,NEW_TEMP_90291,,new_sbaplayer +3284,Jay Bruce,4,,90291,NEW_TEMP_90291,,new_sbaplayer +4672,Jay Bruce,5,,90291,NEW_TEMP_90291,,new_sbaplayer +2626,Jean Segura,1,,90292,NEW_TEMP_90292,,new_sbaplayer +427,Jean Segura,2,,90292,NEW_TEMP_90292,,new_sbaplayer +1433,Jean Segura,3,,90292,NEW_TEMP_90292,,new_sbaplayer +3288,Jean Segura,4,,90292,NEW_TEMP_90292,,new_sbaplayer +4370,Jean Segura,5,,90292,NEW_TEMP_90292,,new_sbaplayer +2629,Jedd Gyorko,1,,90293,NEW_TEMP_90293,,new_sbaplayer +428,Jedd Gyorko,2,,90293,NEW_TEMP_90293,,new_sbaplayer +1434,Jedd Gyorko,3,,90293,NEW_TEMP_90293,,new_sbaplayer +3289,Jedd Gyorko,4,,90293,NEW_TEMP_90293,,new_sbaplayer +4414,Jedd Gyorko,5,,90293,NEW_TEMP_90293,,new_sbaplayer +2630,Jeff Mathis,1,,90294,NEW_TEMP_90294,,new_sbaplayer +431,Jeff Mathis,2,,90294,NEW_TEMP_90294,,new_sbaplayer +1437,Jeff Mathis,3,,90294,NEW_TEMP_90294,,new_sbaplayer +3290,Jeff Mathis,4,,90294,NEW_TEMP_90294,,new_sbaplayer +4312,Jeff Mathis,5,,90294,NEW_TEMP_90294,,new_sbaplayer +2631,Jeff McNeil,1,,90295,NEW_TEMP_90295,,new_sbaplayer +432,Jeff McNeil,2,,90295,NEW_TEMP_90295,,new_sbaplayer +1438,Jeff McNeil,3,,90295,NEW_TEMP_90295,,new_sbaplayer +3291,Jeff McNeil,4,,90295,NEW_TEMP_90295,,new_sbaplayer +4321,Jeff McNeil,5,,90295,NEW_TEMP_90295,,new_sbaplayer +2632,Jeffrey Springs,1,,90296,NEW_TEMP_90296,,new_sbaplayer +434,Jeffrey Springs,2,,90296,NEW_TEMP_90296,,new_sbaplayer +1440,Jeffrey Springs,3,,90296,NEW_TEMP_90296,,new_sbaplayer +3815,Jeffrey Springs,4,,90296,NEW_TEMP_90296,,new_sbaplayer +4945,Jeffrey Springs,5,,90296,NEW_TEMP_90296,,new_sbaplayer +2634,Jefry Rodriguez,1,,90297,NEW_TEMP_90297,,new_sbaplayer +435,Jefry Rodriguez,2,,90297,NEW_TEMP_90297,,new_sbaplayer +1441,Jefry Rodriguez,3,,90297,NEW_TEMP_90297,,new_sbaplayer +2635,Jeimer Candelario,1,,90298,NEW_TEMP_90298,,new_sbaplayer +436,Jeimer Candelario,2,,90298,NEW_TEMP_90298,,new_sbaplayer +1442,Jeimer Candelario,3,,90298,NEW_TEMP_90298,,new_sbaplayer +3292,Jeimer Candelario,4,,90298,NEW_TEMP_90298,,new_sbaplayer +4226,Jeimer Candelario,5,,90298,NEW_TEMP_90298,,new_sbaplayer +2636,Jeremy Hellickson,1,,90299,NEW_TEMP_90299,,new_sbaplayer +438,Jeremy Hellickson,2,,90299,NEW_TEMP_90299,,new_sbaplayer +1444,Jeremy Hellickson,3,,90299,NEW_TEMP_90299,,new_sbaplayer +2637,Jeremy Jeffress,1,,90300,NEW_TEMP_90300,,new_sbaplayer +439,Jeremy Jeffress,2,,90300,NEW_TEMP_90300,,new_sbaplayer +1445,Jeremy Jeffress,3,,90300,NEW_TEMP_90300,,new_sbaplayer +3816,Jeremy Jeffress,4,,90300,NEW_TEMP_90300,,new_sbaplayer +4240,Jeremy Jeffress,5,,90300,NEW_TEMP_90300,,new_sbaplayer +2638,Jerry Blevins,1,,90301,NEW_TEMP_90301,,new_sbaplayer +440,Jerry Blevins,2,,90301,NEW_TEMP_90301,,new_sbaplayer +1446,Jerry Blevins,3,,90301,NEW_TEMP_90301,,new_sbaplayer +2639,Jesse Biddle,1,,90302,NEW_TEMP_90302,,new_sbaplayer +441,Jesse Biddle,2,,90302,NEW_TEMP_90302,,new_sbaplayer +1447,Jesse Biddle,3,,90302,NEW_TEMP_90302,,new_sbaplayer +2640,Jesse Chavez,1,,90303,NEW_TEMP_90303,,new_sbaplayer +442,Jesse Chavez,2,,90303,NEW_TEMP_90303,,new_sbaplayer +1448,Jesse Chavez,3,,90303,NEW_TEMP_90303,,new_sbaplayer +3817,Jesse Chavez,4,,90303,NEW_TEMP_90303,,new_sbaplayer +4946,Jesse Chavez,5,,90303,NEW_TEMP_90303,,new_sbaplayer +2641,Jesse Winker,1,,90304,NEW_TEMP_90304,,new_sbaplayer +443,Jesse Winker,2,,90304,NEW_TEMP_90304,,new_sbaplayer +1449,Jesse Winker,3,,90304,NEW_TEMP_90304,,new_sbaplayer +3293,Jesse Winker,4,,90304,NEW_TEMP_90304,,new_sbaplayer +4325,Jesse Winker,5,,90304,NEW_TEMP_90304,,new_sbaplayer +2642,Jesus Aguilar,1,,90305,NEW_TEMP_90305,,new_sbaplayer +444,Jesus Aguilar,2,,90305,NEW_TEMP_90305,,new_sbaplayer +1450,Jesus Aguilar,3,,90305,NEW_TEMP_90305,,new_sbaplayer +3294,Jesus Aguilar,4,,90305,NEW_TEMP_90305,,new_sbaplayer +4595,Jesus Aguilar,5,,90305,NEW_TEMP_90305,,new_sbaplayer +2643,Jesus Sucre,1,,90306,NEW_TEMP_90306,,new_sbaplayer +446,Jesus Sucre,2,,90306,NEW_TEMP_90306,,new_sbaplayer +1452,Jesus Sucre,3,,90306,NEW_TEMP_90306,,new_sbaplayer +2644,Jeurys Familia,1,,90307,NEW_TEMP_90307,,new_sbaplayer +448,Jeurys Familia,2,,90307,NEW_TEMP_90307,,new_sbaplayer +1454,Jeurys Familia,3,,90307,NEW_TEMP_90307,,new_sbaplayer +3821,Jeurys Familia,4,,90307,NEW_TEMP_90307,,new_sbaplayer +4596,Jeurys Familia,5,,90307,NEW_TEMP_90307,,new_sbaplayer +2645,Jhoulys Chacin,1,,90308,NEW_TEMP_90308,,new_sbaplayer +449,Jhoulys Chacin,2,,90308,NEW_TEMP_90308,,new_sbaplayer +1455,Jhoulys Chacin,3,,90308,NEW_TEMP_90308,,new_sbaplayer +2646,Ji Man Choi,1,,90309,NEW_TEMP_90309,,new_sbaplayer +450,Ji Man Choi,2,,90309,NEW_TEMP_90309,,new_sbaplayer +1456,Ji Man Choi,3,,90309,NEW_TEMP_90309,,new_sbaplayer +3296,Ji Man Choi,4,,90309,NEW_TEMP_90309,,new_sbaplayer +4623,Ji Man Choi,5,,90309,NEW_TEMP_90309,,new_sbaplayer +2649,Jimmy Yacabonis,1,,90310,NEW_TEMP_90310,,new_sbaplayer +452,Jimmy Yacabonis,2,,90310,NEW_TEMP_90310,,new_sbaplayer +1458,Jimmy Yacabonis,3,,90310,NEW_TEMP_90310,,new_sbaplayer +2650,Joc Pederson,1,,90311,NEW_TEMP_90311,,new_sbaplayer +454,Joc Pederson,2,,90311,NEW_TEMP_90311,,new_sbaplayer +1460,Joc Pederson,3,,90311,NEW_TEMP_90311,,new_sbaplayer +3298,Joc Pederson,4,,90311,NEW_TEMP_90311,,new_sbaplayer +4950,Joc Pederson,5,,90311,NEW_TEMP_90311,,new_sbaplayer +2651,Joe Biagini,1,,90312,NEW_TEMP_90312,,new_sbaplayer +455,Joe Biagini,2,,90312,NEW_TEMP_90312,,new_sbaplayer +1461,Joe Biagini,3,,90312,NEW_TEMP_90312,,new_sbaplayer +2652,Joe Jimenez,1,,90313,NEW_TEMP_90313,,new_sbaplayer +456,Joe Jimenez,2,,90313,NEW_TEMP_90313,,new_sbaplayer +1462,Joe Jimenez,3,,90313,NEW_TEMP_90313,,new_sbaplayer +3825,Joe Jimenez,4,,90313,NEW_TEMP_90313,,new_sbaplayer +4952,Joe Jimenez,5,,90313,NEW_TEMP_90313,,new_sbaplayer +2653,Joe Kelly,1,,90314,NEW_TEMP_90314,,new_sbaplayer +457,Joe Kelly,2,,90314,NEW_TEMP_90314,,new_sbaplayer +1463,Joe Kelly,3,,90314,NEW_TEMP_90314,,new_sbaplayer +3826,Joe Kelly,4,,90314,NEW_TEMP_90314,,new_sbaplayer +4577,Joe Kelly,5,,90314,NEW_TEMP_90314,,new_sbaplayer +2655,Joe Musgrove,1,,90315,NEW_TEMP_90315,,new_sbaplayer +458,Joe Musgrove,2,,90315,NEW_TEMP_90315,,new_sbaplayer +1464,Joe Musgrove,3,,90315,NEW_TEMP_90315,,new_sbaplayer +3827,Joe Musgrove,4,,90315,NEW_TEMP_90315,,new_sbaplayer +4533,Joe Musgrove,5,,90315,NEW_TEMP_90315,,new_sbaplayer +2656,Joe Panik,1,,90316,NEW_TEMP_90316,,new_sbaplayer +459,Joe Panik,2,,90316,NEW_TEMP_90316,,new_sbaplayer +1465,Joe Panik,3,,90316,NEW_TEMP_90316,,new_sbaplayer +3300,Joe Panik,4,,90316,NEW_TEMP_90316,,new_sbaplayer +4953,Joe Panik,5,,90316,NEW_TEMP_90316,,new_sbaplayer +2657,Joe Smith,1,,90317,NEW_TEMP_90317,,new_sbaplayer +461,Joe Smith,2,,90317,NEW_TEMP_90317,,new_sbaplayer +1467,Joe Smith,3,,90317,NEW_TEMP_90317,,new_sbaplayer +2658,Joey Gallo,1,,90318,NEW_TEMP_90318,,new_sbaplayer +462,Joey Gallo,2,,90318,NEW_TEMP_90318,,new_sbaplayer +1468,Joey Gallo,3,,90318,NEW_TEMP_90318,,new_sbaplayer +3302,Joey Gallo,4,,90318,NEW_TEMP_90318,,new_sbaplayer +4392,Joey Gallo,5,,90318,NEW_TEMP_90318,,new_sbaplayer +2659,Joey Lucchesi,1,,90319,NEW_TEMP_90319,,new_sbaplayer +463,Joey Lucchesi,2,,90319,NEW_TEMP_90319,,new_sbaplayer +1469,Joey Lucchesi,3,,90319,NEW_TEMP_90319,,new_sbaplayer +2660,Joey Rickard,1,,90320,NEW_TEMP_90320,,new_sbaplayer +464,Joey Rickard,2,,90320,NEW_TEMP_90320,,new_sbaplayer +1470,Joey Rickard,3,,90320,NEW_TEMP_90320,,new_sbaplayer +2661,Joey Votto,1,,90321,NEW_TEMP_90321,,new_sbaplayer +465,Joey Votto,2,,90321,NEW_TEMP_90321,,new_sbaplayer +1471,Joey Votto,3,,90321,NEW_TEMP_90321,,new_sbaplayer +3303,Joey Votto,4,,90321,NEW_TEMP_90321,,new_sbaplayer +4770,Joey Votto,5,,90321,NEW_TEMP_90321,,new_sbaplayer +2662,Joey Wendle,1,,90322,NEW_TEMP_90322,,new_sbaplayer +466,Joey Wendle,2,,90322,NEW_TEMP_90322,,new_sbaplayer +1472,Joey Wendle,3,,90322,NEW_TEMP_90322,,new_sbaplayer +3304,Joey Wendle,4,,90322,NEW_TEMP_90322,,new_sbaplayer +4297,Joey Wendle,5,,90322,NEW_TEMP_90322,,new_sbaplayer +2663,Johan Camargo,1,,90323,NEW_TEMP_90323,,new_sbaplayer +467,Johan Camargo,2,,90323,NEW_TEMP_90323,,new_sbaplayer +1473,Johan Camargo,3,,90323,NEW_TEMP_90323,,new_sbaplayer +3305,Johan Camargo,4,,90323,NEW_TEMP_90323,,new_sbaplayer +4646,Johan Camargo,5,,90323,NEW_TEMP_90323,,new_sbaplayer +2664,John Brebbia,1,,90324,NEW_TEMP_90324,,new_sbaplayer +468,John Brebbia,2,,90324,NEW_TEMP_90324,,new_sbaplayer +1474,John Brebbia,3,,90324,NEW_TEMP_90324,,new_sbaplayer +2665,John Gant,1,,90325,NEW_TEMP_90325,,new_sbaplayer +469,John Gant,2,,90325,NEW_TEMP_90325,,new_sbaplayer +1475,John Gant,3,,90325,NEW_TEMP_90325,,new_sbaplayer +3832,John Gant,4,,90325,NEW_TEMP_90325,,new_sbaplayer +4652,John Gant,5,,90325,NEW_TEMP_90325,,new_sbaplayer +2666,John Hicks,1,,90326,NEW_TEMP_90326,,new_sbaplayer +470,John Hicks,2,,90326,NEW_TEMP_90326,,new_sbaplayer +1476,John Hicks,3,,90326,NEW_TEMP_90326,,new_sbaplayer +2667,John Ryan Murphy,1,,90327,NEW_TEMP_90327,,new_sbaplayer +472,John Ryan Murphy,2,,90327,NEW_TEMP_90327,,new_sbaplayer +1478,John Ryan Murphy,3,,90327,NEW_TEMP_90327,,new_sbaplayer +3306,John Ryan Murphy,4,,90327,NEW_TEMP_90327,,new_sbaplayer +4957,John Ryan Murphy,5,,90327,NEW_TEMP_90327,,new_sbaplayer +2669,Jon Gray,1,,90328,NEW_TEMP_90328,,new_sbaplayer +475,Jon Gray,2,,90328,NEW_TEMP_90328,,new_sbaplayer +1481,Jon Gray,3,,90328,NEW_TEMP_90328,,new_sbaplayer +3838,Jon Gray,4,,90328,NEW_TEMP_90328,,new_sbaplayer +4960,Jon Gray,5,,90328,NEW_TEMP_90328,,new_sbaplayer +2670,Jon Jay,1,,90329,NEW_TEMP_90329,,new_sbaplayer +476,Jon Jay,2,,90329,NEW_TEMP_90329,,new_sbaplayer +1482,Jon Jay,3,,90329,NEW_TEMP_90329,,new_sbaplayer +3308,Jon Jay,4,,90329,NEW_TEMP_90329,,new_sbaplayer +4961,Jon Jay,5,,90329,NEW_TEMP_90329,,new_sbaplayer +2671,Jon Lester,1,,90330,NEW_TEMP_90330,,new_sbaplayer +477,Jon Lester,2,,90330,NEW_TEMP_90330,,new_sbaplayer +1483,Jon Lester,3,,90330,NEW_TEMP_90330,,new_sbaplayer +3839,Jon Lester,4,,90330,NEW_TEMP_90330,,new_sbaplayer +4962,Jon Lester,5,,90330,NEW_TEMP_90330,,new_sbaplayer +2672,Jonathan Holder,1,,90331,NEW_TEMP_90331,,new_sbaplayer +479,Jonathan Holder,2,,90331,NEW_TEMP_90331,,new_sbaplayer +1485,Jonathan Holder,3,,90331,NEW_TEMP_90331,,new_sbaplayer +3841,Jonathan Holder,4,,90331,NEW_TEMP_90331,,new_sbaplayer +4724,Jonathan Holder,5,,90331,NEW_TEMP_90331,,new_sbaplayer +2673,Jonathan Lucroy,1,,90332,NEW_TEMP_90332,,new_sbaplayer +481,Jonathan Lucroy,2,,90332,NEW_TEMP_90332,,new_sbaplayer +1487,Jonathan Lucroy,3,,90332,NEW_TEMP_90332,,new_sbaplayer +2674,Jonathan Schoop,1,,90333,NEW_TEMP_90333,,new_sbaplayer +482,Jonathan Schoop,2,,90333,NEW_TEMP_90333,,new_sbaplayer +1488,Jonathan Schoop,3,,90333,NEW_TEMP_90333,,new_sbaplayer +3312,Jonathan Schoop,4,,90333,NEW_TEMP_90333,,new_sbaplayer +4348,Jonathan Schoop,5,,90333,NEW_TEMP_90333,,new_sbaplayer +2675,Jonathan Villar,1,,90334,NEW_TEMP_90334,,new_sbaplayer +483,Jonathan Villar,2,,90334,NEW_TEMP_90334,,new_sbaplayer +1489,Jonathan Villar,3,,90334,NEW_TEMP_90334,,new_sbaplayer +3313,Jonathan Villar,4,,90334,NEW_TEMP_90334,,new_sbaplayer +4964,Jonathan Villar,5,,90334,NEW_TEMP_90334,,new_sbaplayer +2676,Jordan Hicks,1,,90335,NEW_TEMP_90335,,new_sbaplayer +484,Jordan Hicks,2,,90335,NEW_TEMP_90335,,new_sbaplayer +1490,Jordan Hicks,3,,90335,NEW_TEMP_90335,,new_sbaplayer +2677,Jordan Zimmermann,1,,90336,NEW_TEMP_90336,,new_sbaplayer +488,Jordan Zimmermann,2,,90336,NEW_TEMP_90336,,new_sbaplayer +1494,Jordan Zimmermann,3,,90336,NEW_TEMP_90336,,new_sbaplayer +2678,Jordy Mercer,1,,90337,NEW_TEMP_90337,,new_sbaplayer +489,Jordy Mercer,2,,90337,NEW_TEMP_90337,,new_sbaplayer +1495,Jordy Mercer,3,,90337,NEW_TEMP_90337,,new_sbaplayer +3315,Jordy Mercer,4,,90337,NEW_TEMP_90337,,new_sbaplayer +4968,Jordy Mercer,5,,90337,NEW_TEMP_90337,,new_sbaplayer +2679,Jorge Alfaro,1,,90338,NEW_TEMP_90338,,new_sbaplayer +490,Jorge Alfaro,2,,90338,NEW_TEMP_90338,,new_sbaplayer +1496,Jorge Alfaro,3,,90338,NEW_TEMP_90338,,new_sbaplayer +3316,Jorge Alfaro,4,,90338,NEW_TEMP_90338,,new_sbaplayer +4969,Jorge Alfaro,5,,90338,NEW_TEMP_90338,,new_sbaplayer +2680,Jorge Bonifacio,1,,90339,NEW_TEMP_90339,,new_sbaplayer +3317,Jorge Bonifacio,4,,90339,NEW_TEMP_90339,,new_sbaplayer +4970,Jorge Bonifacio,5,,90339,NEW_TEMP_90339,,new_sbaplayer +2681,Jorge Polanco,1,,90340,NEW_TEMP_90340,,new_sbaplayer +492,Jorge Polanco,2,,90340,NEW_TEMP_90340,,new_sbaplayer +1498,Jorge Polanco,3,,90340,NEW_TEMP_90340,,new_sbaplayer +3319,Jorge Polanco,4,,90340,NEW_TEMP_90340,,new_sbaplayer +4715,Jorge Polanco,5,,90340,NEW_TEMP_90340,,new_sbaplayer +2682,Jorge Soler,1,,90341,NEW_TEMP_90341,,new_sbaplayer +493,Jorge Soler,2,,90341,NEW_TEMP_90341,,new_sbaplayer +1499,Jorge Soler,3,,90341,NEW_TEMP_90341,,new_sbaplayer +3320,Jorge Soler,4,,90341,NEW_TEMP_90341,,new_sbaplayer +4687,Jorge Soler,5,,90341,NEW_TEMP_90341,,new_sbaplayer +2683,Jose Abreu,1,,90342,NEW_TEMP_90342,,new_sbaplayer +494,Jose Abreu,2,,90342,NEW_TEMP_90342,,new_sbaplayer +1500,Jose Abreu,3,,90342,NEW_TEMP_90342,,new_sbaplayer +3321,Jose Abreu,4,,90342,NEW_TEMP_90342,,new_sbaplayer +4155,Jose Abreu,5,,90342,NEW_TEMP_90342,,new_sbaplayer +2684,Jose Altuve,1,,90343,NEW_TEMP_90343,,new_sbaplayer +495,Jose Altuve,2,,90343,NEW_TEMP_90343,,new_sbaplayer +1501,Jose Altuve,3,,90343,NEW_TEMP_90343,,new_sbaplayer +3322,Jose Altuve,4,,90343,NEW_TEMP_90343,,new_sbaplayer +4973,Jose Altuve,5,,90343,NEW_TEMP_90343,,new_sbaplayer +2685,Jose Alvarado,1,,90344,NEW_TEMP_90344,,new_sbaplayer +496,Jose Alvarado,2,,90344,NEW_TEMP_90344,,new_sbaplayer +1502,Jose Alvarado,3,,90344,NEW_TEMP_90344,,new_sbaplayer +3850,Jose Alvarado,4,,90344,NEW_TEMP_90344,,new_sbaplayer +4974,Jose Alvarado,5,,90344,NEW_TEMP_90344,,new_sbaplayer +2686,Jose Alvarez,1,,90345,NEW_TEMP_90345,,new_sbaplayer +497,Jose Alvarez,2,,90345,NEW_TEMP_90345,,new_sbaplayer +1503,Jose Alvarez,3,,90345,NEW_TEMP_90345,,new_sbaplayer +3851,Jose Alvarez,4,,90345,NEW_TEMP_90345,,new_sbaplayer +4266,Jose Alvarez,5,,90345,NEW_TEMP_90345,,new_sbaplayer +2688,Jose Berrios,1,,90346,NEW_TEMP_90346,,new_sbaplayer +498,Jose Berrios,2,,90346,NEW_TEMP_90346,,new_sbaplayer +1504,Jose Berrios,3,,90346,NEW_TEMP_90346,,new_sbaplayer +3852,Jose Berrios,4,,90346,NEW_TEMP_90346,,new_sbaplayer +4569,Jose Berrios,5,,90346,NEW_TEMP_90346,,new_sbaplayer +2691,Jose Iglesias,1,,90347,NEW_TEMP_90347,,new_sbaplayer +500,Jose Iglesias,2,,90347,NEW_TEMP_90347,,new_sbaplayer +1506,Jose Iglesias,3,,90347,NEW_TEMP_90347,,new_sbaplayer +3324,Jose Iglesias,4,,90347,NEW_TEMP_90347,,new_sbaplayer +4244,Jose Iglesias,5,,90347,NEW_TEMP_90347,,new_sbaplayer +2692,Jose Leclerc,1,,90348,NEW_TEMP_90348,,new_sbaplayer +501,Jose Leclerc,2,,90348,NEW_TEMP_90348,,new_sbaplayer +1507,Jose Leclerc,3,,90348,NEW_TEMP_90348,,new_sbaplayer +2693,Jose Martinez,1,,90349,NEW_TEMP_90349,,new_sbaplayer +502,Jose Martinez,2,,90349,NEW_TEMP_90349,,new_sbaplayer +1508,Jose Martinez,3,,90349,NEW_TEMP_90349,,new_sbaplayer +3326,Jose Martinez,4,,90349,NEW_TEMP_90349,,new_sbaplayer +4977,Jose Martinez,5,,90349,NEW_TEMP_90349,,new_sbaplayer +2694,Jose Osuna,1,,90350,NEW_TEMP_90350,,new_sbaplayer +503,Jose Osuna,2,,90350,NEW_TEMP_90350,,new_sbaplayer +1509,Jose Osuna,3,,90350,NEW_TEMP_90350,,new_sbaplayer +3327,Jose Osuna,4,,90350,NEW_TEMP_90350,,new_sbaplayer +4978,Jose Osuna,5,,90350,NEW_TEMP_90350,,new_sbaplayer +2695,Jose Peraza,1,,90351,NEW_TEMP_90351,,new_sbaplayer +504,Jose Peraza,2,,90351,NEW_TEMP_90351,,new_sbaplayer +1510,Jose Peraza,3,,90351,NEW_TEMP_90351,,new_sbaplayer +3328,Jose Peraza,4,,90351,NEW_TEMP_90351,,new_sbaplayer +4979,Jose Peraza,5,,90351,NEW_TEMP_90351,,new_sbaplayer +2697,Jose Quintana,1,,90352,NEW_TEMP_90352,,new_sbaplayer +506,Jose Quintana,2,,90352,NEW_TEMP_90352,,new_sbaplayer +1512,Jose Quintana,3,,90352,NEW_TEMP_90352,,new_sbaplayer +3854,Jose Quintana,4,,90352,NEW_TEMP_90352,,new_sbaplayer +4980,Jose Quintana,5,,90352,NEW_TEMP_90352,,new_sbaplayer +2698,Jose Ramirez,1,,90353,NEW_TEMP_90353,,new_sbaplayer +507,Jose Ramirez,2,,90353,NEW_TEMP_90353,,new_sbaplayer +1513,Jose Ramirez,3,,90353,NEW_TEMP_90353,,new_sbaplayer +3329,Jose Ramirez,4,,90353,NEW_TEMP_90353,,new_sbaplayer +4217,Jose Ramirez,5,,90353,NEW_TEMP_90353,,new_sbaplayer +2700,Jose Urena,1,,90354,NEW_TEMP_90354,,new_sbaplayer +512,Jose Urena,2,,90354,NEW_TEMP_90354,,new_sbaplayer +1518,Jose Urena,3,,90354,NEW_TEMP_90354,,new_sbaplayer +3855,Jose Urena,4,,90354,NEW_TEMP_90354,,new_sbaplayer +4655,Jose Urena,5,,90354,NEW_TEMP_90354,,new_sbaplayer +2701,Josh Bell,1,,90355,NEW_TEMP_90355,,new_sbaplayer +514,Josh Bell,2,,90355,NEW_TEMP_90355,,new_sbaplayer +1520,Josh Bell,3,,90355,NEW_TEMP_90355,,new_sbaplayer +3332,Josh Bell,4,,90355,NEW_TEMP_90355,,new_sbaplayer +4982,Josh Bell,5,,90355,NEW_TEMP_90355,,new_sbaplayer +2703,Josh Hader,1,,90356,NEW_TEMP_90356,,new_sbaplayer +516,Josh Hader,2,,90356,NEW_TEMP_90356,,new_sbaplayer +1522,Josh Hader,3,,90356,NEW_TEMP_90356,,new_sbaplayer +3858,Josh Hader,4,,90356,NEW_TEMP_90356,,new_sbaplayer +4565,Josh Hader,5,,90356,NEW_TEMP_90356,,new_sbaplayer +2704,Josh Harrison,1,,90357,NEW_TEMP_90357,,new_sbaplayer +517,Josh Harrison,2,,90357,NEW_TEMP_90357,,new_sbaplayer +1523,Josh Harrison,3,,90357,NEW_TEMP_90357,,new_sbaplayer +3335,Josh Harrison,4,,90357,NEW_TEMP_90357,,new_sbaplayer +4508,Josh Harrison,5,,90357,NEW_TEMP_90357,,new_sbaplayer +2705,Josh Phegley,1,,90358,NEW_TEMP_90358,,new_sbaplayer +521,Josh Phegley,2,,90358,NEW_TEMP_90358,,new_sbaplayer +1527,Josh Phegley,3,,90358,NEW_TEMP_90358,,new_sbaplayer +3337,Josh Phegley,4,,90358,NEW_TEMP_90358,,new_sbaplayer +4986,Josh Phegley,5,,90358,NEW_TEMP_90358,,new_sbaplayer +2706,Josh Reddick,1,,90359,NEW_TEMP_90359,,new_sbaplayer +522,Josh Reddick,2,,90359,NEW_TEMP_90359,,new_sbaplayer +1528,Josh Reddick,3,,90359,NEW_TEMP_90359,,new_sbaplayer +3338,Josh Reddick,4,,90359,NEW_TEMP_90359,,new_sbaplayer +4987,Josh Reddick,5,,90359,NEW_TEMP_90359,,new_sbaplayer +2707,Josh Tomlin,1,,90360,NEW_TEMP_90360,,new_sbaplayer +526,Josh Tomlin,2,,90360,NEW_TEMP_90360,,new_sbaplayer +1532,Josh Tomlin,3,,90360,NEW_TEMP_90360,,new_sbaplayer +3865,Josh Tomlin,4,,90360,NEW_TEMP_90360,,new_sbaplayer +4591,Josh Tomlin,5,,90360,NEW_TEMP_90360,,new_sbaplayer +2708,JT Riddle,1,,90361,NEW_TEMP_90361,,new_sbaplayer +528,JT Riddle,2,,90361,NEW_TEMP_90361,,new_sbaplayer +1534,JT Riddle,3,,90361,NEW_TEMP_90361,,new_sbaplayer +3343,JT Riddle,4,,90361,NEW_TEMP_90361,,new_sbaplayer +4992,JT Riddle,5,,90361,NEW_TEMP_90361,,new_sbaplayer +2709,Juan Minaya,1,,90362,NEW_TEMP_90362,,new_sbaplayer +530,Juan Minaya,2,,90362,NEW_TEMP_90362,,new_sbaplayer +1536,Juan Minaya,3,,90362,NEW_TEMP_90362,,new_sbaplayer +2710,Juan Nicasio,1,,90363,NEW_TEMP_90363,,new_sbaplayer +531,Juan Nicasio,2,,90363,NEW_TEMP_90363,,new_sbaplayer +1537,Juan Nicasio,3,,90363,NEW_TEMP_90363,,new_sbaplayer +2711,Juan Soto,1,,90364,NEW_TEMP_90364,,new_sbaplayer +532,Juan Soto,2,,90364,NEW_TEMP_90364,,new_sbaplayer +1538,Juan Soto,3,,90364,NEW_TEMP_90364,,new_sbaplayer +3344,Juan Soto,4,,90364,NEW_TEMP_90364,,new_sbaplayer +4160,Juan Soto,5,,90364,NEW_TEMP_90364,,new_sbaplayer +2712,Julio Teheran,1,,90365,NEW_TEMP_90365,,new_sbaplayer +533,Julio Teheran,2,,90365,NEW_TEMP_90365,,new_sbaplayer +1539,Julio Teheran,3,,90365,NEW_TEMP_90365,,new_sbaplayer +3869,Julio Teheran,4,,90365,NEW_TEMP_90365,,new_sbaplayer +4993,Julio Teheran,5,,90365,NEW_TEMP_90365,,new_sbaplayer +2713,Junior Guerra,1,,90366,NEW_TEMP_90366,,new_sbaplayer +536,Junior Guerra,2,,90366,NEW_TEMP_90366,,new_sbaplayer +1542,Junior Guerra,3,,90366,NEW_TEMP_90366,,new_sbaplayer +3871,Junior Guerra,4,,90366,NEW_TEMP_90366,,new_sbaplayer +4511,Junior Guerra,5,,90366,NEW_TEMP_90366,,new_sbaplayer +2714,Jurickson Profar,1,,90367,NEW_TEMP_90367,,new_sbaplayer +537,Jurickson Profar,2,,90367,NEW_TEMP_90367,,new_sbaplayer +1543,Jurickson Profar,3,,90367,NEW_TEMP_90367,,new_sbaplayer +3345,Jurickson Profar,4,,90367,NEW_TEMP_90367,,new_sbaplayer +4337,Jurickson Profar,5,,90367,NEW_TEMP_90367,,new_sbaplayer +2715,Justin Anderson,1,,90368,NEW_TEMP_90368,,new_sbaplayer +538,Justin Anderson,2,,90368,NEW_TEMP_90368,,new_sbaplayer +1544,Justin Anderson,3,,90368,NEW_TEMP_90368,,new_sbaplayer +2716,Justin Bour,1,,90369,NEW_TEMP_90369,,new_sbaplayer +539,Justin Bour,2,,90369,NEW_TEMP_90369,,new_sbaplayer +1545,Justin Bour,3,,90369,NEW_TEMP_90369,,new_sbaplayer +2718,Justin Smoak,1,,90370,NEW_TEMP_90370,,new_sbaplayer +541,Justin Smoak,2,,90370,NEW_TEMP_90370,,new_sbaplayer +1547,Justin Smoak,3,,90370,NEW_TEMP_90370,,new_sbaplayer +3346,Justin Smoak,4,,90370,NEW_TEMP_90370,,new_sbaplayer +4994,Justin Smoak,5,,90370,NEW_TEMP_90370,,new_sbaplayer +2719,Justin Turner,1,,90371,NEW_TEMP_90371,,new_sbaplayer +542,Justin Turner,2,,90371,NEW_TEMP_90371,,new_sbaplayer +1548,Justin Turner,3,,90371,NEW_TEMP_90371,,new_sbaplayer +3347,Justin Turner,4,,90371,NEW_TEMP_90371,,new_sbaplayer +4248,Justin Turner,5,,90371,NEW_TEMP_90371,,new_sbaplayer +2720,Justin Upton,1,,90372,NEW_TEMP_90372,,new_sbaplayer +543,Justin Upton,2,,90372,NEW_TEMP_90372,,new_sbaplayer +1549,Justin Upton,3,,90372,NEW_TEMP_90372,,new_sbaplayer +3348,Justin Upton,4,,90372,NEW_TEMP_90372,,new_sbaplayer +4995,Justin Upton,5,,90372,NEW_TEMP_90372,,new_sbaplayer +2721,Justin Verlander,1,,90373,NEW_TEMP_90373,,new_sbaplayer +544,Justin Verlander,2,,90373,NEW_TEMP_90373,,new_sbaplayer +1550,Justin Verlander,3,,90373,NEW_TEMP_90373,,new_sbaplayer +2722,Justin Wilson,1,,90374,NEW_TEMP_90374,,new_sbaplayer +545,Justin Wilson,2,,90374,NEW_TEMP_90374,,new_sbaplayer +1551,Justin Wilson,3,,90374,NEW_TEMP_90374,,new_sbaplayer +3874,Justin Wilson,4,,90374,NEW_TEMP_90374,,new_sbaplayer +4683,Justin Wilson,5,,90374,NEW_TEMP_90374,,new_sbaplayer +2725,Ken Giles,1,,90375,NEW_TEMP_90375,,new_sbaplayer +549,Ken Giles,2,,90375,NEW_TEMP_90375,,new_sbaplayer +1555,Ken Giles,3,,90375,NEW_TEMP_90375,,new_sbaplayer +2726,Kendrys Morales,1,,90376,NEW_TEMP_90376,,new_sbaplayer +550,Kendrys Morales,2,,90376,NEW_TEMP_90376,,new_sbaplayer +1556,Kendrys Morales,3,,90376,NEW_TEMP_90376,,new_sbaplayer +2727,Kenley Jansen,1,,90377,NEW_TEMP_90377,,new_sbaplayer +551,Kenley Jansen,2,,90377,NEW_TEMP_90377,,new_sbaplayer +1557,Kenley Jansen,3,,90377,NEW_TEMP_90377,,new_sbaplayer +3878,Kenley Jansen,4,,90377,NEW_TEMP_90377,,new_sbaplayer +4663,Kenley Jansen,5,,90377,NEW_TEMP_90377,,new_sbaplayer +2728,Kenta Maeda,1,,90378,NEW_TEMP_90378,,new_sbaplayer +552,Kenta Maeda,2,,90378,NEW_TEMP_90378,,new_sbaplayer +1558,Kenta Maeda,3,,90378,NEW_TEMP_90378,,new_sbaplayer +3879,Kenta Maeda,4,,90378,NEW_TEMP_90378,,new_sbaplayer +4326,Kenta Maeda,5,,90378,NEW_TEMP_90378,,new_sbaplayer +2729,Ketel Marte,1,,90379,NEW_TEMP_90379,,new_sbaplayer +556,Ketel Marte,2,,90379,NEW_TEMP_90379,,new_sbaplayer +1562,Ketel Marte,3,,90379,NEW_TEMP_90379,,new_sbaplayer +3351,Ketel Marte,4,,90379,NEW_TEMP_90379,,new_sbaplayer +4293,Ketel Marte,5,,90379,NEW_TEMP_90379,,new_sbaplayer +2730,Kevan Smith,1,,90380,NEW_TEMP_90380,,new_sbaplayer +557,Kevan Smith,2,,90380,NEW_TEMP_90380,,new_sbaplayer +1563,Kevan Smith,3,,90380,NEW_TEMP_90380,,new_sbaplayer +3352,Kevan Smith,4,,90380,NEW_TEMP_90380,,new_sbaplayer +4279,Kevan Smith,5,,90380,NEW_TEMP_90380,,new_sbaplayer +2731,Kevin Gausman,1,,90381,NEW_TEMP_90381,,new_sbaplayer +559,Kevin Gausman,2,,90381,NEW_TEMP_90381,,new_sbaplayer +1565,Kevin Gausman,3,,90381,NEW_TEMP_90381,,new_sbaplayer +3881,Kevin Gausman,4,,90381,NEW_TEMP_90381,,new_sbaplayer +4341,Kevin Gausman,5,,90381,NEW_TEMP_90381,,new_sbaplayer +2732,Kevin Kiermaier,1,,90382,NEW_TEMP_90382,,new_sbaplayer +560,Kevin Kiermaier,2,,90382,NEW_TEMP_90382,,new_sbaplayer +1566,Kevin Kiermaier,3,,90382,NEW_TEMP_90382,,new_sbaplayer +3354,Kevin Kiermaier,4,,90382,NEW_TEMP_90382,,new_sbaplayer +4185,Kevin Kiermaier,5,,90382,NEW_TEMP_90382,,new_sbaplayer +2733,Kevin McCarthy,1,,90383,NEW_TEMP_90383,,new_sbaplayer +561,Kevin McCarthy,2,,90383,NEW_TEMP_90383,,new_sbaplayer +1567,Kevin McCarthy,3,,90383,NEW_TEMP_90383,,new_sbaplayer +2734,Kevin Newman,1,,90384,NEW_TEMP_90384,,new_sbaplayer +562,Kevin Newman,2,,90384,NEW_TEMP_90384,,new_sbaplayer +1568,Kevin Newman,3,,90384,NEW_TEMP_90384,,new_sbaplayer +3355,Kevin Newman,4,,90384,NEW_TEMP_90384,,new_sbaplayer +5000,Kevin Newman,5,,90384,NEW_TEMP_90384,,new_sbaplayer +2735,Kevin Pillar,1,,90385,NEW_TEMP_90385,,new_sbaplayer +563,Kevin Pillar,2,,90385,NEW_TEMP_90385,,new_sbaplayer +1569,Kevin Pillar,3,,90385,NEW_TEMP_90385,,new_sbaplayer +3356,Kevin Pillar,4,,90385,NEW_TEMP_90385,,new_sbaplayer +4503,Kevin Pillar,5,,90385,NEW_TEMP_90385,,new_sbaplayer +2736,Kevin Plawecki,1,,90386,NEW_TEMP_90386,,new_sbaplayer +564,Kevin Plawecki,2,,90386,NEW_TEMP_90386,,new_sbaplayer +1570,Kevin Plawecki,3,,90386,NEW_TEMP_90386,,new_sbaplayer +3357,Kevin Plawecki,4,,90386,NEW_TEMP_90386,,new_sbaplayer +4351,Kevin Plawecki,5,,90386,NEW_TEMP_90386,,new_sbaplayer +2737,Khris Davis,1,,90387,NEW_TEMP_90387,,new_sbaplayer +565,Khris Davis,2,,90387,NEW_TEMP_90387,,new_sbaplayer +1571,Khris Davis,3,,90387,NEW_TEMP_90387,,new_sbaplayer +3358,Khris Davis,4,,90387,NEW_TEMP_90387,,new_sbaplayer +5002,Khris Davis,5,,90387,NEW_TEMP_90387,,new_sbaplayer +2738,Kirby Yates,1,,90388,NEW_TEMP_90388,,new_sbaplayer +566,Kirby Yates,2,,90388,NEW_TEMP_90388,,new_sbaplayer +1572,Kirby Yates,3,,90388,NEW_TEMP_90388,,new_sbaplayer +2740,Kole Calhoun,1,,90389,NEW_TEMP_90389,,new_sbaplayer +568,Kole Calhoun,2,,90389,NEW_TEMP_90389,,new_sbaplayer +1574,Kole Calhoun,3,,90389,NEW_TEMP_90389,,new_sbaplayer +3359,Kole Calhoun,4,,90389,NEW_TEMP_90389,,new_sbaplayer +4422,Kole Calhoun,5,,90389,NEW_TEMP_90389,,new_sbaplayer +2741,Kolten Wong,1,,90390,NEW_TEMP_90390,,new_sbaplayer +569,Kolten Wong,2,,90390,NEW_TEMP_90390,,new_sbaplayer +1575,Kolten Wong,3,,90390,NEW_TEMP_90390,,new_sbaplayer +3360,Kolten Wong,4,,90390,NEW_TEMP_90390,,new_sbaplayer +4383,Kolten Wong,5,,90390,NEW_TEMP_90390,,new_sbaplayer +2742,Kris Bryant,1,,90391,NEW_TEMP_90391,,new_sbaplayer +570,Kris Bryant,2,,90391,NEW_TEMP_90391,,new_sbaplayer +1576,Kris Bryant,3,,90391,NEW_TEMP_90391,,new_sbaplayer +3361,Kris Bryant,4,,90391,NEW_TEMP_90391,,new_sbaplayer +4626,Kris Bryant,5,,90391,NEW_TEMP_90391,,new_sbaplayer +2743,Kurt Suzuki,1,,90392,NEW_TEMP_90392,,new_sbaplayer +572,Kurt Suzuki,2,,90392,NEW_TEMP_90392,,new_sbaplayer +1578,Kurt Suzuki,3,,90392,NEW_TEMP_90392,,new_sbaplayer +3362,Kurt Suzuki,4,,90392,NEW_TEMP_90392,,new_sbaplayer +4648,Kurt Suzuki,5,,90392,NEW_TEMP_90392,,new_sbaplayer +2744,Kyle Barraclough,1,,90393,NEW_TEMP_90393,,new_sbaplayer +573,Kyle Barraclough,2,,90393,NEW_TEMP_90393,,new_sbaplayer +1579,Kyle Barraclough,3,,90393,NEW_TEMP_90393,,new_sbaplayer +2745,Kyle Crick,1,,90394,NEW_TEMP_90394,,new_sbaplayer +574,Kyle Crick,2,,90394,NEW_TEMP_90394,,new_sbaplayer +1580,Kyle Crick,3,,90394,NEW_TEMP_90394,,new_sbaplayer +3888,Kyle Crick,4,,90394,NEW_TEMP_90394,,new_sbaplayer +5004,Kyle Crick,5,,90394,NEW_TEMP_90394,,new_sbaplayer +2746,Kyle Freeland,1,,90395,NEW_TEMP_90395,,new_sbaplayer +576,Kyle Freeland,2,,90395,NEW_TEMP_90395,,new_sbaplayer +1582,Kyle Freeland,3,,90395,NEW_TEMP_90395,,new_sbaplayer +3890,Kyle Freeland,4,,90395,NEW_TEMP_90395,,new_sbaplayer +4200,Kyle Freeland,5,,90395,NEW_TEMP_90395,,new_sbaplayer +2747,Kyle Gibson,1,,90396,NEW_TEMP_90396,,new_sbaplayer +577,Kyle Gibson,2,,90396,NEW_TEMP_90396,,new_sbaplayer +1583,Kyle Gibson,3,,90396,NEW_TEMP_90396,,new_sbaplayer +3892,Kyle Gibson,4,,90396,NEW_TEMP_90396,,new_sbaplayer +5007,Kyle Gibson,5,,90396,NEW_TEMP_90396,,new_sbaplayer +2748,Kyle Hendricks,1,,90397,NEW_TEMP_90397,,new_sbaplayer +578,Kyle Hendricks,2,,90397,NEW_TEMP_90397,,new_sbaplayer +1584,Kyle Hendricks,3,,90397,NEW_TEMP_90397,,new_sbaplayer +3894,Kyle Hendricks,4,,90397,NEW_TEMP_90397,,new_sbaplayer +4308,Kyle Hendricks,5,,90397,NEW_TEMP_90397,,new_sbaplayer +2749,Kyle Schwarber,1,,90398,NEW_TEMP_90398,,new_sbaplayer +581,Kyle Schwarber,2,,90398,NEW_TEMP_90398,,new_sbaplayer +1587,Kyle Schwarber,3,,90398,NEW_TEMP_90398,,new_sbaplayer +3367,Kyle Schwarber,4,,90398,NEW_TEMP_90398,,new_sbaplayer +4771,Kyle Schwarber,5,,90398,NEW_TEMP_90398,,new_sbaplayer +2750,Kyle Seager,1,,90399,NEW_TEMP_90399,,new_sbaplayer +582,Kyle Seager,2,,90399,NEW_TEMP_90399,,new_sbaplayer +1588,Kyle Seager,3,,90399,NEW_TEMP_90399,,new_sbaplayer +3368,Kyle Seager,4,,90399,NEW_TEMP_90399,,new_sbaplayer +4556,Kyle Seager,5,,90399,NEW_TEMP_90399,,new_sbaplayer +2751,Lance Lynn,1,,90400,NEW_TEMP_90400,,new_sbaplayer +584,Lance Lynn,2,,90400,NEW_TEMP_90400,,new_sbaplayer +1590,Lance Lynn,3,,90400,NEW_TEMP_90400,,new_sbaplayer +3899,Lance Lynn,4,,90400,NEW_TEMP_90400,,new_sbaplayer +4268,Lance Lynn,5,,90400,NEW_TEMP_90400,,new_sbaplayer +2752,Lance McCullers Jr,1,,90401,NEW_TEMP_90401,,new_sbaplayer +3900,Lance McCullers Jr,4,,90401,NEW_TEMP_90401,,new_sbaplayer +4574,Lance McCullers Jr,5,,90401,NEW_TEMP_90401,,new_sbaplayer +2753,Leonys Martin,1,,90402,NEW_TEMP_90402,,new_sbaplayer +585,Leonys Martin,2,,90402,NEW_TEMP_90402,,new_sbaplayer +1591,Leonys Martin,3,,90402,NEW_TEMP_90402,,new_sbaplayer +2754,Leury Garcia,1,,90403,NEW_TEMP_90403,,new_sbaplayer +586,Leury Garcia,2,,90403,NEW_TEMP_90403,,new_sbaplayer +1592,Leury Garcia,3,,90403,NEW_TEMP_90403,,new_sbaplayer +3373,Leury Garcia,4,,90403,NEW_TEMP_90403,,new_sbaplayer +4177,Leury Garcia,5,,90403,NEW_TEMP_90403,,new_sbaplayer +2755,Lewis Brinson,1,,90404,NEW_TEMP_90404,,new_sbaplayer +587,Lewis Brinson,2,,90404,NEW_TEMP_90404,,new_sbaplayer +1593,Lewis Brinson,3,,90404,NEW_TEMP_90404,,new_sbaplayer +3375,Lewis Brinson,4,,90404,NEW_TEMP_90404,,new_sbaplayer +4744,Lewis Brinson,5,,90404,NEW_TEMP_90404,,new_sbaplayer +2756,Logan Forsythe,1,,90405,NEW_TEMP_90405,,new_sbaplayer +590,Logan Forsythe,2,,90405,NEW_TEMP_90405,,new_sbaplayer +1596,Logan Forsythe,3,,90405,NEW_TEMP_90405,,new_sbaplayer +3376,Logan Forsythe,4,,90405,NEW_TEMP_90405,,new_sbaplayer +5013,Logan Forsythe,5,,90405,NEW_TEMP_90405,,new_sbaplayer +2757,Logan Morrison,1,,90406,NEW_TEMP_90406,,new_sbaplayer +3377,Logan Morrison,4,,90406,NEW_TEMP_90406,,new_sbaplayer +5014,Logan Morrison,5,,90406,NEW_TEMP_90406,,new_sbaplayer +2758,Lorenzo Cain,1,,90407,NEW_TEMP_90407,,new_sbaplayer +592,Lorenzo Cain,2,,90407,NEW_TEMP_90407,,new_sbaplayer +1598,Lorenzo Cain,3,,90407,NEW_TEMP_90407,,new_sbaplayer +3378,Lorenzo Cain,4,,90407,NEW_TEMP_90407,,new_sbaplayer +4212,Lorenzo Cain,5,,90407,NEW_TEMP_90407,,new_sbaplayer +2759,Lou Trivino,1,,90408,NEW_TEMP_90408,,new_sbaplayer +593,Lou Trivino,2,,90408,NEW_TEMP_90408,,new_sbaplayer +1599,Lou Trivino,3,,90408,NEW_TEMP_90408,,new_sbaplayer +3906,Lou Trivino,4,,90408,NEW_TEMP_90408,,new_sbaplayer +4709,Lou Trivino,5,,90408,NEW_TEMP_90408,,new_sbaplayer +2761,Lourdes Gurriel Jr,1,,90409,NEW_TEMP_90409,,new_sbaplayer +594,Lourdes Gurriel Jr,2,,90409,NEW_TEMP_90409,,new_sbaplayer +1600,Lourdes Gurriel Jr,3,,90409,NEW_TEMP_90409,,new_sbaplayer +3379,Lourdes Gurriel Jr,4,,90409,NEW_TEMP_90409,,new_sbaplayer +4451,Lourdes Gurriel Jr,5,,90409,NEW_TEMP_90409,,new_sbaplayer +2762,Lucas Giolito,1,,90410,NEW_TEMP_90410,,new_sbaplayer +596,Lucas Giolito,2,,90410,NEW_TEMP_90410,,new_sbaplayer +1602,Lucas Giolito,3,,90410,NEW_TEMP_90410,,new_sbaplayer +3907,Lucas Giolito,4,,90410,NEW_TEMP_90410,,new_sbaplayer +4570,Lucas Giolito,5,,90410,NEW_TEMP_90410,,new_sbaplayer +2763,Luis Castillo,1,,90411,NEW_TEMP_90411,,new_sbaplayer +600,Luis Castillo,2,,90411,NEW_TEMP_90411,,new_sbaplayer +1606,Luis Castillo,3,,90411,NEW_TEMP_90411,,new_sbaplayer +3910,Luis Castillo,4,,90411,NEW_TEMP_90411,,new_sbaplayer +4504,Luis Castillo,5,,90411,NEW_TEMP_90411,,new_sbaplayer +2764,Luis Garcia,1,,90412,NEW_TEMP_90412,,new_sbaplayer +602,Luis Garcia,2,,90412,NEW_TEMP_90412,,new_sbaplayer +1608,Luis Garcia,3,,90412,NEW_TEMP_90412,,new_sbaplayer +3912,Luis Garcia,4,,90412,NEW_TEMP_90412,,new_sbaplayer +5017,Luis Garcia,5,,90412,NEW_TEMP_90412,,new_sbaplayer +2765,Luis Perdomo,1,,90413,NEW_TEMP_90413,,new_sbaplayer +604,Luis Perdomo,2,,90413,NEW_TEMP_90413,,new_sbaplayer +1610,Luis Perdomo,3,,90413,NEW_TEMP_90413,,new_sbaplayer +3915,Luis Perdomo,4,,90413,NEW_TEMP_90413,,new_sbaplayer +5019,Luis Perdomo,5,,90413,NEW_TEMP_90413,,new_sbaplayer +2766,Luis Severino,1,,90414,NEW_TEMP_90414,,new_sbaplayer +606,Luis Severino,2,,90414,NEW_TEMP_90414,,new_sbaplayer +1612,Luis Severino,3,,90414,NEW_TEMP_90414,,new_sbaplayer +2768,Luke Jackson,1,,90415,NEW_TEMP_90415,,new_sbaplayer +609,Luke Jackson,2,,90415,NEW_TEMP_90415,,new_sbaplayer +1615,Luke Jackson,3,,90415,NEW_TEMP_90415,,new_sbaplayer +3916,Luke Jackson,4,,90415,NEW_TEMP_90415,,new_sbaplayer +5022,Luke Jackson,5,,90415,NEW_TEMP_90415,,new_sbaplayer +2769,Luke Maile,1,,90416,NEW_TEMP_90416,,new_sbaplayer +610,Luke Maile,2,,90416,NEW_TEMP_90416,,new_sbaplayer +1616,Luke Maile,3,,90416,NEW_TEMP_90416,,new_sbaplayer +2770,Luke Voit,1,,90417,NEW_TEMP_90417,,new_sbaplayer +611,Luke Voit,2,,90417,NEW_TEMP_90417,,new_sbaplayer +1617,Luke Voit,3,,90417,NEW_TEMP_90417,,new_sbaplayer +3387,Luke Voit,4,,90417,NEW_TEMP_90417,,new_sbaplayer +4317,Luke Voit,5,,90417,NEW_TEMP_90417,,new_sbaplayer +2771,Luke Weaver,1,,90418,NEW_TEMP_90418,,new_sbaplayer +612,Luke Weaver,2,,90418,NEW_TEMP_90418,,new_sbaplayer +1618,Luke Weaver,3,,90418,NEW_TEMP_90418,,new_sbaplayer +3917,Luke Weaver,4,,90418,NEW_TEMP_90418,,new_sbaplayer +5023,Luke Weaver,5,,90418,NEW_TEMP_90418,,new_sbaplayer +2772,Madison Bumgarner,1,,90419,NEW_TEMP_90419,,new_sbaplayer +614,Madison Bumgarner,2,,90419,NEW_TEMP_90419,,new_sbaplayer +1620,Madison Bumgarner,3,,90419,NEW_TEMP_90419,,new_sbaplayer +3918,Madison Bumgarner,4,,90419,NEW_TEMP_90419,,new_sbaplayer +5024,Madison Bumgarner,5,,90419,NEW_TEMP_90419,,new_sbaplayer +2773,Magneuris Sierra,1,,90420,NEW_TEMP_90420,,new_sbaplayer +3388,Magneuris Sierra,4,,90420,NEW_TEMP_90420,,new_sbaplayer +4301,Magneuris Sierra,5,,90420,NEW_TEMP_90420,,new_sbaplayer +2774,Maikel Franco,1,,90421,NEW_TEMP_90421,,new_sbaplayer +615,Maikel Franco,2,,90421,NEW_TEMP_90421,,new_sbaplayer +1621,Maikel Franco,3,,90421,NEW_TEMP_90421,,new_sbaplayer +3389,Maikel Franco,4,,90421,NEW_TEMP_90421,,new_sbaplayer +4501,Maikel Franco,5,,90421,NEW_TEMP_90421,,new_sbaplayer +2775,Mallex Smith,1,,90422,NEW_TEMP_90422,,new_sbaplayer +616,Mallex Smith,2,,90422,NEW_TEMP_90422,,new_sbaplayer +1622,Mallex Smith,3,,90422,NEW_TEMP_90422,,new_sbaplayer +3390,Mallex Smith,4,,90422,NEW_TEMP_90422,,new_sbaplayer +5025,Mallex Smith,5,,90422,NEW_TEMP_90422,,new_sbaplayer +2776,Manny Machado,1,,90423,NEW_TEMP_90423,,new_sbaplayer +618,Manny Machado,2,,90423,NEW_TEMP_90423,,new_sbaplayer +1624,Manny Machado,3,,90423,NEW_TEMP_90423,,new_sbaplayer +3391,Manny Machado,4,,90423,NEW_TEMP_90423,,new_sbaplayer +4149,Manny Machado,5,,90423,NEW_TEMP_90423,,new_sbaplayer +2777,Manny Pina,1,,90424,NEW_TEMP_90424,,new_sbaplayer +619,Manny Pina,2,,90424,NEW_TEMP_90424,,new_sbaplayer +1625,Manny Pina,3,,90424,NEW_TEMP_90424,,new_sbaplayer +3392,Manny Pina,4,,90424,NEW_TEMP_90424,,new_sbaplayer +4178,Manny Pina,5,,90424,NEW_TEMP_90424,,new_sbaplayer +2778,Manuel Margot,1,,90425,NEW_TEMP_90425,,new_sbaplayer +620,Manuel Margot,2,,90425,NEW_TEMP_90425,,new_sbaplayer +1626,Manuel Margot,3,,90425,NEW_TEMP_90425,,new_sbaplayer +3393,Manuel Margot,4,,90425,NEW_TEMP_90425,,new_sbaplayer +4380,Manuel Margot,5,,90425,NEW_TEMP_90425,,new_sbaplayer +2779,Marcell Ozuna,1,,90426,NEW_TEMP_90426,,new_sbaplayer +621,Marcell Ozuna,2,,90426,NEW_TEMP_90426,,new_sbaplayer +1627,Marcell Ozuna,3,,90426,NEW_TEMP_90426,,new_sbaplayer +3394,Marcell Ozuna,4,,90426,NEW_TEMP_90426,,new_sbaplayer +4203,Marcell Ozuna,5,,90426,NEW_TEMP_90426,,new_sbaplayer +2781,Marco Gonzales,1,,90427,NEW_TEMP_90427,,new_sbaplayer +622,Marco Gonzales,2,,90427,NEW_TEMP_90427,,new_sbaplayer +1628,Marco Gonzales,3,,90427,NEW_TEMP_90427,,new_sbaplayer +3919,Marco Gonzales,4,,90427,NEW_TEMP_90427,,new_sbaplayer +4346,Marco Gonzales,5,,90427,NEW_TEMP_90427,,new_sbaplayer +2782,Marcus Semien,1,,90428,NEW_TEMP_90428,,new_sbaplayer +624,Marcus Semien,2,,90428,NEW_TEMP_90428,,new_sbaplayer +1630,Marcus Semien,3,,90428,NEW_TEMP_90428,,new_sbaplayer +3395,Marcus Semien,4,,90428,NEW_TEMP_90428,,new_sbaplayer +4658,Marcus Semien,5,,90428,NEW_TEMP_90428,,new_sbaplayer +2783,Marcus Stroman,1,,90429,NEW_TEMP_90429,,new_sbaplayer +625,Marcus Stroman,2,,90429,NEW_TEMP_90429,,new_sbaplayer +1631,Marcus Stroman,3,,90429,NEW_TEMP_90429,,new_sbaplayer +2784,Mark Canha,1,,90430,NEW_TEMP_90430,,new_sbaplayer +627,Mark Canha,2,,90430,NEW_TEMP_90430,,new_sbaplayer +1633,Mark Canha,3,,90430,NEW_TEMP_90430,,new_sbaplayer +3396,Mark Canha,4,,90430,NEW_TEMP_90430,,new_sbaplayer +4361,Mark Canha,5,,90430,NEW_TEMP_90430,,new_sbaplayer +2785,Mark Melancon,1,,90431,NEW_TEMP_90431,,new_sbaplayer +628,Mark Melancon,2,,90431,NEW_TEMP_90431,,new_sbaplayer +1634,Mark Melancon,3,,90431,NEW_TEMP_90431,,new_sbaplayer +3921,Mark Melancon,4,,90431,NEW_TEMP_90431,,new_sbaplayer +4298,Mark Melancon,5,,90431,NEW_TEMP_90431,,new_sbaplayer +2786,Mark Reynolds,1,,90432,NEW_TEMP_90432,,new_sbaplayer +629,Mark Reynolds,2,,90432,NEW_TEMP_90432,,new_sbaplayer +1635,Mark Reynolds,3,,90432,NEW_TEMP_90432,,new_sbaplayer +2788,Martin Maldonado,1,,90433,NEW_TEMP_90433,,new_sbaplayer +630,Martin Maldonado,2,,90433,NEW_TEMP_90433,,new_sbaplayer +1636,Martin Maldonado,3,,90433,NEW_TEMP_90433,,new_sbaplayer +3399,Martin Maldonado,4,,90433,NEW_TEMP_90433,,new_sbaplayer +4443,Martin Maldonado,5,,90433,NEW_TEMP_90433,,new_sbaplayer +2789,Martin Perez,1,,90434,NEW_TEMP_90434,,new_sbaplayer +631,Martin Perez,2,,90434,NEW_TEMP_90434,,new_sbaplayer +1637,Martin Perez,3,,90434,NEW_TEMP_90434,,new_sbaplayer +3922,Martin Perez,4,,90434,NEW_TEMP_90434,,new_sbaplayer +4436,Martin Perez,5,,90434,NEW_TEMP_90434,,new_sbaplayer +2790,Martin Prado,1,,90435,NEW_TEMP_90435,,new_sbaplayer +632,Martin Prado,2,,90435,NEW_TEMP_90435,,new_sbaplayer +1638,Martin Prado,3,,90435,NEW_TEMP_90435,,new_sbaplayer +2791,Marwin Gonzalez,1,,90436,NEW_TEMP_90436,,new_sbaplayer +633,Marwin Gonzalez,2,,90436,NEW_TEMP_90436,,new_sbaplayer +1639,Marwin Gonzalez,3,,90436,NEW_TEMP_90436,,new_sbaplayer +3400,Marwin Gonzalez,4,,90436,NEW_TEMP_90436,,new_sbaplayer +4736,Marwin Gonzalez,5,,90436,NEW_TEMP_90436,,new_sbaplayer +2792,Masahiro Tanaka,1,,90437,NEW_TEMP_90437,,new_sbaplayer +634,Masahiro Tanaka,2,,90437,NEW_TEMP_90437,,new_sbaplayer +1640,Masahiro Tanaka,3,,90437,NEW_TEMP_90437,,new_sbaplayer +3923,Masahiro Tanaka,4,,90437,NEW_TEMP_90437,,new_sbaplayer +4494,Masahiro Tanaka,5,,90437,NEW_TEMP_90437,,new_sbaplayer +2793,Mason Williams,1,,90438,NEW_TEMP_90438,,new_sbaplayer +3401,Mason Williams,4,,90438,NEW_TEMP_90438,,new_sbaplayer +5029,Mason Williams,5,,90438,NEW_TEMP_90438,,new_sbaplayer +2794,Matt Adams,1,,90439,NEW_TEMP_90439,,new_sbaplayer +635,Matt Adams,2,,90439,NEW_TEMP_90439,,new_sbaplayer +1641,Matt Adams,3,,90439,NEW_TEMP_90439,,new_sbaplayer +3402,Matt Adams,4,,90439,NEW_TEMP_90439,,new_sbaplayer +5030,Matt Adams,5,,90439,NEW_TEMP_90439,,new_sbaplayer +2795,Matt Barnes,1,,90440,NEW_TEMP_90440,,new_sbaplayer +638,Matt Barnes,2,,90440,NEW_TEMP_90440,,new_sbaplayer +1644,Matt Barnes,3,,90440,NEW_TEMP_90440,,new_sbaplayer +3925,Matt Barnes,4,,90440,NEW_TEMP_90440,,new_sbaplayer +4710,Matt Barnes,5,,90440,NEW_TEMP_90440,,new_sbaplayer +2797,Matt Carpenter,1,,90441,NEW_TEMP_90441,,new_sbaplayer +641,Matt Carpenter,2,,90441,NEW_TEMP_90441,,new_sbaplayer +1647,Matt Carpenter,3,,90441,NEW_TEMP_90441,,new_sbaplayer +3404,Matt Carpenter,4,,90441,NEW_TEMP_90441,,new_sbaplayer +4761,Matt Carpenter,5,,90441,NEW_TEMP_90441,,new_sbaplayer +2798,Matt Chapman,1,,90442,NEW_TEMP_90442,,new_sbaplayer +642,Matt Chapman,2,,90442,NEW_TEMP_90442,,new_sbaplayer +1648,Matt Chapman,3,,90442,NEW_TEMP_90442,,new_sbaplayer +3405,Matt Chapman,4,,90442,NEW_TEMP_90442,,new_sbaplayer +4280,Matt Chapman,5,,90442,NEW_TEMP_90442,,new_sbaplayer +2799,Matt Davidson,1,,90443,NEW_TEMP_90443,,new_sbaplayer +3406,Matt Davidson,4,,90443,NEW_TEMP_90443,,new_sbaplayer +5032,Matt Davidson,5,,90443,NEW_TEMP_90443,,new_sbaplayer +2800,Matt Duffy,1,,90444,NEW_TEMP_90444,,new_sbaplayer +643,Matt Duffy,2,,90444,NEW_TEMP_90444,,new_sbaplayer +1649,Matt Duffy,3,,90444,NEW_TEMP_90444,,new_sbaplayer +2801,Matt Grace,1,,90445,NEW_TEMP_90445,,new_sbaplayer +644,Matt Grace,2,,90445,NEW_TEMP_90445,,new_sbaplayer +1650,Matt Grace,3,,90445,NEW_TEMP_90445,,new_sbaplayer +2802,Matt Harvey,1,,90446,NEW_TEMP_90446,,new_sbaplayer +645,Matt Harvey,2,,90446,NEW_TEMP_90446,,new_sbaplayer +1651,Matt Harvey,3,,90446,NEW_TEMP_90446,,new_sbaplayer +3928,Matt Harvey,4,,90446,NEW_TEMP_90446,,new_sbaplayer +5034,Matt Harvey,5,,90446,NEW_TEMP_90446,,new_sbaplayer +2803,Matt Kemp,1,,90447,NEW_TEMP_90447,,new_sbaplayer +646,Matt Kemp,2,,90447,NEW_TEMP_90447,,new_sbaplayer +1652,Matt Kemp,3,,90447,NEW_TEMP_90447,,new_sbaplayer +3407,Matt Kemp,4,,90447,NEW_TEMP_90447,,new_sbaplayer +4753,Matt Kemp,5,,90447,NEW_TEMP_90447,,new_sbaplayer +2805,Matt Magill,1,,90448,NEW_TEMP_90448,,new_sbaplayer +647,Matt Magill,2,,90448,NEW_TEMP_90448,,new_sbaplayer +1653,Matt Magill,3,,90448,NEW_TEMP_90448,,new_sbaplayer +3929,Matt Magill,4,,90448,NEW_TEMP_90448,,new_sbaplayer +5035,Matt Magill,5,,90448,NEW_TEMP_90448,,new_sbaplayer +2807,Matt Olson,1,,90449,NEW_TEMP_90449,,new_sbaplayer +648,Matt Olson,2,,90449,NEW_TEMP_90449,,new_sbaplayer +1654,Matt Olson,3,,90449,NEW_TEMP_90449,,new_sbaplayer +3408,Matt Olson,4,,90449,NEW_TEMP_90449,,new_sbaplayer +4423,Matt Olson,5,,90449,NEW_TEMP_90449,,new_sbaplayer +2808,Matt Strahm,1,,90450,NEW_TEMP_90450,,new_sbaplayer +651,Matt Strahm,2,,90450,NEW_TEMP_90450,,new_sbaplayer +1657,Matt Strahm,3,,90450,NEW_TEMP_90450,,new_sbaplayer +3931,Matt Strahm,4,,90450,NEW_TEMP_90450,,new_sbaplayer +4469,Matt Strahm,5,,90450,NEW_TEMP_90450,,new_sbaplayer +2809,Matt Wieters,1,,90451,NEW_TEMP_90451,,new_sbaplayer +653,Matt Wieters,2,,90451,NEW_TEMP_90451,,new_sbaplayer +1659,Matt Wieters,3,,90451,NEW_TEMP_90451,,new_sbaplayer +3410,Matt Wieters,4,,90451,NEW_TEMP_90451,,new_sbaplayer +5037,Matt Wieters,5,,90451,NEW_TEMP_90451,,new_sbaplayer +2810,Matthew Boyd,1,,90452,NEW_TEMP_90452,,new_sbaplayer +655,Matthew Boyd,2,,90452,NEW_TEMP_90452,,new_sbaplayer +1661,Matthew Boyd,3,,90452,NEW_TEMP_90452,,new_sbaplayer +3933,Matthew Boyd,4,,90452,NEW_TEMP_90452,,new_sbaplayer +5038,Matthew Boyd,5,,90452,NEW_TEMP_90452,,new_sbaplayer +2811,Matthew Joyce,1,,90453,NEW_TEMP_90453,,new_sbaplayer +656,Matthew Joyce,2,,90453,NEW_TEMP_90453,,new_sbaplayer +1662,Matthew Joyce,3,,90453,NEW_TEMP_90453,,new_sbaplayer +3411,Matthew Joyce,4,,90453,NEW_TEMP_90453,,new_sbaplayer +5039,Matthew Joyce,5,,90453,NEW_TEMP_90453,,new_sbaplayer +2812,Max Kepler,1,,90454,NEW_TEMP_90454,,new_sbaplayer +659,Max Kepler,2,,90454,NEW_TEMP_90454,,new_sbaplayer +1665,Max Kepler,3,,90454,NEW_TEMP_90454,,new_sbaplayer +3413,Max Kepler,4,,90454,NEW_TEMP_90454,,new_sbaplayer +4457,Max Kepler,5,,90454,NEW_TEMP_90454,,new_sbaplayer +2813,Max Muncy,1,,90455,NEW_TEMP_90455,,new_sbaplayer +660,Max Muncy,2,,90455,NEW_TEMP_90455,,new_sbaplayer +1666,Max Muncy,3,,90455,NEW_TEMP_90455,,new_sbaplayer +3414,Max Muncy,4,,90455,NEW_TEMP_90455,,new_sbaplayer +4701,Max Muncy,5,,90455,NEW_TEMP_90455,,new_sbaplayer +2814,Max Scherzer,1,,90456,NEW_TEMP_90456,,new_sbaplayer +661,Max Scherzer,2,,90456,NEW_TEMP_90456,,new_sbaplayer +1667,Max Scherzer,3,,90456,NEW_TEMP_90456,,new_sbaplayer +3935,Max Scherzer,4,,90456,NEW_TEMP_90456,,new_sbaplayer +4192,Max Scherzer,5,,90456,NEW_TEMP_90456,,new_sbaplayer +2815,Max Stassi,1,,90457,NEW_TEMP_90457,,new_sbaplayer +662,Max Stassi,2,,90457,NEW_TEMP_90457,,new_sbaplayer +1668,Max Stassi,3,,90457,NEW_TEMP_90457,,new_sbaplayer +3416,Max Stassi,4,,90457,NEW_TEMP_90457,,new_sbaplayer +4165,Max Stassi,5,,90457,NEW_TEMP_90457,,new_sbaplayer +2816,Melky Cabrera,1,,90458,NEW_TEMP_90458,,new_sbaplayer +664,Melky Cabrera,2,,90458,NEW_TEMP_90458,,new_sbaplayer +1670,Melky Cabrera,3,,90458,NEW_TEMP_90458,,new_sbaplayer +2817,Michael A Taylor,1,,90459,NEW_TEMP_90459,,new_sbaplayer +666,Michael A Taylor,2,,90459,NEW_TEMP_90459,,new_sbaplayer +1672,Michael A Taylor,3,,90459,NEW_TEMP_90459,,new_sbaplayer +3418,Michael A Taylor,4,,90459,NEW_TEMP_90459,,new_sbaplayer +5042,Michael A Taylor,5,,90459,NEW_TEMP_90459,,new_sbaplayer +2818,Michael Brantley,1,,90460,NEW_TEMP_90460,,new_sbaplayer +667,Michael Brantley,2,,90460,NEW_TEMP_90460,,new_sbaplayer +1673,Michael Brantley,3,,90460,NEW_TEMP_90460,,new_sbaplayer +3419,Michael Brantley,4,,90460,NEW_TEMP_90460,,new_sbaplayer +4231,Michael Brantley,5,,90460,NEW_TEMP_90460,,new_sbaplayer +2819,Michael Conforto,1,,90461,NEW_TEMP_90461,,new_sbaplayer +669,Michael Conforto,2,,90461,NEW_TEMP_90461,,new_sbaplayer +1675,Michael Conforto,3,,90461,NEW_TEMP_90461,,new_sbaplayer +3421,Michael Conforto,4,,90461,NEW_TEMP_90461,,new_sbaplayer +4201,Michael Conforto,5,,90461,NEW_TEMP_90461,,new_sbaplayer +2820,Michael Feliz,1,,90462,NEW_TEMP_90462,,new_sbaplayer +670,Michael Feliz,2,,90462,NEW_TEMP_90462,,new_sbaplayer +1676,Michael Feliz,3,,90462,NEW_TEMP_90462,,new_sbaplayer +2821,Michael Fulmer,1,,90463,NEW_TEMP_90463,,new_sbaplayer +3937,Michael Fulmer,4,,90463,NEW_TEMP_90463,,new_sbaplayer +5044,Michael Fulmer,5,,90463,NEW_TEMP_90463,,new_sbaplayer +2822,Michael Lorenzen,1,,90464,NEW_TEMP_90464,,new_sbaplayer +671,Michael Lorenzen,2,,90464,NEW_TEMP_90464,,new_sbaplayer +1677,Michael Lorenzen,3,,90464,NEW_TEMP_90464,,new_sbaplayer +3939,Michael Lorenzen,4,,90464,NEW_TEMP_90464,,new_sbaplayer +4703,Michael Lorenzen,5,,90464,NEW_TEMP_90464,,new_sbaplayer +2823,Michael Perez,1,,90465,NEW_TEMP_90465,,new_sbaplayer +3422,Michael Perez,4,,90465,NEW_TEMP_90465,,new_sbaplayer +5046,Michael Perez,5,,90465,NEW_TEMP_90465,,new_sbaplayer +2824,Michael Wacha,1,,90466,NEW_TEMP_90466,,new_sbaplayer +673,Michael Wacha,2,,90466,NEW_TEMP_90466,,new_sbaplayer +1679,Michael Wacha,3,,90466,NEW_TEMP_90466,,new_sbaplayer +3941,Michael Wacha,4,,90466,NEW_TEMP_90466,,new_sbaplayer +5047,Michael Wacha,5,,90466,NEW_TEMP_90466,,new_sbaplayer +2825,Miguel Andujar,1,,90467,NEW_TEMP_90467,,new_sbaplayer +3423,Miguel Andujar,4,,90467,NEW_TEMP_90467,,new_sbaplayer +5048,Miguel Andujar,5,,90467,NEW_TEMP_90467,,new_sbaplayer +2826,Miguel Cabrera,1,,90468,NEW_TEMP_90468,,new_sbaplayer +675,Miguel Cabrera,2,,90468,NEW_TEMP_90468,,new_sbaplayer +1681,Miguel Cabrera,3,,90468,NEW_TEMP_90468,,new_sbaplayer +3424,Miguel Cabrera,4,,90468,NEW_TEMP_90468,,new_sbaplayer +5049,Miguel Cabrera,5,,90468,NEW_TEMP_90468,,new_sbaplayer +2827,Miguel Castro,1,,90469,NEW_TEMP_90469,,new_sbaplayer +676,Miguel Castro,2,,90469,NEW_TEMP_90469,,new_sbaplayer +1682,Miguel Castro,3,,90469,NEW_TEMP_90469,,new_sbaplayer +3942,Miguel Castro,4,,90469,NEW_TEMP_90469,,new_sbaplayer +4571,Miguel Castro,5,,90469,NEW_TEMP_90469,,new_sbaplayer +2828,Miguel Rojas,1,,90470,NEW_TEMP_90470,,new_sbaplayer +677,Miguel Rojas,2,,90470,NEW_TEMP_90470,,new_sbaplayer +1683,Miguel Rojas,3,,90470,NEW_TEMP_90470,,new_sbaplayer +3425,Miguel Rojas,4,,90470,NEW_TEMP_90470,,new_sbaplayer +4154,Miguel Rojas,5,,90470,NEW_TEMP_90470,,new_sbaplayer +2829,Miguel Sano,1,,90471,NEW_TEMP_90471,,new_sbaplayer +678,Miguel Sano,2,,90471,NEW_TEMP_90471,,new_sbaplayer +1684,Miguel Sano,3,,90471,NEW_TEMP_90471,,new_sbaplayer +3426,Miguel Sano,4,,90471,NEW_TEMP_90471,,new_sbaplayer +5050,Miguel Sano,5,,90471,NEW_TEMP_90471,,new_sbaplayer +2830,Mike Clevinger,1,,90472,NEW_TEMP_90472,,new_sbaplayer +680,Mike Clevinger,2,,90472,NEW_TEMP_90472,,new_sbaplayer +1686,Mike Clevinger,3,,90472,NEW_TEMP_90472,,new_sbaplayer +3943,Mike Clevinger,4,,90472,NEW_TEMP_90472,,new_sbaplayer +4259,Mike Clevinger,5,,90472,NEW_TEMP_90472,,new_sbaplayer +2831,Mike Fiers,1,,90473,NEW_TEMP_90473,,new_sbaplayer +681,Mike Fiers,2,,90473,NEW_TEMP_90473,,new_sbaplayer +1687,Mike Fiers,3,,90473,NEW_TEMP_90473,,new_sbaplayer +3944,Mike Fiers,4,,90473,NEW_TEMP_90473,,new_sbaplayer +4598,Mike Fiers,5,,90473,NEW_TEMP_90473,,new_sbaplayer +2832,Mike Foltynewicz,1,,90474,NEW_TEMP_90474,,new_sbaplayer +682,Mike Foltynewicz,2,,90474,NEW_TEMP_90474,,new_sbaplayer +1688,Mike Foltynewicz,3,,90474,NEW_TEMP_90474,,new_sbaplayer +2833,Mike Leake,1,,90475,NEW_TEMP_90475,,new_sbaplayer +685,Mike Leake,2,,90475,NEW_TEMP_90475,,new_sbaplayer +1691,Mike Leake,3,,90475,NEW_TEMP_90475,,new_sbaplayer +2834,Mike Mayers,1,,90476,NEW_TEMP_90476,,new_sbaplayer +3946,Mike Mayers,4,,90476,NEW_TEMP_90476,,new_sbaplayer +4302,Mike Mayers,5,,90476,NEW_TEMP_90476,,new_sbaplayer +2835,Mike Minor,1,,90477,NEW_TEMP_90477,,new_sbaplayer +686,Mike Minor,2,,90477,NEW_TEMP_90477,,new_sbaplayer +1692,Mike Minor,3,,90477,NEW_TEMP_90477,,new_sbaplayer +3947,Mike Minor,4,,90477,NEW_TEMP_90477,,new_sbaplayer +5054,Mike Minor,5,,90477,NEW_TEMP_90477,,new_sbaplayer +2836,Mike Montgomery,1,,90478,NEW_TEMP_90478,,new_sbaplayer +687,Mike Montgomery,2,,90478,NEW_TEMP_90478,,new_sbaplayer +1693,Mike Montgomery,3,,90478,NEW_TEMP_90478,,new_sbaplayer +2837,Mike Moustakas,1,,90479,NEW_TEMP_90479,,new_sbaplayer +689,Mike Moustakas,2,,90479,NEW_TEMP_90479,,new_sbaplayer +1695,Mike Moustakas,3,,90479,NEW_TEMP_90479,,new_sbaplayer +3430,Mike Moustakas,4,,90479,NEW_TEMP_90479,,new_sbaplayer +4680,Mike Moustakas,5,,90479,NEW_TEMP_90479,,new_sbaplayer +2838,Mike Trout,1,,90480,NEW_TEMP_90480,,new_sbaplayer +692,Mike Trout,2,,90480,NEW_TEMP_90480,,new_sbaplayer +1698,Mike Trout,3,,90480,NEW_TEMP_90480,,new_sbaplayer +3432,Mike Trout,4,,90480,NEW_TEMP_90480,,new_sbaplayer +4281,Mike Trout,5,,90480,NEW_TEMP_90480,,new_sbaplayer +2839,Mike Wright,1,,90481,NEW_TEMP_90481,,new_sbaplayer +693,Mike Wright,2,,90481,NEW_TEMP_90481,,new_sbaplayer +1699,Mike Wright,3,,90481,NEW_TEMP_90481,,new_sbaplayer +2840,Mike Zunino,1,,90482,NEW_TEMP_90482,,new_sbaplayer +695,Mike Zunino,2,,90482,NEW_TEMP_90482,,new_sbaplayer +1701,Mike Zunino,3,,90482,NEW_TEMP_90482,,new_sbaplayer +3434,Mike Zunino,4,,90482,NEW_TEMP_90482,,new_sbaplayer +5056,Mike Zunino,5,,90482,NEW_TEMP_90482,,new_sbaplayer +2842,Miles Mikolas,1,,90483,NEW_TEMP_90483,,new_sbaplayer +696,Miles Mikolas,2,,90483,NEW_TEMP_90483,,new_sbaplayer +1702,Miles Mikolas,3,,90483,NEW_TEMP_90483,,new_sbaplayer +2843,Mitch Garver,1,,90484,NEW_TEMP_90484,,new_sbaplayer +697,Mitch Garver,2,,90484,NEW_TEMP_90484,,new_sbaplayer +1703,Mitch Garver,3,,90484,NEW_TEMP_90484,,new_sbaplayer +3435,Mitch Garver,4,,90484,NEW_TEMP_90484,,new_sbaplayer +5057,Mitch Garver,5,,90484,NEW_TEMP_90484,,new_sbaplayer +2844,Mitch Haniger,1,,90485,NEW_TEMP_90485,,new_sbaplayer +698,Mitch Haniger,2,,90485,NEW_TEMP_90485,,new_sbaplayer +1704,Mitch Haniger,3,,90485,NEW_TEMP_90485,,new_sbaplayer +2845,Mitch Moreland,1,,90486,NEW_TEMP_90486,,new_sbaplayer +700,Mitch Moreland,2,,90486,NEW_TEMP_90486,,new_sbaplayer +1706,Mitch Moreland,3,,90486,NEW_TEMP_90486,,new_sbaplayer +3436,Mitch Moreland,4,,90486,NEW_TEMP_90486,,new_sbaplayer +4282,Mitch Moreland,5,,90486,NEW_TEMP_90486,,new_sbaplayer +2846,Mookie Betts,1,,90487,NEW_TEMP_90487,,new_sbaplayer +701,Mookie Betts,2,,90487,NEW_TEMP_90487,,new_sbaplayer +1707,Mookie Betts,3,,90487,NEW_TEMP_90487,,new_sbaplayer +3438,Mookie Betts,4,,90487,NEW_TEMP_90487,,new_sbaplayer +4133,Mookie Betts,5,,90487,NEW_TEMP_90487,,new_sbaplayer +2847,Mychal Givens,1,,90488,NEW_TEMP_90488,,new_sbaplayer +702,Mychal Givens,2,,90488,NEW_TEMP_90488,,new_sbaplayer +1708,Mychal Givens,3,,90488,NEW_TEMP_90488,,new_sbaplayer +3950,Mychal Givens,4,,90488,NEW_TEMP_90488,,new_sbaplayer +4605,Mychal Givens,5,,90488,NEW_TEMP_90488,,new_sbaplayer +2848,Nate Jones,1,,90489,NEW_TEMP_90489,,new_sbaplayer +3952,Nate Jones,4,,90489,NEW_TEMP_90489,,new_sbaplayer +5061,Nate Jones,5,,90489,NEW_TEMP_90489,,new_sbaplayer +2849,Nathan Eovaldi,1,,90490,NEW_TEMP_90490,,new_sbaplayer +705,Nathan Eovaldi,2,,90490,NEW_TEMP_90490,,new_sbaplayer +1711,Nathan Eovaldi,3,,90490,NEW_TEMP_90490,,new_sbaplayer +3954,Nathan Eovaldi,4,,90490,NEW_TEMP_90490,,new_sbaplayer +4253,Nathan Eovaldi,5,,90490,NEW_TEMP_90490,,new_sbaplayer +2851,Neil Walker,1,,90491,NEW_TEMP_90491,,new_sbaplayer +706,Neil Walker,2,,90491,NEW_TEMP_90491,,new_sbaplayer +1712,Neil Walker,3,,90491,NEW_TEMP_90491,,new_sbaplayer +3441,Neil Walker,4,,90491,NEW_TEMP_90491,,new_sbaplayer +5063,Neil Walker,5,,90491,NEW_TEMP_90491,,new_sbaplayer +2852,Nelson Cruz,1,,90492,NEW_TEMP_90492,,new_sbaplayer +707,Nelson Cruz,2,,90492,NEW_TEMP_90492,,new_sbaplayer +1713,Nelson Cruz,3,,90492,NEW_TEMP_90492,,new_sbaplayer +3442,Nelson Cruz,4,,90492,NEW_TEMP_90492,,new_sbaplayer +4260,Nelson Cruz,5,,90492,NEW_TEMP_90492,,new_sbaplayer +2853,Nicholas Castellanos,1,,90493,NEW_TEMP_90493,,new_sbaplayer +709,Nicholas Castellanos,2,,90493,NEW_TEMP_90493,,new_sbaplayer +1715,Nicholas Castellanos,3,,90493,NEW_TEMP_90493,,new_sbaplayer +3443,Nicholas Castellanos,4,,90493,NEW_TEMP_90493,,new_sbaplayer +4773,Nicholas Castellanos,5,,90493,NEW_TEMP_90493,,new_sbaplayer +2854,Nick Ahmed,1,,90494,NEW_TEMP_90494,,new_sbaplayer +710,Nick Ahmed,2,,90494,NEW_TEMP_90494,,new_sbaplayer +1716,Nick Ahmed,3,,90494,NEW_TEMP_90494,,new_sbaplayer +3444,Nick Ahmed,4,,90494,NEW_TEMP_90494,,new_sbaplayer +4309,Nick Ahmed,5,,90494,NEW_TEMP_90494,,new_sbaplayer +2855,Nick Hundley,1,,90495,NEW_TEMP_90495,,new_sbaplayer +714,Nick Hundley,2,,90495,NEW_TEMP_90495,,new_sbaplayer +1720,Nick Hundley,3,,90495,NEW_TEMP_90495,,new_sbaplayer +2856,Nick Kingham,1,,90496,NEW_TEMP_90496,,new_sbaplayer +715,Nick Kingham,2,,90496,NEW_TEMP_90496,,new_sbaplayer +1721,Nick Kingham,3,,90496,NEW_TEMP_90496,,new_sbaplayer +2857,Nick Markakis,1,,90497,NEW_TEMP_90497,,new_sbaplayer +717,Nick Markakis,2,,90497,NEW_TEMP_90497,,new_sbaplayer +1723,Nick Markakis,3,,90497,NEW_TEMP_90497,,new_sbaplayer +3447,Nick Markakis,4,,90497,NEW_TEMP_90497,,new_sbaplayer +5065,Nick Markakis,5,,90497,NEW_TEMP_90497,,new_sbaplayer +2858,Nick Martini,1,,90498,NEW_TEMP_90498,,new_sbaplayer +718,Nick Martini,2,,90498,NEW_TEMP_90498,,new_sbaplayer +1724,Nick Martini,3,,90498,NEW_TEMP_90498,,new_sbaplayer +2859,Nick Pivetta,1,,90499,NEW_TEMP_90499,,new_sbaplayer +719,Nick Pivetta,2,,90499,NEW_TEMP_90499,,new_sbaplayer +1725,Nick Pivetta,3,,90499,NEW_TEMP_90499,,new_sbaplayer +3961,Nick Pivetta,4,,90499,NEW_TEMP_90499,,new_sbaplayer +4579,Nick Pivetta,5,,90499,NEW_TEMP_90499,,new_sbaplayer +2860,Nick Tropeano,1,,90500,NEW_TEMP_90500,,new_sbaplayer +3963,Nick Tropeano,4,,90500,NEW_TEMP_90500,,new_sbaplayer +4254,Nick Tropeano,5,,90500,NEW_TEMP_90500,,new_sbaplayer +2861,Nick Vincent,1,,90501,NEW_TEMP_90501,,new_sbaplayer +723,Nick Vincent,2,,90501,NEW_TEMP_90501,,new_sbaplayer +1729,Nick Vincent,3,,90501,NEW_TEMP_90501,,new_sbaplayer +3964,Nick Vincent,4,,90501,NEW_TEMP_90501,,new_sbaplayer +4606,Nick Vincent,5,,90501,NEW_TEMP_90501,,new_sbaplayer +2862,Nick Williams,1,,90502,NEW_TEMP_90502,,new_sbaplayer +724,Nick Williams,2,,90502,NEW_TEMP_90502,,new_sbaplayer +1730,Nick Williams,3,,90502,NEW_TEMP_90502,,new_sbaplayer +2863,Nicky Delmonico,1,,90503,NEW_TEMP_90503,,new_sbaplayer +726,Nicky Delmonico,2,,90503,NEW_TEMP_90503,,new_sbaplayer +1732,Nicky Delmonico,3,,90503,NEW_TEMP_90503,,new_sbaplayer +3450,Nicky Delmonico,4,,90503,NEW_TEMP_90503,,new_sbaplayer +5071,Nicky Delmonico,5,,90503,NEW_TEMP_90503,,new_sbaplayer +2864,Niko Goodrum,1,,90504,NEW_TEMP_90504,,new_sbaplayer +729,Niko Goodrum,2,,90504,NEW_TEMP_90504,,new_sbaplayer +1735,Niko Goodrum,3,,90504,NEW_TEMP_90504,,new_sbaplayer +3453,Niko Goodrum,4,,90504,NEW_TEMP_90504,,new_sbaplayer +5073,Niko Goodrum,5,,90504,NEW_TEMP_90504,,new_sbaplayer +2865,Noah Syndergaard,1,,90505,NEW_TEMP_90505,,new_sbaplayer +730,Noah Syndergaard,2,,90505,NEW_TEMP_90505,,new_sbaplayer +1736,Noah Syndergaard,3,,90505,NEW_TEMP_90505,,new_sbaplayer +2866,Noe Ramirez,1,,90506,NEW_TEMP_90506,,new_sbaplayer +731,Noe Ramirez,2,,90506,NEW_TEMP_90506,,new_sbaplayer +1737,Noe Ramirez,3,,90506,NEW_TEMP_90506,,new_sbaplayer +3968,Noe Ramirez,4,,90506,NEW_TEMP_90506,,new_sbaplayer +4429,Noe Ramirez,5,,90506,NEW_TEMP_90506,,new_sbaplayer +2868,Nolan Arenado,1,,90507,NEW_TEMP_90507,,new_sbaplayer +732,Nolan Arenado,2,,90507,NEW_TEMP_90507,,new_sbaplayer +1738,Nolan Arenado,3,,90507,NEW_TEMP_90507,,new_sbaplayer +3454,Nolan Arenado,4,,90507,NEW_TEMP_90507,,new_sbaplayer +4275,Nolan Arenado,5,,90507,NEW_TEMP_90507,,new_sbaplayer +2869,Nomar Mazara,1,,90508,NEW_TEMP_90508,,new_sbaplayer +733,Nomar Mazara,2,,90508,NEW_TEMP_90508,,new_sbaplayer +1739,Nomar Mazara,3,,90508,NEW_TEMP_90508,,new_sbaplayer +3455,Nomar Mazara,4,,90508,NEW_TEMP_90508,,new_sbaplayer +5075,Nomar Mazara,5,,90508,NEW_TEMP_90508,,new_sbaplayer +2870,Odubel Herrera,1,,90509,NEW_TEMP_90509,,new_sbaplayer +734,Odubel Herrera,2,,90509,NEW_TEMP_90509,,new_sbaplayer +1740,Odubel Herrera,3,,90509,NEW_TEMP_90509,,new_sbaplayer +2871,Oliver Drake,1,,90510,NEW_TEMP_90510,,new_sbaplayer +735,Oliver Drake,2,,90510,NEW_TEMP_90510,,new_sbaplayer +1741,Oliver Drake,3,,90510,NEW_TEMP_90510,,new_sbaplayer +3969,Oliver Drake,4,,90510,NEW_TEMP_90510,,new_sbaplayer +5076,Oliver Drake,5,,90510,NEW_TEMP_90510,,new_sbaplayer +2872,Oliver Perez,1,,90511,NEW_TEMP_90511,,new_sbaplayer +736,Oliver Perez,2,,90511,NEW_TEMP_90511,,new_sbaplayer +1742,Oliver Perez,3,,90511,NEW_TEMP_90511,,new_sbaplayer +3970,Oliver Perez,4,,90511,NEW_TEMP_90511,,new_sbaplayer +4430,Oliver Perez,5,,90511,NEW_TEMP_90511,,new_sbaplayer +2873,Omar Narvaez,1,,90512,NEW_TEMP_90512,,new_sbaplayer +737,Omar Narvaez,2,,90512,NEW_TEMP_90512,,new_sbaplayer +1743,Omar Narvaez,3,,90512,NEW_TEMP_90512,,new_sbaplayer +3456,Omar Narvaez,4,,90512,NEW_TEMP_90512,,new_sbaplayer +5077,Omar Narvaez,5,,90512,NEW_TEMP_90512,,new_sbaplayer +2874,Orlando Arcia,1,,90513,NEW_TEMP_90513,,new_sbaplayer +738,Orlando Arcia,2,,90513,NEW_TEMP_90513,,new_sbaplayer +1744,Orlando Arcia,3,,90513,NEW_TEMP_90513,,new_sbaplayer +3457,Orlando Arcia,4,,90513,NEW_TEMP_90513,,new_sbaplayer +4730,Orlando Arcia,5,,90513,NEW_TEMP_90513,,new_sbaplayer +2875,Ozzie Albies,1,,90514,NEW_TEMP_90514,,new_sbaplayer +740,Ozzie Albies,2,,90514,NEW_TEMP_90514,,new_sbaplayer +1746,Ozzie Albies,3,,90514,NEW_TEMP_90514,,new_sbaplayer +3459,Ozzie Albies,4,,90514,NEW_TEMP_90514,,new_sbaplayer +4428,Ozzie Albies,5,,90514,NEW_TEMP_90514,,new_sbaplayer +2876,Pablo Lopez,1,,90515,NEW_TEMP_90515,,new_sbaplayer +741,Pablo Lopez,2,,90515,NEW_TEMP_90515,,new_sbaplayer +1747,Pablo Lopez,3,,90515,NEW_TEMP_90515,,new_sbaplayer +3971,Pablo Lopez,4,,90515,NEW_TEMP_90515,,new_sbaplayer +4324,Pablo Lopez,5,,90515,NEW_TEMP_90515,,new_sbaplayer +2877,Pablo Sandoval,1,,90516,NEW_TEMP_90516,,new_sbaplayer +743,Pablo Sandoval,2,,90516,NEW_TEMP_90516,,new_sbaplayer +1749,Pablo Sandoval,3,,90516,NEW_TEMP_90516,,new_sbaplayer +3460,Pablo Sandoval,4,,90516,NEW_TEMP_90516,,new_sbaplayer +5079,Pablo Sandoval,5,,90516,NEW_TEMP_90516,,new_sbaplayer +2878,Pat Valaika,1,,90517,NEW_TEMP_90517,,new_sbaplayer +744,Pat Valaika,2,,90517,NEW_TEMP_90517,,new_sbaplayer +1750,Pat Valaika,3,,90517,NEW_TEMP_90517,,new_sbaplayer +3461,Pat Valaika,4,,90517,NEW_TEMP_90517,,new_sbaplayer +4668,Pat Valaika,5,,90517,NEW_TEMP_90517,,new_sbaplayer +2879,Patrick Corbin,1,,90518,NEW_TEMP_90518,,new_sbaplayer +745,Patrick Corbin,2,,90518,NEW_TEMP_90518,,new_sbaplayer +1751,Patrick Corbin,3,,90518,NEW_TEMP_90518,,new_sbaplayer +3972,Patrick Corbin,4,,90518,NEW_TEMP_90518,,new_sbaplayer +4269,Patrick Corbin,5,,90518,NEW_TEMP_90518,,new_sbaplayer +2880,Paul DeJong,1,,90519,NEW_TEMP_90519,,new_sbaplayer +747,Paul DeJong,2,,90519,NEW_TEMP_90519,,new_sbaplayer +1753,Paul DeJong,3,,90519,NEW_TEMP_90519,,new_sbaplayer +3462,Paul DeJong,4,,90519,NEW_TEMP_90519,,new_sbaplayer +4688,Paul DeJong,5,,90519,NEW_TEMP_90519,,new_sbaplayer +2881,Paul Fry,1,,90520,NEW_TEMP_90520,,new_sbaplayer +748,Paul Fry,2,,90520,NEW_TEMP_90520,,new_sbaplayer +1754,Paul Fry,3,,90520,NEW_TEMP_90520,,new_sbaplayer +3974,Paul Fry,4,,90520,NEW_TEMP_90520,,new_sbaplayer +4400,Paul Fry,5,,90520,NEW_TEMP_90520,,new_sbaplayer +2882,Paul Goldschmidt,1,,90521,NEW_TEMP_90521,,new_sbaplayer +749,Paul Goldschmidt,2,,90521,NEW_TEMP_90521,,new_sbaplayer +1755,Paul Goldschmidt,3,,90521,NEW_TEMP_90521,,new_sbaplayer +3463,Paul Goldschmidt,4,,90521,NEW_TEMP_90521,,new_sbaplayer +4245,Paul Goldschmidt,5,,90521,NEW_TEMP_90521,,new_sbaplayer +2884,Pedro Baez,1,,90522,NEW_TEMP_90522,,new_sbaplayer +750,Pedro Baez,2,,90522,NEW_TEMP_90522,,new_sbaplayer +1756,Pedro Baez,3,,90522,NEW_TEMP_90522,,new_sbaplayer +3975,Pedro Baez,4,,90522,NEW_TEMP_90522,,new_sbaplayer +4737,Pedro Baez,5,,90522,NEW_TEMP_90522,,new_sbaplayer +2885,Pedro Severino,1,,90523,NEW_TEMP_90523,,new_sbaplayer +751,Pedro Severino,2,,90523,NEW_TEMP_90523,,new_sbaplayer +1757,Pedro Severino,3,,90523,NEW_TEMP_90523,,new_sbaplayer +3465,Pedro Severino,4,,90523,NEW_TEMP_90523,,new_sbaplayer +4462,Pedro Severino,5,,90523,NEW_TEMP_90523,,new_sbaplayer +2886,Pedro Strop,1,,90524,NEW_TEMP_90524,,new_sbaplayer +752,Pedro Strop,2,,90524,NEW_TEMP_90524,,new_sbaplayer +1758,Pedro Strop,3,,90524,NEW_TEMP_90524,,new_sbaplayer +2887,Phil Ervin,1,,90525,NEW_TEMP_90525,,new_sbaplayer +755,Phil Ervin,2,,90525,NEW_TEMP_90525,,new_sbaplayer +1761,Phil Ervin,3,,90525,NEW_TEMP_90525,,new_sbaplayer +3467,Phil Ervin,4,,90525,NEW_TEMP_90525,,new_sbaplayer +5081,Phil Ervin,5,,90525,NEW_TEMP_90525,,new_sbaplayer +2888,Phil Maton,1,,90526,NEW_TEMP_90526,,new_sbaplayer +757,Phil Maton,2,,90526,NEW_TEMP_90526,,new_sbaplayer +1763,Phil Maton,3,,90526,NEW_TEMP_90526,,new_sbaplayer +3977,Phil Maton,4,,90526,NEW_TEMP_90526,,new_sbaplayer +5083,Phil Maton,5,,90526,NEW_TEMP_90526,,new_sbaplayer +2889,Pierce Johnson,1,,90527,NEW_TEMP_90527,,new_sbaplayer +3979,Pierce Johnson,4,,90527,NEW_TEMP_90527,,new_sbaplayer +4580,Pierce Johnson,5,,90527,NEW_TEMP_90527,,new_sbaplayer +2891,Rafael Devers,1,,90528,NEW_TEMP_90528,,new_sbaplayer +758,Rafael Devers,2,,90528,NEW_TEMP_90528,,new_sbaplayer +1764,Rafael Devers,3,,90528,NEW_TEMP_90528,,new_sbaplayer +3470,Rafael Devers,4,,90528,NEW_TEMP_90528,,new_sbaplayer +4641,Rafael Devers,5,,90528,NEW_TEMP_90528,,new_sbaplayer +2892,Rafael Ortega,1,,90529,NEW_TEMP_90529,,new_sbaplayer +760,Rafael Ortega,2,,90529,NEW_TEMP_90529,,new_sbaplayer +1766,Rafael Ortega,3,,90529,NEW_TEMP_90529,,new_sbaplayer +2893,Raisel Iglesias,1,,90530,NEW_TEMP_90530,,new_sbaplayer +762,Raisel Iglesias,2,,90530,NEW_TEMP_90530,,new_sbaplayer +1768,Raisel Iglesias,3,,90530,NEW_TEMP_90530,,new_sbaplayer +3982,Raisel Iglesias,4,,90530,NEW_TEMP_90530,,new_sbaplayer +4711,Raisel Iglesias,5,,90530,NEW_TEMP_90530,,new_sbaplayer +2895,Ramon Laureano,1,,90531,NEW_TEMP_90531,,new_sbaplayer +763,Ramon Laureano,2,,90531,NEW_TEMP_90531,,new_sbaplayer +1769,Ramon Laureano,3,,90531,NEW_TEMP_90531,,new_sbaplayer +3472,Ramon Laureano,4,,90531,NEW_TEMP_90531,,new_sbaplayer +4352,Ramon Laureano,5,,90531,NEW_TEMP_90531,,new_sbaplayer +2896,Randal Grichuk,1,,90532,NEW_TEMP_90532,,new_sbaplayer +764,Randal Grichuk,2,,90532,NEW_TEMP_90532,,new_sbaplayer +1770,Randal Grichuk,3,,90532,NEW_TEMP_90532,,new_sbaplayer +3474,Randal Grichuk,4,,90532,NEW_TEMP_90532,,new_sbaplayer +4684,Randal Grichuk,5,,90532,NEW_TEMP_90532,,new_sbaplayer +2897,Renato Nunez,1,,90533,NEW_TEMP_90533,,new_sbaplayer +768,Renato Nunez,2,,90533,NEW_TEMP_90533,,new_sbaplayer +1774,Renato Nunez,3,,90533,NEW_TEMP_90533,,new_sbaplayer +3478,Renato Nunez,4,,90533,NEW_TEMP_90533,,new_sbaplayer +4597,Renato Nunez,5,,90533,NEW_TEMP_90533,,new_sbaplayer +2898,Reyes Moronta,1,,90534,NEW_TEMP_90534,,new_sbaplayer +769,Reyes Moronta,2,,90534,NEW_TEMP_90534,,new_sbaplayer +1775,Reyes Moronta,3,,90534,NEW_TEMP_90534,,new_sbaplayer +2899,Reynaldo Lopez,1,,90535,NEW_TEMP_90535,,new_sbaplayer +770,Reynaldo Lopez,2,,90535,NEW_TEMP_90535,,new_sbaplayer +1776,Reynaldo Lopez,3,,90535,NEW_TEMP_90535,,new_sbaplayer +3985,Reynaldo Lopez,4,,90535,NEW_TEMP_90535,,new_sbaplayer +5088,Reynaldo Lopez,5,,90535,NEW_TEMP_90535,,new_sbaplayer +2900,Rhys Hoskins,1,,90536,NEW_TEMP_90536,,new_sbaplayer +771,Rhys Hoskins,2,,90536,NEW_TEMP_90536,,new_sbaplayer +1777,Rhys Hoskins,3,,90536,NEW_TEMP_90536,,new_sbaplayer +3479,Rhys Hoskins,4,,90536,NEW_TEMP_90536,,new_sbaplayer +4475,Rhys Hoskins,5,,90536,NEW_TEMP_90536,,new_sbaplayer +2901,Rich Hill,1,,90537,NEW_TEMP_90537,,new_sbaplayer +772,Rich Hill,2,,90537,NEW_TEMP_90537,,new_sbaplayer +1778,Rich Hill,3,,90537,NEW_TEMP_90537,,new_sbaplayer +3986,Rich Hill,4,,90537,NEW_TEMP_90537,,new_sbaplayer +4362,Rich Hill,5,,90537,NEW_TEMP_90537,,new_sbaplayer +2902,Richard Bleier,1,,90538,NEW_TEMP_90538,,new_sbaplayer +773,Richard Bleier,2,,90538,NEW_TEMP_90538,,new_sbaplayer +1779,Richard Bleier,3,,90538,NEW_TEMP_90538,,new_sbaplayer +3987,Richard Bleier,4,,90538,NEW_TEMP_90538,,new_sbaplayer +4522,Richard Bleier,5,,90538,NEW_TEMP_90538,,new_sbaplayer +2903,Richard Rodriguez,1,,90539,NEW_TEMP_90539,,new_sbaplayer +774,Richard Rodriguez,2,,90539,NEW_TEMP_90539,,new_sbaplayer +1780,Richard Rodriguez,3,,90539,NEW_TEMP_90539,,new_sbaplayer +3988,Richard Rodriguez,4,,90539,NEW_TEMP_90539,,new_sbaplayer +4617,Richard Rodriguez,5,,90539,NEW_TEMP_90539,,new_sbaplayer +2904,Richard Urena,1,,90540,NEW_TEMP_90540,,new_sbaplayer +775,Richard Urena,2,,90540,NEW_TEMP_90540,,new_sbaplayer +1781,Richard Urena,3,,90540,NEW_TEMP_90540,,new_sbaplayer +2905,Rick Porcello,1,,90541,NEW_TEMP_90541,,new_sbaplayer +777,Rick Porcello,2,,90541,NEW_TEMP_90541,,new_sbaplayer +1783,Rick Porcello,3,,90541,NEW_TEMP_90541,,new_sbaplayer +3989,Rick Porcello,4,,90541,NEW_TEMP_90541,,new_sbaplayer +4766,Rick Porcello,5,,90541,NEW_TEMP_90541,,new_sbaplayer +2906,Robbie Erlin,1,,90542,NEW_TEMP_90542,,new_sbaplayer +779,Robbie Erlin,2,,90542,NEW_TEMP_90542,,new_sbaplayer +1785,Robbie Erlin,3,,90542,NEW_TEMP_90542,,new_sbaplayer +3992,Robbie Erlin,4,,90542,NEW_TEMP_90542,,new_sbaplayer +5091,Robbie Erlin,5,,90542,NEW_TEMP_90542,,new_sbaplayer +2907,Robbie Grossman,1,,90543,NEW_TEMP_90543,,new_sbaplayer +780,Robbie Grossman,2,,90543,NEW_TEMP_90543,,new_sbaplayer +1786,Robbie Grossman,3,,90543,NEW_TEMP_90543,,new_sbaplayer +3482,Robbie Grossman,4,,90543,NEW_TEMP_90543,,new_sbaplayer +4385,Robbie Grossman,5,,90543,NEW_TEMP_90543,,new_sbaplayer +2908,Robbie Ray,1,,90544,NEW_TEMP_90544,,new_sbaplayer +781,Robbie Ray,2,,90544,NEW_TEMP_90544,,new_sbaplayer +1787,Robbie Ray,3,,90544,NEW_TEMP_90544,,new_sbaplayer +3993,Robbie Ray,4,,90544,NEW_TEMP_90544,,new_sbaplayer +5092,Robbie Ray,5,,90544,NEW_TEMP_90544,,new_sbaplayer +2909,Robert Gsellman,1,,90545,NEW_TEMP_90545,,new_sbaplayer +784,Robert Gsellman,2,,90545,NEW_TEMP_90545,,new_sbaplayer +1790,Robert Gsellman,3,,90545,NEW_TEMP_90545,,new_sbaplayer +3995,Robert Gsellman,4,,90545,NEW_TEMP_90545,,new_sbaplayer +5094,Robert Gsellman,5,,90545,NEW_TEMP_90545,,new_sbaplayer +2910,Robert Stock,1,,90546,NEW_TEMP_90546,,new_sbaplayer +3997,Robert Stock,4,,90546,NEW_TEMP_90546,,new_sbaplayer +5096,Robert Stock,5,,90546,NEW_TEMP_90546,,new_sbaplayer +2911,Roberto Perez,1,,90547,NEW_TEMP_90547,,new_sbaplayer +787,Roberto Perez,2,,90547,NEW_TEMP_90547,,new_sbaplayer +1793,Roberto Perez,3,,90547,NEW_TEMP_90547,,new_sbaplayer +3483,Roberto Perez,4,,90547,NEW_TEMP_90547,,new_sbaplayer +4681,Roberto Perez,5,,90547,NEW_TEMP_90547,,new_sbaplayer +2912,Robinson Cano,1,,90548,NEW_TEMP_90548,,new_sbaplayer +788,Robinson Cano,2,,90548,NEW_TEMP_90548,,new_sbaplayer +1794,Robinson Cano,3,,90548,NEW_TEMP_90548,,new_sbaplayer +3484,Robinson Cano,4,,90548,NEW_TEMP_90548,,new_sbaplayer +4407,Robinson Cano,5,,90548,NEW_TEMP_90548,,new_sbaplayer +2913,Robinson Chirinos,1,,90549,NEW_TEMP_90549,,new_sbaplayer +789,Robinson Chirinos,2,,90549,NEW_TEMP_90549,,new_sbaplayer +1795,Robinson Chirinos,3,,90549,NEW_TEMP_90549,,new_sbaplayer +3485,Robinson Chirinos,4,,90549,NEW_TEMP_90549,,new_sbaplayer +5097,Robinson Chirinos,5,,90549,NEW_TEMP_90549,,new_sbaplayer +2914,Roman Quinn,1,,90550,NEW_TEMP_90550,,new_sbaplayer +791,Roman Quinn,2,,90550,NEW_TEMP_90550,,new_sbaplayer +1797,Roman Quinn,3,,90550,NEW_TEMP_90550,,new_sbaplayer +3486,Roman Quinn,4,,90550,NEW_TEMP_90550,,new_sbaplayer +5098,Roman Quinn,5,,90550,NEW_TEMP_90550,,new_sbaplayer +2915,Ronald Acuna Jr,1,,90551,NEW_TEMP_90551,,new_sbaplayer +792,Ronald Acuna Jr,2,,90551,NEW_TEMP_90551,,new_sbaplayer +1798,Ronald Acuna Jr,3,,90551,NEW_TEMP_90551,,new_sbaplayer +3487,Ronald Acuna Jr,4,,90551,NEW_TEMP_90551,,new_sbaplayer +4166,Ronald Acuna Jr,5,,90551,NEW_TEMP_90551,,new_sbaplayer +2916,Ronald Guzman,1,,90552,NEW_TEMP_90552,,new_sbaplayer +793,Ronald Guzman,2,,90552,NEW_TEMP_90552,,new_sbaplayer +1799,Ronald Guzman,3,,90552,NEW_TEMP_90552,,new_sbaplayer +3488,Ronald Guzman,4,,90552,NEW_TEMP_90552,,new_sbaplayer +4572,Ronald Guzman,5,,90552,NEW_TEMP_90552,,new_sbaplayer +2917,Ronny Rodriguez,1,,90553,NEW_TEMP_90553,,new_sbaplayer +794,Ronny Rodriguez,2,,90553,NEW_TEMP_90553,,new_sbaplayer +1800,Ronny Rodriguez,3,,90553,NEW_TEMP_90553,,new_sbaplayer +2918,Rosell Herrera,1,,90554,NEW_TEMP_90554,,new_sbaplayer +795,Rosell Herrera,2,,90554,NEW_TEMP_90554,,new_sbaplayer +1801,Rosell Herrera,3,,90554,NEW_TEMP_90554,,new_sbaplayer +2919,Ross Stripling,1,,90555,NEW_TEMP_90555,,new_sbaplayer +797,Ross Stripling,2,,90555,NEW_TEMP_90555,,new_sbaplayer +1803,Ross Stripling,3,,90555,NEW_TEMP_90555,,new_sbaplayer +4000,Ross Stripling,4,,90555,NEW_TEMP_90555,,new_sbaplayer +5100,Ross Stripling,5,,90555,NEW_TEMP_90555,,new_sbaplayer +2920,Rougned Odor,1,,90556,NEW_TEMP_90556,,new_sbaplayer +798,Rougned Odor,2,,90556,NEW_TEMP_90556,,new_sbaplayer +1804,Rougned Odor,3,,90556,NEW_TEMP_90556,,new_sbaplayer +3489,Rougned Odor,4,,90556,NEW_TEMP_90556,,new_sbaplayer +5101,Rougned Odor,5,,90556,NEW_TEMP_90556,,new_sbaplayer +2921,Russell Martin,1,,90557,NEW_TEMP_90557,,new_sbaplayer +801,Russell Martin,2,,90557,NEW_TEMP_90557,,new_sbaplayer +1807,Russell Martin,3,,90557,NEW_TEMP_90557,,new_sbaplayer +2922,Ryan Borucki,1,,90558,NEW_TEMP_90558,,new_sbaplayer +4002,Ryan Borucki,4,,90558,NEW_TEMP_90558,,new_sbaplayer +4386,Ryan Borucki,5,,90558,NEW_TEMP_90558,,new_sbaplayer +2923,Ryan Brasier,1,,90559,NEW_TEMP_90559,,new_sbaplayer +802,Ryan Brasier,2,,90559,NEW_TEMP_90559,,new_sbaplayer +1808,Ryan Brasier,3,,90559,NEW_TEMP_90559,,new_sbaplayer +4003,Ryan Brasier,4,,90559,NEW_TEMP_90559,,new_sbaplayer +4581,Ryan Brasier,5,,90559,NEW_TEMP_90559,,new_sbaplayer +2924,Ryan Braun,1,,90560,NEW_TEMP_90560,,new_sbaplayer +803,Ryan Braun,2,,90560,NEW_TEMP_90560,,new_sbaplayer +1809,Ryan Braun,3,,90560,NEW_TEMP_90560,,new_sbaplayer +3491,Ryan Braun,4,,90560,NEW_TEMP_90560,,new_sbaplayer +4757,Ryan Braun,5,,90560,NEW_TEMP_90560,,new_sbaplayer +2925,Ryan Buchter,1,,90561,NEW_TEMP_90561,,new_sbaplayer +804,Ryan Buchter,2,,90561,NEW_TEMP_90561,,new_sbaplayer +1810,Ryan Buchter,3,,90561,NEW_TEMP_90561,,new_sbaplayer +4004,Ryan Buchter,4,,90561,NEW_TEMP_90561,,new_sbaplayer +5102,Ryan Buchter,5,,90561,NEW_TEMP_90561,,new_sbaplayer +2929,Ryan McMahon,1,,90562,NEW_TEMP_90562,,new_sbaplayer +810,Ryan McMahon,2,,90562,NEW_TEMP_90562,,new_sbaplayer +1816,Ryan McMahon,3,,90562,NEW_TEMP_90562,,new_sbaplayer +3494,Ryan McMahon,4,,90562,NEW_TEMP_90562,,new_sbaplayer +4602,Ryan McMahon,5,,90562,NEW_TEMP_90562,,new_sbaplayer +2930,Ryan OHearn,1,,90563,NEW_TEMP_90563,,new_sbaplayer +811,Ryan OHearn,2,,90563,NEW_TEMP_90563,,new_sbaplayer +1817,Ryan OHearn,3,,90563,NEW_TEMP_90563,,new_sbaplayer +3496,Ryan OHearn,4,,90563,NEW_TEMP_90563,,new_sbaplayer +5105,Ryan OHearn,5,,90563,NEW_TEMP_90563,,new_sbaplayer +2931,Ryan Pressly,1,,90564,NEW_TEMP_90564,,new_sbaplayer +812,Ryan Pressly,2,,90564,NEW_TEMP_90564,,new_sbaplayer +1818,Ryan Pressly,3,,90564,NEW_TEMP_90564,,new_sbaplayer +4007,Ryan Pressly,4,,90564,NEW_TEMP_90564,,new_sbaplayer +4644,Ryan Pressly,5,,90564,NEW_TEMP_90564,,new_sbaplayer +2933,Ryan Tepera,1,,90565,NEW_TEMP_90565,,new_sbaplayer +4009,Ryan Tepera,4,,90565,NEW_TEMP_90565,,new_sbaplayer +4696,Ryan Tepera,5,,90565,NEW_TEMP_90565,,new_sbaplayer +2934,Ryan Yarbrough,1,,90566,NEW_TEMP_90566,,new_sbaplayer +814,Ryan Yarbrough,2,,90566,NEW_TEMP_90566,,new_sbaplayer +1820,Ryan Yarbrough,3,,90566,NEW_TEMP_90566,,new_sbaplayer +4012,Ryan Yarbrough,4,,90566,NEW_TEMP_90566,,new_sbaplayer +4345,Ryan Yarbrough,5,,90566,NEW_TEMP_90566,,new_sbaplayer +2935,Ryan Zimmerman,1,,90567,NEW_TEMP_90567,,new_sbaplayer +815,Ryan Zimmerman,2,,90567,NEW_TEMP_90567,,new_sbaplayer +1821,Ryan Zimmerman,3,,90567,NEW_TEMP_90567,,new_sbaplayer +2936,Ryne Stanek,1,,90568,NEW_TEMP_90568,,new_sbaplayer +817,Ryne Stanek,2,,90568,NEW_TEMP_90568,,new_sbaplayer +1823,Ryne Stanek,3,,90568,NEW_TEMP_90568,,new_sbaplayer +4014,Ryne Stanek,4,,90568,NEW_TEMP_90568,,new_sbaplayer +5108,Ryne Stanek,5,,90568,NEW_TEMP_90568,,new_sbaplayer +2937,Ryon Healy,1,,90569,NEW_TEMP_90569,,new_sbaplayer +818,Ryon Healy,2,,90569,NEW_TEMP_90569,,new_sbaplayer +1824,Ryon Healy,3,,90569,NEW_TEMP_90569,,new_sbaplayer +3497,Ryon Healy,4,,90569,NEW_TEMP_90569,,new_sbaplayer +5109,Ryon Healy,5,,90569,NEW_TEMP_90569,,new_sbaplayer +2939,Salvador Perez,1,,90570,NEW_TEMP_90570,,new_sbaplayer +3498,Salvador Perez,4,,90570,NEW_TEMP_90570,,new_sbaplayer +4140,Salvador Perez,5,,90570,NEW_TEMP_90570,,new_sbaplayer +2940,Sam Dyson,1,,90571,NEW_TEMP_90571,,new_sbaplayer +820,Sam Dyson,2,,90571,NEW_TEMP_90571,,new_sbaplayer +1826,Sam Dyson,3,,90571,NEW_TEMP_90571,,new_sbaplayer +2942,Sam Gaviglio,1,,90572,NEW_TEMP_90572,,new_sbaplayer +821,Sam Gaviglio,2,,90572,NEW_TEMP_90572,,new_sbaplayer +1827,Sam Gaviglio,3,,90572,NEW_TEMP_90572,,new_sbaplayer +2944,Sandy Leon,1,,90573,NEW_TEMP_90573,,new_sbaplayer +826,Sandy Leon,2,,90573,NEW_TEMP_90573,,new_sbaplayer +1832,Sandy Leon,3,,90573,NEW_TEMP_90573,,new_sbaplayer +3502,Sandy Leon,4,,90573,NEW_TEMP_90573,,new_sbaplayer +5111,Sandy Leon,5,,90573,NEW_TEMP_90573,,new_sbaplayer +2945,Scooter Gennett,1,,90574,NEW_TEMP_90574,,new_sbaplayer +827,Scooter Gennett,2,,90574,NEW_TEMP_90574,,new_sbaplayer +1833,Scooter Gennett,3,,90574,NEW_TEMP_90574,,new_sbaplayer +2946,Scott Alexander,1,,90575,NEW_TEMP_90575,,new_sbaplayer +4019,Scott Alexander,4,,90575,NEW_TEMP_90575,,new_sbaplayer +4620,Scott Alexander,5,,90575,NEW_TEMP_90575,,new_sbaplayer +2947,Scott Kingery,1,,90576,NEW_TEMP_90576,,new_sbaplayer +830,Scott Kingery,2,,90576,NEW_TEMP_90576,,new_sbaplayer +1836,Scott Kingery,3,,90576,NEW_TEMP_90576,,new_sbaplayer +3505,Scott Kingery,4,,90576,NEW_TEMP_90576,,new_sbaplayer +5113,Scott Kingery,5,,90576,NEW_TEMP_90576,,new_sbaplayer +2948,Scott Oberg,1,,90577,NEW_TEMP_90577,,new_sbaplayer +831,Scott Oberg,2,,90577,NEW_TEMP_90577,,new_sbaplayer +1837,Scott Oberg,3,,90577,NEW_TEMP_90577,,new_sbaplayer +2949,Scott Schebler,1,,90578,NEW_TEMP_90578,,new_sbaplayer +832,Scott Schebler,2,,90578,NEW_TEMP_90578,,new_sbaplayer +1838,Scott Schebler,3,,90578,NEW_TEMP_90578,,new_sbaplayer +2950,Sean Doolittle,1,,90579,NEW_TEMP_90579,,new_sbaplayer +833,Sean Doolittle,2,,90579,NEW_TEMP_90579,,new_sbaplayer +1839,Sean Doolittle,3,,90579,NEW_TEMP_90579,,new_sbaplayer +4021,Sean Doolittle,4,,90579,NEW_TEMP_90579,,new_sbaplayer +5114,Sean Doolittle,5,,90579,NEW_TEMP_90579,,new_sbaplayer +2951,Sean Manaea,1,,90580,NEW_TEMP_90580,,new_sbaplayer +834,Sean Manaea,2,,90580,NEW_TEMP_90580,,new_sbaplayer +1840,Sean Manaea,3,,90580,NEW_TEMP_90580,,new_sbaplayer +4022,Sean Manaea,4,,90580,NEW_TEMP_90580,,new_sbaplayer +4685,Sean Manaea,5,,90580,NEW_TEMP_90580,,new_sbaplayer +2952,Sean Newcomb,1,,90581,NEW_TEMP_90581,,new_sbaplayer +836,Sean Newcomb,2,,90581,NEW_TEMP_90581,,new_sbaplayer +1842,Sean Newcomb,3,,90581,NEW_TEMP_90581,,new_sbaplayer +4023,Sean Newcomb,4,,90581,NEW_TEMP_90581,,new_sbaplayer +5115,Sean Newcomb,5,,90581,NEW_TEMP_90581,,new_sbaplayer +2953,Sean Rodriguez,1,,90582,NEW_TEMP_90582,,new_sbaplayer +838,Sean Rodriguez,2,,90582,NEW_TEMP_90582,,new_sbaplayer +1844,Sean Rodriguez,3,,90582,NEW_TEMP_90582,,new_sbaplayer +2955,Sergio Romo,1,,90583,NEW_TEMP_90583,,new_sbaplayer +839,Sergio Romo,2,,90583,NEW_TEMP_90583,,new_sbaplayer +1845,Sergio Romo,3,,90583,NEW_TEMP_90583,,new_sbaplayer +4026,Sergio Romo,4,,90583,NEW_TEMP_90583,,new_sbaplayer +5118,Sergio Romo,5,,90583,NEW_TEMP_90583,,new_sbaplayer +2956,Seth Lugo,1,,90584,NEW_TEMP_90584,,new_sbaplayer +841,Seth Lugo,2,,90584,NEW_TEMP_90584,,new_sbaplayer +1847,Seth Lugo,3,,90584,NEW_TEMP_90584,,new_sbaplayer +4028,Seth Lugo,4,,90584,NEW_TEMP_90584,,new_sbaplayer +4657,Seth Lugo,5,,90584,NEW_TEMP_90584,,new_sbaplayer +2957,Shane Bieber,1,,90585,NEW_TEMP_90585,,new_sbaplayer +842,Shane Bieber,2,,90585,NEW_TEMP_90585,,new_sbaplayer +1848,Shane Bieber,3,,90585,NEW_TEMP_90585,,new_sbaplayer +4029,Shane Bieber,4,,90585,NEW_TEMP_90585,,new_sbaplayer +4141,Shane Bieber,5,,90585,NEW_TEMP_90585,,new_sbaplayer +2959,Shane Greene,1,,90586,NEW_TEMP_90586,,new_sbaplayer +843,Shane Greene,2,,90586,NEW_TEMP_90586,,new_sbaplayer +1849,Shane Greene,3,,90586,NEW_TEMP_90586,,new_sbaplayer +4030,Shane Greene,4,,90586,NEW_TEMP_90586,,new_sbaplayer +4393,Shane Greene,5,,90586,NEW_TEMP_90586,,new_sbaplayer +2960,Shin Soo Choo,1,,90587,NEW_TEMP_90587,,new_sbaplayer +850,Shin Soo Choo,2,,90587,NEW_TEMP_90587,,new_sbaplayer +1856,Shin Soo Choo,3,,90587,NEW_TEMP_90587,,new_sbaplayer +3510,Shin Soo Choo,4,,90587,NEW_TEMP_90587,,new_sbaplayer +4750,Shin Soo Choo,5,,90587,NEW_TEMP_90587,,new_sbaplayer +2961,Shohei Ohtani,1,,90588,NEW_TEMP_90588,,new_sbaplayer +851,Shohei Ohtani,2,,90588,NEW_TEMP_90588,,new_sbaplayer +1857,Shohei Ohtani,3,,90588,NEW_TEMP_90588,,new_sbaplayer +3512,Shohei Ohtani,4,,90588,NEW_TEMP_90588,,new_sbaplayer +4763,Shohei Ohtani,5,,90588,NEW_TEMP_90588,,new_sbaplayer +2962,Sonny Gray,1,,90589,NEW_TEMP_90589,,new_sbaplayer +852,Sonny Gray,2,,90589,NEW_TEMP_90589,,new_sbaplayer +1858,Sonny Gray,3,,90589,NEW_TEMP_90589,,new_sbaplayer +4035,Sonny Gray,4,,90589,NEW_TEMP_90589,,new_sbaplayer +4582,Sonny Gray,5,,90589,NEW_TEMP_90589,,new_sbaplayer +2964,Starlin Castro,1,,90590,NEW_TEMP_90590,,new_sbaplayer +854,Starlin Castro,2,,90590,NEW_TEMP_90590,,new_sbaplayer +1860,Starlin Castro,3,,90590,NEW_TEMP_90590,,new_sbaplayer +3513,Starlin Castro,4,,90590,NEW_TEMP_90590,,new_sbaplayer +4375,Starlin Castro,5,,90590,NEW_TEMP_90590,,new_sbaplayer +2965,Starling Marte,1,,90591,NEW_TEMP_90591,,new_sbaplayer +855,Starling Marte,2,,90591,NEW_TEMP_90591,,new_sbaplayer +1861,Starling Marte,3,,90591,NEW_TEMP_90591,,new_sbaplayer +3514,Starling Marte,4,,90591,NEW_TEMP_90591,,new_sbaplayer +4413,Starling Marte,5,,90591,NEW_TEMP_90591,,new_sbaplayer +2966,Stephen Piscotty,1,,90592,NEW_TEMP_90592,,new_sbaplayer +857,Stephen Piscotty,2,,90592,NEW_TEMP_90592,,new_sbaplayer +1863,Stephen Piscotty,3,,90592,NEW_TEMP_90592,,new_sbaplayer +3515,Stephen Piscotty,4,,90592,NEW_TEMP_90592,,new_sbaplayer +5123,Stephen Piscotty,5,,90592,NEW_TEMP_90592,,new_sbaplayer +2967,Stephen Strasburg,1,,90593,NEW_TEMP_90593,,new_sbaplayer +858,Stephen Strasburg,2,,90593,NEW_TEMP_90593,,new_sbaplayer +1864,Stephen Strasburg,3,,90593,NEW_TEMP_90593,,new_sbaplayer +2968,Steve Cishek,1,,90594,NEW_TEMP_90594,,new_sbaplayer +860,Steve Cishek,2,,90594,NEW_TEMP_90594,,new_sbaplayer +1866,Steve Cishek,3,,90594,NEW_TEMP_90594,,new_sbaplayer +4040,Steve Cishek,4,,90594,NEW_TEMP_90594,,new_sbaplayer +5126,Steve Cishek,5,,90594,NEW_TEMP_90594,,new_sbaplayer +2969,Steve Pearce,1,,90595,NEW_TEMP_90595,,new_sbaplayer +861,Steve Pearce,2,,90595,NEW_TEMP_90595,,new_sbaplayer +1867,Steve Pearce,3,,90595,NEW_TEMP_90595,,new_sbaplayer +2970,Steven Brault,1,,90596,NEW_TEMP_90596,,new_sbaplayer +862,Steven Brault,2,,90596,NEW_TEMP_90596,,new_sbaplayer +1868,Steven Brault,3,,90596,NEW_TEMP_90596,,new_sbaplayer +4041,Steven Brault,4,,90596,NEW_TEMP_90596,,new_sbaplayer +4554,Steven Brault,5,,90596,NEW_TEMP_90596,,new_sbaplayer +2971,Steven Duggar,1,,90597,NEW_TEMP_90597,,new_sbaplayer +863,Steven Duggar,2,,90597,NEW_TEMP_90597,,new_sbaplayer +1869,Steven Duggar,3,,90597,NEW_TEMP_90597,,new_sbaplayer +3517,Steven Duggar,4,,90597,NEW_TEMP_90597,,new_sbaplayer +5127,Steven Duggar,5,,90597,NEW_TEMP_90597,,new_sbaplayer +2972,Steven Matz,1,,90598,NEW_TEMP_90598,,new_sbaplayer +864,Steven Matz,2,,90598,NEW_TEMP_90598,,new_sbaplayer +1870,Steven Matz,3,,90598,NEW_TEMP_90598,,new_sbaplayer +4042,Steven Matz,4,,90598,NEW_TEMP_90598,,new_sbaplayer +5128,Steven Matz,5,,90598,NEW_TEMP_90598,,new_sbaplayer +2973,Steven Souza Jr,1,,90599,NEW_TEMP_90599,,new_sbaplayer +3518,Steven Souza Jr,4,,90599,NEW_TEMP_90599,,new_sbaplayer +5129,Steven Souza Jr,5,,90599,NEW_TEMP_90599,,new_sbaplayer +2974,TJ McFarland,1,,90600,NEW_TEMP_90600,,new_sbaplayer +866,TJ McFarland,2,,90600,NEW_TEMP_90600,,new_sbaplayer +1872,TJ McFarland,3,,90600,NEW_TEMP_90600,,new_sbaplayer +4058,TJ McFarland,4,,90600,NEW_TEMP_90600,,new_sbaplayer +4748,TJ McFarland,5,,90600,NEW_TEMP_90600,,new_sbaplayer +2975,Tanner Roark,1,,90601,NEW_TEMP_90601,,new_sbaplayer +868,Tanner Roark,2,,90601,NEW_TEMP_90601,,new_sbaplayer +1874,Tanner Roark,3,,90601,NEW_TEMP_90601,,new_sbaplayer +4046,Tanner Roark,4,,90601,NEW_TEMP_90601,,new_sbaplayer +5130,Tanner Roark,5,,90601,NEW_TEMP_90601,,new_sbaplayer +2976,Tanner Scott,1,,90602,NEW_TEMP_90602,,new_sbaplayer +869,Tanner Scott,2,,90602,NEW_TEMP_90602,,new_sbaplayer +1875,Tanner Scott,3,,90602,NEW_TEMP_90602,,new_sbaplayer +4047,Tanner Scott,4,,90602,NEW_TEMP_90602,,new_sbaplayer +4196,Tanner Scott,5,,90602,NEW_TEMP_90602,,new_sbaplayer +2977,Taylor Rogers,1,,90603,NEW_TEMP_90603,,new_sbaplayer +873,Taylor Rogers,2,,90603,NEW_TEMP_90603,,new_sbaplayer +1879,Taylor Rogers,3,,90603,NEW_TEMP_90603,,new_sbaplayer +4052,Taylor Rogers,4,,90603,NEW_TEMP_90603,,new_sbaplayer +5133,Taylor Rogers,5,,90603,NEW_TEMP_90603,,new_sbaplayer +2978,Taylor Ward,1,,90604,NEW_TEMP_90604,,new_sbaplayer +3520,Taylor Ward,4,,90604,NEW_TEMP_90604,,new_sbaplayer +5134,Taylor Ward,5,,90604,NEW_TEMP_90604,,new_sbaplayer +2979,Taylor Williams,1,,90605,NEW_TEMP_90605,,new_sbaplayer +4054,Taylor Williams,4,,90605,NEW_TEMP_90605,,new_sbaplayer +5135,Taylor Williams,5,,90605,NEW_TEMP_90605,,new_sbaplayer +2980,Tayron Guerrero,1,,90606,NEW_TEMP_90606,,new_sbaplayer +874,Tayron Guerrero,2,,90606,NEW_TEMP_90606,,new_sbaplayer +1880,Tayron Guerrero,3,,90606,NEW_TEMP_90606,,new_sbaplayer +2981,Teoscar Hernandez,1,,90607,NEW_TEMP_90607,,new_sbaplayer +875,Teoscar Hernandez,2,,90607,NEW_TEMP_90607,,new_sbaplayer +1881,Teoscar Hernandez,3,,90607,NEW_TEMP_90607,,new_sbaplayer +3521,Teoscar Hernandez,4,,90607,NEW_TEMP_90607,,new_sbaplayer +4318,Teoscar Hernandez,5,,90607,NEW_TEMP_90607,,new_sbaplayer +2982,Thomas Pannone,1,,90608,NEW_TEMP_90608,,new_sbaplayer +877,Thomas Pannone,2,,90608,NEW_TEMP_90608,,new_sbaplayer +1883,Thomas Pannone,3,,90608,NEW_TEMP_90608,,new_sbaplayer +2983,Tim Anderson,1,,90609,NEW_TEMP_90609,,new_sbaplayer +878,Tim Anderson,2,,90609,NEW_TEMP_90609,,new_sbaplayer +1884,Tim Anderson,3,,90609,NEW_TEMP_90609,,new_sbaplayer +3523,Tim Anderson,4,,90609,NEW_TEMP_90609,,new_sbaplayer +4168,Tim Anderson,5,,90609,NEW_TEMP_90609,,new_sbaplayer +2984,Tim Beckham,1,,90610,NEW_TEMP_90610,,new_sbaplayer +879,Tim Beckham,2,,90610,NEW_TEMP_90610,,new_sbaplayer +1885,Tim Beckham,3,,90610,NEW_TEMP_90610,,new_sbaplayer +2986,Tim Hill,1,,90611,NEW_TEMP_90611,,new_sbaplayer +881,Tim Hill,2,,90611,NEW_TEMP_90611,,new_sbaplayer +1887,Tim Hill,3,,90611,NEW_TEMP_90611,,new_sbaplayer +4057,Tim Hill,4,,90611,NEW_TEMP_90611,,new_sbaplayer +5137,Tim Hill,5,,90611,NEW_TEMP_90611,,new_sbaplayer +2987,Tim Mayza,1,,90612,NEW_TEMP_90612,,new_sbaplayer +884,Tim Mayza,2,,90612,NEW_TEMP_90612,,new_sbaplayer +1890,Tim Mayza,3,,90612,NEW_TEMP_90612,,new_sbaplayer +2988,Todd Frazier,1,,90613,NEW_TEMP_90613,,new_sbaplayer +886,Todd Frazier,2,,90613,NEW_TEMP_90613,,new_sbaplayer +1892,Todd Frazier,3,,90613,NEW_TEMP_90613,,new_sbaplayer +3526,Todd Frazier,4,,90613,NEW_TEMP_90613,,new_sbaplayer +4686,Todd Frazier,5,,90613,NEW_TEMP_90613,,new_sbaplayer +2989,Tom Murphy,1,,90614,NEW_TEMP_90614,,new_sbaplayer +888,Tom Murphy,2,,90614,NEW_TEMP_90614,,new_sbaplayer +1894,Tom Murphy,3,,90614,NEW_TEMP_90614,,new_sbaplayer +2990,Tommy Hunter,1,,90615,NEW_TEMP_90615,,new_sbaplayer +4061,Tommy Hunter,4,,90615,NEW_TEMP_90615,,new_sbaplayer +4523,Tommy Hunter,5,,90615,NEW_TEMP_90615,,new_sbaplayer +2991,Tommy La Stella,1,,90616,NEW_TEMP_90616,,new_sbaplayer +892,Tommy La Stella,2,,90616,NEW_TEMP_90616,,new_sbaplayer +1898,Tommy La Stella,3,,90616,NEW_TEMP_90616,,new_sbaplayer +3529,Tommy La Stella,4,,90616,NEW_TEMP_90616,,new_sbaplayer +4567,Tommy La Stella,5,,90616,NEW_TEMP_90616,,new_sbaplayer +2992,Tommy Pham,1,,90617,NEW_TEMP_90617,,new_sbaplayer +894,Tommy Pham,2,,90617,NEW_TEMP_90617,,new_sbaplayer +1900,Tommy Pham,3,,90617,NEW_TEMP_90617,,new_sbaplayer +3530,Tommy Pham,4,,90617,NEW_TEMP_90617,,new_sbaplayer +5140,Tommy Pham,5,,90617,NEW_TEMP_90617,,new_sbaplayer +2993,Tony Kemp,1,,90618,NEW_TEMP_90618,,new_sbaplayer +896,Tony Kemp,2,,90618,NEW_TEMP_90618,,new_sbaplayer +1902,Tony Kemp,3,,90618,NEW_TEMP_90618,,new_sbaplayer +3531,Tony Kemp,4,,90618,NEW_TEMP_90618,,new_sbaplayer +5141,Tony Kemp,5,,90618,NEW_TEMP_90618,,new_sbaplayer +2995,Tony Watson,1,,90619,NEW_TEMP_90619,,new_sbaplayer +897,Tony Watson,2,,90619,NEW_TEMP_90619,,new_sbaplayer +1903,Tony Watson,3,,90619,NEW_TEMP_90619,,new_sbaplayer +4064,Tony Watson,4,,90619,NEW_TEMP_90619,,new_sbaplayer +4741,Tony Watson,5,,90619,NEW_TEMP_90619,,new_sbaplayer +2996,Tony Wolters,1,,90620,NEW_TEMP_90620,,new_sbaplayer +898,Tony Wolters,2,,90620,NEW_TEMP_90620,,new_sbaplayer +1904,Tony Wolters,3,,90620,NEW_TEMP_90620,,new_sbaplayer +3532,Tony Wolters,4,,90620,NEW_TEMP_90620,,new_sbaplayer +5142,Tony Wolters,5,,90620,NEW_TEMP_90620,,new_sbaplayer +2997,Travis Jankowski,1,,90621,NEW_TEMP_90621,,new_sbaplayer +3535,Travis Jankowski,4,,90621,NEW_TEMP_90621,,new_sbaplayer +5145,Travis Jankowski,5,,90621,NEW_TEMP_90621,,new_sbaplayer +2998,Travis Shaw,1,,90622,NEW_TEMP_90622,,new_sbaplayer +902,Travis Shaw,2,,90622,NEW_TEMP_90622,,new_sbaplayer +1908,Travis Shaw,3,,90622,NEW_TEMP_90622,,new_sbaplayer +3536,Travis Shaw,4,,90622,NEW_TEMP_90622,,new_sbaplayer +4728,Travis Shaw,5,,90622,NEW_TEMP_90622,,new_sbaplayer +2999,Trea Turner,1,,90623,NEW_TEMP_90623,,new_sbaplayer +903,Trea Turner,2,,90623,NEW_TEMP_90623,,new_sbaplayer +1909,Trea Turner,3,,90623,NEW_TEMP_90623,,new_sbaplayer +3537,Trea Turner,4,,90623,NEW_TEMP_90623,,new_sbaplayer +4223,Trea Turner,5,,90623,NEW_TEMP_90623,,new_sbaplayer +3000,Trevor Bauer,1,,90624,NEW_TEMP_90624,,new_sbaplayer +906,Trevor Bauer,2,,90624,NEW_TEMP_90624,,new_sbaplayer +1912,Trevor Bauer,3,,90624,NEW_TEMP_90624,,new_sbaplayer +4068,Trevor Bauer,4,,90624,NEW_TEMP_90624,,new_sbaplayer +4162,Trevor Bauer,5,,90624,NEW_TEMP_90624,,new_sbaplayer +3001,Trevor Cahill,1,,90625,NEW_TEMP_90625,,new_sbaplayer +907,Trevor Cahill,2,,90625,NEW_TEMP_90625,,new_sbaplayer +1913,Trevor Cahill,3,,90625,NEW_TEMP_90625,,new_sbaplayer +4069,Trevor Cahill,4,,90625,NEW_TEMP_90625,,new_sbaplayer +4456,Trevor Cahill,5,,90625,NEW_TEMP_90625,,new_sbaplayer +3003,Trevor May,1,,90626,NEW_TEMP_90626,,new_sbaplayer +909,Trevor May,2,,90626,NEW_TEMP_90626,,new_sbaplayer +1915,Trevor May,3,,90626,NEW_TEMP_90626,,new_sbaplayer +4071,Trevor May,4,,90626,NEW_TEMP_90626,,new_sbaplayer +4755,Trevor May,5,,90626,NEW_TEMP_90626,,new_sbaplayer +3004,Trevor Richards,1,,90627,NEW_TEMP_90627,,new_sbaplayer +910,Trevor Richards,2,,90627,NEW_TEMP_90627,,new_sbaplayer +1916,Trevor Richards,3,,90627,NEW_TEMP_90627,,new_sbaplayer +4072,Trevor Richards,4,,90627,NEW_TEMP_90627,,new_sbaplayer +5147,Trevor Richards,5,,90627,NEW_TEMP_90627,,new_sbaplayer +3005,Trevor Story,1,,90628,NEW_TEMP_90628,,new_sbaplayer +911,Trevor Story,2,,90628,NEW_TEMP_90628,,new_sbaplayer +1917,Trevor Story,3,,90628,NEW_TEMP_90628,,new_sbaplayer +3539,Trevor Story,4,,90628,NEW_TEMP_90628,,new_sbaplayer +4224,Trevor Story,5,,90628,NEW_TEMP_90628,,new_sbaplayer +3006,Trevor Williams,1,,90629,NEW_TEMP_90629,,new_sbaplayer +912,Trevor Williams,2,,90629,NEW_TEMP_90629,,new_sbaplayer +1918,Trevor Williams,3,,90629,NEW_TEMP_90629,,new_sbaplayer +4075,Trevor Williams,4,,90629,NEW_TEMP_90629,,new_sbaplayer +5149,Trevor Williams,5,,90629,NEW_TEMP_90629,,new_sbaplayer +3007,Trey Mancini,1,,90630,NEW_TEMP_90630,,new_sbaplayer +913,Trey Mancini,2,,90630,NEW_TEMP_90630,,new_sbaplayer +1919,Trey Mancini,3,,90630,NEW_TEMP_90630,,new_sbaplayer +3008,Tucker Barnhart,1,,90631,NEW_TEMP_90631,,new_sbaplayer +915,Tucker Barnhart,2,,90631,NEW_TEMP_90631,,new_sbaplayer +1921,Tucker Barnhart,3,,90631,NEW_TEMP_90631,,new_sbaplayer +3540,Tucker Barnhart,4,,90631,NEW_TEMP_90631,,new_sbaplayer +4270,Tucker Barnhart,5,,90631,NEW_TEMP_90631,,new_sbaplayer +3009,Ty Blach,1,,90632,NEW_TEMP_90632,,new_sbaplayer +916,Ty Blach,2,,90632,NEW_TEMP_90632,,new_sbaplayer +1922,Ty Blach,3,,90632,NEW_TEMP_90632,,new_sbaplayer +3010,Tyler Anderson,1,,90633,NEW_TEMP_90633,,new_sbaplayer +4079,Tyler Anderson,4,,90633,NEW_TEMP_90633,,new_sbaplayer +4659,Tyler Anderson,5,,90633,NEW_TEMP_90633,,new_sbaplayer +3011,Tyler Austin,1,,90634,NEW_TEMP_90634,,new_sbaplayer +920,Tyler Austin,2,,90634,NEW_TEMP_90634,,new_sbaplayer +1926,Tyler Austin,3,,90634,NEW_TEMP_90634,,new_sbaplayer +3012,Tyler Bashlor,1,,90635,NEW_TEMP_90635,,new_sbaplayer +4080,Tyler Bashlor,4,,90635,NEW_TEMP_90635,,new_sbaplayer +5151,Tyler Bashlor,5,,90635,NEW_TEMP_90635,,new_sbaplayer +3013,Tyler Chatwood,1,,90636,NEW_TEMP_90636,,new_sbaplayer +922,Tyler Chatwood,2,,90636,NEW_TEMP_90636,,new_sbaplayer +1928,Tyler Chatwood,3,,90636,NEW_TEMP_90636,,new_sbaplayer +4081,Tyler Chatwood,4,,90636,NEW_TEMP_90636,,new_sbaplayer +5152,Tyler Chatwood,5,,90636,NEW_TEMP_90636,,new_sbaplayer +3014,Tyler Clippard,1,,90637,NEW_TEMP_90637,,new_sbaplayer +923,Tyler Clippard,2,,90637,NEW_TEMP_90637,,new_sbaplayer +1929,Tyler Clippard,3,,90637,NEW_TEMP_90637,,new_sbaplayer +4082,Tyler Clippard,4,,90637,NEW_TEMP_90637,,new_sbaplayer +4633,Tyler Clippard,5,,90637,NEW_TEMP_90637,,new_sbaplayer +3015,Tyler Flowers,1,,90638,NEW_TEMP_90638,,new_sbaplayer +925,Tyler Flowers,2,,90638,NEW_TEMP_90638,,new_sbaplayer +1931,Tyler Flowers,3,,90638,NEW_TEMP_90638,,new_sbaplayer +3542,Tyler Flowers,4,,90638,NEW_TEMP_90638,,new_sbaplayer +4551,Tyler Flowers,5,,90638,NEW_TEMP_90638,,new_sbaplayer +3016,Tyler Glasnow,1,,90639,NEW_TEMP_90639,,new_sbaplayer +926,Tyler Glasnow,2,,90639,NEW_TEMP_90639,,new_sbaplayer +1932,Tyler Glasnow,3,,90639,NEW_TEMP_90639,,new_sbaplayer +4084,Tyler Glasnow,4,,90639,NEW_TEMP_90639,,new_sbaplayer +4509,Tyler Glasnow,5,,90639,NEW_TEMP_90639,,new_sbaplayer +3017,Tyler Mahle,1,,90640,NEW_TEMP_90640,,new_sbaplayer +928,Tyler Mahle,2,,90640,NEW_TEMP_90640,,new_sbaplayer +1934,Tyler Mahle,3,,90640,NEW_TEMP_90640,,new_sbaplayer +4086,Tyler Mahle,4,,90640,NEW_TEMP_90640,,new_sbaplayer +4474,Tyler Mahle,5,,90640,NEW_TEMP_90640,,new_sbaplayer +3018,Tyler Olson,1,,90641,NEW_TEMP_90641,,new_sbaplayer +931,Tyler Olson,2,,90641,NEW_TEMP_90641,,new_sbaplayer +1937,Tyler Olson,3,,90641,NEW_TEMP_90641,,new_sbaplayer +3019,Tyler ONeill,1,,90642,NEW_TEMP_90642,,new_sbaplayer +930,Tyler ONeill,2,,90642,NEW_TEMP_90642,,new_sbaplayer +1936,Tyler ONeill,3,,90642,NEW_TEMP_90642,,new_sbaplayer +3545,Tyler ONeill,4,,90642,NEW_TEMP_90642,,new_sbaplayer +4460,Tyler ONeill,5,,90642,NEW_TEMP_90642,,new_sbaplayer +3020,Tyler Skaggs,1,,90643,NEW_TEMP_90643,,new_sbaplayer +933,Tyler Skaggs,2,,90643,NEW_TEMP_90643,,new_sbaplayer +1939,Tyler Skaggs,3,,90643,NEW_TEMP_90643,,new_sbaplayer +3021,Tyler White,1,,90644,NEW_TEMP_90644,,new_sbaplayer +936,Tyler White,2,,90644,NEW_TEMP_90644,,new_sbaplayer +1942,Tyler White,3,,90644,NEW_TEMP_90644,,new_sbaplayer +3022,Tyson Ross,1,,90645,NEW_TEMP_90645,,new_sbaplayer +937,Tyson Ross,2,,90645,NEW_TEMP_90645,,new_sbaplayer +1943,Tyson Ross,3,,90645,NEW_TEMP_90645,,new_sbaplayer +3024,Victor Caratini,1,,90646,NEW_TEMP_90646,,new_sbaplayer +939,Victor Caratini,2,,90646,NEW_TEMP_90646,,new_sbaplayer +1945,Victor Caratini,3,,90646,NEW_TEMP_90646,,new_sbaplayer +3550,Victor Caratini,4,,90646,NEW_TEMP_90646,,new_sbaplayer +5155,Victor Caratini,5,,90646,NEW_TEMP_90646,,new_sbaplayer +3026,Victor Reyes,1,,90647,NEW_TEMP_90647,,new_sbaplayer +940,Victor Reyes,2,,90647,NEW_TEMP_90647,,new_sbaplayer +1946,Victor Reyes,3,,90647,NEW_TEMP_90647,,new_sbaplayer +3551,Victor Reyes,4,,90647,NEW_TEMP_90647,,new_sbaplayer +4647,Victor Reyes,5,,90647,NEW_TEMP_90647,,new_sbaplayer +3027,Vince Velasquez,1,,90648,NEW_TEMP_90648,,new_sbaplayer +942,Vince Velasquez,2,,90648,NEW_TEMP_90648,,new_sbaplayer +1948,Vince Velasquez,3,,90648,NEW_TEMP_90648,,new_sbaplayer +4093,Vince Velasquez,4,,90648,NEW_TEMP_90648,,new_sbaplayer +4610,Vince Velasquez,5,,90648,NEW_TEMP_90648,,new_sbaplayer +3028,Wade Davis,1,,90649,NEW_TEMP_90649,,new_sbaplayer +944,Wade Davis,2,,90649,NEW_TEMP_90649,,new_sbaplayer +1950,Wade Davis,3,,90649,NEW_TEMP_90649,,new_sbaplayer +3029,Wade LeBlanc,1,,90650,NEW_TEMP_90650,,new_sbaplayer +945,Wade LeBlanc,2,,90650,NEW_TEMP_90650,,new_sbaplayer +1951,Wade LeBlanc,3,,90650,NEW_TEMP_90650,,new_sbaplayer +4094,Wade LeBlanc,4,,90650,NEW_TEMP_90650,,new_sbaplayer +5158,Wade LeBlanc,5,,90650,NEW_TEMP_90650,,new_sbaplayer +3030,Wade Miley,1,,90651,NEW_TEMP_90651,,new_sbaplayer +946,Wade Miley,2,,90651,NEW_TEMP_90651,,new_sbaplayer +1952,Wade Miley,3,,90651,NEW_TEMP_90651,,new_sbaplayer +4095,Wade Miley,4,,90651,NEW_TEMP_90651,,new_sbaplayer +5159,Wade Miley,5,,90651,NEW_TEMP_90651,,new_sbaplayer +3031,Walker Buehler,1,,90652,NEW_TEMP_90652,,new_sbaplayer +947,Walker Buehler,2,,90652,NEW_TEMP_90652,,new_sbaplayer +1953,Walker Buehler,3,,90652,NEW_TEMP_90652,,new_sbaplayer +4096,Walker Buehler,4,,90652,NEW_TEMP_90652,,new_sbaplayer +4634,Walker Buehler,5,,90652,NEW_TEMP_90652,,new_sbaplayer +3032,Wander Suero,1,,90653,NEW_TEMP_90653,,new_sbaplayer +949,Wander Suero,2,,90653,NEW_TEMP_90653,,new_sbaplayer +1955,Wander Suero,3,,90653,NEW_TEMP_90653,,new_sbaplayer +4098,Wander Suero,4,,90653,NEW_TEMP_90653,,new_sbaplayer +4512,Wander Suero,5,,90653,NEW_TEMP_90653,,new_sbaplayer +3033,Wandy Peralta,1,,90654,NEW_TEMP_90654,,new_sbaplayer +950,Wandy Peralta,2,,90654,NEW_TEMP_90654,,new_sbaplayer +1956,Wandy Peralta,3,,90654,NEW_TEMP_90654,,new_sbaplayer +4099,Wandy Peralta,4,,90654,NEW_TEMP_90654,,new_sbaplayer +4679,Wandy Peralta,5,,90654,NEW_TEMP_90654,,new_sbaplayer +3034,Wei Yin Chen,1,,90655,NEW_TEMP_90655,,new_sbaplayer +952,Wei Yin Chen,2,,90655,NEW_TEMP_90655,,new_sbaplayer +1958,Wei Yin Chen,3,,90655,NEW_TEMP_90655,,new_sbaplayer +3035,Welington Castillo,1,,90656,NEW_TEMP_90656,,new_sbaplayer +953,Welington Castillo,2,,90656,NEW_TEMP_90656,,new_sbaplayer +1959,Welington Castillo,3,,90656,NEW_TEMP_90656,,new_sbaplayer +3036,Whit Merrifield,1,,90657,NEW_TEMP_90657,,new_sbaplayer +955,Whit Merrifield,2,,90657,NEW_TEMP_90657,,new_sbaplayer +1961,Whit Merrifield,3,,90657,NEW_TEMP_90657,,new_sbaplayer +3555,Whit Merrifield,4,,90657,NEW_TEMP_90657,,new_sbaplayer +4611,Whit Merrifield,5,,90657,NEW_TEMP_90657,,new_sbaplayer +3037,Wil Myers,1,,90658,NEW_TEMP_90658,,new_sbaplayer +956,Wil Myers,2,,90658,NEW_TEMP_90658,,new_sbaplayer +1962,Wil Myers,3,,90658,NEW_TEMP_90658,,new_sbaplayer +3556,Wil Myers,4,,90658,NEW_TEMP_90658,,new_sbaplayer +4267,Wil Myers,5,,90658,NEW_TEMP_90658,,new_sbaplayer +3038,Will Harris,1,,90659,NEW_TEMP_90659,,new_sbaplayer +959,Will Harris,2,,90659,NEW_TEMP_90659,,new_sbaplayer +1965,Will Harris,3,,90659,NEW_TEMP_90659,,new_sbaplayer +4102,Will Harris,4,,90659,NEW_TEMP_90659,,new_sbaplayer +4537,Will Harris,5,,90659,NEW_TEMP_90659,,new_sbaplayer +3039,Will Smith,1,,90660,NEW_TEMP_90660,,new_sbaplayer +960,Will Smith,2,,90660,NEW_TEMP_90660,,new_sbaplayer +1966,Will Smith,3,,90660,NEW_TEMP_90660,,new_sbaplayer +4103,Will Smith,4,,90660,NEW_TEMP_90660,,new_sbaplayer +4660,Will Smith,5,,90660,NEW_TEMP_90660,,new_sbaplayer +3040,Willie Calhoun,1,,90661,NEW_TEMP_90661,,new_sbaplayer +963,Willie Calhoun,2,,90661,NEW_TEMP_90661,,new_sbaplayer +1969,Willie Calhoun,3,,90661,NEW_TEMP_90661,,new_sbaplayer +3560,Willie Calhoun,4,,90661,NEW_TEMP_90661,,new_sbaplayer +5162,Willie Calhoun,5,,90661,NEW_TEMP_90661,,new_sbaplayer +3041,Willson Contreras,1,,90662,NEW_TEMP_90662,,new_sbaplayer +964,Willson Contreras,2,,90662,NEW_TEMP_90662,,new_sbaplayer +1970,Willson Contreras,3,,90662,NEW_TEMP_90662,,new_sbaplayer +3561,Willson Contreras,4,,90662,NEW_TEMP_90662,,new_sbaplayer +4505,Willson Contreras,5,,90662,NEW_TEMP_90662,,new_sbaplayer +3042,Willy Adames,1,,90663,NEW_TEMP_90663,,new_sbaplayer +965,Willy Adames,2,,90663,NEW_TEMP_90663,,new_sbaplayer +1971,Willy Adames,3,,90663,NEW_TEMP_90663,,new_sbaplayer +3562,Willy Adames,4,,90663,NEW_TEMP_90663,,new_sbaplayer +4225,Willy Adames,5,,90663,NEW_TEMP_90663,,new_sbaplayer +3043,Wilmer Difo,1,,90664,NEW_TEMP_90664,,new_sbaplayer +966,Wilmer Difo,2,,90664,NEW_TEMP_90664,,new_sbaplayer +1972,Wilmer Difo,3,,90664,NEW_TEMP_90664,,new_sbaplayer +3044,Wilmer Flores,1,,90665,NEW_TEMP_90665,,new_sbaplayer +967,Wilmer Flores,2,,90665,NEW_TEMP_90665,,new_sbaplayer +1973,Wilmer Flores,3,,90665,NEW_TEMP_90665,,new_sbaplayer +3563,Wilmer Flores,4,,90665,NEW_TEMP_90665,,new_sbaplayer +4403,Wilmer Flores,5,,90665,NEW_TEMP_90665,,new_sbaplayer +3045,Wily Peralta,1,,90666,NEW_TEMP_90666,,new_sbaplayer +970,Wily Peralta,2,,90666,NEW_TEMP_90666,,new_sbaplayer +1976,Wily Peralta,3,,90666,NEW_TEMP_90666,,new_sbaplayer +3046,Xander Bogaerts,1,,90667,NEW_TEMP_90667,,new_sbaplayer +971,Xander Bogaerts,2,,90667,NEW_TEMP_90667,,new_sbaplayer +1977,Xander Bogaerts,3,,90667,NEW_TEMP_90667,,new_sbaplayer +3566,Xander Bogaerts,4,,90667,NEW_TEMP_90667,,new_sbaplayer +4358,Xander Bogaerts,5,,90667,NEW_TEMP_90667,,new_sbaplayer +3048,Yadiel Rivera,1,,90668,NEW_TEMP_90668,,new_sbaplayer +972,Yadiel Rivera,2,,90668,NEW_TEMP_90668,,new_sbaplayer +1978,Yadiel Rivera,3,,90668,NEW_TEMP_90668,,new_sbaplayer +3049,Yadier Molina,1,,90669,NEW_TEMP_90669,,new_sbaplayer +973,Yadier Molina,2,,90669,NEW_TEMP_90669,,new_sbaplayer +1979,Yadier Molina,3,,90669,NEW_TEMP_90669,,new_sbaplayer +3568,Yadier Molina,4,,90669,NEW_TEMP_90669,,new_sbaplayer +4674,Yadier Molina,5,,90669,NEW_TEMP_90669,,new_sbaplayer +3050,Yairo Munoz,1,,90670,NEW_TEMP_90670,,new_sbaplayer +974,Yairo Munoz,2,,90670,NEW_TEMP_90670,,new_sbaplayer +1980,Yairo Munoz,3,,90670,NEW_TEMP_90670,,new_sbaplayer +3569,Yairo Munoz,4,,90670,NEW_TEMP_90670,,new_sbaplayer +4143,Yairo Munoz,5,,90670,NEW_TEMP_90670,,new_sbaplayer +3051,Yan Gomes,1,,90671,NEW_TEMP_90671,,new_sbaplayer +975,Yan Gomes,2,,90671,NEW_TEMP_90671,,new_sbaplayer +1981,Yan Gomes,3,,90671,NEW_TEMP_90671,,new_sbaplayer +3570,Yan Gomes,4,,90671,NEW_TEMP_90671,,new_sbaplayer +4356,Yan Gomes,5,,90671,NEW_TEMP_90671,,new_sbaplayer +3052,Yangervis Solarte,1,,90672,NEW_TEMP_90672,,new_sbaplayer +977,Yangervis Solarte,2,,90672,NEW_TEMP_90672,,new_sbaplayer +1983,Yangervis Solarte,3,,90672,NEW_TEMP_90672,,new_sbaplayer +3053,Yasiel Puig,1,,90673,NEW_TEMP_90673,,new_sbaplayer +978,Yasiel Puig,2,,90673,NEW_TEMP_90673,,new_sbaplayer +1984,Yasiel Puig,3,,90673,NEW_TEMP_90673,,new_sbaplayer +3054,Yasmani Grandal,1,,90674,NEW_TEMP_90674,,new_sbaplayer +979,Yasmani Grandal,2,,90674,NEW_TEMP_90674,,new_sbaplayer +1985,Yasmani Grandal,3,,90674,NEW_TEMP_90674,,new_sbaplayer +3572,Yasmani Grandal,4,,90674,NEW_TEMP_90674,,new_sbaplayer +4527,Yasmani Grandal,5,,90674,NEW_TEMP_90674,,new_sbaplayer +3056,Yoan Moncada,1,,90675,NEW_TEMP_90675,,new_sbaplayer +983,Yoan Moncada,2,,90675,NEW_TEMP_90675,,new_sbaplayer +1989,Yoan Moncada,3,,90675,NEW_TEMP_90675,,new_sbaplayer +3573,Yoan Moncada,4,,90675,NEW_TEMP_90675,,new_sbaplayer +4612,Yoan Moncada,5,,90675,NEW_TEMP_90675,,new_sbaplayer +3057,Yoenis Cespedes,1,,90676,NEW_TEMP_90676,,new_sbaplayer +3574,Yoenis Cespedes,4,,90676,NEW_TEMP_90676,,new_sbaplayer +5166,Yoenis Cespedes,5,,90676,NEW_TEMP_90676,,new_sbaplayer +3058,Yolmer Sanchez,1,,90677,NEW_TEMP_90677,,new_sbaplayer +984,Yolmer Sanchez,2,,90677,NEW_TEMP_90677,,new_sbaplayer +1990,Yolmer Sanchez,3,,90677,NEW_TEMP_90677,,new_sbaplayer +3575,Yolmer Sanchez,4,,90677,NEW_TEMP_90677,,new_sbaplayer +4126,Yolmer Sanchez,5,,90677,NEW_TEMP_90677,,new_sbaplayer +3059,Yonder Alonso,1,,90678,NEW_TEMP_90678,,new_sbaplayer +986,Yonder Alonso,2,,90678,NEW_TEMP_90678,,new_sbaplayer +1992,Yonder Alonso,3,,90678,NEW_TEMP_90678,,new_sbaplayer +3060,Yonny Chirinos,1,,90679,NEW_TEMP_90679,,new_sbaplayer +987,Yonny Chirinos,2,,90679,NEW_TEMP_90679,,new_sbaplayer +1993,Yonny Chirinos,3,,90679,NEW_TEMP_90679,,new_sbaplayer +4109,Yonny Chirinos,4,,90679,NEW_TEMP_90679,,new_sbaplayer +4347,Yonny Chirinos,5,,90679,NEW_TEMP_90679,,new_sbaplayer +3061,Yoshihisa Hirano,1,,90680,NEW_TEMP_90680,,new_sbaplayer +989,Yoshihisa Hirano,2,,90680,NEW_TEMP_90680,,new_sbaplayer +1995,Yoshihisa Hirano,3,,90680,NEW_TEMP_90680,,new_sbaplayer +4110,Yoshihisa Hirano,4,,90680,NEW_TEMP_90680,,new_sbaplayer +5167,Yoshihisa Hirano,5,,90680,NEW_TEMP_90680,,new_sbaplayer +3063,Yuli Gurriel,1,,90681,NEW_TEMP_90681,,new_sbaplayer +992,Yuli Gurriel,2,,90681,NEW_TEMP_90681,,new_sbaplayer +1998,Yuli Gurriel,3,,90681,NEW_TEMP_90681,,new_sbaplayer +3577,Yuli Gurriel,4,,90681,NEW_TEMP_90681,,new_sbaplayer +5168,Yuli Gurriel,5,,90681,NEW_TEMP_90681,,new_sbaplayer +3064,Yusmeiro Petit,1,,90682,NEW_TEMP_90682,,new_sbaplayer +994,Yusmeiro Petit,2,,90682,NEW_TEMP_90682,,new_sbaplayer +2000,Yusmeiro Petit,3,,90682,NEW_TEMP_90682,,new_sbaplayer +4113,Yusmeiro Petit,4,,90682,NEW_TEMP_90682,,new_sbaplayer +4374,Yusmeiro Petit,5,,90682,NEW_TEMP_90682,,new_sbaplayer +3066,Zach Eflin,1,,90683,NEW_TEMP_90683,,new_sbaplayer +998,Zach Eflin,2,,90683,NEW_TEMP_90683,,new_sbaplayer +2004,Zach Eflin,3,,90683,NEW_TEMP_90683,,new_sbaplayer +4117,Zach Eflin,4,,90683,NEW_TEMP_90683,,new_sbaplayer +4252,Zach Eflin,5,,90683,NEW_TEMP_90683,,new_sbaplayer +3067,Zack Britton,1,,90684,NEW_TEMP_90684,,new_sbaplayer +2006,Zack Britton,3,,90684,NEW_TEMP_90684,,new_sbaplayer +4119,Zack Britton,4,,90684,NEW_TEMP_90684,,new_sbaplayer +4507,Zack Britton,5,,90684,NEW_TEMP_90684,,new_sbaplayer +3068,Zack Cozart,1,,90685,NEW_TEMP_90685,,new_sbaplayer +1002,Zack Cozart,2,,90685,NEW_TEMP_90685,,new_sbaplayer +2008,Zack Cozart,3,,90685,NEW_TEMP_90685,,new_sbaplayer +3069,Zack Godley,1,,90686,NEW_TEMP_90686,,new_sbaplayer +1003,Zack Godley,2,,90686,NEW_TEMP_90686,,new_sbaplayer +2009,Zack Godley,3,,90686,NEW_TEMP_90686,,new_sbaplayer +4121,Zack Godley,4,,90686,NEW_TEMP_90686,,new_sbaplayer +5172,Zack Godley,5,,90686,NEW_TEMP_90686,,new_sbaplayer +3070,Zack Greinke,1,,90687,NEW_TEMP_90687,,new_sbaplayer +1004,Zack Greinke,2,,90687,NEW_TEMP_90687,,new_sbaplayer +2010,Zack Greinke,3,,90687,NEW_TEMP_90687,,new_sbaplayer +4122,Zack Greinke,4,,90687,NEW_TEMP_90687,,new_sbaplayer +4431,Zack Greinke,5,,90687,NEW_TEMP_90687,,new_sbaplayer +3071,Zack Wheeler,1,,90688,NEW_TEMP_90688,,new_sbaplayer +1006,Zack Wheeler,2,,90688,NEW_TEMP_90688,,new_sbaplayer +2012,Zack Wheeler,3,,90688,NEW_TEMP_90688,,new_sbaplayer +4123,Zack Wheeler,4,,90688,NEW_TEMP_90688,,new_sbaplayer +4145,Zack Wheeler,5,,90688,NEW_TEMP_90688,,new_sbaplayer +1,AJ Cole,2,,90689,NEW_TEMP_90689,,new_sbaplayer +1007,AJ Cole,3,,90689,NEW_TEMP_90689,,new_sbaplayer +3593,AJ Cole,4,,90689,NEW_TEMP_90689,,new_sbaplayer +4314,AJ Cole,5,,90689,NEW_TEMP_90689,,new_sbaplayer +5,Aaron Brooks,2,,90690,NEW_TEMP_90690,,new_sbaplayer +1011,Aaron Brooks,3,,90690,NEW_TEMP_90690,,new_sbaplayer +7,Aaron Civale,2,,90691,NEW_TEMP_90691,,new_sbaplayer +1013,Aaron Civale,3,,90691,NEW_TEMP_90691,,new_sbaplayer +3580,Aaron Civale,4,,90691,NEW_TEMP_90691,,new_sbaplayer +4689,Aaron Civale,5,,90691,NEW_TEMP_90691,,new_sbaplayer +12,Abraham Toro,2,,90692,NEW_TEMP_90692,,new_sbaplayer +1018,Abraham Toro,3,,90692,NEW_TEMP_90692,,new_sbaplayer +3074,Abraham Toro,4,,90692,NEW_TEMP_90692,,new_sbaplayer +4774,Abraham Toro,5,,90692,NEW_TEMP_90692,,new_sbaplayer +13,Adalberto Mejia,2,,90693,NEW_TEMP_90693,,new_sbaplayer +1019,Adalberto Mejia,3,,90693,NEW_TEMP_90693,,new_sbaplayer +15,Adam Cimber,2,,90694,NEW_TEMP_90694,,new_sbaplayer +1021,Adam Cimber,3,,90694,NEW_TEMP_90694,,new_sbaplayer +3584,Adam Cimber,4,,90694,NEW_TEMP_90694,,new_sbaplayer +4706,Adam Cimber,5,,90694,NEW_TEMP_90694,,new_sbaplayer +21,Adam Haseley,2,,90695,NEW_TEMP_90695,,new_sbaplayer +1027,Adam Haseley,3,,90695,NEW_TEMP_90695,,new_sbaplayer +3080,Adam Haseley,4,,90695,NEW_TEMP_90695,,new_sbaplayer +4776,Adam Haseley,5,,90695,NEW_TEMP_90695,,new_sbaplayer +26,Adam Plutko,2,,90696,NEW_TEMP_90696,,new_sbaplayer +1032,Adam Plutko,3,,90696,NEW_TEMP_90696,,new_sbaplayer +3588,Adam Plutko,4,,90696,NEW_TEMP_90696,,new_sbaplayer +4738,Adam Plutko,5,,90696,NEW_TEMP_90696,,new_sbaplayer +27,Adam Wainwright,2,,90697,NEW_TEMP_90697,,new_sbaplayer +1033,Adam Wainwright,3,,90697,NEW_TEMP_90697,,new_sbaplayer +3589,Adam Wainwright,4,,90697,NEW_TEMP_90697,,new_sbaplayer +4642,Adam Wainwright,5,,90697,NEW_TEMP_90697,,new_sbaplayer +31,Adrian Houser,2,,90698,NEW_TEMP_90698,,new_sbaplayer +1037,Adrian Houser,3,,90698,NEW_TEMP_90698,,new_sbaplayer +3591,Adrian Houser,4,,90698,NEW_TEMP_90698,,new_sbaplayer +4779,Adrian Houser,5,,90698,NEW_TEMP_90698,,new_sbaplayer +32,Adrian Sampson,2,,90699,NEW_TEMP_90699,,new_sbaplayer +1038,Adrian Sampson,3,,90699,NEW_TEMP_90699,,new_sbaplayer +35,Alec Mills,2,,90700,NEW_TEMP_90700,,new_sbaplayer +1041,Alec Mills,3,,90700,NEW_TEMP_90700,,new_sbaplayer +3595,Alec Mills,4,,90700,NEW_TEMP_90700,,new_sbaplayer +4734,Alec Mills,5,,90700,NEW_TEMP_90700,,new_sbaplayer +41,Alex Dickerson,2,,90701,NEW_TEMP_90701,,new_sbaplayer +1047,Alex Dickerson,3,,90701,NEW_TEMP_90701,,new_sbaplayer +3090,Alex Dickerson,4,,90701,NEW_TEMP_90701,,new_sbaplayer +4484,Alex Dickerson,5,,90701,NEW_TEMP_90701,,new_sbaplayer +43,Alex McRae,2,,90702,NEW_TEMP_90702,,new_sbaplayer +1049,Alex McRae,3,,90702,NEW_TEMP_90702,,new_sbaplayer +44,Alex Verdugo,2,,90703,NEW_TEMP_90703,,new_sbaplayer +1050,Alex Verdugo,3,,90703,NEW_TEMP_90703,,new_sbaplayer +3092,Alex Verdugo,4,,90703,NEW_TEMP_90703,,new_sbaplayer +4197,Alex Verdugo,5,,90703,NEW_TEMP_90703,,new_sbaplayer +46,Alex Young,2,,90704,NEW_TEMP_90704,,new_sbaplayer +1052,Alex Young,3,,90704,NEW_TEMP_90704,,new_sbaplayer +3601,Alex Young,4,,90704,NEW_TEMP_90704,,new_sbaplayer +4785,Alex Young,5,,90704,NEW_TEMP_90704,,new_sbaplayer +54,Andrew Kittredge,2,,90705,NEW_TEMP_90705,,new_sbaplayer +1060,Andrew Kittredge,3,,90705,NEW_TEMP_90705,,new_sbaplayer +3606,Andrew Kittredge,4,,90705,NEW_TEMP_90705,,new_sbaplayer +4376,Andrew Kittredge,5,,90705,NEW_TEMP_90705,,new_sbaplayer +60,Anthony Bass,2,,90706,NEW_TEMP_90706,,new_sbaplayer +1066,Anthony Bass,3,,90706,NEW_TEMP_90706,,new_sbaplayer +3612,Anthony Bass,4,,90706,NEW_TEMP_90706,,new_sbaplayer +4531,Anthony Bass,5,,90706,NEW_TEMP_90706,,new_sbaplayer +64,Anthony Santander,2,,90707,NEW_TEMP_90707,,new_sbaplayer +1070,Anthony Santander,3,,90707,NEW_TEMP_90707,,new_sbaplayer +3108,Anthony Santander,4,,90707,NEW_TEMP_90707,,new_sbaplayer +4191,Anthony Santander,5,,90707,NEW_TEMP_90707,,new_sbaplayer +69,Aristides Aquino,2,,90708,NEW_TEMP_90708,,new_sbaplayer +1075,Aristides Aquino,3,,90708,NEW_TEMP_90708,,new_sbaplayer +3109,Aristides Aquino,4,,90708,NEW_TEMP_90708,,new_sbaplayer +4796,Aristides Aquino,5,,90708,NEW_TEMP_90708,,new_sbaplayer +72,Asher Wojciechowski,2,,90709,NEW_TEMP_90709,,new_sbaplayer +1078,Asher Wojciechowski,3,,90709,NEW_TEMP_90709,,new_sbaplayer +3619,Asher Wojciechowski,4,,90709,NEW_TEMP_90709,,new_sbaplayer +4797,Asher Wojciechowski,5,,90709,NEW_TEMP_90709,,new_sbaplayer +73,Austin Adams,2,,90710,NEW_TEMP_90710,,new_sbaplayer +1079,Austin Adams,3,,90710,NEW_TEMP_90710,,new_sbaplayer +74,Austin Allen,2,,90711,NEW_TEMP_90711,,new_sbaplayer +1080,Austin Allen,3,,90711,NEW_TEMP_90711,,new_sbaplayer +3111,Austin Allen,4,,90711,NEW_TEMP_90711,,new_sbaplayer +4799,Austin Allen,5,,90711,NEW_TEMP_90711,,new_sbaplayer +76,Austin Brice,2,,90712,NEW_TEMP_90712,,new_sbaplayer +1082,Austin Brice,3,,90712,NEW_TEMP_90712,,new_sbaplayer +3621,Austin Brice,4,,90712,NEW_TEMP_90712,,new_sbaplayer +4800,Austin Brice,5,,90712,NEW_TEMP_90712,,new_sbaplayer +77,Austin Dean,2,,90713,NEW_TEMP_90713,,new_sbaplayer +1083,Austin Dean,3,,90713,NEW_TEMP_90713,,new_sbaplayer +78,Austin Hays,2,,90714,NEW_TEMP_90714,,new_sbaplayer +1084,Austin Hays,3,,90714,NEW_TEMP_90714,,new_sbaplayer +3113,Austin Hays,4,,90714,NEW_TEMP_90714,,new_sbaplayer +4354,Austin Hays,5,,90714,NEW_TEMP_90714,,new_sbaplayer +80,Austin Meadows,2,,90715,NEW_TEMP_90715,,new_sbaplayer +1086,Austin Meadows,3,,90715,NEW_TEMP_90715,,new_sbaplayer +3115,Austin Meadows,4,,90715,NEW_TEMP_90715,,new_sbaplayer +4713,Austin Meadows,5,,90715,NEW_TEMP_90715,,new_sbaplayer +81,Austin Nola,2,,90716,NEW_TEMP_90716,,new_sbaplayer +1087,Austin Nola,3,,90716,NEW_TEMP_90716,,new_sbaplayer +3116,Austin Nola,4,,90716,NEW_TEMP_90716,,new_sbaplayer +4329,Austin Nola,5,,90716,NEW_TEMP_90716,,new_sbaplayer +83,Austin Riley,2,,90717,NEW_TEMP_90717,,new_sbaplayer +1089,Austin Riley,3,,90717,NEW_TEMP_90717,,new_sbaplayer +3117,Austin Riley,4,,90717,NEW_TEMP_90717,,new_sbaplayer +4803,Austin Riley,5,,90717,NEW_TEMP_90717,,new_sbaplayer +86,Austin Voth,2,,90718,NEW_TEMP_90718,,new_sbaplayer +1092,Austin Voth,3,,90718,NEW_TEMP_90718,,new_sbaplayer +3624,Austin Voth,4,,90718,NEW_TEMP_90718,,new_sbaplayer +4702,Austin Voth,5,,90718,NEW_TEMP_90718,,new_sbaplayer +98,Bo Bichette,2,,90719,NEW_TEMP_90719,,new_sbaplayer +1104,Bo Bichette,3,,90719,NEW_TEMP_90719,,new_sbaplayer +3124,Bo Bichette,4,,90719,NEW_TEMP_90719,,new_sbaplayer +4286,Bo Bichette,5,,90719,NEW_TEMP_90719,,new_sbaplayer +103,Brad Miller,2,,90720,NEW_TEMP_90720,,new_sbaplayer +1109,Brad Miller,3,,90720,NEW_TEMP_90720,,new_sbaplayer +3126,Brad Miller,4,,90720,NEW_TEMP_90720,,new_sbaplayer +4453,Brad Miller,5,,90720,NEW_TEMP_90720,,new_sbaplayer +105,Brad Wieck,2,,90721,NEW_TEMP_90721,,new_sbaplayer +1111,Brad Wieck,3,,90721,NEW_TEMP_90721,,new_sbaplayer +106,Branden Kline,2,,90722,NEW_TEMP_90722,,new_sbaplayer +1112,Branden Kline,3,,90722,NEW_TEMP_90722,,new_sbaplayer +108,Brandon Brennan,2,,90723,NEW_TEMP_90723,,new_sbaplayer +1114,Brandon Brennan,3,,90723,NEW_TEMP_90723,,new_sbaplayer +3638,Brandon Brennan,4,,90723,NEW_TEMP_90723,,new_sbaplayer +4563,Brandon Brennan,5,,90723,NEW_TEMP_90723,,new_sbaplayer +111,Brandon Drury,2,,90724,NEW_TEMP_90724,,new_sbaplayer +1117,Brandon Drury,3,,90724,NEW_TEMP_90724,,new_sbaplayer +3131,Brandon Drury,4,,90724,NEW_TEMP_90724,,new_sbaplayer +4812,Brandon Drury,5,,90724,NEW_TEMP_90724,,new_sbaplayer +113,Brandon Lowe,2,,90725,NEW_TEMP_90725,,new_sbaplayer +1119,Brandon Lowe,3,,90725,NEW_TEMP_90725,,new_sbaplayer +3132,Brandon Lowe,4,,90725,NEW_TEMP_90725,,new_sbaplayer +4183,Brandon Lowe,5,,90725,NEW_TEMP_90725,,new_sbaplayer +115,Brandon Woodruff,2,,90726,NEW_TEMP_90726,,new_sbaplayer +1121,Brandon Woodruff,3,,90726,NEW_TEMP_90726,,new_sbaplayer +3641,Brandon Woodruff,4,,90726,NEW_TEMP_90726,,new_sbaplayer +4234,Brandon Woodruff,5,,90726,NEW_TEMP_90726,,new_sbaplayer +116,Brandon Workman,2,,90727,NEW_TEMP_90727,,new_sbaplayer +1122,Brandon Workman,3,,90727,NEW_TEMP_90727,,new_sbaplayer +3642,Brandon Workman,4,,90727,NEW_TEMP_90727,,new_sbaplayer +4813,Brandon Workman,5,,90727,NEW_TEMP_90727,,new_sbaplayer +117,Brendan McKay,2,,90728,NEW_TEMP_90728,,new_sbaplayer +1123,Brendan McKay,3,,90728,NEW_TEMP_90728,,new_sbaplayer +118,Brendan Rodgers,2,,90729,NEW_TEMP_90729,,new_sbaplayer +1124,Brendan Rodgers,3,,90729,NEW_TEMP_90729,,new_sbaplayer +3134,Brendan Rodgers,4,,90729,NEW_TEMP_90729,,new_sbaplayer +4815,Brendan Rodgers,5,,90729,NEW_TEMP_90729,,new_sbaplayer +122,Brett Martin,2,,90730,NEW_TEMP_90730,,new_sbaplayer +1128,Brett Martin,3,,90730,NEW_TEMP_90730,,new_sbaplayer +3646,Brett Martin,4,,90730,NEW_TEMP_90730,,new_sbaplayer +4482,Brett Martin,5,,90730,NEW_TEMP_90730,,new_sbaplayer +127,Brian Goodwin,2,,90731,NEW_TEMP_90731,,new_sbaplayer +1133,Brian Goodwin,3,,90731,NEW_TEMP_90731,,new_sbaplayer +3140,Brian Goodwin,4,,90731,NEW_TEMP_90731,,new_sbaplayer +4818,Brian Goodwin,5,,90731,NEW_TEMP_90731,,new_sbaplayer +130,Brock Burke,2,,90732,NEW_TEMP_90732,,new_sbaplayer +1136,Brock Burke,3,,90732,NEW_TEMP_90732,,new_sbaplayer +132,Brock Stewart,2,,90733,NEW_TEMP_90733,,new_sbaplayer +1138,Brock Stewart,3,,90733,NEW_TEMP_90733,,new_sbaplayer +134,Bryan Reynolds,2,,90734,NEW_TEMP_90734,,new_sbaplayer +1140,Bryan Reynolds,3,,90734,NEW_TEMP_90734,,new_sbaplayer +3143,Bryan Reynolds,4,,90734,NEW_TEMP_90734,,new_sbaplayer +4618,Bryan Reynolds,5,,90734,NEW_TEMP_90734,,new_sbaplayer +137,Bubba Starling,2,,90735,NEW_TEMP_90735,,new_sbaplayer +1143,Bubba Starling,3,,90735,NEW_TEMP_90735,,new_sbaplayer +3145,Bubba Starling,4,,90735,NEW_TEMP_90735,,new_sbaplayer +4822,Bubba Starling,5,,90735,NEW_TEMP_90735,,new_sbaplayer +139,Buddy Boshers,2,,90736,NEW_TEMP_90736,,new_sbaplayer +1145,Buddy Boshers,3,,90736,NEW_TEMP_90736,,new_sbaplayer +141,Byron Buxton,2,,90737,NEW_TEMP_90737,,new_sbaplayer +1147,Byron Buxton,3,,90737,NEW_TEMP_90737,,new_sbaplayer +3146,Byron Buxton,4,,90737,NEW_TEMP_90737,,new_sbaplayer +4130,Byron Buxton,5,,90737,NEW_TEMP_90737,,new_sbaplayer +143,Cal Quantrill,2,,90738,NEW_TEMP_90738,,new_sbaplayer +1149,Cal Quantrill,3,,90738,NEW_TEMP_90738,,new_sbaplayer +3654,Cal Quantrill,4,,90738,NEW_TEMP_90738,,new_sbaplayer +4373,Cal Quantrill,5,,90738,NEW_TEMP_90738,,new_sbaplayer +144,Caleb Ferguson,2,,90739,NEW_TEMP_90739,,new_sbaplayer +1150,Caleb Ferguson,3,,90739,NEW_TEMP_90739,,new_sbaplayer +3656,Caleb Ferguson,4,,90739,NEW_TEMP_90739,,new_sbaplayer +4677,Caleb Ferguson,5,,90739,NEW_TEMP_90739,,new_sbaplayer +148,Cameron Maybin,2,,90740,NEW_TEMP_90740,,new_sbaplayer +1154,Cameron Maybin,3,,90740,NEW_TEMP_90740,,new_sbaplayer +3148,Cameron Maybin,4,,90740,NEW_TEMP_90740,,new_sbaplayer +4824,Cameron Maybin,5,,90740,NEW_TEMP_90740,,new_sbaplayer +151,Carlos Estevez,2,,90741,NEW_TEMP_90741,,new_sbaplayer +1157,Carlos Estevez,3,,90741,NEW_TEMP_90741,,new_sbaplayer +3662,Carlos Estevez,4,,90741,NEW_TEMP_90741,,new_sbaplayer +4825,Carlos Estevez,5,,90741,NEW_TEMP_90741,,new_sbaplayer +157,Carson Fulmer,2,,90742,NEW_TEMP_90742,,new_sbaplayer +1163,Carson Fulmer,3,,90742,NEW_TEMP_90742,,new_sbaplayer +3666,Carson Fulmer,4,,90742,NEW_TEMP_90742,,new_sbaplayer +4467,Carson Fulmer,5,,90742,NEW_TEMP_90742,,new_sbaplayer +158,Carson Kelly,2,,90743,NEW_TEMP_90743,,new_sbaplayer +1164,Carson Kelly,3,,90743,NEW_TEMP_90743,,new_sbaplayer +3151,Carson Kelly,4,,90743,NEW_TEMP_90743,,new_sbaplayer +4829,Carson Kelly,5,,90743,NEW_TEMP_90743,,new_sbaplayer +159,Casey Sadler,2,,90744,NEW_TEMP_90744,,new_sbaplayer +1165,Casey Sadler,3,,90744,NEW_TEMP_90744,,new_sbaplayer +3668,Casey Sadler,4,,90744,NEW_TEMP_90744,,new_sbaplayer +4831,Casey Sadler,5,,90744,NEW_TEMP_90744,,new_sbaplayer +160,Cavan Biggio,2,,90745,NEW_TEMP_90745,,new_sbaplayer +1166,Cavan Biggio,3,,90745,NEW_TEMP_90745,,new_sbaplayer +3153,Cavan Biggio,4,,90745,NEW_TEMP_90745,,new_sbaplayer +4299,Cavan Biggio,5,,90745,NEW_TEMP_90745,,new_sbaplayer +164,Cesar Puello,2,,90746,NEW_TEMP_90746,,new_sbaplayer +1170,Cesar Puello,3,,90746,NEW_TEMP_90746,,new_sbaplayer +168,Chad Sobotka,2,,90747,NEW_TEMP_90747,,new_sbaplayer +1174,Chad Sobotka,3,,90747,NEW_TEMP_90747,,new_sbaplayer +176,Cheslor Cuthbert,2,,90748,NEW_TEMP_90748,,new_sbaplayer +1182,Cheslor Cuthbert,3,,90748,NEW_TEMP_90748,,new_sbaplayer +177,Chi Chi Gonzalez,2,,90749,NEW_TEMP_90749,,new_sbaplayer +1183,Chi Chi Gonzalez,3,,90749,NEW_TEMP_90749,,new_sbaplayer +3678,Chi Chi Gonzalez,4,,90749,NEW_TEMP_90749,,new_sbaplayer +4712,Chi Chi Gonzalez,5,,90749,NEW_TEMP_90749,,new_sbaplayer +179,Chris Bassitt,2,,90750,NEW_TEMP_90750,,new_sbaplayer +1185,Chris Bassitt,3,,90750,NEW_TEMP_90750,,new_sbaplayer +3679,Chris Bassitt,4,,90750,NEW_TEMP_90750,,new_sbaplayer +4188,Chris Bassitt,5,,90750,NEW_TEMP_90750,,new_sbaplayer +186,Chris Paddack,2,,90751,NEW_TEMP_90751,,new_sbaplayer +1192,Chris Paddack,3,,90751,NEW_TEMP_90751,,new_sbaplayer +3682,Chris Paddack,4,,90751,NEW_TEMP_90751,,new_sbaplayer +4698,Chris Paddack,5,,90751,NEW_TEMP_90751,,new_sbaplayer +191,Christian Walker,2,,90752,NEW_TEMP_90752,,new_sbaplayer +1197,Christian Walker,3,,90752,NEW_TEMP_90752,,new_sbaplayer +3167,Christian Walker,4,,90752,NEW_TEMP_90752,,new_sbaplayer +4619,Christian Walker,5,,90752,NEW_TEMP_90752,,new_sbaplayer +193,Christin Stewart,2,,90753,NEW_TEMP_90753,,new_sbaplayer +1199,Christin Stewart,3,,90753,NEW_TEMP_90753,,new_sbaplayer +3169,Christin Stewart,4,,90753,NEW_TEMP_90753,,new_sbaplayer +4840,Christin Stewart,5,,90753,NEW_TEMP_90753,,new_sbaplayer +195,Clay Holmes,2,,90754,NEW_TEMP_90754,,new_sbaplayer +1201,Clay Holmes,3,,90754,NEW_TEMP_90754,,new_sbaplayer +198,Clint Frazier,2,,90755,NEW_TEMP_90755,,new_sbaplayer +1204,Clint Frazier,3,,90755,NEW_TEMP_90755,,new_sbaplayer +3171,Clint Frazier,4,,90755,NEW_TEMP_90755,,new_sbaplayer +4186,Clint Frazier,5,,90755,NEW_TEMP_90755,,new_sbaplayer +200,Cody Stashak,2,,90756,NEW_TEMP_90756,,new_sbaplayer +1206,Cody Stashak,3,,90756,NEW_TEMP_90756,,new_sbaplayer +3689,Cody Stashak,4,,90756,NEW_TEMP_90756,,new_sbaplayer +4583,Cody Stashak,5,,90756,NEW_TEMP_90756,,new_sbaplayer +202,Cole Irvin,2,,90757,NEW_TEMP_90757,,new_sbaplayer +1208,Cole Irvin,3,,90757,NEW_TEMP_90757,,new_sbaplayer +203,Cole Tucker,2,,90758,NEW_TEMP_90758,,new_sbaplayer +1209,Cole Tucker,3,,90758,NEW_TEMP_90758,,new_sbaplayer +3173,Cole Tucker,4,,90758,NEW_TEMP_90758,,new_sbaplayer +4843,Cole Tucker,5,,90758,NEW_TEMP_90758,,new_sbaplayer +205,Colin Poche,2,,90759,NEW_TEMP_90759,,new_sbaplayer +1211,Colin Poche,3,,90759,NEW_TEMP_90759,,new_sbaplayer +207,Colten Brewer,2,,90760,NEW_TEMP_90760,,new_sbaplayer +1213,Colten Brewer,3,,90760,NEW_TEMP_90760,,new_sbaplayer +3692,Colten Brewer,4,,90760,NEW_TEMP_90760,,new_sbaplayer +4732,Colten Brewer,5,,90760,NEW_TEMP_90760,,new_sbaplayer +208,Corban Joseph,2,,90761,NEW_TEMP_90761,,new_sbaplayer +1214,Corban Joseph,3,,90761,NEW_TEMP_90761,,new_sbaplayer +212,Corey Seager,2,,90762,NEW_TEMP_90762,,new_sbaplayer +1218,Corey Seager,3,,90762,NEW_TEMP_90762,,new_sbaplayer +3176,Corey Seager,4,,90762,NEW_TEMP_90762,,new_sbaplayer +4233,Corey Seager,5,,90762,NEW_TEMP_90762,,new_sbaplayer +213,Cory Gearrin,2,,90763,NEW_TEMP_90763,,new_sbaplayer +1219,Cory Gearrin,3,,90763,NEW_TEMP_90763,,new_sbaplayer +218,Curtis Granderson,2,,90764,NEW_TEMP_90764,,new_sbaplayer +1224,Curtis Granderson,3,,90764,NEW_TEMP_90764,,new_sbaplayer +219,Dakota Hudson,2,,90765,NEW_TEMP_90765,,new_sbaplayer +1225,Dakota Hudson,3,,90765,NEW_TEMP_90765,,new_sbaplayer +3703,Dakota Hudson,4,,90765,NEW_TEMP_90765,,new_sbaplayer +4477,Dakota Hudson,5,,90765,NEW_TEMP_90765,,new_sbaplayer +224,Daniel Hudson,2,,90766,NEW_TEMP_90766,,new_sbaplayer +1230,Daniel Hudson,3,,90766,NEW_TEMP_90766,,new_sbaplayer +3710,Daniel Hudson,4,,90766,NEW_TEMP_90766,,new_sbaplayer +4851,Daniel Hudson,5,,90766,NEW_TEMP_90766,,new_sbaplayer +229,Daniel Ponce de Leon,2,,90767,NEW_TEMP_90767,,new_sbaplayer +1235,Daniel Ponce de Leon,3,,90767,NEW_TEMP_90767,,new_sbaplayer +3713,Daniel Ponce de Leon,4,,90767,NEW_TEMP_90767,,new_sbaplayer +4853,Daniel Ponce de Leon,5,,90767,NEW_TEMP_90767,,new_sbaplayer +232,Daniel Vogelbach,2,,90768,NEW_TEMP_90768,,new_sbaplayer +1238,Daniel Vogelbach,3,,90768,NEW_TEMP_90768,,new_sbaplayer +3180,Daniel Vogelbach,4,,90768,NEW_TEMP_90768,,new_sbaplayer +4855,Daniel Vogelbach,5,,90768,NEW_TEMP_90768,,new_sbaplayer +235,Danny Santana,2,,90769,NEW_TEMP_90769,,new_sbaplayer +1241,Danny Santana,3,,90769,NEW_TEMP_90769,,new_sbaplayer +3183,Danny Santana,4,,90769,NEW_TEMP_90769,,new_sbaplayer +4856,Danny Santana,5,,90769,NEW_TEMP_90769,,new_sbaplayer +237,Dario Agrazal,2,,90770,NEW_TEMP_90770,,new_sbaplayer +1243,Dario Agrazal,3,,90770,NEW_TEMP_90770,,new_sbaplayer +238,Darwinzon Hernandez,2,,90771,NEW_TEMP_90771,,new_sbaplayer +1244,Darwinzon Hernandez,3,,90771,NEW_TEMP_90771,,new_sbaplayer +3716,Darwinzon Hernandez,4,,90771,NEW_TEMP_90771,,new_sbaplayer +4220,Darwinzon Hernandez,5,,90771,NEW_TEMP_90771,,new_sbaplayer +243,David Hale,2,,90772,NEW_TEMP_90772,,new_sbaplayer +1249,David Hale,3,,90772,NEW_TEMP_90772,,new_sbaplayer +3717,David Hale,4,,90772,NEW_TEMP_90772,,new_sbaplayer +4405,David Hale,5,,90772,NEW_TEMP_90772,,new_sbaplayer +246,David McKay,2,,90773,NEW_TEMP_90773,,new_sbaplayer +1252,David McKay,3,,90773,NEW_TEMP_90773,,new_sbaplayer +248,David Phelps,2,,90774,NEW_TEMP_90774,,new_sbaplayer +1254,David Phelps,3,,90774,NEW_TEMP_90774,,new_sbaplayer +3719,David Phelps,4,,90774,NEW_TEMP_90774,,new_sbaplayer +4694,David Phelps,5,,90774,NEW_TEMP_90774,,new_sbaplayer +250,Dawel Lugo,2,,90775,NEW_TEMP_90775,,new_sbaplayer +1256,Dawel Lugo,3,,90775,NEW_TEMP_90775,,new_sbaplayer +255,Derek Fisher,2,,90776,NEW_TEMP_90776,,new_sbaplayer +1261,Derek Fisher,3,,90776,NEW_TEMP_90776,,new_sbaplayer +3195,Derek Fisher,4,,90776,NEW_TEMP_90776,,new_sbaplayer +4865,Derek Fisher,5,,90776,NEW_TEMP_90776,,new_sbaplayer +257,Derek Law,2,,90777,NEW_TEMP_90777,,new_sbaplayer +1263,Derek Law,3,,90777,NEW_TEMP_90777,,new_sbaplayer +258,Devin Smeltzer,2,,90778,NEW_TEMP_90778,,new_sbaplayer +1264,Devin Smeltzer,3,,90778,NEW_TEMP_90778,,new_sbaplayer +3726,Devin Smeltzer,4,,90778,NEW_TEMP_90778,,new_sbaplayer +4867,Devin Smeltzer,5,,90778,NEW_TEMP_90778,,new_sbaplayer +262,Dillon Peters,2,,90779,NEW_TEMP_90779,,new_sbaplayer +1268,Dillon Peters,3,,90779,NEW_TEMP_90779,,new_sbaplayer +263,Dinelson Lamet,2,,90780,NEW_TEMP_90780,,new_sbaplayer +1269,Dinelson Lamet,3,,90780,NEW_TEMP_90780,,new_sbaplayer +3730,Dinelson Lamet,4,,90780,NEW_TEMP_90780,,new_sbaplayer +4180,Dinelson Lamet,5,,90780,NEW_TEMP_90780,,new_sbaplayer +265,DJ Stewart,2,,90781,NEW_TEMP_90781,,new_sbaplayer +1271,DJ Stewart,3,,90781,NEW_TEMP_90781,,new_sbaplayer +3199,DJ Stewart,4,,90781,NEW_TEMP_90781,,new_sbaplayer +4382,DJ Stewart,5,,90781,NEW_TEMP_90781,,new_sbaplayer +268,Dominic Leone,2,,90782,NEW_TEMP_90782,,new_sbaplayer +1274,Dominic Leone,3,,90782,NEW_TEMP_90782,,new_sbaplayer +3731,Dominic Leone,4,,90782,NEW_TEMP_90782,,new_sbaplayer +4870,Dominic Leone,5,,90782,NEW_TEMP_90782,,new_sbaplayer +270,Donovan Solano,2,,90783,NEW_TEMP_90783,,new_sbaplayer +1276,Donovan Solano,3,,90783,NEW_TEMP_90783,,new_sbaplayer +3202,Donovan Solano,4,,90783,NEW_TEMP_90783,,new_sbaplayer +4306,Donovan Solano,5,,90783,NEW_TEMP_90783,,new_sbaplayer +272,Drew Smyly,2,,90784,NEW_TEMP_90784,,new_sbaplayer +1278,Drew Smyly,3,,90784,NEW_TEMP_90784,,new_sbaplayer +3736,Drew Smyly,4,,90784,NEW_TEMP_90784,,new_sbaplayer +4535,Drew Smyly,5,,90784,NEW_TEMP_90784,,new_sbaplayer +274,Dustin Garneau,2,,90785,NEW_TEMP_90785,,new_sbaplayer +1280,Dustin Garneau,3,,90785,NEW_TEMP_90785,,new_sbaplayer +3204,Dustin Garneau,4,,90785,NEW_TEMP_90785,,new_sbaplayer +4876,Dustin Garneau,5,,90785,NEW_TEMP_90785,,new_sbaplayer +275,Dustin May,2,,90786,NEW_TEMP_90786,,new_sbaplayer +1281,Dustin May,3,,90786,NEW_TEMP_90786,,new_sbaplayer +3738,Dustin May,4,,90786,NEW_TEMP_90786,,new_sbaplayer +4284,Dustin May,5,,90786,NEW_TEMP_90786,,new_sbaplayer +276,Dwight Smith Jr,2,,90787,NEW_TEMP_90787,,new_sbaplayer +1282,Dwight Smith Jr,3,,90787,NEW_TEMP_90787,,new_sbaplayer +3205,Dwight Smith Jr,4,,90787,NEW_TEMP_90787,,new_sbaplayer +4877,Dwight Smith Jr,5,,90787,NEW_TEMP_90787,,new_sbaplayer +278,Dylan Cease,2,,90788,NEW_TEMP_90788,,new_sbaplayer +1284,Dylan Cease,3,,90788,NEW_TEMP_90788,,new_sbaplayer +3740,Dylan Cease,4,,90788,NEW_TEMP_90788,,new_sbaplayer +4765,Dylan Cease,5,,90788,NEW_TEMP_90788,,new_sbaplayer +281,Dylan Moore,2,,90789,NEW_TEMP_90789,,new_sbaplayer +1287,Dylan Moore,3,,90789,NEW_TEMP_90789,,new_sbaplayer +3207,Dylan Moore,4,,90789,NEW_TEMP_90789,,new_sbaplayer +4167,Dylan Moore,5,,90789,NEW_TEMP_90789,,new_sbaplayer +283,Edgar Garcia,2,,90790,NEW_TEMP_90790,,new_sbaplayer +1289,Edgar Garcia,3,,90790,NEW_TEMP_90790,,new_sbaplayer +293,Eloy Jimenez,2,,90791,NEW_TEMP_90791,,new_sbaplayer +1299,Eloy Jimenez,3,,90791,NEW_TEMP_90791,,new_sbaplayer +3217,Eloy Jimenez,4,,90791,NEW_TEMP_90791,,new_sbaplayer +4391,Eloy Jimenez,5,,90791,NEW_TEMP_90791,,new_sbaplayer +295,Elvis Luciano,2,,90792,NEW_TEMP_90792,,new_sbaplayer +1301,Elvis Luciano,3,,90792,NEW_TEMP_90792,,new_sbaplayer +301,Eric Sogard,2,,90793,NEW_TEMP_90793,,new_sbaplayer +1307,Eric Sogard,3,,90793,NEW_TEMP_90793,,new_sbaplayer +3223,Eric Sogard,4,,90793,NEW_TEMP_90793,,new_sbaplayer +4890,Eric Sogard,5,,90793,NEW_TEMP_90793,,new_sbaplayer +305,Erik Swanson,2,,90794,NEW_TEMP_90794,,new_sbaplayer +1311,Erik Swanson,3,,90794,NEW_TEMP_90794,,new_sbaplayer +3751,Erik Swanson,4,,90794,NEW_TEMP_90794,,new_sbaplayer +4892,Erik Swanson,5,,90794,NEW_TEMP_90794,,new_sbaplayer +308,Evan Marshall,2,,90795,NEW_TEMP_90795,,new_sbaplayer +1314,Evan Marshall,3,,90795,NEW_TEMP_90795,,new_sbaplayer +3752,Evan Marshall,4,,90795,NEW_TEMP_90795,,new_sbaplayer +4498,Evan Marshall,5,,90795,NEW_TEMP_90795,,new_sbaplayer +309,Evan Phillips,2,,90796,NEW_TEMP_90796,,new_sbaplayer +1315,Evan Phillips,3,,90796,NEW_TEMP_90796,,new_sbaplayer +3753,Evan Phillips,4,,90796,NEW_TEMP_90796,,new_sbaplayer +4722,Evan Phillips,5,,90796,NEW_TEMP_90796,,new_sbaplayer +314,Fernando Tatis Jr,2,,90797,NEW_TEMP_90797,,new_sbaplayer +1320,Fernando Tatis Jr,3,,90797,NEW_TEMP_90797,,new_sbaplayer +3230,Fernando Tatis Jr,4,,90797,NEW_TEMP_90797,,new_sbaplayer +4182,Fernando Tatis Jr,5,,90797,NEW_TEMP_90797,,new_sbaplayer +315,Framber Valdez,2,,90798,NEW_TEMP_90798,,new_sbaplayer +1321,Framber Valdez,3,,90798,NEW_TEMP_90798,,new_sbaplayer +3755,Framber Valdez,4,,90798,NEW_TEMP_90798,,new_sbaplayer +4398,Framber Valdez,5,,90798,NEW_TEMP_90798,,new_sbaplayer +319,Francisco Mejia,2,,90799,NEW_TEMP_90799,,new_sbaplayer +1325,Francisco Mejia,3,,90799,NEW_TEMP_90799,,new_sbaplayer +3234,Francisco Mejia,4,,90799,NEW_TEMP_90799,,new_sbaplayer +4894,Francisco Mejia,5,,90799,NEW_TEMP_90799,,new_sbaplayer +320,Frankie Montas,2,,90800,NEW_TEMP_90800,,new_sbaplayer +1326,Frankie Montas,3,,90800,NEW_TEMP_90800,,new_sbaplayer +3756,Frankie Montas,4,,90800,NEW_TEMP_90800,,new_sbaplayer +4895,Frankie Montas,5,,90800,NEW_TEMP_90800,,new_sbaplayer +325,Gabriel Ynoa,2,,90801,NEW_TEMP_90801,,new_sbaplayer +1331,Gabriel Ynoa,3,,90801,NEW_TEMP_90801,,new_sbaplayer +326,Garrett Cooper,2,,90802,NEW_TEMP_90802,,new_sbaplayer +1332,Garrett Cooper,3,,90802,NEW_TEMP_90802,,new_sbaplayer +3239,Garrett Cooper,4,,90802,NEW_TEMP_90802,,new_sbaplayer +4547,Garrett Cooper,5,,90802,NEW_TEMP_90802,,new_sbaplayer +327,Garrett Hampson,2,,90803,NEW_TEMP_90803,,new_sbaplayer +1333,Garrett Hampson,3,,90803,NEW_TEMP_90803,,new_sbaplayer +3240,Garrett Hampson,4,,90803,NEW_TEMP_90803,,new_sbaplayer +4899,Garrett Hampson,5,,90803,NEW_TEMP_90803,,new_sbaplayer +329,Gavin Lux,2,,90804,NEW_TEMP_90804,,new_sbaplayer +1335,Gavin Lux,3,,90804,NEW_TEMP_90804,,new_sbaplayer +3242,Gavin Lux,4,,90804,NEW_TEMP_90804,,new_sbaplayer +4193,Gavin Lux,5,,90804,NEW_TEMP_90804,,new_sbaplayer +330,Geoff Hartlieb,2,,90805,NEW_TEMP_90805,,new_sbaplayer +1336,Geoff Hartlieb,3,,90805,NEW_TEMP_90805,,new_sbaplayer +3763,Geoff Hartlieb,4,,90805,NEW_TEMP_90805,,new_sbaplayer +4901,Geoff Hartlieb,5,,90805,NEW_TEMP_90805,,new_sbaplayer +333,Gerardo Reyes,2,,90806,NEW_TEMP_90806,,new_sbaplayer +1339,Gerardo Reyes,3,,90806,NEW_TEMP_90806,,new_sbaplayer +338,Gio Urshela,2,,90807,NEW_TEMP_90807,,new_sbaplayer +1344,Gio Urshela,3,,90807,NEW_TEMP_90807,,new_sbaplayer +3245,Gio Urshela,4,,90807,NEW_TEMP_90807,,new_sbaplayer +4150,Gio Urshela,5,,90807,NEW_TEMP_90807,,new_sbaplayer +339,Giovanny Gallegos,2,,90808,NEW_TEMP_90808,,new_sbaplayer +1345,Giovanny Gallegos,3,,90808,NEW_TEMP_90808,,new_sbaplayer +3767,Giovanny Gallegos,4,,90808,NEW_TEMP_90808,,new_sbaplayer +4903,Giovanny Gallegos,5,,90808,NEW_TEMP_90808,,new_sbaplayer +340,Glenn Sparkman,2,,90809,NEW_TEMP_90809,,new_sbaplayer +1346,Glenn Sparkman,3,,90809,NEW_TEMP_90809,,new_sbaplayer +342,Gordon Beckham,2,,90810,NEW_TEMP_90810,,new_sbaplayer +1348,Gordon Beckham,3,,90810,NEW_TEMP_90810,,new_sbaplayer +343,Grayson Greiner,2,,90811,NEW_TEMP_90811,,new_sbaplayer +1349,Grayson Greiner,3,,90811,NEW_TEMP_90811,,new_sbaplayer +3247,Grayson Greiner,4,,90811,NEW_TEMP_90811,,new_sbaplayer +4905,Grayson Greiner,5,,90811,NEW_TEMP_90811,,new_sbaplayer +348,Gregory Soto,2,,90812,NEW_TEMP_90812,,new_sbaplayer +1354,Gregory Soto,3,,90812,NEW_TEMP_90812,,new_sbaplayer +3770,Gregory Soto,4,,90812,NEW_TEMP_90812,,new_sbaplayer +4708,Gregory Soto,5,,90812,NEW_TEMP_90812,,new_sbaplayer +349,Griffin Canning,2,,90813,NEW_TEMP_90813,,new_sbaplayer +1355,Griffin Canning,3,,90813,NEW_TEMP_90813,,new_sbaplayer +3771,Griffin Canning,4,,90813,NEW_TEMP_90813,,new_sbaplayer +4396,Griffin Canning,5,,90813,NEW_TEMP_90813,,new_sbaplayer +352,Hanser Alberto,2,,90814,NEW_TEMP_90814,,new_sbaplayer +1358,Hanser Alberto,3,,90814,NEW_TEMP_90814,,new_sbaplayer +3252,Hanser Alberto,4,,90814,NEW_TEMP_90814,,new_sbaplayer +4609,Hanser Alberto,5,,90814,NEW_TEMP_90814,,new_sbaplayer +353,Harold Castro,2,,90815,NEW_TEMP_90815,,new_sbaplayer +1359,Harold Castro,3,,90815,NEW_TEMP_90815,,new_sbaplayer +3253,Harold Castro,4,,90815,NEW_TEMP_90815,,new_sbaplayer +4438,Harold Castro,5,,90815,NEW_TEMP_90815,,new_sbaplayer +354,Harold Ramirez,2,,90816,NEW_TEMP_90816,,new_sbaplayer +1360,Harold Ramirez,3,,90816,NEW_TEMP_90816,,new_sbaplayer +358,Hector Noesi,2,,90817,NEW_TEMP_90817,,new_sbaplayer +1364,Hector Noesi,3,,90817,NEW_TEMP_90817,,new_sbaplayer +365,Humberto Arteaga,2,,90818,NEW_TEMP_90818,,new_sbaplayer +1371,Humberto Arteaga,3,,90818,NEW_TEMP_90818,,new_sbaplayer +375,Ildemaro Vargas,2,,90819,NEW_TEMP_90819,,new_sbaplayer +1381,Ildemaro Vargas,3,,90819,NEW_TEMP_90819,,new_sbaplayer +3260,Ildemaro Vargas,4,,90819,NEW_TEMP_90819,,new_sbaplayer +4921,Ildemaro Vargas,5,,90819,NEW_TEMP_90819,,new_sbaplayer +376,Isan Diaz,2,,90820,NEW_TEMP_90820,,new_sbaplayer +1382,Isan Diaz,3,,90820,NEW_TEMP_90820,,new_sbaplayer +3262,Isan Diaz,4,,90820,NEW_TEMP_90820,,new_sbaplayer +4923,Isan Diaz,5,,90820,NEW_TEMP_90820,,new_sbaplayer +380,JB Wendelken,2,,90821,NEW_TEMP_90821,,new_sbaplayer +1386,JB Wendelken,3,,90821,NEW_TEMP_90821,,new_sbaplayer +3812,JB Wendelken,4,,90821,NEW_TEMP_90821,,new_sbaplayer +4332,JB Wendelken,5,,90821,NEW_TEMP_90821,,new_sbaplayer +381,JD Davis,2,,90822,NEW_TEMP_90822,,new_sbaplayer +1387,JD Davis,3,,90822,NEW_TEMP_90822,,new_sbaplayer +3286,JD Davis,4,,90822,NEW_TEMP_90822,,new_sbaplayer +4772,JD Davis,5,,90822,NEW_TEMP_90822,,new_sbaplayer +383,JP Crawford,2,,90823,NEW_TEMP_90823,,new_sbaplayer +1389,JP Crawford,3,,90823,NEW_TEMP_90823,,new_sbaplayer +3341,JP Crawford,4,,90823,NEW_TEMP_90823,,new_sbaplayer +4343,JP Crawford,5,,90823,NEW_TEMP_90823,,new_sbaplayer +388,Jack Mayfield,2,,90824,NEW_TEMP_90824,,new_sbaplayer +1394,Jack Mayfield,3,,90824,NEW_TEMP_90824,,new_sbaplayer +3265,Jack Mayfield,4,,90824,NEW_TEMP_90824,,new_sbaplayer +4926,Jack Mayfield,5,,90824,NEW_TEMP_90824,,new_sbaplayer +392,Jacob Stallings,2,,90825,NEW_TEMP_90825,,new_sbaplayer +1398,Jacob Stallings,3,,90825,NEW_TEMP_90825,,new_sbaplayer +3268,Jacob Stallings,4,,90825,NEW_TEMP_90825,,new_sbaplayer +4292,Jacob Stallings,5,,90825,NEW_TEMP_90825,,new_sbaplayer +393,Jacob Waguespack,2,,90826,NEW_TEMP_90826,,new_sbaplayer +1399,Jacob Waguespack,3,,90826,NEW_TEMP_90826,,new_sbaplayer +3792,Jacob Waguespack,4,,90826,NEW_TEMP_90826,,new_sbaplayer +4928,Jacob Waguespack,5,,90826,NEW_TEMP_90826,,new_sbaplayer +394,Jacob Webb,2,,90827,NEW_TEMP_90827,,new_sbaplayer +1400,Jacob Webb,3,,90827,NEW_TEMP_90827,,new_sbaplayer +3793,Jacob Webb,4,,90827,NEW_TEMP_90827,,new_sbaplayer +4463,Jacob Webb,5,,90827,NEW_TEMP_90827,,new_sbaplayer +397,Jairo Diaz,2,,90828,NEW_TEMP_90828,,new_sbaplayer +1403,Jairo Diaz,3,,90828,NEW_TEMP_90828,,new_sbaplayer +3795,Jairo Diaz,4,,90828,NEW_TEMP_90828,,new_sbaplayer +4929,Jairo Diaz,5,,90828,NEW_TEMP_90828,,new_sbaplayer +401,Jake Diekman,2,,90829,NEW_TEMP_90829,,new_sbaplayer +1407,Jake Diekman,3,,90829,NEW_TEMP_90829,,new_sbaplayer +3797,Jake Diekman,4,,90829,NEW_TEMP_90829,,new_sbaplayer +4173,Jake Diekman,5,,90829,NEW_TEMP_90829,,new_sbaplayer +402,Jake Jewell,2,,90830,NEW_TEMP_90830,,new_sbaplayer +1408,Jake Jewell,3,,90830,NEW_TEMP_90830,,new_sbaplayer +406,Jake Newberry,2,,90831,NEW_TEMP_90831,,new_sbaplayer +1412,Jake Newberry,3,,90831,NEW_TEMP_90831,,new_sbaplayer +3799,Jake Newberry,4,,90831,NEW_TEMP_90831,,new_sbaplayer +4932,Jake Newberry,5,,90831,NEW_TEMP_90831,,new_sbaplayer +408,Jake Rogers,2,,90832,NEW_TEMP_90832,,new_sbaplayer +1414,Jake Rogers,3,,90832,NEW_TEMP_90832,,new_sbaplayer +414,Jandel Gustave,2,,90833,NEW_TEMP_90833,,new_sbaplayer +1420,Jandel Gustave,3,,90833,NEW_TEMP_90833,,new_sbaplayer +416,Jared Walsh,2,,90834,NEW_TEMP_90834,,new_sbaplayer +1422,Jared Walsh,3,,90834,NEW_TEMP_90834,,new_sbaplayer +3278,Jared Walsh,4,,90834,NEW_TEMP_90834,,new_sbaplayer +4367,Jared Walsh,5,,90834,NEW_TEMP_90834,,new_sbaplayer +419,Jason Castro,2,,90835,NEW_TEMP_90835,,new_sbaplayer +1425,Jason Castro,3,,90835,NEW_TEMP_90835,,new_sbaplayer +3280,Jason Castro,4,,90835,NEW_TEMP_90835,,new_sbaplayer +4941,Jason Castro,5,,90835,NEW_TEMP_90835,,new_sbaplayer +426,Jay Jackson,2,,90836,NEW_TEMP_90836,,new_sbaplayer +1432,Jay Jackson,3,,90836,NEW_TEMP_90836,,new_sbaplayer +429,Jeff Brigham,2,,90837,NEW_TEMP_90837,,new_sbaplayer +1435,Jeff Brigham,3,,90837,NEW_TEMP_90837,,new_sbaplayer +430,Jeff Hoffman,2,,90838,NEW_TEMP_90838,,new_sbaplayer +1436,Jeff Hoffman,3,,90838,NEW_TEMP_90838,,new_sbaplayer +3813,Jeff Hoffman,4,,90838,NEW_TEMP_90838,,new_sbaplayer +4943,Jeff Hoffman,5,,90838,NEW_TEMP_90838,,new_sbaplayer +433,Jeff Samardzija,2,,90839,NEW_TEMP_90839,,new_sbaplayer +1439,Jeff Samardzija,3,,90839,NEW_TEMP_90839,,new_sbaplayer +3814,Jeff Samardzija,4,,90839,NEW_TEMP_90839,,new_sbaplayer +4944,Jeff Samardzija,5,,90839,NEW_TEMP_90839,,new_sbaplayer +437,Jerad Eickhoff,2,,90840,NEW_TEMP_90840,,new_sbaplayer +1443,Jerad Eickhoff,3,,90840,NEW_TEMP_90840,,new_sbaplayer +445,Jesus Luzardo,2,,90841,NEW_TEMP_90841,,new_sbaplayer +1451,Jesus Luzardo,3,,90841,NEW_TEMP_90841,,new_sbaplayer +3819,Jesus Luzardo,4,,90841,NEW_TEMP_90841,,new_sbaplayer +4550,Jesus Luzardo,5,,90841,NEW_TEMP_90841,,new_sbaplayer +447,Jesus Tinoco,2,,90842,NEW_TEMP_90842,,new_sbaplayer +1453,Jesus Tinoco,3,,90842,NEW_TEMP_90842,,new_sbaplayer +3820,Jesus Tinoco,4,,90842,NEW_TEMP_90842,,new_sbaplayer +4229,Jesus Tinoco,5,,90842,NEW_TEMP_90842,,new_sbaplayer +451,Jimmy Cordero,2,,90843,NEW_TEMP_90843,,new_sbaplayer +1457,Jimmy Cordero,3,,90843,NEW_TEMP_90843,,new_sbaplayer +3822,Jimmy Cordero,4,,90843,NEW_TEMP_90843,,new_sbaplayer +4948,Jimmy Cordero,5,,90843,NEW_TEMP_90843,,new_sbaplayer +453,Joakim Soria,2,,90844,NEW_TEMP_90844,,new_sbaplayer +1459,Joakim Soria,3,,90844,NEW_TEMP_90844,,new_sbaplayer +3824,Joakim Soria,4,,90844,NEW_TEMP_90844,,new_sbaplayer +4604,Joakim Soria,5,,90844,NEW_TEMP_90844,,new_sbaplayer +460,Joe Ross,2,,90845,NEW_TEMP_90845,,new_sbaplayer +1466,Joe Ross,3,,90845,NEW_TEMP_90845,,new_sbaplayer +471,John Means,2,,90846,NEW_TEMP_90846,,new_sbaplayer +1477,John Means,3,,90846,NEW_TEMP_90846,,new_sbaplayer +3834,John Means,4,,90846,NEW_TEMP_90846,,new_sbaplayer +4364,John Means,5,,90846,NEW_TEMP_90846,,new_sbaplayer +473,Jon Berti,2,,90847,NEW_TEMP_90847,,new_sbaplayer +1479,Jon Berti,3,,90847,NEW_TEMP_90847,,new_sbaplayer +3307,Jon Berti,4,,90847,NEW_TEMP_90847,,new_sbaplayer +4411,Jon Berti,5,,90847,NEW_TEMP_90847,,new_sbaplayer +474,Jon Duplantier,2,,90848,NEW_TEMP_90848,,new_sbaplayer +1480,Jon Duplantier,3,,90848,NEW_TEMP_90848,,new_sbaplayer +478,Jonathan Davis,2,,90849,NEW_TEMP_90849,,new_sbaplayer +1484,Jonathan Davis,3,,90849,NEW_TEMP_90849,,new_sbaplayer +3311,Jonathan Davis,4,,90849,NEW_TEMP_90849,,new_sbaplayer +4158,Jonathan Davis,5,,90849,NEW_TEMP_90849,,new_sbaplayer +480,Jonathan Loaisiga,2,,90850,NEW_TEMP_90850,,new_sbaplayer +1486,Jonathan Loaisiga,3,,90850,NEW_TEMP_90850,,new_sbaplayer +3842,Jonathan Loaisiga,4,,90850,NEW_TEMP_90850,,new_sbaplayer +4433,Jonathan Loaisiga,5,,90850,NEW_TEMP_90850,,new_sbaplayer +485,Jordan Luplow,2,,90851,NEW_TEMP_90851,,new_sbaplayer +1491,Jordan Luplow,3,,90851,NEW_TEMP_90851,,new_sbaplayer +3314,Jordan Luplow,4,,90851,NEW_TEMP_90851,,new_sbaplayer +4965,Jordan Luplow,5,,90851,NEW_TEMP_90851,,new_sbaplayer +486,Jordan Lyles,2,,90852,NEW_TEMP_90852,,new_sbaplayer +1492,Jordan Lyles,3,,90852,NEW_TEMP_90852,,new_sbaplayer +3843,Jordan Lyles,4,,90852,NEW_TEMP_90852,,new_sbaplayer +4966,Jordan Lyles,5,,90852,NEW_TEMP_90852,,new_sbaplayer +487,Jordan Yamamoto,2,,90853,NEW_TEMP_90853,,new_sbaplayer +1493,Jordan Yamamoto,3,,90853,NEW_TEMP_90853,,new_sbaplayer +3847,Jordan Yamamoto,4,,90853,NEW_TEMP_90853,,new_sbaplayer +4967,Jordan Yamamoto,5,,90853,NEW_TEMP_90853,,new_sbaplayer +491,Jorge Lopez,2,,90854,NEW_TEMP_90854,,new_sbaplayer +1497,Jorge Lopez,3,,90854,NEW_TEMP_90854,,new_sbaplayer +3849,Jorge Lopez,4,,90854,NEW_TEMP_90854,,new_sbaplayer +4971,Jorge Lopez,5,,90854,NEW_TEMP_90854,,new_sbaplayer +499,Jose Cisnero,2,,90855,NEW_TEMP_90855,,new_sbaplayer +1505,Jose Cisnero,3,,90855,NEW_TEMP_90855,,new_sbaplayer +3853,Jose Cisnero,4,,90855,NEW_TEMP_90855,,new_sbaplayer +4530,Jose Cisnero,5,,90855,NEW_TEMP_90855,,new_sbaplayer +505,Jose Quijada,2,,90856,NEW_TEMP_90856,,new_sbaplayer +1511,Jose Quijada,3,,90856,NEW_TEMP_90856,,new_sbaplayer +508,Jose Rondon,2,,90857,NEW_TEMP_90857,,new_sbaplayer +1514,Jose Rondon,3,,90857,NEW_TEMP_90857,,new_sbaplayer +509,Jose Ruiz,2,,90858,NEW_TEMP_90858,,new_sbaplayer +1515,Jose Ruiz,3,,90858,NEW_TEMP_90858,,new_sbaplayer +510,Jose Suarez,2,,90859,NEW_TEMP_90859,,new_sbaplayer +1516,Jose Suarez,3,,90859,NEW_TEMP_90859,,new_sbaplayer +511,Jose Trevino,2,,90860,NEW_TEMP_90860,,new_sbaplayer +1517,Jose Trevino,3,,90860,NEW_TEMP_90860,,new_sbaplayer +3330,Jose Trevino,4,,90860,NEW_TEMP_90860,,new_sbaplayer +4555,Jose Trevino,5,,90860,NEW_TEMP_90860,,new_sbaplayer +513,Jose Urquidy,2,,90861,NEW_TEMP_90861,,new_sbaplayer +1519,Jose Urquidy,3,,90861,NEW_TEMP_90861,,new_sbaplayer +3856,Jose Urquidy,4,,90861,NEW_TEMP_90861,,new_sbaplayer +4246,Jose Urquidy,5,,90861,NEW_TEMP_90861,,new_sbaplayer +515,Josh Donaldson,2,,90862,NEW_TEMP_90862,,new_sbaplayer +1521,Josh Donaldson,3,,90862,NEW_TEMP_90862,,new_sbaplayer +3333,Josh Donaldson,4,,90862,NEW_TEMP_90862,,new_sbaplayer +4472,Josh Donaldson,5,,90862,NEW_TEMP_90862,,new_sbaplayer +518,Josh James,2,,90863,NEW_TEMP_90863,,new_sbaplayer +1524,Josh James,3,,90863,NEW_TEMP_90863,,new_sbaplayer +3859,Josh James,4,,90863,NEW_TEMP_90863,,new_sbaplayer +4983,Josh James,5,,90863,NEW_TEMP_90863,,new_sbaplayer +519,Josh Naylor,2,,90864,NEW_TEMP_90864,,new_sbaplayer +1525,Josh Naylor,3,,90864,NEW_TEMP_90864,,new_sbaplayer +3336,Josh Naylor,4,,90864,NEW_TEMP_90864,,new_sbaplayer +4984,Josh Naylor,5,,90864,NEW_TEMP_90864,,new_sbaplayer +520,Josh Osich,2,,90865,NEW_TEMP_90865,,new_sbaplayer +1526,Josh Osich,3,,90865,NEW_TEMP_90865,,new_sbaplayer +3861,Josh Osich,4,,90865,NEW_TEMP_90865,,new_sbaplayer +4985,Josh Osich,5,,90865,NEW_TEMP_90865,,new_sbaplayer +523,Josh Rojas,2,,90866,NEW_TEMP_90866,,new_sbaplayer +1529,Josh Rojas,3,,90866,NEW_TEMP_90866,,new_sbaplayer +3339,Josh Rojas,4,,90866,NEW_TEMP_90866,,new_sbaplayer +4988,Josh Rojas,5,,90866,NEW_TEMP_90866,,new_sbaplayer +524,Josh Smith,2,,90867,NEW_TEMP_90867,,new_sbaplayer +1530,Josh Smith,3,,90867,NEW_TEMP_90867,,new_sbaplayer +3862,Josh Smith,4,,90867,NEW_TEMP_90867,,new_sbaplayer +525,Josh Taylor,2,,90868,NEW_TEMP_90868,,new_sbaplayer +1531,Josh Taylor,3,,90868,NEW_TEMP_90868,,new_sbaplayer +3864,Josh Taylor,4,,90868,NEW_TEMP_90868,,new_sbaplayer +4989,Josh Taylor,5,,90868,NEW_TEMP_90868,,new_sbaplayer +527,Josh VanMeter,2,,90869,NEW_TEMP_90869,,new_sbaplayer +1533,Josh VanMeter,3,,90869,NEW_TEMP_90869,,new_sbaplayer +3340,Josh VanMeter,4,,90869,NEW_TEMP_90869,,new_sbaplayer +4719,Josh VanMeter,5,,90869,NEW_TEMP_90869,,new_sbaplayer +529,Juan Lagares,2,,90870,NEW_TEMP_90870,,new_sbaplayer +1535,Juan Lagares,3,,90870,NEW_TEMP_90870,,new_sbaplayer +534,Julio Urias,2,,90871,NEW_TEMP_90871,,new_sbaplayer +1540,Julio Urias,3,,90871,NEW_TEMP_90871,,new_sbaplayer +3870,Julio Urias,4,,90871,NEW_TEMP_90871,,new_sbaplayer +4421,Julio Urias,5,,90871,NEW_TEMP_90871,,new_sbaplayer +535,Jung Ho Kang,2,,90872,NEW_TEMP_90872,,new_sbaplayer +1541,Jung Ho Kang,3,,90872,NEW_TEMP_90872,,new_sbaplayer +540,Justin Shafer,2,,90873,NEW_TEMP_90873,,new_sbaplayer +1546,Justin Shafer,3,,90873,NEW_TEMP_90873,,new_sbaplayer +546,Justus Sheffield,2,,90874,NEW_TEMP_90874,,new_sbaplayer +1552,Justus Sheffield,3,,90874,NEW_TEMP_90874,,new_sbaplayer +3875,Justus Sheffield,4,,90874,NEW_TEMP_90874,,new_sbaplayer +4493,Justus Sheffield,5,,90874,NEW_TEMP_90874,,new_sbaplayer +547,Kelvin Gutierrez,2,,90875,NEW_TEMP_90875,,new_sbaplayer +1553,Kelvin Gutierrez,3,,90875,NEW_TEMP_90875,,new_sbaplayer +548,Kelvin Herrera,2,,90876,NEW_TEMP_90876,,new_sbaplayer +1554,Kelvin Herrera,3,,90876,NEW_TEMP_90876,,new_sbaplayer +553,Keon Broxton,2,,90877,NEW_TEMP_90877,,new_sbaplayer +1559,Keon Broxton,3,,90877,NEW_TEMP_90877,,new_sbaplayer +554,Keone Kela,2,,90878,NEW_TEMP_90878,,new_sbaplayer +1560,Keone Kela,3,,90878,NEW_TEMP_90878,,new_sbaplayer +555,Keston Hiura,2,,90879,NEW_TEMP_90879,,new_sbaplayer +1561,Keston Hiura,3,,90879,NEW_TEMP_90879,,new_sbaplayer +3350,Keston Hiura,4,,90879,NEW_TEMP_90879,,new_sbaplayer +4997,Keston Hiura,5,,90879,NEW_TEMP_90879,,new_sbaplayer +558,Kevin Cron,2,,90880,NEW_TEMP_90880,,new_sbaplayer +1564,Kevin Cron,3,,90880,NEW_TEMP_90880,,new_sbaplayer +3353,Kevin Cron,4,,90880,NEW_TEMP_90880,,new_sbaplayer +4998,Kevin Cron,5,,90880,NEW_TEMP_90880,,new_sbaplayer +567,Kolby Allard,2,,90881,NEW_TEMP_90881,,new_sbaplayer +1573,Kolby Allard,3,,90881,NEW_TEMP_90881,,new_sbaplayer +3884,Kolby Allard,4,,90881,NEW_TEMP_90881,,new_sbaplayer +5003,Kolby Allard,5,,90881,NEW_TEMP_90881,,new_sbaplayer +571,Kristopher Negron,2,,90882,NEW_TEMP_90882,,new_sbaplayer +1577,Kristopher Negron,3,,90882,NEW_TEMP_90882,,new_sbaplayer +575,Kyle Farmer,2,,90883,NEW_TEMP_90883,,new_sbaplayer +1581,Kyle Farmer,3,,90883,NEW_TEMP_90883,,new_sbaplayer +3363,Kyle Farmer,4,,90883,NEW_TEMP_90883,,new_sbaplayer +4323,Kyle Farmer,5,,90883,NEW_TEMP_90883,,new_sbaplayer +579,Kyle Lewis,2,,90884,NEW_TEMP_90884,,new_sbaplayer +1585,Kyle Lewis,3,,90884,NEW_TEMP_90884,,new_sbaplayer +3366,Kyle Lewis,4,,90884,NEW_TEMP_90884,,new_sbaplayer +4333,Kyle Lewis,5,,90884,NEW_TEMP_90884,,new_sbaplayer +580,Kyle Ryan,2,,90885,NEW_TEMP_90885,,new_sbaplayer +1586,Kyle Ryan,3,,90885,NEW_TEMP_90885,,new_sbaplayer +3896,Kyle Ryan,4,,90885,NEW_TEMP_90885,,new_sbaplayer +5009,Kyle Ryan,5,,90885,NEW_TEMP_90885,,new_sbaplayer +583,Kyle Tucker,2,,90886,NEW_TEMP_90886,,new_sbaplayer +1589,Kyle Tucker,3,,90886,NEW_TEMP_90886,,new_sbaplayer +3369,Kyle Tucker,4,,90886,NEW_TEMP_90886,,new_sbaplayer +4264,Kyle Tucker,5,,90886,NEW_TEMP_90886,,new_sbaplayer +588,Lewis Thorpe,2,,90887,NEW_TEMP_90887,,new_sbaplayer +1594,Lewis Thorpe,3,,90887,NEW_TEMP_90887,,new_sbaplayer +3901,Lewis Thorpe,4,,90887,NEW_TEMP_90887,,new_sbaplayer +5012,Lewis Thorpe,5,,90887,NEW_TEMP_90887,,new_sbaplayer +589,Liam Hendriks,2,,90888,NEW_TEMP_90888,,new_sbaplayer +1595,Liam Hendriks,3,,90888,NEW_TEMP_90888,,new_sbaplayer +3902,Liam Hendriks,4,,90888,NEW_TEMP_90888,,new_sbaplayer +4219,Liam Hendriks,5,,90888,NEW_TEMP_90888,,new_sbaplayer +591,Logan Webb,2,,90889,NEW_TEMP_90889,,new_sbaplayer +1597,Logan Webb,3,,90889,NEW_TEMP_90889,,new_sbaplayer +3905,Logan Webb,4,,90889,NEW_TEMP_90889,,new_sbaplayer +5015,Logan Webb,5,,90889,NEW_TEMP_90889,,new_sbaplayer +595,Lucas Duda,2,,90890,NEW_TEMP_90890,,new_sbaplayer +1601,Lucas Duda,3,,90890,NEW_TEMP_90890,,new_sbaplayer +597,Lucas Sims,2,,90891,NEW_TEMP_90891,,new_sbaplayer +1603,Lucas Sims,3,,90891,NEW_TEMP_90891,,new_sbaplayer +3908,Lucas Sims,4,,90891,NEW_TEMP_90891,,new_sbaplayer +4468,Lucas Sims,5,,90891,NEW_TEMP_90891,,new_sbaplayer +598,Luis Arraez,2,,90892,NEW_TEMP_90892,,new_sbaplayer +1604,Luis Arraez,3,,90892,NEW_TEMP_90892,,new_sbaplayer +3380,Luis Arraez,4,,90892,NEW_TEMP_90892,,new_sbaplayer +4304,Luis Arraez,5,,90892,NEW_TEMP_90892,,new_sbaplayer +599,Luis Avilan,2,,90893,NEW_TEMP_90893,,new_sbaplayer +1605,Luis Avilan,3,,90893,NEW_TEMP_90893,,new_sbaplayer +3909,Luis Avilan,4,,90893,NEW_TEMP_90893,,new_sbaplayer +4664,Luis Avilan,5,,90893,NEW_TEMP_90893,,new_sbaplayer +601,Luis Cessa,2,,90894,NEW_TEMP_90894,,new_sbaplayer +1607,Luis Cessa,3,,90894,NEW_TEMP_90894,,new_sbaplayer +3911,Luis Cessa,4,,90894,NEW_TEMP_90894,,new_sbaplayer +4559,Luis Cessa,5,,90894,NEW_TEMP_90894,,new_sbaplayer +603,Luis Guillorme,2,,90895,NEW_TEMP_90895,,new_sbaplayer +1609,Luis Guillorme,3,,90895,NEW_TEMP_90895,,new_sbaplayer +3381,Luis Guillorme,4,,90895,NEW_TEMP_90895,,new_sbaplayer +4236,Luis Guillorme,5,,90895,NEW_TEMP_90895,,new_sbaplayer +605,Luis Rengifo,2,,90896,NEW_TEMP_90896,,new_sbaplayer +1611,Luis Rengifo,3,,90896,NEW_TEMP_90896,,new_sbaplayer +3382,Luis Rengifo,4,,90896,NEW_TEMP_90896,,new_sbaplayer +5020,Luis Rengifo,5,,90896,NEW_TEMP_90896,,new_sbaplayer +607,Luis Urias,2,,90897,NEW_TEMP_90897,,new_sbaplayer +1613,Luis Urias,3,,90897,NEW_TEMP_90897,,new_sbaplayer +3385,Luis Urias,4,,90897,NEW_TEMP_90897,,new_sbaplayer +4747,Luis Urias,5,,90897,NEW_TEMP_90897,,new_sbaplayer +608,Luke Bard,2,,90898,NEW_TEMP_90898,,new_sbaplayer +1614,Luke Bard,3,,90898,NEW_TEMP_90898,,new_sbaplayer +613,Mac Williamson,2,,90899,NEW_TEMP_90899,,new_sbaplayer +1619,Mac Williamson,3,,90899,NEW_TEMP_90899,,new_sbaplayer +617,Manny Banuelos,2,,90900,NEW_TEMP_90900,,new_sbaplayer +1623,Manny Banuelos,3,,90900,NEW_TEMP_90900,,new_sbaplayer +623,Marco Hernandez,2,,90901,NEW_TEMP_90901,,new_sbaplayer +1629,Marco Hernandez,3,,90901,NEW_TEMP_90901,,new_sbaplayer +626,Marcus Walden,2,,90902,NEW_TEMP_90902,,new_sbaplayer +1632,Marcus Walden,3,,90902,NEW_TEMP_90902,,new_sbaplayer +3920,Marcus Walden,4,,90902,NEW_TEMP_90902,,new_sbaplayer +5026,Marcus Walden,5,,90902,NEW_TEMP_90902,,new_sbaplayer +636,Matt Albers,2,,90903,NEW_TEMP_90903,,new_sbaplayer +1642,Matt Albers,3,,90903,NEW_TEMP_90903,,new_sbaplayer +637,Matt Andriese,2,,90904,NEW_TEMP_90904,,new_sbaplayer +1643,Matt Andriese,3,,90904,NEW_TEMP_90904,,new_sbaplayer +3924,Matt Andriese,4,,90904,NEW_TEMP_90904,,new_sbaplayer +4478,Matt Andriese,5,,90904,NEW_TEMP_90904,,new_sbaplayer +639,Matt Beaty,2,,90905,NEW_TEMP_90905,,new_sbaplayer +1645,Matt Beaty,3,,90905,NEW_TEMP_90905,,new_sbaplayer +3403,Matt Beaty,4,,90905,NEW_TEMP_90905,,new_sbaplayer +5031,Matt Beaty,5,,90905,NEW_TEMP_90905,,new_sbaplayer +640,Matt Bowman,2,,90906,NEW_TEMP_90906,,new_sbaplayer +1646,Matt Bowman,3,,90906,NEW_TEMP_90906,,new_sbaplayer +649,Matt Shoemaker,2,,90907,NEW_TEMP_90907,,new_sbaplayer +1655,Matt Shoemaker,3,,90907,NEW_TEMP_90907,,new_sbaplayer +3930,Matt Shoemaker,4,,90907,NEW_TEMP_90907,,new_sbaplayer +4357,Matt Shoemaker,5,,90907,NEW_TEMP_90907,,new_sbaplayer +650,Matt Skole,2,,90908,NEW_TEMP_90908,,new_sbaplayer +1656,Matt Skole,3,,90908,NEW_TEMP_90908,,new_sbaplayer +652,Matt Thaiss,2,,90909,NEW_TEMP_90909,,new_sbaplayer +1658,Matt Thaiss,3,,90909,NEW_TEMP_90909,,new_sbaplayer +3409,Matt Thaiss,4,,90909,NEW_TEMP_90909,,new_sbaplayer +5036,Matt Thaiss,5,,90909,NEW_TEMP_90909,,new_sbaplayer +654,Matt Wisler,2,,90910,NEW_TEMP_90910,,new_sbaplayer +1660,Matt Wisler,3,,90910,NEW_TEMP_90910,,new_sbaplayer +3932,Matt Wisler,4,,90910,NEW_TEMP_90910,,new_sbaplayer +4355,Matt Wisler,5,,90910,NEW_TEMP_90910,,new_sbaplayer +657,Mauricio Dubon,2,,90911,NEW_TEMP_90911,,new_sbaplayer +1663,Mauricio Dubon,3,,90911,NEW_TEMP_90911,,new_sbaplayer +3412,Mauricio Dubon,4,,90911,NEW_TEMP_90911,,new_sbaplayer +4427,Mauricio Dubon,5,,90911,NEW_TEMP_90911,,new_sbaplayer +658,Max Fried,2,,90912,NEW_TEMP_90912,,new_sbaplayer +1664,Max Fried,3,,90912,NEW_TEMP_90912,,new_sbaplayer +3934,Max Fried,4,,90912,NEW_TEMP_90912,,new_sbaplayer +4129,Max Fried,5,,90912,NEW_TEMP_90912,,new_sbaplayer +663,Meibrys Viloria,2,,90913,NEW_TEMP_90913,,new_sbaplayer +1669,Meibrys Viloria,3,,90913,NEW_TEMP_90913,,new_sbaplayer +3417,Meibrys Viloria,4,,90913,NEW_TEMP_90913,,new_sbaplayer +5041,Meibrys Viloria,5,,90913,NEW_TEMP_90913,,new_sbaplayer +665,Merrill Kelly,2,,90914,NEW_TEMP_90914,,new_sbaplayer +1671,Merrill Kelly,3,,90914,NEW_TEMP_90914,,new_sbaplayer +3936,Merrill Kelly,4,,90914,NEW_TEMP_90914,,new_sbaplayer +4136,Merrill Kelly,5,,90914,NEW_TEMP_90914,,new_sbaplayer +668,Michael Chavis,2,,90915,NEW_TEMP_90915,,new_sbaplayer +1674,Michael Chavis,3,,90915,NEW_TEMP_90915,,new_sbaplayer +3420,Michael Chavis,4,,90915,NEW_TEMP_90915,,new_sbaplayer +5043,Michael Chavis,5,,90915,NEW_TEMP_90915,,new_sbaplayer +672,Michael Pineda,2,,90916,NEW_TEMP_90916,,new_sbaplayer +1678,Michael Pineda,3,,90916,NEW_TEMP_90916,,new_sbaplayer +3940,Michael Pineda,4,,90916,NEW_TEMP_90916,,new_sbaplayer +4479,Michael Pineda,5,,90916,NEW_TEMP_90916,,new_sbaplayer +674,Michel Baez,2,,90917,NEW_TEMP_90917,,new_sbaplayer +1680,Michel Baez,3,,90917,NEW_TEMP_90917,,new_sbaplayer +679,Mike Brosseau,2,,90918,NEW_TEMP_90918,,new_sbaplayer +1685,Mike Brosseau,3,,90918,NEW_TEMP_90918,,new_sbaplayer +3427,Mike Brosseau,4,,90918,NEW_TEMP_90918,,new_sbaplayer +4135,Mike Brosseau,5,,90918,NEW_TEMP_90918,,new_sbaplayer +683,Mike Ford,2,,90919,NEW_TEMP_90919,,new_sbaplayer +1689,Mike Ford,3,,90919,NEW_TEMP_90919,,new_sbaplayer +3428,Mike Ford,4,,90919,NEW_TEMP_90919,,new_sbaplayer +5051,Mike Ford,5,,90919,NEW_TEMP_90919,,new_sbaplayer +684,Mike Freeman,2,,90920,NEW_TEMP_90920,,new_sbaplayer +1690,Mike Freeman,3,,90920,NEW_TEMP_90920,,new_sbaplayer +3429,Mike Freeman,4,,90920,NEW_TEMP_90920,,new_sbaplayer +5052,Mike Freeman,5,,90920,NEW_TEMP_90920,,new_sbaplayer +688,Mike Morin,2,,90921,NEW_TEMP_90921,,new_sbaplayer +1694,Mike Morin,3,,90921,NEW_TEMP_90921,,new_sbaplayer +690,Mike Soroka,2,,90922,NEW_TEMP_90922,,new_sbaplayer +1696,Mike Soroka,3,,90922,NEW_TEMP_90922,,new_sbaplayer +3948,Mike Soroka,4,,90922,NEW_TEMP_90922,,new_sbaplayer +4424,Mike Soroka,5,,90922,NEW_TEMP_90922,,new_sbaplayer +691,Mike Tauchman,2,,90923,NEW_TEMP_90923,,new_sbaplayer +1697,Mike Tauchman,3,,90923,NEW_TEMP_90923,,new_sbaplayer +3431,Mike Tauchman,4,,90923,NEW_TEMP_90923,,new_sbaplayer +5055,Mike Tauchman,5,,90923,NEW_TEMP_90923,,new_sbaplayer +694,Mike Yastrzemski,2,,90924,NEW_TEMP_90924,,new_sbaplayer +1700,Mike Yastrzemski,3,,90924,NEW_TEMP_90924,,new_sbaplayer +3433,Mike Yastrzemski,4,,90924,NEW_TEMP_90924,,new_sbaplayer +4153,Mike Yastrzemski,5,,90924,NEW_TEMP_90924,,new_sbaplayer +699,Mitch Keller,2,,90925,NEW_TEMP_90925,,new_sbaplayer +1705,Mitch Keller,3,,90925,NEW_TEMP_90925,,new_sbaplayer +3949,Mitch Keller,4,,90925,NEW_TEMP_90925,,new_sbaplayer +4327,Mitch Keller,5,,90925,NEW_TEMP_90925,,new_sbaplayer +703,Myles Straw,2,,90926,NEW_TEMP_90926,,new_sbaplayer +1709,Myles Straw,3,,90926,NEW_TEMP_90926,,new_sbaplayer +3439,Myles Straw,4,,90926,NEW_TEMP_90926,,new_sbaplayer +5059,Myles Straw,5,,90926,NEW_TEMP_90926,,new_sbaplayer +704,Nate Lowe,2,,90927,NEW_TEMP_90927,,new_sbaplayer +1710,Nate Lowe,3,,90927,NEW_TEMP_90927,,new_sbaplayer +3440,Nate Lowe,4,,90927,NEW_TEMP_90927,,new_sbaplayer +4536,Nate Lowe,5,,90927,NEW_TEMP_90927,,new_sbaplayer +708,Nestor Cortes Jr,2,,90928,NEW_TEMP_90928,,new_sbaplayer +1714,Nestor Cortes Jr,3,,90928,NEW_TEMP_90928,,new_sbaplayer +3955,Nestor Cortes Jr,4,,90928,NEW_TEMP_90928,,new_sbaplayer +711,Nick Anderson,2,,90929,NEW_TEMP_90929,,new_sbaplayer +1717,Nick Anderson,3,,90929,NEW_TEMP_90929,,new_sbaplayer +3956,Nick Anderson,4,,90929,NEW_TEMP_90929,,new_sbaplayer +4164,Nick Anderson,5,,90929,NEW_TEMP_90929,,new_sbaplayer +712,Nick Dini,2,,90930,NEW_TEMP_90930,,new_sbaplayer +1718,Nick Dini,3,,90930,NEW_TEMP_90930,,new_sbaplayer +713,Nick Goody,2,,90931,NEW_TEMP_90931,,new_sbaplayer +1719,Nick Goody,3,,90931,NEW_TEMP_90931,,new_sbaplayer +3957,Nick Goody,4,,90931,NEW_TEMP_90931,,new_sbaplayer +5064,Nick Goody,5,,90931,NEW_TEMP_90931,,new_sbaplayer +716,Nick Margevicius,2,,90932,NEW_TEMP_90932,,new_sbaplayer +1722,Nick Margevicius,3,,90932,NEW_TEMP_90932,,new_sbaplayer +3958,Nick Margevicius,4,,90932,NEW_TEMP_90932,,new_sbaplayer +4704,Nick Margevicius,5,,90932,NEW_TEMP_90932,,new_sbaplayer +720,Nick Ramirez,2,,90933,NEW_TEMP_90933,,new_sbaplayer +1726,Nick Ramirez,3,,90933,NEW_TEMP_90933,,new_sbaplayer +3962,Nick Ramirez,4,,90933,NEW_TEMP_90933,,new_sbaplayer +5068,Nick Ramirez,5,,90933,NEW_TEMP_90933,,new_sbaplayer +721,Nick Senzel,2,,90934,NEW_TEMP_90934,,new_sbaplayer +1727,Nick Senzel,3,,90934,NEW_TEMP_90934,,new_sbaplayer +3448,Nick Senzel,4,,90934,NEW_TEMP_90934,,new_sbaplayer +5069,Nick Senzel,5,,90934,NEW_TEMP_90934,,new_sbaplayer +722,Nick Solak,2,,90935,NEW_TEMP_90935,,new_sbaplayer +1728,Nick Solak,3,,90935,NEW_TEMP_90935,,new_sbaplayer +3449,Nick Solak,4,,90935,NEW_TEMP_90935,,new_sbaplayer +5070,Nick Solak,5,,90935,NEW_TEMP_90935,,new_sbaplayer +725,Nick Wittgren,2,,90936,NEW_TEMP_90936,,new_sbaplayer +1731,Nick Wittgren,3,,90936,NEW_TEMP_90936,,new_sbaplayer +3965,Nick Wittgren,4,,90936,NEW_TEMP_90936,,new_sbaplayer +4557,Nick Wittgren,5,,90936,NEW_TEMP_90936,,new_sbaplayer +727,Nicky Lopez,2,,90937,NEW_TEMP_90937,,new_sbaplayer +1733,Nicky Lopez,3,,90937,NEW_TEMP_90937,,new_sbaplayer +3451,Nicky Lopez,4,,90937,NEW_TEMP_90937,,new_sbaplayer +4733,Nicky Lopez,5,,90937,NEW_TEMP_90937,,new_sbaplayer +728,Nico Hoerner,2,,90938,NEW_TEMP_90938,,new_sbaplayer +1734,Nico Hoerner,3,,90938,NEW_TEMP_90938,,new_sbaplayer +3452,Nico Hoerner,4,,90938,NEW_TEMP_90938,,new_sbaplayer +4441,Nico Hoerner,5,,90938,NEW_TEMP_90938,,new_sbaplayer +739,Oscar Mercado,2,,90939,NEW_TEMP_90939,,new_sbaplayer +1745,Oscar Mercado,3,,90939,NEW_TEMP_90939,,new_sbaplayer +3458,Oscar Mercado,4,,90939,NEW_TEMP_90939,,new_sbaplayer +5078,Oscar Mercado,5,,90939,NEW_TEMP_90939,,new_sbaplayer +742,Pablo Reyes,2,,90940,NEW_TEMP_90940,,new_sbaplayer +1748,Pablo Reyes,3,,90940,NEW_TEMP_90940,,new_sbaplayer +746,Patrick Sandoval,2,,90941,NEW_TEMP_90941,,new_sbaplayer +1752,Patrick Sandoval,3,,90941,NEW_TEMP_90941,,new_sbaplayer +3973,Patrick Sandoval,4,,90941,NEW_TEMP_90941,,new_sbaplayer +5080,Patrick Sandoval,5,,90941,NEW_TEMP_90941,,new_sbaplayer +753,Pete Alonso,2,,90942,NEW_TEMP_90942,,new_sbaplayer +1759,Pete Alonso,3,,90942,NEW_TEMP_90942,,new_sbaplayer +3466,Pete Alonso,4,,90942,NEW_TEMP_90942,,new_sbaplayer +4720,Pete Alonso,5,,90942,NEW_TEMP_90942,,new_sbaplayer +754,Peter Lambert,2,,90943,NEW_TEMP_90943,,new_sbaplayer +1760,Peter Lambert,3,,90943,NEW_TEMP_90943,,new_sbaplayer +756,Phil Gosselin,2,,90944,NEW_TEMP_90944,,new_sbaplayer +1762,Phil Gosselin,3,,90944,NEW_TEMP_90944,,new_sbaplayer +3468,Phil Gosselin,4,,90944,NEW_TEMP_90944,,new_sbaplayer +5082,Phil Gosselin,5,,90944,NEW_TEMP_90944,,new_sbaplayer +759,Rafael Montero,2,,90945,NEW_TEMP_90945,,new_sbaplayer +1765,Rafael Montero,3,,90945,NEW_TEMP_90945,,new_sbaplayer +3981,Rafael Montero,4,,90945,NEW_TEMP_90945,,new_sbaplayer +5084,Rafael Montero,5,,90945,NEW_TEMP_90945,,new_sbaplayer +761,Raimel Tapia,2,,90946,NEW_TEMP_90946,,new_sbaplayer +1767,Raimel Tapia,3,,90946,NEW_TEMP_90946,,new_sbaplayer +3471,Raimel Tapia,4,,90946,NEW_TEMP_90946,,new_sbaplayer +4541,Raimel Tapia,5,,90946,NEW_TEMP_90946,,new_sbaplayer +765,Randy Dobnak,2,,90947,NEW_TEMP_90947,,new_sbaplayer +1771,Randy Dobnak,3,,90947,NEW_TEMP_90947,,new_sbaplayer +3984,Randy Dobnak,4,,90947,NEW_TEMP_90947,,new_sbaplayer +4627,Randy Dobnak,5,,90947,NEW_TEMP_90947,,new_sbaplayer +766,Ranger Suarez,2,,90948,NEW_TEMP_90948,,new_sbaplayer +1772,Ranger Suarez,3,,90948,NEW_TEMP_90948,,new_sbaplayer +767,Reese McGuire,2,,90949,NEW_TEMP_90949,,new_sbaplayer +1773,Reese McGuire,3,,90949,NEW_TEMP_90949,,new_sbaplayer +3477,Reese McGuire,4,,90949,NEW_TEMP_90949,,new_sbaplayer +5087,Reese McGuire,5,,90949,NEW_TEMP_90949,,new_sbaplayer +776,Richie Martin,2,,90950,NEW_TEMP_90950,,new_sbaplayer +1782,Richie Martin,3,,90950,NEW_TEMP_90950,,new_sbaplayer +778,Rio Ruiz,2,,90951,NEW_TEMP_90951,,new_sbaplayer +1784,Rio Ruiz,3,,90951,NEW_TEMP_90951,,new_sbaplayer +3480,Rio Ruiz,4,,90951,NEW_TEMP_90951,,new_sbaplayer +4575,Rio Ruiz,5,,90951,NEW_TEMP_90951,,new_sbaplayer +782,Robel Garcia,2,,90952,NEW_TEMP_90952,,new_sbaplayer +1788,Robel Garcia,3,,90952,NEW_TEMP_90952,,new_sbaplayer +783,Robert Dugger,2,,90953,NEW_TEMP_90953,,new_sbaplayer +1789,Robert Dugger,3,,90953,NEW_TEMP_90953,,new_sbaplayer +3994,Robert Dugger,4,,90953,NEW_TEMP_90953,,new_sbaplayer +5093,Robert Dugger,5,,90953,NEW_TEMP_90953,,new_sbaplayer +785,Robert Stephenson,2,,90954,NEW_TEMP_90954,,new_sbaplayer +1791,Robert Stephenson,3,,90954,NEW_TEMP_90954,,new_sbaplayer +3996,Robert Stephenson,4,,90954,NEW_TEMP_90954,,new_sbaplayer +5095,Robert Stephenson,5,,90954,NEW_TEMP_90954,,new_sbaplayer +786,Roberto Osuna,2,,90955,NEW_TEMP_90955,,new_sbaplayer +1792,Roberto Osuna,3,,90955,NEW_TEMP_90955,,new_sbaplayer +790,Roenis Elias,2,,90956,NEW_TEMP_90956,,new_sbaplayer +1796,Roenis Elias,3,,90956,NEW_TEMP_90956,,new_sbaplayer +796,Ross Detwiler,2,,90957,NEW_TEMP_90957,,new_sbaplayer +1802,Ross Detwiler,3,,90957,NEW_TEMP_90957,,new_sbaplayer +3999,Ross Detwiler,4,,90957,NEW_TEMP_90957,,new_sbaplayer +4716,Ross Detwiler,5,,90957,NEW_TEMP_90957,,new_sbaplayer +799,Rowan Wick,2,,90958,NEW_TEMP_90958,,new_sbaplayer +1805,Rowan Wick,3,,90958,NEW_TEMP_90958,,new_sbaplayer +4001,Rowan Wick,4,,90958,NEW_TEMP_90958,,new_sbaplayer +4614,Rowan Wick,5,,90958,NEW_TEMP_90958,,new_sbaplayer +800,Rowdy Tellez,2,,90959,NEW_TEMP_90959,,new_sbaplayer +1806,Rowdy Tellez,3,,90959,NEW_TEMP_90959,,new_sbaplayer +3490,Rowdy Tellez,4,,90959,NEW_TEMP_90959,,new_sbaplayer +4485,Rowdy Tellez,5,,90959,NEW_TEMP_90959,,new_sbaplayer +805,Ryan Carpenter,2,,90960,NEW_TEMP_90960,,new_sbaplayer +1811,Ryan Carpenter,3,,90960,NEW_TEMP_90960,,new_sbaplayer +806,Ryan Cordell,2,,90961,NEW_TEMP_90961,,new_sbaplayer +1812,Ryan Cordell,3,,90961,NEW_TEMP_90961,,new_sbaplayer +807,Ryan Goins,2,,90962,NEW_TEMP_90962,,new_sbaplayer +1813,Ryan Goins,3,,90962,NEW_TEMP_90962,,new_sbaplayer +808,Ryan Helsley,2,,90963,NEW_TEMP_90963,,new_sbaplayer +1814,Ryan Helsley,3,,90963,NEW_TEMP_90963,,new_sbaplayer +4006,Ryan Helsley,4,,90963,NEW_TEMP_90963,,new_sbaplayer +5103,Ryan Helsley,5,,90963,NEW_TEMP_90963,,new_sbaplayer +809,Ryan McBroom,2,,90964,NEW_TEMP_90964,,new_sbaplayer +1815,Ryan McBroom,3,,90964,NEW_TEMP_90964,,new_sbaplayer +3493,Ryan McBroom,4,,90964,NEW_TEMP_90964,,new_sbaplayer +5104,Ryan McBroom,5,,90964,NEW_TEMP_90964,,new_sbaplayer +813,Ryan Weber,2,,90965,NEW_TEMP_90965,,new_sbaplayer +1819,Ryan Weber,3,,90965,NEW_TEMP_90965,,new_sbaplayer +4011,Ryan Weber,4,,90965,NEW_TEMP_90965,,new_sbaplayer +4363,Ryan Weber,5,,90965,NEW_TEMP_90965,,new_sbaplayer +816,Ryne Harper,2,,90966,NEW_TEMP_90966,,new_sbaplayer +1822,Ryne Harper,3,,90966,NEW_TEMP_90966,,new_sbaplayer +4013,Ryne Harper,4,,90966,NEW_TEMP_90966,,new_sbaplayer +5107,Ryne Harper,5,,90966,NEW_TEMP_90966,,new_sbaplayer +819,Sam Coonrod,2,,90967,NEW_TEMP_90967,,new_sbaplayer +1825,Sam Coonrod,3,,90967,NEW_TEMP_90967,,new_sbaplayer +4015,Sam Coonrod,4,,90967,NEW_TEMP_90967,,new_sbaplayer +5110,Sam Coonrod,5,,90967,NEW_TEMP_90967,,new_sbaplayer +822,Sam Hilliard,2,,90968,NEW_TEMP_90968,,new_sbaplayer +1828,Sam Hilliard,3,,90968,NEW_TEMP_90968,,new_sbaplayer +3500,Sam Hilliard,4,,90968,NEW_TEMP_90968,,new_sbaplayer +4745,Sam Hilliard,5,,90968,NEW_TEMP_90968,,new_sbaplayer +823,Sam Travis,2,,90969,NEW_TEMP_90969,,new_sbaplayer +1829,Sam Travis,3,,90969,NEW_TEMP_90969,,new_sbaplayer +824,Sam Tuivailala,2,,90970,NEW_TEMP_90970,,new_sbaplayer +1830,Sam Tuivailala,3,,90970,NEW_TEMP_90970,,new_sbaplayer +825,Sandy Alcantara,2,,90971,NEW_TEMP_90971,,new_sbaplayer +1831,Sandy Alcantara,3,,90971,NEW_TEMP_90971,,new_sbaplayer +4018,Sandy Alcantara,4,,90971,NEW_TEMP_90971,,new_sbaplayer +4454,Sandy Alcantara,5,,90971,NEW_TEMP_90971,,new_sbaplayer +828,Scott Barlow,2,,90972,NEW_TEMP_90972,,new_sbaplayer +1834,Scott Barlow,3,,90972,NEW_TEMP_90972,,new_sbaplayer +4020,Scott Barlow,4,,90972,NEW_TEMP_90972,,new_sbaplayer +4727,Scott Barlow,5,,90972,NEW_TEMP_90972,,new_sbaplayer +829,Scott Heineman,2,,90973,NEW_TEMP_90973,,new_sbaplayer +1835,Scott Heineman,3,,90973,NEW_TEMP_90973,,new_sbaplayer +3504,Scott Heineman,4,,90973,NEW_TEMP_90973,,new_sbaplayer +5112,Scott Heineman,5,,90973,NEW_TEMP_90973,,new_sbaplayer +835,Sean Murphy,2,,90974,NEW_TEMP_90974,,new_sbaplayer +1841,Sean Murphy,3,,90974,NEW_TEMP_90974,,new_sbaplayer +3506,Sean Murphy,4,,90974,NEW_TEMP_90974,,new_sbaplayer +4249,Sean Murphy,5,,90974,NEW_TEMP_90974,,new_sbaplayer +837,Sean Reid Foley,2,,90975,NEW_TEMP_90975,,new_sbaplayer +1843,Sean Reid Foley,3,,90975,NEW_TEMP_90975,,new_sbaplayer +4025,Sean Reid Foley,4,,90975,NEW_TEMP_90975,,new_sbaplayer +4529,Sean Reid Foley,5,,90975,NEW_TEMP_90975,,new_sbaplayer +840,Seth Brown,2,,90976,NEW_TEMP_90976,,new_sbaplayer +1846,Seth Brown,3,,90976,NEW_TEMP_90976,,new_sbaplayer +844,Shaun Anderson,2,,90977,NEW_TEMP_90977,,new_sbaplayer +1850,Shaun Anderson,3,,90977,NEW_TEMP_90977,,new_sbaplayer +4031,Shaun Anderson,4,,90977,NEW_TEMP_90977,,new_sbaplayer +4654,Shaun Anderson,5,,90977,NEW_TEMP_90977,,new_sbaplayer +845,Shawn Armstrong,2,,90978,NEW_TEMP_90978,,new_sbaplayer +1851,Shawn Armstrong,3,,90978,NEW_TEMP_90978,,new_sbaplayer +4032,Shawn Armstrong,4,,90978,NEW_TEMP_90978,,new_sbaplayer +4464,Shawn Armstrong,5,,90978,NEW_TEMP_90978,,new_sbaplayer +846,Shawn Kelley,2,,90979,NEW_TEMP_90979,,new_sbaplayer +1852,Shawn Kelley,3,,90979,NEW_TEMP_90979,,new_sbaplayer +847,Shed Long,2,,90980,NEW_TEMP_90980,,new_sbaplayer +1853,Shed Long,3,,90980,NEW_TEMP_90980,,new_sbaplayer +3508,Shed Long,4,,90980,NEW_TEMP_90980,,new_sbaplayer +5120,Shed Long,5,,90980,NEW_TEMP_90980,,new_sbaplayer +848,Shelby Miller,2,,90981,NEW_TEMP_90981,,new_sbaplayer +1854,Shelby Miller,3,,90981,NEW_TEMP_90981,,new_sbaplayer +849,Sheldon Neuse,2,,90982,NEW_TEMP_90982,,new_sbaplayer +1855,Sheldon Neuse,3,,90982,NEW_TEMP_90982,,new_sbaplayer +853,Spencer Turnbull,2,,90983,NEW_TEMP_90983,,new_sbaplayer +1859,Spencer Turnbull,3,,90983,NEW_TEMP_90983,,new_sbaplayer +4037,Spencer Turnbull,4,,90983,NEW_TEMP_90983,,new_sbaplayer +4401,Spencer Turnbull,5,,90983,NEW_TEMP_90983,,new_sbaplayer +856,Stefan Crichton,2,,90984,NEW_TEMP_90984,,new_sbaplayer +1862,Stefan Crichton,3,,90984,NEW_TEMP_90984,,new_sbaplayer +4038,Stefan Crichton,4,,90984,NEW_TEMP_90984,,new_sbaplayer +4368,Stefan Crichton,5,,90984,NEW_TEMP_90984,,new_sbaplayer +859,Stephen Vogt,2,,90985,NEW_TEMP_90985,,new_sbaplayer +1865,Stephen Vogt,3,,90985,NEW_TEMP_90985,,new_sbaplayer +3516,Stephen Vogt,4,,90985,NEW_TEMP_90985,,new_sbaplayer +5125,Stephen Vogt,5,,90985,NEW_TEMP_90985,,new_sbaplayer +865,Stevie Wilkerson,2,,90986,NEW_TEMP_90986,,new_sbaplayer +1871,Stevie Wilkerson,3,,90986,NEW_TEMP_90986,,new_sbaplayer +867,Tanner Rainey,2,,90987,NEW_TEMP_90987,,new_sbaplayer +1873,Tanner Rainey,3,,90987,NEW_TEMP_90987,,new_sbaplayer +4045,Tanner Rainey,4,,90987,NEW_TEMP_90987,,new_sbaplayer +4227,Tanner Rainey,5,,90987,NEW_TEMP_90987,,new_sbaplayer +870,Taylor Clarke,2,,90988,NEW_TEMP_90988,,new_sbaplayer +1876,Taylor Clarke,3,,90988,NEW_TEMP_90988,,new_sbaplayer +4049,Taylor Clarke,4,,90988,NEW_TEMP_90988,,new_sbaplayer +4560,Taylor Clarke,5,,90988,NEW_TEMP_90988,,new_sbaplayer +871,Taylor Cole,2,,90989,NEW_TEMP_90989,,new_sbaplayer +1877,Taylor Cole,3,,90989,NEW_TEMP_90989,,new_sbaplayer +872,Taylor Guerrieri,2,,90990,NEW_TEMP_90990,,new_sbaplayer +1878,Taylor Guerrieri,3,,90990,NEW_TEMP_90990,,new_sbaplayer +876,Thairo Estrada,2,,90991,NEW_TEMP_90991,,new_sbaplayer +1882,Thairo Estrada,3,,90991,NEW_TEMP_90991,,new_sbaplayer +3522,Thairo Estrada,4,,90991,NEW_TEMP_90991,,new_sbaplayer +5136,Thairo Estrada,5,,90991,NEW_TEMP_90991,,new_sbaplayer +880,Tim Federowicz,2,,90992,NEW_TEMP_90992,,new_sbaplayer +1886,Tim Federowicz,3,,90992,NEW_TEMP_90992,,new_sbaplayer +882,Tim Locastro,2,,90993,NEW_TEMP_90993,,new_sbaplayer +1888,Tim Locastro,3,,90993,NEW_TEMP_90993,,new_sbaplayer +3524,Tim Locastro,4,,90993,NEW_TEMP_90993,,new_sbaplayer +4250,Tim Locastro,5,,90993,NEW_TEMP_90993,,new_sbaplayer +883,Tim Lopes,2,,90994,NEW_TEMP_90994,,new_sbaplayer +1889,Tim Lopes,3,,90994,NEW_TEMP_90994,,new_sbaplayer +3525,Tim Lopes,4,,90994,NEW_TEMP_90994,,new_sbaplayer +5138,Tim Lopes,5,,90994,NEW_TEMP_90994,,new_sbaplayer +885,Tim Melville,2,,90995,NEW_TEMP_90995,,new_sbaplayer +1891,Tim Melville,3,,90995,NEW_TEMP_90995,,new_sbaplayer +887,Tom Eshelman,2,,90996,NEW_TEMP_90996,,new_sbaplayer +1893,Tom Eshelman,3,,90996,NEW_TEMP_90996,,new_sbaplayer +889,Tomas Nido,2,,90997,NEW_TEMP_90997,,new_sbaplayer +1895,Tomas Nido,3,,90997,NEW_TEMP_90997,,new_sbaplayer +3527,Tomas Nido,4,,90997,NEW_TEMP_90997,,new_sbaplayer +4294,Tomas Nido,5,,90997,NEW_TEMP_90997,,new_sbaplayer +890,Tommy Edman,2,,90998,NEW_TEMP_90998,,new_sbaplayer +1896,Tommy Edman,3,,90998,NEW_TEMP_90998,,new_sbaplayer +3528,Tommy Edman,4,,90998,NEW_TEMP_90998,,new_sbaplayer +4476,Tommy Edman,5,,90998,NEW_TEMP_90998,,new_sbaplayer +891,Tommy Kahnle,2,,90999,NEW_TEMP_90999,,new_sbaplayer +1897,Tommy Kahnle,3,,90999,NEW_TEMP_90999,,new_sbaplayer +893,Tommy Milone,2,,91000,NEW_TEMP_91000,,new_sbaplayer +1899,Tommy Milone,3,,91000,NEW_TEMP_91000,,new_sbaplayer +4062,Tommy Milone,4,,91000,NEW_TEMP_91000,,new_sbaplayer +5139,Tommy Milone,5,,91000,NEW_TEMP_91000,,new_sbaplayer +895,Tony Gonsolin,2,,91001,NEW_TEMP_91001,,new_sbaplayer +1901,Tony Gonsolin,3,,91001,NEW_TEMP_91001,,new_sbaplayer +4063,Tony Gonsolin,4,,91001,NEW_TEMP_91001,,new_sbaplayer +4213,Tony Gonsolin,5,,91001,NEW_TEMP_91001,,new_sbaplayer +899,Touki Toussaint,2,,91002,NEW_TEMP_91002,,new_sbaplayer +1905,Touki Toussaint,3,,91002,NEW_TEMP_91002,,new_sbaplayer +4065,Touki Toussaint,4,,91002,NEW_TEMP_91002,,new_sbaplayer +5143,Touki Toussaint,5,,91002,NEW_TEMP_91002,,new_sbaplayer +900,Travis dArnaud,2,,91003,NEW_TEMP_91003,,new_sbaplayer +1906,Travis dArnaud,3,,91003,NEW_TEMP_91003,,new_sbaplayer +3533,Travis dArnaud,4,,91003,NEW_TEMP_91003,,new_sbaplayer +4514,Travis dArnaud,5,,91003,NEW_TEMP_91003,,new_sbaplayer +901,Travis Demeritte,2,,91004,NEW_TEMP_91004,,new_sbaplayer +1907,Travis Demeritte,3,,91004,NEW_TEMP_91004,,new_sbaplayer +3534,Travis Demeritte,4,,91004,NEW_TEMP_91004,,new_sbaplayer +5144,Travis Demeritte,5,,91004,NEW_TEMP_91004,,new_sbaplayer +904,Trent Grisham,2,,91005,NEW_TEMP_91005,,new_sbaplayer +1910,Trent Grisham,3,,91005,NEW_TEMP_91005,,new_sbaplayer +3538,Trent Grisham,4,,91005,NEW_TEMP_91005,,new_sbaplayer +4214,Trent Grisham,5,,91005,NEW_TEMP_91005,,new_sbaplayer +905,Trent Thornton,2,,91006,NEW_TEMP_91006,,new_sbaplayer +1911,Trent Thornton,3,,91006,NEW_TEMP_91006,,new_sbaplayer +908,Trevor Gott,2,,91007,NEW_TEMP_91007,,new_sbaplayer +1914,Trevor Gott,3,,91007,NEW_TEMP_91007,,new_sbaplayer +4070,Trevor Gott,4,,91007,NEW_TEMP_91007,,new_sbaplayer +5146,Trevor Gott,5,,91007,NEW_TEMP_91007,,new_sbaplayer +914,Trey Wingenter,2,,91008,NEW_TEMP_91008,,new_sbaplayer +1920,Trey Wingenter,3,,91008,NEW_TEMP_91008,,new_sbaplayer +917,Ty Buttrey,2,,91009,NEW_TEMP_91009,,new_sbaplayer +1923,Ty Buttrey,3,,91009,NEW_TEMP_91009,,new_sbaplayer +4077,Ty Buttrey,4,,91009,NEW_TEMP_91009,,new_sbaplayer +5150,Ty Buttrey,5,,91009,NEW_TEMP_91009,,new_sbaplayer +918,Ty France,2,,91010,NEW_TEMP_91010,,new_sbaplayer +1924,Ty France,3,,91010,NEW_TEMP_91010,,new_sbaplayer +3541,Ty France,4,,91010,NEW_TEMP_91010,,new_sbaplayer +4372,Ty France,5,,91010,NEW_TEMP_91010,,new_sbaplayer +919,Tyler Alexander,2,,91011,NEW_TEMP_91011,,new_sbaplayer +1925,Tyler Alexander,3,,91011,NEW_TEMP_91011,,new_sbaplayer +4078,Tyler Alexander,4,,91011,NEW_TEMP_91011,,new_sbaplayer +4517,Tyler Alexander,5,,91011,NEW_TEMP_91011,,new_sbaplayer +921,Tyler Beede,2,,91012,NEW_TEMP_91012,,new_sbaplayer +1927,Tyler Beede,3,,91012,NEW_TEMP_91012,,new_sbaplayer +924,Tyler Duffey,2,,91013,NEW_TEMP_91013,,new_sbaplayer +1930,Tyler Duffey,3,,91013,NEW_TEMP_91013,,new_sbaplayer +4083,Tyler Duffey,4,,91013,NEW_TEMP_91013,,new_sbaplayer +4473,Tyler Duffey,5,,91013,NEW_TEMP_91013,,new_sbaplayer +927,Tyler Kinley,2,,91014,NEW_TEMP_91014,,new_sbaplayer +1933,Tyler Kinley,3,,91014,NEW_TEMP_91014,,new_sbaplayer +4085,Tyler Kinley,4,,91014,NEW_TEMP_91014,,new_sbaplayer +4656,Tyler Kinley,5,,91014,NEW_TEMP_91014,,new_sbaplayer +929,Tyler Naquin,2,,91015,NEW_TEMP_91015,,new_sbaplayer +1935,Tyler Naquin,3,,91015,NEW_TEMP_91015,,new_sbaplayer +3544,Tyler Naquin,4,,91015,NEW_TEMP_91015,,new_sbaplayer +5153,Tyler Naquin,5,,91015,NEW_TEMP_91015,,new_sbaplayer +932,Tyler Saladino,2,,91016,NEW_TEMP_91016,,new_sbaplayer +1938,Tyler Saladino,3,,91016,NEW_TEMP_91016,,new_sbaplayer +934,Tyler Wade,2,,91017,NEW_TEMP_91017,,new_sbaplayer +1940,Tyler Wade,3,,91017,NEW_TEMP_91017,,new_sbaplayer +3547,Tyler Wade,4,,91017,NEW_TEMP_91017,,new_sbaplayer +4425,Tyler Wade,5,,91017,NEW_TEMP_91017,,new_sbaplayer +935,Tyler Webb,2,,91018,NEW_TEMP_91018,,new_sbaplayer +1941,Tyler Webb,3,,91018,NEW_TEMP_91018,,new_sbaplayer +4090,Tyler Webb,4,,91018,NEW_TEMP_91018,,new_sbaplayer +4600,Tyler Webb,5,,91018,NEW_TEMP_91018,,new_sbaplayer +938,Victor Alcantara,2,,91019,NEW_TEMP_91019,,new_sbaplayer +1944,Victor Alcantara,3,,91019,NEW_TEMP_91019,,new_sbaplayer +941,Victor Robles,2,,91020,NEW_TEMP_91020,,new_sbaplayer +1947,Victor Robles,3,,91020,NEW_TEMP_91020,,new_sbaplayer +3552,Victor Robles,4,,91020,NEW_TEMP_91020,,new_sbaplayer +5156,Victor Robles,5,,91020,NEW_TEMP_91020,,new_sbaplayer +943,Vladimir Guerrero Jr,2,,91021,NEW_TEMP_91021,,new_sbaplayer +1949,Vladimir Guerrero Jr,3,,91021,NEW_TEMP_91021,,new_sbaplayer +3554,Vladimir Guerrero Jr,4,,91021,NEW_TEMP_91021,,new_sbaplayer +4639,Vladimir Guerrero Jr,5,,91021,NEW_TEMP_91021,,new_sbaplayer +948,Walker Lockett,2,,91022,NEW_TEMP_91022,,new_sbaplayer +1954,Walker Lockett,3,,91022,NEW_TEMP_91022,,new_sbaplayer +4097,Walker Lockett,4,,91022,NEW_TEMP_91022,,new_sbaplayer +4599,Walker Lockett,5,,91022,NEW_TEMP_91022,,new_sbaplayer +951,Wei Chung Wang,2,,91023,NEW_TEMP_91023,,new_sbaplayer +1957,Wei Chung Wang,3,,91023,NEW_TEMP_91023,,new_sbaplayer +954,Wes Parsons,2,,91024,NEW_TEMP_91024,,new_sbaplayer +1960,Wes Parsons,3,,91024,NEW_TEMP_91024,,new_sbaplayer +957,Wilfredo Tovar,2,,91025,NEW_TEMP_91025,,new_sbaplayer +1963,Wilfredo Tovar,3,,91025,NEW_TEMP_91025,,new_sbaplayer +958,Will D Smith,2,,91026,NEW_TEMP_91026,,new_sbaplayer +1964,Will D Smith,3,,91026,NEW_TEMP_91026,,new_sbaplayer +3557,Will D Smith,4,,91026,NEW_TEMP_91026,,new_sbaplayer +4181,Will D Smith,5,,91026,NEW_TEMP_91026,,new_sbaplayer +961,Willi Castro,2,,91027,NEW_TEMP_91027,,new_sbaplayer +1967,Willi Castro,3,,91027,NEW_TEMP_91027,,new_sbaplayer +3558,Willi Castro,4,,91027,NEW_TEMP_91027,,new_sbaplayer +4561,Willi Castro,5,,91027,NEW_TEMP_91027,,new_sbaplayer +962,Willians Astudillo,2,,91028,NEW_TEMP_91028,,new_sbaplayer +1968,Willians Astudillo,3,,91028,NEW_TEMP_91028,,new_sbaplayer +3559,Willians Astudillo,4,,91028,NEW_TEMP_91028,,new_sbaplayer +5161,Willians Astudillo,5,,91028,NEW_TEMP_91028,,new_sbaplayer +968,Wilmer Font,2,,91029,NEW_TEMP_91029,,new_sbaplayer +1974,Wilmer Font,3,,91029,NEW_TEMP_91029,,new_sbaplayer +4104,Wilmer Font,4,,91029,NEW_TEMP_91029,,new_sbaplayer +5163,Wilmer Font,5,,91029,NEW_TEMP_91029,,new_sbaplayer +969,Wilson Ramos,2,,91030,NEW_TEMP_91030,,new_sbaplayer +1975,Wilson Ramos,3,,91030,NEW_TEMP_91030,,new_sbaplayer +3564,Wilson Ramos,4,,91030,NEW_TEMP_91030,,new_sbaplayer +4673,Wilson Ramos,5,,91030,NEW_TEMP_91030,,new_sbaplayer +976,Yandy Diaz,2,,91031,NEW_TEMP_91031,,new_sbaplayer +1982,Yandy Diaz,3,,91031,NEW_TEMP_91031,,new_sbaplayer +3571,Yandy Diaz,4,,91031,NEW_TEMP_91031,,new_sbaplayer +4418,Yandy Diaz,5,,91031,NEW_TEMP_91031,,new_sbaplayer +980,Yency Almonte,2,,91032,NEW_TEMP_91032,,new_sbaplayer +1986,Yency Almonte,3,,91032,NEW_TEMP_91032,,new_sbaplayer +4105,Yency Almonte,4,,91032,NEW_TEMP_91032,,new_sbaplayer +4515,Yency Almonte,5,,91032,NEW_TEMP_91032,,new_sbaplayer +981,Yimi Garcia,2,,91033,NEW_TEMP_91033,,new_sbaplayer +1987,Yimi Garcia,3,,91033,NEW_TEMP_91033,,new_sbaplayer +4106,Yimi Garcia,4,,91033,NEW_TEMP_91033,,new_sbaplayer +4194,Yimi Garcia,5,,91033,NEW_TEMP_91033,,new_sbaplayer +982,Yoan Lopez,2,,91034,NEW_TEMP_91034,,new_sbaplayer +1988,Yoan Lopez,3,,91034,NEW_TEMP_91034,,new_sbaplayer +4107,Yoan Lopez,4,,91034,NEW_TEMP_91034,,new_sbaplayer +5165,Yoan Lopez,5,,91034,NEW_TEMP_91034,,new_sbaplayer +985,Yonathan Daza,2,,91035,NEW_TEMP_91035,,new_sbaplayer +1991,Yonathan Daza,3,,91035,NEW_TEMP_91035,,new_sbaplayer +988,Yordan Alvarez,2,,91036,NEW_TEMP_91036,,new_sbaplayer +1994,Yordan Alvarez,3,,91036,NEW_TEMP_91036,,new_sbaplayer +990,Yu Chang,2,,91037,NEW_TEMP_91037,,new_sbaplayer +1996,Yu Chang,3,,91037,NEW_TEMP_91037,,new_sbaplayer +991,Yu Darvish,2,,91038,NEW_TEMP_91038,,new_sbaplayer +1997,Yu Darvish,3,,91038,NEW_TEMP_91038,,new_sbaplayer +4111,Yu Darvish,4,,91038,NEW_TEMP_91038,,new_sbaplayer +4174,Yu Darvish,5,,91038,NEW_TEMP_91038,,new_sbaplayer +993,Yusei Kikuchi,2,,91039,NEW_TEMP_91039,,new_sbaplayer +1999,Yusei Kikuchi,3,,91039,NEW_TEMP_91039,,new_sbaplayer +4112,Yusei Kikuchi,4,,91039,NEW_TEMP_91039,,new_sbaplayer +4759,Yusei Kikuchi,5,,91039,NEW_TEMP_91039,,new_sbaplayer +995,Zac Gallen,2,,91040,NEW_TEMP_91040,,new_sbaplayer +2001,Zac Gallen,3,,91040,NEW_TEMP_91040,,new_sbaplayer +4114,Zac Gallen,4,,91040,NEW_TEMP_91040,,new_sbaplayer +4157,Zac Gallen,5,,91040,NEW_TEMP_91040,,new_sbaplayer +996,Zac Reininger,2,,91041,NEW_TEMP_91041,,new_sbaplayer +2002,Zac Reininger,3,,91041,NEW_TEMP_91041,,new_sbaplayer +997,Zach Davies,2,,91042,NEW_TEMP_91042,,new_sbaplayer +2003,Zach Davies,3,,91042,NEW_TEMP_91042,,new_sbaplayer +4116,Zach Davies,4,,91042,NEW_TEMP_91042,,new_sbaplayer +4290,Zach Davies,5,,91042,NEW_TEMP_91042,,new_sbaplayer +999,Zach Plesac,2,,91043,NEW_TEMP_91043,,new_sbaplayer +2005,Zach Plesac,3,,91043,NEW_TEMP_91043,,new_sbaplayer +4118,Zach Plesac,4,,91043,NEW_TEMP_91043,,new_sbaplayer +4139,Zach Plesac,5,,91043,NEW_TEMP_91043,,new_sbaplayer +1000,Zach Britton,2,,91044,NEW_TEMP_91044,,new_sbaplayer +1001,Zack Collins,2,,91045,NEW_TEMP_91045,,new_sbaplayer +2007,Zack Collins,3,,91045,NEW_TEMP_91045,,new_sbaplayer +3578,Zack Collins,4,,91045,NEW_TEMP_91045,,new_sbaplayer +5171,Zack Collins,5,,91045,NEW_TEMP_91045,,new_sbaplayer +1005,Zack Littell,2,,91046,NEW_TEMP_91046,,new_sbaplayer +2011,Zack Littell,3,,91046,NEW_TEMP_91046,,new_sbaplayer +3620,Ashton Goudeau,4,,91047,NEW_TEMP_91047,,new_sbaplayer +4798,Ashton Goudeau,5,,91047,NEW_TEMP_91047,,new_sbaplayer +3622,Austin Davis,4,,91048,NEW_TEMP_91048,,new_sbaplayer +4801,Austin Davis,5,,91048,NEW_TEMP_91048,,new_sbaplayer +3801,Jake Woodford,4,,91049,NEW_TEMP_91049,,new_sbaplayer +4935,Jake Woodford,5,,91049,NEW_TEMP_91049,,new_sbaplayer +3978,Phillips Valdez,4,,91050,NEW_TEMP_91050,,new_sbaplayer +4586,Phillips Valdez,5,,91050,NEW_TEMP_91050,,new_sbaplayer +4027,Seth Elledge,4,,91051,NEW_TEMP_91051,,new_sbaplayer +5119,Seth Elledge,5,,91051,NEW_TEMP_91051,,new_sbaplayer +4073,Trevor Rogers,4,,91052,NEW_TEMP_91052,,new_sbaplayer +5148,Trevor Rogers,5,,91052,NEW_TEMP_91052,,new_sbaplayer +4074,Trevor Rosenthal,4,,91053,NEW_TEMP_91053,,new_sbaplayer +4241,Trevor Rosenthal,5,,91053,NEW_TEMP_91053,,new_sbaplayer +4120,Zack Burdi,4,,91054,NEW_TEMP_91054,,new_sbaplayer +5170,Zack Burdi,5,,91054,NEW_TEMP_91054,,new_sbaplayer +3096,Andres Gimenez,4,,91055,NEW_TEMP_91055,,new_sbaplayer +4261,Andres Gimenez,5,,91055,NEW_TEMP_91055,,new_sbaplayer +3099,Andrew Knizner,4,,91056,NEW_TEMP_91056,,new_sbaplayer +4789,Andrew Knizner,5,,91056,NEW_TEMP_91056,,new_sbaplayer +3102,Andrew Velazquez,4,,91057,NEW_TEMP_91057,,new_sbaplayer +4539,Andrew Velazquez,5,,91057,NEW_TEMP_91057,,new_sbaplayer +3103,Andy Young,4,,91058,NEW_TEMP_91058,,new_sbaplayer +4792,Andy Young,5,,91058,NEW_TEMP_91058,,new_sbaplayer +3104,Anthony Alford,4,,91059,NEW_TEMP_91059,,new_sbaplayer +4793,Anthony Alford,5,,91059,NEW_TEMP_91059,,new_sbaplayer +3105,Anthony Bemboom,4,,91060,NEW_TEMP_91060,,new_sbaplayer +4466,Anthony Bemboom,5,,91060,NEW_TEMP_91060,,new_sbaplayer +3121,Beau Taylor,4,,91061,NEW_TEMP_91061,,new_sbaplayer +4806,Beau Taylor,5,,91061,NEW_TEMP_91061,,new_sbaplayer +3125,Bobby Dalbec,4,,91062,NEW_TEMP_91062,,new_sbaplayer +4365,Bobby Dalbec,5,,91062,NEW_TEMP_91062,,new_sbaplayer +3127,Braden Bishop,4,,91063,NEW_TEMP_91063,,new_sbaplayer +4615,Braden Bishop,5,,91063,NEW_TEMP_91063,,new_sbaplayer +3128,Bradley Zimmer,4,,91064,NEW_TEMP_91064,,new_sbaplayer +4667,Bradley Zimmer,5,,91064,NEW_TEMP_91064,,new_sbaplayer +3135,Brent Rooker,4,,91065,NEW_TEMP_91065,,new_sbaplayer +4816,Brent Rooker,5,,91065,NEW_TEMP_91065,,new_sbaplayer +3094,Anderson Tejeda,4,,91066,NEW_TEMP_91066,,new_sbaplayer +4538,Anderson Tejeda,5,,91066,NEW_TEMP_91066,,new_sbaplayer +3384,Luis Torrens,4,,91067,NEW_TEMP_91067,,new_sbaplayer +5021,Luis Torrens,5,,91067,NEW_TEMP_91067,,new_sbaplayer +3386,Luis V Garcia,4,,91068,NEW_TEMP_91068,,new_sbaplayer +5016,Luis V Garcia,5,,91068,NEW_TEMP_91068,,new_sbaplayer +3481,Rob Refsnyder,4,,91069,NEW_TEMP_91069,,new_sbaplayer +5090,Rob Refsnyder,5,,91069,NEW_TEMP_91069,,new_sbaplayer +3085,Alec Bohm,4,,91070,NEW_TEMP_91070,,new_sbaplayer +4465,Alec Bohm,5,,91070,NEW_TEMP_91070,,new_sbaplayer +3087,Alejandro Kirk,4,,91071,NEW_TEMP_91071,,new_sbaplayer +4272,Alejandro Kirk,5,,91071,NEW_TEMP_91071,,new_sbaplayer +3152,Carter Kieboom,4,,91072,NEW_TEMP_91072,,new_sbaplayer +4638,Carter Kieboom,5,,91072,NEW_TEMP_91072,,new_sbaplayer +3157,Chad Wallach,4,,91073,NEW_TEMP_91073,,new_sbaplayer +4661,Chad Wallach,5,,91073,NEW_TEMP_91073,,new_sbaplayer +3158,Chadwick Tromp,4,,91074,NEW_TEMP_91074,,new_sbaplayer +4833,Chadwick Tromp,5,,91074,NEW_TEMP_91074,,new_sbaplayer +3164,Christian Arroyo,4,,91075,NEW_TEMP_91075,,new_sbaplayer +4552,Christian Arroyo,5,,91075,NEW_TEMP_91075,,new_sbaplayer +3165,Christian Colon,4,,91076,NEW_TEMP_91076,,new_sbaplayer +4839,Christian Colon,5,,91076,NEW_TEMP_91076,,new_sbaplayer +3182,Danny Mendick,4,,91077,NEW_TEMP_91077,,new_sbaplayer +4397,Danny Mendick,5,,91077,NEW_TEMP_91077,,new_sbaplayer +3185,Darin Ruf,4,,91078,NEW_TEMP_91078,,new_sbaplayer +4412,Darin Ruf,5,,91078,NEW_TEMP_91078,,new_sbaplayer +3186,Daulton Varsho,4,,91079,NEW_TEMP_91079,,new_sbaplayer +4857,Daulton Varsho,5,,91079,NEW_TEMP_91079,,new_sbaplayer +3191,Daz Cameron,4,,91080,NEW_TEMP_91080,,new_sbaplayer +4859,Daz Cameron,5,,91080,NEW_TEMP_91080,,new_sbaplayer +3203,Drew Butera,4,,91081,NEW_TEMP_91081,,new_sbaplayer +4872,Drew Butera,5,,91081,NEW_TEMP_91081,,new_sbaplayer +3206,Dylan Carlson,4,,91082,NEW_TEMP_91082,,new_sbaplayer +4878,Dylan Carlson,5,,91082,NEW_TEMP_91082,,new_sbaplayer +3209,Eddy Alvarez,4,,91083,NEW_TEMP_91083,,new_sbaplayer +4880,Eddy Alvarez,5,,91083,NEW_TEMP_91083,,new_sbaplayer +3211,Edward Olivares,4,,91084,NEW_TEMP_91084,,new_sbaplayer +4882,Edward Olivares,5,,91084,NEW_TEMP_91084,,new_sbaplayer +3213,Edwin Rios,4,,91085,NEW_TEMP_91085,,new_sbaplayer +4255,Edwin Rios,5,,91085,NEW_TEMP_91085,,new_sbaplayer +3215,Eli White,4,,91086,NEW_TEMP_91086,,new_sbaplayer +4884,Eli White,5,,91086,NEW_TEMP_91086,,new_sbaplayer +3221,Eric Haase,4,,91087,NEW_TEMP_91087,,new_sbaplayer +4888,Eric Haase,5,,91087,NEW_TEMP_91087,,new_sbaplayer +3229,Evan White,4,,91088,NEW_TEMP_91088,,new_sbaplayer +4768,Evan White,5,,91088,NEW_TEMP_91088,,new_sbaplayer +3231,Franchy Cordero,4,,91089,NEW_TEMP_91089,,new_sbaplayer +4893,Franchy Cordero,5,,91089,NEW_TEMP_91089,,new_sbaplayer +3235,Franklin Barreto,4,,91090,NEW_TEMP_91090,,new_sbaplayer +4896,Franklin Barreto,5,,91090,NEW_TEMP_91090,,new_sbaplayer +3261,Isaac Paredes,4,,91091,NEW_TEMP_91091,,new_sbaplayer +4922,Isaac Paredes,5,,91091,NEW_TEMP_91091,,new_sbaplayer +3267,Jacob Nottingham,4,,91092,NEW_TEMP_91092,,new_sbaplayer +4222,Jacob Nottingham,5,,91092,NEW_TEMP_91092,,new_sbaplayer +3271,Jake Cronenworth,4,,91093,NEW_TEMP_91093,,new_sbaplayer +4262,Jake Cronenworth,5,,91093,NEW_TEMP_91093,,new_sbaplayer +3272,Jake Fraley,4,,91094,NEW_TEMP_91094,,new_sbaplayer +4930,Jake Fraley,5,,91094,NEW_TEMP_91094,,new_sbaplayer +3275,Jake Noll,4,,91095,NEW_TEMP_91095,,new_sbaplayer +4933,Jake Noll,5,,91095,NEW_TEMP_91095,,new_sbaplayer +3277,Jared Oliva,4,,91096,NEW_TEMP_91096,,new_sbaplayer +4939,Jared Oliva,5,,91096,NEW_TEMP_91096,,new_sbaplayer +3285,Jazz Chisholm,4,,91097,NEW_TEMP_91097,,new_sbaplayer +4700,Jazz Chisholm,5,,91097,NEW_TEMP_91097,,new_sbaplayer +3295,Jesus Sanchez,4,,91098,NEW_TEMP_91098,,new_sbaplayer +4947,Jesus Sanchez,5,,91098,NEW_TEMP_91098,,new_sbaplayer +3297,Jo Adell,4,,91099,NEW_TEMP_91099,,new_sbaplayer +4949,Jo Adell,5,,91099,NEW_TEMP_91099,,new_sbaplayer +3299,Joe Hudson,4,,91100,NEW_TEMP_91100,,new_sbaplayer +4951,Joe Hudson,5,,91100,NEW_TEMP_91100,,new_sbaplayer +3301,Joey Bart,4,,91101,NEW_TEMP_91101,,new_sbaplayer +4625,Joey Bart,5,,91101,NEW_TEMP_91101,,new_sbaplayer +3309,Jonah Heim,4,,91102,NEW_TEMP_91102,,new_sbaplayer +4640,Jonah Heim,5,,91102,NEW_TEMP_91102,,new_sbaplayer +3310,Jonathan Arauz,4,,91103,NEW_TEMP_91103,,new_sbaplayer +4963,Jonathan Arauz,5,,91103,NEW_TEMP_91103,,new_sbaplayer +3318,Jorge Mateo,4,,91104,NEW_TEMP_91104,,new_sbaplayer +4972,Jorge Mateo,5,,91104,NEW_TEMP_91104,,new_sbaplayer +3323,Jose Garcia,4,,91105,NEW_TEMP_91105,,new_sbaplayer +4975,Jose Garcia,5,,91105,NEW_TEMP_91105,,new_sbaplayer +3325,Jose Marmolejos,4,,91106,NEW_TEMP_91106,,new_sbaplayer +4976,Jose Marmolejos,5,,91106,NEW_TEMP_91106,,new_sbaplayer +3331,Joseph Odom,4,,91107,NEW_TEMP_91107,,new_sbaplayer +4981,Joseph Odom,5,,91107,NEW_TEMP_91107,,new_sbaplayer +3334,Josh Fuentes,4,,91108,NEW_TEMP_91108,,new_sbaplayer +4184,Josh Fuentes,5,,91108,NEW_TEMP_91108,,new_sbaplayer +3349,KeBryan Hayes,4,,91109,NEW_TEMP_91109,,new_sbaplayer +4125,KeBryan Hayes,5,,91109,NEW_TEMP_91109,,new_sbaplayer +3364,Kyle Garlick,4,,91110,NEW_TEMP_91110,,new_sbaplayer +5006,Kyle Garlick,5,,91110,NEW_TEMP_91110,,new_sbaplayer +3365,Kyle Higashioka,4,,91111,NEW_TEMP_91111,,new_sbaplayer +4263,Kyle Higashioka,5,,91111,NEW_TEMP_91111,,new_sbaplayer +3370,LaMonte Wade Jr,4,,91112,NEW_TEMP_91112,,new_sbaplayer +4651,LaMonte Wade Jr,5,,91112,NEW_TEMP_91112,,new_sbaplayer +3371,Lane Thomas,4,,91113,NEW_TEMP_91113,,new_sbaplayer +5010,Lane Thomas,5,,91113,NEW_TEMP_91113,,new_sbaplayer +3372,Leody Taveras,4,,91114,NEW_TEMP_91114,,new_sbaplayer +4205,Leody Taveras,5,,91114,NEW_TEMP_91114,,new_sbaplayer +3374,Lewin Diaz,4,,91115,NEW_TEMP_91115,,new_sbaplayer +5011,Lewin Diaz,5,,91115,NEW_TEMP_91115,,new_sbaplayer +3383,Luis Robert,4,,91116,NEW_TEMP_91116,,new_sbaplayer +4278,Luis Robert,5,,91116,NEW_TEMP_91116,,new_sbaplayer +3397,Mark Mathias,4,,91117,NEW_TEMP_91117,,new_sbaplayer +5027,Mark Mathias,5,,91117,NEW_TEMP_91117,,new_sbaplayer +3398,Mark Payton,4,,91118,NEW_TEMP_91118,,new_sbaplayer +5028,Mark Payton,5,,91118,NEW_TEMP_91118,,new_sbaplayer +3415,Max Schrock,4,,91119,NEW_TEMP_91119,,new_sbaplayer +5040,Max Schrock,5,,91119,NEW_TEMP_91119,,new_sbaplayer +3437,Monte Harrison,4,,91120,NEW_TEMP_91120,,new_sbaplayer +5058,Monte Harrison,5,,91120,NEW_TEMP_91120,,new_sbaplayer +3445,Nick Heath,4,,91121,NEW_TEMP_91121,,new_sbaplayer +4440,Nick Heath,5,,91121,NEW_TEMP_91121,,new_sbaplayer +3446,Nick Madrigal,4,,91122,NEW_TEMP_91122,,new_sbaplayer +4492,Nick Madrigal,5,,91122,NEW_TEMP_91122,,new_sbaplayer +3464,Pavin Smith,4,,91123,NEW_TEMP_91123,,new_sbaplayer +4499,Pavin Smith,5,,91123,NEW_TEMP_91123,,new_sbaplayer +3469,Phillip Evans,4,,91124,NEW_TEMP_91124,,new_sbaplayer +4653,Phillip Evans,5,,91124,NEW_TEMP_91124,,new_sbaplayer +3473,Ramon Urias,4,,91125,NEW_TEMP_91125,,new_sbaplayer +4553,Ramon Urias,5,,91125,NEW_TEMP_91125,,new_sbaplayer +3475,Randy Arozarena,4,,91126,NEW_TEMP_91126,,new_sbaplayer +4156,Randy Arozarena,5,,91126,NEW_TEMP_91126,,new_sbaplayer +3476,Rangel Ravelo,4,,91127,NEW_TEMP_91127,,new_sbaplayer +5086,Rangel Ravelo,5,,91127,NEW_TEMP_91127,,new_sbaplayer +3492,Ryan Jeffers,4,,91128,NEW_TEMP_91128,,new_sbaplayer +4371,Ryan Jeffers,5,,91128,NEW_TEMP_91128,,new_sbaplayer +3495,Ryan Mountcastle,4,,91129,NEW_TEMP_91129,,new_sbaplayer +4470,Ryan Mountcastle,5,,91129,NEW_TEMP_91129,,new_sbaplayer +3499,Sam Haggerty,4,,91130,NEW_TEMP_91130,,new_sbaplayer +4307,Sam Haggerty,5,,91130,NEW_TEMP_91130,,new_sbaplayer +3501,Sam Huff,4,,91131,NEW_TEMP_91131,,new_sbaplayer +4131,Sam Huff,5,,91131,NEW_TEMP_91131,,new_sbaplayer +3503,Santiago Espinal,4,,91132,NEW_TEMP_91132,,new_sbaplayer +4500,Santiago Espinal,5,,91132,NEW_TEMP_91132,,new_sbaplayer +3507,Sergio Alcantara,4,,91133,NEW_TEMP_91133,,new_sbaplayer +5117,Sergio Alcantara,5,,91133,NEW_TEMP_91133,,new_sbaplayer +3509,Sherten Apostel,4,,91134,NEW_TEMP_91134,,new_sbaplayer +5121,Sherten Apostel,5,,91134,NEW_TEMP_91134,,new_sbaplayer +3511,Shogo Akiyama,4,,91135,NEW_TEMP_91135,,new_sbaplayer +4546,Shogo Akiyama,5,,91135,NEW_TEMP_91135,,new_sbaplayer +3519,Taylor Jones,4,,91136,NEW_TEMP_91136,,new_sbaplayer +5132,Taylor Jones,5,,91136,NEW_TEMP_91136,,new_sbaplayer +3543,Tyler Heineman,4,,91137,NEW_TEMP_91137,,new_sbaplayer +4669,Tyler Heineman,5,,91137,NEW_TEMP_91137,,new_sbaplayer +3546,Tyler Stephenson,4,,91138,NEW_TEMP_91138,,new_sbaplayer +4132,Tyler Stephenson,5,,91138,NEW_TEMP_91138,,new_sbaplayer +3548,Tyrone Taylor,4,,91139,NEW_TEMP_91139,,new_sbaplayer +4313,Tyrone Taylor,5,,91139,NEW_TEMP_91139,,new_sbaplayer +3549,Tzu Wei Lin,4,,91140,NEW_TEMP_91140,,new_sbaplayer +5154,Tzu Wei Lin,5,,91140,NEW_TEMP_91140,,new_sbaplayer +3553,Vimael Machin,4,,91141,NEW_TEMP_91141,,new_sbaplayer +5157,Vimael Machin,5,,91141,NEW_TEMP_91141,,new_sbaplayer +3565,Wyatt Mathisen,4,,91142,NEW_TEMP_91142,,new_sbaplayer +4408,Wyatt Mathisen,5,,91142,NEW_TEMP_91142,,new_sbaplayer +3567,Yadiel Hernandez,4,,91143,NEW_TEMP_91143,,new_sbaplayer +5164,Yadiel Hernandez,5,,91143,NEW_TEMP_91143,,new_sbaplayer +3576,Yoshi Tsutsugo,4,,91144,NEW_TEMP_91144,,new_sbaplayer +4729,Yoshi Tsutsugo,5,,91144,NEW_TEMP_91144,,new_sbaplayer +3581,Aaron Loup,4,,91145,NEW_TEMP_91145,,new_sbaplayer +4576,Aaron Loup,5,,91145,NEW_TEMP_91145,,new_sbaplayer +3583,Aaron Slegers,4,,91146,NEW_TEMP_91146,,new_sbaplayer +4471,Aaron Slegers,5,,91146,NEW_TEMP_91146,,new_sbaplayer +3590,Adbert Alzolay,4,,91147,NEW_TEMP_91147,,new_sbaplayer +4404,Adbert Alzolay,5,,91147,NEW_TEMP_91147,,new_sbaplayer +3592,Adrian Morejon,4,,91148,NEW_TEMP_91148,,new_sbaplayer +4780,Adrian Morejon,5,,91148,NEW_TEMP_91148,,new_sbaplayer +3599,Alex Reyes,4,,91149,NEW_TEMP_91149,,new_sbaplayer +4783,Alex Reyes,5,,91149,NEW_TEMP_91149,,new_sbaplayer +3603,Andre Scrubb,4,,91150,NEW_TEMP_91150,,new_sbaplayer +4315,Andre Scrubb,5,,91150,NEW_TEMP_91150,,new_sbaplayer +3609,Andrew Triggs,4,,91151,NEW_TEMP_91151,,new_sbaplayer +4791,Andrew Triggs,5,,91151,NEW_TEMP_91151,,new_sbaplayer +3611,Anthony Banda,4,,91152,NEW_TEMP_91152,,new_sbaplayer +4794,Anthony Banda,5,,91152,NEW_TEMP_91152,,new_sbaplayer +3614,Anthony Kay,4,,91153,NEW_TEMP_91153,,new_sbaplayer +4721,Anthony Kay,5,,91153,NEW_TEMP_91153,,new_sbaplayer +3615,Anthony Misiewicz,4,,91154,NEW_TEMP_91154,,new_sbaplayer +4746,Anthony Misiewicz,5,,91154,NEW_TEMP_91154,,new_sbaplayer +3625,Ben Braymer,4,,91155,NEW_TEMP_91155,,new_sbaplayer +4134,Ben Braymer,5,,91155,NEW_TEMP_91155,,new_sbaplayer +3628,Blake Taylor,4,,91156,NEW_TEMP_91156,,new_sbaplayer +4416,Blake Taylor,5,,91156,NEW_TEMP_91156,,new_sbaplayer +3634,Brady Lail,4,,91157,NEW_TEMP_91157,,new_sbaplayer +4697,Brady Lail,5,,91157,NEW_TEMP_91157,,new_sbaplayer +3635,Brady Singer,4,,91158,NEW_TEMP_91158,,new_sbaplayer +4445,Brady Singer,5,,91158,NEW_TEMP_91158,,new_sbaplayer +3636,Brandon Bailey,4,,91159,NEW_TEMP_91159,,new_sbaplayer +4562,Brandon Bailey,5,,91159,NEW_TEMP_91159,,new_sbaplayer +3637,Brandon Bielak,4,,91160,NEW_TEMP_91160,,new_sbaplayer +4811,Brandon Bielak,5,,91160,NEW_TEMP_91160,,new_sbaplayer +3640,Brandon Leibrandt,4,,91161,NEW_TEMP_91161,,new_sbaplayer +4432,Brandon Leibrandt,5,,91161,NEW_TEMP_91161,,new_sbaplayer +3643,Braxton Garrett,4,,91162,NEW_TEMP_91162,,new_sbaplayer +4814,Braxton Garrett,5,,91162,NEW_TEMP_91162,,new_sbaplayer +3647,Brian Moran,4,,91163,NEW_TEMP_91163,,new_sbaplayer +4819,Brian Moran,5,,91163,NEW_TEMP_91163,,new_sbaplayer +3648,Brooks Raley,4,,91164,NEW_TEMP_91164,,new_sbaplayer +4636,Brooks Raley,5,,91164,NEW_TEMP_91164,,new_sbaplayer +3649,Brusdar Graterol,4,,91165,NEW_TEMP_91165,,new_sbaplayer +4707,Brusdar Graterol,5,,91165,NEW_TEMP_91165,,new_sbaplayer +3650,Bryan Garcia,4,,91166,NEW_TEMP_91166,,new_sbaplayer +4322,Bryan Garcia,5,,91166,NEW_TEMP_91166,,new_sbaplayer +3651,Bryse Wilson,4,,91167,NEW_TEMP_91167,,new_sbaplayer +4459,Bryse Wilson,5,,91167,NEW_TEMP_91167,,new_sbaplayer +3655,Caleb Baragar,4,,91168,NEW_TEMP_91168,,new_sbaplayer +4650,Caleb Baragar,5,,91168,NEW_TEMP_91168,,new_sbaplayer +3658,Caleb Thielbar,4,,91169,NEW_TEMP_91169,,new_sbaplayer +4378,Caleb Thielbar,5,,91169,NEW_TEMP_91169,,new_sbaplayer +3660,Cam Hill,4,,91170,NEW_TEMP_91170,,new_sbaplayer +4823,Cam Hill,5,,91170,NEW_TEMP_91170,,new_sbaplayer +3663,Carlos Hernandez,4,,91171,NEW_TEMP_91171,,new_sbaplayer +4826,Carlos Hernandez,5,,91171,NEW_TEMP_91171,,new_sbaplayer +3667,Casey Mize,4,,91172,NEW_TEMP_91172,,new_sbaplayer +4830,Casey Mize,5,,91172,NEW_TEMP_91172,,new_sbaplayer +3669,Cesar Valdez,4,,91173,NEW_TEMP_91173,,new_sbaplayer +4127,Cesar Valdez,5,,91173,NEW_TEMP_91173,,new_sbaplayer +3672,Chance Adams,4,,91174,NEW_TEMP_91174,,new_sbaplayer +4834,Chance Adams,5,,91174,NEW_TEMP_91174,,new_sbaplayer +3675,Chase De Jong,4,,91175,NEW_TEMP_91175,,new_sbaplayer +4836,Chase De Jong,5,,91175,NEW_TEMP_91175,,new_sbaplayer +3676,Chasen Shreve,4,,91176,NEW_TEMP_91176,,new_sbaplayer +4607,Chasen Shreve,5,,91176,NEW_TEMP_91176,,new_sbaplayer +3681,Chris Mazza,4,,91177,NEW_TEMP_91177,,new_sbaplayer +4573,Chris Mazza,5,,91177,NEW_TEMP_91177,,new_sbaplayer +3684,Cionel Perez,4,,91178,NEW_TEMP_91178,,new_sbaplayer +4621,Cionel Perez,5,,91178,NEW_TEMP_91178,,new_sbaplayer +3686,Codi Heuer,4,,91179,NEW_TEMP_91179,,new_sbaplayer +4417,Codi Heuer,5,,91179,NEW_TEMP_91179,,new_sbaplayer +3687,Cody Ponce,4,,91180,NEW_TEMP_91180,,new_sbaplayer +4496,Cody Ponce,5,,91180,NEW_TEMP_91180,,new_sbaplayer +3690,Cole Sulser,4,,91181,NEW_TEMP_91181,,new_sbaplayer +4842,Cole Sulser,5,,91181,NEW_TEMP_91181,,new_sbaplayer +3691,Colin Rea,4,,91182,NEW_TEMP_91182,,new_sbaplayer +4844,Colin Rea,5,,91182,NEW_TEMP_91182,,new_sbaplayer +3693,Conner Menez,4,,91183,NEW_TEMP_91183,,new_sbaplayer +4491,Conner Menez,5,,91183,NEW_TEMP_91183,,new_sbaplayer +3694,Connor Brogdon,4,,91184,NEW_TEMP_91184,,new_sbaplayer +4497,Connor Brogdon,5,,91184,NEW_TEMP_91184,,new_sbaplayer +3700,Cristian Javier,4,,91185,NEW_TEMP_91185,,new_sbaplayer +4300,Cristian Javier,5,,91185,NEW_TEMP_91185,,new_sbaplayer +3701,Cy Sneed,4,,91186,NEW_TEMP_91186,,new_sbaplayer +4848,Cy Sneed,5,,91186,NEW_TEMP_91186,,new_sbaplayer +3702,Dakota Bacus,4,,91187,NEW_TEMP_91187,,new_sbaplayer +4849,Dakota Bacus,5,,91187,NEW_TEMP_91187,,new_sbaplayer +3705,Dan Altavilla,4,,91188,NEW_TEMP_91188,,new_sbaplayer +4850,Dan Altavilla,5,,91188,NEW_TEMP_91188,,new_sbaplayer +3707,Dane Dunning,4,,91189,NEW_TEMP_91189,,new_sbaplayer +4754,Dane Dunning,5,,91189,NEW_TEMP_91189,,new_sbaplayer +3708,Daniel Bard,4,,91190,NEW_TEMP_91190,,new_sbaplayer +4381,Daniel Bard,5,,91190,NEW_TEMP_91190,,new_sbaplayer +3709,Daniel Castano,4,,91191,NEW_TEMP_91191,,new_sbaplayer +4330,Daniel Castano,5,,91191,NEW_TEMP_91191,,new_sbaplayer +3715,Darren ODay,4,,91192,NEW_TEMP_91192,,new_sbaplayer +4311,Darren ODay,5,,91192,NEW_TEMP_91192,,new_sbaplayer +3718,David Peterson,4,,91193,NEW_TEMP_91193,,new_sbaplayer +4209,David Peterson,5,,91193,NEW_TEMP_91193,,new_sbaplayer +3720,Dean Kremer,4,,91194,NEW_TEMP_91194,,new_sbaplayer +4339,Dean Kremer,5,,91194,NEW_TEMP_91194,,new_sbaplayer +3721,Deivi Garcia,4,,91195,NEW_TEMP_91195,,new_sbaplayer +4622,Deivi Garcia,5,,91195,NEW_TEMP_91195,,new_sbaplayer +3723,Dennis Santana,4,,91196,NEW_TEMP_91196,,new_sbaplayer +4863,Dennis Santana,5,,91196,NEW_TEMP_91196,,new_sbaplayer +3724,Deolis Guerra,4,,91197,NEW_TEMP_91197,,new_sbaplayer +4864,Deolis Guerra,5,,91197,NEW_TEMP_91197,,new_sbaplayer +3727,Devin Williams,4,,91198,NEW_TEMP_91198,,new_sbaplayer +4172,Devin Williams,5,,91198,NEW_TEMP_91198,,new_sbaplayer +3729,Dillon Tate,4,,91199,NEW_TEMP_91199,,new_sbaplayer +4390,Dillon Tate,5,,91199,NEW_TEMP_91199,,new_sbaplayer +3734,Drew Rasmussen,4,,91200,NEW_TEMP_91200,,new_sbaplayer +4873,Drew Rasmussen,5,,91200,NEW_TEMP_91200,,new_sbaplayer +3735,Drew Smith,4,,91201,NEW_TEMP_91201,,new_sbaplayer +4874,Drew Smith,5,,91201,NEW_TEMP_91201,,new_sbaplayer +3737,Duane Underwood,4,,91202,NEW_TEMP_91202,,new_sbaplayer +4875,Duane Underwood,5,,91202,NEW_TEMP_91202,,new_sbaplayer +3746,Enoli Paredes,4,,91203,NEW_TEMP_91203,,new_sbaplayer +4520,Enoli Paredes,5,,91203,NEW_TEMP_91203,,new_sbaplayer +3747,Erasmo Ramirez,4,,91204,NEW_TEMP_91204,,new_sbaplayer +4146,Erasmo Ramirez,5,,91204,NEW_TEMP_91204,,new_sbaplayer +3749,Eric Yardley,4,,91205,NEW_TEMP_91205,,new_sbaplayer +4510,Eric Yardley,5,,91205,NEW_TEMP_91205,,new_sbaplayer +3757,Franklyn Kilome,4,,91206,NEW_TEMP_91206,,new_sbaplayer +4897,Franklyn Kilome,5,,91206,NEW_TEMP_91206,,new_sbaplayer +3759,Gabe Speier,4,,91207,NEW_TEMP_91207,,new_sbaplayer +4898,Gabe Speier,5,,91207,NEW_TEMP_91207,,new_sbaplayer +3760,Garrett Crochet,4,,91208,NEW_TEMP_91208,,new_sbaplayer +4256,Garrett Crochet,5,,91208,NEW_TEMP_91208,,new_sbaplayer +3762,Genesis Cabrera,4,,91209,NEW_TEMP_91209,,new_sbaplayer +4752,Genesis Cabrera,5,,91209,NEW_TEMP_91209,,new_sbaplayer +3768,Grant Dayton,4,,91210,NEW_TEMP_91210,,new_sbaplayer +4366,Grant Dayton,5,,91210,NEW_TEMP_91210,,new_sbaplayer +3776,Hoby Milner,4,,91211,NEW_TEMP_91211,,new_sbaplayer +4912,Hoby Milner,5,,91211,NEW_TEMP_91211,,new_sbaplayer +3778,Huascar Ynoa,4,,91212,NEW_TEMP_91212,,new_sbaplayer +4723,Huascar Ynoa,5,,91212,NEW_TEMP_91212,,new_sbaplayer +3779,Humberto Castellanos,4,,91213,NEW_TEMP_91213,,new_sbaplayer +4914,Humberto Castellanos,5,,91213,NEW_TEMP_91213,,new_sbaplayer +3780,Humberto Mejia,4,,91214,NEW_TEMP_91214,,new_sbaplayer +4915,Humberto Mejia,5,,91214,NEW_TEMP_91214,,new_sbaplayer +3781,Hunter Harvey,4,,91215,NEW_TEMP_91215,,new_sbaplayer +4916,Hunter Harvey,5,,91215,NEW_TEMP_91215,,new_sbaplayer +3783,Ian Anderson,4,,91216,NEW_TEMP_91216,,new_sbaplayer +4147,Ian Anderson,5,,91216,NEW_TEMP_91216,,new_sbaplayer +3784,Ian Gibaut,4,,91217,NEW_TEMP_91217,,new_sbaplayer +4919,Ian Gibaut,5,,91217,NEW_TEMP_91217,,new_sbaplayer +3804,James Hoyt,4,,91218,NEW_TEMP_91218,,new_sbaplayer +4216,James Hoyt,5,,91218,NEW_TEMP_91218,,new_sbaplayer +3805,James Karinchak,4,,91219,NEW_TEMP_91219,,new_sbaplayer +4549,James Karinchak,5,,91219,NEW_TEMP_91219,,new_sbaplayer +3810,Javy A Guerra,4,,91220,NEW_TEMP_91220,,new_sbaplayer +3818,Jesse Hahn,4,,91221,NEW_TEMP_91221,,new_sbaplayer +4235,Jesse Hahn,5,,91221,NEW_TEMP_91221,,new_sbaplayer +3823,Jimmy Herget,4,,91222,NEW_TEMP_91222,,new_sbaplayer +4566,Jimmy Herget,5,,91222,NEW_TEMP_91222,,new_sbaplayer +3828,Joely Rodriguez,4,,91223,NEW_TEMP_91223,,new_sbaplayer +4340,Joely Rodriguez,5,,91223,NEW_TEMP_91223,,new_sbaplayer +3829,Joey Gerber,4,,91224,NEW_TEMP_91224,,new_sbaplayer +4954,Joey Gerber,5,,91224,NEW_TEMP_91224,,new_sbaplayer +3830,Johan Oviedo,4,,91225,NEW_TEMP_91225,,new_sbaplayer +4955,Johan Oviedo,5,,91225,NEW_TEMP_91225,,new_sbaplayer +3831,John Curtiss,4,,91226,NEW_TEMP_91226,,new_sbaplayer +4447,John Curtiss,5,,91226,NEW_TEMP_91226,,new_sbaplayer +3833,John King,4,,91227,NEW_TEMP_91227,,new_sbaplayer +4956,John King,5,,91227,NEW_TEMP_91227,,new_sbaplayer +3835,John Schreiber,4,,91228,NEW_TEMP_91228,,new_sbaplayer +4958,John Schreiber,5,,91228,NEW_TEMP_91228,,new_sbaplayer +3836,Johnny Cueto,4,,91229,NEW_TEMP_91229,,new_sbaplayer +4769,Johnny Cueto,5,,91229,NEW_TEMP_91229,,new_sbaplayer +3837,JoJo Romero,4,,91230,NEW_TEMP_91230,,new_sbaplayer +4959,JoJo Romero,5,,91230,NEW_TEMP_91230,,new_sbaplayer +3840,Jonathan Hernandez,4,,91231,NEW_TEMP_91231,,new_sbaplayer +4513,Jonathan Hernandez,5,,91231,NEW_TEMP_91231,,new_sbaplayer +3844,Jordan Montgomery,4,,91232,NEW_TEMP_91232,,new_sbaplayer +4756,Jordan Montgomery,5,,91232,NEW_TEMP_91232,,new_sbaplayer +3845,Jordan Romano,4,,91233,NEW_TEMP_91233,,new_sbaplayer +4144,Jordan Romano,5,,91233,NEW_TEMP_91233,,new_sbaplayer +3846,Jordan Weems,4,,91234,NEW_TEMP_91234,,new_sbaplayer +4558,Jordan Weems,5,,91234,NEW_TEMP_91234,,new_sbaplayer +3848,Jorge Alcala,4,,91235,NEW_TEMP_91235,,new_sbaplayer +4519,Jorge Alcala,5,,91235,NEW_TEMP_91235,,new_sbaplayer +3857,Josh Fleming,4,,91236,NEW_TEMP_91236,,new_sbaplayer +4237,Josh Fleming,5,,91236,NEW_TEMP_91236,,new_sbaplayer +3860,Josh Lindblom,4,,91237,NEW_TEMP_91237,,new_sbaplayer +4726,Josh Lindblom,5,,91237,NEW_TEMP_91237,,new_sbaplayer +3863,Josh Staumont,4,,91238,NEW_TEMP_91238,,new_sbaplayer +4486,Josh Staumont,5,,91238,NEW_TEMP_91238,,new_sbaplayer +3866,JP Feyereisen,4,,91239,NEW_TEMP_91239,,new_sbaplayer +4990,JP Feyereisen,5,,91239,NEW_TEMP_91239,,new_sbaplayer +3867,JT Brubaker,4,,91240,NEW_TEMP_91240,,new_sbaplayer +4991,JT Brubaker,5,,91240,NEW_TEMP_91240,,new_sbaplayer +3868,Julian Merryweather,4,,91241,NEW_TEMP_91241,,new_sbaplayer +4540,Julian Merryweather,5,,91241,NEW_TEMP_91241,,new_sbaplayer +3872,Justin Dunn,4,,91242,NEW_TEMP_91242,,new_sbaplayer +4662,Justin Dunn,5,,91242,NEW_TEMP_91242,,new_sbaplayer +3873,Justin Topa,4,,91243,NEW_TEMP_91243,,new_sbaplayer +4336,Justin Topa,5,,91243,NEW_TEMP_91243,,new_sbaplayer +3876,Keegan Akin,4,,91244,NEW_TEMP_91244,,new_sbaplayer +4666,Keegan Akin,5,,91244,NEW_TEMP_91244,,new_sbaplayer +3877,Kendall Graveman,4,,91245,NEW_TEMP_91245,,new_sbaplayer +4996,Kendall Graveman,5,,91245,NEW_TEMP_91245,,new_sbaplayer +3880,Keury Mella,4,,91246,NEW_TEMP_91246,,new_sbaplayer +4578,Keury Mella,5,,91246,NEW_TEMP_91246,,new_sbaplayer +3882,Kevin Ginkel,4,,91247,NEW_TEMP_91247,,new_sbaplayer +4999,Kevin Ginkel,5,,91247,NEW_TEMP_91247,,new_sbaplayer +3883,Keynan Middleton,4,,91248,NEW_TEMP_91248,,new_sbaplayer +5001,Keynan Middleton,5,,91248,NEW_TEMP_91248,,new_sbaplayer +3885,Kris Bubic,4,,91249,NEW_TEMP_91249,,new_sbaplayer +4676,Kris Bubic,5,,91249,NEW_TEMP_91249,,new_sbaplayer +3886,Kwang Hyun Kim,4,,91250,NEW_TEMP_91250,,new_sbaplayer +4316,Kwang Hyun Kim,5,,91250,NEW_TEMP_91250,,new_sbaplayer +3887,Kyle Cody,4,,91251,NEW_TEMP_91251,,new_sbaplayer +4190,Kyle Cody,5,,91251,NEW_TEMP_91251,,new_sbaplayer +3889,Kyle Finnegan,4,,91252,NEW_TEMP_91252,,new_sbaplayer +4384,Kyle Finnegan,5,,91252,NEW_TEMP_91252,,new_sbaplayer +3891,Kyle Funkhouser,4,,91253,NEW_TEMP_91253,,new_sbaplayer +5005,Kyle Funkhouser,5,,91253,NEW_TEMP_91253,,new_sbaplayer +3893,Kyle Hart,4,,91254,NEW_TEMP_91254,,new_sbaplayer +5008,Kyle Hart,5,,91254,NEW_TEMP_91254,,new_sbaplayer +3895,Kyle McGowin,4,,91255,NEW_TEMP_91255,,new_sbaplayer +4344,Kyle McGowin,5,,91255,NEW_TEMP_91255,,new_sbaplayer +3897,Kyle Wright,4,,91256,NEW_TEMP_91256,,new_sbaplayer +4671,Kyle Wright,5,,91256,NEW_TEMP_91256,,new_sbaplayer +3898,Kyle Zimmer,4,,91257,NEW_TEMP_91257,,new_sbaplayer +4295,Kyle Zimmer,5,,91257,NEW_TEMP_91257,,new_sbaplayer +3903,Ljay Newsome,4,,91258,NEW_TEMP_91258,,new_sbaplayer +4692,Ljay Newsome,5,,91258,NEW_TEMP_91258,,new_sbaplayer +3904,Logan Allen,4,,91259,NEW_TEMP_91259,,new_sbaplayer +4637,Logan Allen,5,,91259,NEW_TEMP_91259,,new_sbaplayer +3913,Luis H Garcia,4,,91260,NEW_TEMP_91260,,new_sbaplayer +4187,Luis H Garcia,5,,91260,NEW_TEMP_91260,,new_sbaplayer +3914,Luis Patino,4,,91261,NEW_TEMP_91261,,new_sbaplayer +5018,Luis Patino,5,,91261,NEW_TEMP_91261,,new_sbaplayer +3926,Matt Foster,4,,91262,NEW_TEMP_91262,,new_sbaplayer +4521,Matt Foster,5,,91262,NEW_TEMP_91262,,new_sbaplayer +3927,Matt Hall,4,,91263,NEW_TEMP_91263,,new_sbaplayer +5033,Matt Hall,5,,91263,NEW_TEMP_91263,,new_sbaplayer +3938,Michael King,4,,91264,NEW_TEMP_91264,,new_sbaplayer +5045,Michael King,5,,91264,NEW_TEMP_91264,,new_sbaplayer +3945,Mike Kickham,4,,91265,NEW_TEMP_91265,,new_sbaplayer +5053,Mike Kickham,5,,91265,NEW_TEMP_91265,,new_sbaplayer +3951,Nabil Crismatt,4,,91266,NEW_TEMP_91266,,new_sbaplayer +5060,Nabil Crismatt,5,,91266,NEW_TEMP_91266,,new_sbaplayer +3953,Nate Pearson,4,,91267,NEW_TEMP_91267,,new_sbaplayer +5062,Nate Pearson,5,,91267,NEW_TEMP_91267,,new_sbaplayer +3959,Nick Neidert,4,,91268,NEW_TEMP_91268,,new_sbaplayer +5066,Nick Neidert,5,,91268,NEW_TEMP_91268,,new_sbaplayer +3960,Nick Nelson,4,,91269,NEW_TEMP_91269,,new_sbaplayer +5067,Nick Nelson,5,,91269,NEW_TEMP_91269,,new_sbaplayer +3966,Nik Turley,4,,91270,NEW_TEMP_91270,,new_sbaplayer +5072,Nik Turley,5,,91270,NEW_TEMP_91270,,new_sbaplayer +3967,Nivaldo Rodriguez,4,,91271,NEW_TEMP_91271,,new_sbaplayer +5074,Nivaldo Rodriguez,5,,91271,NEW_TEMP_91271,,new_sbaplayer +3976,Pete Fairbanks,4,,91272,NEW_TEMP_91272,,new_sbaplayer +4543,Pete Fairbanks,5,,91272,NEW_TEMP_91272,,new_sbaplayer +3980,Rafael Dolis,4,,91273,NEW_TEMP_91273,,new_sbaplayer +4257,Rafael Dolis,5,,91273,NEW_TEMP_91273,,new_sbaplayer +3983,Ramon Rosso,4,,91274,NEW_TEMP_91274,,new_sbaplayer +5085,Ramon Rosso,5,,91274,NEW_TEMP_91274,,new_sbaplayer +3990,Rico Garcia,4,,91275,NEW_TEMP_91275,,new_sbaplayer +5089,Rico Garcia,5,,91275,NEW_TEMP_91275,,new_sbaplayer +3991,Riley Smith,4,,91276,NEW_TEMP_91276,,new_sbaplayer +4251,Riley Smith,5,,91276,NEW_TEMP_91276,,new_sbaplayer +3998,Rony Garcia,4,,91277,NEW_TEMP_91277,,new_sbaplayer +5099,Rony Garcia,5,,91277,NEW_TEMP_91277,,new_sbaplayer +4005,Ryan Castellani,4,,91278,NEW_TEMP_91278,,new_sbaplayer +4762,Ryan Castellani,5,,91278,NEW_TEMP_91278,,new_sbaplayer +4008,Ryan Sherriff,4,,91279,NEW_TEMP_91279,,new_sbaplayer +4230,Ryan Sherriff,5,,91279,NEW_TEMP_91279,,new_sbaplayer +4010,Ryan Thompson,4,,91280,NEW_TEMP_91280,,new_sbaplayer +5106,Ryan Thompson,5,,91280,NEW_TEMP_91280,,new_sbaplayer +4016,Sam Howard,4,,91281,NEW_TEMP_91281,,new_sbaplayer +4749,Sam Howard,5,,91281,NEW_TEMP_91281,,new_sbaplayer +4017,Sam Selman,4,,91282,NEW_TEMP_91282,,new_sbaplayer +4682,Sam Selman,5,,91282,NEW_TEMP_91282,,new_sbaplayer +4024,Sean Poppen,4,,91283,NEW_TEMP_91283,,new_sbaplayer +5116,Sean Poppen,5,,91283,NEW_TEMP_91283,,new_sbaplayer +4033,Shun Yamaguchi,4,,91284,NEW_TEMP_91284,,new_sbaplayer +5122,Shun Yamaguchi,5,,91284,NEW_TEMP_91284,,new_sbaplayer +4034,Sixto Sanchez,4,,91285,NEW_TEMP_91285,,new_sbaplayer +4170,Sixto Sanchez,5,,91285,NEW_TEMP_91285,,new_sbaplayer +4036,Spencer Howard,4,,91286,NEW_TEMP_91286,,new_sbaplayer +4731,Spencer Howard,5,,91286,NEW_TEMP_91286,,new_sbaplayer +4039,Stephen Tarpley,4,,91287,NEW_TEMP_91287,,new_sbaplayer +5124,Stephen Tarpley,5,,91287,NEW_TEMP_91287,,new_sbaplayer +4043,Taijuan Walker,4,,91288,NEW_TEMP_91288,,new_sbaplayer +4402,Taijuan Walker,5,,91288,NEW_TEMP_91288,,new_sbaplayer +4044,Tanner Houck,4,,91289,NEW_TEMP_91289,,new_sbaplayer +4124,Tanner Houck,5,,91289,NEW_TEMP_91289,,new_sbaplayer +4048,Tarik Skubal,4,,91290,NEW_TEMP_91290,,new_sbaplayer +5131,Tarik Skubal,5,,91290,NEW_TEMP_91290,,new_sbaplayer +4050,Taylor Guilbeau,4,,91291,NEW_TEMP_91291,,new_sbaplayer +4487,Taylor Guilbeau,5,,91291,NEW_TEMP_91291,,new_sbaplayer +4051,Taylor Hearn,4,,91292,NEW_TEMP_91292,,new_sbaplayer +4616,Taylor Hearn,5,,91292,NEW_TEMP_91292,,new_sbaplayer +4053,Taylor Widener,4,,91293,NEW_TEMP_91293,,new_sbaplayer +4635,Taylor Widener,5,,91293,NEW_TEMP_91293,,new_sbaplayer +4055,Tejay Antone,4,,91294,NEW_TEMP_91294,,new_sbaplayer +4359,Tejay Antone,5,,91294,NEW_TEMP_91294,,new_sbaplayer +4056,Thomas Eshelman,4,,91295,NEW_TEMP_91295,,new_sbaplayer +4502,Thomas Eshelman,5,,91295,NEW_TEMP_91295,,new_sbaplayer +4059,TJ Zeuch,4,,91296,NEW_TEMP_91296,,new_sbaplayer +4163,TJ Zeuch,5,,91296,NEW_TEMP_91296,,new_sbaplayer +4060,Tom Hatch,4,,91297,NEW_TEMP_91297,,new_sbaplayer +4353,Tom Hatch,5,,91297,NEW_TEMP_91297,,new_sbaplayer +4066,Travis Bergen,4,,91298,NEW_TEMP_91298,,new_sbaplayer +4394,Travis Bergen,5,,91298,NEW_TEMP_91298,,new_sbaplayer +4067,Travis Lakins,4,,91299,NEW_TEMP_91299,,new_sbaplayer +4276,Travis Lakins,5,,91299,NEW_TEMP_91299,,new_sbaplayer +4076,Triston McKenzie,4,,91300,NEW_TEMP_91300,,new_sbaplayer +4444,Triston McKenzie,5,,91300,NEW_TEMP_91300,,new_sbaplayer +4087,Tyler Matzek,4,,91301,NEW_TEMP_91301,,new_sbaplayer +4288,Tyler Matzek,5,,91301,NEW_TEMP_91301,,new_sbaplayer +4088,Tyler Rogers,4,,91302,NEW_TEMP_91302,,new_sbaplayer +4725,Tyler Rogers,5,,91302,NEW_TEMP_91302,,new_sbaplayer +4089,Tyler Thornburg,4,,91303,NEW_TEMP_91303,,new_sbaplayer +4645,Tyler Thornburg,5,,91303,NEW_TEMP_91303,,new_sbaplayer +4091,Tyler Zuber,4,,91304,NEW_TEMP_91304,,new_sbaplayer +4705,Tyler Zuber,5,,91304,NEW_TEMP_91304,,new_sbaplayer +4092,Victor Gonzalez,4,,91305,NEW_TEMP_91305,,new_sbaplayer +4303,Victor Gonzalez,5,,91305,NEW_TEMP_91305,,new_sbaplayer +4100,Wes Benjamin,4,,91306,NEW_TEMP_91306,,new_sbaplayer +4649,Wes Benjamin,5,,91306,NEW_TEMP_91306,,new_sbaplayer +4101,Wil Crowe,4,,91307,NEW_TEMP_91307,,new_sbaplayer +5160,Wil Crowe,5,,91307,NEW_TEMP_91307,,new_sbaplayer +4108,Yohan Ramirez,4,,91308,NEW_TEMP_91308,,new_sbaplayer +4387,Yohan Ramirez,5,,91308,NEW_TEMP_91308,,new_sbaplayer +4115,Zac Grotz,4,,91309,NEW_TEMP_91309,,new_sbaplayer +5169,Zac Grotz,5,,91309,NEW_TEMP_91309,,new_sbaplayer +5281,Luis H Garcia,6,garcilu05,91310,NEW_TEMP_91310,garcilu05,new_sbaplayer +6485,Luis H Garcia,7,garcilu05,91310,NEW_TEMP_91310,garcilu05,new_sbaplayer +7877,Luis H Garcia,8,garcilu05,91310,NEW_TEMP_91310,garcilu05,new_sbaplayer +8930,Luis H Garcia,9,garcilu05,91310,NEW_TEMP_91310,garcilu05,new_sbaplayer +5464,Danny Coulombe,6,couloda01,91311,NEW_TEMP_91311,couloda01,new_sbaplayer +6748,Danny Coulombe,7,couloda01,91311,NEW_TEMP_91311,couloda01,new_sbaplayer +9552,Daniel Coulombe,10,couloda01,91311,NEW_TEMP_91311,couloda01,new_sbaplayer +10608,Daniel Coulombe,11,couloda01,91311,NEW_TEMP_91311,couloda01,new_sbaplayer +11690,Daniel Coulombe,12,couloda01,91311,NEW_TEMP_91311,couloda01,new_sbaplayer +5465,Luis Garcia,6,garcilu03,91312,NEW_TEMP_91312,garcilu03,new_sbaplayer +6751,Luis Garcia,7,garcilu03,91312,NEW_TEMP_91312,garcilu03,new_sbaplayer +7876,Luis Garcia,8,garcilu03,91312,NEW_TEMP_91312,garcilu03,new_sbaplayer +8929,Luis Garcia,9,garcilu03,91312,NEW_TEMP_91312,garcilu03,new_sbaplayer +9897,Luis Garcia,10,garcilu03,91312,NEW_TEMP_91312,garcilu03,new_sbaplayer +10953,Luis Garcia,11,garcilu03,91312,NEW_TEMP_91312,garcilu03,new_sbaplayer +12095,Luis Garcia,12,garcilu03,91312,NEW_TEMP_91312,garcilu03,new_sbaplayer +5575,Thomas Eshelman,6,eshelto01,91313,NEW_TEMP_91313,eshelto01,new_sbaplayer +6949,Thomas Eshelman,7,eshelto01,91313,NEW_TEMP_91313,eshelto01,new_sbaplayer +5635,JC Mejia,6,mejiaje02,91314,NEW_TEMP_91314,mejiaje02,new_sbaplayer +7009,JC Mejia,7,mejiaje02,91314,NEW_TEMP_91314,mejiaje02,new_sbaplayer +5817,Francisco Mejia,6,mejiafr01,91315,NEW_TEMP_91315,mejiafr01,new_sbaplayer +6381,Francisco Mejia,7,mejiafr01,91315,NEW_TEMP_91315,mejiafr01,new_sbaplayer +7570,Francisco Mejia,8,mejiafr01,91315,NEW_TEMP_91315,mejiafr01,new_sbaplayer +8624,Francisco Mejia,9,mejiafr01,91315,NEW_TEMP_91315,mejiafr01,new_sbaplayer +7564,Evan Phillips,8,phillev01,91316,NEW_TEMP_91316,phillev01,new_sbaplayer +8618,Evan Phillips,9,phillev01,91316,NEW_TEMP_91316,phillev01,new_sbaplayer +9622,Evan Phillips,10,phillev01,91316,NEW_TEMP_91316,phillev01,new_sbaplayer +10678,Evan Phillips,11,phillev01,91316,NEW_TEMP_91316,phillev01,new_sbaplayer +11779,Evan Phillips,12,phillev01,91316,NEW_TEMP_91316,phillev01,new_sbaplayer +7956,Michael A Taylor,8,taylomi01,91317,NEW_TEMP_91317,taylomi01,new_sbaplayer +9007,Michael A Taylor,9,taylomi01,91317,NEW_TEMP_91317,taylomi01,new_sbaplayer +9350,Aaron Loup,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9356,Adam Wainwright,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9361,Adrian Martinez,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9366,Albert Abreu,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9370,Aledmys Diaz,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9376,Alex Cobb,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9383,Alex Young,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9387,Andre Jackson,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9390,Andres Machado,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9401,Andrew Wantz,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9404,Angel Perdomo,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9406,Anthony Bass,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9407,Anthony DeSclafani,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9414,Austin Cox,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9422,Austin Wynns,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9433,Brad Hand,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9436,Brandon Belt,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9439,Brandon Dixon,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9445,Brandon Williamson,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9446,Brandon Woodruff,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9451,Brendan White,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9453,Brent Headrick,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9458,Brian Anderson,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9463,Brusdar Graterol,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9465,Bryan Baker,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9478,Cade Marlowe,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9483,Cam Gallagher,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9485,Carl Edwards Jr,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9490,Carlos Perez,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9499,Chad Kuhl,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9500,Chad Wallach,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9509,Chris Murphy,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9514,Christian Encarnacion Strand,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9521,CJ Cron,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9524,Clayton Kershaw,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9533,Collin McHugh,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9536,Connor Seabold,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9542,Cory Abbott,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9551,Daniel Bard,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9554,Daniel Lynch,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9561,Dauri Moreta,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9565,David Hensley,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9567,David Peterson,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9572,Devin Williams,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9573,DJ LeMahieu,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9575,Domingo German,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9579,Drew Rom,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9582,Drew VerHagen,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9583,Drew Waters,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9584,Drey Jameson,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9585,Dustin May,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9588,Dylan Covey,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9595,Eduardo Escobar,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9596,Eduardo Rodriguez,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9604,Elvis Andrus,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9609,Emmet Sheehan,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9610,Endy Rodriguez,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9614,Eric Haase,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9619,Eury Perez,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9621,Evan Longoria,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9623,Everson Pereira,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9626,Felix Bautista,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9632,Francisco Mejia,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9644,Gavin Hollowell,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9647,Gavin Williams,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9653,Gerrit Cole,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9661,Gregory Santos,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9666,Ha Seong Kim,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9667,Harold Castro,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9673,Henry Ramos,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9676,Huascar Brazoban,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9681,Hyun Jin Ryu,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9682,Ian Gibaut,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9688,Isiah Kiner Falefa,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9692,Jackson Kowar,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9696,Jaime Barria,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9697,Jake Alu,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9710,Jake Woodford,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9712,James Kaprielian,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9713,James Karinchak,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9727,Jason Vosler,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9733,Jean Segura,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9734,Jeff Brigham,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9739,Jesse Scholtens,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9745,Ji Man Choi,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9747,Jimmy Lambert,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9761,Joey Votto,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9765,Johan Oviedo,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9777,Jordan Balazovic,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9778,Jordan Diaz,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9793,Jose Barrero,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9799,Jose Ferrer,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9801,Jose Herrera,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9811,Jose Urquidy,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9817,Josh Palacios,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9822,Josh Winder,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9824,Jovani Moran,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9828,JT Chargois,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9834,Julio Urias,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9838,Justin Topa,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9841,KeBryan Hayes,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9843,Ken Waldichuk,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9844,Kendall Graveman,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9856,Kodai Senga,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9857,Kole Calhoun,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9858,Kolten Wong,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9873,Kyle Wright,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9876,Lane Ramsey,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9882,Liover Peguero,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9885,Logan OHoppe,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9890,Lucas Giolito,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9895,Luis Cessa,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9900,Luis Medina,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9902,Luis Patino,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9904,Luis Robert,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9907,Luis V Garcia,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9911,Luken Baker,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9921,Mark Leiter,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9922,Mark Mathias,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9929,Mason Thompson,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9931,Matt Beaty,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9932,Matt Boyd,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9933,Matt Brash,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9936,Matt Duffy,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9939,Matt McLain,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9948,Mauricio Llovera,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9952,Max Scherzer,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9954,Michael Chavis,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9956,Michael Fulmer,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9958,Michael Harris,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9970,Miguel Cabrera,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9975,Mike Brosseau,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9978,Mike Mayers,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9979,Mike Moustakas,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9989,Myles Straw,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10002,Nick Maton,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10004,Nick Pratto,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10008,Nick Wittgren,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10011,Noah Syndergaard,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10020,Oswald Peraza,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10039,Peyton Battenfield,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10040,Phil Bickford,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10058,Rich Hill,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10059,Richard Bleier,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10066,Rob Zastryzny,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10069,Robert Stephenson,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10071,Rodolfo Castro,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10074,Ronny Mauricio,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10087,Ryan OHearn,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10098,Sam Hilliard,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10101,Sammy Peralta,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10102,Sandy Alcantara,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10116,Shane McClanahan,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10120,Shintaro Fujinami,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10127,Stephen Nogosek,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10132,Stone Garrett,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10142,Taylor Clarke,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10144,Taylor Walls,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10147,Thaddeus Ward,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10155,Tommy Edman,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10157,Tommy Hunter,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10160,Tony Gonsolin,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10162,Touki Toussaint,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10163,Travis dArnaud,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10168,Trevor Stephan,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10169,Trevor Gott,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10170,Trevor May,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10175,Trey Mancini,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10176,Tristan Beck,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10178,Tucker Davidson,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10179,Tucupita Marcano,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10188,Tyler ONeill,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10197,Vince Velasquez,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10201,Wander Franco,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10206,Will D Smith,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10216,Xavier Edwards,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10227,Yu Chang,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10229,Yuli Gurriel,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10233,Zach Davies,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10236,Zach Neal,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10238,Zach Plesac,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10241,Zack Greinke,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10246,Yonny Chirinos,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10247,AJ Pollock,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10248,AJ Smith Shawver,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10249,Alfonso Rivas,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10252,Amos Willingham,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10253,Andrew Bellatti,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10254,Andrew Suarez,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10255,Andrew Vasquez,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10256,Andrew Velazquez,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10259,Austin Nola,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10262,Billy McKinney,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10265,Brad Boxberger,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10266,Brad Miller,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10267,Brandon Walter,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10269,Brent Honeywell,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10270,Brett Phillips,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10276,Carter Kieboom,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10277,Casey Lawrence,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10278,Chasen Shreve,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10280,Christian Arroyo,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10281,Clint Frazier,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10288,Corey Dickerson,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10289,Corey Kluber,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10291,Dallas Keuchel,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10294,David Villar,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10298,Drew Rasmussen,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10299,Duane Underwood,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10300,Dylan Dodd,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10302,Eric Hosmer,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10303,Eric Lauer,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10305,Franchy Cordero,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10306,Garrett Mitchell,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10308,Hanser Alberto,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10309,Hunter Dozier,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10312,Jackie Bradley Jr,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10313,Jacob deGrom,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10314,Jake Marisnick,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10318,Jesus Aguilar,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10320,Jimmy Cordero,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10321,Joe La Sorsa,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10323,Johnny Cueto,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10326,Jonathan Davis,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10327,Jonathan Schoop,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10328,Jordan Luplow,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10332,Josh Donaldson,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10334,Josh Harrison,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10335,Juan Yepez,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10336,Justin Bruihl,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10337,Kaleb Ort,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10338,Karl Kauffmann,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10342,Kenny Rosenberg,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10343,Keynan Middleton,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10349,Luis H Garcia,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10351,Luke Voit,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10357,Michael Brantley,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10359,Michael Rucker,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10360,Michael Stefanic,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10362,Mike Zunino,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10364,Nelson Cruz,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10370,Noelvi Marte,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10371,Oscar Gonzalez,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10372,Osleivis Basabe,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10375,Raimel Tapia,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10380,Rougned Odor,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10387,Taylor Motter,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10388,Thomas Hatch,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10390,Tommy Doyle,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10391,Trayce Thompson,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10394,Tyler Mahle,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10398,Wil Myers,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10400,Yerry De Los Santos,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10402,Yonathan Daza,10,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10407,Aaron Loup,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10413,Adam Wainwright,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10418,Adrian Martinez,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10423,Albert Abreu,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10427,Aledmys Diaz,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10433,Alex Cobb,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10440,Alex Young,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10444,Andre Jackson,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10447,Andres Machado,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10457,Andrew Wantz,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10460,Angel Perdomo,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10462,Anthony Bass,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10463,Anthony DeSclafani,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10470,Austin Cox,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10478,Austin Wynns,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10489,Brad Hand,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10492,Brandon Belt,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10495,Brandon Dixon,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10501,Brandon Williamson,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10502,Brandon Woodruff,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10507,Brendan White,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10509,Brent Headrick,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10514,Brian Anderson,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10519,Brusdar Graterol,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10521,Bryan Baker,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10534,Cade Marlowe,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10539,Cam Gallagher,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10541,Carl Edwards Jr,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10546,Carlos Perez,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10555,Chad Kuhl,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10556,Chad Wallach,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10565,Chris Murphy,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10570,Christian Encarnacion Strand,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10577,CJ Cron,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10580,Clayton Kershaw,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10589,Collin McHugh,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10592,Connor Seabold,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10598,Cory Abbott,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10607,Daniel Bard,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10610,Daniel Lynch,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10617,Dauri Moreta,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10621,David Hensley,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10623,David Peterson,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10628,Devin Williams,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10629,DJ LeMahieu,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10631,Domingo German,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10635,Drew Rom,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10638,Drew VerHagen,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10639,Drew Waters,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10640,Drey Jameson,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10641,Dustin May,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10644,Dylan Covey,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10651,Eduardo Escobar,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10652,Eduardo Rodriguez,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10660,Elvis Andrus,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10665,Emmet Sheehan,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10666,Endy Rodriguez,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10670,Eric Haase,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10675,Eury Perez,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10677,Evan Longoria,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10679,Everson Pereira,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10682,Felix Bautista,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10688,Francisco Mejia,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10700,Gavin Hollowell,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10703,Gavin Williams,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10709,Gerrit Cole,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10717,Gregory Santos,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10722,Ha Seong Kim,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10723,Harold Castro,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10729,Henry Ramos,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10732,Huascar Brazoban,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10737,Hyun Jin Ryu,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10738,Ian Gibaut,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10744,Isiah Kiner Falefa,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10748,Jackson Kowar,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10752,Jaime Barria,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10753,Jake Alu,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10766,Jake Woodford,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10768,James Kaprielian,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10769,James Karinchak,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10783,Jason Vosler,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10789,Jean Segura,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10790,Jeff Brigham,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10795,Jesse Scholtens,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10801,Ji Man Choi,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10803,Jimmy Lambert,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10817,Joey Votto,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10821,Johan Oviedo,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10833,Jordan Balazovic,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10834,Jordan Diaz,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10849,Jose Barrero,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10855,Jose Ferrer,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10857,Jose Herrera,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10867,Jose Urquidy,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10873,Josh Palacios,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10878,Josh Winder,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10880,Jovani Moran,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10884,JT Chargois,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10890,Julio Urias,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10894,Justin Topa,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10897,KeBryan Hayes,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10899,Ken Waldichuk,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10900,Kendall Graveman,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10912,Kodai Senga,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10913,Kole Calhoun,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10914,Kolten Wong,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10929,Kyle Wright,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10932,Lane Ramsey,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10938,Liover Peguero,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10941,Logan OHoppe,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10946,Lucas Giolito,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10951,Luis Cessa,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10956,Luis Medina,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10958,Luis Patino,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10960,Luis Robert,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10963,Luis V Garcia,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10967,Luken Baker,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10977,Mark Leiter,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10978,Mark Mathias,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10985,Mason Thompson,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10987,Matt Beaty,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10988,Matt Boyd,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10989,Matt Brash,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10992,Matt Duffy,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +10995,Matt McLain,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11004,Mauricio Llovera,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11008,Max Scherzer,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11010,Michael Chavis,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11012,Michael Fulmer,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11014,Michael Harris,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11026,Miguel Cabrera,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11031,Mike Brosseau,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11034,Mike Mayers,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11035,Mike Moustakas,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11045,Myles Straw,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11058,Nick Maton,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11060,Nick Pratto,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11064,Nick Wittgren,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11067,Noah Syndergaard,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11076,Oswald Peraza,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11095,Peyton Battenfield,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11096,Phil Bickford,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11114,Rich Hill,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11115,Richard Bleier,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11122,Rob Zastryzny,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11125,Robert Stephenson,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11127,Rodolfo Castro,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11130,Ronny Mauricio,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11143,Ryan OHearn,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11154,Sam Hilliard,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11157,Sammy Peralta,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11158,Sandy Alcantara,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11172,Shane McClanahan,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11176,Shintaro Fujinami,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11183,Stephen Nogosek,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11188,Stone Garrett,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11198,Taylor Clarke,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11200,Taylor Walls,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11203,Thaddeus Ward,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11211,Tommy Edman,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11213,Tommy Hunter,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11216,Tony Gonsolin,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11218,Touki Toussaint,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11219,Travis dArnaud,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11224,Trevor Stephan,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11225,Trevor Gott,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11226,Trevor May,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11231,Trey Mancini,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11232,Tristan Beck,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11234,Tucker Davidson,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11235,Tucupita Marcano,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11244,Tyler ONeill,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11253,Vince Velasquez,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11257,Wander Franco,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11262,Will D Smith,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11272,Xavier Edwards,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11283,Yu Chang,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11285,Yuli Gurriel,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11289,Zach Davies,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11292,Zach Neal,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11294,Zach Plesac,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11297,Zack Greinke,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11302,Yonny Chirinos,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11303,AJ Pollock,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11304,AJ Smith Shawver,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11305,Alfonso Rivas,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11308,Amos Willingham,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11309,Andrew Bellatti,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11310,Andrew Suarez,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11311,Andrew Vasquez,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11312,Andrew Velazquez,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11315,Austin Nola,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11318,Billy McKinney,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11321,Brad Boxberger,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11322,Brad Miller,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11323,Brandon Walter,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11325,Brent Honeywell,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11326,Brett Phillips,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11332,Carter Kieboom,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11333,Casey Lawrence,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11334,Chasen Shreve,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11336,Christian Arroyo,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11337,Clint Frazier,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11344,Corey Dickerson,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11345,Corey Kluber,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11347,Dallas Keuchel,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11350,David Villar,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11354,Drew Rasmussen,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11355,Duane Underwood,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11356,Dylan Dodd,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11358,Eric Hosmer,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11359,Eric Lauer,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11360,Franchy Cordero,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11361,Garrett Mitchell,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11363,Hanser Alberto,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11364,Hunter Dozier,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11367,Jackie Bradley Jr,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11368,Jacob deGrom,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11369,Jake Marisnick,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11373,Jesus Aguilar,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11375,Jimmy Cordero,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11376,Joe La Sorsa,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11378,Johnny Cueto,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11381,Jonathan Davis,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11382,Jonathan Schoop,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11383,Jordan Luplow,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11387,Josh Donaldson,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11389,Josh Harrison,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11390,Juan Yepez,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11391,Justin Bruihl,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11392,Kaleb Ort,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11393,Karl Kauffmann,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11397,Kenny Rosenberg,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11398,Keynan Middleton,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11404,Luis H Garcia,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11406,Luke Voit,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11412,Michael Brantley,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11414,Michael Rucker,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11415,Michael Stefanic,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11417,Mike Zunino,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11419,Nelson Cruz,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11425,Noelvi Marte,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11426,Oscar Gonzalez,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11427,Osleivis Basabe,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11430,Raimel Tapia,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11435,Rougned Odor,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11442,Taylor Motter,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11443,Thomas Hatch,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11445,Tommy Doyle,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11446,Trayce Thompson,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11449,Tyler Mahle,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11453,Wil Myers,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11455,Yerry De Los Santos,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11457,Yonathan Daza,11,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +11540,Ben Gamel,12,HALP,91318,NEW_TEMP_91318,HALP,new_sbaplayer +9901,Luis Ortiz,10,ortizlu02,91319,NEW_TEMP_91319,ortizlu02,new_sbaplayer +10957,Luis Ortiz,11,ortizlu02,91319,NEW_TEMP_91319,ortizlu02,new_sbaplayer +12100,Luis Ortiz,12,ortizlu02,91319,NEW_TEMP_91319,ortizlu02,new_sbaplayer +12049,Kody Funderburk,12,fundeko01,91320,NEW_TEMP_91320,fundeko01,new_sbaplayer +12249,Pedro Pages,12,pagespe02,91321,NEW_TEMP_91321,pagespe02,new_sbaplayer +12422,Tyler Phillips,12,phillty01,91322,NEW_TEMP_91322,phillty01,new_sbaplayer diff --git a/.claude/sqlite-to-postgres/botched-sbaplayer-matching/process_matching_decisions.py b/.claude/sqlite-to-postgres/botched-sbaplayer-matching/process_matching_decisions.py new file mode 100644 index 0000000..85ddfd0 --- /dev/null +++ b/.claude/sqlite-to-postgres/botched-sbaplayer-matching/process_matching_decisions.py @@ -0,0 +1,396 @@ +#!/usr/bin/env python3 +""" +Process manual matching decisions from reviewed CSV files +Generate two output CSV files: +1. New SbaPlayers to insert +2. All player_id -> sbaplayer_id assignments +""" +import csv +import json +import logging +from dataclasses import dataclass +from typing import Dict, List, Set, Optional +from collections import defaultdict + +logging.basicConfig(level=logging.INFO) +logger = logging.getLogger('ProcessDecisions') + +@dataclass +class PlayerRecord: + id: int + name: str + season: int + bbref_id: Optional[str] = None + sbaplayer_id: Optional[int] = None + +@dataclass +class SbaPlayerRecord: + id: int + first_name: str + last_name: str + key_bbref: Optional[str] = None + key_fangraphs: Optional[int] = None + key_mlbam: Optional[int] = None + key_retro: Optional[str] = None + +@dataclass +class NewSbaPlayer: + first_name: str + last_name: str + key_bbref: Optional[str] = None + temp_id: int = 0 # Temporary ID for referencing before insertion + +def load_cached_data(): + """Load cached player and sbaplayer data""" + logger.info("Loading cached data...") + + # Load SbaPlayers + with open('/tmp/sbaplayers.json', 'r') as f: + sbaplayer_data = json.load(f) + + sbaplayers = [] + for data in sbaplayer_data: + sbaplayers.append(SbaPlayerRecord(**data)) + + # Load all players + all_players = [] + for season in range(1, 13): + with open(f"/tmp/players_season_{season}.json", 'r') as f: + season_data = json.load(f) + + for data in season_data: + all_players.append(PlayerRecord(**data)) + + logger.info(f"Loaded {len(sbaplayers)} SbaPlayers and {len(all_players)} player records") + return all_players, sbaplayers + +def parse_unmatched_decisions(): + """Parse decisions from the unmatched players CSV""" + logger.info("Parsing unmatched player decisions...") + + decisions = [] + csv_file = '/mnt/NV2/Development/major-domo/database/unmatched_players_for_review_updated.csv' + + with open(csv_file, 'r', encoding='utf-8') as f: + reader = csv.DictReader(f) + + # Debug: print column names + logger.info(f"CSV columns: {reader.fieldnames}") + + for row in reader: + resolution = row.get('resolution', '').strip() + if not resolution or resolution == 'SKIP': + continue + + # Handle encoded column names + player_id_key = next((k for k in row.keys() if 'player' in k.lower() and 'id' in k.lower()), 'player_id') + bbref_id_key = next((k for k in row.keys() if 'bbref' in k.lower() and 'id' in k.lower()), 'bbref_id') + seasons_key = next((k for k in row.keys() if 'seasons' in k.lower() and 'appeared' in k.lower()), 'seasons_appeared') + suggested_id_key = next((k for k in row.keys() if 'suggested' in k.lower() and 'sbaplayer' in k.lower() and 'id' in k.lower()), 'suggested_sbaplayer_id') + match_type_key = next((k for k in row.keys() if 'match' in k.lower() and 'type' in k.lower()), 'match_type') + + decision = { + 'player_id': int(row[player_id_key]), + 'player_name': row['name'], + 'bbref_id': row[bbref_id_key] if row[bbref_id_key] else None, + 'seasons_appeared': row[seasons_key], + 'resolution': resolution, + 'suggested_sbaplayer_id': row[suggested_id_key], + 'match_type': row[match_type_key] + } + decisions.append(decision) + + logger.info(f"Found {len(decisions)} unmatched player decisions") + return decisions + +def parse_high_risk_decisions(): + """Parse decisions from the high risk matches CSV""" + logger.info("Parsing high-risk match decisions...") + + decisions = [] + csv_file = '/mnt/NV2/Development/major-domo/database/high_risk_player_matches_updated.csv' + + with open(csv_file, 'r', encoding='utf-8') as f: + reader = csv.DictReader(f) + + # Debug: print column names + logger.info(f"High-risk CSV columns: {reader.fieldnames}") + + for row in reader: + resolution = row.get('resolution', '').strip() + if not resolution or resolution == 'SKIP': + continue + + # Handle encoded column names + risk_type_key = next((k for k in row.keys() if 'risk' in k.lower() and 'type' in k.lower()), 'risk_type') + player_id_key = next((k for k in row.keys() if 'player' in k.lower() and 'id' in k.lower()), 'player_id') + player_name_key = next((k for k in row.keys() if 'player' in k.lower() and 'name' in k.lower()), 'player_name') + sba1_id_key = next((k for k in row.keys() if 'sba1' in k.lower() and 'id' in k.lower()), 'sba1_id') + sba1_name_key = next((k for k in row.keys() if 'sba1' in k.lower() and 'name' in k.lower()), 'sba1_name') + sba2_id_key = next((k for k in row.keys() if 'sba2' in k.lower() and 'id' in k.lower()), 'sba2_id') + sba2_name_key = next((k for k in row.keys() if 'sba2' in k.lower() and 'name' in k.lower()), 'sba2_name') + + decision = { + 'risk_type': row[risk_type_key], + 'resolution': resolution, + 'player_id': int(row[player_id_key]) if row[player_id_key] else None, + 'player_name': row[player_name_key], + 'sba1_id': int(row[sba1_id_key]) if row[sba1_id_key] else None, + 'sba1_name': row[sba1_name_key], + 'sba2_id': int(row[sba2_id_key]) if row[sba2_id_key] else None, + 'sba2_name': row[sba2_name_key] + } + decisions.append(decision) + + logger.info(f"Found {len(decisions)} high-risk match decisions") + return decisions + +def process_decisions(all_players, sbaplayers, unmatched_decisions, high_risk_decisions): + """Process all decisions and generate new SbaPlayers and assignments""" + + # Create lookup maps + sbaplayers_by_id = {sba.id: sba for sba in sbaplayers} + players_by_id = {p.id: p for p in all_players} + + # Track what we're creating and assigning + new_sbaplayers = [] + player_assignments = [] # (player_id, sbaplayer_id) pairs + sbaplayer_merges = [] # (from_id, to_id) pairs + temp_id_counter = 90000 # Start temp IDs at 90000 to avoid conflicts + + logger.info("Processing unmatched player decisions...") + + # Process unmatched player decisions + for decision in unmatched_decisions: + resolution = decision['resolution'] + player_id = decision['player_id'] + player_name = decision['player_name'] + bbref_id = decision['bbref_id'] + + if resolution == 'ACCEPT': + # Use suggested SbaPlayer ID + suggested_id = decision['suggested_sbaplayer_id'] + if suggested_id and not suggested_id.startswith('PARTIAL:'): + sbaplayer_id = int(suggested_id) + + # Find all players with same identity and assign them + if bbref_id: + # Group by bbref_id + matching_players = [p for p in all_players if p.bbref_id == bbref_id] + else: + # Group by name (for players without bbref_id) + matching_players = [p for p in all_players if p.name == player_name and not p.bbref_id] + + for player in matching_players: + player_assignments.append((player.id, sbaplayer_id)) + + elif resolution.startswith('USE_SBA_'): + # Use specific SbaPlayer ID + sbaplayer_id = int(resolution.replace('USE_SBA_', '')) + + # Find all players with same identity + if bbref_id: + matching_players = [p for p in all_players if p.bbref_id == bbref_id] + else: + matching_players = [p for p in all_players if p.name == player_name and not p.bbref_id] + + for player in matching_players: + player_assignments.append((player.id, sbaplayer_id)) + + elif resolution == 'CREATE_NEW': + # Create new SbaPlayer + name_parts = player_name.strip().split() + if len(name_parts) >= 2: + first_name = name_parts[0] + last_name = ' '.join(name_parts[1:]) # Handle multiple part last names + else: + first_name = player_name + last_name = "" + + new_sba = NewSbaPlayer( + first_name=first_name, + last_name=last_name, + key_bbref=bbref_id, + temp_id=temp_id_counter + ) + new_sbaplayers.append(new_sba) + + # Find all players with same identity and assign to new SbaPlayer + if bbref_id: + matching_players = [p for p in all_players if p.bbref_id == bbref_id] + else: + matching_players = [p for p in all_players if p.name == player_name and not p.bbref_id] + + for player in matching_players: + player_assignments.append((player.id, temp_id_counter)) + + temp_id_counter += 1 + + logger.info("Processing high-risk match decisions...") + + # Process high-risk decisions + for decision in high_risk_decisions: + resolution = decision['resolution'] + risk_type = decision['risk_type'] + + if resolution.startswith('MERGE_') and '_INTO_' in resolution: + # Parse merge instruction: MERGE_123_INTO_456 + parts = resolution.replace('MERGE_', '').split('_INTO_') + from_id = int(parts[0]) + to_id = int(parts[1]) + sbaplayer_merges.append((from_id, to_id)) + + elif resolution.startswith('USE_SBA_') and decision['player_id']: + # Player ambiguous match resolved + sbaplayer_id = int(resolution.replace('USE_SBA_', '')) + player_id = decision['player_id'] + player_name = decision['player_name'] + + # Find all players with same name (no bbref_id since these are ambiguous matches) + matching_players = [p for p in all_players if p.name == player_name and not p.bbref_id] + for player in matching_players: + player_assignments.append((player.id, sbaplayer_id)) + + logger.info(f"Generated {len(new_sbaplayers)} new SbaPlayers") + logger.info(f"Generated {len(player_assignments)} player assignments") + logger.info(f"Generated {len(sbaplayer_merges)} SbaPlayer merges") + + return new_sbaplayers, player_assignments, sbaplayer_merges + +def generate_new_sbaplayers_csv(new_sbaplayers): + """Generate CSV file with new SbaPlayers to insert""" + output_file = '/mnt/NV2/Development/major-domo/database/new_sbaplayers_to_insert.csv' + + with open(output_file, 'w', newline='') as csvfile: + writer = csv.writer(csvfile) + writer.writerow(['temp_id', 'first_name', 'last_name', 'key_bbref', 'key_fangraphs', 'key_mlbam', 'key_retro']) + + for sba in new_sbaplayers: + writer.writerow([ + sba.temp_id, + sba.first_name, + sba.last_name, + sba.key_bbref or '', + '', # key_fangraphs (empty) + '', # key_mlbam (empty) + '' # key_retro (empty) + ]) + + logger.info(f"Generated new SbaPlayers CSV: {output_file}") + return output_file + +def generate_player_assignments_csv(player_assignments, sbaplayer_merges, all_players, sbaplayers_by_id): + """Generate CSV file with all player assignments""" + output_file = '/mnt/NV2/Development/major-domo/database/player_sbaplayer_assignments.csv' + + # Create merge mapping for resolving final IDs + merge_mapping = {} + for from_id, to_id in sbaplayer_merges: + merge_mapping[from_id] = to_id + + players_by_id = {p.id: p for p in all_players} + + with open(output_file, 'w', newline='') as csvfile: + writer = csv.writer(csvfile) + writer.writerow([ + 'player_id', 'player_name', 'player_season', 'player_bbref_id', + 'sbaplayer_id', 'sbaplayer_name', 'sbaplayer_bbref', 'assignment_type' + ]) + + for player_id, sbaplayer_id in player_assignments: + player = players_by_id[player_id] + + # Resolve final sbaplayer_id (in case of merges) + final_sbaplayer_id = merge_mapping.get(sbaplayer_id, sbaplayer_id) + + # Get SbaPlayer info + if final_sbaplayer_id >= 90000: + # New SbaPlayer (temp ID) + sbaplayer_name = f"NEW_TEMP_{final_sbaplayer_id}" + sbaplayer_bbref = player.bbref_id or '' + assignment_type = 'new_sbaplayer' + else: + # Existing SbaPlayer + if final_sbaplayer_id in sbaplayers_by_id: + sba = sbaplayers_by_id[final_sbaplayer_id] + sbaplayer_name = f"{sba.first_name} {sba.last_name}" + sbaplayer_bbref = sba.key_bbref or '' + assignment_type = 'existing_sbaplayer' + else: + sbaplayer_name = f"UNKNOWN_SBA_{final_sbaplayer_id}" + sbaplayer_bbref = '' + assignment_type = 'error' + + writer.writerow([ + player.id, + player.name, + player.season, + player.bbref_id or '', + final_sbaplayer_id, + sbaplayer_name, + sbaplayer_bbref, + assignment_type + ]) + + logger.info(f"Generated player assignments CSV: {output_file}") + return output_file + +def generate_summary_report(new_sbaplayers, player_assignments, sbaplayer_merges): + """Generate summary report""" + summary_file = '/mnt/NV2/Development/major-domo/database/processing_summary.txt' + + with open(summary_file, 'w') as f: + f.write("MATCHING DECISIONS PROCESSING SUMMARY\n") + f.write("=" * 50 + "\n\n") + + f.write(f"New SbaPlayers to create: {len(new_sbaplayers)}\n") + f.write(f"Player assignments to make: {len(player_assignments)}\n") + f.write(f"SbaPlayer merges to perform: {len(sbaplayer_merges)}\n\n") + + f.write("FILES GENERATED:\n") + f.write("1. new_sbaplayers_to_insert.csv - New SbaPlayer records to create\n") + f.write("2. player_sbaplayer_assignments.csv - All player -> sbaplayer assignments\n\n") + + f.write("SbaPlayer Merges:\n") + for from_id, to_id in sbaplayer_merges: + f.write(f" - Merge SbaPlayer {from_id} into {to_id}\n") + + f.write(f"\nNEXT STEPS:\n") + f.write("1. Review the generated CSV files\n") + f.write("2. Execute SbaPlayer merges first (if any)\n") + f.write("3. Insert new SbaPlayers and get their real IDs\n") + f.write("4. Update all player records with sbaplayer_id assignments\n") + + logger.info(f"Generated summary report: {summary_file}") + +def main(): + """Main processing function""" + logger.info("Starting processing of matching decisions...") + + # Load data + all_players, sbaplayers = load_cached_data() + sbaplayers_by_id = {sba.id: sba for sba in sbaplayers} + + # Parse decisions + unmatched_decisions = parse_unmatched_decisions() + high_risk_decisions = parse_high_risk_decisions() + + # Process decisions + new_sbaplayers, player_assignments, sbaplayer_merges = process_decisions( + all_players, sbaplayers, unmatched_decisions, high_risk_decisions + ) + + # Generate output files + new_sba_file = generate_new_sbaplayers_csv(new_sbaplayers) + assignments_file = generate_player_assignments_csv( + player_assignments, sbaplayer_merges, all_players, sbaplayers_by_id + ) + generate_summary_report(new_sbaplayers, player_assignments, sbaplayer_merges) + + logger.info("\n=== PROCESSING COMPLETE ===") + logger.info(f"New SbaPlayers CSV: {new_sba_file}") + logger.info(f"Player assignments CSV: {assignments_file}") + logger.info(f"Summary: processing_summary.txt") + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/.claude/sqlite-to-postgres/botched-sbaplayer-matching/processing_summary.txt b/.claude/sqlite-to-postgres/botched-sbaplayer-matching/processing_summary.txt new file mode 100644 index 0000000..a377112 --- /dev/null +++ b/.claude/sqlite-to-postgres/botched-sbaplayer-matching/processing_summary.txt @@ -0,0 +1,18 @@ +MATCHING DECISIONS PROCESSING SUMMARY +================================================== + +New SbaPlayers to create: 0 +Player assignments to make: 120 +SbaPlayer merges to perform: 0 + +FILES GENERATED: +1. new_sbaplayers_to_insert.csv - New SbaPlayer records to create +2. player_sbaplayer_assignments.csv - All player -> sbaplayer assignments + +SbaPlayer Merges: + +NEXT STEPS: +1. Review the generated CSV files +2. Execute SbaPlayer merges first (if any) +3. Insert new SbaPlayers and get their real IDs +4. Update all player records with sbaplayer_id assignments diff --git a/.claude/sqlite-to-postgres/botched-sbaplayer-matching/unmatched_players_for_review.csv b/.claude/sqlite-to-postgres/botched-sbaplayer-matching/unmatched_players_for_review.csv new file mode 100644 index 0000000..d2c4882 --- /dev/null +++ b/.claude/sqlite-to-postgres/botched-sbaplayer-matching/unmatched_players_for_review.csv @@ -0,0 +1,1444 @@ +player_id,name,season,bbref_id,match_type,seasons_appeared,suggested_sbaplayer_id,suggested_sbaplayer_name,suggested_match_reason +11540,Ben Gamel,12,HALP,has_bbref_no_match,"10,11,12",,,No existing SbaPlayer with this bbref_id +11690,Daniel Coulombe,12,couloda01,has_bbref_no_match,"6,7,10,11,12",,,No existing SbaPlayer with this bbref_id +11779,Evan Phillips,12,phillev01,has_bbref_no_match,"8,9,10,11,12",,,No existing SbaPlayer with this bbref_id +8624,Francisco Mejia,9,mejiafr01,has_bbref_no_match,"6,7,8,9",,,No existing SbaPlayer with this bbref_id +7009,JC Mejia,7,mejiaje02,has_bbref_no_match,"6,7",,,No existing SbaPlayer with this bbref_id +12049,Kody Funderburk,12,fundeko01,has_bbref_no_match,12,,,No existing SbaPlayer with this bbref_id +12095,Luis Garcia,12,garcilu03,has_bbref_no_match,"6,7,8,9,10,11,12",,,No existing SbaPlayer with this bbref_id +8930,Luis H Garcia,9,garcilu05,has_bbref_no_match,"6,7,8,9",,,No existing SbaPlayer with this bbref_id +12100,Luis Ortiz,12,ortizlu02,has_bbref_no_match,"10,11,12",,,No existing SbaPlayer with this bbref_id +9007,Michael A Taylor,9,taylomi01,has_bbref_no_match,"8,9",,,No existing SbaPlayer with this bbref_id +12249,Pedro Pages,12,pagespe02,has_bbref_no_match,12,,,No existing SbaPlayer with this bbref_id +6949,Thomas Eshelman,7,eshelto01,has_bbref_no_match,"6,7",,,No existing SbaPlayer with this bbref_id +12422,Tyler Phillips,12,phillty01,has_bbref_no_match,12,,,No existing SbaPlayer with this bbref_id +4314,AJ Cole,5,,no_bbref,"2,3,4,5",399,AJ Cole,Exact name match found in SbaPlayers +2013,AJ Ellis,1,,no_bbref,1,570,AJ Ellis,Exact name match found in SbaPlayers +4210,AJ Minter,5,,no_bbref,"1,2,3,4,5",1336,AJ Minter,Exact name match found in SbaPlayers +4516,AJ Pollock,5,,no_bbref,"1,2,3,4,5",1571,AJ Pollock,Exact name match found in SbaPlayers +1010,Aaron Altherr,3,,no_bbref,"1,2,3",55,Aaron Altherr,Exact name match found in SbaPlayers +1011,Aaron Brooks,3,,no_bbref,"2,3",262,Aaron Brooks,Exact name match found in SbaPlayers +4434,Aaron Bummer,5,,no_bbref,"1,2,3,4,5",279,Aaron Bummer,Exact name match found in SbaPlayers +4689,Aaron Civale,5,,no_bbref,"2,3,4,5",383,Aaron Civale,Exact name match found in SbaPlayers +4587,Aaron Hicks,5,,no_bbref,"1,2,3,4,5",892,Aaron Hicks,Exact name match found in SbaPlayers +4207,Aaron Judge,5,,no_bbref,"1,2,3,4,5",3,Aaron Judge,Exact name match found in SbaPlayers +4576,Aaron Loup,5,,no_bbref,"4,5",1152,Aaron Loup,Exact name match found in SbaPlayers +4204,Aaron Nola,5,,no_bbref,"1,2,3,4,5",1433,Aaron Nola,Exact name match found in SbaPlayers +1017,Aaron Sanchez,3,,no_bbref,"1,2,3",1745,Aaron Sanchez,Exact name match found in SbaPlayers +4471,Aaron Slegers,5,,no_bbref,"4,5",1839,Aaron Slegers,Exact name match found in SbaPlayers +2022,Abraham Almonte,1,,no_bbref,1,49,Abraham Almonte,Exact name match found in SbaPlayers +4774,Abraham Toro,5,,no_bbref,"2,3,4,5",2001,Abraham Toro,Exact name match found in SbaPlayers +1019,Adalberto Mejia,3,,no_bbref,"2,3",1296,Adalberto Mejia,Exact name match found in SbaPlayers +4483,Adalberto Mondesi,5,,no_bbref,"1,2,3,4,5",1349,Adalberto Mondesi,Exact name match found in SbaPlayers +4706,Adam Cimber,5,,no_bbref,"2,3,4,5",380,Adam Cimber,Exact name match found in SbaPlayers +1022,Adam Conley,3,,no_bbref,"1,2,3",409,Adam Conley,Exact name match found in SbaPlayers +4544,Adam Duvall,5,,no_bbref,"1,2,3,4,5",553,Adam Duvall,Exact name match found in SbaPlayers +4775,Adam Eaton,5,,no_bbref,"1,2,3,4,5",556,Adam Eaton,Exact name match found in SbaPlayers +4448,Adam Engel,5,,no_bbref,"1,2,3,4,5",574,Adam Engel,Exact name match found in SbaPlayers +4603,Adam Frazier,5,,no_bbref,"1,2,3,4,5",648,Adam Frazier,Exact name match found in SbaPlayers +4776,Adam Haseley,5,,no_bbref,"2,3,4,5",837,Adam Haseley,Exact name match found in SbaPlayers +1028,Adam Jones,3,,no_bbref,"1,2,3",989,Adam Jones,Exact name match found in SbaPlayers +4388,Adam Kolarek,5,,no_bbref,"1,2,3,4,5",1069,Adam Kolarek,Exact name match found in SbaPlayers +4717,Adam Morgan,5,,no_bbref,"1,2,3,4,5",1368,Adam Morgan,Exact name match found in SbaPlayers +4777,Adam Ottavino,5,,no_bbref,"1,2,3,4,5",1475,Adam Ottavino,Exact name match found in SbaPlayers +4738,Adam Plutko,5,,no_bbref,"2,3,4,5",1567,Adam Plutko,Exact name match found in SbaPlayers +4642,Adam Wainwright,5,,no_bbref,"2,3,4,5",2099,Adam Wainwright,Exact name match found in SbaPlayers +1034,Adam Warren,3,,no_bbref,"1,2,3",2118,Adam Warren,Exact name match found in SbaPlayers +4404,Adbert Alzolay,5,,no_bbref,"4,5",63,Adbert Alzolay,Exact name match found in SbaPlayers +2034,Addison Reed,1,,no_bbref,1,1624,Addison Reed,Exact name match found in SbaPlayers +1035,Addison Russell,3,,no_bbref,"1,2,3",1728,Addison Russell,Exact name match found in SbaPlayers +4778,Adeiny Hechavarria,5,,no_bbref,"1,2,3,4,5",847,Adeiny Hechavarria,Exact name match found in SbaPlayers +2037,Adrian Beltre,1,,no_bbref,1,174,Adrian Beltre,Exact name match found in SbaPlayers +2038,Adrian Gonzalez,1,,no_bbref,1,738,Adrian Gonzalez,Exact name match found in SbaPlayers +4779,Adrian Houser,5,,no_bbref,"2,3,4,5",928,Adrian Houser,Exact name match found in SbaPlayers +4780,Adrian Morejon,5,,no_bbref,"4,5",1363,Adrian Morejon,Exact name match found in SbaPlayers +1038,Adrian Sampson,3,,no_bbref,"2,3",1742,Adrian Sampson,Exact name match found in SbaPlayers +4781,Albert Almora,5,,no_bbref,"1,2,3,4,5",,,No bbref_id available +4782,Albert Pujols,5,,no_bbref,"1,2,3,4,5",1591,Albert Pujols,Exact name match found in SbaPlayers +2041,Alcides Escobar,1,,no_bbref,1,580,Alcides Escobar,Exact name match found in SbaPlayers +4465,Alec Bohm,5,,no_bbref,"4,5",217,Alec Bohm,Exact name match found in SbaPlayers +4734,Alec Mills,5,,no_bbref,"2,3,4,5",1330,Alec Mills,Exact name match found in SbaPlayers +4690,Aledmys Diaz,5,,no_bbref,"1,2,3,4,5",505,Aledmys Diaz,Exact name match found in SbaPlayers +4272,Alejandro Kirk,5,,no_bbref,"4,5",1056,Alejandro Kirk,Exact name match found in SbaPlayers +2043,Alen Hanson,1,,no_bbref,1,819,Alen Hanson,Exact name match found in SbaPlayers +4369,Alex Avila,5,,no_bbref,"1,2,3,4,5",104,Alex Avila,Exact name match found in SbaPlayers +2045,Alex Blandino,1,,no_bbref,1,210,Alex Blandino,Exact name match found in SbaPlayers +4437,Alex Bregman,5,,no_bbref,"1,2,3,4,5",248,Alex Bregman,Exact name match found in SbaPlayers +4742,Alex Claudio,5,,no_bbref,"1,2,3,4,5",387,Alex Claudio,Exact name match found in SbaPlayers +4409,Alex Cobb,5,,no_bbref,"1,4,5",394,Alex Cobb,Exact name match found in SbaPlayers +4296,Alex Colome,5,,no_bbref,"1,2,3,4,5",404,Alex Colome,Exact name match found in SbaPlayers +4484,Alex Dickerson,5,,no_bbref,"2,3,4,5",512,Alex Dickerson,Exact name match found in SbaPlayers +4764,Alex Gordon,5,,no_bbref,"1,2,3,4,5",751,Alex Gordon,Exact name match found in SbaPlayers +1049,Alex McRae,3,,no_bbref,"2,3",1288,Alex McRae,Exact name match found in SbaPlayers +4783,Alex Reyes,5,,no_bbref,"4,5",1635,Alex Reyes,Exact name match found in SbaPlayers +4197,Alex Verdugo,5,,no_bbref,"2,3,4,5",2069,Alex Verdugo,Exact name match found in SbaPlayers +2051,Alex Wilson,1,,no_bbref,1,2168,Alex Wilson,Exact name match found in SbaPlayers +4784,Alex Wood,5,,no_bbref,"1,2,3,4,5",2193,Alex Wood,Exact name match found in SbaPlayers +4785,Alex Young,5,,no_bbref,"2,3,4,5",2217,Alex Young,Exact name match found in SbaPlayers +4786,Amed Rosario,5,,no_bbref,"1,2,3,4,5",1711,Amed Rosario,Exact name match found in SbaPlayers +4488,Amir Garrett,5,,no_bbref,"1,2,3,4,5",698,Amir Garrett,Exact name match found in SbaPlayers +4538,Anderson Tejeda,5,,no_bbref,"4,5",1971,Anderson Tejeda,Exact name match found in SbaPlayers +4315,Andre Scrubb,5,,no_bbref,"4,5",1791,Andre Scrubb,Exact name match found in SbaPlayers +4534,Andrelton Simmons,5,,no_bbref,"1,2,3,4,5",1825,Andrelton Simmons,Exact name match found in SbaPlayers +4261,Andres Gimenez,5,,no_bbref,"4,5",721,Andres Gimenez,Exact name match found in SbaPlayers +4787,Andrew Benintendi,5,,no_bbref,"1,2,3,4,5",177,Andrew Benintendi,Exact name match found in SbaPlayers +1057,Andrew Cashner,3,,no_bbref,"1,2,3",336,Andrew Cashner,Exact name match found in SbaPlayers +4788,Andrew Chafin,5,,no_bbref,"1,2,3,4,5",363,Andrew Chafin,Exact name match found in SbaPlayers +4395,Andrew Heaney,5,,no_bbref,"1,2,3,4,5",843,Andrew Heaney,Exact name match found in SbaPlayers +4376,Andrew Kittredge,5,,no_bbref,"2,3,4,5",1057,Andrew Kittredge,Exact name match found in SbaPlayers +4283,Andrew Knapp,5,,no_bbref,"1,2,3,4,5",1062,Andrew Knapp,Exact name match found in SbaPlayers +4789,Andrew Knizner,5,,no_bbref,"4,5",1065,Andrew Knizner,Exact name match found in SbaPlayers +4790,Andrew McCutchen,5,,no_bbref,"1,2,3,4,5",1272,Andrew McCutchen,Exact name match found in SbaPlayers +4631,Andrew Miller,5,,no_bbref,"1,2,3,4,5",1320,Andrew Miller,Exact name match found in SbaPlayers +2063,Andrew Romine,1,,no_bbref,1,1703,Andrew Romine,Exact name match found in SbaPlayers +4128,Andrew Stevenson,5,,no_bbref,"1,4,5",1906,Andrew Stevenson,Exact name match found in SbaPlayers +4442,Andrew Suarez,5,,no_bbref,"1,2,3,4,5",1935,Andrew Suarez,Exact name match found in SbaPlayers +4791,Andrew Triggs,5,,no_bbref,"4,5",2014,Andrew Triggs,Exact name match found in SbaPlayers +4539,Andrew Velazquez,5,,no_bbref,"4,5",2067,Andrew Velazquez,Exact name match found in SbaPlayers +4792,Andy Young,5,,no_bbref,"4,5",2220,Andy Young,Exact name match found in SbaPlayers +4760,Anibal Sanchez,5,,no_bbref,"1,2,3,4,5",1743,Anibal Sanchez,Exact name match found in SbaPlayers +4793,Anthony Alford,5,,no_bbref,"4,5",41,Anthony Alford,Exact name match found in SbaPlayers +4794,Anthony Banda,5,,no_bbref,"4,5",121,Anthony Banda,Exact name match found in SbaPlayers +4531,Anthony Bass,5,,no_bbref,"2,3,4,5",145,Anthony Bass,Exact name match found in SbaPlayers +4466,Anthony Bemboom,5,,no_bbref,"4,5",175,Anthony Bemboom,Exact name match found in SbaPlayers +4795,Anthony DeSclafani,5,,no_bbref,"1,2,3,4,5",493,Anthony DeSclafani,Exact name match found in SbaPlayers +4721,Anthony Kay,5,,no_bbref,"4,5",1012,Anthony Kay,Exact name match found in SbaPlayers +4746,Anthony Misiewicz,5,,no_bbref,"4,5",1338,Anthony Misiewicz,Exact name match found in SbaPlayers +4232,Anthony Rendon,5,,no_bbref,"1,2,3,4,5",1630,Anthony Rendon,Exact name match found in SbaPlayers +4525,Anthony Rizzo,5,,no_bbref,"1,2,3,4,5",1658,Anthony Rizzo,Exact name match found in SbaPlayers +4191,Anthony Santander,5,,no_bbref,"2,3,4,5",1764,Anthony Santander,Exact name match found in SbaPlayers +1071,Anthony Swarzak,3,,no_bbref,"1,2,3",1950,Anthony Swarzak,Exact name match found in SbaPlayers +4151,Antonio Senzatela,5,,no_bbref,"1,2,3,4,5",1801,Antonio Senzatela,Exact name match found in SbaPlayers +4489,Archie Bradley,5,,no_bbref,"1,2,3,4,5",236,Archie Bradley,Exact name match found in SbaPlayers +1074,Ariel Jurado,3,,no_bbref,"1,2,3",1005,Ariel Jurado,Exact name match found in SbaPlayers +4796,Aristides Aquino,5,,no_bbref,"2,3,4,5",81,Aristides Aquino,Exact name match found in SbaPlayers +2074,Arodys Vizcaino,1,,no_bbref,1,2083,Arodys Vizcaino,Exact name match found in SbaPlayers +4410,Aroldis Chapman,5,,no_bbref,"1,2,3,4,5",366,Aroldis Chapman,Exact name match found in SbaPlayers +4739,Asdrubal Cabrera,5,,no_bbref,"1,2,3,4,5",299,Asdrubal Cabrera,Exact name match found in SbaPlayers +4797,Asher Wojciechowski,5,,no_bbref,"2,3,4,5",2186,Asher Wojciechowski,Exact name match found in SbaPlayers +4798,Ashton Goudeau,5,,no_bbref,"4,5",759,Ashton Goudeau,Exact name match found in SbaPlayers +1079,Austin Adams,3,,no_bbref,"2,3",16,Austin Adams,Exact name match found in SbaPlayers +4799,Austin Allen,5,,no_bbref,"2,3,4,5",47,Austin Allen,Exact name match found in SbaPlayers +4349,Austin Barnes,5,,no_bbref,"1,2,3,4,5",132,Austin Barnes,Exact name match found in SbaPlayers +4800,Austin Brice,5,,no_bbref,"2,3,4,5",253,Austin Brice,Exact name match found in SbaPlayers +4801,Austin Davis,5,,no_bbref,"4,5",471,Austin Davis,Exact name match found in SbaPlayers +1083,Austin Dean,3,,no_bbref,"2,3",483,Austin Dean,Exact name match found in SbaPlayers +4389,Austin Gomber,5,,no_bbref,"1,4,5",730,Austin Gomber,Exact name match found in SbaPlayers +4354,Austin Hays,5,,no_bbref,"2,3,4,5",839,Austin Hays,Exact name match found in SbaPlayers +4802,Austin Hedges,5,,no_bbref,"1,2,3,4,5",848,Austin Hedges,Exact name match found in SbaPlayers +2080,Austin Jackson,1,,no_bbref,1,958,Austin Jackson,Exact name match found in SbaPlayers +4713,Austin Meadows,5,,no_bbref,"2,3,4,5",1290,Austin Meadows,Exact name match found in SbaPlayers +4329,Austin Nola,5,,no_bbref,"2,3,4,5",1432,Austin Nola,Exact name match found in SbaPlayers +1088,Austin Pruitt,3,,no_bbref,"1,2,3",1588,Austin Pruitt,Exact name match found in SbaPlayers +4803,Austin Riley,5,,no_bbref,"2,3,4,5",1649,Austin Riley,Exact name match found in SbaPlayers +4804,Austin Romine,5,,no_bbref,"1,2,3,4,5",1704,Austin Romine,Exact name match found in SbaPlayers +4208,Austin Slater,5,,no_bbref,"1,2,3,4,5",1838,Austin Slater,Exact name match found in SbaPlayers +4702,Austin Voth,5,,no_bbref,"2,3,4,5",2091,Austin Voth,Exact name match found in SbaPlayers +1093,Austin Wynns,3,,no_bbref,"1,2,3",2202,Austin Wynns,Exact name match found in SbaPlayers +4805,Avisail Garcia,5,,no_bbref,"1,2,3,4,5",678,Avisail Garcia,Exact name match found in SbaPlayers +2086,Bartolo Colon,1,,no_bbref,1,405,Bartolo Colon,Exact name match found in SbaPlayers +4806,Beau Taylor,5,,no_bbref,"4,5",1968,Beau Taylor,Exact name match found in SbaPlayers +4134,Ben Braymer,5,,no_bbref,"4,5",245,Ben Braymer,Exact name match found in SbaPlayers +4807,Ben Gamel,5,,no_bbref,"1,2,3,4,5",676,Ben Gamel,Exact name match found in SbaPlayers +1096,Ben Zobrist,3,,no_bbref,"1,2,3",2232,Ben Zobrist,Exact name match found in SbaPlayers +4808,Billy Hamilton,5,,no_bbref,"1,2,3,4,5",810,Billy Hamilton,Exact name match found in SbaPlayers +1098,Billy McKinney,3,,no_bbref,"1,2,3",1283,Billy McKinney,Exact name match found in SbaPlayers +1099,Blaine Hardy,3,,no_bbref,"1,2,3",822,Blaine Hardy,Exact name match found in SbaPlayers +4377,Blake Parker,5,,no_bbref,"1,2,3,4,5",1499,Blake Parker,Exact name match found in SbaPlayers +4338,Blake Snell,5,,no_bbref,"1,2,3,4,5",1861,Blake Snell,Exact name match found in SbaPlayers +1102,Blake Swihart,3,,no_bbref,"1,2,3",1952,Blake Swihart,Exact name match found in SbaPlayers +4416,Blake Taylor,5,,no_bbref,"4,5",1966,Blake Taylor,Exact name match found in SbaPlayers +4809,Blake Treinen,5,,no_bbref,"1,2,3,4,5",2011,Blake Treinen,Exact name match found in SbaPlayers +4286,Bo Bichette,5,,no_bbref,"2,3,4,5",190,Bo Bichette,Exact name match found in SbaPlayers +4365,Bobby Dalbec,5,,no_bbref,"4,5",458,Bobby Dalbec,Exact name match found in SbaPlayers +2096,Bobby Wilson,1,,no_bbref,1,2166,Bobby Wilson,Exact name match found in SbaPlayers +4548,Brad Boxberger,5,,no_bbref,"1,2,3,4,5",229,Brad Boxberger,Exact name match found in SbaPlayers +4810,Brad Brach,5,,no_bbref,"1,2,3,4,5",232,Brad Brach,Exact name match found in SbaPlayers +4449,Brad Hand,5,,no_bbref,"1,2,3,4,5",816,Brad Hand,Exact name match found in SbaPlayers +4199,Brad Keller,5,,no_bbref,"1,2,3,4,5",1016,Brad Keller,Exact name match found in SbaPlayers +4453,Brad Miller,5,,no_bbref,"2,3,4,5",1322,Brad Miller,Exact name match found in SbaPlayers +1110,Brad Peacock,3,,no_bbref,"1,2,3",1510,Brad Peacock,Exact name match found in SbaPlayers +1111,Brad Wieck,3,,no_bbref,"2,3",2150,Brad Wieck,Exact name match found in SbaPlayers +2102,Brad Ziegler,1,,no_bbref,1,2226,Brad Ziegler,Exact name match found in SbaPlayers +4615,Braden Bishop,5,,no_bbref,"4,5",200,Braden Bishop,Exact name match found in SbaPlayers +4667,Bradley Zimmer,5,,no_bbref,"4,5",2227,Bradley Zimmer,Exact name match found in SbaPlayers +4697,Brady Lail,5,,no_bbref,"4,5",1084,Brady Lail,Exact name match found in SbaPlayers +4445,Brady Singer,5,,no_bbref,"4,5",1827,Brady Singer,Exact name match found in SbaPlayers +1112,Branden Kline,3,,no_bbref,"2,3",1059,Branden Kline,Exact name match found in SbaPlayers +4562,Brandon Bailey,5,,no_bbref,"4,5",116,Brandon Bailey,Exact name match found in SbaPlayers +4159,Brandon Belt,5,,no_bbref,"1,2,3,4,5",173,Brandon Belt,Exact name match found in SbaPlayers +4811,Brandon Bielak,5,,no_bbref,"4,5",195,Brandon Bielak,Exact name match found in SbaPlayers +4563,Brandon Brennan,5,,no_bbref,"2,3,4,5",249,Brandon Brennan,Exact name match found in SbaPlayers +4289,Brandon Crawford,5,,no_bbref,"1,2,3,4,5",430,Brandon Crawford,Exact name match found in SbaPlayers +1116,Brandon Dixon,3,,no_bbref,"1,2,3",520,Brandon Dixon,Exact name match found in SbaPlayers +4812,Brandon Drury,5,,no_bbref,"2,3,4,5",535,Brandon Drury,Exact name match found in SbaPlayers +2106,Brandon Guyer,1,,no_bbref,1,798,Brandon Guyer,Exact name match found in SbaPlayers +4258,Brandon Kintzler,5,,no_bbref,"1,2,3,4,5",1052,Brandon Kintzler,Exact name match found in SbaPlayers +4432,Brandon Leibrandt,5,,no_bbref,"4,5",1111,Brandon Leibrandt,Exact name match found in SbaPlayers +4183,Brandon Lowe,5,,no_bbref,"2,3,4,5",1156,Brandon Lowe,Exact name match found in SbaPlayers +2108,Brandon Maurer,1,,no_bbref,1,1246,Brandon Maurer,Exact name match found in SbaPlayers +2109,Brandon McCarthy,1,,no_bbref,1,1263,Brandon McCarthy,Exact name match found in SbaPlayers +2110,Brandon Morrow,1,,no_bbref,1,1374,Brandon Morrow,Exact name match found in SbaPlayers +4273,Brandon Nimmo,5,,no_bbref,"1,2,3,4,5",1425,Brandon Nimmo,Exact name match found in SbaPlayers +4234,Brandon Woodruff,5,,no_bbref,"2,3,4,5",2196,Brandon Woodruff,Exact name match found in SbaPlayers +4813,Brandon Workman,5,,no_bbref,"2,3,4,5",2198,Brandon Workman,Exact name match found in SbaPlayers +4814,Braxton Garrett,5,,no_bbref,"4,5",701,Braxton Garrett,Exact name match found in SbaPlayers +1123,Brendan McKay,3,,no_bbref,"2,3",1280,Brendan McKay,Exact name match found in SbaPlayers +4815,Brendan Rodgers,5,,no_bbref,"2,3,4,5",1668,Brendan Rodgers,Exact name match found in SbaPlayers +4816,Brent Rooker,5,,no_bbref,"4,5",1708,Brent Rooker,Exact name match found in SbaPlayers +4526,Brent Suter,5,,no_bbref,"1,2,3,4,5",1943,Brent Suter,Exact name match found in SbaPlayers +4532,Brett Anderson,5,,no_bbref,"1,2,3,4,5",66,Brett Anderson,Exact name match found in SbaPlayers +2114,Brett Cecil,1,,no_bbref,1,357,Brett Cecil,Exact name match found in SbaPlayers +4506,Brett Gardner,5,,no_bbref,"1,2,3,4,5",695,Brett Gardner,Exact name match found in SbaPlayers +4482,Brett Martin,5,,no_bbref,"2,3,4,5",1218,Brett Martin,Exact name match found in SbaPlayers +4458,Brett Phillips,5,,no_bbref,"1,2,3,4,5",1555,Brett Phillips,Exact name match found in SbaPlayers +4239,Brian Anderson,5,,no_bbref,"1,2,3,4,5",69,Brian Anderson,Exact name match found in SbaPlayers +4817,Brian Dozier,5,,no_bbref,"1,2,3,4,5",532,Brian Dozier,Exact name match found in SbaPlayers +1132,Brian Flynn,3,,no_bbref,"1,2,3",631,Brian Flynn,Exact name match found in SbaPlayers +4818,Brian Goodwin,5,,no_bbref,"2,3,4,5",749,Brian Goodwin,Exact name match found in SbaPlayers +1134,Brian Johnson,3,,no_bbref,"1,2,3",986,Brian Johnson,Exact name match found in SbaPlayers +1135,Brian McCann,3,,no_bbref,"1,2,3",1260,Brian McCann,Exact name match found in SbaPlayers +4819,Brian Moran,5,,no_bbref,"4,5",1362,Brian Moran,Exact name match found in SbaPlayers +1136,Brock Burke,3,,no_bbref,"2,3",284,Brock Burke,Exact name match found in SbaPlayers +4820,Brock Holt,5,,no_bbref,"1,2,3,4,5",921,Brock Holt,Exact name match found in SbaPlayers +1138,Brock Stewart,3,,no_bbref,"2,3",1908,Brock Stewart,Exact name match found in SbaPlayers +4636,Brooks Raley,5,,no_bbref,"4,5",1601,Brooks Raley,Exact name match found in SbaPlayers +4707,Brusdar Graterol,5,,no_bbref,"4,5",763,Brusdar Graterol,Exact name match found in SbaPlayers +4322,Bryan Garcia,5,,no_bbref,"4,5",685,Bryan Garcia,Exact name match found in SbaPlayers +4821,Bryan Holaday,5,,no_bbref,"1,2,3,4,5",911,Bryan Holaday,Exact name match found in SbaPlayers +2124,Bryan Mitchell,1,,no_bbref,1,1339,Bryan Mitchell,Exact name match found in SbaPlayers +4618,Bryan Reynolds,5,,no_bbref,"2,3,4,5",1641,Bryan Reynolds,Exact name match found in SbaPlayers +1141,Bryan Shaw,3,,no_bbref,"1,2,3",1808,Bryan Shaw,Exact name match found in SbaPlayers +4287,Bryce Harper,5,,no_bbref,"1,2,3,4,5",823,Bryce Harper,Exact name match found in SbaPlayers +4459,Bryse Wilson,5,,no_bbref,"4,5",2171,Bryse Wilson,Exact name match found in SbaPlayers +4822,Bubba Starling,5,,no_bbref,"2,3,4,5",1894,Bubba Starling,Exact name match found in SbaPlayers +4643,Buck Farmer,5,,no_bbref,"1,2,3,4,5",597,Buck Farmer,Exact name match found in SbaPlayers +2128,Bud Norris,1,,no_bbref,1,1438,Bud Norris,Exact name match found in SbaPlayers +1145,Buddy Boshers,3,,no_bbref,"2,3",223,Buddy Boshers,Exact name match found in SbaPlayers +4247,Burch Smith,5,,no_bbref,"1,4,5",1844,Burch Smith,Exact name match found in SbaPlayers +1146,Buster Posey,3,,no_bbref,"1,2,3",1578,Buster Posey,Exact name match found in SbaPlayers +4130,Byron Buxton,5,,no_bbref,"2,3,4,5",295,Byron Buxton,Exact name match found in SbaPlayers +1167,CC Sabathia,3,,no_bbref,"1,2,3",1734,CC Sabathia,Exact name match found in SbaPlayers +4419,CJ Cron,5,,no_bbref,"1,2,3,4,5",441,CJ Cron,Exact name match found in SbaPlayers +4373,Cal Quantrill,5,,no_bbref,"2,3,4,5",1593,Cal Quantrill,Exact name match found in SbaPlayers +4650,Caleb Baragar,5,,no_bbref,"4,5",124,Caleb Baragar,Exact name match found in SbaPlayers +4677,Caleb Ferguson,5,,no_bbref,"2,3,4,5",605,Caleb Ferguson,Exact name match found in SbaPlayers +2132,Caleb Joseph,1,,no_bbref,1,996,Caleb Joseph,Exact name match found in SbaPlayers +4310,Caleb Smith,5,,no_bbref,"1,2,3,4,5",1845,Caleb Smith,Exact name match found in SbaPlayers +4378,Caleb Thielbar,5,,no_bbref,"4,5",1977,Caleb Thielbar,Exact name match found in SbaPlayers +4328,Cam Bedrosian,5,,no_bbref,"1,2,3,4,5",163,Cam Bedrosian,Exact name match found in SbaPlayers +4195,Cam Gallagher,5,,no_bbref,"1,2,3,4,5",670,Cam Gallagher,Exact name match found in SbaPlayers +4823,Cam Hill,5,,no_bbref,"4,5",902,Cam Hill,Exact name match found in SbaPlayers +4824,Cameron Maybin,5,,no_bbref,"2,3,4,5",1250,Cameron Maybin,Exact name match found in SbaPlayers +2136,Carl Edwards Jr,1,,no_bbref,1,560,Carl Edwards Jr,Exact name match found in SbaPlayers +2137,Carlos Asuaje,1,,no_bbref,1,102,Carlos Asuaje,Exact name match found in SbaPlayers +4305,Carlos Carrasco,5,,no_bbref,"1,2,3,4,5",331,Carlos Carrasco,Exact name match found in SbaPlayers +4271,Carlos Correa,5,,no_bbref,"1,2,3,4,5",420,Carlos Correa,Exact name match found in SbaPlayers +4825,Carlos Estevez,5,,no_bbref,"2,3,4,5",585,Carlos Estevez,Exact name match found in SbaPlayers +1158,Carlos Gomez,3,,no_bbref,"1,2,3",732,Carlos Gomez,Exact name match found in SbaPlayers +1159,Carlos Gonzalez,3,,no_bbref,"1,2,3",740,Carlos Gonzalez,Exact name match found in SbaPlayers +4826,Carlos Hernandez,5,,no_bbref,"4,5",880,Carlos Hernandez,Exact name match found in SbaPlayers +4827,Carlos Martinez,5,,no_bbref,"1,2,3,4,5",1223,Carlos Martinez,Exact name match found in SbaPlayers +4828,Carlos Rodon,5,,no_bbref,"1,2,3,4,5",1670,Carlos Rodon,Exact name match found in SbaPlayers +4564,Carlos Santana,5,,no_bbref,"1,2,3,4,5",1759,Carlos Santana,Exact name match found in SbaPlayers +2145,Carlos Tocci,1,,no_bbref,1,1993,Carlos Tocci,Exact name match found in SbaPlayers +4467,Carson Fulmer,5,,no_bbref,"2,3,4,5",667,Carson Fulmer,Exact name match found in SbaPlayers +4829,Carson Kelly,5,,no_bbref,"2,3,4,5",1023,Carson Kelly,Exact name match found in SbaPlayers +4638,Carter Kieboom,5,,no_bbref,"4,5",1038,Carter Kieboom,Exact name match found in SbaPlayers +4830,Casey Mize,5,,no_bbref,"4,5",1342,Casey Mize,Exact name match found in SbaPlayers +4831,Casey Sadler,5,,no_bbref,"2,3,4,5",1736,Casey Sadler,Exact name match found in SbaPlayers +4299,Cavan Biggio,5,,no_bbref,"2,3,4,5",196,Cavan Biggio,Exact name match found in SbaPlayers +4592,Cedric Mullins,5,,no_bbref,"1,2,3,4,5",1381,Cedric Mullins,Exact name match found in SbaPlayers +4342,Cesar Hernandez,5,,no_bbref,"1,2,3,4,5",870,Cesar Hernandez,Exact name match found in SbaPlayers +1170,Cesar Puello,3,,no_bbref,"2,3",1589,Cesar Puello,Exact name match found in SbaPlayers +4127,Cesar Valdez,5,,no_bbref,"4,5",2046,Cesar Valdez,Exact name match found in SbaPlayers +1171,Chad Bettis,3,,no_bbref,"1,2,3",186,Chad Bettis,Exact name match found in SbaPlayers +4628,Chad Green,5,,no_bbref,"1,2,3,4,5",768,Chad Green,Exact name match found in SbaPlayers +4832,Chad Kuhl,5,,no_bbref,"1,4,5",1078,Chad Kuhl,Exact name match found in SbaPlayers +4589,Chad Pinder,5,,no_bbref,"1,2,3,4,5",1559,Chad Pinder,Exact name match found in SbaPlayers +1174,Chad Sobotka,3,,no_bbref,"2,3",1863,Chad Sobotka,Exact name match found in SbaPlayers +4661,Chad Wallach,5,,no_bbref,"4,5",2108,Chad Wallach,Exact name match found in SbaPlayers +4833,Chadwick Tromp,5,,no_bbref,"4,5",2017,Chadwick Tromp,Exact name match found in SbaPlayers +4834,Chance Adams,5,,no_bbref,"4,5",18,Chance Adams,Exact name match found in SbaPlayers +4693,Chance Sisco,5,,no_bbref,"1,2,3,4,5",1831,Chance Sisco,Exact name match found in SbaPlayers +4594,Charlie Blackmon,5,,no_bbref,"1,2,3,4,5",205,Charlie Blackmon,Exact name match found in SbaPlayers +1177,Charlie Culberson,3,,no_bbref,"1,2,3",453,Charlie Culberson,Exact name match found in SbaPlayers +4714,Charlie Morton,5,,no_bbref,"1,2,3,4,5",1375,Charlie Morton,Exact name match found in SbaPlayers +1179,Charlie Tilson,3,,no_bbref,"1,2,3",1991,Charlie Tilson,Exact name match found in SbaPlayers +4835,Chase Anderson,5,,no_bbref,"1,2,3,4,5",67,Chase Anderson,Exact name match found in SbaPlayers +4836,Chase De Jong,5,,no_bbref,"4,5",478,Chase De Jong,Exact name match found in SbaPlayers +2159,Chase Utley,1,,no_bbref,1,2043,Chase Utley,Exact name match found in SbaPlayers +2160,Chasen Bradford,1,,no_bbref,1,234,Chasen Bradford,Exact name match found in SbaPlayers +4607,Chasen Shreve,5,,no_bbref,"4,5",1819,Chasen Shreve,Exact name match found in SbaPlayers +4435,Chaz Roe,5,,no_bbref,"1,2,3,4,5",1688,Chaz Roe,Exact name match found in SbaPlayers +1182,Cheslor Cuthbert,3,,no_bbref,"2,3",456,Cheslor Cuthbert,Exact name match found in SbaPlayers +4712,Chi Chi Gonzalez,5,,no_bbref,"2,3,4,5",737,Chi Chi Gonzalez,Exact name match found in SbaPlayers +1184,Chris Archer,3,,no_bbref,"1,2,3",85,Chris Archer,Exact name match found in SbaPlayers +4188,Chris Bassitt,5,,no_bbref,"2,3,4,5",146,Chris Bassitt,Exact name match found in SbaPlayers +4837,Chris Davis,5,,no_bbref,"1,2,3,4,5",467,Chris Davis,Exact name match found in SbaPlayers +1187,Chris Devenski,3,,no_bbref,"1,2,3",498,Chris Devenski,Exact name match found in SbaPlayers +1188,Chris Herrmann,3,,no_bbref,"1,2,3",887,Chris Herrmann,Exact name match found in SbaPlayers +1189,Chris Iannetta,3,,no_bbref,"1,2,3",947,Chris Iannetta,Exact name match found in SbaPlayers +4171,Chris Martin,5,,no_bbref,"1,2,3,4,5",1214,Chris Martin,Exact name match found in SbaPlayers +4573,Chris Mazza,5,,no_bbref,"4,5",1257,Chris Mazza,Exact name match found in SbaPlayers +4495,Chris Owings,5,,no_bbref,"1,2,3,4,5",1480,Chris Owings,Exact name match found in SbaPlayers +4698,Chris Paddack,5,,no_bbref,"2,3,4,5",1483,Chris Paddack,Exact name match found in SbaPlayers +2169,Chris Rusin,1,,no_bbref,1,1727,Chris Rusin,Exact name match found in SbaPlayers +1193,Chris Sale,3,,no_bbref,"1,2,3",1739,Chris Sale,Exact name match found in SbaPlayers +4838,Chris Stratton,5,,no_bbref,"1,2,3,4,5",1922,Chris Stratton,Exact name match found in SbaPlayers +4202,Chris Taylor,5,,no_bbref,"1,2,3,4,5",1964,Chris Taylor,Exact name match found in SbaPlayers +2173,Chris Volstad,1,,no_bbref,1,2089,Chris Volstad,Exact name match found in SbaPlayers +4552,Christian Arroyo,5,,no_bbref,"4,5",96,Christian Arroyo,Exact name match found in SbaPlayers +4839,Christian Colon,5,,no_bbref,"4,5",406,Christian Colon,Exact name match found in SbaPlayers +4480,Christian Vazquez,5,,no_bbref,"1,2,3,4,5",2063,Christian Vazquez,Exact name match found in SbaPlayers +2175,Christian Villanueva,1,,no_bbref,1,2078,Christian Villanueva,Exact name match found in SbaPlayers +4619,Christian Walker,5,,no_bbref,"2,3,4,5",2104,Christian Walker,Exact name match found in SbaPlayers +4665,Christian Yelich,5,,no_bbref,"1,2,3,4,5",2212,Christian Yelich,Exact name match found in SbaPlayers +4840,Christin Stewart,5,,no_bbref,"2,3,4,5",1910,Christin Stewart,Exact name match found in SbaPlayers +4621,Cionel Perez,5,,no_bbref,"4,5",1540,Cionel Perez,Exact name match found in SbaPlayers +1200,Clay Buchholz,3,,no_bbref,"1,2,3",275,Clay Buchholz,Exact name match found in SbaPlayers +1201,Clay Holmes,3,,no_bbref,"2,3",919,Clay Holmes,Exact name match found in SbaPlayers +4228,Clayton Kershaw,5,,no_bbref,"1,2,3,4,5",1034,Clayton Kershaw,Exact name match found in SbaPlayers +1203,Clayton Richard,3,,no_bbref,"1,2,3",1644,Clayton Richard,Exact name match found in SbaPlayers +4186,Clint Frazier,5,,no_bbref,"2,3,4,5",649,Clint Frazier,Exact name match found in SbaPlayers +4417,Codi Heuer,5,,no_bbref,"4,5",890,Codi Heuer,Exact name match found in SbaPlayers +2180,Cody Allen,1,,no_bbref,1,43,Cody Allen,Exact name match found in SbaPlayers +4334,Cody Bellinger,5,,no_bbref,"1,2,3,4,5",170,Cody Bellinger,Exact name match found in SbaPlayers +4496,Cody Ponce,5,,no_bbref,"4,5",1573,Cody Ponce,Exact name match found in SbaPlayers +4841,Cody Reed,5,,no_bbref,"1,4,5",1625,Cody Reed,Exact name match found in SbaPlayers +4583,Cody Stashak,5,,no_bbref,"2,3,4,5",1895,Cody Stashak,Exact name match found in SbaPlayers +1207,Cole Hamels,3,,no_bbref,"1,2,3",809,Cole Hamels,Exact name match found in SbaPlayers +1208,Cole Irvin,3,,no_bbref,"2,3",954,Cole Irvin,Exact name match found in SbaPlayers +4842,Cole Sulser,5,,no_bbref,"4,5",1942,Cole Sulser,Exact name match found in SbaPlayers +4843,Cole Tucker,5,,no_bbref,"2,3,4,5",2022,Cole Tucker,Exact name match found in SbaPlayers +4613,Colin Moran,5,,no_bbref,"1,2,3,4,5",1360,Colin Moran,Exact name match found in SbaPlayers +1211,Colin Poche,3,,no_bbref,"2,3",1568,Colin Poche,Exact name match found in SbaPlayers +4844,Colin Rea,5,,no_bbref,"4,5",1621,Colin Rea,Exact name match found in SbaPlayers +1212,Collin McHugh,3,,no_bbref,"1,2,3",1278,Collin McHugh,Exact name match found in SbaPlayers +4732,Colten Brewer,5,,no_bbref,"2,3,4,5",252,Colten Brewer,Exact name match found in SbaPlayers +4491,Conner Menez,5,,no_bbref,"4,5",1304,Conner Menez,Exact name match found in SbaPlayers +4497,Connor Brogdon,5,,no_bbref,"4,5",261,Connor Brogdon,Exact name match found in SbaPlayers +1214,Corban Joseph,3,,no_bbref,"2,3",997,Corban Joseph,Exact name match found in SbaPlayers +4175,Corbin Burnes,5,,no_bbref,"1,2,3,4,5",286,Corbin Burnes,Exact name match found in SbaPlayers +4740,Corey Dickerson,5,,no_bbref,"1,2,3,4,5",513,Corey Dickerson,Exact name match found in SbaPlayers +1217,Corey Kluber,3,,no_bbref,"1,2,3",1060,Corey Kluber,Exact name match found in SbaPlayers +4845,Corey Knebel,5,,no_bbref,"1,4,5",1063,Corey Knebel,Exact name match found in SbaPlayers +4670,Corey Oswalt,5,,no_bbref,"1,4,5",1472,Corey Oswalt,Exact name match found in SbaPlayers +4233,Corey Seager,5,,no_bbref,"2,3,4,5",1794,Corey Seager,Exact name match found in SbaPlayers +1219,Cory Gearrin,3,,no_bbref,"2,3",708,Cory Gearrin,Exact name match found in SbaPlayers +1220,Cory Spangenberg,3,,no_bbref,"1,2,3",1883,Cory Spangenberg,Exact name match found in SbaPlayers +2192,Craig Gentry,1,,no_bbref,1,711,Craig Gentry,Exact name match found in SbaPlayers +4846,Craig Kimbrel,5,,no_bbref,"1,2,3,4,5",1043,Craig Kimbrel,Exact name match found in SbaPlayers +4847,Craig Stammen,5,,no_bbref,"1,2,3,4,5",1891,Craig Stammen,Exact name match found in SbaPlayers +4300,Cristian Javier,5,,no_bbref,"4,5",971,Cristian Javier,Exact name match found in SbaPlayers +4450,Curt Casali,5,,no_bbref,"1,2,3,4,5",334,Curt Casali,Exact name match found in SbaPlayers +1224,Curtis Granderson,3,,no_bbref,"2,3",762,Curtis Granderson,Exact name match found in SbaPlayers +4848,Cy Sneed,5,,no_bbref,"4,5",1860,Cy Sneed,Exact name match found in SbaPlayers +4138,DJ LeMahieu,5,,no_bbref,"1,2,3,4,5",1114,DJ LeMahieu,Exact name match found in SbaPlayers +4382,DJ Stewart,5,,no_bbref,"2,3,4,5",1909,DJ Stewart,Exact name match found in SbaPlayers +4849,Dakota Bacus,5,,no_bbref,"4,5",108,Dakota Bacus,Exact name match found in SbaPlayers +4477,Dakota Hudson,5,,no_bbref,"2,3,4,5",934,Dakota Hudson,Exact name match found in SbaPlayers +4189,Dallas Keuchel,5,,no_bbref,"1,2,3,4,5",1035,Dallas Keuchel,Exact name match found in SbaPlayers +4850,Dan Altavilla,5,,no_bbref,"4,5",54,Dan Altavilla,Exact name match found in SbaPlayers +2197,Dan Jennings,1,,no_bbref,1,977,Dan Jennings,Exact name match found in SbaPlayers +1227,Dan Otero,3,,no_bbref,"1,2,3",1474,Dan Otero,Exact name match found in SbaPlayers +1228,Dan Straily,3,,no_bbref,"1,2,3",1919,Dan Straily,Exact name match found in SbaPlayers +4678,Dan Winkler,5,,no_bbref,"1,4,5",2178,Dan Winkler,Exact name match found in SbaPlayers +4754,Dane Dunning,5,,no_bbref,"4,5",548,Dane Dunning,Exact name match found in SbaPlayers +4381,Daniel Bard,5,,no_bbref,"4,5",125,Daniel Bard,Exact name match found in SbaPlayers +4330,Daniel Castano,5,,no_bbref,"4,5",337,Daniel Castano,Exact name match found in SbaPlayers +1229,Daniel Descalso,3,,no_bbref,"1,2,3",492,Daniel Descalso,Exact name match found in SbaPlayers +4851,Daniel Hudson,5,,no_bbref,"2,3,4,5",933,Daniel Hudson,Exact name match found in SbaPlayers +4518,Daniel Mengden,5,,no_bbref,"1,2,3,4,5",1305,Daniel Mengden,Exact name match found in SbaPlayers +4852,Daniel Murphy,5,,no_bbref,"1,2,3,4,5",1387,Daniel Murphy,Exact name match found in SbaPlayers +4426,Daniel Norris,5,,no_bbref,"1,2,3,4,5",1439,Daniel Norris,Exact name match found in SbaPlayers +1234,Daniel Palka,3,,no_bbref,"1,2,3",1491,Daniel Palka,Exact name match found in SbaPlayers +4853,Daniel Ponce de Leon,5,,no_bbref,"2,3,4,5",1574,Daniel Ponce de Leon,Exact name match found in SbaPlayers +4854,Daniel Robertson,5,,no_bbref,"1,2,3,4,5",1663,Daniel Robertson,Exact name match found in SbaPlayers +1237,Daniel Stumpf,3,,no_bbref,"1,2,3",1932,Daniel Stumpf,Exact name match found in SbaPlayers +4855,Daniel Vogelbach,5,,no_bbref,"2,3,4,5",2085,Daniel Vogelbach,Exact name match found in SbaPlayers +2208,Danny Barnes,1,,no_bbref,1,130,Danny Barnes,Exact name match found in SbaPlayers +4691,Danny Duffy,5,,no_bbref,"1,2,3,4,5",541,Danny Duffy,Exact name match found in SbaPlayers +4528,Danny Jansen,5,,no_bbref,"1,2,3,4,5",969,Danny Jansen,Exact name match found in SbaPlayers +4397,Danny Mendick,5,,no_bbref,"4,5",1302,Danny Mendick,Exact name match found in SbaPlayers +4856,Danny Santana,5,,no_bbref,"2,3,4,5",1760,Danny Santana,Exact name match found in SbaPlayers +2211,Danny Valencia,1,,no_bbref,1,2050,Danny Valencia,Exact name match found in SbaPlayers +4179,Dansby Swanson,5,,no_bbref,"1,2,3,4,5",1947,Dansby Swanson,Exact name match found in SbaPlayers +4412,Darin Ruf,5,,no_bbref,"4,5",1722,Darin Ruf,Exact name match found in SbaPlayers +1243,Dario Agrazal,3,,no_bbref,"2,3",23,Dario Agrazal,Exact name match found in SbaPlayers +4311,Darren ODay,5,,no_bbref,"4,5",1449,Darren ODay,Exact name match found in SbaPlayers +4220,Darwinzon Hernandez,5,,no_bbref,"2,3,4,5",877,Darwinzon Hernandez,Exact name match found in SbaPlayers +4857,Daulton Varsho,5,,no_bbref,"4,5",2058,Daulton Varsho,Exact name match found in SbaPlayers +4758,David Bote,5,,no_bbref,"1,2,3,4,5",224,David Bote,Exact name match found in SbaPlayers +4858,David Dahl,5,,no_bbref,"1,2,3,4,5",457,David Dahl,Exact name match found in SbaPlayers +4285,David Fletcher,5,,no_bbref,"1,2,3,4,5",624,David Fletcher,Exact name match found in SbaPlayers +1248,David Freese,3,,no_bbref,"1,2,3",655,David Freese,Exact name match found in SbaPlayers +2217,David Freitas,1,,no_bbref,1,656,David Freitas,Exact name match found in SbaPlayers +4405,David Hale,5,,no_bbref,"2,3,4,5",805,David Hale,Exact name match found in SbaPlayers +1250,David Hernandez,3,,no_bbref,"1,2,3",868,David Hernandez,Exact name match found in SbaPlayers +1251,David Hess,3,,no_bbref,"1,2,3",889,David Hess,Exact name match found in SbaPlayers +1252,David McKay,3,,no_bbref,"2,3",1279,David McKay,Exact name match found in SbaPlayers +4624,David Peralta,5,,no_bbref,"1,2,3,4,5",1522,David Peralta,Exact name match found in SbaPlayers +4209,David Peterson,5,,no_bbref,"4,5",1548,David Peterson,Exact name match found in SbaPlayers +4694,David Phelps,5,,no_bbref,"2,3,4,5",1554,David Phelps,Exact name match found in SbaPlayers +1255,David Price,3,,no_bbref,"1,2,3",1585,David Price,Exact name match found in SbaPlayers +2222,David Robertson,1,,no_bbref,1,1662,David Robertson,Exact name match found in SbaPlayers +1256,Dawel Lugo,3,,no_bbref,"2,3",1166,Dawel Lugo,Exact name match found in SbaPlayers +4859,Daz Cameron,5,,no_bbref,"4,5",310,Daz Cameron,Exact name match found in SbaPlayers +4339,Dean Kremer,5,,no_bbref,"4,5",1077,Dean Kremer,Exact name match found in SbaPlayers +4860,Dee Strange Gordon,5,,no_bbref,"1,2,3,4,5",1920,Dee Strange Gordon,Exact name match found in SbaPlayers +4622,Deivi Garcia,5,,no_bbref,"4,5",688,Deivi Garcia,Exact name match found in SbaPlayers +4861,Delino DeShields,5,,no_bbref,"1,2,3,4,5",494,Delino DeShields,Exact name match found in SbaPlayers +4862,Dellin Betances,5,,no_bbref,"1,4,5",184,Dellin Betances,Exact name match found in SbaPlayers +2226,Denard Span,1,,no_bbref,1,1882,Denard Span,Exact name match found in SbaPlayers +4863,Dennis Santana,5,,no_bbref,"4,5",1762,Dennis Santana,Exact name match found in SbaPlayers +4864,Deolis Guerra,5,,no_bbref,"4,5",787,Deolis Guerra,Exact name match found in SbaPlayers +1259,Dereck Rodriguez,3,,no_bbref,"1,2,3",1676,Dereck Rodriguez,Exact name match found in SbaPlayers +4629,Derek Dietrich,5,,no_bbref,"1,2,3,4,5",515,Derek Dietrich,Exact name match found in SbaPlayers +4865,Derek Fisher,5,,no_bbref,"2,3,4,5",618,Derek Fisher,Exact name match found in SbaPlayers +4866,Derek Holland,5,,no_bbref,"1,2,3,4,5",914,Derek Holland,Exact name match found in SbaPlayers +1263,Derek Law,3,,no_bbref,"2,3",1098,Derek Law,Exact name match found in SbaPlayers +2230,Devin Mesoraco,1,,no_bbref,1,1313,Devin Mesoraco,Exact name match found in SbaPlayers +4867,Devin Smeltzer,5,,no_bbref,"2,3,4,5",1840,Devin Smeltzer,Exact name match found in SbaPlayers +4172,Devin Williams,5,,no_bbref,"4,5",2158,Devin Williams,Exact name match found in SbaPlayers +2231,Devon Travis,1,,no_bbref,1,2009,Devon Travis,Exact name match found in SbaPlayers +4868,Dexter Fowler,5,,no_bbref,"1,2,3,4,5",639,Dexter Fowler,Exact name match found in SbaPlayers +4461,Didi Gregorius,5,,no_bbref,"1,2,3,4,5",772,Didi Gregorius,Exact name match found in SbaPlayers +4277,Diego Castillo,5,,no_bbref,"1,2,3,4,5",341,Diego Castillo,Exact name match found in SbaPlayers +1268,Dillon Peters,3,,no_bbref,"2,3",1544,Dillon Peters,Exact name match found in SbaPlayers +4390,Dillon Tate,5,,no_bbref,"4,5",1959,Dillon Tate,Exact name match found in SbaPlayers +4180,Dinelson Lamet,5,,no_bbref,"2,3,4,5",1090,Dinelson Lamet,Exact name match found in SbaPlayers +2235,Dixon Machado,1,,no_bbref,1,1174,Dixon Machado,Exact name match found in SbaPlayers +1272,Domingo German,3,,no_bbref,"1,2,3",713,Domingo German,Exact name match found in SbaPlayers +4869,Domingo Santana,5,,no_bbref,"1,2,3,4,5",1761,Domingo Santana,Exact name match found in SbaPlayers +4870,Dominic Leone,5,,no_bbref,"2,3,4,5",1116,Dominic Leone,Exact name match found in SbaPlayers +4211,Dominic Smith,5,,no_bbref,"1,2,3,4,5",1849,Dominic Smith,Exact name match found in SbaPlayers +4306,Donovan Solano,5,,no_bbref,"2,3,4,5",1868,Donovan Solano,Exact name match found in SbaPlayers +2240,Doug Fister,1,,no_bbref,1,619,Doug Fister,Exact name match found in SbaPlayers +4871,Dovydas Neverauskas,5,,no_bbref,"1,4,5",1416,Dovydas Neverauskas,Exact name match found in SbaPlayers +4872,Drew Butera,5,,no_bbref,"4,5",290,Drew Butera,Exact name match found in SbaPlayers +4221,Drew Pomeranz,5,,no_bbref,"1,2,3,4,5",1572,Drew Pomeranz,Exact name match found in SbaPlayers +4873,Drew Rasmussen,5,,no_bbref,"4,5",1618,Drew Rasmussen,Exact name match found in SbaPlayers +2243,Drew Rucinski,1,,no_bbref,1,1720,Drew Rucinski,Exact name match found in SbaPlayers +4874,Drew Smith,5,,no_bbref,"4,5",1848,Drew Smith,Exact name match found in SbaPlayers +4535,Drew Smyly,5,,no_bbref,"2,3,4,5",1858,Drew Smyly,Exact name match found in SbaPlayers +2244,Drew Steckenrider,1,,no_bbref,1,1898,Drew Steckenrider,Exact name match found in SbaPlayers +1279,Drew VerHagen,3,,no_bbref,"1,2,3",2070,Drew VerHagen,Exact name match found in SbaPlayers +4875,Duane Underwood,5,,no_bbref,"4,5",2033,Duane Underwood,Exact name match found in SbaPlayers +2246,Dustin Fowler,1,,no_bbref,1,640,Dustin Fowler,Exact name match found in SbaPlayers +4876,Dustin Garneau,5,,no_bbref,"2,3,4,5",697,Dustin Garneau,Exact name match found in SbaPlayers +4284,Dustin May,5,,no_bbref,"2,3,4,5",1249,Dustin May,Exact name match found in SbaPlayers +4877,Dwight Smith Jr,5,,no_bbref,"2,3,4,5",1855,Dwight Smith Jr,Exact name match found in SbaPlayers +4242,Dylan Bundy,5,,no_bbref,"1,2,3,4,5",280,Dylan Bundy,Exact name match found in SbaPlayers +4878,Dylan Carlson,5,,no_bbref,"4,5",327,Dylan Carlson,Exact name match found in SbaPlayers +4765,Dylan Cease,5,,no_bbref,"2,3,4,5",355,Dylan Cease,Exact name match found in SbaPlayers +4879,Dylan Covey,5,,no_bbref,"1,2,3,4,5",425,Dylan Covey,Exact name match found in SbaPlayers +4568,Dylan Floro,5,,no_bbref,"1,2,3,4,5",629,Dylan Floro,Exact name match found in SbaPlayers +4167,Dylan Moore,5,,no_bbref,"2,3,4,5",1358,Dylan Moore,Exact name match found in SbaPlayers +2250,Eddie Butler,1,,no_bbref,1,291,Eddie Butler,Exact name match found in SbaPlayers +4481,Eddie Rosario,5,,no_bbref,"1,2,3,4,5",1710,Eddie Rosario,Exact name match found in SbaPlayers +4880,Eddy Alvarez,5,,no_bbref,"4,5",60,Eddy Alvarez,Exact name match found in SbaPlayers +1289,Edgar Garcia,3,,no_bbref,"2,3",686,Edgar Garcia,Exact name match found in SbaPlayers +2252,Edgar Santana,1,,no_bbref,1,1763,Edgar Santana,Exact name match found in SbaPlayers +4881,Eduardo Escobar,5,,no_bbref,"1,2,3,4,5",581,Eduardo Escobar,Exact name match found in SbaPlayers +1291,Eduardo Nunez,3,,no_bbref,"1,2,3",1442,Eduardo Nunez,Exact name match found in SbaPlayers +1292,Eduardo Rodriguez,3,,no_bbref,"1,2,3",1675,Eduardo Rodriguez,Exact name match found in SbaPlayers +2256,Edubray Ramos,1,,no_bbref,1,1613,Edubray Ramos,Exact name match found in SbaPlayers +4882,Edward Olivares,5,,no_bbref,"4,5",1458,Edward Olivares,Exact name match found in SbaPlayers +4243,Edwin Diaz,5,,no_bbref,"1,2,3,4,5",503,Edwin Diaz,Exact name match found in SbaPlayers +4883,Edwin Encarnacion,5,,no_bbref,"1,2,3,4,5",571,Edwin Encarnacion,Exact name match found in SbaPlayers +1295,Edwin Jackson,3,,no_bbref,"1,2,3",957,Edwin Jackson,Exact name match found in SbaPlayers +4255,Edwin Rios,5,,no_bbref,"4,5",1651,Edwin Rios,Exact name match found in SbaPlayers +4735,Ehire Adrianza,5,,no_bbref,"1,2,3,4,5",22,Ehire Adrianza,Exact name match found in SbaPlayers +4884,Eli White,5,,no_bbref,"4,5",2140,Eli White,Exact name match found in SbaPlayers +4885,Elias Diaz,5,,no_bbref,"1,2,3,4,5",502,Elias Diaz,Exact name match found in SbaPlayers +4335,Elieser Hernandez,5,,no_bbref,"1,2,3,4,5",874,Elieser Hernandez,Exact name match found in SbaPlayers +4391,Eloy Jimenez,5,,no_bbref,"2,3,4,5",980,Eloy Jimenez,Exact name match found in SbaPlayers +4886,Elvis Andrus,5,,no_bbref,"1,2,3,4,5",77,Elvis Andrus,Exact name match found in SbaPlayers +1301,Elvis Luciano,3,,no_bbref,"2,3",1161,Elvis Luciano,Exact name match found in SbaPlayers +4751,Emilio Pagan,5,,no_bbref,"1,2,3,4,5",1484,Emilio Pagan,Exact name match found in SbaPlayers +4887,Ender Inciarte,5,,no_bbref,"1,2,3,4,5",952,Ender Inciarte,Exact name match found in SbaPlayers +4520,Enoli Paredes,5,,no_bbref,"4,5",1496,Enoli Paredes,Exact name match found in SbaPlayers +4350,Enrique Hernandez,5,,no_bbref,"1,2,3,4,5",871,Enrique Hernandez,Exact name match found in SbaPlayers +4146,Erasmo Ramirez,5,,no_bbref,"4,5",1604,Erasmo Ramirez,Exact name match found in SbaPlayers +4888,Eric Haase,5,,no_bbref,"4,5",801,Eric Haase,Exact name match found in SbaPlayers +4331,Eric Hosmer,5,,no_bbref,"1,2,3,4,5",926,Eric Hosmer,Exact name match found in SbaPlayers +4889,Eric Lauer,5,,no_bbref,"1,2,3,4,5",1096,Eric Lauer,Exact name match found in SbaPlayers +2519,Eric Skoglund,1,,no_bbref,1,1834,Eric Skoglund,Exact name match found in SbaPlayers +4890,Eric Sogard,5,,no_bbref,"2,3,4,5",1865,Eric Sogard,Exact name match found in SbaPlayers +4891,Eric Thames,5,,no_bbref,"1,2,3,4,5",1976,Eric Thames,Exact name match found in SbaPlayers +4510,Eric Yardley,5,,no_bbref,"4,5",2209,Eric Yardley,Exact name match found in SbaPlayers +2521,Eric Young Jr,1,,no_bbref,1,2221,Eric Young Jr,Exact name match found in SbaPlayers +4218,Erick Fedde,5,,no_bbref,"1,2,3,4,5",600,Erick Fedde,Exact name match found in SbaPlayers +4767,Erik Gonzalez,5,,no_bbref,"1,2,3,4,5",742,Erik Gonzalez,Exact name match found in SbaPlayers +4142,Erik Kratz,5,,no_bbref,"1,4,5",1074,Erik Kratz,Exact name match found in SbaPlayers +4892,Erik Swanson,5,,no_bbref,"2,3,4,5",1948,Erik Swanson,Exact name match found in SbaPlayers +4608,Eugenio Suarez,5,,no_bbref,"1,2,3,4,5",1934,Eugenio Suarez,Exact name match found in SbaPlayers +2526,Evan Gattis,1,,no_bbref,1,705,Evan Gattis,Exact name match found in SbaPlayers +4584,Evan Longoria,5,,no_bbref,"1,2,3,4,5",1140,Evan Longoria,Exact name match found in SbaPlayers +4498,Evan Marshall,5,,no_bbref,"2,3,4,5",1207,Evan Marshall,Exact name match found in SbaPlayers +4722,Evan Phillips,5,,no_bbref,"2,3,4,5",,,No bbref_id available +4768,Evan White,5,,no_bbref,"4,5",2142,Evan White,Exact name match found in SbaPlayers +1316,Felipe Vazquez,3,,no_bbref,"1,2,3",2064,Felipe Vazquez,Exact name match found in SbaPlayers +1317,Felix Hernandez,3,,no_bbref,"1,2,3",867,Felix Hernandez,Exact name match found in SbaPlayers +4542,Felix Pena,5,,no_bbref,"1,2,3,4,5",1518,Felix Pena,Exact name match found in SbaPlayers +1319,Fernando Rodney,3,,no_bbref,"1,2,3",1669,Fernando Rodney,Exact name match found in SbaPlayers +2532,Fernando Romero,1,,no_bbref,1,1701,Fernando Romero,Exact name match found in SbaPlayers +4182,Fernando Tatis Jr,5,,no_bbref,"2,3,4,5",1960,Fernando Tatis Jr,Exact name match found in SbaPlayers +4398,Framber Valdez,5,,no_bbref,"2,3,4,5",2048,Framber Valdez,Exact name match found in SbaPlayers +4893,Franchy Cordero,5,,no_bbref,"4,5",418,Franchy Cordero,Exact name match found in SbaPlayers +2533,Francisco Arcia,1,,no_bbref,1,87,Francisco Arcia,Exact name match found in SbaPlayers +4169,Francisco Cervelli,5,,no_bbref,"1,2,3,4,5",359,Francisco Cervelli,Exact name match found in SbaPlayers +4524,Francisco Lindor,5,,no_bbref,"1,2,3,4,5",1124,Francisco Lindor,Exact name match found in SbaPlayers +1324,Francisco Liriano,3,,no_bbref,"1,2,3",1126,Francisco Liriano,Exact name match found in SbaPlayers +4894,Francisco Mejia,5,,no_bbref,"2,3,4,5",,,No bbref_id available +2537,Francisco Pena,1,,no_bbref,1,1517,Francisco Pena,Exact name match found in SbaPlayers +4895,Frankie Montas,5,,no_bbref,"2,3,4,5",1351,Frankie Montas,Exact name match found in SbaPlayers +4896,Franklin Barreto,5,,no_bbref,"4,5",140,Franklin Barreto,Exact name match found in SbaPlayers +4897,Franklyn Kilome,5,,no_bbref,"4,5",1041,Franklyn Kilome,Exact name match found in SbaPlayers +4695,Franmil Reyes,5,,no_bbref,"1,2,3,4,5",1634,Franmil Reyes,Exact name match found in SbaPlayers +4148,Freddie Freeman,5,,no_bbref,"1,2,3,4,5",652,Freddie Freeman,Exact name match found in SbaPlayers +4675,Freddy Galvis,5,,no_bbref,"1,2,3,4,5",675,Freddy Galvis,Exact name match found in SbaPlayers +4632,Freddy Peralta,5,,no_bbref,"1,2,3,4,5",1525,Freddy Peralta,Exact name match found in SbaPlayers +4898,Gabe Speier,5,,no_bbref,"4,5",1885,Gabe Speier,Exact name match found in SbaPlayers +2542,Gabriel Moya,1,,no_bbref,1,1379,Gabriel Moya,Exact name match found in SbaPlayers +1331,Gabriel Ynoa,3,,no_bbref,"2,3",2214,Gabriel Ynoa,Exact name match found in SbaPlayers +4547,Garrett Cooper,5,,no_bbref,"2,3,4,5",415,Garrett Cooper,Exact name match found in SbaPlayers +4256,Garrett Crochet,5,,no_bbref,"4,5",439,Garrett Crochet,Exact name match found in SbaPlayers +4899,Garrett Hampson,5,,no_bbref,"2,3,4,5",814,Garrett Hampson,Exact name match found in SbaPlayers +4399,Garrett Richards,5,,no_bbref,"1,4,5",1645,Garrett Richards,Exact name match found in SbaPlayers +4900,Gary Sanchez,5,,no_bbref,"1,2,3,4,5",1746,Gary Sanchez,Exact name match found in SbaPlayers +4193,Gavin Lux,5,,no_bbref,"2,3,4,5",1169,Gavin Lux,Exact name match found in SbaPlayers +4752,Genesis Cabrera,5,,no_bbref,"4,5",301,Genesis Cabrera,Exact name match found in SbaPlayers +4901,Geoff Hartlieb,5,,no_bbref,"2,3,4,5",833,Geoff Hartlieb,Exact name match found in SbaPlayers +4198,George Springer,5,,no_bbref,"1,2,3,4,5",1888,George Springer,Exact name match found in SbaPlayers +1338,Gerardo Parra,3,,no_bbref,"1,2,3",1501,Gerardo Parra,Exact name match found in SbaPlayers +1339,Gerardo Reyes,3,,no_bbref,"2,3",1636,Gerardo Reyes,Exact name match found in SbaPlayers +4360,German Marquez,5,,no_bbref,"1,2,3,4,5",1204,German Marquez,Exact name match found in SbaPlayers +4215,Gerrit Cole,5,,no_bbref,"1,2,3,4,5",398,Gerrit Cole,Exact name match found in SbaPlayers +4452,Giancarlo Stanton,5,,no_bbref,"1,2,3,4,5",1893,Giancarlo Stanton,Exact name match found in SbaPlayers +4902,Gio Gonzalez,5,,no_bbref,"1,2,3,4,5",739,Gio Gonzalez,Exact name match found in SbaPlayers +4150,Gio Urshela,5,,no_bbref,"2,3,4,5",2042,Gio Urshela,Exact name match found in SbaPlayers +4903,Giovanny Gallegos,5,,no_bbref,"2,3,4,5",672,Giovanny Gallegos,Exact name match found in SbaPlayers +1346,Glenn Sparkman,3,,no_bbref,"2,3",1884,Glenn Sparkman,Exact name match found in SbaPlayers +4904,Gleyber Torres,5,,no_bbref,"1,2,3,4,5",2003,Gleyber Torres,Exact name match found in SbaPlayers +1348,Gordon Beckham,3,,no_bbref,"2,3",160,Gordon Beckham,Exact name match found in SbaPlayers +2552,Gorkys Hernandez,1,,no_bbref,1,869,Gorkys Hernandez,Exact name match found in SbaPlayers +4366,Grant Dayton,5,,no_bbref,"4,5",475,Grant Dayton,Exact name match found in SbaPlayers +4905,Grayson Greiner,5,,no_bbref,"2,3,4,5",773,Grayson Greiner,Exact name match found in SbaPlayers +4601,Greg Allen,5,,no_bbref,"1,2,3,4,5",44,Greg Allen,Exact name match found in SbaPlayers +2554,Greg Bird,1,,no_bbref,1,197,Greg Bird,Exact name match found in SbaPlayers +4906,Greg Garcia,5,,no_bbref,"1,2,3,4,5",681,Greg Garcia,Exact name match found in SbaPlayers +4446,Greg Holland,5,,no_bbref,"1,2,3,4,5",915,Greg Holland,Exact name match found in SbaPlayers +2557,Gregor Blanco,1,,no_bbref,1,207,Gregor Blanco,Exact name match found in SbaPlayers +4907,Gregory Polanco,5,,no_bbref,"1,2,3,4,5",1569,Gregory Polanco,Exact name match found in SbaPlayers +4708,Gregory Soto,5,,no_bbref,"2,3,4,5",1878,Gregory Soto,Exact name match found in SbaPlayers +4396,Griffin Canning,5,,no_bbref,"2,3,4,5",317,Griffin Canning,Exact name match found in SbaPlayers +4176,Guillermo Heredia,5,,no_bbref,"1,2,3,4,5",862,Guillermo Heredia,Exact name match found in SbaPlayers +4908,Hansel Robles,5,,no_bbref,"1,2,3,4,5",1665,Hansel Robles,Exact name match found in SbaPlayers +4609,Hanser Alberto,5,,no_bbref,"2,3,4,5",30,Hanser Alberto,Exact name match found in SbaPlayers +4438,Harold Castro,5,,no_bbref,"2,3,4,5",349,Harold Castro,Exact name match found in SbaPlayers +1360,Harold Ramirez,3,,no_bbref,"2,3",1609,Harold Ramirez,Exact name match found in SbaPlayers +4274,Harrison Bader,5,,no_bbref,"1,2,3,4,5",110,Harrison Bader,Exact name match found in SbaPlayers +2562,Harrison Musgrave,1,,no_bbref,1,1393,Harrison Musgrave,Exact name match found in SbaPlayers +2563,Heath Fillmyer,1,,no_bbref,1,616,Heath Fillmyer,Exact name match found in SbaPlayers +4909,Heath Hembree,5,,no_bbref,"1,2,3,4,5",854,Heath Hembree,Exact name match found in SbaPlayers +4910,Hector Neris,5,,no_bbref,"1,2,3,4,5",1413,Hector Neris,Exact name match found in SbaPlayers +1364,Hector Noesi,3,,no_bbref,"2,3",1429,Hector Noesi,Exact name match found in SbaPlayers +4911,Hector Rondon,5,,no_bbref,"1,2,3,4,5",1706,Hector Rondon,Exact name match found in SbaPlayers +1366,Hector Santiago,3,,no_bbref,"1,2,3",1765,Hector Santiago,Exact name match found in SbaPlayers +1367,Hector Velazquez,3,,no_bbref,"1,2,3",2066,Hector Velazquez,Exact name match found in SbaPlayers +1368,Hernan Perez,3,,no_bbref,"1,2,3",1536,Hernan Perez,Exact name match found in SbaPlayers +4912,Hoby Milner,5,,no_bbref,"4,5",1332,Hoby Milner,Exact name match found in SbaPlayers +4379,Homer Bailey,5,,no_bbref,"1,2,3,4,5",114,Homer Bailey,Exact name match found in SbaPlayers +4913,Howie Kendrick,5,,no_bbref,"1,2,3,4,5",1028,Howie Kendrick,Exact name match found in SbaPlayers +4723,Huascar Ynoa,5,,no_bbref,"4,5",2215,Huascar Ynoa,Exact name match found in SbaPlayers +1371,Humberto Arteaga,3,,no_bbref,"2,3",97,Humberto Arteaga,Exact name match found in SbaPlayers +4914,Humberto Castellanos,5,,no_bbref,"4,5",339,Humberto Castellanos,Exact name match found in SbaPlayers +4915,Humberto Mejia,5,,no_bbref,"4,5",1297,Humberto Mejia,Exact name match found in SbaPlayers +4699,Hunter Dozier,5,,no_bbref,"1,2,3,4,5",533,Hunter Dozier,Exact name match found in SbaPlayers +4916,Hunter Harvey,5,,no_bbref,"4,5",836,Hunter Harvey,Exact name match found in SbaPlayers +4917,Hunter Pence,5,,no_bbref,"1,2,3,4,5",1520,Hunter Pence,Exact name match found in SbaPlayers +4918,Hunter Renfroe,5,,no_bbref,"1,2,3,4,5",1631,Hunter Renfroe,Exact name match found in SbaPlayers +2575,Hunter Strickland,1,,no_bbref,1,1925,Hunter Strickland,Exact name match found in SbaPlayers +1375,Hunter Wood,3,,no_bbref,"1,2,3",2192,Hunter Wood,Exact name match found in SbaPlayers +4137,Hyun Jin Ryu,5,,no_bbref,"1,2,3,4,5",1733,Hyun Jin Ryu,Exact name match found in SbaPlayers +4147,Ian Anderson,5,,no_bbref,"4,5",74,Ian Anderson,Exact name match found in SbaPlayers +1377,Ian Desmond,3,,no_bbref,"1,2,3",495,Ian Desmond,Exact name match found in SbaPlayers +4919,Ian Gibaut,5,,no_bbref,"4,5",714,Ian Gibaut,Exact name match found in SbaPlayers +4406,Ian Happ,5,,no_bbref,"1,2,3,4,5",820,Ian Happ,Exact name match found in SbaPlayers +4920,Ian Kennedy,5,,no_bbref,"1,2,3,4,5",1029,Ian Kennedy,Exact name match found in SbaPlayers +1380,Ian Kinsler,3,,no_bbref,"1,2,3",1051,Ian Kinsler,Exact name match found in SbaPlayers +4921,Ildemaro Vargas,5,,no_bbref,"2,3,4,5",2054,Ildemaro Vargas,Exact name match found in SbaPlayers +4922,Isaac Paredes,5,,no_bbref,"4,5",1497,Isaac Paredes,Exact name match found in SbaPlayers +4923,Isan Diaz,5,,no_bbref,"2,3,4,5",508,Isan Diaz,Exact name match found in SbaPlayers +4238,Isiah Kiner Falefa,5,,no_bbref,"1,2,3,4,5",1044,Isiah Kiner Falefa,Exact name match found in SbaPlayers +4924,Ivan Nova,5,,no_bbref,"1,2,3,4,5",1441,Ivan Nova,Exact name match found in SbaPlayers +4291,JA Happ,5,,no_bbref,"1,2,3,4,5",821,JA Happ,Exact name match found in SbaPlayers +2625,JB Shuck,1,,no_bbref,1,1820,JB Shuck,Exact name match found in SbaPlayers +4332,JB Wendelken,5,,no_bbref,"2,3,4,5",2134,JB Wendelken,Exact name match found in SbaPlayers +4772,JD Davis,5,,no_bbref,"2,3,4,5",474,JD Davis,Exact name match found in SbaPlayers +4942,JD Martinez,5,,no_bbref,"1,2,3,4,5",1229,JD Martinez,Exact name match found in SbaPlayers +4343,JP Crawford,5,,no_bbref,"2,3,4,5",432,JP Crawford,Exact name match found in SbaPlayers +4990,JP Feyereisen,5,,no_bbref,"4,5",612,JP Feyereisen,Exact name match found in SbaPlayers +4991,JT Brubaker,5,,no_bbref,"4,5",269,JT Brubaker,Exact name match found in SbaPlayers +4320,JT Realmuto,5,,no_bbref,"1,2,3,4,5",1622,JT Realmuto,Exact name match found in SbaPlayers +4992,JT Riddle,5,,no_bbref,"1,2,3,4,5",1648,JT Riddle,Exact name match found in SbaPlayers +4439,JaCoby Jones,5,,no_bbref,"1,2,3,4,5",991,JaCoby Jones,Exact name match found in SbaPlayers +4743,Jace Fry,5,,no_bbref,"1,2,3,4,5",661,Jace Fry,Exact name match found in SbaPlayers +4590,Jace Peterson,5,,no_bbref,"1,2,3,4,5",1547,Jace Peterson,Exact name match found in SbaPlayers +4925,Jack Flaherty,5,,no_bbref,"1,2,3,4,5",622,Jack Flaherty,Exact name match found in SbaPlayers +4926,Jack Mayfield,5,,no_bbref,"2,3,4,5",1252,Jack Mayfield,Exact name match found in SbaPlayers +4206,Jackie Bradley Jr,5,,no_bbref,"1,2,3,4,5",239,Jackie Bradley Jr,Exact name match found in SbaPlayers +2591,Jackson Stephens,1,,no_bbref,1,1903,Jackson Stephens,Exact name match found in SbaPlayers +4927,Jacob Barnes,5,,no_bbref,"1,2,3,4,5",133,Jacob Barnes,Exact name match found in SbaPlayers +2594,Jacob Nix,1,,no_bbref,1,1426,Jacob Nix,Exact name match found in SbaPlayers +4222,Jacob Nottingham,5,,no_bbref,"4,5",1440,Jacob Nottingham,Exact name match found in SbaPlayers +2595,Jacob Rhame,1,,no_bbref,1,1642,Jacob Rhame,Exact name match found in SbaPlayers +4292,Jacob Stallings,5,,no_bbref,"2,3,4,5",1890,Jacob Stallings,Exact name match found in SbaPlayers +4928,Jacob Waguespack,5,,no_bbref,"2,3,4,5",2098,Jacob Waguespack,Exact name match found in SbaPlayers +4463,Jacob Webb,5,,no_bbref,"2,3,4,5",2126,Jacob Webb,Exact name match found in SbaPlayers +4152,Jacob deGrom,5,,no_bbref,"1,2,3,4,5",484,Jacob deGrom,Exact name match found in SbaPlayers +4319,Jaime Barria,5,,no_bbref,"1,2,3,4,5",141,Jaime Barria,Exact name match found in SbaPlayers +4929,Jairo Diaz,5,,no_bbref,"2,3,4,5",501,Jairo Diaz,Exact name match found in SbaPlayers +4420,Jake Arrieta,5,,no_bbref,"1,2,3,4,5",94,Jake Arrieta,Exact name match found in SbaPlayers +1405,Jake Bauers,3,,no_bbref,"1,2,3",151,Jake Bauers,Exact name match found in SbaPlayers +4593,Jake Cave,5,,no_bbref,"1,2,3,4,5",354,Jake Cave,Exact name match found in SbaPlayers +4262,Jake Cronenworth,5,,no_bbref,"4,5",442,Jake Cronenworth,Exact name match found in SbaPlayers +4173,Jake Diekman,5,,no_bbref,"2,3,4,5",514,Jake Diekman,Exact name match found in SbaPlayers +2601,Jake Faria,1,,no_bbref,1,596,Jake Faria,Exact name match found in SbaPlayers +4930,Jake Fraley,5,,no_bbref,"4,5",641,Jake Fraley,Exact name match found in SbaPlayers +1408,Jake Jewell,3,,no_bbref,"2,3",978,Jake Jewell,Exact name match found in SbaPlayers +4931,Jake Lamb,5,,no_bbref,"1,2,3,4,5",1087,Jake Lamb,Exact name match found in SbaPlayers +4415,Jake Marisnick,5,,no_bbref,"1,2,3,4,5",1200,Jake Marisnick,Exact name match found in SbaPlayers +4585,Jake McGee,5,,no_bbref,"1,2,3,4,5",1274,Jake McGee,Exact name match found in SbaPlayers +4932,Jake Newberry,5,,no_bbref,"2,3,4,5",1418,Jake Newberry,Exact name match found in SbaPlayers +4933,Jake Noll,5,,no_bbref,"4,5",1435,Jake Noll,Exact name match found in SbaPlayers +4934,Jake Odorizzi,5,,no_bbref,"1,2,3,4,5",1452,Jake Odorizzi,Exact name match found in SbaPlayers +2606,Jake Petricka,1,,no_bbref,1,1550,Jake Petricka,Exact name match found in SbaPlayers +1414,Jake Rogers,3,,no_bbref,"2,3",1692,Jake Rogers,Exact name match found in SbaPlayers +4935,Jake Woodford,5,,no_bbref,"4,5",2195,Jake Woodford,Exact name match found in SbaPlayers +4936,Jakob Junis,5,,no_bbref,"1,2,3,4,5",1004,Jakob Junis,Exact name match found in SbaPlayers +4630,Jalen Beeks,5,,no_bbref,"1,2,3,4,5",165,Jalen Beeks,Exact name match found in SbaPlayers +4216,James Hoyt,5,,no_bbref,"4,5",931,James Hoyt,Exact name match found in SbaPlayers +4549,James Karinchak,5,,no_bbref,"4,5",1009,James Karinchak,Exact name match found in SbaPlayers +4161,James McCann,5,,no_bbref,"1,2,3,4,5",1261,James McCann,Exact name match found in SbaPlayers +4937,James Paxton,5,,no_bbref,"1,2,3,4,5",1506,James Paxton,Exact name match found in SbaPlayers +2611,James Pazos,1,,no_bbref,1,1509,James Pazos,Exact name match found in SbaPlayers +2612,James Shields,1,,no_bbref,1,1816,James Shields,Exact name match found in SbaPlayers +1419,Jameson Taillon,3,,no_bbref,"1,2,3",1954,Jameson Taillon,Exact name match found in SbaPlayers +1420,Jandel Gustave,3,,no_bbref,"2,3",795,Jandel Gustave,Exact name match found in SbaPlayers +4938,Jared Hughes,5,,no_bbref,"1,2,3,4,5",937,Jared Hughes,Exact name match found in SbaPlayers +4939,Jared Oliva,5,,no_bbref,"4,5",1457,Jared Oliva,Exact name match found in SbaPlayers +4367,Jared Walsh,5,,no_bbref,"2,3,4,5",2111,Jared Walsh,Exact name match found in SbaPlayers +4490,Jarlin Garcia,5,,no_bbref,"1,2,3,4,5",684,Jarlin Garcia,Exact name match found in SbaPlayers +4940,Jarrod Dyson,5,,no_bbref,"1,2,3,4,5",555,Jarrod Dyson,Exact name match found in SbaPlayers +4718,Jason Adam,5,,no_bbref,"1,4,5",13,Jason Adam,Exact name match found in SbaPlayers +4941,Jason Castro,5,,no_bbref,"2,3,4,5",347,Jason Castro,Exact name match found in SbaPlayers +2618,Jason Hammel,1,,no_bbref,1,813,Jason Hammel,Exact name match found in SbaPlayers +4265,Jason Heyward,5,,no_bbref,"1,2,3,4,5",891,Jason Heyward,Exact name match found in SbaPlayers +4455,Jason Kipnis,5,,no_bbref,"1,2,3,4,5",1053,Jason Kipnis,Exact name match found in SbaPlayers +1428,Jason Vargas,3,,no_bbref,"1,2,3",2053,Jason Vargas,Exact name match found in SbaPlayers +4545,Javier Baez,5,,no_bbref,"1,2,3,4,5",112,Javier Baez,Exact name match found in SbaPlayers +3810,Javy A Guerra,4,,no_bbref,4,PARTIAL:784,Javy Guerra,Partial name match - REVIEW NEEDED +4588,Javy Guerra,5,,no_bbref,"1,2,3,4,5",784,Javy Guerra,Exact name match found in SbaPlayers +4672,Jay Bruce,5,,no_bbref,"1,2,3,4,5",270,Jay Bruce,Exact name match found in SbaPlayers +1432,Jay Jackson,3,,no_bbref,"2,3",959,Jay Jackson,Exact name match found in SbaPlayers +4700,Jazz Chisholm,5,,no_bbref,"4,5",375,Jazz Chisholm,Exact name match found in SbaPlayers +4370,Jean Segura,5,,no_bbref,"1,2,3,4,5",1796,Jean Segura,Exact name match found in SbaPlayers +2627,Jeanmar Gomez,1,,no_bbref,1,733,Jeanmar Gomez,Exact name match found in SbaPlayers +2628,Jed Lowrie,1,,no_bbref,1,1158,Jed Lowrie,Exact name match found in SbaPlayers +4414,Jedd Gyorko,5,,no_bbref,"1,2,3,4,5",800,Jedd Gyorko,Exact name match found in SbaPlayers +1435,Jeff Brigham,3,,no_bbref,"2,3",257,Jeff Brigham,Exact name match found in SbaPlayers +4943,Jeff Hoffman,5,,no_bbref,"2,3,4,5",910,Jeff Hoffman,Exact name match found in SbaPlayers +4312,Jeff Mathis,5,,no_bbref,"1,2,3,4,5",1235,Jeff Mathis,Exact name match found in SbaPlayers +4321,Jeff McNeil,5,,no_bbref,"1,2,3,4,5",1287,Jeff McNeil,Exact name match found in SbaPlayers +4944,Jeff Samardzija,5,,no_bbref,"2,3,4,5",1740,Jeff Samardzija,Exact name match found in SbaPlayers +4945,Jeffrey Springs,5,,no_bbref,"1,2,3,4,5",1889,Jeffrey Springs,Exact name match found in SbaPlayers +2633,Jefry Marte,1,,no_bbref,1,1209,Jefry Marte,Exact name match found in SbaPlayers +1441,Jefry Rodriguez,3,,no_bbref,"1,2,3",1677,Jefry Rodriguez,Exact name match found in SbaPlayers +4226,Jeimer Candelario,5,,no_bbref,"1,2,3,4,5",315,Jeimer Candelario,Exact name match found in SbaPlayers +1443,Jerad Eickhoff,3,,no_bbref,"2,3",563,Jerad Eickhoff,Exact name match found in SbaPlayers +1444,Jeremy Hellickson,3,,no_bbref,"1,2,3",852,Jeremy Hellickson,Exact name match found in SbaPlayers +4240,Jeremy Jeffress,5,,no_bbref,"1,2,3,4,5",976,Jeremy Jeffress,Exact name match found in SbaPlayers +1446,Jerry Blevins,3,,no_bbref,"1,2,3",213,Jerry Blevins,Exact name match found in SbaPlayers +1447,Jesse Biddle,3,,no_bbref,"1,2,3",192,Jesse Biddle,Exact name match found in SbaPlayers +4946,Jesse Chavez,5,,no_bbref,"1,2,3,4,5",370,Jesse Chavez,Exact name match found in SbaPlayers +4235,Jesse Hahn,5,,no_bbref,"4,5",804,Jesse Hahn,Exact name match found in SbaPlayers +4325,Jesse Winker,5,,no_bbref,"1,2,3,4,5",2177,Jesse Winker,Exact name match found in SbaPlayers +4595,Jesus Aguilar,5,,no_bbref,"1,2,3,4,5",25,Jesus Aguilar,Exact name match found in SbaPlayers +4550,Jesus Luzardo,5,,no_bbref,"2,3,4,5",1170,Jesus Luzardo,Exact name match found in SbaPlayers +4947,Jesus Sanchez,5,,no_bbref,"4,5",1749,Jesus Sanchez,Exact name match found in SbaPlayers +1452,Jesus Sucre,3,,no_bbref,"1,2,3",1939,Jesus Sucre,Exact name match found in SbaPlayers +4229,Jesus Tinoco,5,,no_bbref,"2,3,4,5",1992,Jesus Tinoco,Exact name match found in SbaPlayers +4596,Jeurys Familia,5,,no_bbref,"1,2,3,4,5",595,Jeurys Familia,Exact name match found in SbaPlayers +1455,Jhoulys Chacin,3,,no_bbref,"1,2,3",362,Jhoulys Chacin,Exact name match found in SbaPlayers +4623,Ji Man Choi,5,,no_bbref,"1,2,3,4,5",377,Ji Man Choi,Exact name match found in SbaPlayers +2647,Jim Adduci,1,,no_bbref,1,19,Jim Adduci,Exact name match found in SbaPlayers +2648,Jim Johnson,1,,no_bbref,1,984,Jim Johnson,Exact name match found in SbaPlayers +4948,Jimmy Cordero,5,,no_bbref,"2,3,4,5",419,Jimmy Cordero,Exact name match found in SbaPlayers +4566,Jimmy Herget,5,,no_bbref,"4,5",863,Jimmy Herget,Exact name match found in SbaPlayers +1458,Jimmy Yacabonis,3,,no_bbref,"1,2,3",2203,Jimmy Yacabonis,Exact name match found in SbaPlayers +4949,Jo Adell,5,,no_bbref,"4,5",20,Jo Adell,Exact name match found in SbaPlayers +4959,JoJo Romero,5,,no_bbref,"4,5",1702,JoJo Romero,Exact name match found in SbaPlayers +4604,Joakim Soria,5,,no_bbref,"2,3,4,5",1872,Joakim Soria,Exact name match found in SbaPlayers +4950,Joc Pederson,5,,no_bbref,"1,2,3,4,5",1514,Joc Pederson,Exact name match found in SbaPlayers +1461,Joe Biagini,3,,no_bbref,"1,2,3",188,Joe Biagini,Exact name match found in SbaPlayers +4951,Joe Hudson,5,,no_bbref,"4,5",932,Joe Hudson,Exact name match found in SbaPlayers +4952,Joe Jimenez,5,,no_bbref,"1,2,3,4,5",979,Joe Jimenez,Exact name match found in SbaPlayers +4577,Joe Kelly,5,,no_bbref,"1,2,3,4,5",1021,Joe Kelly,Exact name match found in SbaPlayers +2654,Joe Mauer,1,,no_bbref,1,1245,Joe Mauer,Exact name match found in SbaPlayers +4533,Joe Musgrove,5,,no_bbref,"1,2,3,4,5",1394,Joe Musgrove,Exact name match found in SbaPlayers +4953,Joe Panik,5,,no_bbref,"1,2,3,4,5",1493,Joe Panik,Exact name match found in SbaPlayers +1466,Joe Ross,3,,no_bbref,"2,3",1715,Joe Ross,Exact name match found in SbaPlayers +1467,Joe Smith,3,,no_bbref,"1,2,3",1842,Joe Smith,Exact name match found in SbaPlayers +4340,Joely Rodriguez,5,,no_bbref,"4,5",1673,Joely Rodriguez,Exact name match found in SbaPlayers +4625,Joey Bart,5,,no_bbref,"4,5",142,Joey Bart,Exact name match found in SbaPlayers +4392,Joey Gallo,5,,no_bbref,"1,2,3,4,5",674,Joey Gallo,Exact name match found in SbaPlayers +4954,Joey Gerber,5,,no_bbref,"4,5",712,Joey Gerber,Exact name match found in SbaPlayers +1469,Joey Lucchesi,3,,no_bbref,"1,2,3",1160,Joey Lucchesi,Exact name match found in SbaPlayers +1470,Joey Rickard,3,,no_bbref,"1,2,3",1647,Joey Rickard,Exact name match found in SbaPlayers +4770,Joey Votto,5,,no_bbref,"1,2,3,4,5",2092,Joey Votto,Exact name match found in SbaPlayers +4297,Joey Wendle,5,,no_bbref,"1,2,3,4,5",2135,Joey Wendle,Exact name match found in SbaPlayers +4646,Johan Camargo,5,,no_bbref,"1,2,3,4,5",309,Johan Camargo,Exact name match found in SbaPlayers +4955,Johan Oviedo,5,,no_bbref,"4,5",1479,Johan Oviedo,Exact name match found in SbaPlayers +1474,John Brebbia,3,,no_bbref,"1,2,3",247,John Brebbia,Exact name match found in SbaPlayers +4447,John Curtiss,5,,no_bbref,"4,5",455,John Curtiss,Exact name match found in SbaPlayers +4652,John Gant,5,,no_bbref,"1,2,3,4,5",677,John Gant,Exact name match found in SbaPlayers +1476,John Hicks,3,,no_bbref,"1,2,3",893,John Hicks,Exact name match found in SbaPlayers +4956,John King,5,,no_bbref,"4,5",1045,John King,Exact name match found in SbaPlayers +4364,John Means,5,,no_bbref,"2,3,4,5",2,John Means,Exact name match found in SbaPlayers +4957,John Ryan Murphy,5,,no_bbref,"1,2,3,4,5",1392,John Ryan Murphy,Exact name match found in SbaPlayers +4958,John Schreiber,5,,no_bbref,"4,5",1780,John Schreiber,Exact name match found in SbaPlayers +4769,Johnny Cueto,5,,no_bbref,"4,5",451,Johnny Cueto,Exact name match found in SbaPlayers +2668,Johnny Field,1,,no_bbref,1,613,Johnny Field,Exact name match found in SbaPlayers +4411,Jon Berti,5,,no_bbref,"2,3,4,5",183,Jon Berti,Exact name match found in SbaPlayers +1480,Jon Duplantier,3,,no_bbref,"2,3",549,Jon Duplantier,Exact name match found in SbaPlayers +4960,Jon Gray,5,,no_bbref,"1,2,3,4,5",766,Jon Gray,Exact name match found in SbaPlayers +4961,Jon Jay,5,,no_bbref,"1,2,3,4,5",973,Jon Jay,Exact name match found in SbaPlayers +4962,Jon Lester,5,,no_bbref,"1,2,3,4,5",1117,Jon Lester,Exact name match found in SbaPlayers +4640,Jonah Heim,5,,no_bbref,"4,5",849,Jonah Heim,Exact name match found in SbaPlayers +4963,Jonathan Arauz,5,,no_bbref,"4,5",84,Jonathan Arauz,Exact name match found in SbaPlayers +4158,Jonathan Davis,5,,no_bbref,"2,3,4,5",470,Jonathan Davis,Exact name match found in SbaPlayers +4513,Jonathan Hernandez,5,,no_bbref,"4,5",876,Jonathan Hernandez,Exact name match found in SbaPlayers +4724,Jonathan Holder,5,,no_bbref,"1,2,3,4,5",912,Jonathan Holder,Exact name match found in SbaPlayers +4433,Jonathan Loaisiga,5,,no_bbref,"2,3,4,5",1132,Jonathan Loaisiga,Exact name match found in SbaPlayers +1487,Jonathan Lucroy,3,,no_bbref,"1,2,3",1163,Jonathan Lucroy,Exact name match found in SbaPlayers +4348,Jonathan Schoop,5,,no_bbref,"1,2,3,4,5",1779,Jonathan Schoop,Exact name match found in SbaPlayers +4964,Jonathan Villar,5,,no_bbref,"1,2,3,4,5",2079,Jonathan Villar,Exact name match found in SbaPlayers +1490,Jordan Hicks,3,,no_bbref,"1,2,3",894,Jordan Hicks,Exact name match found in SbaPlayers +4965,Jordan Luplow,5,,no_bbref,"2,3,4,5",1168,Jordan Luplow,Exact name match found in SbaPlayers +4966,Jordan Lyles,5,,no_bbref,"2,3,4,5",1171,Jordan Lyles,Exact name match found in SbaPlayers +4756,Jordan Montgomery,5,,no_bbref,"4,5",1356,Jordan Montgomery,Exact name match found in SbaPlayers +4144,Jordan Romano,5,,no_bbref,"4,5",1699,Jordan Romano,Exact name match found in SbaPlayers +4558,Jordan Weems,5,,no_bbref,"4,5",2129,Jordan Weems,Exact name match found in SbaPlayers +4967,Jordan Yamamoto,5,,no_bbref,"2,3,4,5",2205,Jordan Yamamoto,Exact name match found in SbaPlayers +1494,Jordan Zimmermann,3,,no_bbref,"1,2,3",2230,Jordan Zimmermann,Exact name match found in SbaPlayers +4968,Jordy Mercer,5,,no_bbref,"1,2,3,4,5",1308,Jordy Mercer,Exact name match found in SbaPlayers +4519,Jorge Alcala,5,,no_bbref,"4,5",32,Jorge Alcala,Exact name match found in SbaPlayers +4969,Jorge Alfaro,5,,no_bbref,"1,2,3,4,5",40,Jorge Alfaro,Exact name match found in SbaPlayers +4970,Jorge Bonifacio,5,,no_bbref,"1,4,5",220,Jorge Bonifacio,Exact name match found in SbaPlayers +4971,Jorge Lopez,5,,no_bbref,"2,3,4,5",1144,Jorge Lopez,Exact name match found in SbaPlayers +4972,Jorge Mateo,5,,no_bbref,"4,5",1233,Jorge Mateo,Exact name match found in SbaPlayers +4715,Jorge Polanco,5,,no_bbref,"1,2,3,4,5",1570,Jorge Polanco,Exact name match found in SbaPlayers +4687,Jorge Soler,5,,no_bbref,"1,2,3,4,5",1870,Jorge Soler,Exact name match found in SbaPlayers +4155,Jose Abreu,5,,no_bbref,"1,2,3,4,5",7,Jose Abreu,Exact name match found in SbaPlayers +4973,Jose Altuve,5,,no_bbref,"1,2,3,4,5",56,Jose Altuve,Exact name match found in SbaPlayers +4974,Jose Alvarado,5,,no_bbref,"1,2,3,4,5",58,Jose Alvarado,Exact name match found in SbaPlayers +4266,Jose Alvarez,5,,no_bbref,"1,2,3,4,5",59,Jose Alvarez,Exact name match found in SbaPlayers +2687,Jose Bautista,1,,no_bbref,1,153,Jose Bautista,Exact name match found in SbaPlayers +4569,Jose Berrios,5,,no_bbref,"1,2,3,4,5",182,Jose Berrios,Exact name match found in SbaPlayers +2689,Jose Briceno,1,,no_bbref,1,254,Jose Briceno,Exact name match found in SbaPlayers +2690,Jose Castillo,1,,no_bbref,1,342,Jose Castillo,Exact name match found in SbaPlayers +4530,Jose Cisnero,5,,no_bbref,"2,3,4,5",382,Jose Cisnero,Exact name match found in SbaPlayers +4975,Jose Garcia,5,,no_bbref,"4,5",,,No bbref_id available +4244,Jose Iglesias,5,,no_bbref,"1,2,3,4,5",949,Jose Iglesias,Exact name match found in SbaPlayers +1507,Jose Leclerc,3,,no_bbref,"1,2,3",1106,Jose Leclerc,Exact name match found in SbaPlayers +4976,Jose Marmolejos,5,,no_bbref,"4,5",1203,Jose Marmolejos,Exact name match found in SbaPlayers +4977,Jose Martinez,5,,no_bbref,"1,2,3,4,5",1222,Jose Martinez,Exact name match found in SbaPlayers +4978,Jose Osuna,5,,no_bbref,"1,2,3,4,5",1471,Jose Osuna,Exact name match found in SbaPlayers +4979,Jose Peraza,5,,no_bbref,"1,2,3,4,5",1527,Jose Peraza,Exact name match found in SbaPlayers +2696,Jose Pirela,1,,no_bbref,1,1562,Jose Pirela,Exact name match found in SbaPlayers +1511,Jose Quijada,3,,no_bbref,"2,3",1594,Jose Quijada,Exact name match found in SbaPlayers +4980,Jose Quintana,5,,no_bbref,"1,2,3,4,5",1596,Jose Quintana,Exact name match found in SbaPlayers +4217,Jose Ramirez,5,,no_bbref,"1,2,3,4,5",1608,Jose Ramirez,Exact name match found in SbaPlayers +2699,Jose Reyes,1,,no_bbref,1,1633,Jose Reyes,Exact name match found in SbaPlayers +1514,Jose Rondon,3,,no_bbref,"2,3",1707,Jose Rondon,Exact name match found in SbaPlayers +1515,Jose Ruiz,3,,no_bbref,"2,3",1724,Jose Ruiz,Exact name match found in SbaPlayers +1516,Jose Suarez,3,,no_bbref,"2,3",1937,Jose Suarez,Exact name match found in SbaPlayers +4555,Jose Trevino,5,,no_bbref,"2,3,4,5",2013,Jose Trevino,Exact name match found in SbaPlayers +4655,Jose Urena,5,,no_bbref,"1,2,3,4,5",2035,Jose Urena,Exact name match found in SbaPlayers +4246,Jose Urquidy,5,,no_bbref,"2,3,4,5",2041,Jose Urquidy,Exact name match found in SbaPlayers +4981,Joseph Odom,5,,no_bbref,"4,5",1450,Joseph Odom,Exact name match found in SbaPlayers +4982,Josh Bell,5,,no_bbref,"1,2,3,4,5",168,Josh Bell,Exact name match found in SbaPlayers +4472,Josh Donaldson,5,,no_bbref,"2,3,4,5",526,Josh Donaldson,Exact name match found in SbaPlayers +2702,Josh Fields,1,,no_bbref,1,614,Josh Fields,Exact name match found in SbaPlayers +4237,Josh Fleming,5,,no_bbref,"4,5",623,Josh Fleming,Exact name match found in SbaPlayers +4184,Josh Fuentes,5,,no_bbref,"4,5",,,No bbref_id available +4565,Josh Hader,5,,no_bbref,"1,2,3,4,5",802,Josh Hader,Exact name match found in SbaPlayers +4508,Josh Harrison,5,,no_bbref,"1,2,3,4,5",829,Josh Harrison,Exact name match found in SbaPlayers +4983,Josh James,5,,no_bbref,"2,3,4,5",965,Josh James,Exact name match found in SbaPlayers +4726,Josh Lindblom,5,,no_bbref,"4,5",1123,Josh Lindblom,Exact name match found in SbaPlayers +4984,Josh Naylor,5,,no_bbref,"2,3,4,5",1404,Josh Naylor,Exact name match found in SbaPlayers +4985,Josh Osich,5,,no_bbref,"2,3,4,5",1469,Josh Osich,Exact name match found in SbaPlayers +4986,Josh Phegley,5,,no_bbref,"1,2,3,4,5",1553,Josh Phegley,Exact name match found in SbaPlayers +4987,Josh Reddick,5,,no_bbref,"1,2,3,4,5",1623,Josh Reddick,Exact name match found in SbaPlayers +4988,Josh Rojas,5,,no_bbref,"2,3,4,5",1695,Josh Rojas,Exact name match found in SbaPlayers +3862,Josh Smith,4,,no_bbref,"2,3,4",1852,Josh Smith,Exact name match found in SbaPlayers +4486,Josh Staumont,5,,no_bbref,"4,5",1897,Josh Staumont,Exact name match found in SbaPlayers +4989,Josh Taylor,5,,no_bbref,"2,3,4,5",1967,Josh Taylor,Exact name match found in SbaPlayers +4591,Josh Tomlin,5,,no_bbref,"1,2,3,4,5",1996,Josh Tomlin,Exact name match found in SbaPlayers +4719,Josh VanMeter,5,,no_bbref,"2,3,4,5",2052,Josh VanMeter,Exact name match found in SbaPlayers +1535,Juan Lagares,3,,no_bbref,"2,3",1083,Juan Lagares,Exact name match found in SbaPlayers +1536,Juan Minaya,3,,no_bbref,"1,2,3",1334,Juan Minaya,Exact name match found in SbaPlayers +1537,Juan Nicasio,3,,no_bbref,"1,2,3",1422,Juan Nicasio,Exact name match found in SbaPlayers +4160,Juan Soto,5,,no_bbref,"1,2,3,4,5",1879,Juan Soto,Exact name match found in SbaPlayers +4540,Julian Merryweather,5,,no_bbref,"4,5",1311,Julian Merryweather,Exact name match found in SbaPlayers +4993,Julio Teheran,5,,no_bbref,"1,2,3,4,5",1970,Julio Teheran,Exact name match found in SbaPlayers +4421,Julio Urias,5,,no_bbref,"2,3,4,5",2038,Julio Urias,Exact name match found in SbaPlayers +1541,Jung Ho Kang,3,,no_bbref,"2,3",1007,Jung Ho Kang,Exact name match found in SbaPlayers +4511,Junior Guerra,5,,no_bbref,"1,2,3,4,5",785,Junior Guerra,Exact name match found in SbaPlayers +4337,Jurickson Profar,5,,no_bbref,"1,2,3,4,5",1587,Jurickson Profar,Exact name match found in SbaPlayers +1544,Justin Anderson,3,,no_bbref,"1,2,3",70,Justin Anderson,Exact name match found in SbaPlayers +1545,Justin Bour,3,,no_bbref,"1,2,3",226,Justin Bour,Exact name match found in SbaPlayers +4662,Justin Dunn,5,,no_bbref,"4,5",546,Justin Dunn,Exact name match found in SbaPlayers +2717,Justin Miller,1,,no_bbref,1,1321,Justin Miller,Exact name match found in SbaPlayers +1546,Justin Shafer,3,,no_bbref,"2,3",1807,Justin Shafer,Exact name match found in SbaPlayers +4994,Justin Smoak,5,,no_bbref,"1,2,3,4,5",1857,Justin Smoak,Exact name match found in SbaPlayers +4336,Justin Topa,5,,no_bbref,"4,5",1999,Justin Topa,Exact name match found in SbaPlayers +4248,Justin Turner,5,,no_bbref,"1,2,3,4,5",2029,Justin Turner,Exact name match found in SbaPlayers +4995,Justin Upton,5,,no_bbref,"1,2,3,4,5",2034,Justin Upton,Exact name match found in SbaPlayers +1550,Justin Verlander,3,,no_bbref,"1,2,3",2071,Justin Verlander,Exact name match found in SbaPlayers +4683,Justin Wilson,5,,no_bbref,"1,2,3,4,5",2167,Justin Wilson,Exact name match found in SbaPlayers +4493,Justus Sheffield,5,,no_bbref,"2,3,4,5",1813,Justus Sheffield,Exact name match found in SbaPlayers +2723,Kazuhisa Makita,1,,no_bbref,1,1186,Kazuhisa Makita,Exact name match found in SbaPlayers +4125,KeBryan Hayes,5,,no_bbref,"4,5",838,KeBryan Hayes,Exact name match found in SbaPlayers +4666,Keegan Akin,5,,no_bbref,"4,5",27,Keegan Akin,Exact name match found in SbaPlayers +2724,Kelby Tomlinson,1,,no_bbref,1,1997,Kelby Tomlinson,Exact name match found in SbaPlayers +1553,Kelvin Gutierrez,3,,no_bbref,"2,3",796,Kelvin Gutierrez,Exact name match found in SbaPlayers +1554,Kelvin Herrera,3,,no_bbref,"2,3",881,Kelvin Herrera,Exact name match found in SbaPlayers +1555,Ken Giles,3,,no_bbref,"1,2,3",720,Ken Giles,Exact name match found in SbaPlayers +4996,Kendall Graveman,5,,no_bbref,"4,5",764,Kendall Graveman,Exact name match found in SbaPlayers +1556,Kendrys Morales,3,,no_bbref,"1,2,3",1359,Kendrys Morales,Exact name match found in SbaPlayers +4663,Kenley Jansen,5,,no_bbref,"1,2,3,4,5",968,Kenley Jansen,Exact name match found in SbaPlayers +4326,Kenta Maeda,5,,no_bbref,"1,2,3,4,5",1181,Kenta Maeda,Exact name match found in SbaPlayers +1559,Keon Broxton,3,,no_bbref,"2,3",268,Keon Broxton,Exact name match found in SbaPlayers +1560,Keone Kela,3,,no_bbref,"2,3",1014,Keone Kela,Exact name match found in SbaPlayers +4997,Keston Hiura,5,,no_bbref,"2,3,4,5",905,Keston Hiura,Exact name match found in SbaPlayers +4293,Ketel Marte,5,,no_bbref,"1,2,3,4,5",1210,Ketel Marte,Exact name match found in SbaPlayers +4578,Keury Mella,5,,no_bbref,"4,5",1300,Keury Mella,Exact name match found in SbaPlayers +4279,Kevan Smith,5,,no_bbref,"1,2,3,4,5",1847,Kevan Smith,Exact name match found in SbaPlayers +4998,Kevin Cron,5,,no_bbref,"2,3,4,5",440,Kevin Cron,Exact name match found in SbaPlayers +4341,Kevin Gausman,5,,no_bbref,"1,2,3,4,5",706,Kevin Gausman,Exact name match found in SbaPlayers +4999,Kevin Ginkel,5,,no_bbref,"4,5",722,Kevin Ginkel,Exact name match found in SbaPlayers +4185,Kevin Kiermaier,5,,no_bbref,"1,2,3,4,5",1039,Kevin Kiermaier,Exact name match found in SbaPlayers +1567,Kevin McCarthy,3,,no_bbref,"1,2,3",1264,Kevin McCarthy,Exact name match found in SbaPlayers +5000,Kevin Newman,5,,no_bbref,"1,2,3,4,5",1420,Kevin Newman,Exact name match found in SbaPlayers +4503,Kevin Pillar,5,,no_bbref,"1,2,3,4,5",1557,Kevin Pillar,Exact name match found in SbaPlayers +4351,Kevin Plawecki,5,,no_bbref,"1,2,3,4,5",1565,Kevin Plawecki,Exact name match found in SbaPlayers +5001,Keynan Middleton,5,,no_bbref,"4,5",1316,Keynan Middleton,Exact name match found in SbaPlayers +5002,Khris Davis,5,,no_bbref,"1,2,3,4,5",469,Khris Davis,Exact name match found in SbaPlayers +1572,Kirby Yates,3,,no_bbref,"1,2,3",2211,Kirby Yates,Exact name match found in SbaPlayers +2739,Kohl Stewart,1,,no_bbref,1,1911,Kohl Stewart,Exact name match found in SbaPlayers +5003,Kolby Allard,5,,no_bbref,"2,3,4,5",42,Kolby Allard,Exact name match found in SbaPlayers +4422,Kole Calhoun,5,,no_bbref,"1,2,3,4,5",306,Kole Calhoun,Exact name match found in SbaPlayers +4383,Kolten Wong,5,,no_bbref,"1,2,3,4,5",2188,Kolten Wong,Exact name match found in SbaPlayers +4626,Kris Bryant,5,,no_bbref,"1,2,3,4,5",273,Kris Bryant,Exact name match found in SbaPlayers +4676,Kris Bubic,5,,no_bbref,"4,5",274,Kris Bubic,Exact name match found in SbaPlayers +1577,Kristopher Negron,3,,no_bbref,"2,3",1407,Kristopher Negron,Exact name match found in SbaPlayers +4648,Kurt Suzuki,5,,no_bbref,"1,2,3,4,5",1945,Kurt Suzuki,Exact name match found in SbaPlayers +4316,Kwang Hyun Kim,5,,no_bbref,"4,5",946,Kwang Hyun Kim,Exact name match found in SbaPlayers +1579,Kyle Barraclough,3,,no_bbref,"1,2,3",136,Kyle Barraclough,Exact name match found in SbaPlayers +4190,Kyle Cody,5,,no_bbref,"4,5",395,Kyle Cody,Exact name match found in SbaPlayers +5004,Kyle Crick,5,,no_bbref,"1,2,3,4,5",435,Kyle Crick,Exact name match found in SbaPlayers +4323,Kyle Farmer,5,,no_bbref,"2,3,4,5",598,Kyle Farmer,Exact name match found in SbaPlayers +4384,Kyle Finnegan,5,,no_bbref,"4,5",617,Kyle Finnegan,Exact name match found in SbaPlayers +4200,Kyle Freeland,5,,no_bbref,"1,2,3,4,5",650,Kyle Freeland,Exact name match found in SbaPlayers +5005,Kyle Funkhouser,5,,no_bbref,"4,5",668,Kyle Funkhouser,Exact name match found in SbaPlayers +5006,Kyle Garlick,5,,no_bbref,"4,5",696,Kyle Garlick,Exact name match found in SbaPlayers +5007,Kyle Gibson,5,,no_bbref,"1,2,3,4,5",715,Kyle Gibson,Exact name match found in SbaPlayers +5008,Kyle Hart,5,,no_bbref,"4,5",832,Kyle Hart,Exact name match found in SbaPlayers +4308,Kyle Hendricks,5,,no_bbref,"1,2,3,4,5",856,Kyle Hendricks,Exact name match found in SbaPlayers +4263,Kyle Higashioka,5,,no_bbref,"4,5",895,Kyle Higashioka,Exact name match found in SbaPlayers +4333,Kyle Lewis,5,,no_bbref,"2,3,4,5",1118,Kyle Lewis,Exact name match found in SbaPlayers +4344,Kyle McGowin,5,,no_bbref,"4,5",1276,Kyle McGowin,Exact name match found in SbaPlayers +5009,Kyle Ryan,5,,no_bbref,"2,3,4,5",1730,Kyle Ryan,Exact name match found in SbaPlayers +4771,Kyle Schwarber,5,,no_bbref,"1,2,3,4,5",1784,Kyle Schwarber,Exact name match found in SbaPlayers +4556,Kyle Seager,5,,no_bbref,"1,2,3,4,5",1793,Kyle Seager,Exact name match found in SbaPlayers +4264,Kyle Tucker,5,,no_bbref,"2,3,4,5",2023,Kyle Tucker,Exact name match found in SbaPlayers +4671,Kyle Wright,5,,no_bbref,"4,5",2200,Kyle Wright,Exact name match found in SbaPlayers +4295,Kyle Zimmer,5,,no_bbref,"4,5",2228,Kyle Zimmer,Exact name match found in SbaPlayers +4651,LaMonte Wade Jr,5,,no_bbref,"4,5",2095,LaMonte Wade Jr,Exact name match found in SbaPlayers +4268,Lance Lynn,5,,no_bbref,"1,2,3,4,5",1173,Lance Lynn,Exact name match found in SbaPlayers +4574,Lance McCullers Jr,5,,no_bbref,"1,4,5",1271,Lance McCullers Jr,Exact name match found in SbaPlayers +5010,Lane Thomas,5,,no_bbref,"4,5",1978,Lane Thomas,Exact name match found in SbaPlayers +4205,Leody Taveras,5,,no_bbref,"4,5",1962,Leody Taveras,Exact name match found in SbaPlayers +1591,Leonys Martin,3,,no_bbref,"1,2,3",1215,Leonys Martin,Exact name match found in SbaPlayers +4177,Leury Garcia,5,,no_bbref,"1,2,3,4,5",679,Leury Garcia,Exact name match found in SbaPlayers +5011,Lewin Diaz,5,,no_bbref,"4,5",506,Lewin Diaz,Exact name match found in SbaPlayers +4744,Lewis Brinson,5,,no_bbref,"1,2,3,4,5",258,Lewis Brinson,Exact name match found in SbaPlayers +5012,Lewis Thorpe,5,,no_bbref,"2,3,4,5",1989,Lewis Thorpe,Exact name match found in SbaPlayers +4219,Liam Hendriks,5,,no_bbref,"2,3,4,5",857,Liam Hendriks,Exact name match found in SbaPlayers +4692,Ljay Newsome,5,,no_bbref,"4,5",1421,Ljay Newsome,Exact name match found in SbaPlayers +4637,Logan Allen,5,,no_bbref,"4,5",45,Logan Allen,Exact name match found in SbaPlayers +5013,Logan Forsythe,5,,no_bbref,"1,2,3,4,5",636,Logan Forsythe,Exact name match found in SbaPlayers +5014,Logan Morrison,5,,no_bbref,"1,4,5",1373,Logan Morrison,Exact name match found in SbaPlayers +5015,Logan Webb,5,,no_bbref,"2,3,4,5",2127,Logan Webb,Exact name match found in SbaPlayers +4212,Lorenzo Cain,5,,no_bbref,"1,2,3,4,5",305,Lorenzo Cain,Exact name match found in SbaPlayers +4709,Lou Trivino,5,,no_bbref,"1,2,3,4,5",2016,Lou Trivino,Exact name match found in SbaPlayers +2760,Louis Coleman,1,,no_bbref,1,400,Louis Coleman,Exact name match found in SbaPlayers +4451,Lourdes Gurriel Jr,5,,no_bbref,"1,2,3,4,5",794,Lourdes Gurriel Jr,Exact name match found in SbaPlayers +1601,Lucas Duda,3,,no_bbref,"2,3",539,Lucas Duda,Exact name match found in SbaPlayers +4570,Lucas Giolito,5,,no_bbref,"1,2,3,4,5",724,Lucas Giolito,Exact name match found in SbaPlayers +4468,Lucas Sims,5,,no_bbref,"2,3,4,5",1826,Lucas Sims,Exact name match found in SbaPlayers +4304,Luis Arraez,5,,no_bbref,"2,3,4,5",93,Luis Arraez,Exact name match found in SbaPlayers +4664,Luis Avilan,5,,no_bbref,"2,3,4,5",106,Luis Avilan,Exact name match found in SbaPlayers +4504,Luis Castillo,5,,no_bbref,"1,2,3,4,5",344,Luis Castillo,Exact name match found in SbaPlayers +4559,Luis Cessa,5,,no_bbref,"2,3,4,5",361,Luis Cessa,Exact name match found in SbaPlayers +5017,Luis Garcia,5,,no_bbref,"1,2,3,4,5",,,No bbref_id available +4236,Luis Guillorme,5,,no_bbref,"2,3,4,5",792,Luis Guillorme,Exact name match found in SbaPlayers +4187,Luis H Garcia,5,,no_bbref,"4,5",,,No bbref_id available +5018,Luis Patino,5,,no_bbref,"4,5",1504,Luis Patino,Exact name match found in SbaPlayers +5019,Luis Perdomo,5,,no_bbref,"1,2,3,4,5",1529,Luis Perdomo,Exact name match found in SbaPlayers +5020,Luis Rengifo,5,,no_bbref,"2,3,4,5",1632,Luis Rengifo,Exact name match found in SbaPlayers +4278,Luis Robert,5,,no_bbref,"4,5",1660,Luis Robert,Exact name match found in SbaPlayers +1612,Luis Severino,3,,no_bbref,"1,2,3",1805,Luis Severino,Exact name match found in SbaPlayers +5021,Luis Torrens,5,,no_bbref,"4,5",2002,Luis Torrens,Exact name match found in SbaPlayers +4747,Luis Urias,5,,no_bbref,"2,3,4,5",2039,Luis Urias,Exact name match found in SbaPlayers +5016,Luis V Garcia,5,,no_bbref,"4,5",,,No bbref_id available +2767,Luis Valbuena,1,,no_bbref,1,2045,Luis Valbuena,Exact name match found in SbaPlayers +1614,Luke Bard,3,,no_bbref,"2,3",126,Luke Bard,Exact name match found in SbaPlayers +5022,Luke Jackson,5,,no_bbref,"1,2,3,4,5",960,Luke Jackson,Exact name match found in SbaPlayers +1616,Luke Maile,3,,no_bbref,"1,2,3",1185,Luke Maile,Exact name match found in SbaPlayers +4317,Luke Voit,5,,no_bbref,"1,2,3,4,5",2087,Luke Voit,Exact name match found in SbaPlayers +5023,Luke Weaver,5,,no_bbref,"1,2,3,4,5",2124,Luke Weaver,Exact name match found in SbaPlayers +1619,Mac Williamson,3,,no_bbref,"2,3",2163,Mac Williamson,Exact name match found in SbaPlayers +5024,Madison Bumgarner,5,,no_bbref,"1,2,3,4,5",278,Madison Bumgarner,Exact name match found in SbaPlayers +4301,Magneuris Sierra,5,,no_bbref,"1,4,5",1823,Magneuris Sierra,Exact name match found in SbaPlayers +4501,Maikel Franco,5,,no_bbref,"1,2,3,4,5",645,Maikel Franco,Exact name match found in SbaPlayers +5025,Mallex Smith,5,,no_bbref,"1,2,3,4,5",1846,Mallex Smith,Exact name match found in SbaPlayers +1623,Manny Banuelos,3,,no_bbref,"2,3",123,Manny Banuelos,Exact name match found in SbaPlayers +4149,Manny Machado,5,,no_bbref,"1,2,3,4,5",1175,Manny Machado,Exact name match found in SbaPlayers +4178,Manny Pina,5,,no_bbref,"1,2,3,4,5",1558,Manny Pina,Exact name match found in SbaPlayers +4380,Manuel Margot,5,,no_bbref,"1,2,3,4,5",1198,Manuel Margot,Exact name match found in SbaPlayers +4203,Marcell Ozuna,5,,no_bbref,"1,2,3,4,5",1481,Marcell Ozuna,Exact name match found in SbaPlayers +2780,Marco Estrada,1,,no_bbref,1,586,Marco Estrada,Exact name match found in SbaPlayers +4346,Marco Gonzales,5,,no_bbref,"1,2,3,4,5",735,Marco Gonzales,Exact name match found in SbaPlayers +1629,Marco Hernandez,3,,no_bbref,"2,3",872,Marco Hernandez,Exact name match found in SbaPlayers +4658,Marcus Semien,5,,no_bbref,"1,2,3,4,5",1799,Marcus Semien,Exact name match found in SbaPlayers +1631,Marcus Stroman,3,,no_bbref,"1,2,3",1928,Marcus Stroman,Exact name match found in SbaPlayers +5026,Marcus Walden,5,,no_bbref,"2,3,4,5",2100,Marcus Walden,Exact name match found in SbaPlayers +4361,Mark Canha,5,,no_bbref,"1,2,3,4,5",316,Mark Canha,Exact name match found in SbaPlayers +5027,Mark Mathias,5,,no_bbref,"4,5",1234,Mark Mathias,Exact name match found in SbaPlayers +4298,Mark Melancon,5,,no_bbref,"1,2,3,4,5",1298,Mark Melancon,Exact name match found in SbaPlayers +5028,Mark Payton,5,,no_bbref,"4,5",1508,Mark Payton,Exact name match found in SbaPlayers +1635,Mark Reynolds,3,,no_bbref,"1,2,3",1639,Mark Reynolds,Exact name match found in SbaPlayers +2787,Mark Trumbo,1,,no_bbref,1,2020,Mark Trumbo,Exact name match found in SbaPlayers +4443,Martin Maldonado,5,,no_bbref,"1,2,3,4,5",1187,Martin Maldonado,Exact name match found in SbaPlayers +4436,Martin Perez,5,,no_bbref,"1,2,3,4,5",1535,Martin Perez,Exact name match found in SbaPlayers +1638,Martin Prado,3,,no_bbref,"1,2,3",1582,Martin Prado,Exact name match found in SbaPlayers +4736,Marwin Gonzalez,5,,no_bbref,"1,2,3,4,5",741,Marwin Gonzalez,Exact name match found in SbaPlayers +4494,Masahiro Tanaka,5,,no_bbref,"1,2,3,4,5",1955,Masahiro Tanaka,Exact name match found in SbaPlayers +5029,Mason Williams,5,,no_bbref,"1,4,5",2154,Mason Williams,Exact name match found in SbaPlayers +5030,Matt Adams,5,,no_bbref,"1,2,3,4,5",15,Matt Adams,Exact name match found in SbaPlayers +1642,Matt Albers,3,,no_bbref,"2,3",29,Matt Albers,Exact name match found in SbaPlayers +4478,Matt Andriese,5,,no_bbref,"2,3,4,5",76,Matt Andriese,Exact name match found in SbaPlayers +4710,Matt Barnes,5,,no_bbref,"1,2,3,4,5",131,Matt Barnes,Exact name match found in SbaPlayers +5031,Matt Beaty,5,,no_bbref,"2,3,4,5",157,Matt Beaty,Exact name match found in SbaPlayers +2796,Matt Belisle,1,,no_bbref,1,167,Matt Belisle,Exact name match found in SbaPlayers +1646,Matt Bowman,3,,no_bbref,"2,3",228,Matt Bowman,Exact name match found in SbaPlayers +4761,Matt Carpenter,5,,no_bbref,"1,2,3,4,5",329,Matt Carpenter,Exact name match found in SbaPlayers +4280,Matt Chapman,5,,no_bbref,"1,2,3,4,5",367,Matt Chapman,Exact name match found in SbaPlayers +5032,Matt Davidson,5,,no_bbref,"1,4,5",463,Matt Davidson,Exact name match found in SbaPlayers +1649,Matt Duffy,3,,no_bbref,"1,2,3",542,Matt Duffy,Exact name match found in SbaPlayers +4521,Matt Foster,5,,no_bbref,"4,5",638,Matt Foster,Exact name match found in SbaPlayers +1650,Matt Grace,3,,no_bbref,"1,2,3",760,Matt Grace,Exact name match found in SbaPlayers +5033,Matt Hall,5,,no_bbref,"4,5",806,Matt Hall,Exact name match found in SbaPlayers +5034,Matt Harvey,5,,no_bbref,"1,2,3,4,5",835,Matt Harvey,Exact name match found in SbaPlayers +4753,Matt Kemp,5,,no_bbref,"1,2,3,4,5",1026,Matt Kemp,Exact name match found in SbaPlayers +2804,Matt Koch,1,,no_bbref,1,1066,Matt Koch,Exact name match found in SbaPlayers +5035,Matt Magill,5,,no_bbref,"1,2,3,4,5",1182,Matt Magill,Exact name match found in SbaPlayers +2806,Matt Moore,1,,no_bbref,1,1357,Matt Moore,Exact name match found in SbaPlayers +4423,Matt Olson,5,,no_bbref,"1,2,3,4,5",1461,Matt Olson,Exact name match found in SbaPlayers +4357,Matt Shoemaker,5,,no_bbref,"2,3,4,5",1817,Matt Shoemaker,Exact name match found in SbaPlayers +1656,Matt Skole,3,,no_bbref,"2,3",1835,Matt Skole,Exact name match found in SbaPlayers +4469,Matt Strahm,5,,no_bbref,"1,2,3,4,5",1918,Matt Strahm,Exact name match found in SbaPlayers +5036,Matt Thaiss,5,,no_bbref,"2,3,4,5",1975,Matt Thaiss,Exact name match found in SbaPlayers +5037,Matt Wieters,5,,no_bbref,"1,2,3,4,5",2152,Matt Wieters,Exact name match found in SbaPlayers +4355,Matt Wisler,5,,no_bbref,"2,3,4,5",2183,Matt Wisler,Exact name match found in SbaPlayers +5038,Matthew Boyd,5,,no_bbref,"1,2,3,4,5",230,Matthew Boyd,Exact name match found in SbaPlayers +5039,Matthew Joyce,5,,no_bbref,"1,2,3,4,5",999,Matthew Joyce,Exact name match found in SbaPlayers +4427,Mauricio Dubon,5,,no_bbref,"2,3,4,5",538,Mauricio Dubon,Exact name match found in SbaPlayers +4129,Max Fried,5,,no_bbref,"2,3,4,5",659,Max Fried,Exact name match found in SbaPlayers +4457,Max Kepler,5,,no_bbref,"1,2,3,4,5",1031,Max Kepler,Exact name match found in SbaPlayers +4701,Max Muncy,5,,no_bbref,"1,2,3,4,5",1382,Max Muncy,Exact name match found in SbaPlayers +4192,Max Scherzer,5,,no_bbref,"1,2,3,4,5",1773,Max Scherzer,Exact name match found in SbaPlayers +5040,Max Schrock,5,,no_bbref,"4,5",1781,Max Schrock,Exact name match found in SbaPlayers +4165,Max Stassi,5,,no_bbref,"1,2,3,4,5",1896,Max Stassi,Exact name match found in SbaPlayers +5041,Meibrys Viloria,5,,no_bbref,"2,3,4,5",2081,Meibrys Viloria,Exact name match found in SbaPlayers +1670,Melky Cabrera,3,,no_bbref,"1,2,3",300,Melky Cabrera,Exact name match found in SbaPlayers +4136,Merrill Kelly,5,,no_bbref,"2,3,4,5",1020,Merrill Kelly,Exact name match found in SbaPlayers +5042,Michael A Taylor,5,,no_bbref,"1,2,3,4,5",PARTIAL:1963,Michael Taylor,Partial name match - REVIEW NEEDED +4231,Michael Brantley,5,,no_bbref,"1,2,3,4,5",240,Michael Brantley,Exact name match found in SbaPlayers +5043,Michael Chavis,5,,no_bbref,"2,3,4,5",371,Michael Chavis,Exact name match found in SbaPlayers +4201,Michael Conforto,5,,no_bbref,"1,2,3,4,5",407,Michael Conforto,Exact name match found in SbaPlayers +1676,Michael Feliz,3,,no_bbref,"1,2,3",602,Michael Feliz,Exact name match found in SbaPlayers +5044,Michael Fulmer,5,,no_bbref,"1,4,5",666,Michael Fulmer,Exact name match found in SbaPlayers +5045,Michael King,5,,no_bbref,"4,5",1047,Michael King,Exact name match found in SbaPlayers +4703,Michael Lorenzen,5,,no_bbref,"1,2,3,4,5",1151,Michael Lorenzen,Exact name match found in SbaPlayers +5046,Michael Perez,5,,no_bbref,"1,4,5",1539,Michael Perez,Exact name match found in SbaPlayers +4479,Michael Pineda,5,,no_bbref,"2,3,4,5",1560,Michael Pineda,Exact name match found in SbaPlayers +5047,Michael Wacha,5,,no_bbref,"1,2,3,4,5",2093,Michael Wacha,Exact name match found in SbaPlayers +1680,Michel Baez,3,,no_bbref,"2,3",113,Michel Baez,Exact name match found in SbaPlayers +5048,Miguel Andujar,5,,no_bbref,"1,4,5",78,Miguel Andujar,Exact name match found in SbaPlayers +5049,Miguel Cabrera,5,,no_bbref,"1,2,3,4,5",298,Miguel Cabrera,Exact name match found in SbaPlayers +4571,Miguel Castro,5,,no_bbref,"1,2,3,4,5",350,Miguel Castro,Exact name match found in SbaPlayers +4154,Miguel Rojas,5,,no_bbref,"1,2,3,4,5",1694,Miguel Rojas,Exact name match found in SbaPlayers +5050,Miguel Sano,5,,no_bbref,"1,2,3,4,5",1757,Miguel Sano,Exact name match found in SbaPlayers +4135,Mike Brosseau,5,,no_bbref,"2,3,4,5",263,Mike Brosseau,Exact name match found in SbaPlayers +4259,Mike Clevinger,5,,no_bbref,"1,2,3,4,5",392,Mike Clevinger,Exact name match found in SbaPlayers +4598,Mike Fiers,5,,no_bbref,"1,2,3,4,5",615,Mike Fiers,Exact name match found in SbaPlayers +1688,Mike Foltynewicz,3,,no_bbref,"1,2,3",633,Mike Foltynewicz,Exact name match found in SbaPlayers +5051,Mike Ford,5,,no_bbref,"2,3,4,5",635,Mike Ford,Exact name match found in SbaPlayers +5052,Mike Freeman,5,,no_bbref,"2,3,4,5",651,Mike Freeman,Exact name match found in SbaPlayers +5053,Mike Kickham,5,,no_bbref,"4,5",1036,Mike Kickham,Exact name match found in SbaPlayers +1691,Mike Leake,3,,no_bbref,"1,2,3",1102,Mike Leake,Exact name match found in SbaPlayers +4302,Mike Mayers,5,,no_bbref,"1,4,5",1251,Mike Mayers,Exact name match found in SbaPlayers +5054,Mike Minor,5,,no_bbref,"1,2,3,4,5",1335,Mike Minor,Exact name match found in SbaPlayers +1693,Mike Montgomery,3,,no_bbref,"1,2,3",1355,Mike Montgomery,Exact name match found in SbaPlayers +1694,Mike Morin,3,,no_bbref,"2,3",1370,Mike Morin,Exact name match found in SbaPlayers +4680,Mike Moustakas,5,,no_bbref,"1,2,3,4,5",1378,Mike Moustakas,Exact name match found in SbaPlayers +4424,Mike Soroka,5,,no_bbref,"2,3,4,5",,,No bbref_id available +5055,Mike Tauchman,5,,no_bbref,"2,3,4,5",1961,Mike Tauchman,Exact name match found in SbaPlayers +4281,Mike Trout,5,,no_bbref,"1,2,3,4,5",2019,Mike Trout,Exact name match found in SbaPlayers +1699,Mike Wright,3,,no_bbref,"1,2,3",2199,Mike Wright,Exact name match found in SbaPlayers +4153,Mike Yastrzemski,5,,no_bbref,"2,3,4,5",2210,Mike Yastrzemski,Exact name match found in SbaPlayers +5056,Mike Zunino,5,,no_bbref,"1,2,3,4,5",2234,Mike Zunino,Exact name match found in SbaPlayers +2841,Mikie Mahtook,1,,no_bbref,1,1184,Mikie Mahtook,Exact name match found in SbaPlayers +1702,Miles Mikolas,3,,no_bbref,"1,2,3",1317,Miles Mikolas,Exact name match found in SbaPlayers +5057,Mitch Garver,5,,no_bbref,"1,2,3,4,5",702,Mitch Garver,Exact name match found in SbaPlayers +1704,Mitch Haniger,3,,no_bbref,"1,2,3",818,Mitch Haniger,Exact name match found in SbaPlayers +4327,Mitch Keller,5,,no_bbref,"2,3,4,5",1017,Mitch Keller,Exact name match found in SbaPlayers +4282,Mitch Moreland,5,,no_bbref,"1,2,3,4,5",1365,Mitch Moreland,Exact name match found in SbaPlayers +5058,Monte Harrison,5,,no_bbref,"4,5",831,Monte Harrison,Exact name match found in SbaPlayers +4133,Mookie Betts,5,,no_bbref,"1,2,3,4,5",187,Mookie Betts,Exact name match found in SbaPlayers +4605,Mychal Givens,5,,no_bbref,"1,2,3,4,5",725,Mychal Givens,Exact name match found in SbaPlayers +5059,Myles Straw,5,,no_bbref,"2,3,4,5",1924,Myles Straw,Exact name match found in SbaPlayers +5060,Nabil Crismatt,5,,no_bbref,"4,5",436,Nabil Crismatt,Exact name match found in SbaPlayers +5061,Nate Jones,5,,no_bbref,"1,4,5",990,Nate Jones,Exact name match found in SbaPlayers +4536,Nate Lowe,5,,no_bbref,"2,3,4,5",,,No bbref_id available +5062,Nate Pearson,5,,no_bbref,"4,5",1513,Nate Pearson,Exact name match found in SbaPlayers +4253,Nathan Eovaldi,5,,no_bbref,"1,2,3,4,5",576,Nathan Eovaldi,Exact name match found in SbaPlayers +2850,Neil Ramirez,1,,no_bbref,1,1603,Neil Ramirez,Exact name match found in SbaPlayers +5063,Neil Walker,5,,no_bbref,"1,2,3,4,5",2103,Neil Walker,Exact name match found in SbaPlayers +4260,Nelson Cruz,5,,no_bbref,"1,2,3,4,5",447,Nelson Cruz,Exact name match found in SbaPlayers +3955,Nestor Cortes Jr,4,,no_bbref,"2,3,4",421,Nestor Cortes Jr,Exact name match found in SbaPlayers +4773,Nicholas Castellanos,5,,no_bbref,"1,2,3,4,5",340,Nicholas Castellanos,Exact name match found in SbaPlayers +4309,Nick Ahmed,5,,no_bbref,"1,2,3,4,5",26,Nick Ahmed,Exact name match found in SbaPlayers +4164,Nick Anderson,5,,no_bbref,"2,3,4,5",71,Nick Anderson,Exact name match found in SbaPlayers +1718,Nick Dini,3,,no_bbref,"2,3",518,Nick Dini,Exact name match found in SbaPlayers +5064,Nick Goody,5,,no_bbref,"2,3,4,5",750,Nick Goody,Exact name match found in SbaPlayers +4440,Nick Heath,5,,no_bbref,"4,5",846,Nick Heath,Exact name match found in SbaPlayers +1720,Nick Hundley,3,,no_bbref,"1,2,3",940,Nick Hundley,Exact name match found in SbaPlayers +1721,Nick Kingham,3,,no_bbref,"1,2,3",1049,Nick Kingham,Exact name match found in SbaPlayers +4492,Nick Madrigal,5,,no_bbref,"4,5",1178,Nick Madrigal,Exact name match found in SbaPlayers +4704,Nick Margevicius,5,,no_bbref,"2,3,4,5",1197,Nick Margevicius,Exact name match found in SbaPlayers +5065,Nick Markakis,5,,no_bbref,"1,2,3,4,5",1201,Nick Markakis,Exact name match found in SbaPlayers +1724,Nick Martini,3,,no_bbref,"1,2,3",1230,Nick Martini,Exact name match found in SbaPlayers +5066,Nick Neidert,5,,no_bbref,"4,5",1408,Nick Neidert,Exact name match found in SbaPlayers +5067,Nick Nelson,5,,no_bbref,"4,5",1410,Nick Nelson,Exact name match found in SbaPlayers +4579,Nick Pivetta,5,,no_bbref,"1,2,3,4,5",1564,Nick Pivetta,Exact name match found in SbaPlayers +5068,Nick Ramirez,5,,no_bbref,"2,3,4,5",1605,Nick Ramirez,Exact name match found in SbaPlayers +5069,Nick Senzel,5,,no_bbref,"2,3,4,5",1802,Nick Senzel,Exact name match found in SbaPlayers +5070,Nick Solak,5,,no_bbref,"2,3,4,5",1867,Nick Solak,Exact name match found in SbaPlayers +4254,Nick Tropeano,5,,no_bbref,"1,4,5",2018,Nick Tropeano,Exact name match found in SbaPlayers +4606,Nick Vincent,5,,no_bbref,"1,2,3,4,5",2082,Nick Vincent,Exact name match found in SbaPlayers +1730,Nick Williams,3,,no_bbref,"1,2,3",2157,Nick Williams,Exact name match found in SbaPlayers +4557,Nick Wittgren,5,,no_bbref,"2,3,4,5",2185,Nick Wittgren,Exact name match found in SbaPlayers +5071,Nicky Delmonico,5,,no_bbref,"1,2,3,4,5",488,Nicky Delmonico,Exact name match found in SbaPlayers +4733,Nicky Lopez,5,,no_bbref,"2,3,4,5",1149,Nicky Lopez,Exact name match found in SbaPlayers +4441,Nico Hoerner,5,,no_bbref,"2,3,4,5",909,Nico Hoerner,Exact name match found in SbaPlayers +5072,Nik Turley,5,,no_bbref,"4,5",2027,Nik Turley,Exact name match found in SbaPlayers +5073,Niko Goodrum,5,,no_bbref,"1,2,3,4,5",748,Niko Goodrum,Exact name match found in SbaPlayers +5074,Nivaldo Rodriguez,5,,no_bbref,"4,5",1687,Nivaldo Rodriguez,Exact name match found in SbaPlayers +1736,Noah Syndergaard,3,,no_bbref,"1,2,3",1953,Noah Syndergaard,Exact name match found in SbaPlayers +4429,Noe Ramirez,5,,no_bbref,"1,2,3,4,5",1606,Noe Ramirez,Exact name match found in SbaPlayers +2867,Noel Cuevas,1,,no_bbref,1,452,Noel Cuevas,Exact name match found in SbaPlayers +4275,Nolan Arenado,5,,no_bbref,"1,2,3,4,5",88,Nolan Arenado,Exact name match found in SbaPlayers +5075,Nomar Mazara,5,,no_bbref,"1,2,3,4,5",1254,Nomar Mazara,Exact name match found in SbaPlayers +1740,Odubel Herrera,3,,no_bbref,"1,2,3",882,Odubel Herrera,Exact name match found in SbaPlayers +5076,Oliver Drake,5,,no_bbref,"1,2,3,4,5",534,Oliver Drake,Exact name match found in SbaPlayers +4430,Oliver Perez,5,,no_bbref,"1,2,3,4,5",1533,Oliver Perez,Exact name match found in SbaPlayers +5077,Omar Narvaez,5,,no_bbref,"1,2,3,4,5",1401,Omar Narvaez,Exact name match found in SbaPlayers +4730,Orlando Arcia,5,,no_bbref,"1,2,3,4,5",86,Orlando Arcia,Exact name match found in SbaPlayers +5078,Oscar Mercado,5,,no_bbref,"2,3,4,5",1306,Oscar Mercado,Exact name match found in SbaPlayers +4428,Ozzie Albies,5,,no_bbref,"1,2,3,4,5",31,Ozzie Albies,Exact name match found in SbaPlayers +4324,Pablo Lopez,5,,no_bbref,"1,2,3,4,5",1146,Pablo Lopez,Exact name match found in SbaPlayers +1748,Pablo Reyes,3,,no_bbref,"2,3",1637,Pablo Reyes,Exact name match found in SbaPlayers +5079,Pablo Sandoval,5,,no_bbref,"1,2,3,4,5",1753,Pablo Sandoval,Exact name match found in SbaPlayers +4668,Pat Valaika,5,,no_bbref,"1,2,3,4,5",2044,Pat Valaika,Exact name match found in SbaPlayers +4269,Patrick Corbin,5,,no_bbref,"1,2,3,4,5",416,Patrick Corbin,Exact name match found in SbaPlayers +5080,Patrick Sandoval,5,,no_bbref,"2,3,4,5",1754,Patrick Sandoval,Exact name match found in SbaPlayers +4688,Paul DeJong,5,,no_bbref,"1,2,3,4,5",485,Paul DeJong,Exact name match found in SbaPlayers +4400,Paul Fry,5,,no_bbref,"1,2,3,4,5",662,Paul Fry,Exact name match found in SbaPlayers +4245,Paul Goldschmidt,5,,no_bbref,"1,2,3,4,5",729,Paul Goldschmidt,Exact name match found in SbaPlayers +2883,Paul Sewald,1,,no_bbref,1,1806,Paul Sewald,Exact name match found in SbaPlayers +4499,Pavin Smith,5,,no_bbref,"4,5",1851,Pavin Smith,Exact name match found in SbaPlayers +4737,Pedro Baez,5,,no_bbref,"1,2,3,4,5",111,Pedro Baez,Exact name match found in SbaPlayers +4462,Pedro Severino,5,,no_bbref,"1,2,3,4,5",1804,Pedro Severino,Exact name match found in SbaPlayers +1758,Pedro Strop,3,,no_bbref,"1,2,3",1929,Pedro Strop,Exact name match found in SbaPlayers +4720,Pete Alonso,5,,no_bbref,"2,3,4,5",53,Pete Alonso,Exact name match found in SbaPlayers +4543,Pete Fairbanks,5,,no_bbref,"4,5",592,Pete Fairbanks,Exact name match found in SbaPlayers +1760,Peter Lambert,3,,no_bbref,"2,3",1088,Peter Lambert,Exact name match found in SbaPlayers +5081,Phil Ervin,5,,no_bbref,"1,2,3,4,5",579,Phil Ervin,Exact name match found in SbaPlayers +5082,Phil Gosselin,5,,no_bbref,"2,3,4,5",757,Phil Gosselin,Exact name match found in SbaPlayers +5083,Phil Maton,5,,no_bbref,"1,2,3,4,5",1238,Phil Maton,Exact name match found in SbaPlayers +4653,Phillip Evans,5,,no_bbref,"4,5",589,Phillip Evans,Exact name match found in SbaPlayers +4586,Phillips Valdez,5,,no_bbref,"4,5",2047,Phillips Valdez,Exact name match found in SbaPlayers +4580,Pierce Johnson,5,,no_bbref,"1,4,5",985,Pierce Johnson,Exact name match found in SbaPlayers +2890,Preston Tucker,1,,no_bbref,1,2024,Preston Tucker,Exact name match found in SbaPlayers +4641,Rafael Devers,5,,no_bbref,"1,2,3,4,5",499,Rafael Devers,Exact name match found in SbaPlayers +4257,Rafael Dolis,5,,no_bbref,"4,5",523,Rafael Dolis,Exact name match found in SbaPlayers +5084,Rafael Montero,5,,no_bbref,"2,3,4,5",1352,Rafael Montero,Exact name match found in SbaPlayers +1766,Rafael Ortega,3,,no_bbref,"1,2,3",1465,Rafael Ortega,Exact name match found in SbaPlayers +4541,Raimel Tapia,5,,no_bbref,"2,3,4,5",1957,Raimel Tapia,Exact name match found in SbaPlayers +4711,Raisel Iglesias,5,,no_bbref,"1,2,3,4,5",950,Raisel Iglesias,Exact name match found in SbaPlayers +2894,Rajai Davis,1,,no_bbref,1,466,Rajai Davis,Exact name match found in SbaPlayers +4352,Ramon Laureano,5,,no_bbref,"1,2,3,4,5",1097,Ramon Laureano,Exact name match found in SbaPlayers +5085,Ramon Rosso,5,,no_bbref,"4,5",1716,Ramon Rosso,Exact name match found in SbaPlayers +4553,Ramon Urias,5,,no_bbref,"4,5",2037,Ramon Urias,Exact name match found in SbaPlayers +4684,Randal Grichuk,5,,no_bbref,"1,2,3,4,5",775,Randal Grichuk,Exact name match found in SbaPlayers +4156,Randy Arozarena,5,,no_bbref,"4,5",92,Randy Arozarena,Exact name match found in SbaPlayers +4627,Randy Dobnak,5,,no_bbref,"2,3,4,5",521,Randy Dobnak,Exact name match found in SbaPlayers +5086,Rangel Ravelo,5,,no_bbref,"4,5",1619,Rangel Ravelo,Exact name match found in SbaPlayers +1772,Ranger Suarez,3,,no_bbref,"2,3",1936,Ranger Suarez,Exact name match found in SbaPlayers +5087,Reese McGuire,5,,no_bbref,"2,3,4,5",1277,Reese McGuire,Exact name match found in SbaPlayers +4597,Renato Nunez,5,,no_bbref,"1,2,3,4,5",1443,Renato Nunez,Exact name match found in SbaPlayers +1775,Reyes Moronta,3,,no_bbref,"1,2,3",1371,Reyes Moronta,Exact name match found in SbaPlayers +5088,Reynaldo Lopez,5,,no_bbref,"1,2,3,4,5",1145,Reynaldo Lopez,Exact name match found in SbaPlayers +4475,Rhys Hoskins,5,,no_bbref,"1,2,3,4,5",925,Rhys Hoskins,Exact name match found in SbaPlayers +4362,Rich Hill,5,,no_bbref,"1,2,3,4,5",898,Rich Hill,Exact name match found in SbaPlayers +4522,Richard Bleier,5,,no_bbref,"1,2,3,4,5",212,Richard Bleier,Exact name match found in SbaPlayers +4617,Richard Rodriguez,5,,no_bbref,"1,2,3,4,5",1674,Richard Rodriguez,Exact name match found in SbaPlayers +1781,Richard Urena,3,,no_bbref,"1,2,3",2036,Richard Urena,Exact name match found in SbaPlayers +1782,Richie Martin,3,,no_bbref,"2,3",1216,Richie Martin,Exact name match found in SbaPlayers +4766,Rick Porcello,5,,no_bbref,"1,2,3,4,5",1577,Rick Porcello,Exact name match found in SbaPlayers +5089,Rico Garcia,5,,no_bbref,"4,5",693,Rico Garcia,Exact name match found in SbaPlayers +4251,Riley Smith,5,,no_bbref,"4,5",1850,Riley Smith,Exact name match found in SbaPlayers +4575,Rio Ruiz,5,,no_bbref,"2,3,4,5",1723,Rio Ruiz,Exact name match found in SbaPlayers +5090,Rob Refsnyder,5,,no_bbref,"4,5",1626,Rob Refsnyder,Exact name match found in SbaPlayers +5091,Robbie Erlin,5,,no_bbref,"1,2,3,4,5",578,Robbie Erlin,Exact name match found in SbaPlayers +4385,Robbie Grossman,5,,no_bbref,"1,2,3,4,5",779,Robbie Grossman,Exact name match found in SbaPlayers +5092,Robbie Ray,5,,no_bbref,"1,2,3,4,5",1620,Robbie Ray,Exact name match found in SbaPlayers +1788,Robel Garcia,3,,no_bbref,"2,3",682,Robel Garcia,Exact name match found in SbaPlayers +5093,Robert Dugger,5,,no_bbref,"2,3,4,5",544,Robert Dugger,Exact name match found in SbaPlayers +5094,Robert Gsellman,5,,no_bbref,"1,2,3,4,5",782,Robert Gsellman,Exact name match found in SbaPlayers +5095,Robert Stephenson,5,,no_bbref,"2,3,4,5",1904,Robert Stephenson,Exact name match found in SbaPlayers +5096,Robert Stock,5,,no_bbref,"1,4,5",1912,Robert Stock,Exact name match found in SbaPlayers +1792,Roberto Osuna,3,,no_bbref,"2,3",1470,Roberto Osuna,Exact name match found in SbaPlayers +4681,Roberto Perez,5,,no_bbref,"1,2,3,4,5",1538,Roberto Perez,Exact name match found in SbaPlayers +4407,Robinson Cano,5,,no_bbref,"1,2,3,4,5",319,Robinson Cano,Exact name match found in SbaPlayers +5097,Robinson Chirinos,5,,no_bbref,"1,2,3,4,5",373,Robinson Chirinos,Exact name match found in SbaPlayers +1796,Roenis Elias,3,,no_bbref,"2,3",565,Roenis Elias,Exact name match found in SbaPlayers +5098,Roman Quinn,5,,no_bbref,"1,2,3,4,5",1595,Roman Quinn,Exact name match found in SbaPlayers +4166,Ronald Acuna Jr,5,,no_bbref,"1,2,3,4,5",12,Ronald Acuna Jr,Exact name match found in SbaPlayers +4572,Ronald Guzman,5,,no_bbref,"1,2,3,4,5",799,Ronald Guzman,Exact name match found in SbaPlayers +1800,Ronny Rodriguez,3,,no_bbref,"1,2,3",1672,Ronny Rodriguez,Exact name match found in SbaPlayers +5099,Rony Garcia,5,,no_bbref,"4,5",689,Rony Garcia,Exact name match found in SbaPlayers +1801,Rosell Herrera,3,,no_bbref,"1,2,3",883,Rosell Herrera,Exact name match found in SbaPlayers +4716,Ross Detwiler,5,,no_bbref,"2,3,4,5",497,Ross Detwiler,Exact name match found in SbaPlayers +5100,Ross Stripling,5,,no_bbref,"1,2,3,4,5",1927,Ross Stripling,Exact name match found in SbaPlayers +5101,Rougned Odor,5,,no_bbref,"1,2,3,4,5",1451,Rougned Odor,Exact name match found in SbaPlayers +4614,Rowan Wick,5,,no_bbref,"2,3,4,5",2147,Rowan Wick,Exact name match found in SbaPlayers +4485,Rowdy Tellez,5,,no_bbref,"2,3,4,5",1972,Rowdy Tellez,Exact name match found in SbaPlayers +1807,Russell Martin,3,,no_bbref,"1,2,3",1213,Russell Martin,Exact name match found in SbaPlayers +4386,Ryan Borucki,5,,no_bbref,"1,4,5",222,Ryan Borucki,Exact name match found in SbaPlayers +4581,Ryan Brasier,5,,no_bbref,"1,2,3,4,5",242,Ryan Brasier,Exact name match found in SbaPlayers +4757,Ryan Braun,5,,no_bbref,"1,2,3,4,5",244,Ryan Braun,Exact name match found in SbaPlayers +5102,Ryan Buchter,5,,no_bbref,"1,2,3,4,5",276,Ryan Buchter,Exact name match found in SbaPlayers +1811,Ryan Carpenter,3,,no_bbref,"2,3",328,Ryan Carpenter,Exact name match found in SbaPlayers +4762,Ryan Castellani,5,,no_bbref,"4,5",338,Ryan Castellani,Exact name match found in SbaPlayers +1812,Ryan Cordell,3,,no_bbref,"2,3",417,Ryan Cordell,Exact name match found in SbaPlayers +2926,Ryan Flaherty,1,,no_bbref,1,621,Ryan Flaherty,Exact name match found in SbaPlayers +1813,Ryan Goins,3,,no_bbref,"2,3",728,Ryan Goins,Exact name match found in SbaPlayers +5103,Ryan Helsley,5,,no_bbref,"2,3,4,5",853,Ryan Helsley,Exact name match found in SbaPlayers +4371,Ryan Jeffers,5,,no_bbref,"4,5",975,Ryan Jeffers,Exact name match found in SbaPlayers +2927,Ryan LaMarre,1,,no_bbref,1,1086,Ryan LaMarre,Exact name match found in SbaPlayers +2928,Ryan Madson,1,,no_bbref,1,1180,Ryan Madson,Exact name match found in SbaPlayers +5104,Ryan McBroom,5,,no_bbref,"2,3,4,5",1259,Ryan McBroom,Exact name match found in SbaPlayers +4602,Ryan McMahon,5,,no_bbref,"1,2,3,4,5",1286,Ryan McMahon,Exact name match found in SbaPlayers +4470,Ryan Mountcastle,5,,no_bbref,"4,5",1377,Ryan Mountcastle,Exact name match found in SbaPlayers +5105,Ryan OHearn,5,,no_bbref,"1,2,3,4,5",1453,Ryan OHearn,Exact name match found in SbaPlayers +4644,Ryan Pressly,5,,no_bbref,"1,2,3,4,5",1584,Ryan Pressly,Exact name match found in SbaPlayers +2932,Ryan Rua,1,,no_bbref,1,1719,Ryan Rua,Exact name match found in SbaPlayers +4230,Ryan Sherriff,5,,no_bbref,"4,5",1814,Ryan Sherriff,Exact name match found in SbaPlayers +4696,Ryan Tepera,5,,no_bbref,"1,4,5",1974,Ryan Tepera,Exact name match found in SbaPlayers +5106,Ryan Thompson,5,,no_bbref,"4,5",1983,Ryan Thompson,Exact name match found in SbaPlayers +4363,Ryan Weber,5,,no_bbref,"2,3,4,5",2128,Ryan Weber,Exact name match found in SbaPlayers +4345,Ryan Yarbrough,5,,no_bbref,"1,2,3,4,5",2208,Ryan Yarbrough,Exact name match found in SbaPlayers +1821,Ryan Zimmerman,3,,no_bbref,"1,2,3",2229,Ryan Zimmerman,Exact name match found in SbaPlayers +5107,Ryne Harper,5,,no_bbref,"2,3,4,5",824,Ryne Harper,Exact name match found in SbaPlayers +5108,Ryne Stanek,5,,no_bbref,"1,2,3,4,5",1892,Ryne Stanek,Exact name match found in SbaPlayers +5109,Ryon Healy,5,,no_bbref,"1,2,3,4,5",842,Ryon Healy,Exact name match found in SbaPlayers +2938,Sal Romano,1,,no_bbref,1,1700,Sal Romano,Exact name match found in SbaPlayers +4140,Salvador Perez,5,,no_bbref,"1,4,5",1534,Salvador Perez,Exact name match found in SbaPlayers +5110,Sam Coonrod,5,,no_bbref,"2,3,4,5",414,Sam Coonrod,Exact name match found in SbaPlayers +1826,Sam Dyson,3,,no_bbref,"1,2,3",554,Sam Dyson,Exact name match found in SbaPlayers +2941,Sam Freeman,1,,no_bbref,1,653,Sam Freeman,Exact name match found in SbaPlayers +1827,Sam Gaviglio,3,,no_bbref,"1,2,3",707,Sam Gaviglio,Exact name match found in SbaPlayers +4307,Sam Haggerty,5,,no_bbref,"4,5",803,Sam Haggerty,Exact name match found in SbaPlayers +4745,Sam Hilliard,5,,no_bbref,"2,3,4,5",903,Sam Hilliard,Exact name match found in SbaPlayers +4749,Sam Howard,5,,no_bbref,"4,5",929,Sam Howard,Exact name match found in SbaPlayers +4131,Sam Huff,5,,no_bbref,"4,5",936,Sam Huff,Exact name match found in SbaPlayers +4682,Sam Selman,5,,no_bbref,"4,5",1798,Sam Selman,Exact name match found in SbaPlayers +1829,Sam Travis,3,,no_bbref,"2,3",2010,Sam Travis,Exact name match found in SbaPlayers +1830,Sam Tuivailala,3,,no_bbref,"2,3",2025,Sam Tuivailala,Exact name match found in SbaPlayers +2943,Sammy Solis,1,,no_bbref,1,1871,Sammy Solis,Exact name match found in SbaPlayers +4454,Sandy Alcantara,5,,no_bbref,"2,3,4,5",35,Sandy Alcantara,Exact name match found in SbaPlayers +5111,Sandy Leon,5,,no_bbref,"1,2,3,4,5",1115,Sandy Leon,Exact name match found in SbaPlayers +4500,Santiago Espinal,5,,no_bbref,"4,5",582,Santiago Espinal,Exact name match found in SbaPlayers +1833,Scooter Gennett,3,,no_bbref,"1,2,3",710,Scooter Gennett,Exact name match found in SbaPlayers +4620,Scott Alexander,5,,no_bbref,"1,4,5",36,Scott Alexander,Exact name match found in SbaPlayers +4727,Scott Barlow,5,,no_bbref,"2,3,4,5",128,Scott Barlow,Exact name match found in SbaPlayers +5112,Scott Heineman,5,,no_bbref,"2,3,4,5",850,Scott Heineman,Exact name match found in SbaPlayers +5113,Scott Kingery,5,,no_bbref,"1,2,3,4,5",1048,Scott Kingery,Exact name match found in SbaPlayers +1837,Scott Oberg,3,,no_bbref,"1,2,3",1448,Scott Oberg,Exact name match found in SbaPlayers +1838,Scott Schebler,3,,no_bbref,"1,2,3",1772,Scott Schebler,Exact name match found in SbaPlayers +5114,Sean Doolittle,5,,no_bbref,"1,2,3,4,5",528,Sean Doolittle,Exact name match found in SbaPlayers +4685,Sean Manaea,5,,no_bbref,"1,2,3,4,5",1189,Sean Manaea,Exact name match found in SbaPlayers +4249,Sean Murphy,5,,no_bbref,"2,3,4,5",1390,Sean Murphy,Exact name match found in SbaPlayers +5115,Sean Newcomb,5,,no_bbref,"1,2,3,4,5",1419,Sean Newcomb,Exact name match found in SbaPlayers +5116,Sean Poppen,5,,no_bbref,"4,5",1576,Sean Poppen,Exact name match found in SbaPlayers +4529,Sean Reid Foley,5,,no_bbref,"2,3,4,5",1627,Sean Reid Foley,Exact name match found in SbaPlayers +1844,Sean Rodriguez,3,,no_bbref,"1,2,3",1671,Sean Rodriguez,Exact name match found in SbaPlayers +2954,Seranthony Dominguez,1,,no_bbref,1,524,Seranthony Dominguez,Exact name match found in SbaPlayers +5117,Sergio Alcantara,5,,no_bbref,"4,5",34,Sergio Alcantara,Exact name match found in SbaPlayers +5118,Sergio Romo,5,,no_bbref,"1,2,3,4,5",1705,Sergio Romo,Exact name match found in SbaPlayers +1846,Seth Brown,3,,no_bbref,"2,3",265,Seth Brown,Exact name match found in SbaPlayers +5119,Seth Elledge,5,,no_bbref,"4,5",567,Seth Elledge,Exact name match found in SbaPlayers +4657,Seth Lugo,5,,no_bbref,"1,2,3,4,5",1165,Seth Lugo,Exact name match found in SbaPlayers +4141,Shane Bieber,5,,no_bbref,"1,2,3,4,5",194,Shane Bieber,Exact name match found in SbaPlayers +2958,Shane Carle,1,,no_bbref,1,326,Shane Carle,Exact name match found in SbaPlayers +4393,Shane Greene,5,,no_bbref,"1,2,3,4,5",769,Shane Greene,Exact name match found in SbaPlayers +4654,Shaun Anderson,5,,no_bbref,"2,3,4,5",72,Shaun Anderson,Exact name match found in SbaPlayers +4464,Shawn Armstrong,5,,no_bbref,"2,3,4,5",91,Shawn Armstrong,Exact name match found in SbaPlayers +1852,Shawn Kelley,3,,no_bbref,"2,3",1019,Shawn Kelley,Exact name match found in SbaPlayers +5120,Shed Long,5,,no_bbref,"2,3,4,5",1138,Shed Long,Exact name match found in SbaPlayers +1854,Shelby Miller,3,,no_bbref,"2,3",1323,Shelby Miller,Exact name match found in SbaPlayers +1855,Sheldon Neuse,3,,no_bbref,"2,3",1415,Sheldon Neuse,Exact name match found in SbaPlayers +5121,Sherten Apostel,5,,no_bbref,"4,5",80,Sherten Apostel,Exact name match found in SbaPlayers +4750,Shin Soo Choo,5,,no_bbref,"1,2,3,4,5",378,Shin Soo Choo,Exact name match found in SbaPlayers +4546,Shogo Akiyama,5,,no_bbref,"4,5",28,Shogo Akiyama,Exact name match found in SbaPlayers +4763,Shohei Ohtani,5,,no_bbref,"1,2,3,4,5",1455,Shohei Ohtani,Exact name match found in SbaPlayers +5122,Shun Yamaguchi,5,,no_bbref,"4,5",2204,Shun Yamaguchi,Exact name match found in SbaPlayers +4170,Sixto Sanchez,5,,no_bbref,"4,5",1751,Sixto Sanchez,Exact name match found in SbaPlayers +4582,Sonny Gray,5,,no_bbref,"1,2,3,4,5",765,Sonny Gray,Exact name match found in SbaPlayers +4731,Spencer Howard,5,,no_bbref,"4,5",930,Spencer Howard,Exact name match found in SbaPlayers +2963,Spencer Kieboom,1,,no_bbref,1,1037,Spencer Kieboom,Exact name match found in SbaPlayers +4401,Spencer Turnbull,5,,no_bbref,"2,3,4,5",2028,Spencer Turnbull,Exact name match found in SbaPlayers +4375,Starlin Castro,5,,no_bbref,"1,2,3,4,5",348,Starlin Castro,Exact name match found in SbaPlayers +4413,Starling Marte,5,,no_bbref,"1,2,3,4,5",1208,Starling Marte,Exact name match found in SbaPlayers +4368,Stefan Crichton,5,,no_bbref,"2,3,4,5",434,Stefan Crichton,Exact name match found in SbaPlayers +5123,Stephen Piscotty,5,,no_bbref,"1,2,3,4,5",1563,Stephen Piscotty,Exact name match found in SbaPlayers +1864,Stephen Strasburg,3,,no_bbref,"1,2,3",1921,Stephen Strasburg,Exact name match found in SbaPlayers +5124,Stephen Tarpley,5,,no_bbref,"4,5",1958,Stephen Tarpley,Exact name match found in SbaPlayers +5125,Stephen Vogt,5,,no_bbref,"2,3,4,5",2086,Stephen Vogt,Exact name match found in SbaPlayers +5126,Steve Cishek,5,,no_bbref,"1,2,3,4,5",381,Steve Cishek,Exact name match found in SbaPlayers +1867,Steve Pearce,3,,no_bbref,"1,2,3",1512,Steve Pearce,Exact name match found in SbaPlayers +4554,Steven Brault,5,,no_bbref,"1,2,3,4,5",243,Steven Brault,Exact name match found in SbaPlayers +5127,Steven Duggar,5,,no_bbref,"1,2,3,4,5",543,Steven Duggar,Exact name match found in SbaPlayers +5128,Steven Matz,5,,no_bbref,"1,2,3,4,5",1243,Steven Matz,Exact name match found in SbaPlayers +5129,Steven Souza Jr,5,,no_bbref,"1,4,5",1881,Steven Souza Jr,Exact name match found in SbaPlayers +1871,Stevie Wilkerson,3,,no_bbref,"2,3",2153,Stevie Wilkerson,Exact name match found in SbaPlayers +4748,TJ McFarland,5,,no_bbref,"1,2,3,4,5",1273,TJ McFarland,Exact name match found in SbaPlayers +4163,TJ Zeuch,5,,no_bbref,"4,5",2225,TJ Zeuch,Exact name match found in SbaPlayers +4402,Taijuan Walker,5,,no_bbref,"4,5",2105,Taijuan Walker,Exact name match found in SbaPlayers +4124,Tanner Houck,5,,no_bbref,"4,5",927,Tanner Houck,Exact name match found in SbaPlayers +4227,Tanner Rainey,5,,no_bbref,"2,3,4,5",1599,Tanner Rainey,Exact name match found in SbaPlayers +5130,Tanner Roark,5,,no_bbref,"1,2,3,4,5",1659,Tanner Roark,Exact name match found in SbaPlayers +4196,Tanner Scott,5,,no_bbref,"1,2,3,4,5",1788,Tanner Scott,Exact name match found in SbaPlayers +5131,Tarik Skubal,5,,no_bbref,"4,5",1836,Tarik Skubal,Exact name match found in SbaPlayers +4560,Taylor Clarke,5,,no_bbref,"2,3,4,5",384,Taylor Clarke,Exact name match found in SbaPlayers +1877,Taylor Cole,3,,no_bbref,"2,3",397,Taylor Cole,Exact name match found in SbaPlayers +1878,Taylor Guerrieri,3,,no_bbref,"2,3",790,Taylor Guerrieri,Exact name match found in SbaPlayers +4487,Taylor Guilbeau,5,,no_bbref,"4,5",791,Taylor Guilbeau,Exact name match found in SbaPlayers +4616,Taylor Hearn,5,,no_bbref,"4,5",844,Taylor Hearn,Exact name match found in SbaPlayers +5132,Taylor Jones,5,,no_bbref,"4,5",992,Taylor Jones,Exact name match found in SbaPlayers +5133,Taylor Rogers,5,,no_bbref,"1,2,3,4,5",1689,Taylor Rogers,Exact name match found in SbaPlayers +5134,Taylor Ward,5,,no_bbref,"1,4,5",2116,Taylor Ward,Exact name match found in SbaPlayers +4635,Taylor Widener,5,,no_bbref,"4,5",2149,Taylor Widener,Exact name match found in SbaPlayers +5135,Taylor Williams,5,,no_bbref,"1,4,5",2155,Taylor Williams,Exact name match found in SbaPlayers +1880,Tayron Guerrero,3,,no_bbref,"1,2,3",788,Tayron Guerrero,Exact name match found in SbaPlayers +4359,Tejay Antone,5,,no_bbref,"4,5",79,Tejay Antone,Exact name match found in SbaPlayers +4318,Teoscar Hernandez,5,,no_bbref,"1,2,3,4,5",873,Teoscar Hernandez,Exact name match found in SbaPlayers +5136,Thairo Estrada,5,,no_bbref,"2,3,4,5",587,Thairo Estrada,Exact name match found in SbaPlayers +4502,Thomas Eshelman,5,,no_bbref,"4,5",,,No bbref_id available +1883,Thomas Pannone,3,,no_bbref,"1,2,3",1494,Thomas Pannone,Exact name match found in SbaPlayers +4168,Tim Anderson,5,,no_bbref,"1,2,3,4,5",73,Tim Anderson,Exact name match found in SbaPlayers +1885,Tim Beckham,3,,no_bbref,"1,2,3",161,Tim Beckham,Exact name match found in SbaPlayers +2985,Tim Collins,1,,no_bbref,1,402,Tim Collins,Exact name match found in SbaPlayers +1886,Tim Federowicz,3,,no_bbref,"2,3",601,Tim Federowicz,Exact name match found in SbaPlayers +5137,Tim Hill,5,,no_bbref,"1,2,3,4,5",900,Tim Hill,Exact name match found in SbaPlayers +4250,Tim Locastro,5,,no_bbref,"2,3,4,5",1133,Tim Locastro,Exact name match found in SbaPlayers +5138,Tim Lopes,5,,no_bbref,"2,3,4,5",1142,Tim Lopes,Exact name match found in SbaPlayers +1890,Tim Mayza,3,,no_bbref,"1,2,3",1253,Tim Mayza,Exact name match found in SbaPlayers +1891,Tim Melville,3,,no_bbref,"2,3",1301,Tim Melville,Exact name match found in SbaPlayers +4686,Todd Frazier,5,,no_bbref,"1,2,3,4,5",647,Todd Frazier,Exact name match found in SbaPlayers +1893,Tom Eshelman,3,,no_bbref,"2,3",,,No bbref_id available +4353,Tom Hatch,5,,no_bbref,"4,5",,,No bbref_id available +1894,Tom Murphy,3,,no_bbref,"1,2,3",1388,Tom Murphy,Exact name match found in SbaPlayers +4294,Tomas Nido,5,,no_bbref,"2,3,4,5",1424,Tomas Nido,Exact name match found in SbaPlayers +4476,Tommy Edman,5,,no_bbref,"2,3,4,5",558,Tommy Edman,Exact name match found in SbaPlayers +4523,Tommy Hunter,5,,no_bbref,"1,4,5",941,Tommy Hunter,Exact name match found in SbaPlayers +1897,Tommy Kahnle,3,,no_bbref,"2,3",1006,Tommy Kahnle,Exact name match found in SbaPlayers +4567,Tommy La Stella,5,,no_bbref,"1,2,3,4,5",1082,Tommy La Stella,Exact name match found in SbaPlayers +5139,Tommy Milone,5,,no_bbref,"2,3,4,5",1333,Tommy Milone,Exact name match found in SbaPlayers +5140,Tommy Pham,5,,no_bbref,"1,2,3,4,5",1552,Tommy Pham,Exact name match found in SbaPlayers +4213,Tony Gonsolin,5,,no_bbref,"2,3,4,5",734,Tony Gonsolin,Exact name match found in SbaPlayers +5141,Tony Kemp,5,,no_bbref,"1,2,3,4,5",1027,Tony Kemp,Exact name match found in SbaPlayers +2994,Tony Sipp,1,,no_bbref,1,1829,Tony Sipp,Exact name match found in SbaPlayers +4741,Tony Watson,5,,no_bbref,"1,2,3,4,5",2122,Tony Watson,Exact name match found in SbaPlayers +5142,Tony Wolters,5,,no_bbref,"1,2,3,4,5",2187,Tony Wolters,Exact name match found in SbaPlayers +5143,Touki Toussaint,5,,no_bbref,"2,3,4,5",2005,Touki Toussaint,Exact name match found in SbaPlayers +4394,Travis Bergen,5,,no_bbref,"4,5",180,Travis Bergen,Exact name match found in SbaPlayers +5144,Travis Demeritte,5,,no_bbref,"2,3,4,5",491,Travis Demeritte,Exact name match found in SbaPlayers +5145,Travis Jankowski,5,,no_bbref,"1,4,5",967,Travis Jankowski,Exact name match found in SbaPlayers +4276,Travis Lakins,5,,no_bbref,"4,5",1085,Travis Lakins,Exact name match found in SbaPlayers +4728,Travis Shaw,5,,no_bbref,"1,2,3,4,5",1809,Travis Shaw,Exact name match found in SbaPlayers +4514,Travis dArnaud,5,,no_bbref,"2,3,4,5",461,Travis dArnaud,Exact name match found in SbaPlayers +4223,Trea Turner,5,,no_bbref,"1,2,3,4,5",1,Trea Turner,Exact name match found in SbaPlayers +4214,Trent Grisham,5,,no_bbref,"2,3,4,5",776,Trent Grisham,Exact name match found in SbaPlayers +1911,Trent Thornton,3,,no_bbref,"2,3",1988,Trent Thornton,Exact name match found in SbaPlayers +4162,Trevor Bauer,5,,no_bbref,"1,2,3,4,5",150,Trevor Bauer,Exact name match found in SbaPlayers +4456,Trevor Cahill,5,,no_bbref,"1,2,3,4,5",304,Trevor Cahill,Exact name match found in SbaPlayers +5146,Trevor Gott,5,,no_bbref,"2,3,4,5",758,Trevor Gott,Exact name match found in SbaPlayers +3002,Trevor Hildenberger,1,,no_bbref,1,897,Trevor Hildenberger,Exact name match found in SbaPlayers +4755,Trevor May,5,,no_bbref,"1,2,3,4,5",1248,Trevor May,Exact name match found in SbaPlayers +5147,Trevor Richards,5,,no_bbref,"1,2,3,4,5",1646,Trevor Richards,Exact name match found in SbaPlayers +5148,Trevor Rogers,5,,no_bbref,"4,5",1693,Trevor Rogers,Exact name match found in SbaPlayers +4241,Trevor Rosenthal,5,,no_bbref,"4,5",1713,Trevor Rosenthal,Exact name match found in SbaPlayers +4224,Trevor Story,5,,no_bbref,"1,2,3,4,5",1914,Trevor Story,Exact name match found in SbaPlayers +5149,Trevor Williams,5,,no_bbref,"1,2,3,4,5",2156,Trevor Williams,Exact name match found in SbaPlayers +1919,Trey Mancini,3,,no_bbref,"1,2,3",1190,Trey Mancini,Exact name match found in SbaPlayers +1920,Trey Wingenter,3,,no_bbref,"2,3",2176,Trey Wingenter,Exact name match found in SbaPlayers +4444,Triston McKenzie,5,,no_bbref,"4,5",1282,Triston McKenzie,Exact name match found in SbaPlayers +4270,Tucker Barnhart,5,,no_bbref,"1,2,3,4,5",135,Tucker Barnhart,Exact name match found in SbaPlayers +1922,Ty Blach,3,,no_bbref,"1,2,3",202,Ty Blach,Exact name match found in SbaPlayers +5150,Ty Buttrey,5,,no_bbref,"2,3,4,5",294,Ty Buttrey,Exact name match found in SbaPlayers +4372,Ty France,5,,no_bbref,"2,3,4,5",642,Ty France,Exact name match found in SbaPlayers +4517,Tyler Alexander,5,,no_bbref,"2,3,4,5",37,Tyler Alexander,Exact name match found in SbaPlayers +4659,Tyler Anderson,5,,no_bbref,"1,4,5",68,Tyler Anderson,Exact name match found in SbaPlayers +1926,Tyler Austin,3,,no_bbref,"1,2,3",103,Tyler Austin,Exact name match found in SbaPlayers +5151,Tyler Bashlor,5,,no_bbref,"1,4,5",144,Tyler Bashlor,Exact name match found in SbaPlayers +1927,Tyler Beede,3,,no_bbref,"2,3",164,Tyler Beede,Exact name match found in SbaPlayers +5152,Tyler Chatwood,5,,no_bbref,"1,2,3,4,5",369,Tyler Chatwood,Exact name match found in SbaPlayers +4633,Tyler Clippard,5,,no_bbref,"1,2,3,4,5",393,Tyler Clippard,Exact name match found in SbaPlayers +4473,Tyler Duffey,5,,no_bbref,"2,3,4,5",540,Tyler Duffey,Exact name match found in SbaPlayers +4551,Tyler Flowers,5,,no_bbref,"1,2,3,4,5",630,Tyler Flowers,Exact name match found in SbaPlayers +4509,Tyler Glasnow,5,,no_bbref,"1,2,3,4,5",726,Tyler Glasnow,Exact name match found in SbaPlayers +4669,Tyler Heineman,5,,no_bbref,"4,5",851,Tyler Heineman,Exact name match found in SbaPlayers +4656,Tyler Kinley,5,,no_bbref,"2,3,4,5",1050,Tyler Kinley,Exact name match found in SbaPlayers +4474,Tyler Mahle,5,,no_bbref,"1,2,3,4,5",1183,Tyler Mahle,Exact name match found in SbaPlayers +4288,Tyler Matzek,5,,no_bbref,"4,5",1244,Tyler Matzek,Exact name match found in SbaPlayers +5153,Tyler Naquin,5,,no_bbref,"2,3,4,5",1399,Tyler Naquin,Exact name match found in SbaPlayers +4460,Tyler ONeill,5,,no_bbref,"1,2,3,4,5",1463,Tyler ONeill,Exact name match found in SbaPlayers +1937,Tyler Olson,3,,no_bbref,"1,2,3",1460,Tyler Olson,Exact name match found in SbaPlayers +4725,Tyler Rogers,5,,no_bbref,"4,5",1691,Tyler Rogers,Exact name match found in SbaPlayers +1938,Tyler Saladino,3,,no_bbref,"2,3",1737,Tyler Saladino,Exact name match found in SbaPlayers +1939,Tyler Skaggs,3,,no_bbref,"1,2,3",1832,Tyler Skaggs,Exact name match found in SbaPlayers +4132,Tyler Stephenson,5,,no_bbref,"4,5",1905,Tyler Stephenson,Exact name match found in SbaPlayers +4645,Tyler Thornburg,5,,no_bbref,"4,5",1987,Tyler Thornburg,Exact name match found in SbaPlayers +4425,Tyler Wade,5,,no_bbref,"2,3,4,5",2094,Tyler Wade,Exact name match found in SbaPlayers +4600,Tyler Webb,5,,no_bbref,"2,3,4,5",2125,Tyler Webb,Exact name match found in SbaPlayers +1942,Tyler White,3,,no_bbref,"1,2,3",2141,Tyler White,Exact name match found in SbaPlayers +4705,Tyler Zuber,5,,no_bbref,"4,5",2233,Tyler Zuber,Exact name match found in SbaPlayers +4313,Tyrone Taylor,5,,no_bbref,"4,5",1965,Tyrone Taylor,Exact name match found in SbaPlayers +1943,Tyson Ross,3,,no_bbref,"1,2,3",1714,Tyson Ross,Exact name match found in SbaPlayers +5154,Tzu Wei Lin,5,,no_bbref,"4,5",1122,Tzu Wei Lin,Exact name match found in SbaPlayers +1944,Victor Alcantara,3,,no_bbref,"2,3",33,Victor Alcantara,Exact name match found in SbaPlayers +3023,Victor Arano,1,,no_bbref,1,83,Victor Arano,Exact name match found in SbaPlayers +5155,Victor Caratini,5,,no_bbref,"1,2,3,4,5",325,Victor Caratini,Exact name match found in SbaPlayers +4303,Victor Gonzalez,5,,no_bbref,"4,5",743,Victor Gonzalez,Exact name match found in SbaPlayers +3025,Victor Martinez,1,,no_bbref,1,1221,Victor Martinez,Exact name match found in SbaPlayers +4647,Victor Reyes,5,,no_bbref,"1,2,3,4,5",1638,Victor Reyes,Exact name match found in SbaPlayers +5156,Victor Robles,5,,no_bbref,"2,3,4,5",1666,Victor Robles,Exact name match found in SbaPlayers +5157,Vimael Machin,5,,no_bbref,"4,5",1177,Vimael Machin,Exact name match found in SbaPlayers +4610,Vince Velasquez,5,,no_bbref,"1,2,3,4,5",2065,Vince Velasquez,Exact name match found in SbaPlayers +4639,Vladimir Guerrero Jr,5,,no_bbref,"2,3,4,5",789,Vladimir Guerrero Jr,Exact name match found in SbaPlayers +1950,Wade Davis,3,,no_bbref,"1,2,3",468,Wade Davis,Exact name match found in SbaPlayers +5158,Wade LeBlanc,5,,no_bbref,"1,2,3,4,5",1104,Wade LeBlanc,Exact name match found in SbaPlayers +5159,Wade Miley,5,,no_bbref,"1,2,3,4,5",1318,Wade Miley,Exact name match found in SbaPlayers +4634,Walker Buehler,5,,no_bbref,"1,2,3,4,5",277,Walker Buehler,Exact name match found in SbaPlayers +4599,Walker Lockett,5,,no_bbref,"2,3,4,5",1134,Walker Lockett,Exact name match found in SbaPlayers +4512,Wander Suero,5,,no_bbref,"1,2,3,4,5",1940,Wander Suero,Exact name match found in SbaPlayers +4679,Wandy Peralta,5,,no_bbref,"1,2,3,4,5",1524,Wandy Peralta,Exact name match found in SbaPlayers +1957,Wei Chung Wang,3,,no_bbref,"2,3",2114,Wei Chung Wang,Exact name match found in SbaPlayers +1958,Wei Yin Chen,3,,no_bbref,"1,2,3",372,Wei Yin Chen,Exact name match found in SbaPlayers +1959,Welington Castillo,3,,no_bbref,"1,2,3",343,Welington Castillo,Exact name match found in SbaPlayers +4649,Wes Benjamin,5,,no_bbref,"4,5",178,Wes Benjamin,Exact name match found in SbaPlayers +1960,Wes Parsons,3,,no_bbref,"2,3",1502,Wes Parsons,Exact name match found in SbaPlayers +4611,Whit Merrifield,5,,no_bbref,"1,2,3,4,5",1309,Whit Merrifield,Exact name match found in SbaPlayers +5160,Wil Crowe,5,,no_bbref,"4,5",446,Wil Crowe,Exact name match found in SbaPlayers +4267,Wil Myers,5,,no_bbref,"1,2,3,4,5",1395,Wil Myers,Exact name match found in SbaPlayers +1963,Wilfredo Tovar,3,,no_bbref,"2,3",2006,Wilfredo Tovar,Exact name match found in SbaPlayers +4181,Will D Smith,5,,no_bbref,"2,3,4,5",PARTIAL:1841,Will Smith,Partial name match - REVIEW NEEDED +4537,Will Harris,5,,no_bbref,"1,2,3,4,5",825,Will Harris,Exact name match found in SbaPlayers +4660,Will Smith,5,,no_bbref,"1,2,3,4,5",1841,Will Smith,Exact name match found in SbaPlayers +4561,Willi Castro,5,,no_bbref,"2,3,4,5",352,Willi Castro,Exact name match found in SbaPlayers +5161,Willians Astudillo,5,,no_bbref,"2,3,4,5",101,Willians Astudillo,Exact name match found in SbaPlayers +5162,Willie Calhoun,5,,no_bbref,"1,2,3,4,5",307,Willie Calhoun,Exact name match found in SbaPlayers +4505,Willson Contreras,5,,no_bbref,"1,2,3,4,5",410,Willson Contreras,Exact name match found in SbaPlayers +4225,Willy Adames,5,,no_bbref,"1,2,3,4,5",14,Willy Adames,Exact name match found in SbaPlayers +1972,Wilmer Difo,3,,no_bbref,"1,2,3",516,Wilmer Difo,Exact name match found in SbaPlayers +4403,Wilmer Flores,5,,no_bbref,"1,2,3,4,5",627,Wilmer Flores,Exact name match found in SbaPlayers +5163,Wilmer Font,5,,no_bbref,"2,3,4,5",634,Wilmer Font,Exact name match found in SbaPlayers +4673,Wilson Ramos,5,,no_bbref,"2,3,4,5",1612,Wilson Ramos,Exact name match found in SbaPlayers +1976,Wily Peralta,3,,no_bbref,"1,2,3",1523,Wily Peralta,Exact name match found in SbaPlayers +4408,Wyatt Mathisen,5,,no_bbref,"4,5",1236,Wyatt Mathisen,Exact name match found in SbaPlayers +4358,Xander Bogaerts,5,,no_bbref,"1,2,3,4,5",216,Xander Bogaerts,Exact name match found in SbaPlayers +3047,Yacksel Rios,1,,no_bbref,1,1650,Yacksel Rios,Exact name match found in SbaPlayers +5164,Yadiel Hernandez,5,,no_bbref,"4,5",875,Yadiel Hernandez,Exact name match found in SbaPlayers +1978,Yadiel Rivera,3,,no_bbref,"1,2,3",1656,Yadiel Rivera,Exact name match found in SbaPlayers +4674,Yadier Molina,5,,no_bbref,"1,2,3,4,5",1344,Yadier Molina,Exact name match found in SbaPlayers +4143,Yairo Munoz,5,,no_bbref,"1,2,3,4,5",1383,Yairo Munoz,Exact name match found in SbaPlayers +4356,Yan Gomes,5,,no_bbref,"1,2,3,4,5",731,Yan Gomes,Exact name match found in SbaPlayers +4418,Yandy Diaz,5,,no_bbref,"2,3,4,5",507,Yandy Diaz,Exact name match found in SbaPlayers +1983,Yangervis Solarte,3,,no_bbref,"1,2,3",1869,Yangervis Solarte,Exact name match found in SbaPlayers +1984,Yasiel Puig,3,,no_bbref,"1,2,3",1590,Yasiel Puig,Exact name match found in SbaPlayers +4527,Yasmani Grandal,5,,no_bbref,"1,2,3,4,5",761,Yasmani Grandal,Exact name match found in SbaPlayers +3055,Yefry Ramirez,1,,no_bbref,1,1607,Yefry Ramirez,Exact name match found in SbaPlayers +4515,Yency Almonte,5,,no_bbref,"2,3,4,5",50,Yency Almonte,Exact name match found in SbaPlayers +4194,Yimi Garcia,5,,no_bbref,"2,3,4,5",680,Yimi Garcia,Exact name match found in SbaPlayers +5165,Yoan Lopez,5,,no_bbref,"2,3,4,5",1147,Yoan Lopez,Exact name match found in SbaPlayers +4612,Yoan Moncada,5,,no_bbref,"1,2,3,4,5",1348,Yoan Moncada,Exact name match found in SbaPlayers +5166,Yoenis Cespedes,5,,no_bbref,"1,4,5",360,Yoenis Cespedes,Exact name match found in SbaPlayers +4387,Yohan Ramirez,5,,no_bbref,"4,5",1611,Yohan Ramirez,Exact name match found in SbaPlayers +4126,Yolmer Sanchez,5,,no_bbref,"1,2,3,4,5",1744,Yolmer Sanchez,Exact name match found in SbaPlayers +1991,Yonathan Daza,3,,no_bbref,"2,3",476,Yonathan Daza,Exact name match found in SbaPlayers +1992,Yonder Alonso,3,,no_bbref,"1,2,3",52,Yonder Alonso,Exact name match found in SbaPlayers +4347,Yonny Chirinos,5,,no_bbref,"1,2,3,4,5",374,Yonny Chirinos,Exact name match found in SbaPlayers +1994,Yordan Alvarez,3,,no_bbref,"2,3",61,Yordan Alvarez,Exact name match found in SbaPlayers +4729,Yoshi Tsutsugo,5,,no_bbref,"4,5",2021,Yoshi Tsutsugo,Exact name match found in SbaPlayers +5167,Yoshihisa Hirano,5,,no_bbref,"1,2,3,4,5",904,Yoshihisa Hirano,Exact name match found in SbaPlayers +3062,Yovani Gallardo,1,,no_bbref,1,671,Yovani Gallardo,Exact name match found in SbaPlayers +1996,Yu Chang,3,,no_bbref,"2,3",364,Yu Chang,Exact name match found in SbaPlayers +4174,Yu Darvish,5,,no_bbref,"2,3,4,5",462,Yu Darvish,Exact name match found in SbaPlayers +5168,Yuli Gurriel,5,,no_bbref,"1,2,3,4,5",793,Yuli Gurriel,Exact name match found in SbaPlayers +4759,Yusei Kikuchi,5,,no_bbref,"2,3,4,5",1040,Yusei Kikuchi,Exact name match found in SbaPlayers +4374,Yusmeiro Petit,5,,no_bbref,"1,2,3,4,5",1549,Yusmeiro Petit,Exact name match found in SbaPlayers +4157,Zac Gallen,5,,no_bbref,"2,3,4,5",673,Zac Gallen,Exact name match found in SbaPlayers +5169,Zac Grotz,5,,no_bbref,"4,5",780,Zac Grotz,Exact name match found in SbaPlayers +2002,Zac Reininger,3,,no_bbref,"2,3",1628,Zac Reininger,Exact name match found in SbaPlayers +1000,Zach Britton,2,,no_bbref,2,,,No bbref_id available +4290,Zach Davies,5,,no_bbref,"2,3,4,5",465,Zach Davies,Exact name match found in SbaPlayers +3065,Zach Duke,1,,no_bbref,1,545,Zach Duke,Exact name match found in SbaPlayers +4252,Zach Eflin,5,,no_bbref,"1,2,3,4,5",562,Zach Eflin,Exact name match found in SbaPlayers +4139,Zach Plesac,5,,no_bbref,"2,3,4,5",1566,Zach Plesac,Exact name match found in SbaPlayers +4507,Zack Britton,5,,no_bbref,"1,3,4,5",260,Zack Britton,Exact name match found in SbaPlayers +5170,Zack Burdi,5,,no_bbref,"4,5",281,Zack Burdi,Exact name match found in SbaPlayers +5171,Zack Collins,5,,no_bbref,"2,3,4,5",403,Zack Collins,Exact name match found in SbaPlayers +2008,Zack Cozart,3,,no_bbref,"1,2,3",428,Zack Cozart,Exact name match found in SbaPlayers +5172,Zack Godley,5,,no_bbref,"1,2,3,4,5",727,Zack Godley,Exact name match found in SbaPlayers +4431,Zack Greinke,5,,no_bbref,"1,2,3,4,5",774,Zack Greinke,Exact name match found in SbaPlayers +2011,Zack Littell,3,,no_bbref,"2,3",1127,Zack Littell,Exact name match found in SbaPlayers +4145,Zack Wheeler,5,,no_bbref,"1,2,3,4,5",2139,Zack Wheeler,Exact name match found in SbaPlayers diff --git a/.claude/sqlite-to-postgres/botched-sbaplayer-matching/unmatched_players_for_review_updated.csv b/.claude/sqlite-to-postgres/botched-sbaplayer-matching/unmatched_players_for_review_updated.csv new file mode 100644 index 0000000..00bf31a --- /dev/null +++ b/.claude/sqlite-to-postgres/botched-sbaplayer-matching/unmatched_players_for_review_updated.csv @@ -0,0 +1,1444 @@ +player+AF8-id,name,season,bbref+AF8-id,match+AF8-type,seasons+AF8-appeared,suggested+AF8-sbaplayer+AF8-id,suggested+AF8-sbaplayer+AF8-name,suggested+AF8-match+AF8-reason,resolution +11540,Ben Gamel,12,HALP,has+AF8-bbref+AF8-no+AF8-match,+ACI-10,11,12+ACI-,,,No existing SbaPlayer with this bbref+AF8-id,USE+AF8-SBA+AF8-676 +11690,Daniel Coulombe,12,couloda01,has+AF8-bbref+AF8-no+AF8-match,+ACI-6,7,10,11,12+ACI-,,,No existing SbaPlayer with this bbref+AF8-id,CREATE+AF8-NEW +11779,Evan Phillips,12,phillev01,has+AF8-bbref+AF8-no+AF8-match,+ACI-8,9,10,11,12+ACI-,,,No existing SbaPlayer with this bbref+AF8-id,CREATE+AF8-NEW +8624,Francisco Mejia,9,mejiafr01,has+AF8-bbref+AF8-no+AF8-match,+ACI-6,7,8,9+ACI-,,,No existing SbaPlayer with this bbref+AF8-id,CREATE+AF8-NEW +7009,JC Mejia,7,mejiaje02,has+AF8-bbref+AF8-no+AF8-match,+ACI-6,7+ACI-,,,No existing SbaPlayer with this bbref+AF8-id,CREATE+AF8-NEW +12049,Kody Funderburk,12,fundeko01,has+AF8-bbref+AF8-no+AF8-match,12,,,No existing SbaPlayer with this bbref+AF8-id,CREATE+AF8-NEW +12095,Luis Garcia,12,garcilu03,has+AF8-bbref+AF8-no+AF8-match,+ACI-6,7,8,9,10,11,12+ACI-,,,No existing SbaPlayer with this bbref+AF8-id,CREATE+AF8-NEW +8930,Luis H Garcia,9,garcilu05,has+AF8-bbref+AF8-no+AF8-match,+ACI-6,7,8,9+ACI-,,,No existing SbaPlayer with this bbref+AF8-id,CREATE+AF8-NEW +12100,Luis Ortiz,12,ortizlu02,has+AF8-bbref+AF8-no+AF8-match,+ACI-10,11,12+ACI-,,,No existing SbaPlayer with this bbref+AF8-id,CREATE+AF8-NEW +9007,Michael A Taylor,9,taylomi01,has+AF8-bbref+AF8-no+AF8-match,+ACI-8,9+ACI-,,,No existing SbaPlayer with this bbref+AF8-id,USE+AF8-SBA+AF8-1963 +12249,Pedro Pages,12,pagespe02,has+AF8-bbref+AF8-no+AF8-match,12,,,No existing SbaPlayer with this bbref+AF8-id,CREATE+AF8-NEW +6949,Thomas Eshelman,7,eshelto01,has+AF8-bbref+AF8-no+AF8-match,+ACI-6,7+ACI-,,,No existing SbaPlayer with this bbref+AF8-id,CREATE+AF8-NEW +12422,Tyler Phillips,12,phillty01,has+AF8-bbref+AF8-no+AF8-match,12,,,No existing SbaPlayer with this bbref+AF8-id,CREATE+AF8-NEW +4314,AJ Cole,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,399,AJ Cole,Exact name match found in SbaPlayers,ACCEPT +2013,AJ Ellis,1,,no+AF8-bbref,1,570,AJ Ellis,Exact name match found in SbaPlayers,ACCEPT +4210,AJ Minter,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1336,AJ Minter,Exact name match found in SbaPlayers,ACCEPT +4516,AJ Pollock,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1571,AJ Pollock,Exact name match found in SbaPlayers,ACCEPT +1010,Aaron Altherr,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,55,Aaron Altherr,Exact name match found in SbaPlayers,ACCEPT +1011,Aaron Brooks,3,,no+AF8-bbref,+ACI-2,3+ACI-,262,Aaron Brooks,Exact name match found in SbaPlayers,ACCEPT +4434,Aaron Bummer,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,279,Aaron Bummer,Exact name match found in SbaPlayers,ACCEPT +4689,Aaron Civale,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,383,Aaron Civale,Exact name match found in SbaPlayers,ACCEPT +4587,Aaron Hicks,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,892,Aaron Hicks,Exact name match found in SbaPlayers,ACCEPT +4207,Aaron Judge,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,3,Aaron Judge,Exact name match found in SbaPlayers,ACCEPT +4576,Aaron Loup,5,,no+AF8-bbref,+ACI-4,5+ACI-,1152,Aaron Loup,Exact name match found in SbaPlayers,ACCEPT +4204,Aaron Nola,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1433,Aaron Nola,Exact name match found in SbaPlayers,ACCEPT +1017,Aaron Sanchez,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1745,Aaron Sanchez,Exact name match found in SbaPlayers,ACCEPT +4471,Aaron Slegers,5,,no+AF8-bbref,+ACI-4,5+ACI-,1839,Aaron Slegers,Exact name match found in SbaPlayers,ACCEPT +2022,Abraham Almonte,1,,no+AF8-bbref,1,49,Abraham Almonte,Exact name match found in SbaPlayers,ACCEPT +4774,Abraham Toro,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,2001,Abraham Toro,Exact name match found in SbaPlayers,ACCEPT +1019,Adalberto Mejia,3,,no+AF8-bbref,+ACI-2,3+ACI-,1296,Adalberto Mejia,Exact name match found in SbaPlayers,ACCEPT +4483,Adalberto Mondesi,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1349,Adalberto Mondesi,Exact name match found in SbaPlayers,ACCEPT +4706,Adam Cimber,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,380,Adam Cimber,Exact name match found in SbaPlayers,ACCEPT +1022,Adam Conley,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,409,Adam Conley,Exact name match found in SbaPlayers,ACCEPT +4544,Adam Duvall,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,553,Adam Duvall,Exact name match found in SbaPlayers,ACCEPT +4775,Adam Eaton,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,556,Adam Eaton,Exact name match found in SbaPlayers,ACCEPT +4448,Adam Engel,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,574,Adam Engel,Exact name match found in SbaPlayers,ACCEPT +4603,Adam Frazier,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,648,Adam Frazier,Exact name match found in SbaPlayers,ACCEPT +4776,Adam Haseley,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,837,Adam Haseley,Exact name match found in SbaPlayers,ACCEPT +1028,Adam Jones,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,989,Adam Jones,Exact name match found in SbaPlayers,ACCEPT +4388,Adam Kolarek,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1069,Adam Kolarek,Exact name match found in SbaPlayers,ACCEPT +4717,Adam Morgan,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1368,Adam Morgan,Exact name match found in SbaPlayers,ACCEPT +4777,Adam Ottavino,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1475,Adam Ottavino,Exact name match found in SbaPlayers,ACCEPT +4738,Adam Plutko,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1567,Adam Plutko,Exact name match found in SbaPlayers,ACCEPT +4642,Adam Wainwright,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,2099,Adam Wainwright,Exact name match found in SbaPlayers,ACCEPT +1034,Adam Warren,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,2118,Adam Warren,Exact name match found in SbaPlayers,ACCEPT +4404,Adbert Alzolay,5,,no+AF8-bbref,+ACI-4,5+ACI-,63,Adbert Alzolay,Exact name match found in SbaPlayers,ACCEPT +2034,Addison Reed,1,,no+AF8-bbref,1,1624,Addison Reed,Exact name match found in SbaPlayers,ACCEPT +1035,Addison Russell,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1728,Addison Russell,Exact name match found in SbaPlayers,ACCEPT +4778,Adeiny Hechavarria,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,847,Adeiny Hechavarria,Exact name match found in SbaPlayers,ACCEPT +2037,Adrian Beltre,1,,no+AF8-bbref,1,174,Adrian Beltre,Exact name match found in SbaPlayers,ACCEPT +2038,Adrian Gonzalez,1,,no+AF8-bbref,1,738,Adrian Gonzalez,Exact name match found in SbaPlayers,ACCEPT +4779,Adrian Houser,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,928,Adrian Houser,Exact name match found in SbaPlayers,ACCEPT +4780,Adrian Morejon,5,,no+AF8-bbref,+ACI-4,5+ACI-,1363,Adrian Morejon,Exact name match found in SbaPlayers,ACCEPT +1038,Adrian Sampson,3,,no+AF8-bbref,+ACI-2,3+ACI-,1742,Adrian Sampson,Exact name match found in SbaPlayers,ACCEPT +4781,Albert Almora,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,,,No bbref+AF8-id available,USE+AF8-SBA+AF8-51 +4782,Albert Pujols,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1591,Albert Pujols,Exact name match found in SbaPlayers,ACCEPT +2041,Alcides Escobar,1,,no+AF8-bbref,1,580,Alcides Escobar,Exact name match found in SbaPlayers,ACCEPT +4465,Alec Bohm,5,,no+AF8-bbref,+ACI-4,5+ACI-,217,Alec Bohm,Exact name match found in SbaPlayers,ACCEPT +4734,Alec Mills,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1330,Alec Mills,Exact name match found in SbaPlayers,ACCEPT +4690,Aledmys Diaz,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,505,Aledmys Diaz,Exact name match found in SbaPlayers,ACCEPT +4272,Alejandro Kirk,5,,no+AF8-bbref,+ACI-4,5+ACI-,1056,Alejandro Kirk,Exact name match found in SbaPlayers,ACCEPT +2043,Alen Hanson,1,,no+AF8-bbref,1,819,Alen Hanson,Exact name match found in SbaPlayers,ACCEPT +4369,Alex Avila,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,104,Alex Avila,Exact name match found in SbaPlayers,ACCEPT +2045,Alex Blandino,1,,no+AF8-bbref,1,210,Alex Blandino,Exact name match found in SbaPlayers,ACCEPT +4437,Alex Bregman,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,248,Alex Bregman,Exact name match found in SbaPlayers,ACCEPT +4742,Alex Claudio,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,387,Alex Claudio,Exact name match found in SbaPlayers,ACCEPT +4409,Alex Cobb,5,,no+AF8-bbref,+ACI-1,4,5+ACI-,394,Alex Cobb,Exact name match found in SbaPlayers,ACCEPT +4296,Alex Colome,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,404,Alex Colome,Exact name match found in SbaPlayers,ACCEPT +4484,Alex Dickerson,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,512,Alex Dickerson,Exact name match found in SbaPlayers,ACCEPT +4764,Alex Gordon,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,751,Alex Gordon,Exact name match found in SbaPlayers,ACCEPT +1049,Alex McRae,3,,no+AF8-bbref,+ACI-2,3+ACI-,1288,Alex McRae,Exact name match found in SbaPlayers,ACCEPT +4783,Alex Reyes,5,,no+AF8-bbref,+ACI-4,5+ACI-,1635,Alex Reyes,Exact name match found in SbaPlayers,ACCEPT +4197,Alex Verdugo,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,2069,Alex Verdugo,Exact name match found in SbaPlayers,ACCEPT +2051,Alex Wilson,1,,no+AF8-bbref,1,2168,Alex Wilson,Exact name match found in SbaPlayers,ACCEPT +4784,Alex Wood,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,2193,Alex Wood,Exact name match found in SbaPlayers,ACCEPT +4785,Alex Young,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,2217,Alex Young,Exact name match found in SbaPlayers,ACCEPT +4786,Amed Rosario,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1711,Amed Rosario,Exact name match found in SbaPlayers,ACCEPT +4488,Amir Garrett,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,698,Amir Garrett,Exact name match found in SbaPlayers,ACCEPT +4538,Anderson Tejeda,5,,no+AF8-bbref,+ACI-4,5+ACI-,1971,Anderson Tejeda,Exact name match found in SbaPlayers,ACCEPT +4315,Andre Scrubb,5,,no+AF8-bbref,+ACI-4,5+ACI-,1791,Andre Scrubb,Exact name match found in SbaPlayers,ACCEPT +4534,Andrelton Simmons,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1825,Andrelton Simmons,Exact name match found in SbaPlayers,ACCEPT +4261,Andres Gimenez,5,,no+AF8-bbref,+ACI-4,5+ACI-,721,Andres Gimenez,Exact name match found in SbaPlayers,ACCEPT +4787,Andrew Benintendi,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,177,Andrew Benintendi,Exact name match found in SbaPlayers,ACCEPT +1057,Andrew Cashner,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,336,Andrew Cashner,Exact name match found in SbaPlayers,ACCEPT +4788,Andrew Chafin,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,363,Andrew Chafin,Exact name match found in SbaPlayers,ACCEPT +4395,Andrew Heaney,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,843,Andrew Heaney,Exact name match found in SbaPlayers,ACCEPT +4376,Andrew Kittredge,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1057,Andrew Kittredge,Exact name match found in SbaPlayers,ACCEPT +4283,Andrew Knapp,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1062,Andrew Knapp,Exact name match found in SbaPlayers,ACCEPT +4789,Andrew Knizner,5,,no+AF8-bbref,+ACI-4,5+ACI-,1065,Andrew Knizner,Exact name match found in SbaPlayers,ACCEPT +4790,Andrew McCutchen,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1272,Andrew McCutchen,Exact name match found in SbaPlayers,ACCEPT +4631,Andrew Miller,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1320,Andrew Miller,Exact name match found in SbaPlayers,ACCEPT +2063,Andrew Romine,1,,no+AF8-bbref,1,1703,Andrew Romine,Exact name match found in SbaPlayers,ACCEPT +4128,Andrew Stevenson,5,,no+AF8-bbref,+ACI-1,4,5+ACI-,1906,Andrew Stevenson,Exact name match found in SbaPlayers,ACCEPT +4442,Andrew Suarez,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1935,Andrew Suarez,Exact name match found in SbaPlayers,ACCEPT +4791,Andrew Triggs,5,,no+AF8-bbref,+ACI-4,5+ACI-,2014,Andrew Triggs,Exact name match found in SbaPlayers,ACCEPT +4539,Andrew Velazquez,5,,no+AF8-bbref,+ACI-4,5+ACI-,2067,Andrew Velazquez,Exact name match found in SbaPlayers,ACCEPT +4792,Andy Young,5,,no+AF8-bbref,+ACI-4,5+ACI-,2220,Andy Young,Exact name match found in SbaPlayers,ACCEPT +4760,Anibal Sanchez,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1743,Anibal Sanchez,Exact name match found in SbaPlayers,ACCEPT +4793,Anthony Alford,5,,no+AF8-bbref,+ACI-4,5+ACI-,41,Anthony Alford,Exact name match found in SbaPlayers,ACCEPT +4794,Anthony Banda,5,,no+AF8-bbref,+ACI-4,5+ACI-,121,Anthony Banda,Exact name match found in SbaPlayers,ACCEPT +4531,Anthony Bass,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,145,Anthony Bass,Exact name match found in SbaPlayers,ACCEPT +4466,Anthony Bemboom,5,,no+AF8-bbref,+ACI-4,5+ACI-,175,Anthony Bemboom,Exact name match found in SbaPlayers,ACCEPT +4795,Anthony DeSclafani,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,493,Anthony DeSclafani,Exact name match found in SbaPlayers,ACCEPT +4721,Anthony Kay,5,,no+AF8-bbref,+ACI-4,5+ACI-,1012,Anthony Kay,Exact name match found in SbaPlayers,ACCEPT +4746,Anthony Misiewicz,5,,no+AF8-bbref,+ACI-4,5+ACI-,1338,Anthony Misiewicz,Exact name match found in SbaPlayers,ACCEPT +4232,Anthony Rendon,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1630,Anthony Rendon,Exact name match found in SbaPlayers,ACCEPT +4525,Anthony Rizzo,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1658,Anthony Rizzo,Exact name match found in SbaPlayers,ACCEPT +4191,Anthony Santander,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1764,Anthony Santander,Exact name match found in SbaPlayers,ACCEPT +1071,Anthony Swarzak,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1950,Anthony Swarzak,Exact name match found in SbaPlayers,ACCEPT +4151,Antonio Senzatela,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1801,Antonio Senzatela,Exact name match found in SbaPlayers,ACCEPT +4489,Archie Bradley,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,236,Archie Bradley,Exact name match found in SbaPlayers,ACCEPT +1074,Ariel Jurado,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1005,Ariel Jurado,Exact name match found in SbaPlayers,ACCEPT +4796,Aristides Aquino,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,81,Aristides Aquino,Exact name match found in SbaPlayers,ACCEPT +2074,Arodys Vizcaino,1,,no+AF8-bbref,1,2083,Arodys Vizcaino,Exact name match found in SbaPlayers,ACCEPT +4410,Aroldis Chapman,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,366,Aroldis Chapman,Exact name match found in SbaPlayers,ACCEPT +4739,Asdrubal Cabrera,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,299,Asdrubal Cabrera,Exact name match found in SbaPlayers,ACCEPT +4797,Asher Wojciechowski,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,2186,Asher Wojciechowski,Exact name match found in SbaPlayers,ACCEPT +4798,Ashton Goudeau,5,,no+AF8-bbref,+ACI-4,5+ACI-,759,Ashton Goudeau,Exact name match found in SbaPlayers,ACCEPT +1079,Austin Adams,3,,no+AF8-bbref,+ACI-2,3+ACI-,16,Austin Adams,Exact name match found in SbaPlayers,ACCEPT +4799,Austin Allen,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,47,Austin Allen,Exact name match found in SbaPlayers,ACCEPT +4349,Austin Barnes,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,132,Austin Barnes,Exact name match found in SbaPlayers,ACCEPT +4800,Austin Brice,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,253,Austin Brice,Exact name match found in SbaPlayers,ACCEPT +4801,Austin Davis,5,,no+AF8-bbref,+ACI-4,5+ACI-,471,Austin Davis,Exact name match found in SbaPlayers,ACCEPT +1083,Austin Dean,3,,no+AF8-bbref,+ACI-2,3+ACI-,483,Austin Dean,Exact name match found in SbaPlayers,ACCEPT +4389,Austin Gomber,5,,no+AF8-bbref,+ACI-1,4,5+ACI-,730,Austin Gomber,Exact name match found in SbaPlayers,ACCEPT +4354,Austin Hays,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,839,Austin Hays,Exact name match found in SbaPlayers,ACCEPT +4802,Austin Hedges,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,848,Austin Hedges,Exact name match found in SbaPlayers,ACCEPT +2080,Austin Jackson,1,,no+AF8-bbref,1,958,Austin Jackson,Exact name match found in SbaPlayers,ACCEPT +4713,Austin Meadows,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1290,Austin Meadows,Exact name match found in SbaPlayers,ACCEPT +4329,Austin Nola,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1432,Austin Nola,Exact name match found in SbaPlayers,ACCEPT +1088,Austin Pruitt,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1588,Austin Pruitt,Exact name match found in SbaPlayers,ACCEPT +4803,Austin Riley,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1649,Austin Riley,Exact name match found in SbaPlayers,ACCEPT +4804,Austin Romine,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1704,Austin Romine,Exact name match found in SbaPlayers,ACCEPT +4208,Austin Slater,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1838,Austin Slater,Exact name match found in SbaPlayers,ACCEPT +4702,Austin Voth,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,2091,Austin Voth,Exact name match found in SbaPlayers,ACCEPT +1093,Austin Wynns,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,2202,Austin Wynns,Exact name match found in SbaPlayers,ACCEPT +4805,Avisail Garcia,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,678,Avisail Garcia,Exact name match found in SbaPlayers,ACCEPT +2086,Bartolo Colon,1,,no+AF8-bbref,1,405,Bartolo Colon,Exact name match found in SbaPlayers,ACCEPT +4806,Beau Taylor,5,,no+AF8-bbref,+ACI-4,5+ACI-,1968,Beau Taylor,Exact name match found in SbaPlayers,ACCEPT +4134,Ben Braymer,5,,no+AF8-bbref,+ACI-4,5+ACI-,245,Ben Braymer,Exact name match found in SbaPlayers,ACCEPT +4807,Ben Gamel,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,676,Ben Gamel,Exact name match found in SbaPlayers,ACCEPT +1096,Ben Zobrist,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,2232,Ben Zobrist,Exact name match found in SbaPlayers,ACCEPT +4808,Billy Hamilton,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,810,Billy Hamilton,Exact name match found in SbaPlayers,ACCEPT +1098,Billy McKinney,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1283,Billy McKinney,Exact name match found in SbaPlayers,ACCEPT +1099,Blaine Hardy,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,822,Blaine Hardy,Exact name match found in SbaPlayers,ACCEPT +4377,Blake Parker,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1499,Blake Parker,Exact name match found in SbaPlayers,ACCEPT +4338,Blake Snell,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1861,Blake Snell,Exact name match found in SbaPlayers,ACCEPT +1102,Blake Swihart,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1952,Blake Swihart,Exact name match found in SbaPlayers,ACCEPT +4416,Blake Taylor,5,,no+AF8-bbref,+ACI-4,5+ACI-,1966,Blake Taylor,Exact name match found in SbaPlayers,ACCEPT +4809,Blake Treinen,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,2011,Blake Treinen,Exact name match found in SbaPlayers,ACCEPT +4286,Bo Bichette,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,190,Bo Bichette,Exact name match found in SbaPlayers,ACCEPT +4365,Bobby Dalbec,5,,no+AF8-bbref,+ACI-4,5+ACI-,458,Bobby Dalbec,Exact name match found in SbaPlayers,ACCEPT +2096,Bobby Wilson,1,,no+AF8-bbref,1,2166,Bobby Wilson,Exact name match found in SbaPlayers,ACCEPT +4548,Brad Boxberger,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,229,Brad Boxberger,Exact name match found in SbaPlayers,ACCEPT +4810,Brad Brach,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,232,Brad Brach,Exact name match found in SbaPlayers,ACCEPT +4449,Brad Hand,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,816,Brad Hand,Exact name match found in SbaPlayers,ACCEPT +4199,Brad Keller,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1016,Brad Keller,Exact name match found in SbaPlayers,ACCEPT +4453,Brad Miller,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1322,Brad Miller,Exact name match found in SbaPlayers,ACCEPT +1110,Brad Peacock,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1510,Brad Peacock,Exact name match found in SbaPlayers,ACCEPT +1111,Brad Wieck,3,,no+AF8-bbref,+ACI-2,3+ACI-,2150,Brad Wieck,Exact name match found in SbaPlayers,ACCEPT +2102,Brad Ziegler,1,,no+AF8-bbref,1,2226,Brad Ziegler,Exact name match found in SbaPlayers,ACCEPT +4615,Braden Bishop,5,,no+AF8-bbref,+ACI-4,5+ACI-,200,Braden Bishop,Exact name match found in SbaPlayers,ACCEPT +4667,Bradley Zimmer,5,,no+AF8-bbref,+ACI-4,5+ACI-,2227,Bradley Zimmer,Exact name match found in SbaPlayers,ACCEPT +4697,Brady Lail,5,,no+AF8-bbref,+ACI-4,5+ACI-,1084,Brady Lail,Exact name match found in SbaPlayers,ACCEPT +4445,Brady Singer,5,,no+AF8-bbref,+ACI-4,5+ACI-,1827,Brady Singer,Exact name match found in SbaPlayers,ACCEPT +1112,Branden Kline,3,,no+AF8-bbref,+ACI-2,3+ACI-,1059,Branden Kline,Exact name match found in SbaPlayers,ACCEPT +4562,Brandon Bailey,5,,no+AF8-bbref,+ACI-4,5+ACI-,116,Brandon Bailey,Exact name match found in SbaPlayers,ACCEPT +4159,Brandon Belt,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,173,Brandon Belt,Exact name match found in SbaPlayers,ACCEPT +4811,Brandon Bielak,5,,no+AF8-bbref,+ACI-4,5+ACI-,195,Brandon Bielak,Exact name match found in SbaPlayers,ACCEPT +4563,Brandon Brennan,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,249,Brandon Brennan,Exact name match found in SbaPlayers,ACCEPT +4289,Brandon Crawford,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,430,Brandon Crawford,Exact name match found in SbaPlayers,ACCEPT +1116,Brandon Dixon,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,520,Brandon Dixon,Exact name match found in SbaPlayers,ACCEPT +4812,Brandon Drury,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,535,Brandon Drury,Exact name match found in SbaPlayers,ACCEPT +2106,Brandon Guyer,1,,no+AF8-bbref,1,798,Brandon Guyer,Exact name match found in SbaPlayers,ACCEPT +4258,Brandon Kintzler,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1052,Brandon Kintzler,Exact name match found in SbaPlayers,ACCEPT +4432,Brandon Leibrandt,5,,no+AF8-bbref,+ACI-4,5+ACI-,1111,Brandon Leibrandt,Exact name match found in SbaPlayers,ACCEPT +4183,Brandon Lowe,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1156,Brandon Lowe,Exact name match found in SbaPlayers,ACCEPT +2108,Brandon Maurer,1,,no+AF8-bbref,1,1246,Brandon Maurer,Exact name match found in SbaPlayers,ACCEPT +2109,Brandon McCarthy,1,,no+AF8-bbref,1,1263,Brandon McCarthy,Exact name match found in SbaPlayers,ACCEPT +2110,Brandon Morrow,1,,no+AF8-bbref,1,1374,Brandon Morrow,Exact name match found in SbaPlayers,ACCEPT +4273,Brandon Nimmo,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1425,Brandon Nimmo,Exact name match found in SbaPlayers,ACCEPT +4234,Brandon Woodruff,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,2196,Brandon Woodruff,Exact name match found in SbaPlayers,ACCEPT +4813,Brandon Workman,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,2198,Brandon Workman,Exact name match found in SbaPlayers,ACCEPT +4814,Braxton Garrett,5,,no+AF8-bbref,+ACI-4,5+ACI-,701,Braxton Garrett,Exact name match found in SbaPlayers,ACCEPT +1123,Brendan McKay,3,,no+AF8-bbref,+ACI-2,3+ACI-,1280,Brendan McKay,Exact name match found in SbaPlayers,ACCEPT +4815,Brendan Rodgers,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1668,Brendan Rodgers,Exact name match found in SbaPlayers,ACCEPT +4816,Brent Rooker,5,,no+AF8-bbref,+ACI-4,5+ACI-,1708,Brent Rooker,Exact name match found in SbaPlayers,ACCEPT +4526,Brent Suter,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1943,Brent Suter,Exact name match found in SbaPlayers,ACCEPT +4532,Brett Anderson,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,66,Brett Anderson,Exact name match found in SbaPlayers,ACCEPT +2114,Brett Cecil,1,,no+AF8-bbref,1,357,Brett Cecil,Exact name match found in SbaPlayers,ACCEPT +4506,Brett Gardner,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,695,Brett Gardner,Exact name match found in SbaPlayers,ACCEPT +4482,Brett Martin,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1218,Brett Martin,Exact name match found in SbaPlayers,ACCEPT +4458,Brett Phillips,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1555,Brett Phillips,Exact name match found in SbaPlayers,ACCEPT +4239,Brian Anderson,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,69,Brian Anderson,Exact name match found in SbaPlayers,ACCEPT +4817,Brian Dozier,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,532,Brian Dozier,Exact name match found in SbaPlayers,ACCEPT +1132,Brian Flynn,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,631,Brian Flynn,Exact name match found in SbaPlayers,ACCEPT +4818,Brian Goodwin,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,749,Brian Goodwin,Exact name match found in SbaPlayers,ACCEPT +1134,Brian Johnson,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,986,Brian Johnson,Exact name match found in SbaPlayers,ACCEPT +1135,Brian McCann,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1260,Brian McCann,Exact name match found in SbaPlayers,ACCEPT +4819,Brian Moran,5,,no+AF8-bbref,+ACI-4,5+ACI-,1362,Brian Moran,Exact name match found in SbaPlayers,ACCEPT +1136,Brock Burke,3,,no+AF8-bbref,+ACI-2,3+ACI-,284,Brock Burke,Exact name match found in SbaPlayers,ACCEPT +4820,Brock Holt,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,921,Brock Holt,Exact name match found in SbaPlayers,ACCEPT +1138,Brock Stewart,3,,no+AF8-bbref,+ACI-2,3+ACI-,1908,Brock Stewart,Exact name match found in SbaPlayers,ACCEPT +4636,Brooks Raley,5,,no+AF8-bbref,+ACI-4,5+ACI-,1601,Brooks Raley,Exact name match found in SbaPlayers,ACCEPT +4707,Brusdar Graterol,5,,no+AF8-bbref,+ACI-4,5+ACI-,763,Brusdar Graterol,Exact name match found in SbaPlayers,ACCEPT +4322,Bryan Garcia,5,,no+AF8-bbref,+ACI-4,5+ACI-,685,Bryan Garcia,Exact name match found in SbaPlayers,ACCEPT +4821,Bryan Holaday,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,911,Bryan Holaday,Exact name match found in SbaPlayers,ACCEPT +2124,Bryan Mitchell,1,,no+AF8-bbref,1,1339,Bryan Mitchell,Exact name match found in SbaPlayers,ACCEPT +4618,Bryan Reynolds,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1641,Bryan Reynolds,Exact name match found in SbaPlayers,ACCEPT +1141,Bryan Shaw,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1808,Bryan Shaw,Exact name match found in SbaPlayers,ACCEPT +4287,Bryce Harper,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,823,Bryce Harper,Exact name match found in SbaPlayers,ACCEPT +4459,Bryse Wilson,5,,no+AF8-bbref,+ACI-4,5+ACI-,2171,Bryse Wilson,Exact name match found in SbaPlayers,ACCEPT +4822,Bubba Starling,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1894,Bubba Starling,Exact name match found in SbaPlayers,ACCEPT +4643,Buck Farmer,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,597,Buck Farmer,Exact name match found in SbaPlayers,ACCEPT +2128,Bud Norris,1,,no+AF8-bbref,1,1438,Bud Norris,Exact name match found in SbaPlayers,ACCEPT +1145,Buddy Boshers,3,,no+AF8-bbref,+ACI-2,3+ACI-,223,Buddy Boshers,Exact name match found in SbaPlayers,ACCEPT +4247,Burch Smith,5,,no+AF8-bbref,+ACI-1,4,5+ACI-,1844,Burch Smith,Exact name match found in SbaPlayers,ACCEPT +1146,Buster Posey,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1578,Buster Posey,Exact name match found in SbaPlayers,ACCEPT +4130,Byron Buxton,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,295,Byron Buxton,Exact name match found in SbaPlayers,ACCEPT +1167,CC Sabathia,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1734,CC Sabathia,Exact name match found in SbaPlayers,ACCEPT +4419,CJ Cron,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,441,CJ Cron,Exact name match found in SbaPlayers,ACCEPT +4373,Cal Quantrill,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1593,Cal Quantrill,Exact name match found in SbaPlayers,ACCEPT +4650,Caleb Baragar,5,,no+AF8-bbref,+ACI-4,5+ACI-,124,Caleb Baragar,Exact name match found in SbaPlayers,ACCEPT +4677,Caleb Ferguson,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,605,Caleb Ferguson,Exact name match found in SbaPlayers,ACCEPT +2132,Caleb Joseph,1,,no+AF8-bbref,1,996,Caleb Joseph,Exact name match found in SbaPlayers,ACCEPT +4310,Caleb Smith,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1845,Caleb Smith,Exact name match found in SbaPlayers,ACCEPT +4378,Caleb Thielbar,5,,no+AF8-bbref,+ACI-4,5+ACI-,1977,Caleb Thielbar,Exact name match found in SbaPlayers,ACCEPT +4328,Cam Bedrosian,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,163,Cam Bedrosian,Exact name match found in SbaPlayers,ACCEPT +4195,Cam Gallagher,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,670,Cam Gallagher,Exact name match found in SbaPlayers,ACCEPT +4823,Cam Hill,5,,no+AF8-bbref,+ACI-4,5+ACI-,902,Cam Hill,Exact name match found in SbaPlayers,ACCEPT +4824,Cameron Maybin,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1250,Cameron Maybin,Exact name match found in SbaPlayers,ACCEPT +2136,Carl Edwards Jr,1,,no+AF8-bbref,1,560,Carl Edwards Jr,Exact name match found in SbaPlayers,ACCEPT +2137,Carlos Asuaje,1,,no+AF8-bbref,1,102,Carlos Asuaje,Exact name match found in SbaPlayers,ACCEPT +4305,Carlos Carrasco,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,331,Carlos Carrasco,Exact name match found in SbaPlayers,ACCEPT +4271,Carlos Correa,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,420,Carlos Correa,Exact name match found in SbaPlayers,ACCEPT +4825,Carlos Estevez,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,585,Carlos Estevez,Exact name match found in SbaPlayers,ACCEPT +1158,Carlos Gomez,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,732,Carlos Gomez,Exact name match found in SbaPlayers,ACCEPT +1159,Carlos Gonzalez,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,740,Carlos Gonzalez,Exact name match found in SbaPlayers,ACCEPT +4826,Carlos Hernandez,5,,no+AF8-bbref,+ACI-4,5+ACI-,880,Carlos Hernandez,Exact name match found in SbaPlayers,ACCEPT +4827,Carlos Martinez,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1223,Carlos Martinez,Exact name match found in SbaPlayers,ACCEPT +4828,Carlos Rodon,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1670,Carlos Rodon,Exact name match found in SbaPlayers,ACCEPT +4564,Carlos Santana,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1759,Carlos Santana,Exact name match found in SbaPlayers,ACCEPT +2145,Carlos Tocci,1,,no+AF8-bbref,1,1993,Carlos Tocci,Exact name match found in SbaPlayers,ACCEPT +4467,Carson Fulmer,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,667,Carson Fulmer,Exact name match found in SbaPlayers,ACCEPT +4829,Carson Kelly,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1023,Carson Kelly,Exact name match found in SbaPlayers,ACCEPT +4638,Carter Kieboom,5,,no+AF8-bbref,+ACI-4,5+ACI-,1038,Carter Kieboom,Exact name match found in SbaPlayers,ACCEPT +4830,Casey Mize,5,,no+AF8-bbref,+ACI-4,5+ACI-,1342,Casey Mize,Exact name match found in SbaPlayers,ACCEPT +4831,Casey Sadler,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1736,Casey Sadler,Exact name match found in SbaPlayers,ACCEPT +4299,Cavan Biggio,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,196,Cavan Biggio,Exact name match found in SbaPlayers,ACCEPT +4592,Cedric Mullins,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1381,Cedric Mullins,Exact name match found in SbaPlayers,ACCEPT +4342,Cesar Hernandez,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,870,Cesar Hernandez,Exact name match found in SbaPlayers,ACCEPT +1170,Cesar Puello,3,,no+AF8-bbref,+ACI-2,3+ACI-,1589,Cesar Puello,Exact name match found in SbaPlayers,ACCEPT +4127,Cesar Valdez,5,,no+AF8-bbref,+ACI-4,5+ACI-,2046,Cesar Valdez,Exact name match found in SbaPlayers,ACCEPT +1171,Chad Bettis,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,186,Chad Bettis,Exact name match found in SbaPlayers,ACCEPT +4628,Chad Green,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,768,Chad Green,Exact name match found in SbaPlayers,ACCEPT +4832,Chad Kuhl,5,,no+AF8-bbref,+ACI-1,4,5+ACI-,1078,Chad Kuhl,Exact name match found in SbaPlayers,ACCEPT +4589,Chad Pinder,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1559,Chad Pinder,Exact name match found in SbaPlayers,ACCEPT +1174,Chad Sobotka,3,,no+AF8-bbref,+ACI-2,3+ACI-,1863,Chad Sobotka,Exact name match found in SbaPlayers,ACCEPT +4661,Chad Wallach,5,,no+AF8-bbref,+ACI-4,5+ACI-,2108,Chad Wallach,Exact name match found in SbaPlayers,ACCEPT +4833,Chadwick Tromp,5,,no+AF8-bbref,+ACI-4,5+ACI-,2017,Chadwick Tromp,Exact name match found in SbaPlayers,ACCEPT +4834,Chance Adams,5,,no+AF8-bbref,+ACI-4,5+ACI-,18,Chance Adams,Exact name match found in SbaPlayers,ACCEPT +4693,Chance Sisco,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1831,Chance Sisco,Exact name match found in SbaPlayers,ACCEPT +4594,Charlie Blackmon,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,205,Charlie Blackmon,Exact name match found in SbaPlayers,ACCEPT +1177,Charlie Culberson,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,453,Charlie Culberson,Exact name match found in SbaPlayers,ACCEPT +4714,Charlie Morton,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1375,Charlie Morton,Exact name match found in SbaPlayers,ACCEPT +1179,Charlie Tilson,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1991,Charlie Tilson,Exact name match found in SbaPlayers,ACCEPT +4835,Chase Anderson,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,67,Chase Anderson,Exact name match found in SbaPlayers,ACCEPT +4836,Chase De Jong,5,,no+AF8-bbref,+ACI-4,5+ACI-,478,Chase De Jong,Exact name match found in SbaPlayers,ACCEPT +2159,Chase Utley,1,,no+AF8-bbref,1,2043,Chase Utley,Exact name match found in SbaPlayers,ACCEPT +2160,Chasen Bradford,1,,no+AF8-bbref,1,234,Chasen Bradford,Exact name match found in SbaPlayers,ACCEPT +4607,Chasen Shreve,5,,no+AF8-bbref,+ACI-4,5+ACI-,1819,Chasen Shreve,Exact name match found in SbaPlayers,ACCEPT +4435,Chaz Roe,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1688,Chaz Roe,Exact name match found in SbaPlayers,ACCEPT +1182,Cheslor Cuthbert,3,,no+AF8-bbref,+ACI-2,3+ACI-,456,Cheslor Cuthbert,Exact name match found in SbaPlayers,ACCEPT +4712,Chi Chi Gonzalez,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,737,Chi Chi Gonzalez,Exact name match found in SbaPlayers,ACCEPT +1184,Chris Archer,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,85,Chris Archer,Exact name match found in SbaPlayers,ACCEPT +4188,Chris Bassitt,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,146,Chris Bassitt,Exact name match found in SbaPlayers,ACCEPT +4837,Chris Davis,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,467,Chris Davis,Exact name match found in SbaPlayers,ACCEPT +1187,Chris Devenski,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,498,Chris Devenski,Exact name match found in SbaPlayers,ACCEPT +1188,Chris Herrmann,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,887,Chris Herrmann,Exact name match found in SbaPlayers,ACCEPT +1189,Chris Iannetta,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,947,Chris Iannetta,Exact name match found in SbaPlayers,ACCEPT +4171,Chris Martin,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1214,Chris Martin,Exact name match found in SbaPlayers,ACCEPT +4573,Chris Mazza,5,,no+AF8-bbref,+ACI-4,5+ACI-,1257,Chris Mazza,Exact name match found in SbaPlayers,ACCEPT +4495,Chris Owings,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1480,Chris Owings,Exact name match found in SbaPlayers,ACCEPT +4698,Chris Paddack,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1483,Chris Paddack,Exact name match found in SbaPlayers,ACCEPT +2169,Chris Rusin,1,,no+AF8-bbref,1,1727,Chris Rusin,Exact name match found in SbaPlayers,ACCEPT +1193,Chris Sale,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1739,Chris Sale,Exact name match found in SbaPlayers,ACCEPT +4838,Chris Stratton,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1922,Chris Stratton,Exact name match found in SbaPlayers,ACCEPT +4202,Chris Taylor,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1964,Chris Taylor,Exact name match found in SbaPlayers,ACCEPT +2173,Chris Volstad,1,,no+AF8-bbref,1,2089,Chris Volstad,Exact name match found in SbaPlayers,ACCEPT +4552,Christian Arroyo,5,,no+AF8-bbref,+ACI-4,5+ACI-,96,Christian Arroyo,Exact name match found in SbaPlayers,ACCEPT +4839,Christian Colon,5,,no+AF8-bbref,+ACI-4,5+ACI-,406,Christian Colon,Exact name match found in SbaPlayers,ACCEPT +4480,Christian Vazquez,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,2063,Christian Vazquez,Exact name match found in SbaPlayers,ACCEPT +2175,Christian Villanueva,1,,no+AF8-bbref,1,2078,Christian Villanueva,Exact name match found in SbaPlayers,ACCEPT +4619,Christian Walker,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,2104,Christian Walker,Exact name match found in SbaPlayers,ACCEPT +4665,Christian Yelich,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,2212,Christian Yelich,Exact name match found in SbaPlayers,ACCEPT +4840,Christin Stewart,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1910,Christin Stewart,Exact name match found in SbaPlayers,ACCEPT +4621,Cionel Perez,5,,no+AF8-bbref,+ACI-4,5+ACI-,1540,Cionel Perez,Exact name match found in SbaPlayers,ACCEPT +1200,Clay Buchholz,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,275,Clay Buchholz,Exact name match found in SbaPlayers,ACCEPT +1201,Clay Holmes,3,,no+AF8-bbref,+ACI-2,3+ACI-,919,Clay Holmes,Exact name match found in SbaPlayers,ACCEPT +4228,Clayton Kershaw,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1034,Clayton Kershaw,Exact name match found in SbaPlayers,ACCEPT +1203,Clayton Richard,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1644,Clayton Richard,Exact name match found in SbaPlayers,ACCEPT +4186,Clint Frazier,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,649,Clint Frazier,Exact name match found in SbaPlayers,ACCEPT +4417,Codi Heuer,5,,no+AF8-bbref,+ACI-4,5+ACI-,890,Codi Heuer,Exact name match found in SbaPlayers,ACCEPT +2180,Cody Allen,1,,no+AF8-bbref,1,43,Cody Allen,Exact name match found in SbaPlayers,ACCEPT +4334,Cody Bellinger,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,170,Cody Bellinger,Exact name match found in SbaPlayers,ACCEPT +4496,Cody Ponce,5,,no+AF8-bbref,+ACI-4,5+ACI-,1573,Cody Ponce,Exact name match found in SbaPlayers,ACCEPT +4841,Cody Reed,5,,no+AF8-bbref,+ACI-1,4,5+ACI-,1625,Cody Reed,Exact name match found in SbaPlayers,ACCEPT +4583,Cody Stashak,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1895,Cody Stashak,Exact name match found in SbaPlayers,ACCEPT +1207,Cole Hamels,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,809,Cole Hamels,Exact name match found in SbaPlayers,ACCEPT +1208,Cole Irvin,3,,no+AF8-bbref,+ACI-2,3+ACI-,954,Cole Irvin,Exact name match found in SbaPlayers,ACCEPT +4842,Cole Sulser,5,,no+AF8-bbref,+ACI-4,5+ACI-,1942,Cole Sulser,Exact name match found in SbaPlayers,ACCEPT +4843,Cole Tucker,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,2022,Cole Tucker,Exact name match found in SbaPlayers,ACCEPT +4613,Colin Moran,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1360,Colin Moran,Exact name match found in SbaPlayers,ACCEPT +1211,Colin Poche,3,,no+AF8-bbref,+ACI-2,3+ACI-,1568,Colin Poche,Exact name match found in SbaPlayers,ACCEPT +4844,Colin Rea,5,,no+AF8-bbref,+ACI-4,5+ACI-,1621,Colin Rea,Exact name match found in SbaPlayers,ACCEPT +1212,Collin McHugh,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1278,Collin McHugh,Exact name match found in SbaPlayers,ACCEPT +4732,Colten Brewer,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,252,Colten Brewer,Exact name match found in SbaPlayers,ACCEPT +4491,Conner Menez,5,,no+AF8-bbref,+ACI-4,5+ACI-,1304,Conner Menez,Exact name match found in SbaPlayers,ACCEPT +4497,Connor Brogdon,5,,no+AF8-bbref,+ACI-4,5+ACI-,261,Connor Brogdon,Exact name match found in SbaPlayers,ACCEPT +1214,Corban Joseph,3,,no+AF8-bbref,+ACI-2,3+ACI-,997,Corban Joseph,Exact name match found in SbaPlayers,ACCEPT +4175,Corbin Burnes,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,286,Corbin Burnes,Exact name match found in SbaPlayers,ACCEPT +4740,Corey Dickerson,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,513,Corey Dickerson,Exact name match found in SbaPlayers,ACCEPT +1217,Corey Kluber,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1060,Corey Kluber,Exact name match found in SbaPlayers,ACCEPT +4845,Corey Knebel,5,,no+AF8-bbref,+ACI-1,4,5+ACI-,1063,Corey Knebel,Exact name match found in SbaPlayers,ACCEPT +4670,Corey Oswalt,5,,no+AF8-bbref,+ACI-1,4,5+ACI-,1472,Corey Oswalt,Exact name match found in SbaPlayers,ACCEPT +4233,Corey Seager,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1794,Corey Seager,Exact name match found in SbaPlayers,ACCEPT +1219,Cory Gearrin,3,,no+AF8-bbref,+ACI-2,3+ACI-,708,Cory Gearrin,Exact name match found in SbaPlayers,ACCEPT +1220,Cory Spangenberg,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1883,Cory Spangenberg,Exact name match found in SbaPlayers,ACCEPT +2192,Craig Gentry,1,,no+AF8-bbref,1,711,Craig Gentry,Exact name match found in SbaPlayers,ACCEPT +4846,Craig Kimbrel,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1043,Craig Kimbrel,Exact name match found in SbaPlayers,ACCEPT +4847,Craig Stammen,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1891,Craig Stammen,Exact name match found in SbaPlayers,ACCEPT +4300,Cristian Javier,5,,no+AF8-bbref,+ACI-4,5+ACI-,971,Cristian Javier,Exact name match found in SbaPlayers,ACCEPT +4450,Curt Casali,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,334,Curt Casali,Exact name match found in SbaPlayers,ACCEPT +1224,Curtis Granderson,3,,no+AF8-bbref,+ACI-2,3+ACI-,762,Curtis Granderson,Exact name match found in SbaPlayers,ACCEPT +4848,Cy Sneed,5,,no+AF8-bbref,+ACI-4,5+ACI-,1860,Cy Sneed,Exact name match found in SbaPlayers,ACCEPT +4138,DJ LeMahieu,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1114,DJ LeMahieu,Exact name match found in SbaPlayers,ACCEPT +4382,DJ Stewart,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1909,DJ Stewart,Exact name match found in SbaPlayers,ACCEPT +4849,Dakota Bacus,5,,no+AF8-bbref,+ACI-4,5+ACI-,108,Dakota Bacus,Exact name match found in SbaPlayers,ACCEPT +4477,Dakota Hudson,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,934,Dakota Hudson,Exact name match found in SbaPlayers,ACCEPT +4189,Dallas Keuchel,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1035,Dallas Keuchel,Exact name match found in SbaPlayers,ACCEPT +4850,Dan Altavilla,5,,no+AF8-bbref,+ACI-4,5+ACI-,54,Dan Altavilla,Exact name match found in SbaPlayers,ACCEPT +2197,Dan Jennings,1,,no+AF8-bbref,1,977,Dan Jennings,Exact name match found in SbaPlayers,ACCEPT +1227,Dan Otero,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1474,Dan Otero,Exact name match found in SbaPlayers,ACCEPT +1228,Dan Straily,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1919,Dan Straily,Exact name match found in SbaPlayers,ACCEPT +4678,Dan Winkler,5,,no+AF8-bbref,+ACI-1,4,5+ACI-,2178,Dan Winkler,Exact name match found in SbaPlayers,ACCEPT +4754,Dane Dunning,5,,no+AF8-bbref,+ACI-4,5+ACI-,548,Dane Dunning,Exact name match found in SbaPlayers,ACCEPT +4381,Daniel Bard,5,,no+AF8-bbref,+ACI-4,5+ACI-,125,Daniel Bard,Exact name match found in SbaPlayers,ACCEPT +4330,Daniel Castano,5,,no+AF8-bbref,+ACI-4,5+ACI-,337,Daniel Castano,Exact name match found in SbaPlayers,ACCEPT +1229,Daniel Descalso,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,492,Daniel Descalso,Exact name match found in SbaPlayers,ACCEPT +4851,Daniel Hudson,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,933,Daniel Hudson,Exact name match found in SbaPlayers,ACCEPT +4518,Daniel Mengden,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1305,Daniel Mengden,Exact name match found in SbaPlayers,ACCEPT +4852,Daniel Murphy,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1387,Daniel Murphy,Exact name match found in SbaPlayers,ACCEPT +4426,Daniel Norris,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1439,Daniel Norris,Exact name match found in SbaPlayers,ACCEPT +1234,Daniel Palka,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1491,Daniel Palka,Exact name match found in SbaPlayers,ACCEPT +4853,Daniel Ponce de Leon,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1574,Daniel Ponce de Leon,Exact name match found in SbaPlayers,ACCEPT +4854,Daniel Robertson,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1663,Daniel Robertson,Exact name match found in SbaPlayers,ACCEPT +1237,Daniel Stumpf,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1932,Daniel Stumpf,Exact name match found in SbaPlayers,ACCEPT +4855,Daniel Vogelbach,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,2085,Daniel Vogelbach,Exact name match found in SbaPlayers,ACCEPT +2208,Danny Barnes,1,,no+AF8-bbref,1,130,Danny Barnes,Exact name match found in SbaPlayers,ACCEPT +4691,Danny Duffy,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,541,Danny Duffy,Exact name match found in SbaPlayers,ACCEPT +4528,Danny Jansen,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,969,Danny Jansen,Exact name match found in SbaPlayers,ACCEPT +4397,Danny Mendick,5,,no+AF8-bbref,+ACI-4,5+ACI-,1302,Danny Mendick,Exact name match found in SbaPlayers,ACCEPT +4856,Danny Santana,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1760,Danny Santana,Exact name match found in SbaPlayers,ACCEPT +2211,Danny Valencia,1,,no+AF8-bbref,1,2050,Danny Valencia,Exact name match found in SbaPlayers,ACCEPT +4179,Dansby Swanson,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1947,Dansby Swanson,Exact name match found in SbaPlayers,ACCEPT +4412,Darin Ruf,5,,no+AF8-bbref,+ACI-4,5+ACI-,1722,Darin Ruf,Exact name match found in SbaPlayers,ACCEPT +1243,Dario Agrazal,3,,no+AF8-bbref,+ACI-2,3+ACI-,23,Dario Agrazal,Exact name match found in SbaPlayers,ACCEPT +4311,Darren ODay,5,,no+AF8-bbref,+ACI-4,5+ACI-,1449,Darren ODay,Exact name match found in SbaPlayers,ACCEPT +4220,Darwinzon Hernandez,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,877,Darwinzon Hernandez,Exact name match found in SbaPlayers,ACCEPT +4857,Daulton Varsho,5,,no+AF8-bbref,+ACI-4,5+ACI-,2058,Daulton Varsho,Exact name match found in SbaPlayers,ACCEPT +4758,David Bote,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,224,David Bote,Exact name match found in SbaPlayers,ACCEPT +4858,David Dahl,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,457,David Dahl,Exact name match found in SbaPlayers,ACCEPT +4285,David Fletcher,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,624,David Fletcher,Exact name match found in SbaPlayers,ACCEPT +1248,David Freese,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,655,David Freese,Exact name match found in SbaPlayers,ACCEPT +2217,David Freitas,1,,no+AF8-bbref,1,656,David Freitas,Exact name match found in SbaPlayers,ACCEPT +4405,David Hale,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,805,David Hale,Exact name match found in SbaPlayers,ACCEPT +1250,David Hernandez,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,868,David Hernandez,Exact name match found in SbaPlayers,ACCEPT +1251,David Hess,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,889,David Hess,Exact name match found in SbaPlayers,ACCEPT +1252,David McKay,3,,no+AF8-bbref,+ACI-2,3+ACI-,1279,David McKay,Exact name match found in SbaPlayers,ACCEPT +4624,David Peralta,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1522,David Peralta,Exact name match found in SbaPlayers,ACCEPT +4209,David Peterson,5,,no+AF8-bbref,+ACI-4,5+ACI-,1548,David Peterson,Exact name match found in SbaPlayers,ACCEPT +4694,David Phelps,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1554,David Phelps,Exact name match found in SbaPlayers,ACCEPT +1255,David Price,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1585,David Price,Exact name match found in SbaPlayers,ACCEPT +2222,David Robertson,1,,no+AF8-bbref,1,1662,David Robertson,Exact name match found in SbaPlayers,ACCEPT +1256,Dawel Lugo,3,,no+AF8-bbref,+ACI-2,3+ACI-,1166,Dawel Lugo,Exact name match found in SbaPlayers,ACCEPT +4859,Daz Cameron,5,,no+AF8-bbref,+ACI-4,5+ACI-,310,Daz Cameron,Exact name match found in SbaPlayers,ACCEPT +4339,Dean Kremer,5,,no+AF8-bbref,+ACI-4,5+ACI-,1077,Dean Kremer,Exact name match found in SbaPlayers,ACCEPT +4860,Dee Strange Gordon,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1920,Dee Strange Gordon,Exact name match found in SbaPlayers,ACCEPT +4622,Deivi Garcia,5,,no+AF8-bbref,+ACI-4,5+ACI-,688,Deivi Garcia,Exact name match found in SbaPlayers,ACCEPT +4861,Delino DeShields,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,494,Delino DeShields,Exact name match found in SbaPlayers,ACCEPT +4862,Dellin Betances,5,,no+AF8-bbref,+ACI-1,4,5+ACI-,184,Dellin Betances,Exact name match found in SbaPlayers,ACCEPT +2226,Denard Span,1,,no+AF8-bbref,1,1882,Denard Span,Exact name match found in SbaPlayers,ACCEPT +4863,Dennis Santana,5,,no+AF8-bbref,+ACI-4,5+ACI-,1762,Dennis Santana,Exact name match found in SbaPlayers,ACCEPT +4864,Deolis Guerra,5,,no+AF8-bbref,+ACI-4,5+ACI-,787,Deolis Guerra,Exact name match found in SbaPlayers,ACCEPT +1259,Dereck Rodriguez,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1676,Dereck Rodriguez,Exact name match found in SbaPlayers,ACCEPT +4629,Derek Dietrich,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,515,Derek Dietrich,Exact name match found in SbaPlayers,ACCEPT +4865,Derek Fisher,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,618,Derek Fisher,Exact name match found in SbaPlayers,ACCEPT +4866,Derek Holland,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,914,Derek Holland,Exact name match found in SbaPlayers,ACCEPT +1263,Derek Law,3,,no+AF8-bbref,+ACI-2,3+ACI-,1098,Derek Law,Exact name match found in SbaPlayers,ACCEPT +2230,Devin Mesoraco,1,,no+AF8-bbref,1,1313,Devin Mesoraco,Exact name match found in SbaPlayers,ACCEPT +4867,Devin Smeltzer,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1840,Devin Smeltzer,Exact name match found in SbaPlayers,ACCEPT +4172,Devin Williams,5,,no+AF8-bbref,+ACI-4,5+ACI-,2158,Devin Williams,Exact name match found in SbaPlayers,ACCEPT +2231,Devon Travis,1,,no+AF8-bbref,1,2009,Devon Travis,Exact name match found in SbaPlayers,ACCEPT +4868,Dexter Fowler,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,639,Dexter Fowler,Exact name match found in SbaPlayers,ACCEPT +4461,Didi Gregorius,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,772,Didi Gregorius,Exact name match found in SbaPlayers,ACCEPT +4277,Diego Castillo,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,341,Diego Castillo,Exact name match found in SbaPlayers,ACCEPT +1268,Dillon Peters,3,,no+AF8-bbref,+ACI-2,3+ACI-,1544,Dillon Peters,Exact name match found in SbaPlayers,ACCEPT +4390,Dillon Tate,5,,no+AF8-bbref,+ACI-4,5+ACI-,1959,Dillon Tate,Exact name match found in SbaPlayers,ACCEPT +4180,Dinelson Lamet,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1090,Dinelson Lamet,Exact name match found in SbaPlayers,ACCEPT +2235,Dixon Machado,1,,no+AF8-bbref,1,1174,Dixon Machado,Exact name match found in SbaPlayers,ACCEPT +1272,Domingo German,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,713,Domingo German,Exact name match found in SbaPlayers,ACCEPT +4869,Domingo Santana,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1761,Domingo Santana,Exact name match found in SbaPlayers,ACCEPT +4870,Dominic Leone,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1116,Dominic Leone,Exact name match found in SbaPlayers,ACCEPT +4211,Dominic Smith,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1849,Dominic Smith,Exact name match found in SbaPlayers,ACCEPT +4306,Donovan Solano,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1868,Donovan Solano,Exact name match found in SbaPlayers,ACCEPT +2240,Doug Fister,1,,no+AF8-bbref,1,619,Doug Fister,Exact name match found in SbaPlayers,ACCEPT +4871,Dovydas Neverauskas,5,,no+AF8-bbref,+ACI-1,4,5+ACI-,1416,Dovydas Neverauskas,Exact name match found in SbaPlayers,ACCEPT +4872,Drew Butera,5,,no+AF8-bbref,+ACI-4,5+ACI-,290,Drew Butera,Exact name match found in SbaPlayers,ACCEPT +4221,Drew Pomeranz,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1572,Drew Pomeranz,Exact name match found in SbaPlayers,ACCEPT +4873,Drew Rasmussen,5,,no+AF8-bbref,+ACI-4,5+ACI-,1618,Drew Rasmussen,Exact name match found in SbaPlayers,ACCEPT +2243,Drew Rucinski,1,,no+AF8-bbref,1,1720,Drew Rucinski,Exact name match found in SbaPlayers,ACCEPT +4874,Drew Smith,5,,no+AF8-bbref,+ACI-4,5+ACI-,1848,Drew Smith,Exact name match found in SbaPlayers,ACCEPT +4535,Drew Smyly,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1858,Drew Smyly,Exact name match found in SbaPlayers,ACCEPT +2244,Drew Steckenrider,1,,no+AF8-bbref,1,1898,Drew Steckenrider,Exact name match found in SbaPlayers,ACCEPT +1279,Drew VerHagen,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,2070,Drew VerHagen,Exact name match found in SbaPlayers,ACCEPT +4875,Duane Underwood,5,,no+AF8-bbref,+ACI-4,5+ACI-,2033,Duane Underwood,Exact name match found in SbaPlayers,ACCEPT +2246,Dustin Fowler,1,,no+AF8-bbref,1,640,Dustin Fowler,Exact name match found in SbaPlayers,ACCEPT +4876,Dustin Garneau,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,697,Dustin Garneau,Exact name match found in SbaPlayers,ACCEPT +4284,Dustin May,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1249,Dustin May,Exact name match found in SbaPlayers,ACCEPT +4877,Dwight Smith Jr,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1855,Dwight Smith Jr,Exact name match found in SbaPlayers,ACCEPT +4242,Dylan Bundy,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,280,Dylan Bundy,Exact name match found in SbaPlayers,ACCEPT +4878,Dylan Carlson,5,,no+AF8-bbref,+ACI-4,5+ACI-,327,Dylan Carlson,Exact name match found in SbaPlayers,ACCEPT +4765,Dylan Cease,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,355,Dylan Cease,Exact name match found in SbaPlayers,ACCEPT +4879,Dylan Covey,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,425,Dylan Covey,Exact name match found in SbaPlayers,ACCEPT +4568,Dylan Floro,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,629,Dylan Floro,Exact name match found in SbaPlayers,ACCEPT +4167,Dylan Moore,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1358,Dylan Moore,Exact name match found in SbaPlayers,ACCEPT +2250,Eddie Butler,1,,no+AF8-bbref,1,291,Eddie Butler,Exact name match found in SbaPlayers,ACCEPT +4481,Eddie Rosario,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1710,Eddie Rosario,Exact name match found in SbaPlayers,ACCEPT +4880,Eddy Alvarez,5,,no+AF8-bbref,+ACI-4,5+ACI-,60,Eddy Alvarez,Exact name match found in SbaPlayers,ACCEPT +1289,Edgar Garcia,3,,no+AF8-bbref,+ACI-2,3+ACI-,686,Edgar Garcia,Exact name match found in SbaPlayers,ACCEPT +2252,Edgar Santana,1,,no+AF8-bbref,1,1763,Edgar Santana,Exact name match found in SbaPlayers,ACCEPT +4881,Eduardo Escobar,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,581,Eduardo Escobar,Exact name match found in SbaPlayers,ACCEPT +1291,Eduardo Nunez,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1442,Eduardo Nunez,Exact name match found in SbaPlayers,ACCEPT +1292,Eduardo Rodriguez,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1675,Eduardo Rodriguez,Exact name match found in SbaPlayers,ACCEPT +2256,Edubray Ramos,1,,no+AF8-bbref,1,1613,Edubray Ramos,Exact name match found in SbaPlayers,ACCEPT +4882,Edward Olivares,5,,no+AF8-bbref,+ACI-4,5+ACI-,1458,Edward Olivares,Exact name match found in SbaPlayers,ACCEPT +4243,Edwin Diaz,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,503,Edwin Diaz,Exact name match found in SbaPlayers,ACCEPT +4883,Edwin Encarnacion,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,571,Edwin Encarnacion,Exact name match found in SbaPlayers,ACCEPT +1295,Edwin Jackson,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,957,Edwin Jackson,Exact name match found in SbaPlayers,ACCEPT +4255,Edwin Rios,5,,no+AF8-bbref,+ACI-4,5+ACI-,1651,Edwin Rios,Exact name match found in SbaPlayers,ACCEPT +4735,Ehire Adrianza,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,22,Ehire Adrianza,Exact name match found in SbaPlayers,ACCEPT +4884,Eli White,5,,no+AF8-bbref,+ACI-4,5+ACI-,2140,Eli White,Exact name match found in SbaPlayers,ACCEPT +4885,Elias Diaz,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,502,Elias Diaz,Exact name match found in SbaPlayers,ACCEPT +4335,Elieser Hernandez,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,874,Elieser Hernandez,Exact name match found in SbaPlayers,ACCEPT +4391,Eloy Jimenez,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,980,Eloy Jimenez,Exact name match found in SbaPlayers,ACCEPT +4886,Elvis Andrus,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,77,Elvis Andrus,Exact name match found in SbaPlayers,ACCEPT +1301,Elvis Luciano,3,,no+AF8-bbref,+ACI-2,3+ACI-,1161,Elvis Luciano,Exact name match found in SbaPlayers,ACCEPT +4751,Emilio Pagan,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1484,Emilio Pagan,Exact name match found in SbaPlayers,ACCEPT +4887,Ender Inciarte,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,952,Ender Inciarte,Exact name match found in SbaPlayers,ACCEPT +4520,Enoli Paredes,5,,no+AF8-bbref,+ACI-4,5+ACI-,1496,Enoli Paredes,Exact name match found in SbaPlayers,ACCEPT +4350,Enrique Hernandez,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,871,Enrique Hernandez,Exact name match found in SbaPlayers,ACCEPT +4146,Erasmo Ramirez,5,,no+AF8-bbref,+ACI-4,5+ACI-,1604,Erasmo Ramirez,Exact name match found in SbaPlayers,ACCEPT +4888,Eric Haase,5,,no+AF8-bbref,+ACI-4,5+ACI-,801,Eric Haase,Exact name match found in SbaPlayers,ACCEPT +4331,Eric Hosmer,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,926,Eric Hosmer,Exact name match found in SbaPlayers,ACCEPT +4889,Eric Lauer,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1096,Eric Lauer,Exact name match found in SbaPlayers,ACCEPT +2519,Eric Skoglund,1,,no+AF8-bbref,1,1834,Eric Skoglund,Exact name match found in SbaPlayers,ACCEPT +4890,Eric Sogard,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1865,Eric Sogard,Exact name match found in SbaPlayers,ACCEPT +4891,Eric Thames,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1976,Eric Thames,Exact name match found in SbaPlayers,ACCEPT +4510,Eric Yardley,5,,no+AF8-bbref,+ACI-4,5+ACI-,2209,Eric Yardley,Exact name match found in SbaPlayers,ACCEPT +2521,Eric Young Jr,1,,no+AF8-bbref,1,2221,Eric Young Jr,Exact name match found in SbaPlayers,ACCEPT +4218,Erick Fedde,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,600,Erick Fedde,Exact name match found in SbaPlayers,ACCEPT +4767,Erik Gonzalez,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,742,Erik Gonzalez,Exact name match found in SbaPlayers,ACCEPT +4142,Erik Kratz,5,,no+AF8-bbref,+ACI-1,4,5+ACI-,1074,Erik Kratz,Exact name match found in SbaPlayers,ACCEPT +4892,Erik Swanson,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1948,Erik Swanson,Exact name match found in SbaPlayers,ACCEPT +4608,Eugenio Suarez,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1934,Eugenio Suarez,Exact name match found in SbaPlayers,ACCEPT +2526,Evan Gattis,1,,no+AF8-bbref,1,705,Evan Gattis,Exact name match found in SbaPlayers,ACCEPT +4584,Evan Longoria,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1140,Evan Longoria,Exact name match found in SbaPlayers,ACCEPT +4498,Evan Marshall,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1207,Evan Marshall,Exact name match found in SbaPlayers,ACCEPT +4722,Evan Phillips,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,,,No bbref+AF8-id available,CREATE+AF8-NEW +4768,Evan White,5,,no+AF8-bbref,+ACI-4,5+ACI-,2142,Evan White,Exact name match found in SbaPlayers,ACCEPT +1316,Felipe Vazquez,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,2064,Felipe Vazquez,Exact name match found in SbaPlayers,ACCEPT +1317,Felix Hernandez,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,867,Felix Hernandez,Exact name match found in SbaPlayers,ACCEPT +4542,Felix Pena,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1518,Felix Pena,Exact name match found in SbaPlayers,ACCEPT +1319,Fernando Rodney,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1669,Fernando Rodney,Exact name match found in SbaPlayers,ACCEPT +2532,Fernando Romero,1,,no+AF8-bbref,1,1701,Fernando Romero,Exact name match found in SbaPlayers,ACCEPT +4182,Fernando Tatis Jr,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1960,Fernando Tatis Jr,Exact name match found in SbaPlayers,ACCEPT +4398,Framber Valdez,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,2048,Framber Valdez,Exact name match found in SbaPlayers,ACCEPT +4893,Franchy Cordero,5,,no+AF8-bbref,+ACI-4,5+ACI-,418,Franchy Cordero,Exact name match found in SbaPlayers,ACCEPT +2533,Francisco Arcia,1,,no+AF8-bbref,1,87,Francisco Arcia,Exact name match found in SbaPlayers,ACCEPT +4169,Francisco Cervelli,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,359,Francisco Cervelli,Exact name match found in SbaPlayers,ACCEPT +4524,Francisco Lindor,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1124,Francisco Lindor,Exact name match found in SbaPlayers,ACCEPT +1324,Francisco Liriano,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1126,Francisco Liriano,Exact name match found in SbaPlayers,ACCEPT +4894,Francisco Mejia,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,,,No bbref+AF8-id available,CREATE+AF8-NEW +2537,Francisco Pena,1,,no+AF8-bbref,1,1517,Francisco Pena,Exact name match found in SbaPlayers,ACCEPT +4895,Frankie Montas,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1351,Frankie Montas,Exact name match found in SbaPlayers,ACCEPT +4896,Franklin Barreto,5,,no+AF8-bbref,+ACI-4,5+ACI-,140,Franklin Barreto,Exact name match found in SbaPlayers,ACCEPT +4897,Franklyn Kilome,5,,no+AF8-bbref,+ACI-4,5+ACI-,1041,Franklyn Kilome,Exact name match found in SbaPlayers,ACCEPT +4695,Franmil Reyes,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1634,Franmil Reyes,Exact name match found in SbaPlayers,ACCEPT +4148,Freddie Freeman,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,652,Freddie Freeman,Exact name match found in SbaPlayers,ACCEPT +4675,Freddy Galvis,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,675,Freddy Galvis,Exact name match found in SbaPlayers,ACCEPT +4632,Freddy Peralta,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1525,Freddy Peralta,Exact name match found in SbaPlayers,ACCEPT +4898,Gabe Speier,5,,no+AF8-bbref,+ACI-4,5+ACI-,1885,Gabe Speier,Exact name match found in SbaPlayers,ACCEPT +2542,Gabriel Moya,1,,no+AF8-bbref,1,1379,Gabriel Moya,Exact name match found in SbaPlayers,ACCEPT +1331,Gabriel Ynoa,3,,no+AF8-bbref,+ACI-2,3+ACI-,2214,Gabriel Ynoa,Exact name match found in SbaPlayers,ACCEPT +4547,Garrett Cooper,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,415,Garrett Cooper,Exact name match found in SbaPlayers,ACCEPT +4256,Garrett Crochet,5,,no+AF8-bbref,+ACI-4,5+ACI-,439,Garrett Crochet,Exact name match found in SbaPlayers,ACCEPT +4899,Garrett Hampson,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,814,Garrett Hampson,Exact name match found in SbaPlayers,ACCEPT +4399,Garrett Richards,5,,no+AF8-bbref,+ACI-1,4,5+ACI-,1645,Garrett Richards,Exact name match found in SbaPlayers,ACCEPT +4900,Gary Sanchez,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1746,Gary Sanchez,Exact name match found in SbaPlayers,ACCEPT +4193,Gavin Lux,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1169,Gavin Lux,Exact name match found in SbaPlayers,ACCEPT +4752,Genesis Cabrera,5,,no+AF8-bbref,+ACI-4,5+ACI-,301,Genesis Cabrera,Exact name match found in SbaPlayers,ACCEPT +4901,Geoff Hartlieb,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,833,Geoff Hartlieb,Exact name match found in SbaPlayers,ACCEPT +4198,George Springer,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1888,George Springer,Exact name match found in SbaPlayers,ACCEPT +1338,Gerardo Parra,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1501,Gerardo Parra,Exact name match found in SbaPlayers,ACCEPT +1339,Gerardo Reyes,3,,no+AF8-bbref,+ACI-2,3+ACI-,1636,Gerardo Reyes,Exact name match found in SbaPlayers,ACCEPT +4360,German Marquez,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1204,German Marquez,Exact name match found in SbaPlayers,ACCEPT +4215,Gerrit Cole,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,398,Gerrit Cole,Exact name match found in SbaPlayers,ACCEPT +4452,Giancarlo Stanton,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1893,Giancarlo Stanton,Exact name match found in SbaPlayers,ACCEPT +4902,Gio Gonzalez,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,739,Gio Gonzalez,Exact name match found in SbaPlayers,ACCEPT +4150,Gio Urshela,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,2042,Gio Urshela,Exact name match found in SbaPlayers,ACCEPT +4903,Giovanny Gallegos,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,672,Giovanny Gallegos,Exact name match found in SbaPlayers,ACCEPT +1346,Glenn Sparkman,3,,no+AF8-bbref,+ACI-2,3+ACI-,1884,Glenn Sparkman,Exact name match found in SbaPlayers,ACCEPT +4904,Gleyber Torres,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,2003,Gleyber Torres,Exact name match found in SbaPlayers,ACCEPT +1348,Gordon Beckham,3,,no+AF8-bbref,+ACI-2,3+ACI-,160,Gordon Beckham,Exact name match found in SbaPlayers,ACCEPT +2552,Gorkys Hernandez,1,,no+AF8-bbref,1,869,Gorkys Hernandez,Exact name match found in SbaPlayers,ACCEPT +4366,Grant Dayton,5,,no+AF8-bbref,+ACI-4,5+ACI-,475,Grant Dayton,Exact name match found in SbaPlayers,ACCEPT +4905,Grayson Greiner,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,773,Grayson Greiner,Exact name match found in SbaPlayers,ACCEPT +4601,Greg Allen,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,44,Greg Allen,Exact name match found in SbaPlayers,ACCEPT +2554,Greg Bird,1,,no+AF8-bbref,1,197,Greg Bird,Exact name match found in SbaPlayers,ACCEPT +4906,Greg Garcia,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,681,Greg Garcia,Exact name match found in SbaPlayers,ACCEPT +4446,Greg Holland,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,915,Greg Holland,Exact name match found in SbaPlayers,ACCEPT +2557,Gregor Blanco,1,,no+AF8-bbref,1,207,Gregor Blanco,Exact name match found in SbaPlayers,ACCEPT +4907,Gregory Polanco,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1569,Gregory Polanco,Exact name match found in SbaPlayers,ACCEPT +4708,Gregory Soto,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1878,Gregory Soto,Exact name match found in SbaPlayers,ACCEPT +4396,Griffin Canning,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,317,Griffin Canning,Exact name match found in SbaPlayers,ACCEPT +4176,Guillermo Heredia,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,862,Guillermo Heredia,Exact name match found in SbaPlayers,ACCEPT +4908,Hansel Robles,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1665,Hansel Robles,Exact name match found in SbaPlayers,ACCEPT +4609,Hanser Alberto,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,30,Hanser Alberto,Exact name match found in SbaPlayers,ACCEPT +4438,Harold Castro,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,349,Harold Castro,Exact name match found in SbaPlayers,ACCEPT +1360,Harold Ramirez,3,,no+AF8-bbref,+ACI-2,3+ACI-,1609,Harold Ramirez,Exact name match found in SbaPlayers,ACCEPT +4274,Harrison Bader,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,110,Harrison Bader,Exact name match found in SbaPlayers,ACCEPT +2562,Harrison Musgrave,1,,no+AF8-bbref,1,1393,Harrison Musgrave,Exact name match found in SbaPlayers,ACCEPT +2563,Heath Fillmyer,1,,no+AF8-bbref,1,616,Heath Fillmyer,Exact name match found in SbaPlayers,ACCEPT +4909,Heath Hembree,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,854,Heath Hembree,Exact name match found in SbaPlayers,ACCEPT +4910,Hector Neris,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1413,Hector Neris,Exact name match found in SbaPlayers,ACCEPT +1364,Hector Noesi,3,,no+AF8-bbref,+ACI-2,3+ACI-,1429,Hector Noesi,Exact name match found in SbaPlayers,ACCEPT +4911,Hector Rondon,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1706,Hector Rondon,Exact name match found in SbaPlayers,ACCEPT +1366,Hector Santiago,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1765,Hector Santiago,Exact name match found in SbaPlayers,ACCEPT +1367,Hector Velazquez,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,2066,Hector Velazquez,Exact name match found in SbaPlayers,ACCEPT +1368,Hernan Perez,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1536,Hernan Perez,Exact name match found in SbaPlayers,ACCEPT +4912,Hoby Milner,5,,no+AF8-bbref,+ACI-4,5+ACI-,1332,Hoby Milner,Exact name match found in SbaPlayers,ACCEPT +4379,Homer Bailey,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,114,Homer Bailey,Exact name match found in SbaPlayers,ACCEPT +4913,Howie Kendrick,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1028,Howie Kendrick,Exact name match found in SbaPlayers,ACCEPT +4723,Huascar Ynoa,5,,no+AF8-bbref,+ACI-4,5+ACI-,2215,Huascar Ynoa,Exact name match found in SbaPlayers,ACCEPT +1371,Humberto Arteaga,3,,no+AF8-bbref,+ACI-2,3+ACI-,97,Humberto Arteaga,Exact name match found in SbaPlayers,ACCEPT +4914,Humberto Castellanos,5,,no+AF8-bbref,+ACI-4,5+ACI-,339,Humberto Castellanos,Exact name match found in SbaPlayers,ACCEPT +4915,Humberto Mejia,5,,no+AF8-bbref,+ACI-4,5+ACI-,1297,Humberto Mejia,Exact name match found in SbaPlayers,ACCEPT +4699,Hunter Dozier,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,533,Hunter Dozier,Exact name match found in SbaPlayers,ACCEPT +4916,Hunter Harvey,5,,no+AF8-bbref,+ACI-4,5+ACI-,836,Hunter Harvey,Exact name match found in SbaPlayers,ACCEPT +4917,Hunter Pence,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1520,Hunter Pence,Exact name match found in SbaPlayers,ACCEPT +4918,Hunter Renfroe,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1631,Hunter Renfroe,Exact name match found in SbaPlayers,ACCEPT +2575,Hunter Strickland,1,,no+AF8-bbref,1,1925,Hunter Strickland,Exact name match found in SbaPlayers,ACCEPT +1375,Hunter Wood,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,2192,Hunter Wood,Exact name match found in SbaPlayers,ACCEPT +4137,Hyun Jin Ryu,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1733,Hyun Jin Ryu,Exact name match found in SbaPlayers,ACCEPT +4147,Ian Anderson,5,,no+AF8-bbref,+ACI-4,5+ACI-,74,Ian Anderson,Exact name match found in SbaPlayers,ACCEPT +1377,Ian Desmond,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,495,Ian Desmond,Exact name match found in SbaPlayers,ACCEPT +4919,Ian Gibaut,5,,no+AF8-bbref,+ACI-4,5+ACI-,714,Ian Gibaut,Exact name match found in SbaPlayers,ACCEPT +4406,Ian Happ,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,820,Ian Happ,Exact name match found in SbaPlayers,ACCEPT +4920,Ian Kennedy,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1029,Ian Kennedy,Exact name match found in SbaPlayers,ACCEPT +1380,Ian Kinsler,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1051,Ian Kinsler,Exact name match found in SbaPlayers,ACCEPT +4921,Ildemaro Vargas,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,2054,Ildemaro Vargas,Exact name match found in SbaPlayers,ACCEPT +4922,Isaac Paredes,5,,no+AF8-bbref,+ACI-4,5+ACI-,1497,Isaac Paredes,Exact name match found in SbaPlayers,ACCEPT +4923,Isan Diaz,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,508,Isan Diaz,Exact name match found in SbaPlayers,ACCEPT +4238,Isiah Kiner Falefa,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1044,Isiah Kiner Falefa,Exact name match found in SbaPlayers,ACCEPT +4924,Ivan Nova,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1441,Ivan Nova,Exact name match found in SbaPlayers,ACCEPT +4291,JA Happ,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,821,JA Happ,Exact name match found in SbaPlayers,ACCEPT +2625,JB Shuck,1,,no+AF8-bbref,1,1820,JB Shuck,Exact name match found in SbaPlayers,ACCEPT +4332,JB Wendelken,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,2134,JB Wendelken,Exact name match found in SbaPlayers,ACCEPT +4772,JD Davis,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,474,JD Davis,Exact name match found in SbaPlayers,ACCEPT +4942,JD Martinez,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1229,JD Martinez,Exact name match found in SbaPlayers,ACCEPT +4343,JP Crawford,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,432,JP Crawford,Exact name match found in SbaPlayers,ACCEPT +4990,JP Feyereisen,5,,no+AF8-bbref,+ACI-4,5+ACI-,612,JP Feyereisen,Exact name match found in SbaPlayers,ACCEPT +4991,JT Brubaker,5,,no+AF8-bbref,+ACI-4,5+ACI-,269,JT Brubaker,Exact name match found in SbaPlayers,ACCEPT +4320,JT Realmuto,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1622,JT Realmuto,Exact name match found in SbaPlayers,ACCEPT +4992,JT Riddle,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1648,JT Riddle,Exact name match found in SbaPlayers,ACCEPT +4439,JaCoby Jones,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,991,JaCoby Jones,Exact name match found in SbaPlayers,ACCEPT +4743,Jace Fry,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,661,Jace Fry,Exact name match found in SbaPlayers,ACCEPT +4590,Jace Peterson,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1547,Jace Peterson,Exact name match found in SbaPlayers,ACCEPT +4925,Jack Flaherty,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,622,Jack Flaherty,Exact name match found in SbaPlayers,ACCEPT +4926,Jack Mayfield,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1252,Jack Mayfield,Exact name match found in SbaPlayers,ACCEPT +4206,Jackie Bradley Jr,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,239,Jackie Bradley Jr,Exact name match found in SbaPlayers,ACCEPT +2591,Jackson Stephens,1,,no+AF8-bbref,1,1903,Jackson Stephens,Exact name match found in SbaPlayers,ACCEPT +4927,Jacob Barnes,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,133,Jacob Barnes,Exact name match found in SbaPlayers,ACCEPT +2594,Jacob Nix,1,,no+AF8-bbref,1,1426,Jacob Nix,Exact name match found in SbaPlayers,ACCEPT +4222,Jacob Nottingham,5,,no+AF8-bbref,+ACI-4,5+ACI-,1440,Jacob Nottingham,Exact name match found in SbaPlayers,ACCEPT +2595,Jacob Rhame,1,,no+AF8-bbref,1,1642,Jacob Rhame,Exact name match found in SbaPlayers,ACCEPT +4292,Jacob Stallings,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1890,Jacob Stallings,Exact name match found in SbaPlayers,ACCEPT +4928,Jacob Waguespack,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,2098,Jacob Waguespack,Exact name match found in SbaPlayers,ACCEPT +4463,Jacob Webb,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,2126,Jacob Webb,Exact name match found in SbaPlayers,ACCEPT +4152,Jacob deGrom,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,484,Jacob deGrom,Exact name match found in SbaPlayers,ACCEPT +4319,Jaime Barria,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,141,Jaime Barria,Exact name match found in SbaPlayers,ACCEPT +4929,Jairo Diaz,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,501,Jairo Diaz,Exact name match found in SbaPlayers,ACCEPT +4420,Jake Arrieta,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,94,Jake Arrieta,Exact name match found in SbaPlayers,ACCEPT +1405,Jake Bauers,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,151,Jake Bauers,Exact name match found in SbaPlayers,ACCEPT +4593,Jake Cave,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,354,Jake Cave,Exact name match found in SbaPlayers,ACCEPT +4262,Jake Cronenworth,5,,no+AF8-bbref,+ACI-4,5+ACI-,442,Jake Cronenworth,Exact name match found in SbaPlayers,ACCEPT +4173,Jake Diekman,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,514,Jake Diekman,Exact name match found in SbaPlayers,ACCEPT +2601,Jake Faria,1,,no+AF8-bbref,1,596,Jake Faria,Exact name match found in SbaPlayers,ACCEPT +4930,Jake Fraley,5,,no+AF8-bbref,+ACI-4,5+ACI-,641,Jake Fraley,Exact name match found in SbaPlayers,ACCEPT +1408,Jake Jewell,3,,no+AF8-bbref,+ACI-2,3+ACI-,978,Jake Jewell,Exact name match found in SbaPlayers,ACCEPT +4931,Jake Lamb,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1087,Jake Lamb,Exact name match found in SbaPlayers,ACCEPT +4415,Jake Marisnick,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1200,Jake Marisnick,Exact name match found in SbaPlayers,ACCEPT +4585,Jake McGee,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1274,Jake McGee,Exact name match found in SbaPlayers,ACCEPT +4932,Jake Newberry,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1418,Jake Newberry,Exact name match found in SbaPlayers,ACCEPT +4933,Jake Noll,5,,no+AF8-bbref,+ACI-4,5+ACI-,1435,Jake Noll,Exact name match found in SbaPlayers,ACCEPT +4934,Jake Odorizzi,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1452,Jake Odorizzi,Exact name match found in SbaPlayers,ACCEPT +2606,Jake Petricka,1,,no+AF8-bbref,1,1550,Jake Petricka,Exact name match found in SbaPlayers,ACCEPT +1414,Jake Rogers,3,,no+AF8-bbref,+ACI-2,3+ACI-,1692,Jake Rogers,Exact name match found in SbaPlayers,ACCEPT +4935,Jake Woodford,5,,no+AF8-bbref,+ACI-4,5+ACI-,2195,Jake Woodford,Exact name match found in SbaPlayers,ACCEPT +4936,Jakob Junis,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1004,Jakob Junis,Exact name match found in SbaPlayers,ACCEPT +4630,Jalen Beeks,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,165,Jalen Beeks,Exact name match found in SbaPlayers,ACCEPT +4216,James Hoyt,5,,no+AF8-bbref,+ACI-4,5+ACI-,931,James Hoyt,Exact name match found in SbaPlayers,ACCEPT +4549,James Karinchak,5,,no+AF8-bbref,+ACI-4,5+ACI-,1009,James Karinchak,Exact name match found in SbaPlayers,ACCEPT +4161,James McCann,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1261,James McCann,Exact name match found in SbaPlayers,ACCEPT +4937,James Paxton,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1506,James Paxton,Exact name match found in SbaPlayers,ACCEPT +2611,James Pazos,1,,no+AF8-bbref,1,1509,James Pazos,Exact name match found in SbaPlayers,ACCEPT +2612,James Shields,1,,no+AF8-bbref,1,1816,James Shields,Exact name match found in SbaPlayers,ACCEPT +1419,Jameson Taillon,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1954,Jameson Taillon,Exact name match found in SbaPlayers,ACCEPT +1420,Jandel Gustave,3,,no+AF8-bbref,+ACI-2,3+ACI-,795,Jandel Gustave,Exact name match found in SbaPlayers,ACCEPT +4938,Jared Hughes,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,937,Jared Hughes,Exact name match found in SbaPlayers,ACCEPT +4939,Jared Oliva,5,,no+AF8-bbref,+ACI-4,5+ACI-,1457,Jared Oliva,Exact name match found in SbaPlayers,ACCEPT +4367,Jared Walsh,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,2111,Jared Walsh,Exact name match found in SbaPlayers,ACCEPT +4490,Jarlin Garcia,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,684,Jarlin Garcia,Exact name match found in SbaPlayers,ACCEPT +4940,Jarrod Dyson,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,555,Jarrod Dyson,Exact name match found in SbaPlayers,ACCEPT +4718,Jason Adam,5,,no+AF8-bbref,+ACI-1,4,5+ACI-,13,Jason Adam,Exact name match found in SbaPlayers,ACCEPT +4941,Jason Castro,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,347,Jason Castro,Exact name match found in SbaPlayers,ACCEPT +2618,Jason Hammel,1,,no+AF8-bbref,1,813,Jason Hammel,Exact name match found in SbaPlayers,ACCEPT +4265,Jason Heyward,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,891,Jason Heyward,Exact name match found in SbaPlayers,ACCEPT +4455,Jason Kipnis,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1053,Jason Kipnis,Exact name match found in SbaPlayers,ACCEPT +1428,Jason Vargas,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,2053,Jason Vargas,Exact name match found in SbaPlayers,ACCEPT +4545,Javier Baez,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,112,Javier Baez,Exact name match found in SbaPlayers,ACCEPT +3810,Javy A Guerra,4,,no+AF8-bbref,4,PARTIAL:784,Javy Guerra,Partial name match +AC0- REVIEW NEEDED,USE+AF8-SBA+AF8-784 +4588,Javy Guerra,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,784,Javy Guerra,Exact name match found in SbaPlayers,ACCEPT +4672,Jay Bruce,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,270,Jay Bruce,Exact name match found in SbaPlayers,ACCEPT +1432,Jay Jackson,3,,no+AF8-bbref,+ACI-2,3+ACI-,959,Jay Jackson,Exact name match found in SbaPlayers,ACCEPT +4700,Jazz Chisholm,5,,no+AF8-bbref,+ACI-4,5+ACI-,375,Jazz Chisholm,Exact name match found in SbaPlayers,ACCEPT +4370,Jean Segura,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1796,Jean Segura,Exact name match found in SbaPlayers,ACCEPT +2627,Jeanmar Gomez,1,,no+AF8-bbref,1,733,Jeanmar Gomez,Exact name match found in SbaPlayers,ACCEPT +2628,Jed Lowrie,1,,no+AF8-bbref,1,1158,Jed Lowrie,Exact name match found in SbaPlayers,ACCEPT +4414,Jedd Gyorko,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,800,Jedd Gyorko,Exact name match found in SbaPlayers,ACCEPT +1435,Jeff Brigham,3,,no+AF8-bbref,+ACI-2,3+ACI-,257,Jeff Brigham,Exact name match found in SbaPlayers,ACCEPT +4943,Jeff Hoffman,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,910,Jeff Hoffman,Exact name match found in SbaPlayers,ACCEPT +4312,Jeff Mathis,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1235,Jeff Mathis,Exact name match found in SbaPlayers,ACCEPT +4321,Jeff McNeil,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1287,Jeff McNeil,Exact name match found in SbaPlayers,ACCEPT +4944,Jeff Samardzija,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1740,Jeff Samardzija,Exact name match found in SbaPlayers,ACCEPT +4945,Jeffrey Springs,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1889,Jeffrey Springs,Exact name match found in SbaPlayers,ACCEPT +2633,Jefry Marte,1,,no+AF8-bbref,1,1209,Jefry Marte,Exact name match found in SbaPlayers,ACCEPT +1441,Jefry Rodriguez,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1677,Jefry Rodriguez,Exact name match found in SbaPlayers,ACCEPT +4226,Jeimer Candelario,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,315,Jeimer Candelario,Exact name match found in SbaPlayers,ACCEPT +1443,Jerad Eickhoff,3,,no+AF8-bbref,+ACI-2,3+ACI-,563,Jerad Eickhoff,Exact name match found in SbaPlayers,ACCEPT +1444,Jeremy Hellickson,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,852,Jeremy Hellickson,Exact name match found in SbaPlayers,ACCEPT +4240,Jeremy Jeffress,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,976,Jeremy Jeffress,Exact name match found in SbaPlayers,ACCEPT +1446,Jerry Blevins,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,213,Jerry Blevins,Exact name match found in SbaPlayers,ACCEPT +1447,Jesse Biddle,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,192,Jesse Biddle,Exact name match found in SbaPlayers,ACCEPT +4946,Jesse Chavez,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,370,Jesse Chavez,Exact name match found in SbaPlayers,ACCEPT +4235,Jesse Hahn,5,,no+AF8-bbref,+ACI-4,5+ACI-,804,Jesse Hahn,Exact name match found in SbaPlayers,ACCEPT +4325,Jesse Winker,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,2177,Jesse Winker,Exact name match found in SbaPlayers,ACCEPT +4595,Jesus Aguilar,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,25,Jesus Aguilar,Exact name match found in SbaPlayers,ACCEPT +4550,Jesus Luzardo,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1170,Jesus Luzardo,Exact name match found in SbaPlayers,ACCEPT +4947,Jesus Sanchez,5,,no+AF8-bbref,+ACI-4,5+ACI-,1749,Jesus Sanchez,Exact name match found in SbaPlayers,ACCEPT +1452,Jesus Sucre,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1939,Jesus Sucre,Exact name match found in SbaPlayers,ACCEPT +4229,Jesus Tinoco,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1992,Jesus Tinoco,Exact name match found in SbaPlayers,ACCEPT +4596,Jeurys Familia,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,595,Jeurys Familia,Exact name match found in SbaPlayers,ACCEPT +1455,Jhoulys Chacin,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,362,Jhoulys Chacin,Exact name match found in SbaPlayers,ACCEPT +4623,Ji Man Choi,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,377,Ji Man Choi,Exact name match found in SbaPlayers,ACCEPT +2647,Jim Adduci,1,,no+AF8-bbref,1,19,Jim Adduci,Exact name match found in SbaPlayers,ACCEPT +2648,Jim Johnson,1,,no+AF8-bbref,1,984,Jim Johnson,Exact name match found in SbaPlayers,ACCEPT +4948,Jimmy Cordero,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,419,Jimmy Cordero,Exact name match found in SbaPlayers,ACCEPT +4566,Jimmy Herget,5,,no+AF8-bbref,+ACI-4,5+ACI-,863,Jimmy Herget,Exact name match found in SbaPlayers,ACCEPT +1458,Jimmy Yacabonis,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,2203,Jimmy Yacabonis,Exact name match found in SbaPlayers,ACCEPT +4949,Jo Adell,5,,no+AF8-bbref,+ACI-4,5+ACI-,20,Jo Adell,Exact name match found in SbaPlayers,ACCEPT +4959,JoJo Romero,5,,no+AF8-bbref,+ACI-4,5+ACI-,1702,JoJo Romero,Exact name match found in SbaPlayers,ACCEPT +4604,Joakim Soria,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1872,Joakim Soria,Exact name match found in SbaPlayers,ACCEPT +4950,Joc Pederson,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1514,Joc Pederson,Exact name match found in SbaPlayers,ACCEPT +1461,Joe Biagini,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,188,Joe Biagini,Exact name match found in SbaPlayers,ACCEPT +4951,Joe Hudson,5,,no+AF8-bbref,+ACI-4,5+ACI-,932,Joe Hudson,Exact name match found in SbaPlayers,ACCEPT +4952,Joe Jimenez,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,979,Joe Jimenez,Exact name match found in SbaPlayers,ACCEPT +4577,Joe Kelly,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1021,Joe Kelly,Exact name match found in SbaPlayers,ACCEPT +2654,Joe Mauer,1,,no+AF8-bbref,1,1245,Joe Mauer,Exact name match found in SbaPlayers,ACCEPT +4533,Joe Musgrove,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1394,Joe Musgrove,Exact name match found in SbaPlayers,ACCEPT +4953,Joe Panik,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1493,Joe Panik,Exact name match found in SbaPlayers,ACCEPT +1466,Joe Ross,3,,no+AF8-bbref,+ACI-2,3+ACI-,1715,Joe Ross,Exact name match found in SbaPlayers,ACCEPT +1467,Joe Smith,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1842,Joe Smith,Exact name match found in SbaPlayers,ACCEPT +4340,Joely Rodriguez,5,,no+AF8-bbref,+ACI-4,5+ACI-,1673,Joely Rodriguez,Exact name match found in SbaPlayers,ACCEPT +4625,Joey Bart,5,,no+AF8-bbref,+ACI-4,5+ACI-,142,Joey Bart,Exact name match found in SbaPlayers,ACCEPT +4392,Joey Gallo,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,674,Joey Gallo,Exact name match found in SbaPlayers,ACCEPT +4954,Joey Gerber,5,,no+AF8-bbref,+ACI-4,5+ACI-,712,Joey Gerber,Exact name match found in SbaPlayers,ACCEPT +1469,Joey Lucchesi,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1160,Joey Lucchesi,Exact name match found in SbaPlayers,ACCEPT +1470,Joey Rickard,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1647,Joey Rickard,Exact name match found in SbaPlayers,ACCEPT +4770,Joey Votto,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,2092,Joey Votto,Exact name match found in SbaPlayers,ACCEPT +4297,Joey Wendle,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,2135,Joey Wendle,Exact name match found in SbaPlayers,ACCEPT +4646,Johan Camargo,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,309,Johan Camargo,Exact name match found in SbaPlayers,ACCEPT +4955,Johan Oviedo,5,,no+AF8-bbref,+ACI-4,5+ACI-,1479,Johan Oviedo,Exact name match found in SbaPlayers,ACCEPT +1474,John Brebbia,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,247,John Brebbia,Exact name match found in SbaPlayers,ACCEPT +4447,John Curtiss,5,,no+AF8-bbref,+ACI-4,5+ACI-,455,John Curtiss,Exact name match found in SbaPlayers,ACCEPT +4652,John Gant,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,677,John Gant,Exact name match found in SbaPlayers,ACCEPT +1476,John Hicks,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,893,John Hicks,Exact name match found in SbaPlayers,ACCEPT +4956,John King,5,,no+AF8-bbref,+ACI-4,5+ACI-,1045,John King,Exact name match found in SbaPlayers,ACCEPT +4364,John Means,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,2,John Means,Exact name match found in SbaPlayers,ACCEPT +4957,John Ryan Murphy,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1392,John Ryan Murphy,Exact name match found in SbaPlayers,ACCEPT +4958,John Schreiber,5,,no+AF8-bbref,+ACI-4,5+ACI-,1780,John Schreiber,Exact name match found in SbaPlayers,ACCEPT +4769,Johnny Cueto,5,,no+AF8-bbref,+ACI-4,5+ACI-,451,Johnny Cueto,Exact name match found in SbaPlayers,ACCEPT +2668,Johnny Field,1,,no+AF8-bbref,1,613,Johnny Field,Exact name match found in SbaPlayers,ACCEPT +4411,Jon Berti,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,183,Jon Berti,Exact name match found in SbaPlayers,ACCEPT +1480,Jon Duplantier,3,,no+AF8-bbref,+ACI-2,3+ACI-,549,Jon Duplantier,Exact name match found in SbaPlayers,ACCEPT +4960,Jon Gray,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,766,Jon Gray,Exact name match found in SbaPlayers,ACCEPT +4961,Jon Jay,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,973,Jon Jay,Exact name match found in SbaPlayers,ACCEPT +4962,Jon Lester,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1117,Jon Lester,Exact name match found in SbaPlayers,ACCEPT +4640,Jonah Heim,5,,no+AF8-bbref,+ACI-4,5+ACI-,849,Jonah Heim,Exact name match found in SbaPlayers,ACCEPT +4963,Jonathan Arauz,5,,no+AF8-bbref,+ACI-4,5+ACI-,84,Jonathan Arauz,Exact name match found in SbaPlayers,ACCEPT +4158,Jonathan Davis,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,470,Jonathan Davis,Exact name match found in SbaPlayers,ACCEPT +4513,Jonathan Hernandez,5,,no+AF8-bbref,+ACI-4,5+ACI-,876,Jonathan Hernandez,Exact name match found in SbaPlayers,ACCEPT +4724,Jonathan Holder,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,912,Jonathan Holder,Exact name match found in SbaPlayers,ACCEPT +4433,Jonathan Loaisiga,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1132,Jonathan Loaisiga,Exact name match found in SbaPlayers,ACCEPT +1487,Jonathan Lucroy,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1163,Jonathan Lucroy,Exact name match found in SbaPlayers,ACCEPT +4348,Jonathan Schoop,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1779,Jonathan Schoop,Exact name match found in SbaPlayers,ACCEPT +4964,Jonathan Villar,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,2079,Jonathan Villar,Exact name match found in SbaPlayers,ACCEPT +1490,Jordan Hicks,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,894,Jordan Hicks,Exact name match found in SbaPlayers,ACCEPT +4965,Jordan Luplow,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1168,Jordan Luplow,Exact name match found in SbaPlayers,ACCEPT +4966,Jordan Lyles,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1171,Jordan Lyles,Exact name match found in SbaPlayers,ACCEPT +4756,Jordan Montgomery,5,,no+AF8-bbref,+ACI-4,5+ACI-,1356,Jordan Montgomery,Exact name match found in SbaPlayers,ACCEPT +4144,Jordan Romano,5,,no+AF8-bbref,+ACI-4,5+ACI-,1699,Jordan Romano,Exact name match found in SbaPlayers,ACCEPT +4558,Jordan Weems,5,,no+AF8-bbref,+ACI-4,5+ACI-,2129,Jordan Weems,Exact name match found in SbaPlayers,ACCEPT +4967,Jordan Yamamoto,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,2205,Jordan Yamamoto,Exact name match found in SbaPlayers,ACCEPT +1494,Jordan Zimmermann,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,2230,Jordan Zimmermann,Exact name match found in SbaPlayers,ACCEPT +4968,Jordy Mercer,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1308,Jordy Mercer,Exact name match found in SbaPlayers,ACCEPT +4519,Jorge Alcala,5,,no+AF8-bbref,+ACI-4,5+ACI-,32,Jorge Alcala,Exact name match found in SbaPlayers,ACCEPT +4969,Jorge Alfaro,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,40,Jorge Alfaro,Exact name match found in SbaPlayers,ACCEPT +4970,Jorge Bonifacio,5,,no+AF8-bbref,+ACI-1,4,5+ACI-,220,Jorge Bonifacio,Exact name match found in SbaPlayers,ACCEPT +4971,Jorge Lopez,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1144,Jorge Lopez,Exact name match found in SbaPlayers,ACCEPT +4972,Jorge Mateo,5,,no+AF8-bbref,+ACI-4,5+ACI-,1233,Jorge Mateo,Exact name match found in SbaPlayers,ACCEPT +4715,Jorge Polanco,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1570,Jorge Polanco,Exact name match found in SbaPlayers,ACCEPT +4687,Jorge Soler,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1870,Jorge Soler,Exact name match found in SbaPlayers,ACCEPT +4155,Jose Abreu,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,7,Jose Abreu,Exact name match found in SbaPlayers,ACCEPT +4973,Jose Altuve,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,56,Jose Altuve,Exact name match found in SbaPlayers,ACCEPT +4974,Jose Alvarado,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,58,Jose Alvarado,Exact name match found in SbaPlayers,ACCEPT +4266,Jose Alvarez,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,59,Jose Alvarez,Exact name match found in SbaPlayers,ACCEPT +2687,Jose Bautista,1,,no+AF8-bbref,1,153,Jose Bautista,Exact name match found in SbaPlayers,ACCEPT +4569,Jose Berrios,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,182,Jose Berrios,Exact name match found in SbaPlayers,ACCEPT +2689,Jose Briceno,1,,no+AF8-bbref,1,254,Jose Briceno,Exact name match found in SbaPlayers,ACCEPT +2690,Jose Castillo,1,,no+AF8-bbref,1,342,Jose Castillo,Exact name match found in SbaPlayers,ACCEPT +4530,Jose Cisnero,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,382,Jose Cisnero,Exact name match found in SbaPlayers,ACCEPT +4975,Jose Garcia,5,,no+AF8-bbref,+ACI-4,5+ACI-,,,No bbref+AF8-id available,CREATE+AF8-NEW +4244,Jose Iglesias,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,949,Jose Iglesias,Exact name match found in SbaPlayers,ACCEPT +1507,Jose Leclerc,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1106,Jose Leclerc,Exact name match found in SbaPlayers,ACCEPT +4976,Jose Marmolejos,5,,no+AF8-bbref,+ACI-4,5+ACI-,1203,Jose Marmolejos,Exact name match found in SbaPlayers,ACCEPT +4977,Jose Martinez,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1222,Jose Martinez,Exact name match found in SbaPlayers,ACCEPT +4978,Jose Osuna,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1471,Jose Osuna,Exact name match found in SbaPlayers,ACCEPT +4979,Jose Peraza,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1527,Jose Peraza,Exact name match found in SbaPlayers,ACCEPT +2696,Jose Pirela,1,,no+AF8-bbref,1,1562,Jose Pirela,Exact name match found in SbaPlayers,ACCEPT +1511,Jose Quijada,3,,no+AF8-bbref,+ACI-2,3+ACI-,1594,Jose Quijada,Exact name match found in SbaPlayers,ACCEPT +4980,Jose Quintana,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1596,Jose Quintana,Exact name match found in SbaPlayers,ACCEPT +4217,Jose Ramirez,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1608,Jose Ramirez,Exact name match found in SbaPlayers,ACCEPT +2699,Jose Reyes,1,,no+AF8-bbref,1,1633,Jose Reyes,Exact name match found in SbaPlayers,ACCEPT +1514,Jose Rondon,3,,no+AF8-bbref,+ACI-2,3+ACI-,1707,Jose Rondon,Exact name match found in SbaPlayers,ACCEPT +1515,Jose Ruiz,3,,no+AF8-bbref,+ACI-2,3+ACI-,1724,Jose Ruiz,Exact name match found in SbaPlayers,ACCEPT +1516,Jose Suarez,3,,no+AF8-bbref,+ACI-2,3+ACI-,1937,Jose Suarez,Exact name match found in SbaPlayers,ACCEPT +4555,Jose Trevino,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,2013,Jose Trevino,Exact name match found in SbaPlayers,ACCEPT +4655,Jose Urena,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,2035,Jose Urena,Exact name match found in SbaPlayers,ACCEPT +4246,Jose Urquidy,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,2041,Jose Urquidy,Exact name match found in SbaPlayers,ACCEPT +4981,Joseph Odom,5,,no+AF8-bbref,+ACI-4,5+ACI-,1450,Joseph Odom,Exact name match found in SbaPlayers,ACCEPT +4982,Josh Bell,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,168,Josh Bell,Exact name match found in SbaPlayers,ACCEPT +4472,Josh Donaldson,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,526,Josh Donaldson,Exact name match found in SbaPlayers,ACCEPT +2702,Josh Fields,1,,no+AF8-bbref,1,614,Josh Fields,Exact name match found in SbaPlayers,ACCEPT +4237,Josh Fleming,5,,no+AF8-bbref,+ACI-4,5+ACI-,623,Josh Fleming,Exact name match found in SbaPlayers,ACCEPT +4184,Josh Fuentes,5,,no+AF8-bbref,+ACI-4,5+ACI-,,,No bbref+AF8-id available,USE+AF8-SBA+AF8-664 +4565,Josh Hader,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,802,Josh Hader,Exact name match found in SbaPlayers,ACCEPT +4508,Josh Harrison,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,829,Josh Harrison,Exact name match found in SbaPlayers,ACCEPT +4983,Josh James,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,965,Josh James,Exact name match found in SbaPlayers,ACCEPT +4726,Josh Lindblom,5,,no+AF8-bbref,+ACI-4,5+ACI-,1123,Josh Lindblom,Exact name match found in SbaPlayers,ACCEPT +4984,Josh Naylor,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1404,Josh Naylor,Exact name match found in SbaPlayers,ACCEPT +4985,Josh Osich,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1469,Josh Osich,Exact name match found in SbaPlayers,ACCEPT +4986,Josh Phegley,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1553,Josh Phegley,Exact name match found in SbaPlayers,ACCEPT +4987,Josh Reddick,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1623,Josh Reddick,Exact name match found in SbaPlayers,ACCEPT +4988,Josh Rojas,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1695,Josh Rojas,Exact name match found in SbaPlayers,ACCEPT +3862,Josh Smith,4,,no+AF8-bbref,+ACI-2,3,4+ACI-,1852,Josh Smith,Exact name match found in SbaPlayers,ACCEPT +4486,Josh Staumont,5,,no+AF8-bbref,+ACI-4,5+ACI-,1897,Josh Staumont,Exact name match found in SbaPlayers,ACCEPT +4989,Josh Taylor,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1967,Josh Taylor,Exact name match found in SbaPlayers,ACCEPT +4591,Josh Tomlin,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1996,Josh Tomlin,Exact name match found in SbaPlayers,ACCEPT +4719,Josh VanMeter,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,2052,Josh VanMeter,Exact name match found in SbaPlayers,ACCEPT +1535,Juan Lagares,3,,no+AF8-bbref,+ACI-2,3+ACI-,1083,Juan Lagares,Exact name match found in SbaPlayers,ACCEPT +1536,Juan Minaya,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1334,Juan Minaya,Exact name match found in SbaPlayers,ACCEPT +1537,Juan Nicasio,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1422,Juan Nicasio,Exact name match found in SbaPlayers,ACCEPT +4160,Juan Soto,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1879,Juan Soto,Exact name match found in SbaPlayers,ACCEPT +4540,Julian Merryweather,5,,no+AF8-bbref,+ACI-4,5+ACI-,1311,Julian Merryweather,Exact name match found in SbaPlayers,ACCEPT +4993,Julio Teheran,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1970,Julio Teheran,Exact name match found in SbaPlayers,ACCEPT +4421,Julio Urias,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,2038,Julio Urias,Exact name match found in SbaPlayers,ACCEPT +1541,Jung Ho Kang,3,,no+AF8-bbref,+ACI-2,3+ACI-,1007,Jung Ho Kang,Exact name match found in SbaPlayers,ACCEPT +4511,Junior Guerra,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,785,Junior Guerra,Exact name match found in SbaPlayers,ACCEPT +4337,Jurickson Profar,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1587,Jurickson Profar,Exact name match found in SbaPlayers,ACCEPT +1544,Justin Anderson,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,70,Justin Anderson,Exact name match found in SbaPlayers,ACCEPT +1545,Justin Bour,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,226,Justin Bour,Exact name match found in SbaPlayers,ACCEPT +4662,Justin Dunn,5,,no+AF8-bbref,+ACI-4,5+ACI-,546,Justin Dunn,Exact name match found in SbaPlayers,ACCEPT +2717,Justin Miller,1,,no+AF8-bbref,1,1321,Justin Miller,Exact name match found in SbaPlayers,ACCEPT +1546,Justin Shafer,3,,no+AF8-bbref,+ACI-2,3+ACI-,1807,Justin Shafer,Exact name match found in SbaPlayers,ACCEPT +4994,Justin Smoak,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1857,Justin Smoak,Exact name match found in SbaPlayers,ACCEPT +4336,Justin Topa,5,,no+AF8-bbref,+ACI-4,5+ACI-,1999,Justin Topa,Exact name match found in SbaPlayers,ACCEPT +4248,Justin Turner,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,2029,Justin Turner,Exact name match found in SbaPlayers,ACCEPT +4995,Justin Upton,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,2034,Justin Upton,Exact name match found in SbaPlayers,ACCEPT +1550,Justin Verlander,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,2071,Justin Verlander,Exact name match found in SbaPlayers,ACCEPT +4683,Justin Wilson,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,2167,Justin Wilson,Exact name match found in SbaPlayers,ACCEPT +4493,Justus Sheffield,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1813,Justus Sheffield,Exact name match found in SbaPlayers,ACCEPT +2723,Kazuhisa Makita,1,,no+AF8-bbref,1,1186,Kazuhisa Makita,Exact name match found in SbaPlayers,ACCEPT +4125,KeBryan Hayes,5,,no+AF8-bbref,+ACI-4,5+ACI-,838,KeBryan Hayes,Exact name match found in SbaPlayers,ACCEPT +4666,Keegan Akin,5,,no+AF8-bbref,+ACI-4,5+ACI-,27,Keegan Akin,Exact name match found in SbaPlayers,ACCEPT +2724,Kelby Tomlinson,1,,no+AF8-bbref,1,1997,Kelby Tomlinson,Exact name match found in SbaPlayers,ACCEPT +1553,Kelvin Gutierrez,3,,no+AF8-bbref,+ACI-2,3+ACI-,796,Kelvin Gutierrez,Exact name match found in SbaPlayers,ACCEPT +1554,Kelvin Herrera,3,,no+AF8-bbref,+ACI-2,3+ACI-,881,Kelvin Herrera,Exact name match found in SbaPlayers,ACCEPT +1555,Ken Giles,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,720,Ken Giles,Exact name match found in SbaPlayers,ACCEPT +4996,Kendall Graveman,5,,no+AF8-bbref,+ACI-4,5+ACI-,764,Kendall Graveman,Exact name match found in SbaPlayers,ACCEPT +1556,Kendrys Morales,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1359,Kendrys Morales,Exact name match found in SbaPlayers,ACCEPT +4663,Kenley Jansen,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,968,Kenley Jansen,Exact name match found in SbaPlayers,ACCEPT +4326,Kenta Maeda,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1181,Kenta Maeda,Exact name match found in SbaPlayers,ACCEPT +1559,Keon Broxton,3,,no+AF8-bbref,+ACI-2,3+ACI-,268,Keon Broxton,Exact name match found in SbaPlayers,ACCEPT +1560,Keone Kela,3,,no+AF8-bbref,+ACI-2,3+ACI-,1014,Keone Kela,Exact name match found in SbaPlayers,ACCEPT +4997,Keston Hiura,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,905,Keston Hiura,Exact name match found in SbaPlayers,ACCEPT +4293,Ketel Marte,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1210,Ketel Marte,Exact name match found in SbaPlayers,ACCEPT +4578,Keury Mella,5,,no+AF8-bbref,+ACI-4,5+ACI-,1300,Keury Mella,Exact name match found in SbaPlayers,ACCEPT +4279,Kevan Smith,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1847,Kevan Smith,Exact name match found in SbaPlayers,ACCEPT +4998,Kevin Cron,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,440,Kevin Cron,Exact name match found in SbaPlayers,ACCEPT +4341,Kevin Gausman,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,706,Kevin Gausman,Exact name match found in SbaPlayers,ACCEPT +4999,Kevin Ginkel,5,,no+AF8-bbref,+ACI-4,5+ACI-,722,Kevin Ginkel,Exact name match found in SbaPlayers,ACCEPT +4185,Kevin Kiermaier,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1039,Kevin Kiermaier,Exact name match found in SbaPlayers,ACCEPT +1567,Kevin McCarthy,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1264,Kevin McCarthy,Exact name match found in SbaPlayers,ACCEPT +5000,Kevin Newman,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1420,Kevin Newman,Exact name match found in SbaPlayers,ACCEPT +4503,Kevin Pillar,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1557,Kevin Pillar,Exact name match found in SbaPlayers,ACCEPT +4351,Kevin Plawecki,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1565,Kevin Plawecki,Exact name match found in SbaPlayers,ACCEPT +5001,Keynan Middleton,5,,no+AF8-bbref,+ACI-4,5+ACI-,1316,Keynan Middleton,Exact name match found in SbaPlayers,ACCEPT +5002,Khris Davis,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,469,Khris Davis,Exact name match found in SbaPlayers,ACCEPT +1572,Kirby Yates,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,2211,Kirby Yates,Exact name match found in SbaPlayers,ACCEPT +2739,Kohl Stewart,1,,no+AF8-bbref,1,1911,Kohl Stewart,Exact name match found in SbaPlayers,ACCEPT +5003,Kolby Allard,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,42,Kolby Allard,Exact name match found in SbaPlayers,ACCEPT +4422,Kole Calhoun,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,306,Kole Calhoun,Exact name match found in SbaPlayers,ACCEPT +4383,Kolten Wong,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,2188,Kolten Wong,Exact name match found in SbaPlayers,ACCEPT +4626,Kris Bryant,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,273,Kris Bryant,Exact name match found in SbaPlayers,ACCEPT +4676,Kris Bubic,5,,no+AF8-bbref,+ACI-4,5+ACI-,274,Kris Bubic,Exact name match found in SbaPlayers,ACCEPT +1577,Kristopher Negron,3,,no+AF8-bbref,+ACI-2,3+ACI-,1407,Kristopher Negron,Exact name match found in SbaPlayers,ACCEPT +4648,Kurt Suzuki,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1945,Kurt Suzuki,Exact name match found in SbaPlayers,ACCEPT +4316,Kwang Hyun Kim,5,,no+AF8-bbref,+ACI-4,5+ACI-,946,Kwang Hyun Kim,Exact name match found in SbaPlayers,ACCEPT +1579,Kyle Barraclough,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,136,Kyle Barraclough,Exact name match found in SbaPlayers,ACCEPT +4190,Kyle Cody,5,,no+AF8-bbref,+ACI-4,5+ACI-,395,Kyle Cody,Exact name match found in SbaPlayers,ACCEPT +5004,Kyle Crick,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,435,Kyle Crick,Exact name match found in SbaPlayers,ACCEPT +4323,Kyle Farmer,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,598,Kyle Farmer,Exact name match found in SbaPlayers,ACCEPT +4384,Kyle Finnegan,5,,no+AF8-bbref,+ACI-4,5+ACI-,617,Kyle Finnegan,Exact name match found in SbaPlayers,ACCEPT +4200,Kyle Freeland,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,650,Kyle Freeland,Exact name match found in SbaPlayers,ACCEPT +5005,Kyle Funkhouser,5,,no+AF8-bbref,+ACI-4,5+ACI-,668,Kyle Funkhouser,Exact name match found in SbaPlayers,ACCEPT +5006,Kyle Garlick,5,,no+AF8-bbref,+ACI-4,5+ACI-,696,Kyle Garlick,Exact name match found in SbaPlayers,ACCEPT +5007,Kyle Gibson,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,715,Kyle Gibson,Exact name match found in SbaPlayers,ACCEPT +5008,Kyle Hart,5,,no+AF8-bbref,+ACI-4,5+ACI-,832,Kyle Hart,Exact name match found in SbaPlayers,ACCEPT +4308,Kyle Hendricks,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,856,Kyle Hendricks,Exact name match found in SbaPlayers,ACCEPT +4263,Kyle Higashioka,5,,no+AF8-bbref,+ACI-4,5+ACI-,895,Kyle Higashioka,Exact name match found in SbaPlayers,ACCEPT +4333,Kyle Lewis,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1118,Kyle Lewis,Exact name match found in SbaPlayers,ACCEPT +4344,Kyle McGowin,5,,no+AF8-bbref,+ACI-4,5+ACI-,1276,Kyle McGowin,Exact name match found in SbaPlayers,ACCEPT +5009,Kyle Ryan,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1730,Kyle Ryan,Exact name match found in SbaPlayers,ACCEPT +4771,Kyle Schwarber,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1784,Kyle Schwarber,Exact name match found in SbaPlayers,ACCEPT +4556,Kyle Seager,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1793,Kyle Seager,Exact name match found in SbaPlayers,ACCEPT +4264,Kyle Tucker,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,2023,Kyle Tucker,Exact name match found in SbaPlayers,ACCEPT +4671,Kyle Wright,5,,no+AF8-bbref,+ACI-4,5+ACI-,2200,Kyle Wright,Exact name match found in SbaPlayers,ACCEPT +4295,Kyle Zimmer,5,,no+AF8-bbref,+ACI-4,5+ACI-,2228,Kyle Zimmer,Exact name match found in SbaPlayers,ACCEPT +4651,LaMonte Wade Jr,5,,no+AF8-bbref,+ACI-4,5+ACI-,2095,LaMonte Wade Jr,Exact name match found in SbaPlayers,ACCEPT +4268,Lance Lynn,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1173,Lance Lynn,Exact name match found in SbaPlayers,ACCEPT +4574,Lance McCullers Jr,5,,no+AF8-bbref,+ACI-1,4,5+ACI-,1271,Lance McCullers Jr,Exact name match found in SbaPlayers,ACCEPT +5010,Lane Thomas,5,,no+AF8-bbref,+ACI-4,5+ACI-,1978,Lane Thomas,Exact name match found in SbaPlayers,ACCEPT +4205,Leody Taveras,5,,no+AF8-bbref,+ACI-4,5+ACI-,1962,Leody Taveras,Exact name match found in SbaPlayers,ACCEPT +1591,Leonys Martin,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1215,Leonys Martin,Exact name match found in SbaPlayers,ACCEPT +4177,Leury Garcia,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,679,Leury Garcia,Exact name match found in SbaPlayers,ACCEPT +5011,Lewin Diaz,5,,no+AF8-bbref,+ACI-4,5+ACI-,506,Lewin Diaz,Exact name match found in SbaPlayers,ACCEPT +4744,Lewis Brinson,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,258,Lewis Brinson,Exact name match found in SbaPlayers,ACCEPT +5012,Lewis Thorpe,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1989,Lewis Thorpe,Exact name match found in SbaPlayers,ACCEPT +4219,Liam Hendriks,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,857,Liam Hendriks,Exact name match found in SbaPlayers,ACCEPT +4692,Ljay Newsome,5,,no+AF8-bbref,+ACI-4,5+ACI-,1421,Ljay Newsome,Exact name match found in SbaPlayers,ACCEPT +4637,Logan Allen,5,,no+AF8-bbref,+ACI-4,5+ACI-,45,Logan Allen,Exact name match found in SbaPlayers,ACCEPT +5013,Logan Forsythe,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,636,Logan Forsythe,Exact name match found in SbaPlayers,ACCEPT +5014,Logan Morrison,5,,no+AF8-bbref,+ACI-1,4,5+ACI-,1373,Logan Morrison,Exact name match found in SbaPlayers,ACCEPT +5015,Logan Webb,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,2127,Logan Webb,Exact name match found in SbaPlayers,ACCEPT +4212,Lorenzo Cain,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,305,Lorenzo Cain,Exact name match found in SbaPlayers,ACCEPT +4709,Lou Trivino,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,2016,Lou Trivino,Exact name match found in SbaPlayers,ACCEPT +2760,Louis Coleman,1,,no+AF8-bbref,1,400,Louis Coleman,Exact name match found in SbaPlayers,ACCEPT +4451,Lourdes Gurriel Jr,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,794,Lourdes Gurriel Jr,Exact name match found in SbaPlayers,ACCEPT +1601,Lucas Duda,3,,no+AF8-bbref,+ACI-2,3+ACI-,539,Lucas Duda,Exact name match found in SbaPlayers,ACCEPT +4570,Lucas Giolito,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,724,Lucas Giolito,Exact name match found in SbaPlayers,ACCEPT +4468,Lucas Sims,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1826,Lucas Sims,Exact name match found in SbaPlayers,ACCEPT +4304,Luis Arraez,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,93,Luis Arraez,Exact name match found in SbaPlayers,ACCEPT +4664,Luis Avilan,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,106,Luis Avilan,Exact name match found in SbaPlayers,ACCEPT +4504,Luis Castillo,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,344,Luis Castillo,Exact name match found in SbaPlayers,ACCEPT +4559,Luis Cessa,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,361,Luis Cessa,Exact name match found in SbaPlayers,ACCEPT +5017,Luis Garcia,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,,,No bbref+AF8-id available,MATCH+AF8-WITH+AF8-BBREF+AF8-ID+AF8-garcilu03 +4236,Luis Guillorme,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,792,Luis Guillorme,Exact name match found in SbaPlayers,ACCEPT +4187,Luis H Garcia,5,,no+AF8-bbref,+ACI-4,5+ACI-,,,No bbref+AF8-id available,MATCH+AF8-WITH+AF8-BBREF+AF8-ID+AF8-garcilu05 +5018,Luis Patino,5,,no+AF8-bbref,+ACI-4,5+ACI-,1504,Luis Patino,Exact name match found in SbaPlayers,ACCEPT +5019,Luis Perdomo,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1529,Luis Perdomo,Exact name match found in SbaPlayers,ACCEPT +5020,Luis Rengifo,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1632,Luis Rengifo,Exact name match found in SbaPlayers,ACCEPT +4278,Luis Robert,5,,no+AF8-bbref,+ACI-4,5+ACI-,1660,Luis Robert,Exact name match found in SbaPlayers,ACCEPT +1612,Luis Severino,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1805,Luis Severino,Exact name match found in SbaPlayers,ACCEPT +5021,Luis Torrens,5,,no+AF8-bbref,+ACI-4,5+ACI-,2002,Luis Torrens,Exact name match found in SbaPlayers,ACCEPT +4747,Luis Urias,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,2039,Luis Urias,Exact name match found in SbaPlayers,ACCEPT +5016,Luis V Garcia,5,,no+AF8-bbref,+ACI-4,5+ACI-,,,No bbref+AF8-id available,USE+AF8-SBA+AF8-694 +2767,Luis Valbuena,1,,no+AF8-bbref,1,2045,Luis Valbuena,Exact name match found in SbaPlayers,ACCEPT +1614,Luke Bard,3,,no+AF8-bbref,+ACI-2,3+ACI-,126,Luke Bard,Exact name match found in SbaPlayers,ACCEPT +5022,Luke Jackson,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,960,Luke Jackson,Exact name match found in SbaPlayers,ACCEPT +1616,Luke Maile,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1185,Luke Maile,Exact name match found in SbaPlayers,ACCEPT +4317,Luke Voit,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,2087,Luke Voit,Exact name match found in SbaPlayers,ACCEPT +5023,Luke Weaver,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,2124,Luke Weaver,Exact name match found in SbaPlayers,ACCEPT +1619,Mac Williamson,3,,no+AF8-bbref,+ACI-2,3+ACI-,2163,Mac Williamson,Exact name match found in SbaPlayers,ACCEPT +5024,Madison Bumgarner,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,278,Madison Bumgarner,Exact name match found in SbaPlayers,ACCEPT +4301,Magneuris Sierra,5,,no+AF8-bbref,+ACI-1,4,5+ACI-,1823,Magneuris Sierra,Exact name match found in SbaPlayers,ACCEPT +4501,Maikel Franco,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,645,Maikel Franco,Exact name match found in SbaPlayers,ACCEPT +5025,Mallex Smith,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1846,Mallex Smith,Exact name match found in SbaPlayers,ACCEPT +1623,Manny Banuelos,3,,no+AF8-bbref,+ACI-2,3+ACI-,123,Manny Banuelos,Exact name match found in SbaPlayers,ACCEPT +4149,Manny Machado,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1175,Manny Machado,Exact name match found in SbaPlayers,ACCEPT +4178,Manny Pina,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1558,Manny Pina,Exact name match found in SbaPlayers,ACCEPT +4380,Manuel Margot,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1198,Manuel Margot,Exact name match found in SbaPlayers,ACCEPT +4203,Marcell Ozuna,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1481,Marcell Ozuna,Exact name match found in SbaPlayers,ACCEPT +2780,Marco Estrada,1,,no+AF8-bbref,1,586,Marco Estrada,Exact name match found in SbaPlayers,ACCEPT +4346,Marco Gonzales,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,735,Marco Gonzales,Exact name match found in SbaPlayers,ACCEPT +1629,Marco Hernandez,3,,no+AF8-bbref,+ACI-2,3+ACI-,872,Marco Hernandez,Exact name match found in SbaPlayers,ACCEPT +4658,Marcus Semien,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1799,Marcus Semien,Exact name match found in SbaPlayers,ACCEPT +1631,Marcus Stroman,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1928,Marcus Stroman,Exact name match found in SbaPlayers,ACCEPT +5026,Marcus Walden,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,2100,Marcus Walden,Exact name match found in SbaPlayers,ACCEPT +4361,Mark Canha,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,316,Mark Canha,Exact name match found in SbaPlayers,ACCEPT +5027,Mark Mathias,5,,no+AF8-bbref,+ACI-4,5+ACI-,1234,Mark Mathias,Exact name match found in SbaPlayers,ACCEPT +4298,Mark Melancon,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1298,Mark Melancon,Exact name match found in SbaPlayers,ACCEPT +5028,Mark Payton,5,,no+AF8-bbref,+ACI-4,5+ACI-,1508,Mark Payton,Exact name match found in SbaPlayers,ACCEPT +1635,Mark Reynolds,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1639,Mark Reynolds,Exact name match found in SbaPlayers,ACCEPT +2787,Mark Trumbo,1,,no+AF8-bbref,1,2020,Mark Trumbo,Exact name match found in SbaPlayers,ACCEPT +4443,Martin Maldonado,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1187,Martin Maldonado,Exact name match found in SbaPlayers,ACCEPT +4436,Martin Perez,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1535,Martin Perez,Exact name match found in SbaPlayers,ACCEPT +1638,Martin Prado,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1582,Martin Prado,Exact name match found in SbaPlayers,ACCEPT +4736,Marwin Gonzalez,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,741,Marwin Gonzalez,Exact name match found in SbaPlayers,ACCEPT +4494,Masahiro Tanaka,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1955,Masahiro Tanaka,Exact name match found in SbaPlayers,ACCEPT +5029,Mason Williams,5,,no+AF8-bbref,+ACI-1,4,5+ACI-,2154,Mason Williams,Exact name match found in SbaPlayers,ACCEPT +5030,Matt Adams,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,15,Matt Adams,Exact name match found in SbaPlayers,ACCEPT +1642,Matt Albers,3,,no+AF8-bbref,+ACI-2,3+ACI-,29,Matt Albers,Exact name match found in SbaPlayers,ACCEPT +4478,Matt Andriese,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,76,Matt Andriese,Exact name match found in SbaPlayers,ACCEPT +4710,Matt Barnes,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,131,Matt Barnes,Exact name match found in SbaPlayers,ACCEPT +5031,Matt Beaty,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,157,Matt Beaty,Exact name match found in SbaPlayers,ACCEPT +2796,Matt Belisle,1,,no+AF8-bbref,1,167,Matt Belisle,Exact name match found in SbaPlayers,ACCEPT +1646,Matt Bowman,3,,no+AF8-bbref,+ACI-2,3+ACI-,228,Matt Bowman,Exact name match found in SbaPlayers,ACCEPT +4761,Matt Carpenter,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,329,Matt Carpenter,Exact name match found in SbaPlayers,ACCEPT +4280,Matt Chapman,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,367,Matt Chapman,Exact name match found in SbaPlayers,ACCEPT +5032,Matt Davidson,5,,no+AF8-bbref,+ACI-1,4,5+ACI-,463,Matt Davidson,Exact name match found in SbaPlayers,ACCEPT +1649,Matt Duffy,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,542,Matt Duffy,Exact name match found in SbaPlayers,ACCEPT +4521,Matt Foster,5,,no+AF8-bbref,+ACI-4,5+ACI-,638,Matt Foster,Exact name match found in SbaPlayers,ACCEPT +1650,Matt Grace,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,760,Matt Grace,Exact name match found in SbaPlayers,ACCEPT +5033,Matt Hall,5,,no+AF8-bbref,+ACI-4,5+ACI-,806,Matt Hall,Exact name match found in SbaPlayers,ACCEPT +5034,Matt Harvey,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,835,Matt Harvey,Exact name match found in SbaPlayers,ACCEPT +4753,Matt Kemp,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1026,Matt Kemp,Exact name match found in SbaPlayers,ACCEPT +2804,Matt Koch,1,,no+AF8-bbref,1,1066,Matt Koch,Exact name match found in SbaPlayers,ACCEPT +5035,Matt Magill,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1182,Matt Magill,Exact name match found in SbaPlayers,ACCEPT +2806,Matt Moore,1,,no+AF8-bbref,1,1357,Matt Moore,Exact name match found in SbaPlayers,ACCEPT +4423,Matt Olson,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1461,Matt Olson,Exact name match found in SbaPlayers,ACCEPT +4357,Matt Shoemaker,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1817,Matt Shoemaker,Exact name match found in SbaPlayers,ACCEPT +1656,Matt Skole,3,,no+AF8-bbref,+ACI-2,3+ACI-,1835,Matt Skole,Exact name match found in SbaPlayers,ACCEPT +4469,Matt Strahm,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1918,Matt Strahm,Exact name match found in SbaPlayers,ACCEPT +5036,Matt Thaiss,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1975,Matt Thaiss,Exact name match found in SbaPlayers,ACCEPT +5037,Matt Wieters,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,2152,Matt Wieters,Exact name match found in SbaPlayers,ACCEPT +4355,Matt Wisler,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,2183,Matt Wisler,Exact name match found in SbaPlayers,ACCEPT +5038,Matthew Boyd,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,230,Matthew Boyd,Exact name match found in SbaPlayers,ACCEPT +5039,Matthew Joyce,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,999,Matthew Joyce,Exact name match found in SbaPlayers,ACCEPT +4427,Mauricio Dubon,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,538,Mauricio Dubon,Exact name match found in SbaPlayers,ACCEPT +4129,Max Fried,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,659,Max Fried,Exact name match found in SbaPlayers,ACCEPT +4457,Max Kepler,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1031,Max Kepler,Exact name match found in SbaPlayers,ACCEPT +4701,Max Muncy,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1382,Max Muncy,Exact name match found in SbaPlayers,ACCEPT +4192,Max Scherzer,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1773,Max Scherzer,Exact name match found in SbaPlayers,ACCEPT +5040,Max Schrock,5,,no+AF8-bbref,+ACI-4,5+ACI-,1781,Max Schrock,Exact name match found in SbaPlayers,ACCEPT +4165,Max Stassi,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1896,Max Stassi,Exact name match found in SbaPlayers,ACCEPT +5041,Meibrys Viloria,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,2081,Meibrys Viloria,Exact name match found in SbaPlayers,ACCEPT +1670,Melky Cabrera,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,300,Melky Cabrera,Exact name match found in SbaPlayers,ACCEPT +4136,Merrill Kelly,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1020,Merrill Kelly,Exact name match found in SbaPlayers,ACCEPT +5042,Michael A Taylor,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,PARTIAL:1963,Michael Taylor,Partial name match +AC0- REVIEW NEEDED,USE+AF8-SBA+AF8-1963 +4231,Michael Brantley,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,240,Michael Brantley,Exact name match found in SbaPlayers,ACCEPT +5043,Michael Chavis,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,371,Michael Chavis,Exact name match found in SbaPlayers,ACCEPT +4201,Michael Conforto,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,407,Michael Conforto,Exact name match found in SbaPlayers,ACCEPT +1676,Michael Feliz,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,602,Michael Feliz,Exact name match found in SbaPlayers,ACCEPT +5044,Michael Fulmer,5,,no+AF8-bbref,+ACI-1,4,5+ACI-,666,Michael Fulmer,Exact name match found in SbaPlayers,ACCEPT +5045,Michael King,5,,no+AF8-bbref,+ACI-4,5+ACI-,1047,Michael King,Exact name match found in SbaPlayers,ACCEPT +4703,Michael Lorenzen,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1151,Michael Lorenzen,Exact name match found in SbaPlayers,ACCEPT +5046,Michael Perez,5,,no+AF8-bbref,+ACI-1,4,5+ACI-,1539,Michael Perez,Exact name match found in SbaPlayers,ACCEPT +4479,Michael Pineda,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1560,Michael Pineda,Exact name match found in SbaPlayers,ACCEPT +5047,Michael Wacha,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,2093,Michael Wacha,Exact name match found in SbaPlayers,ACCEPT +1680,Michel Baez,3,,no+AF8-bbref,+ACI-2,3+ACI-,113,Michel Baez,Exact name match found in SbaPlayers,ACCEPT +5048,Miguel Andujar,5,,no+AF8-bbref,+ACI-1,4,5+ACI-,78,Miguel Andujar,Exact name match found in SbaPlayers,ACCEPT +5049,Miguel Cabrera,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,298,Miguel Cabrera,Exact name match found in SbaPlayers,ACCEPT +4571,Miguel Castro,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,350,Miguel Castro,Exact name match found in SbaPlayers,ACCEPT +4154,Miguel Rojas,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1694,Miguel Rojas,Exact name match found in SbaPlayers,ACCEPT +5050,Miguel Sano,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1757,Miguel Sano,Exact name match found in SbaPlayers,ACCEPT +4135,Mike Brosseau,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,263,Mike Brosseau,Exact name match found in SbaPlayers,ACCEPT +4259,Mike Clevinger,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,392,Mike Clevinger,Exact name match found in SbaPlayers,ACCEPT +4598,Mike Fiers,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,615,Mike Fiers,Exact name match found in SbaPlayers,ACCEPT +1688,Mike Foltynewicz,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,633,Mike Foltynewicz,Exact name match found in SbaPlayers,ACCEPT +5051,Mike Ford,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,635,Mike Ford,Exact name match found in SbaPlayers,ACCEPT +5052,Mike Freeman,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,651,Mike Freeman,Exact name match found in SbaPlayers,ACCEPT +5053,Mike Kickham,5,,no+AF8-bbref,+ACI-4,5+ACI-,1036,Mike Kickham,Exact name match found in SbaPlayers,ACCEPT +1691,Mike Leake,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1102,Mike Leake,Exact name match found in SbaPlayers,ACCEPT +4302,Mike Mayers,5,,no+AF8-bbref,+ACI-1,4,5+ACI-,1251,Mike Mayers,Exact name match found in SbaPlayers,ACCEPT +5054,Mike Minor,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1335,Mike Minor,Exact name match found in SbaPlayers,ACCEPT +1693,Mike Montgomery,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1355,Mike Montgomery,Exact name match found in SbaPlayers,ACCEPT +1694,Mike Morin,3,,no+AF8-bbref,+ACI-2,3+ACI-,1370,Mike Morin,Exact name match found in SbaPlayers,ACCEPT +4680,Mike Moustakas,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1378,Mike Moustakas,Exact name match found in SbaPlayers,ACCEPT +4424,Mike Soroka,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,,,No bbref+AF8-id available,USE+AF8-SBA+AF8-1875 +5055,Mike Tauchman,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1961,Mike Tauchman,Exact name match found in SbaPlayers,ACCEPT +4281,Mike Trout,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,2019,Mike Trout,Exact name match found in SbaPlayers,ACCEPT +1699,Mike Wright,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,2199,Mike Wright,Exact name match found in SbaPlayers,ACCEPT +4153,Mike Yastrzemski,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,2210,Mike Yastrzemski,Exact name match found in SbaPlayers,ACCEPT +5056,Mike Zunino,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,2234,Mike Zunino,Exact name match found in SbaPlayers,ACCEPT +2841,Mikie Mahtook,1,,no+AF8-bbref,1,1184,Mikie Mahtook,Exact name match found in SbaPlayers,ACCEPT +1702,Miles Mikolas,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1317,Miles Mikolas,Exact name match found in SbaPlayers,ACCEPT +5057,Mitch Garver,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,702,Mitch Garver,Exact name match found in SbaPlayers,ACCEPT +1704,Mitch Haniger,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,818,Mitch Haniger,Exact name match found in SbaPlayers,ACCEPT +4327,Mitch Keller,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1017,Mitch Keller,Exact name match found in SbaPlayers,ACCEPT +4282,Mitch Moreland,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1365,Mitch Moreland,Exact name match found in SbaPlayers,ACCEPT +5058,Monte Harrison,5,,no+AF8-bbref,+ACI-4,5+ACI-,831,Monte Harrison,Exact name match found in SbaPlayers,ACCEPT +4133,Mookie Betts,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,187,Mookie Betts,Exact name match found in SbaPlayers,ACCEPT +4605,Mychal Givens,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,725,Mychal Givens,Exact name match found in SbaPlayers,ACCEPT +5059,Myles Straw,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1924,Myles Straw,Exact name match found in SbaPlayers,ACCEPT +5060,Nabil Crismatt,5,,no+AF8-bbref,+ACI-4,5+ACI-,436,Nabil Crismatt,Exact name match found in SbaPlayers,ACCEPT +5061,Nate Jones,5,,no+AF8-bbref,+ACI-1,4,5+ACI-,990,Nate Jones,Exact name match found in SbaPlayers,ACCEPT +4536,Nate Lowe,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,,,No bbref+AF8-id available,USE+AF8-SBA+AF8-1155 +5062,Nate Pearson,5,,no+AF8-bbref,+ACI-4,5+ACI-,1513,Nate Pearson,Exact name match found in SbaPlayers,ACCEPT +4253,Nathan Eovaldi,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,576,Nathan Eovaldi,Exact name match found in SbaPlayers,ACCEPT +2850,Neil Ramirez,1,,no+AF8-bbref,1,1603,Neil Ramirez,Exact name match found in SbaPlayers,ACCEPT +5063,Neil Walker,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,2103,Neil Walker,Exact name match found in SbaPlayers,ACCEPT +4260,Nelson Cruz,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,447,Nelson Cruz,Exact name match found in SbaPlayers,ACCEPT +3955,Nestor Cortes Jr,4,,no+AF8-bbref,+ACI-2,3,4+ACI-,421,Nestor Cortes Jr,Exact name match found in SbaPlayers,ACCEPT +4773,Nicholas Castellanos,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,340,Nicholas Castellanos,Exact name match found in SbaPlayers,ACCEPT +4309,Nick Ahmed,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,26,Nick Ahmed,Exact name match found in SbaPlayers,ACCEPT +4164,Nick Anderson,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,71,Nick Anderson,Exact name match found in SbaPlayers,ACCEPT +1718,Nick Dini,3,,no+AF8-bbref,+ACI-2,3+ACI-,518,Nick Dini,Exact name match found in SbaPlayers,ACCEPT +5064,Nick Goody,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,750,Nick Goody,Exact name match found in SbaPlayers,ACCEPT +4440,Nick Heath,5,,no+AF8-bbref,+ACI-4,5+ACI-,846,Nick Heath,Exact name match found in SbaPlayers,ACCEPT +1720,Nick Hundley,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,940,Nick Hundley,Exact name match found in SbaPlayers,ACCEPT +1721,Nick Kingham,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1049,Nick Kingham,Exact name match found in SbaPlayers,ACCEPT +4492,Nick Madrigal,5,,no+AF8-bbref,+ACI-4,5+ACI-,1178,Nick Madrigal,Exact name match found in SbaPlayers,ACCEPT +4704,Nick Margevicius,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1197,Nick Margevicius,Exact name match found in SbaPlayers,ACCEPT +5065,Nick Markakis,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1201,Nick Markakis,Exact name match found in SbaPlayers,ACCEPT +1724,Nick Martini,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1230,Nick Martini,Exact name match found in SbaPlayers,ACCEPT +5066,Nick Neidert,5,,no+AF8-bbref,+ACI-4,5+ACI-,1408,Nick Neidert,Exact name match found in SbaPlayers,ACCEPT +5067,Nick Nelson,5,,no+AF8-bbref,+ACI-4,5+ACI-,1410,Nick Nelson,Exact name match found in SbaPlayers,ACCEPT +4579,Nick Pivetta,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1564,Nick Pivetta,Exact name match found in SbaPlayers,ACCEPT +5068,Nick Ramirez,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1605,Nick Ramirez,Exact name match found in SbaPlayers,ACCEPT +5069,Nick Senzel,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1802,Nick Senzel,Exact name match found in SbaPlayers,ACCEPT +5070,Nick Solak,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1867,Nick Solak,Exact name match found in SbaPlayers,ACCEPT +4254,Nick Tropeano,5,,no+AF8-bbref,+ACI-1,4,5+ACI-,2018,Nick Tropeano,Exact name match found in SbaPlayers,ACCEPT +4606,Nick Vincent,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,2082,Nick Vincent,Exact name match found in SbaPlayers,ACCEPT +1730,Nick Williams,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,2157,Nick Williams,Exact name match found in SbaPlayers,ACCEPT +4557,Nick Wittgren,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,2185,Nick Wittgren,Exact name match found in SbaPlayers,ACCEPT +5071,Nicky Delmonico,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,488,Nicky Delmonico,Exact name match found in SbaPlayers,ACCEPT +4733,Nicky Lopez,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1149,Nicky Lopez,Exact name match found in SbaPlayers,ACCEPT +4441,Nico Hoerner,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,909,Nico Hoerner,Exact name match found in SbaPlayers,ACCEPT +5072,Nik Turley,5,,no+AF8-bbref,+ACI-4,5+ACI-,2027,Nik Turley,Exact name match found in SbaPlayers,ACCEPT +5073,Niko Goodrum,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,748,Niko Goodrum,Exact name match found in SbaPlayers,ACCEPT +5074,Nivaldo Rodriguez,5,,no+AF8-bbref,+ACI-4,5+ACI-,1687,Nivaldo Rodriguez,Exact name match found in SbaPlayers,ACCEPT +1736,Noah Syndergaard,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1953,Noah Syndergaard,Exact name match found in SbaPlayers,ACCEPT +4429,Noe Ramirez,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1606,Noe Ramirez,Exact name match found in SbaPlayers,ACCEPT +2867,Noel Cuevas,1,,no+AF8-bbref,1,452,Noel Cuevas,Exact name match found in SbaPlayers,ACCEPT +4275,Nolan Arenado,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,88,Nolan Arenado,Exact name match found in SbaPlayers,ACCEPT +5075,Nomar Mazara,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1254,Nomar Mazara,Exact name match found in SbaPlayers,ACCEPT +1740,Odubel Herrera,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,882,Odubel Herrera,Exact name match found in SbaPlayers,ACCEPT +5076,Oliver Drake,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,534,Oliver Drake,Exact name match found in SbaPlayers,ACCEPT +4430,Oliver Perez,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1533,Oliver Perez,Exact name match found in SbaPlayers,ACCEPT +5077,Omar Narvaez,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1401,Omar Narvaez,Exact name match found in SbaPlayers,ACCEPT +4730,Orlando Arcia,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,86,Orlando Arcia,Exact name match found in SbaPlayers,ACCEPT +5078,Oscar Mercado,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1306,Oscar Mercado,Exact name match found in SbaPlayers,ACCEPT +4428,Ozzie Albies,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,31,Ozzie Albies,Exact name match found in SbaPlayers,ACCEPT +4324,Pablo Lopez,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1146,Pablo Lopez,Exact name match found in SbaPlayers,ACCEPT +1748,Pablo Reyes,3,,no+AF8-bbref,+ACI-2,3+ACI-,1637,Pablo Reyes,Exact name match found in SbaPlayers,ACCEPT +5079,Pablo Sandoval,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1753,Pablo Sandoval,Exact name match found in SbaPlayers,ACCEPT +4668,Pat Valaika,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,2044,Pat Valaika,Exact name match found in SbaPlayers,ACCEPT +4269,Patrick Corbin,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,416,Patrick Corbin,Exact name match found in SbaPlayers,ACCEPT +5080,Patrick Sandoval,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1754,Patrick Sandoval,Exact name match found in SbaPlayers,ACCEPT +4688,Paul DeJong,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,485,Paul DeJong,Exact name match found in SbaPlayers,ACCEPT +4400,Paul Fry,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,662,Paul Fry,Exact name match found in SbaPlayers,ACCEPT +4245,Paul Goldschmidt,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,729,Paul Goldschmidt,Exact name match found in SbaPlayers,ACCEPT +2883,Paul Sewald,1,,no+AF8-bbref,1,1806,Paul Sewald,Exact name match found in SbaPlayers,ACCEPT +4499,Pavin Smith,5,,no+AF8-bbref,+ACI-4,5+ACI-,1851,Pavin Smith,Exact name match found in SbaPlayers,ACCEPT +4737,Pedro Baez,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,111,Pedro Baez,Exact name match found in SbaPlayers,ACCEPT +4462,Pedro Severino,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1804,Pedro Severino,Exact name match found in SbaPlayers,ACCEPT +1758,Pedro Strop,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1929,Pedro Strop,Exact name match found in SbaPlayers,ACCEPT +4720,Pete Alonso,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,53,Pete Alonso,Exact name match found in SbaPlayers,ACCEPT +4543,Pete Fairbanks,5,,no+AF8-bbref,+ACI-4,5+ACI-,592,Pete Fairbanks,Exact name match found in SbaPlayers,ACCEPT +1760,Peter Lambert,3,,no+AF8-bbref,+ACI-2,3+ACI-,1088,Peter Lambert,Exact name match found in SbaPlayers,ACCEPT +5081,Phil Ervin,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,579,Phil Ervin,Exact name match found in SbaPlayers,ACCEPT +5082,Phil Gosselin,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,757,Phil Gosselin,Exact name match found in SbaPlayers,ACCEPT +5083,Phil Maton,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1238,Phil Maton,Exact name match found in SbaPlayers,ACCEPT +4653,Phillip Evans,5,,no+AF8-bbref,+ACI-4,5+ACI-,589,Phillip Evans,Exact name match found in SbaPlayers,ACCEPT +4586,Phillips Valdez,5,,no+AF8-bbref,+ACI-4,5+ACI-,2047,Phillips Valdez,Exact name match found in SbaPlayers,ACCEPT +4580,Pierce Johnson,5,,no+AF8-bbref,+ACI-1,4,5+ACI-,985,Pierce Johnson,Exact name match found in SbaPlayers,ACCEPT +2890,Preston Tucker,1,,no+AF8-bbref,1,2024,Preston Tucker,Exact name match found in SbaPlayers,ACCEPT +4641,Rafael Devers,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,499,Rafael Devers,Exact name match found in SbaPlayers,ACCEPT +4257,Rafael Dolis,5,,no+AF8-bbref,+ACI-4,5+ACI-,523,Rafael Dolis,Exact name match found in SbaPlayers,ACCEPT +5084,Rafael Montero,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1352,Rafael Montero,Exact name match found in SbaPlayers,ACCEPT +1766,Rafael Ortega,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1465,Rafael Ortega,Exact name match found in SbaPlayers,ACCEPT +4541,Raimel Tapia,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1957,Raimel Tapia,Exact name match found in SbaPlayers,ACCEPT +4711,Raisel Iglesias,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,950,Raisel Iglesias,Exact name match found in SbaPlayers,ACCEPT +2894,Rajai Davis,1,,no+AF8-bbref,1,466,Rajai Davis,Exact name match found in SbaPlayers,ACCEPT +4352,Ramon Laureano,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1097,Ramon Laureano,Exact name match found in SbaPlayers,ACCEPT +5085,Ramon Rosso,5,,no+AF8-bbref,+ACI-4,5+ACI-,1716,Ramon Rosso,Exact name match found in SbaPlayers,ACCEPT +4553,Ramon Urias,5,,no+AF8-bbref,+ACI-4,5+ACI-,2037,Ramon Urias,Exact name match found in SbaPlayers,ACCEPT +4684,Randal Grichuk,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,775,Randal Grichuk,Exact name match found in SbaPlayers,ACCEPT +4156,Randy Arozarena,5,,no+AF8-bbref,+ACI-4,5+ACI-,92,Randy Arozarena,Exact name match found in SbaPlayers,ACCEPT +4627,Randy Dobnak,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,521,Randy Dobnak,Exact name match found in SbaPlayers,ACCEPT +5086,Rangel Ravelo,5,,no+AF8-bbref,+ACI-4,5+ACI-,1619,Rangel Ravelo,Exact name match found in SbaPlayers,ACCEPT +1772,Ranger Suarez,3,,no+AF8-bbref,+ACI-2,3+ACI-,1936,Ranger Suarez,Exact name match found in SbaPlayers,ACCEPT +5087,Reese McGuire,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1277,Reese McGuire,Exact name match found in SbaPlayers,ACCEPT +4597,Renato Nunez,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1443,Renato Nunez,Exact name match found in SbaPlayers,ACCEPT +1775,Reyes Moronta,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1371,Reyes Moronta,Exact name match found in SbaPlayers,ACCEPT +5088,Reynaldo Lopez,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1145,Reynaldo Lopez,Exact name match found in SbaPlayers,ACCEPT +4475,Rhys Hoskins,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,925,Rhys Hoskins,Exact name match found in SbaPlayers,ACCEPT +4362,Rich Hill,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,898,Rich Hill,Exact name match found in SbaPlayers,ACCEPT +4522,Richard Bleier,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,212,Richard Bleier,Exact name match found in SbaPlayers,ACCEPT +4617,Richard Rodriguez,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1674,Richard Rodriguez,Exact name match found in SbaPlayers,ACCEPT +1781,Richard Urena,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,2036,Richard Urena,Exact name match found in SbaPlayers,ACCEPT +1782,Richie Martin,3,,no+AF8-bbref,+ACI-2,3+ACI-,1216,Richie Martin,Exact name match found in SbaPlayers,ACCEPT +4766,Rick Porcello,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1577,Rick Porcello,Exact name match found in SbaPlayers,ACCEPT +5089,Rico Garcia,5,,no+AF8-bbref,+ACI-4,5+ACI-,693,Rico Garcia,Exact name match found in SbaPlayers,ACCEPT +4251,Riley Smith,5,,no+AF8-bbref,+ACI-4,5+ACI-,1850,Riley Smith,Exact name match found in SbaPlayers,ACCEPT +4575,Rio Ruiz,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1723,Rio Ruiz,Exact name match found in SbaPlayers,ACCEPT +5090,Rob Refsnyder,5,,no+AF8-bbref,+ACI-4,5+ACI-,1626,Rob Refsnyder,Exact name match found in SbaPlayers,ACCEPT +5091,Robbie Erlin,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,578,Robbie Erlin,Exact name match found in SbaPlayers,ACCEPT +4385,Robbie Grossman,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,779,Robbie Grossman,Exact name match found in SbaPlayers,ACCEPT +5092,Robbie Ray,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1620,Robbie Ray,Exact name match found in SbaPlayers,ACCEPT +1788,Robel Garcia,3,,no+AF8-bbref,+ACI-2,3+ACI-,682,Robel Garcia,Exact name match found in SbaPlayers,ACCEPT +5093,Robert Dugger,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,544,Robert Dugger,Exact name match found in SbaPlayers,ACCEPT +5094,Robert Gsellman,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,782,Robert Gsellman,Exact name match found in SbaPlayers,ACCEPT +5095,Robert Stephenson,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1904,Robert Stephenson,Exact name match found in SbaPlayers,ACCEPT +5096,Robert Stock,5,,no+AF8-bbref,+ACI-1,4,5+ACI-,1912,Robert Stock,Exact name match found in SbaPlayers,ACCEPT +1792,Roberto Osuna,3,,no+AF8-bbref,+ACI-2,3+ACI-,1470,Roberto Osuna,Exact name match found in SbaPlayers,ACCEPT +4681,Roberto Perez,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1538,Roberto Perez,Exact name match found in SbaPlayers,ACCEPT +4407,Robinson Cano,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,319,Robinson Cano,Exact name match found in SbaPlayers,ACCEPT +5097,Robinson Chirinos,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,373,Robinson Chirinos,Exact name match found in SbaPlayers,ACCEPT +1796,Roenis Elias,3,,no+AF8-bbref,+ACI-2,3+ACI-,565,Roenis Elias,Exact name match found in SbaPlayers,ACCEPT +5098,Roman Quinn,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1595,Roman Quinn,Exact name match found in SbaPlayers,ACCEPT +4166,Ronald Acuna Jr,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,12,Ronald Acuna Jr,Exact name match found in SbaPlayers,ACCEPT +4572,Ronald Guzman,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,799,Ronald Guzman,Exact name match found in SbaPlayers,ACCEPT +1800,Ronny Rodriguez,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1672,Ronny Rodriguez,Exact name match found in SbaPlayers,ACCEPT +5099,Rony Garcia,5,,no+AF8-bbref,+ACI-4,5+ACI-,689,Rony Garcia,Exact name match found in SbaPlayers,ACCEPT +1801,Rosell Herrera,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,883,Rosell Herrera,Exact name match found in SbaPlayers,ACCEPT +4716,Ross Detwiler,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,497,Ross Detwiler,Exact name match found in SbaPlayers,ACCEPT +5100,Ross Stripling,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1927,Ross Stripling,Exact name match found in SbaPlayers,ACCEPT +5101,Rougned Odor,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1451,Rougned Odor,Exact name match found in SbaPlayers,ACCEPT +4614,Rowan Wick,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,2147,Rowan Wick,Exact name match found in SbaPlayers,ACCEPT +4485,Rowdy Tellez,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1972,Rowdy Tellez,Exact name match found in SbaPlayers,ACCEPT +1807,Russell Martin,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1213,Russell Martin,Exact name match found in SbaPlayers,ACCEPT +4386,Ryan Borucki,5,,no+AF8-bbref,+ACI-1,4,5+ACI-,222,Ryan Borucki,Exact name match found in SbaPlayers,ACCEPT +4581,Ryan Brasier,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,242,Ryan Brasier,Exact name match found in SbaPlayers,ACCEPT +4757,Ryan Braun,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,244,Ryan Braun,Exact name match found in SbaPlayers,ACCEPT +5102,Ryan Buchter,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,276,Ryan Buchter,Exact name match found in SbaPlayers,ACCEPT +1811,Ryan Carpenter,3,,no+AF8-bbref,+ACI-2,3+ACI-,328,Ryan Carpenter,Exact name match found in SbaPlayers,ACCEPT +4762,Ryan Castellani,5,,no+AF8-bbref,+ACI-4,5+ACI-,338,Ryan Castellani,Exact name match found in SbaPlayers,ACCEPT +1812,Ryan Cordell,3,,no+AF8-bbref,+ACI-2,3+ACI-,417,Ryan Cordell,Exact name match found in SbaPlayers,ACCEPT +2926,Ryan Flaherty,1,,no+AF8-bbref,1,621,Ryan Flaherty,Exact name match found in SbaPlayers,ACCEPT +1813,Ryan Goins,3,,no+AF8-bbref,+ACI-2,3+ACI-,728,Ryan Goins,Exact name match found in SbaPlayers,ACCEPT +5103,Ryan Helsley,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,853,Ryan Helsley,Exact name match found in SbaPlayers,ACCEPT +4371,Ryan Jeffers,5,,no+AF8-bbref,+ACI-4,5+ACI-,975,Ryan Jeffers,Exact name match found in SbaPlayers,ACCEPT +2927,Ryan LaMarre,1,,no+AF8-bbref,1,1086,Ryan LaMarre,Exact name match found in SbaPlayers,ACCEPT +2928,Ryan Madson,1,,no+AF8-bbref,1,1180,Ryan Madson,Exact name match found in SbaPlayers,ACCEPT +5104,Ryan McBroom,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1259,Ryan McBroom,Exact name match found in SbaPlayers,ACCEPT +4602,Ryan McMahon,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1286,Ryan McMahon,Exact name match found in SbaPlayers,ACCEPT +4470,Ryan Mountcastle,5,,no+AF8-bbref,+ACI-4,5+ACI-,1377,Ryan Mountcastle,Exact name match found in SbaPlayers,ACCEPT +5105,Ryan OHearn,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1453,Ryan OHearn,Exact name match found in SbaPlayers,ACCEPT +4644,Ryan Pressly,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1584,Ryan Pressly,Exact name match found in SbaPlayers,ACCEPT +2932,Ryan Rua,1,,no+AF8-bbref,1,1719,Ryan Rua,Exact name match found in SbaPlayers,ACCEPT +4230,Ryan Sherriff,5,,no+AF8-bbref,+ACI-4,5+ACI-,1814,Ryan Sherriff,Exact name match found in SbaPlayers,ACCEPT +4696,Ryan Tepera,5,,no+AF8-bbref,+ACI-1,4,5+ACI-,1974,Ryan Tepera,Exact name match found in SbaPlayers,ACCEPT +5106,Ryan Thompson,5,,no+AF8-bbref,+ACI-4,5+ACI-,1983,Ryan Thompson,Exact name match found in SbaPlayers,ACCEPT +4363,Ryan Weber,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,2128,Ryan Weber,Exact name match found in SbaPlayers,ACCEPT +4345,Ryan Yarbrough,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,2208,Ryan Yarbrough,Exact name match found in SbaPlayers,ACCEPT +1821,Ryan Zimmerman,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,2229,Ryan Zimmerman,Exact name match found in SbaPlayers,ACCEPT +5107,Ryne Harper,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,824,Ryne Harper,Exact name match found in SbaPlayers,ACCEPT +5108,Ryne Stanek,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1892,Ryne Stanek,Exact name match found in SbaPlayers,ACCEPT +5109,Ryon Healy,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,842,Ryon Healy,Exact name match found in SbaPlayers,ACCEPT +2938,Sal Romano,1,,no+AF8-bbref,1,1700,Sal Romano,Exact name match found in SbaPlayers,ACCEPT +4140,Salvador Perez,5,,no+AF8-bbref,+ACI-1,4,5+ACI-,1534,Salvador Perez,Exact name match found in SbaPlayers,ACCEPT +5110,Sam Coonrod,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,414,Sam Coonrod,Exact name match found in SbaPlayers,ACCEPT +1826,Sam Dyson,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,554,Sam Dyson,Exact name match found in SbaPlayers,ACCEPT +2941,Sam Freeman,1,,no+AF8-bbref,1,653,Sam Freeman,Exact name match found in SbaPlayers,ACCEPT +1827,Sam Gaviglio,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,707,Sam Gaviglio,Exact name match found in SbaPlayers,ACCEPT +4307,Sam Haggerty,5,,no+AF8-bbref,+ACI-4,5+ACI-,803,Sam Haggerty,Exact name match found in SbaPlayers,ACCEPT +4745,Sam Hilliard,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,903,Sam Hilliard,Exact name match found in SbaPlayers,ACCEPT +4749,Sam Howard,5,,no+AF8-bbref,+ACI-4,5+ACI-,929,Sam Howard,Exact name match found in SbaPlayers,ACCEPT +4131,Sam Huff,5,,no+AF8-bbref,+ACI-4,5+ACI-,936,Sam Huff,Exact name match found in SbaPlayers,ACCEPT +4682,Sam Selman,5,,no+AF8-bbref,+ACI-4,5+ACI-,1798,Sam Selman,Exact name match found in SbaPlayers,ACCEPT +1829,Sam Travis,3,,no+AF8-bbref,+ACI-2,3+ACI-,2010,Sam Travis,Exact name match found in SbaPlayers,ACCEPT +1830,Sam Tuivailala,3,,no+AF8-bbref,+ACI-2,3+ACI-,2025,Sam Tuivailala,Exact name match found in SbaPlayers,ACCEPT +2943,Sammy Solis,1,,no+AF8-bbref,1,1871,Sammy Solis,Exact name match found in SbaPlayers,ACCEPT +4454,Sandy Alcantara,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,35,Sandy Alcantara,Exact name match found in SbaPlayers,ACCEPT +5111,Sandy Leon,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1115,Sandy Leon,Exact name match found in SbaPlayers,ACCEPT +4500,Santiago Espinal,5,,no+AF8-bbref,+ACI-4,5+ACI-,582,Santiago Espinal,Exact name match found in SbaPlayers,ACCEPT +1833,Scooter Gennett,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,710,Scooter Gennett,Exact name match found in SbaPlayers,ACCEPT +4620,Scott Alexander,5,,no+AF8-bbref,+ACI-1,4,5+ACI-,36,Scott Alexander,Exact name match found in SbaPlayers,ACCEPT +4727,Scott Barlow,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,128,Scott Barlow,Exact name match found in SbaPlayers,ACCEPT +5112,Scott Heineman,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,850,Scott Heineman,Exact name match found in SbaPlayers,ACCEPT +5113,Scott Kingery,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1048,Scott Kingery,Exact name match found in SbaPlayers,ACCEPT +1837,Scott Oberg,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1448,Scott Oberg,Exact name match found in SbaPlayers,ACCEPT +1838,Scott Schebler,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1772,Scott Schebler,Exact name match found in SbaPlayers,ACCEPT +5114,Sean Doolittle,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,528,Sean Doolittle,Exact name match found in SbaPlayers,ACCEPT +4685,Sean Manaea,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1189,Sean Manaea,Exact name match found in SbaPlayers,ACCEPT +4249,Sean Murphy,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1390,Sean Murphy,Exact name match found in SbaPlayers,ACCEPT +5115,Sean Newcomb,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1419,Sean Newcomb,Exact name match found in SbaPlayers,ACCEPT +5116,Sean Poppen,5,,no+AF8-bbref,+ACI-4,5+ACI-,1576,Sean Poppen,Exact name match found in SbaPlayers,ACCEPT +4529,Sean Reid Foley,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1627,Sean Reid Foley,Exact name match found in SbaPlayers,ACCEPT +1844,Sean Rodriguez,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1671,Sean Rodriguez,Exact name match found in SbaPlayers,ACCEPT +2954,Seranthony Dominguez,1,,no+AF8-bbref,1,524,Seranthony Dominguez,Exact name match found in SbaPlayers,ACCEPT +5117,Sergio Alcantara,5,,no+AF8-bbref,+ACI-4,5+ACI-,34,Sergio Alcantara,Exact name match found in SbaPlayers,ACCEPT +5118,Sergio Romo,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1705,Sergio Romo,Exact name match found in SbaPlayers,ACCEPT +1846,Seth Brown,3,,no+AF8-bbref,+ACI-2,3+ACI-,265,Seth Brown,Exact name match found in SbaPlayers,ACCEPT +5119,Seth Elledge,5,,no+AF8-bbref,+ACI-4,5+ACI-,567,Seth Elledge,Exact name match found in SbaPlayers,ACCEPT +4657,Seth Lugo,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1165,Seth Lugo,Exact name match found in SbaPlayers,ACCEPT +4141,Shane Bieber,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,194,Shane Bieber,Exact name match found in SbaPlayers,ACCEPT +2958,Shane Carle,1,,no+AF8-bbref,1,326,Shane Carle,Exact name match found in SbaPlayers,ACCEPT +4393,Shane Greene,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,769,Shane Greene,Exact name match found in SbaPlayers,ACCEPT +4654,Shaun Anderson,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,72,Shaun Anderson,Exact name match found in SbaPlayers,ACCEPT +4464,Shawn Armstrong,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,91,Shawn Armstrong,Exact name match found in SbaPlayers,ACCEPT +1852,Shawn Kelley,3,,no+AF8-bbref,+ACI-2,3+ACI-,1019,Shawn Kelley,Exact name match found in SbaPlayers,ACCEPT +5120,Shed Long,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1138,Shed Long,Exact name match found in SbaPlayers,ACCEPT +1854,Shelby Miller,3,,no+AF8-bbref,+ACI-2,3+ACI-,1323,Shelby Miller,Exact name match found in SbaPlayers,ACCEPT +1855,Sheldon Neuse,3,,no+AF8-bbref,+ACI-2,3+ACI-,1415,Sheldon Neuse,Exact name match found in SbaPlayers,ACCEPT +5121,Sherten Apostel,5,,no+AF8-bbref,+ACI-4,5+ACI-,80,Sherten Apostel,Exact name match found in SbaPlayers,ACCEPT +4750,Shin Soo Choo,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,378,Shin Soo Choo,Exact name match found in SbaPlayers,ACCEPT +4546,Shogo Akiyama,5,,no+AF8-bbref,+ACI-4,5+ACI-,28,Shogo Akiyama,Exact name match found in SbaPlayers,ACCEPT +4763,Shohei Ohtani,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1455,Shohei Ohtani,Exact name match found in SbaPlayers,ACCEPT +5122,Shun Yamaguchi,5,,no+AF8-bbref,+ACI-4,5+ACI-,2204,Shun Yamaguchi,Exact name match found in SbaPlayers,ACCEPT +4170,Sixto Sanchez,5,,no+AF8-bbref,+ACI-4,5+ACI-,1751,Sixto Sanchez,Exact name match found in SbaPlayers,ACCEPT +4582,Sonny Gray,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,765,Sonny Gray,Exact name match found in SbaPlayers,ACCEPT +4731,Spencer Howard,5,,no+AF8-bbref,+ACI-4,5+ACI-,930,Spencer Howard,Exact name match found in SbaPlayers,ACCEPT +2963,Spencer Kieboom,1,,no+AF8-bbref,1,1037,Spencer Kieboom,Exact name match found in SbaPlayers,ACCEPT +4401,Spencer Turnbull,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,2028,Spencer Turnbull,Exact name match found in SbaPlayers,ACCEPT +4375,Starlin Castro,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,348,Starlin Castro,Exact name match found in SbaPlayers,ACCEPT +4413,Starling Marte,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1208,Starling Marte,Exact name match found in SbaPlayers,ACCEPT +4368,Stefan Crichton,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,434,Stefan Crichton,Exact name match found in SbaPlayers,ACCEPT +5123,Stephen Piscotty,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1563,Stephen Piscotty,Exact name match found in SbaPlayers,ACCEPT +1864,Stephen Strasburg,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1921,Stephen Strasburg,Exact name match found in SbaPlayers,ACCEPT +5124,Stephen Tarpley,5,,no+AF8-bbref,+ACI-4,5+ACI-,1958,Stephen Tarpley,Exact name match found in SbaPlayers,ACCEPT +5125,Stephen Vogt,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,2086,Stephen Vogt,Exact name match found in SbaPlayers,ACCEPT +5126,Steve Cishek,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,381,Steve Cishek,Exact name match found in SbaPlayers,ACCEPT +1867,Steve Pearce,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1512,Steve Pearce,Exact name match found in SbaPlayers,ACCEPT +4554,Steven Brault,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,243,Steven Brault,Exact name match found in SbaPlayers,ACCEPT +5127,Steven Duggar,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,543,Steven Duggar,Exact name match found in SbaPlayers,ACCEPT +5128,Steven Matz,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1243,Steven Matz,Exact name match found in SbaPlayers,ACCEPT +5129,Steven Souza Jr,5,,no+AF8-bbref,+ACI-1,4,5+ACI-,1881,Steven Souza Jr,Exact name match found in SbaPlayers,ACCEPT +1871,Stevie Wilkerson,3,,no+AF8-bbref,+ACI-2,3+ACI-,2153,Stevie Wilkerson,Exact name match found in SbaPlayers,ACCEPT +4748,TJ McFarland,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1273,TJ McFarland,Exact name match found in SbaPlayers,ACCEPT +4163,TJ Zeuch,5,,no+AF8-bbref,+ACI-4,5+ACI-,2225,TJ Zeuch,Exact name match found in SbaPlayers,ACCEPT +4402,Taijuan Walker,5,,no+AF8-bbref,+ACI-4,5+ACI-,2105,Taijuan Walker,Exact name match found in SbaPlayers,ACCEPT +4124,Tanner Houck,5,,no+AF8-bbref,+ACI-4,5+ACI-,927,Tanner Houck,Exact name match found in SbaPlayers,ACCEPT +4227,Tanner Rainey,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1599,Tanner Rainey,Exact name match found in SbaPlayers,ACCEPT +5130,Tanner Roark,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1659,Tanner Roark,Exact name match found in SbaPlayers,ACCEPT +4196,Tanner Scott,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1788,Tanner Scott,Exact name match found in SbaPlayers,ACCEPT +5131,Tarik Skubal,5,,no+AF8-bbref,+ACI-4,5+ACI-,1836,Tarik Skubal,Exact name match found in SbaPlayers,ACCEPT +4560,Taylor Clarke,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,384,Taylor Clarke,Exact name match found in SbaPlayers,ACCEPT +1877,Taylor Cole,3,,no+AF8-bbref,+ACI-2,3+ACI-,397,Taylor Cole,Exact name match found in SbaPlayers,ACCEPT +1878,Taylor Guerrieri,3,,no+AF8-bbref,+ACI-2,3+ACI-,790,Taylor Guerrieri,Exact name match found in SbaPlayers,ACCEPT +4487,Taylor Guilbeau,5,,no+AF8-bbref,+ACI-4,5+ACI-,791,Taylor Guilbeau,Exact name match found in SbaPlayers,ACCEPT +4616,Taylor Hearn,5,,no+AF8-bbref,+ACI-4,5+ACI-,844,Taylor Hearn,Exact name match found in SbaPlayers,ACCEPT +5132,Taylor Jones,5,,no+AF8-bbref,+ACI-4,5+ACI-,992,Taylor Jones,Exact name match found in SbaPlayers,ACCEPT +5133,Taylor Rogers,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1689,Taylor Rogers,Exact name match found in SbaPlayers,ACCEPT +5134,Taylor Ward,5,,no+AF8-bbref,+ACI-1,4,5+ACI-,2116,Taylor Ward,Exact name match found in SbaPlayers,ACCEPT +4635,Taylor Widener,5,,no+AF8-bbref,+ACI-4,5+ACI-,2149,Taylor Widener,Exact name match found in SbaPlayers,ACCEPT +5135,Taylor Williams,5,,no+AF8-bbref,+ACI-1,4,5+ACI-,2155,Taylor Williams,Exact name match found in SbaPlayers,ACCEPT +1880,Tayron Guerrero,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,788,Tayron Guerrero,Exact name match found in SbaPlayers,ACCEPT +4359,Tejay Antone,5,,no+AF8-bbref,+ACI-4,5+ACI-,79,Tejay Antone,Exact name match found in SbaPlayers,ACCEPT +4318,Teoscar Hernandez,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,873,Teoscar Hernandez,Exact name match found in SbaPlayers,ACCEPT +5136,Thairo Estrada,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,587,Thairo Estrada,Exact name match found in SbaPlayers,ACCEPT +4502,Thomas Eshelman,5,,no+AF8-bbref,+ACI-4,5+ACI-,,,No bbref+AF8-id available,MATCH+AF8-WITH+AF8-BBREF+AF8-ID+AF8-eshelto01 +1883,Thomas Pannone,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1494,Thomas Pannone,Exact name match found in SbaPlayers,ACCEPT +4168,Tim Anderson,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,73,Tim Anderson,Exact name match found in SbaPlayers,ACCEPT +1885,Tim Beckham,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,161,Tim Beckham,Exact name match found in SbaPlayers,ACCEPT +2985,Tim Collins,1,,no+AF8-bbref,1,402,Tim Collins,Exact name match found in SbaPlayers,ACCEPT +1886,Tim Federowicz,3,,no+AF8-bbref,+ACI-2,3+ACI-,601,Tim Federowicz,Exact name match found in SbaPlayers,ACCEPT +5137,Tim Hill,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,900,Tim Hill,Exact name match found in SbaPlayers,ACCEPT +4250,Tim Locastro,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1133,Tim Locastro,Exact name match found in SbaPlayers,ACCEPT +5138,Tim Lopes,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1142,Tim Lopes,Exact name match found in SbaPlayers,ACCEPT +1890,Tim Mayza,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1253,Tim Mayza,Exact name match found in SbaPlayers,ACCEPT +1891,Tim Melville,3,,no+AF8-bbref,+ACI-2,3+ACI-,1301,Tim Melville,Exact name match found in SbaPlayers,ACCEPT +4686,Todd Frazier,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,647,Todd Frazier,Exact name match found in SbaPlayers,ACCEPT +1893,Tom Eshelman,3,,no+AF8-bbref,+ACI-2,3+ACI-,,,No bbref+AF8-id available,MATCH+AF8-WITH+AF8-BBREF+AF8-ID+AF8-eshelto01 +4353,Tom Hatch,5,,no+AF8-bbref,+ACI-4,5+ACI-,,,No bbref+AF8-id available,CREATE+AF8-NEW +1894,Tom Murphy,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1388,Tom Murphy,Exact name match found in SbaPlayers,ACCEPT +4294,Tomas Nido,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1424,Tomas Nido,Exact name match found in SbaPlayers,ACCEPT +4476,Tommy Edman,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,558,Tommy Edman,Exact name match found in SbaPlayers,ACCEPT +4523,Tommy Hunter,5,,no+AF8-bbref,+ACI-1,4,5+ACI-,941,Tommy Hunter,Exact name match found in SbaPlayers,ACCEPT +1897,Tommy Kahnle,3,,no+AF8-bbref,+ACI-2,3+ACI-,1006,Tommy Kahnle,Exact name match found in SbaPlayers,ACCEPT +4567,Tommy La Stella,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1082,Tommy La Stella,Exact name match found in SbaPlayers,ACCEPT +5139,Tommy Milone,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1333,Tommy Milone,Exact name match found in SbaPlayers,ACCEPT +5140,Tommy Pham,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1552,Tommy Pham,Exact name match found in SbaPlayers,ACCEPT +4213,Tony Gonsolin,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,734,Tony Gonsolin,Exact name match found in SbaPlayers,ACCEPT +5141,Tony Kemp,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1027,Tony Kemp,Exact name match found in SbaPlayers,ACCEPT +2994,Tony Sipp,1,,no+AF8-bbref,1,1829,Tony Sipp,Exact name match found in SbaPlayers,ACCEPT +4741,Tony Watson,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,2122,Tony Watson,Exact name match found in SbaPlayers,ACCEPT +5142,Tony Wolters,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,2187,Tony Wolters,Exact name match found in SbaPlayers,ACCEPT +5143,Touki Toussaint,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,2005,Touki Toussaint,Exact name match found in SbaPlayers,ACCEPT +4394,Travis Bergen,5,,no+AF8-bbref,+ACI-4,5+ACI-,180,Travis Bergen,Exact name match found in SbaPlayers,ACCEPT +5144,Travis Demeritte,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,491,Travis Demeritte,Exact name match found in SbaPlayers,ACCEPT +5145,Travis Jankowski,5,,no+AF8-bbref,+ACI-1,4,5+ACI-,967,Travis Jankowski,Exact name match found in SbaPlayers,ACCEPT +4276,Travis Lakins,5,,no+AF8-bbref,+ACI-4,5+ACI-,1085,Travis Lakins,Exact name match found in SbaPlayers,ACCEPT +4728,Travis Shaw,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1809,Travis Shaw,Exact name match found in SbaPlayers,ACCEPT +4514,Travis dArnaud,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,461,Travis dArnaud,Exact name match found in SbaPlayers,ACCEPT +4223,Trea Turner,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1,Trea Turner,Exact name match found in SbaPlayers,ACCEPT +4214,Trent Grisham,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,776,Trent Grisham,Exact name match found in SbaPlayers,ACCEPT +1911,Trent Thornton,3,,no+AF8-bbref,+ACI-2,3+ACI-,1988,Trent Thornton,Exact name match found in SbaPlayers,ACCEPT +4162,Trevor Bauer,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,150,Trevor Bauer,Exact name match found in SbaPlayers,ACCEPT +4456,Trevor Cahill,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,304,Trevor Cahill,Exact name match found in SbaPlayers,ACCEPT +5146,Trevor Gott,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,758,Trevor Gott,Exact name match found in SbaPlayers,ACCEPT +3002,Trevor Hildenberger,1,,no+AF8-bbref,1,897,Trevor Hildenberger,Exact name match found in SbaPlayers,ACCEPT +4755,Trevor May,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1248,Trevor May,Exact name match found in SbaPlayers,ACCEPT +5147,Trevor Richards,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1646,Trevor Richards,Exact name match found in SbaPlayers,ACCEPT +5148,Trevor Rogers,5,,no+AF8-bbref,+ACI-4,5+ACI-,1693,Trevor Rogers,Exact name match found in SbaPlayers,ACCEPT +4241,Trevor Rosenthal,5,,no+AF8-bbref,+ACI-4,5+ACI-,1713,Trevor Rosenthal,Exact name match found in SbaPlayers,ACCEPT +4224,Trevor Story,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1914,Trevor Story,Exact name match found in SbaPlayers,ACCEPT +5149,Trevor Williams,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,2156,Trevor Williams,Exact name match found in SbaPlayers,ACCEPT +1919,Trey Mancini,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1190,Trey Mancini,Exact name match found in SbaPlayers,ACCEPT +1920,Trey Wingenter,3,,no+AF8-bbref,+ACI-2,3+ACI-,2176,Trey Wingenter,Exact name match found in SbaPlayers,ACCEPT +4444,Triston McKenzie,5,,no+AF8-bbref,+ACI-4,5+ACI-,1282,Triston McKenzie,Exact name match found in SbaPlayers,ACCEPT +4270,Tucker Barnhart,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,135,Tucker Barnhart,Exact name match found in SbaPlayers,ACCEPT +1922,Ty Blach,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,202,Ty Blach,Exact name match found in SbaPlayers,ACCEPT +5150,Ty Buttrey,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,294,Ty Buttrey,Exact name match found in SbaPlayers,ACCEPT +4372,Ty France,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,642,Ty France,Exact name match found in SbaPlayers,ACCEPT +4517,Tyler Alexander,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,37,Tyler Alexander,Exact name match found in SbaPlayers,ACCEPT +4659,Tyler Anderson,5,,no+AF8-bbref,+ACI-1,4,5+ACI-,68,Tyler Anderson,Exact name match found in SbaPlayers,ACCEPT +1926,Tyler Austin,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,103,Tyler Austin,Exact name match found in SbaPlayers,ACCEPT +5151,Tyler Bashlor,5,,no+AF8-bbref,+ACI-1,4,5+ACI-,144,Tyler Bashlor,Exact name match found in SbaPlayers,ACCEPT +1927,Tyler Beede,3,,no+AF8-bbref,+ACI-2,3+ACI-,164,Tyler Beede,Exact name match found in SbaPlayers,ACCEPT +5152,Tyler Chatwood,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,369,Tyler Chatwood,Exact name match found in SbaPlayers,ACCEPT +4633,Tyler Clippard,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,393,Tyler Clippard,Exact name match found in SbaPlayers,ACCEPT +4473,Tyler Duffey,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,540,Tyler Duffey,Exact name match found in SbaPlayers,ACCEPT +4551,Tyler Flowers,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,630,Tyler Flowers,Exact name match found in SbaPlayers,ACCEPT +4509,Tyler Glasnow,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,726,Tyler Glasnow,Exact name match found in SbaPlayers,ACCEPT +4669,Tyler Heineman,5,,no+AF8-bbref,+ACI-4,5+ACI-,851,Tyler Heineman,Exact name match found in SbaPlayers,ACCEPT +4656,Tyler Kinley,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1050,Tyler Kinley,Exact name match found in SbaPlayers,ACCEPT +4474,Tyler Mahle,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1183,Tyler Mahle,Exact name match found in SbaPlayers,ACCEPT +4288,Tyler Matzek,5,,no+AF8-bbref,+ACI-4,5+ACI-,1244,Tyler Matzek,Exact name match found in SbaPlayers,ACCEPT +5153,Tyler Naquin,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1399,Tyler Naquin,Exact name match found in SbaPlayers,ACCEPT +4460,Tyler ONeill,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1463,Tyler ONeill,Exact name match found in SbaPlayers,ACCEPT +1937,Tyler Olson,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1460,Tyler Olson,Exact name match found in SbaPlayers,ACCEPT +4725,Tyler Rogers,5,,no+AF8-bbref,+ACI-4,5+ACI-,1691,Tyler Rogers,Exact name match found in SbaPlayers,ACCEPT +1938,Tyler Saladino,3,,no+AF8-bbref,+ACI-2,3+ACI-,1737,Tyler Saladino,Exact name match found in SbaPlayers,ACCEPT +1939,Tyler Skaggs,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1832,Tyler Skaggs,Exact name match found in SbaPlayers,ACCEPT +4132,Tyler Stephenson,5,,no+AF8-bbref,+ACI-4,5+ACI-,1905,Tyler Stephenson,Exact name match found in SbaPlayers,ACCEPT +4645,Tyler Thornburg,5,,no+AF8-bbref,+ACI-4,5+ACI-,1987,Tyler Thornburg,Exact name match found in SbaPlayers,ACCEPT +4425,Tyler Wade,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,2094,Tyler Wade,Exact name match found in SbaPlayers,ACCEPT +4600,Tyler Webb,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,2125,Tyler Webb,Exact name match found in SbaPlayers,ACCEPT +1942,Tyler White,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,2141,Tyler White,Exact name match found in SbaPlayers,ACCEPT +4705,Tyler Zuber,5,,no+AF8-bbref,+ACI-4,5+ACI-,2233,Tyler Zuber,Exact name match found in SbaPlayers,ACCEPT +4313,Tyrone Taylor,5,,no+AF8-bbref,+ACI-4,5+ACI-,1965,Tyrone Taylor,Exact name match found in SbaPlayers,ACCEPT +1943,Tyson Ross,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1714,Tyson Ross,Exact name match found in SbaPlayers,ACCEPT +5154,Tzu Wei Lin,5,,no+AF8-bbref,+ACI-4,5+ACI-,1122,Tzu Wei Lin,Exact name match found in SbaPlayers,ACCEPT +1944,Victor Alcantara,3,,no+AF8-bbref,+ACI-2,3+ACI-,33,Victor Alcantara,Exact name match found in SbaPlayers,ACCEPT +3023,Victor Arano,1,,no+AF8-bbref,1,83,Victor Arano,Exact name match found in SbaPlayers,ACCEPT +5155,Victor Caratini,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,325,Victor Caratini,Exact name match found in SbaPlayers,ACCEPT +4303,Victor Gonzalez,5,,no+AF8-bbref,+ACI-4,5+ACI-,743,Victor Gonzalez,Exact name match found in SbaPlayers,ACCEPT +3025,Victor Martinez,1,,no+AF8-bbref,1,1221,Victor Martinez,Exact name match found in SbaPlayers,ACCEPT +4647,Victor Reyes,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1638,Victor Reyes,Exact name match found in SbaPlayers,ACCEPT +5156,Victor Robles,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1666,Victor Robles,Exact name match found in SbaPlayers,ACCEPT +5157,Vimael Machin,5,,no+AF8-bbref,+ACI-4,5+ACI-,1177,Vimael Machin,Exact name match found in SbaPlayers,ACCEPT +4610,Vince Velasquez,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,2065,Vince Velasquez,Exact name match found in SbaPlayers,ACCEPT +4639,Vladimir Guerrero Jr,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,789,Vladimir Guerrero Jr,Exact name match found in SbaPlayers,ACCEPT +1950,Wade Davis,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,468,Wade Davis,Exact name match found in SbaPlayers,ACCEPT +5158,Wade LeBlanc,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1104,Wade LeBlanc,Exact name match found in SbaPlayers,ACCEPT +5159,Wade Miley,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1318,Wade Miley,Exact name match found in SbaPlayers,ACCEPT +4634,Walker Buehler,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,277,Walker Buehler,Exact name match found in SbaPlayers,ACCEPT +4599,Walker Lockett,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1134,Walker Lockett,Exact name match found in SbaPlayers,ACCEPT +4512,Wander Suero,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1940,Wander Suero,Exact name match found in SbaPlayers,ACCEPT +4679,Wandy Peralta,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1524,Wandy Peralta,Exact name match found in SbaPlayers,ACCEPT +1957,Wei Chung Wang,3,,no+AF8-bbref,+ACI-2,3+ACI-,2114,Wei Chung Wang,Exact name match found in SbaPlayers,ACCEPT +1958,Wei Yin Chen,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,372,Wei Yin Chen,Exact name match found in SbaPlayers,ACCEPT +1959,Welington Castillo,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,343,Welington Castillo,Exact name match found in SbaPlayers,ACCEPT +4649,Wes Benjamin,5,,no+AF8-bbref,+ACI-4,5+ACI-,178,Wes Benjamin,Exact name match found in SbaPlayers,ACCEPT +1960,Wes Parsons,3,,no+AF8-bbref,+ACI-2,3+ACI-,1502,Wes Parsons,Exact name match found in SbaPlayers,ACCEPT +4611,Whit Merrifield,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1309,Whit Merrifield,Exact name match found in SbaPlayers,ACCEPT +5160,Wil Crowe,5,,no+AF8-bbref,+ACI-4,5+ACI-,446,Wil Crowe,Exact name match found in SbaPlayers,ACCEPT +4267,Wil Myers,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1395,Wil Myers,Exact name match found in SbaPlayers,ACCEPT +1963,Wilfredo Tovar,3,,no+AF8-bbref,+ACI-2,3+ACI-,2006,Wilfredo Tovar,Exact name match found in SbaPlayers,ACCEPT +4181,Will D Smith,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,PARTIAL:1841,Will Smith,Partial name match +AC0- REVIEW NEEDED,USE+AF8-SBA+AF8-1841 +4537,Will Harris,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,825,Will Harris,Exact name match found in SbaPlayers,ACCEPT +4660,Will Smith,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1841,Will Smith,Exact name match found in SbaPlayers,ACCEPT +4561,Willi Castro,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,352,Willi Castro,Exact name match found in SbaPlayers,ACCEPT +5161,Willians Astudillo,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,101,Willians Astudillo,Exact name match found in SbaPlayers,ACCEPT +5162,Willie Calhoun,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,307,Willie Calhoun,Exact name match found in SbaPlayers,ACCEPT +4505,Willson Contreras,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,410,Willson Contreras,Exact name match found in SbaPlayers,ACCEPT +4225,Willy Adames,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,14,Willy Adames,Exact name match found in SbaPlayers,ACCEPT +1972,Wilmer Difo,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,516,Wilmer Difo,Exact name match found in SbaPlayers,ACCEPT +4403,Wilmer Flores,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,627,Wilmer Flores,Exact name match found in SbaPlayers,ACCEPT +5163,Wilmer Font,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,634,Wilmer Font,Exact name match found in SbaPlayers,ACCEPT +4673,Wilson Ramos,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1612,Wilson Ramos,Exact name match found in SbaPlayers,ACCEPT +1976,Wily Peralta,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1523,Wily Peralta,Exact name match found in SbaPlayers,ACCEPT +4408,Wyatt Mathisen,5,,no+AF8-bbref,+ACI-4,5+ACI-,1236,Wyatt Mathisen,Exact name match found in SbaPlayers,ACCEPT +4358,Xander Bogaerts,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,216,Xander Bogaerts,Exact name match found in SbaPlayers,ACCEPT +3047,Yacksel Rios,1,,no+AF8-bbref,1,1650,Yacksel Rios,Exact name match found in SbaPlayers,ACCEPT +5164,Yadiel Hernandez,5,,no+AF8-bbref,+ACI-4,5+ACI-,875,Yadiel Hernandez,Exact name match found in SbaPlayers,ACCEPT +1978,Yadiel Rivera,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1656,Yadiel Rivera,Exact name match found in SbaPlayers,ACCEPT +4674,Yadier Molina,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1344,Yadier Molina,Exact name match found in SbaPlayers,ACCEPT +4143,Yairo Munoz,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1383,Yairo Munoz,Exact name match found in SbaPlayers,ACCEPT +4356,Yan Gomes,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,731,Yan Gomes,Exact name match found in SbaPlayers,ACCEPT +4418,Yandy Diaz,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,507,Yandy Diaz,Exact name match found in SbaPlayers,ACCEPT +1983,Yangervis Solarte,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1869,Yangervis Solarte,Exact name match found in SbaPlayers,ACCEPT +1984,Yasiel Puig,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,1590,Yasiel Puig,Exact name match found in SbaPlayers,ACCEPT +4527,Yasmani Grandal,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,761,Yasmani Grandal,Exact name match found in SbaPlayers,ACCEPT +3055,Yefry Ramirez,1,,no+AF8-bbref,1,1607,Yefry Ramirez,Exact name match found in SbaPlayers,ACCEPT +4515,Yency Almonte,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,50,Yency Almonte,Exact name match found in SbaPlayers,ACCEPT +4194,Yimi Garcia,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,680,Yimi Garcia,Exact name match found in SbaPlayers,ACCEPT +5165,Yoan Lopez,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1147,Yoan Lopez,Exact name match found in SbaPlayers,ACCEPT +4612,Yoan Moncada,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1348,Yoan Moncada,Exact name match found in SbaPlayers,ACCEPT +5166,Yoenis Cespedes,5,,no+AF8-bbref,+ACI-1,4,5+ACI-,360,Yoenis Cespedes,Exact name match found in SbaPlayers,ACCEPT +4387,Yohan Ramirez,5,,no+AF8-bbref,+ACI-4,5+ACI-,1611,Yohan Ramirez,Exact name match found in SbaPlayers,ACCEPT +4126,Yolmer Sanchez,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1744,Yolmer Sanchez,Exact name match found in SbaPlayers,ACCEPT +1991,Yonathan Daza,3,,no+AF8-bbref,+ACI-2,3+ACI-,476,Yonathan Daza,Exact name match found in SbaPlayers,ACCEPT +1992,Yonder Alonso,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,52,Yonder Alonso,Exact name match found in SbaPlayers,ACCEPT +4347,Yonny Chirinos,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,374,Yonny Chirinos,Exact name match found in SbaPlayers,ACCEPT +1994,Yordan Alvarez,3,,no+AF8-bbref,+ACI-2,3+ACI-,61,Yordan Alvarez,Exact name match found in SbaPlayers,ACCEPT +4729,Yoshi Tsutsugo,5,,no+AF8-bbref,+ACI-4,5+ACI-,2021,Yoshi Tsutsugo,Exact name match found in SbaPlayers,ACCEPT +5167,Yoshihisa Hirano,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,904,Yoshihisa Hirano,Exact name match found in SbaPlayers,ACCEPT +3062,Yovani Gallardo,1,,no+AF8-bbref,1,671,Yovani Gallardo,Exact name match found in SbaPlayers,ACCEPT +1996,Yu Chang,3,,no+AF8-bbref,+ACI-2,3+ACI-,364,Yu Chang,Exact name match found in SbaPlayers,ACCEPT +4174,Yu Darvish,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,462,Yu Darvish,Exact name match found in SbaPlayers,ACCEPT +5168,Yuli Gurriel,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,793,Yuli Gurriel,Exact name match found in SbaPlayers,ACCEPT +4759,Yusei Kikuchi,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1040,Yusei Kikuchi,Exact name match found in SbaPlayers,ACCEPT +4374,Yusmeiro Petit,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,1549,Yusmeiro Petit,Exact name match found in SbaPlayers,ACCEPT +4157,Zac Gallen,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,673,Zac Gallen,Exact name match found in SbaPlayers,ACCEPT +5169,Zac Grotz,5,,no+AF8-bbref,+ACI-4,5+ACI-,780,Zac Grotz,Exact name match found in SbaPlayers,ACCEPT +2002,Zac Reininger,3,,no+AF8-bbref,+ACI-2,3+ACI-,1628,Zac Reininger,Exact name match found in SbaPlayers,ACCEPT +1000,Zach Britton,2,,no+AF8-bbref,2,,,No bbref+AF8-id available,USE+AF8-SBA+AF8-260 +4290,Zach Davies,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,465,Zach Davies,Exact name match found in SbaPlayers,ACCEPT +3065,Zach Duke,1,,no+AF8-bbref,1,545,Zach Duke,Exact name match found in SbaPlayers,ACCEPT +4252,Zach Eflin,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,562,Zach Eflin,Exact name match found in SbaPlayers,ACCEPT +4139,Zach Plesac,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,1566,Zach Plesac,Exact name match found in SbaPlayers,ACCEPT +4507,Zack Britton,5,,no+AF8-bbref,+ACI-1,3,4,5+ACI-,260,Zack Britton,Exact name match found in SbaPlayers,ACCEPT +5170,Zack Burdi,5,,no+AF8-bbref,+ACI-4,5+ACI-,281,Zack Burdi,Exact name match found in SbaPlayers,ACCEPT +5171,Zack Collins,5,,no+AF8-bbref,+ACI-2,3,4,5+ACI-,403,Zack Collins,Exact name match found in SbaPlayers,ACCEPT +2008,Zack Cozart,3,,no+AF8-bbref,+ACI-1,2,3+ACI-,428,Zack Cozart,Exact name match found in SbaPlayers,ACCEPT +5172,Zack Godley,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,727,Zack Godley,Exact name match found in SbaPlayers,ACCEPT +4431,Zack Greinke,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,774,Zack Greinke,Exact name match found in SbaPlayers,ACCEPT +2011,Zack Littell,3,,no+AF8-bbref,+ACI-2,3+ACI-,1127,Zack Littell,Exact name match found in SbaPlayers,ACCEPT +4145,Zack Wheeler,5,,no+AF8-bbref,+ACI-1,2,3,4,5+ACI-,2139,Zack Wheeler,Exact name match found in SbaPlayers,ACCEPT diff --git a/.claude/sqlite-to-postgres/botched-sbaplayer-matching/unmatched_players_summary.txt b/.claude/sqlite-to-postgres/botched-sbaplayer-matching/unmatched_players_summary.txt new file mode 100644 index 0000000..c3e443d --- /dev/null +++ b/.claude/sqlite-to-postgres/botched-sbaplayer-matching/unmatched_players_summary.txt @@ -0,0 +1,13 @@ +UNMATCHED PLAYERS SUMMARY +================================================== + +Players with bbref_id but no SbaPlayer match: 13 +Players without bbref_id: 1430 +Total unique unmatched players: 1443 + +NEXT STEPS: +1. Review the CSV file: /tmp/unmatched_players_for_review.csv +2. For players with suggested matches, verify they are correct +3. For players marked 'PARTIAL:', carefully review the suggestion +4. Fill in the suggested_sbaplayer_id column for matches you want to use +5. Leave suggested_sbaplayer_id empty for players needing new SbaPlayer records diff --git a/.claude/sqlite-to-postgres/botched-sbaplayer-matching/update_csv_files.py b/.claude/sqlite-to-postgres/botched-sbaplayer-matching/update_csv_files.py new file mode 100644 index 0000000..78d0e5d --- /dev/null +++ b/.claude/sqlite-to-postgres/botched-sbaplayer-matching/update_csv_files.py @@ -0,0 +1,174 @@ +#!/usr/bin/env python3 +""" +Add resolution columns to the CSV files for manual review +""" +import csv +import logging + +logging.basicConfig(level=logging.INFO) +logger = logging.getLogger('UpdateCSV') + +def add_resolution_column_to_unmatched(): + """Add resolution column to unmatched players CSV""" + input_file = '/mnt/NV2/Development/major-domo/database/unmatched_players_for_review.csv' + output_file = '/mnt/NV2/Development/major-domo/database/unmatched_players_for_review_updated.csv' + + with open(input_file, 'r') as infile: + reader = csv.DictReader(infile) + + # Read all rows + rows = list(reader) + + # Add resolution column to each row + for row in rows: + row['resolution'] = '' # Empty for manual filling + + # Add some helpful comments based on the suggested match + if row['suggested_sbaplayer_id'] and not row['suggested_sbaplayer_id'].startswith('PARTIAL:'): + row['resolution'] = 'ACCEPT' # Pre-fill exact matches as ACCEPT + elif row['suggested_sbaplayer_id'].startswith('PARTIAL:'): + row['resolution'] = 'REVIEW' # Mark partial matches for review + else: + row['resolution'] = 'CREATE_NEW' # Default for no suggestions + + # Write updated CSV + with open(output_file, 'w', newline='') as outfile: + fieldnames = list(reader.fieldnames) + ['resolution'] + writer = csv.DictWriter(outfile, fieldnames=fieldnames) + + writer.writeheader() + writer.writerows(rows) + + logger.info(f"Updated unmatched players CSV: {output_file}") + return output_file + +def add_resolution_column_to_high_risk(): + """Add resolution column to high risk matches CSV""" + input_file = '/mnt/NV2/Development/major-domo/database/high_risk_player_matches.csv' + output_file = '/mnt/NV2/Development/major-domo/database/high_risk_player_matches_updated.csv' + + with open(input_file, 'r') as infile: + reader = csv.DictReader(infile) + + # Read all rows + rows = list(reader) + + # Add resolution column to each row + for row in rows: + row['resolution'] = '' # Empty for manual filling + + # Add helpful pre-fills based on risk type and bbref_id presence + if row['risk_type'] == 'sbaplayer_conflict': + # Check if both have bbref_ids - if so, they are definitely different people + sba1_bbref = row['sba1_bbref'].strip() + sba2_bbref = row['sba2_bbref'].strip() + + if sba1_bbref and sba2_bbref and sba1_bbref != sba2_bbref: + # Different bbref_ids = definitely different people + row['resolution'] = 'DIFFERENT_PEOPLE' + elif not sba1_bbref and not sba2_bbref: + # Neither has bbref_id - could be duplicate + if row['similarity_score'] == '1.000': + row['resolution'] = f"MERGE_{row['sba2_id']}_INTO_{row['sba1_id']}" + else: + row['resolution'] = 'DIFFERENT_PEOPLE' + elif sba1_bbref and not sba2_bbref: + # One has bbref_id, one doesn't - could be duplicate needing bbref_id + row['resolution'] = f"MERGE_{row['sba2_id']}_INTO_{row['sba1_id']}" + elif sba2_bbref and not sba1_bbref: + # One has bbref_id, one doesn't - could be duplicate needing bbref_id + row['resolution'] = f"MERGE_{row['sba1_id']}_INTO_{row['sba2_id']}" + else: + # Same bbref_id - definitely duplicate + row['resolution'] = f"MERGE_{row['sba2_id']}_INTO_{row['sba1_id']}" + + elif row['risk_type'] == 'player_ambiguous_match': + row['resolution'] = f"USE_SBA_{row['sba1_id']}" # Pre-select first option + elif row['risk_type'] == 'middle_initial_conflict': + row['resolution'] = 'DIFFERENT_PEOPLE' + + # Write updated CSV + with open(output_file, 'w', newline='') as outfile: + fieldnames = list(reader.fieldnames) + ['resolution'] + writer = csv.DictWriter(outfile, fieldnames=fieldnames) + + writer.writeheader() + writer.writerows(rows) + + logger.info(f"Updated high risk matches CSV: {output_file}") + return output_file + +def create_instructions_file(): + """Create instructions file for manual review""" + instructions = """ +# CSV REVIEW INSTRUCTIONS + +## File 1: unmatched_players_for_review_updated.csv + +**Resolution Column Values:** +- `ACCEPT` - Use the suggested_sbaplayer_id (pre-filled for exact matches) +- `USE_SBA_123` - Use specific SbaPlayer ID 123 instead of suggestion +- `CREATE_NEW` - Create new SbaPlayer record for this player +- `SKIP` - Skip this player for now (won't be processed) +- `REVIEW` - Needs manual review (pre-filled for partial matches) + +**Pre-filled Values:** +- Exact name matches are pre-filled as `ACCEPT` +- Partial matches are marked as `REVIEW` +- No suggestions are marked as `CREATE_NEW` + +## File 2: high_risk_player_matches_updated.csv + +**Resolution Column Values:** +- `MERGE_123_INTO_456` - Merge SbaPlayer 123 into SbaPlayer 456 +- `DIFFERENT_PEOPLE` - These are actually different people, keep separate +- `USE_SBA_123` - For player matches, use this specific SbaPlayer ID +- `CREATE_NEW` - Create new SbaPlayer record +- `SKIP` - Skip this for now + +**Pre-filled Logic for SbaPlayer Conflicts:** +- Different bbref_ids = `DIFFERENT_PEOPLE` (bbref_ids are globally unique) +- Same bbref_id = `MERGE` (definitely duplicates) +- One has bbref_id, one doesn't = `MERGE` suggestion (review needed) +- Neither has bbref_id + identical names = `MERGE` suggestion +- Player ambiguous matches pre-select the first suggested SbaPlayer +- Middle initial conflicts are marked as `DIFFERENT_PEOPLE` + +## Important Notes: +- **bbref_ids are globally unique** - trust them completely +- If two SbaPlayers have different bbref_ids, they are different people +- If one has bbref_id and one doesn't, they might be the same person + +## Next Steps: +1. Review and edit the resolution columns in both files +2. Save the files when done +3. Let Claude know you're ready to process the changes + +## Common Patterns: +- bbref_id mismatches (like "HALP") should usually be `CREATE_NEW` +- Different bbref_ids = always different people +- Common names like "Carlos Martinez" need careful review +- Middle initials usually indicate different people +""" + + with open('/mnt/NV2/Development/major-domo/database/CSV_REVIEW_INSTRUCTIONS.txt', 'w') as f: + f.write(instructions) + + logger.info("Created instructions file: CSV_REVIEW_INSTRUCTIONS.txt") + +def main(): + """Update both CSV files with resolution columns""" + logger.info("Adding resolution columns to CSV files...") + + unmatched_file = add_resolution_column_to_unmatched() + high_risk_file = add_resolution_column_to_high_risk() + create_instructions_file() + + logger.info(f"\n=== CSV FILES UPDATED ===") + logger.info(f"Unmatched players: {unmatched_file}") + logger.info(f"High risk matches: {high_risk_file}") + logger.info(f"Instructions: CSV_REVIEW_INSTRUCTIONS.txt") + logger.info(f"\nPlease review and edit the 'resolution' column in both files.") + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/comprehensive_api_integrity_tests.py b/.claude/sqlite-to-postgres/comprehensive_api_integrity_tests.py similarity index 100% rename from comprehensive_api_integrity_tests.py rename to .claude/sqlite-to-postgres/comprehensive_api_integrity_tests.py diff --git a/create_season_batting_stats_table.sql b/.claude/sqlite-to-postgres/create_season_batting_stats_table.sql similarity index 100% rename from create_season_batting_stats_table.sql rename to .claude/sqlite-to-postgres/create_season_batting_stats_table.sql diff --git a/migrate_to_postgres.py b/.claude/sqlite-to-postgres/migrate_to_postgres.py similarity index 100% rename from migrate_to_postgres.py rename to .claude/sqlite-to-postgres/migrate_to_postgres.py diff --git a/migration_issues_tracker.md b/.claude/sqlite-to-postgres/migration_issues_tracker.md similarity index 100% rename from migration_issues_tracker.md rename to .claude/sqlite-to-postgres/migration_issues_tracker.md diff --git a/optimize_postgres.sql b/.claude/sqlite-to-postgres/optimize_postgres.sql similarity index 100% rename from optimize_postgres.sql rename to .claude/sqlite-to-postgres/optimize_postgres.sql diff --git a/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/SYSTEM_PROMPT_FOR_CONTINUATION.md b/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/SYSTEM_PROMPT_FOR_CONTINUATION.md new file mode 100644 index 0000000..0347ae2 --- /dev/null +++ b/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/SYSTEM_PROMPT_FOR_CONTINUATION.md @@ -0,0 +1,124 @@ +# System Prompt: Player-to-SbaPlayer Matching Project Continuation + +## Project Context +You are working on a critical database linking project for the Major Domo SBA (Strat-o-Matic Baseball Association) fantasy league system. The goal is to link ~12,000 player-season records to SbaPlayer records to enable career stat tracking across seasons 1-12. + +## Problem Background +The `players` table contains individual season records (e.g., "Aaron Judge season 8", "Aaron Judge season 9"). The `sbaplayers` table contains unique player identities with MLB keys. Currently, the `players.sbaplayer_id` field is null for all records, breaking career stat tracking. + +**Previous Failed Approach**: An earlier attempt created 1,323 "new" SbaPlayer records when most players already existed (e.g., tried to create new "Taijuan Walker" when SbaPlayer ID 2105 already existed with key_bbref "walketa01"). + +## Current Successful Approach + +### Multi-Tier Matching Strategy +1. **Tier 1 (bbref_id matching)**: Match `player.bbref_id` to `sbaplayer.key_bbref` - highest confidence +2. **Tier 2 (exact name matching)**: Normalized exact name matching for players without bbref_id +3. **Tier 3 (manual review)**: Human review of remaining unmatched players + +### Current Status - EXCELLENT PROGRESS +- **✅ 11,632 players matched automatically** (95.1% of all 12,232 players) + - Tier 1: 6,764 players via bbref_id matching + - Tier 2: 4,868 players via exact name matching +- **📋 Only 32 unique players need manual review** (down from 1,323!) + +### Files Structure +``` +/mnt/NV2/Development/major-domo/database/player-to-sbaplayer-matching/ +├── comprehensive_player_matching.py # Main analysis script +├── generate_new_sbaplayers_list.py # Generate review list +├── matching_report.txt # Detailed results +├── new_sbaplayers_for_review.csv # Manual review needed +├── new_sbaplayers_summary.txt # Summary +├── matching.log # Detailed logs +└── SYSTEM_PROMPT_FOR_CONTINUATION.md # This file +``` + +### Cached Data Location +All API data is cached in `/tmp/` to avoid repeated API calls: +- `/tmp/sbaplayers.json` - All 2,234 SbaPlayer records +- `/tmp/players_season_{1-12}.json` - All player records by season + +## Current Task: Manual Review Phase + +### What Needs Review +The file `new_sbaplayers_for_review.csv` contains 32 unique players needing manual decisions. Examples: + +**Obvious Existing Matches (script found these):** +- Diego Castillo → SbaPlayer ID 341 +- Javy Guerra → SbaPlayer ID 784 +- Will Smith → SbaPlayer ID 1841 +- Logan Allen → SbaPlayer ID 45 + +**Requires Human Decision:** +- Michael A Taylor → Maybe SbaPlayer ID 1963 "Michael Taylor" (missing middle initial?) +- Josh Fuentes → Maybe SbaPlayer ID 664 "Joshua Fuentes" (Josh vs Joshua?) +- Luis Garcia variants (multiple similar players) +- bbref_id "HALP" (corrupted data) + +### Review Process +User should edit `new_sbaplayers_for_review.csv`: +- Column `your_decision_sbaplayer_id`: Enter existing SbaPlayer ID or leave blank for new record +- Column `your_decision_notes`: Add any comments + +## Next Steps After Review +1. **Process user decisions** from the reviewed CSV +2. **Generate final assignment files**: + - `new_sbaplayers_to_insert.csv` - New SbaPlayer records to create + - `player_sbaplayer_assignments.csv` - All 12,232 player assignments +3. **Execute database updates** via API calls +4. **Verify career stat tracking** works correctly + +## Key Technical Details + +### Database Schema +- `players` table: season-specific records with `sbaplayer_id` (currently null) +- `sbaplayers` table: unique player identities with MLB keys (`key_bbref`, `key_fangraphs`, etc.) + +### API Endpoints +- Production API: `https://api.sba.manticorum.com/` +- Key endpoints: `/players?season=X`, `/sbaplayers`, `/players/{id}` (PATCH) + +### Matching Logic +```python +# Tier 1: bbref_id matching +if player.bbref_id and player.bbref_id in sbaplayer_bbref_map: + match = sbaplayer_bbref_map[player.bbref_id] + +# Tier 2: normalized name matching +normalized_name = normalize_name(player.name) +if normalized_name in sbaplayer_name_map and len(matches) == 1: + match = sbaplayer_name_map[normalized_name][0] +``` + +### Name Normalization Rules +- Lowercase, remove apostrophes/periods +- Handle nicknames (Mike/Michael, Will/William, etc.) +- Remove Jr/Sr suffixes +- Replace hyphens with spaces + +## Success Metrics +- **95.1% automatic matching achieved** ✅ +- **Only 32 manual decisions needed** ✅ +- **Avoided creating 1,300+ duplicate records** ✅ +- **Career stat tracking will work for 11,632 players immediately** ✅ + +## Potential Issues to Watch +1. **Multiple Luis Garcia players** - need to distinguish carefully +2. **Middle initial variations** (Michael A Taylor vs Michael Taylor) +3. **Nickname variations** (Josh vs Joshua) +4. **Corrupted bbref_ids** (like "HALP") + +## Database Safety +- All changes should be **API-based** (no direct database access) +- **Review all assignments** before execution +- **Backup approach**: Can revert by setting `sbaplayer_id` back to null +- **Verification**: Test career stats for sample players after completion + +## How to Continue +1. **Wait for user to complete manual review** of `new_sbaplayers_for_review.csv` +2. **Process the reviewed decisions** into final assignment files +3. **Show user the final assignments** for verification before execution +4. **Execute the database updates** via API calls +5. **Verify career stat functionality** works correctly + +The groundwork is solid - we just need manual review of 32 cases to complete this major database improvement project. \ No newline at end of file diff --git a/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/comprehensive_player_matching.py b/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/comprehensive_player_matching.py new file mode 100644 index 0000000..eca79a4 --- /dev/null +++ b/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/comprehensive_player_matching.py @@ -0,0 +1,399 @@ +#!/usr/bin/env python3 +""" +Comprehensive Player to SbaPlayer Matching System +Uses multi-tier matching strategy to avoid creating duplicate SbaPlayer records +""" +import json +import csv +import logging +import re +from dataclasses import dataclass +from typing import Dict, List, Set, Optional, Tuple +from collections import defaultdict +import difflib + +# Set up logging +logging.basicConfig( + level=logging.INFO, + format='%(asctime)s - %(levelname)s - %(message)s', + handlers=[ + logging.FileHandler('/mnt/NV2/Development/major-domo/database/player-to-sbaplayer-matching/matching.log'), + logging.StreamHandler() + ] +) +logger = logging.getLogger('PlayerMatching') + +@dataclass +class PlayerRecord: + id: int + name: str + season: int + bbref_id: Optional[str] = None + sbaplayer_id: Optional[int] = None + +@dataclass +class SbaPlayerRecord: + id: int + first_name: str + last_name: str + key_bbref: Optional[str] = None + key_fangraphs: Optional[int] = None + key_mlbam: Optional[int] = None + key_retro: Optional[str] = None + + @property + def full_name(self) -> str: + return f"{self.first_name} {self.last_name}" + +@dataclass +class MatchResult: + player_id: int + player_name: str + player_bbref_id: Optional[str] + sbaplayer_id: int + sbaplayer_name: str + sbaplayer_bbref: Optional[str] + match_tier: str + confidence: float + seasons: List[int] + +def normalize_name(name: str) -> str: + """Normalize name for consistent matching""" + if not name: + return "" + + # Convert to lowercase + normalized = name.lower().strip() + + # Remove common suffixes + normalized = re.sub(r'\s+(jr|sr|ii|iii|iv)\.?$', '', normalized) + + # Replace periods and apostrophes + normalized = re.sub(r"['\.]", "", normalized) + + # Replace hyphens with spaces + normalized = re.sub(r'-', ' ', normalized) + + # Normalize whitespace + normalized = re.sub(r'\s+', ' ', normalized) + + return normalized.strip() + +def create_name_variants(name: str) -> Set[str]: + """Create common name variants for matching""" + variants = set() + normalized = normalize_name(name) + variants.add(normalized) + + # Common nickname mappings + nickname_map = { + 'michael': ['mike', 'micky'], + 'mike': ['michael'], + 'william': ['will', 'bill', 'billy'], + 'will': ['william'], + 'bill': ['william'], + 'robert': ['rob', 'bob', 'bobby'], + 'rob': ['robert'], + 'bob': ['robert'], + 'james': ['jim', 'jimmy'], + 'jim': ['james'], + 'thomas': ['tom', 'tommy'], + 'tom': ['thomas'], + 'joseph': ['joe', 'joey'], + 'joe': ['joseph'], + 'christopher': ['chris'], + 'chris': ['christopher'], + 'anthony': ['tony'], + 'tony': ['anthony'], + 'andrew': ['andy', 'drew'], + 'andy': ['andrew'], + 'drew': ['andrew'], + 'jonathan': ['jon'], + 'jon': ['jonathan'], + 'matthew': ['matt'], + 'matt': ['matthew'], + 'nicholas': ['nick'], + 'nick': ['nicholas'], + 'alexander': ['alex'], + 'alex': ['alexander'], + 'benjamin': ['ben'], + 'ben': ['benjamin'], + 'samuel': ['sam'], + 'sam': ['samuel'], + 'daniel': ['dan', 'danny'], + 'dan': ['daniel'], + 'danny': ['daniel'], + 'david': ['dave'], + 'dave': ['david'], + 'edward': ['ed', 'eddie'], + 'ed': ['edward'], + 'eddie': ['edward'] + } + + parts = normalized.split() + if len(parts) >= 2: + first_name = parts[0] + rest = ' '.join(parts[1:]) + + # Add nickname variants + if first_name in nickname_map: + for nickname in nickname_map[first_name]: + variants.add(f"{nickname} {rest}") + + return variants + +def load_cached_data(): + """Load all cached player and SbaPlayer data""" + logger.info("Loading cached data...") + + # Load SbaPlayers + with open('/tmp/sbaplayers.json', 'r') as f: + sbaplayer_data = json.load(f) + + sbaplayers = [] + for data in sbaplayer_data: + sbaplayers.append(SbaPlayerRecord(**data)) + + # Load all players + all_players = [] + for season in range(1, 13): + with open(f"/tmp/players_season_{season}.json", 'r') as f: + season_data = json.load(f) + + for data in season_data: + all_players.append(PlayerRecord(**data)) + + logger.info(f"Loaded {len(sbaplayers)} SbaPlayers and {len(all_players)} player records") + return all_players, sbaplayers + +def analyze_data_coverage(all_players: List[PlayerRecord], sbaplayers: List[SbaPlayerRecord]): + """Analyze data coverage and patterns""" + logger.info("Analyzing data coverage...") + + # SbaPlayer analysis + sba_with_bbref = sum(1 for sba in sbaplayers if sba.key_bbref) + sba_with_fangraphs = sum(1 for sba in sbaplayers if sba.key_fangraphs) + + logger.info(f"SbaPlayer coverage:") + logger.info(f" Total SbaPlayers: {len(sbaplayers)}") + logger.info(f" With key_bbref: {sba_with_bbref} ({sba_with_bbref/len(sbaplayers)*100:.1f}%)") + logger.info(f" With key_fangraphs: {sba_with_fangraphs} ({sba_with_fangraphs/len(sbaplayers)*100:.1f}%)") + + # Player analysis + players_with_bbref = sum(1 for p in all_players if p.bbref_id) + + logger.info(f"Player coverage:") + logger.info(f" Total player records: {len(all_players)}") + logger.info(f" With bbref_id: {players_with_bbref} ({players_with_bbref/len(all_players)*100:.1f}%)") + + # Check for existing assignments + players_with_sbaplayer = sum(1 for p in all_players if p.sbaplayer_id) + logger.info(f" Already assigned to SbaPlayer: {players_with_sbaplayer}") + +def create_matching_maps(sbaplayers: List[SbaPlayerRecord]) -> Tuple[Dict, Dict]: + """Create lookup maps for efficient matching""" + logger.info("Creating matching maps...") + + # Map by bbref_id + bbref_map = {} + for sba in sbaplayers: + if sba.key_bbref: + bbref_map[sba.key_bbref] = sba + + # Map by normalized name (with variants) + name_map = defaultdict(list) + for sba in sbaplayers: + variants = create_name_variants(sba.full_name) + for variant in variants: + name_map[variant].append(sba) + + logger.info(f"Created bbref_id map: {len(bbref_map)} entries") + logger.info(f"Created name map: {len(name_map)} entries") + + return bbref_map, name_map + +def match_players_tier1_bbref(all_players: List[PlayerRecord], bbref_map: Dict) -> List[MatchResult]: + """Tier 1: Exact bbref_id matching""" + logger.info("Tier 1: Matching by bbref_id...") + + matches = [] + unique_players = {} # Group by bbref_id to avoid duplicates + + # Group players by bbref_id + for player in all_players: + if player.bbref_id: + if player.bbref_id not in unique_players: + unique_players[player.bbref_id] = [] + unique_players[player.bbref_id].append(player) + + # Match each unique bbref_id + for bbref_id, players in unique_players.items(): + if bbref_id in bbref_map: + sba = bbref_map[bbref_id] + seasons = [p.season for p in players] + + # Create match result for all players with this bbref_id + for player in players: + match = MatchResult( + player_id=player.id, + player_name=player.name, + player_bbref_id=bbref_id, + sbaplayer_id=sba.id, + sbaplayer_name=sba.full_name, + sbaplayer_bbref=sba.key_bbref, + match_tier="tier1_bbref", + confidence=1.0, + seasons=seasons + ) + matches.append(match) + + logger.info(f"Tier 1 matches: {len(matches)} player records") + return matches + +def match_players_tier2_name(all_players: List[PlayerRecord], name_map: Dict, + tier1_matches: List[MatchResult]) -> List[MatchResult]: + """Tier 2: Exact normalized name matching for players without bbref_id""" + logger.info("Tier 2: Matching by exact name...") + + # Get player IDs already matched in tier 1 + matched_player_ids = {match.player_id for match in tier1_matches} + + matches = [] + unique_players = {} # Group by name + + # Group remaining players by name + for player in all_players: + if player.id not in matched_player_ids and not player.bbref_id: + normalized_name = normalize_name(player.name) + if normalized_name not in unique_players: + unique_players[normalized_name] = [] + unique_players[normalized_name].append(player) + + # Match each unique name + for normalized_name, players in unique_players.items(): + if normalized_name in name_map: + potential_sba_matches = name_map[normalized_name] + + if len(potential_sba_matches) == 1: + # Unambiguous match + sba = potential_sba_matches[0] + seasons = [p.season for p in players] + + for player in players: + match = MatchResult( + player_id=player.id, + player_name=player.name, + player_bbref_id=None, + sbaplayer_id=sba.id, + sbaplayer_name=sba.full_name, + sbaplayer_bbref=sba.key_bbref, + match_tier="tier2_exact_name", + confidence=0.95, + seasons=seasons + ) + matches.append(match) + # Note: Ambiguous matches (multiple SbaPlayers) will be handled in tier 3 + + logger.info(f"Tier 2 matches: {len(matches)} player records") + return matches + +def find_unmatched_players(all_players: List[PlayerRecord], tier1_matches: List[MatchResult], + tier2_matches: List[MatchResult]) -> List[PlayerRecord]: + """Find players that still need matching""" + matched_player_ids = set() + for match in tier1_matches + tier2_matches: + matched_player_ids.add(match.player_id) + + unmatched = [p for p in all_players if p.id not in matched_player_ids] + + # Group unmatched players by unique identifier + unique_unmatched = {} + for player in unmatched: + if player.bbref_id: + key = f"bbref:{player.bbref_id}" + else: + key = f"name:{normalize_name(player.name)}" + + if key not in unique_unmatched: + unique_unmatched[key] = [] + unique_unmatched[key].append(player) + + logger.info(f"Unmatched: {len(unmatched)} player records ({len(unique_unmatched)} unique players)") + return unmatched, unique_unmatched + +def generate_matching_report(tier1_matches: List[MatchResult], tier2_matches: List[MatchResult], + unmatched: List[PlayerRecord], unique_unmatched: Dict): + """Generate comprehensive matching report""" + logger.info("Generating matching report...") + + # Summary statistics + total_tier1 = len(tier1_matches) + total_tier2 = len(tier2_matches) + total_matched = total_tier1 + total_tier2 + total_unmatched = len(unmatched) + + with open('/mnt/NV2/Development/major-domo/database/player-to-sbaplayer-matching/matching_report.txt', 'w') as f: + f.write("COMPREHENSIVE PLAYER MATCHING REPORT\n") + f.write("=" * 50 + "\n\n") + + f.write("MATCHING SUMMARY:\n") + f.write(f" Tier 1 (bbref_id): {total_tier1:,} player records\n") + f.write(f" Tier 2 (exact name): {total_tier2:,} player records\n") + f.write(f" Total matched: {total_matched:,} player records\n") + f.write(f" Unmatched: {total_unmatched:,} player records ({len(unique_unmatched)} unique players)\n\n") + + f.write("TIER 1 EXAMPLES (bbref_id matches):\n") + for i, match in enumerate(tier1_matches[:10]): + f.write(f" {match.player_name} ({match.player_bbref_id}) → {match.sbaplayer_name} (ID: {match.sbaplayer_id})\n") + if len(tier1_matches) > 10: + f.write(f" ... and {len(tier1_matches) - 10} more\n") + f.write("\n") + + f.write("TIER 2 EXAMPLES (exact name matches):\n") + for i, match in enumerate(tier2_matches[:10]): + f.write(f" {match.player_name} → {match.sbaplayer_name} (ID: {match.sbaplayer_id})\n") + if len(tier2_matches) > 10: + f.write(f" ... and {len(tier2_matches) - 10} more\n") + f.write("\n") + + f.write("SAMPLE UNMATCHED PLAYERS (need new SbaPlayer records):\n") + sample_unmatched = list(unique_unmatched.items())[:20] + for key, players in sample_unmatched: + representative = players[0] # Show one representative + seasons = sorted([p.season for p in players]) + f.write(f" {representative.name} (bbref: {representative.bbref_id or 'None'}) - seasons {seasons}\n") + if len(unique_unmatched) > 20: + f.write(f" ... and {len(unique_unmatched) - 20} more unique players\n") + + logger.info("Matching report generated: matching_report.txt") + +def main(): + """Main matching process""" + logger.info("Starting comprehensive player matching...") + + # Load data + all_players, sbaplayers = load_cached_data() + + # Analyze coverage + analyze_data_coverage(all_players, sbaplayers) + + # Create matching maps + bbref_map, name_map = create_matching_maps(sbaplayers) + + # Tier 1: bbref_id matching + tier1_matches = match_players_tier1_bbref(all_players, bbref_map) + + # Tier 2: exact name matching + tier2_matches = match_players_tier2_name(all_players, name_map, tier1_matches) + + # Find unmatched players + unmatched, unique_unmatched = find_unmatched_players(all_players, tier1_matches, tier2_matches) + + # Generate report + generate_matching_report(tier1_matches, tier2_matches, unmatched, unique_unmatched) + + logger.info("Matching analysis complete!") + logger.info(f"Results: {len(tier1_matches + tier2_matches):,} matched, {len(unmatched):,} unmatched") + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/debug_emergency_players.py b/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/debug_emergency_players.py new file mode 100644 index 0000000..9c22d35 --- /dev/null +++ b/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/debug_emergency_players.py @@ -0,0 +1,105 @@ +#!/usr/bin/env python3 +"""Debug the 508 emergency players to understand why they weren't matched""" + +import json +import csv +from comprehensive_player_matching import normalize_name, create_name_variants + +def main(): + # Load data + all_players = [] + for season in range(1, 13): + with open(f"/tmp/players_season_{season}.json", 'r') as f: + season_data = json.load(f) + all_players.extend(season_data) + + with open('/tmp/sbaplayers.json', 'r') as f: + sbaplayers = json.load(f) + + # Read the assignment file to identify emergency players + emergency_players = [] + with open('player_sbaplayer_assignments.csv', 'r') as f: + reader = csv.DictReader(f) + for row in reader: + if row['assignment_source'] == 'emergency_new': + emergency_players.append({ + 'player_id': int(row['player_id']), + 'name': row['player_name'], + 'season': int(row['season']), + 'bbref_id': row['bbref_id'] + }) + + print(f"Found {len(emergency_players)} emergency assignments") + + # Check some samples to see why they weren't matched + sample_emergencies = emergency_players[:10] + + # Create SbaPlayer lookup maps + sbaplayer_name_map = {} + sbaplayer_bbref_map = {} + for sba in sbaplayers: + full_name = f"{sba['first_name']} {sba['last_name']}" + normalized = normalize_name(full_name) + sbaplayer_name_map[normalized] = sba + + if sba.get('key_bbref'): + sbaplayer_bbref_map[sba['key_bbref']] = sba + + print("\nAnalyzing sample emergency players:") + print("-" * 50) + + for emergency in sample_emergencies: + print(f"\nPlayer: {emergency['name']} (Season {emergency['season']})") + print(f" bbref_id: {emergency['bbref_id']}") + + # Check bbref_id match + if emergency['bbref_id'] and emergency['bbref_id'] in sbaplayer_bbref_map: + sba = sbaplayer_bbref_map[emergency['bbref_id']] + print(f" 🔍 BBREF MATCH FOUND: {sba['first_name']} {sba['last_name']} (ID {sba['id']})") + print(f" ❌ This should have been Tier 1 matched!") + elif emergency['bbref_id']: + print(f" ❌ bbref_id '{emergency['bbref_id']}' not found in SbaPlayer records") + + # Check name match + normalized = normalize_name(emergency['name']) + if normalized in sbaplayer_name_map: + sba = sbaplayer_name_map[normalized] + print(f" 🔍 NAME MATCH FOUND: {sba['first_name']} {sba['last_name']} (ID {sba['id']})") + print(f" ❌ This should have been Tier 2 matched!") + else: + print(f" ❌ Normalized name '{normalized}' not found in SbaPlayer records") + + # Check for similar names + similar_names = [name for name in sbaplayer_name_map.keys() + if emergency['name'].lower() in name.lower() or name.lower() in emergency['name'].lower()] + if similar_names[:3]: + print(f" Similar names: {similar_names[:3]}") + + # Check season distribution of emergency players + season_counts = {} + for ep in emergency_players: + season = ep['season'] + season_counts[season] = season_counts.get(season, 0) + 1 + + print(f"\nSeason distribution of emergency players:") + for season in sorted(season_counts.keys()): + print(f" Season {season}: {season_counts[season]} players") + + # Check if these players exist in the original data but were somehow missed + print(f"\nChecking if emergency players were in original comprehensive matching scope...") + + emergency_names = set(ep['name'] for ep in emergency_players) + original_unmatched_names = set() + + # Try to load from matching report if it exists + try: + with open('matching_report.txt', 'r') as f: + content = f.read() + # This is rough parsing - just to get an idea + if "SAMPLE UNMATCHED PLAYERS" in content: + print("Found original unmatched players list in matching report") + except FileNotFoundError: + print("No matching report found") + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/debug_unassigned.py b/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/debug_unassigned.py new file mode 100644 index 0000000..03bd82d --- /dev/null +++ b/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/debug_unassigned.py @@ -0,0 +1,46 @@ +#!/usr/bin/env python3 +"""Debug script to understand why 508 players are unassigned""" + +import json + +def load_data(): + """Load player data""" + all_players = [] + for season in range(1, 13): + with open(f"/tmp/players_season_{season}.json", 'r') as f: + season_data = json.load(f) + all_players.extend(season_data) + + return all_players + +def main(): + players = load_data() + print(f"Total players loaded: {len(players)}") + + # Check for players already assigned to SbaPlayer + already_assigned = [p for p in players if p.get('sbaplayer_id')] + print(f"Already assigned players: {len(already_assigned)}") + + # Check season distribution + season_counts = {} + for p in players: + season = p['season'] + season_counts[season] = season_counts.get(season, 0) + 1 + + print("\nSeason distribution:") + for season in sorted(season_counts.keys()): + print(f" Season {season}: {season_counts[season]} players") + + # Show some sample unassigned players + unassigned_names = set() + for p in players: + if not p.get('sbaplayer_id'): + unassigned_names.add(p['name']) + + print(f"\nTotal unique unassigned player names: {len(unassigned_names)}") + print("Sample unassigned players:") + for name in sorted(list(unassigned_names))[:20]: + print(f" {name}") + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/final_assignment_summary.txt b/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/final_assignment_summary.txt new file mode 100644 index 0000000..bcca66f --- /dev/null +++ b/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/final_assignment_summary.txt @@ -0,0 +1,44 @@ +FINAL PLAYER-TO-SBAPLAYER ASSIGNMENT SUMMARY +======================================================= + +ASSIGNMENT BREAKDOWN: + Tier 1 (bbref_id): 6,764 players + Tier 2 (exact name): 5,367 players + Manual existing: 30 players + Manual new: 62 players + Emergency new: 9 players (ERROR) + TOTAL ASSIGNMENTS: 12,232 players + +NEW SBAPLAYER RECORDS TO CREATE: + Total new records: 16 + Albert Almora (temp ID 3234) - 5 players + Diego Castillo (temp ID 3235) - 9 players + Javy Guerra (temp ID 3236) - 5 players + Luis Garcia (temp ID 3237) - 12 players + Evan Phillips (temp ID 3238) - 9 players + Francisco Mejia (temp ID 3239) - 10 players + Mike Soroka (temp ID 3240) - 4 players + Tom Eshelman (temp ID 3241) - 6 players + Jose Garcia (temp ID 3242) - 2 players + Logan Allen (temp ID 3243) - 7 players + Luis H Garcia (temp ID 3244) - 8 players + Tom Hatch (temp ID 3245) - 2 players + Danny Coulombe (temp ID 3246) - 2 players + JC Mejia (temp ID 3247) - 2 players + Kody Funderburk (temp ID 3248) - 1 players + Tyler Phillips (temp ID 3249) - 1 players + +CAREER STAT TRACKING ENABLED FOR: + 12,161 players linked to existing SbaPlayers + 62 players will have career stats after new SbaPlayer creation + TOTAL: 12,232 players will have career stat tracking + +FILES GENERATED: + - player_sbaplayer_assignments.csv (ready for API updates) + - new_sbaplayers_to_insert.csv (new SbaPlayer records to create first) + +NEXT STEPS: +1. Review the assignment files for any issues +2. Create new SbaPlayer records via API (new_sbaplayers_to_insert.csv) +3. Update all player.sbaplayer_id fields via API (player_sbaplayer_assignments.csv) +4. Verify career stat tracking works correctly diff --git a/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/generate_final_assignments.py b/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/generate_final_assignments.py new file mode 100644 index 0000000..49c6af4 --- /dev/null +++ b/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/generate_final_assignments.py @@ -0,0 +1,447 @@ +#!/usr/bin/env python3 +""" +Generate final player-to-SbaPlayer assignments by combining: +1. Automatic matches from comprehensive matching (Tier 1 & 2) +2. Manual decisions from review CSV +3. New SbaPlayer records for unmatched players +""" + +import json +import csv +import logging +import re +from dataclasses import dataclass, asdict +from typing import Dict, List, Set, Optional, Tuple +from collections import defaultdict + +# Import functions from comprehensive matching +from comprehensive_player_matching import ( + PlayerRecord, SbaPlayerRecord, MatchResult, normalize_name, + create_name_variants, load_cached_data, create_matching_maps, + match_players_tier1_bbref, match_players_tier2_name, find_unmatched_players +) + +# Set up logging +logging.basicConfig( + level=logging.INFO, + format='%(asctime)s - %(name)s - %(levelname)s - %(message)s', + handlers=[ + logging.FileHandler('matching.log'), + logging.StreamHandler() + ] +) +logger = logging.getLogger(f'{__name__}.generate_final_assignments') + +@dataclass +class ManualDecision: + """Manual decision from review CSV""" + group_key: str + player_name: str + bbref_id: str + seasons_appeared: str + sample_player_ids: str + potential_existing_sbaplayer_id: str + potential_existing_sbaplayer_name: str + potential_match_reason: str + your_decision_sbaplayer_id: str + your_decision_notes: str + +@dataclass +class FinalAssignment: + """Final player assignment result""" + player_id: int + player_name: str + season: int + bbref_id: Optional[str] + assigned_sbaplayer_id: int + assignment_source: str # 'tier1_bbref', 'tier2_name', 'manual_existing', 'manual_new' + notes: str = "" + +@dataclass +class NewSbaPlayer: + """New SbaPlayer record to create""" + temp_id: int # Temporary ID for assignments + canonical_name: str + key_bbref: Optional[str] + first_name: str + last_name: str + name_variations: List[str] + player_count: int + notes: str + +def parse_manual_decisions(): + """Parse manual decisions from the review CSV""" + decisions = [] + + logger.info("Parsing manual decisions from new_sbaplayers_for_review.csv...") + + with open('new_sbaplayers_for_review.csv', 'r', encoding='utf-8') as f: + # Handle the encoded format + content = f.read() + # Decode common HTML entities + content = content.replace('+AF8-', '_') + content = content.replace('+ACI-', '"') + content = content.replace('+AC0-', '-') + + # Parse as CSV + lines = content.strip().split('\n') + reader = csv.DictReader(lines) + + for row in reader: + if not row.get('group_key'): # Skip empty rows + continue + + decision = ManualDecision( + group_key=row['group_key'], + player_name=row['player_name'], + bbref_id=row['bbref_id'], + seasons_appeared=row['seasons_appeared'], + sample_player_ids=row['sample_player_ids'], + potential_existing_sbaplayer_id=row['potential_existing_sbaplayer_id'], + potential_existing_sbaplayer_name=row['potential_existing_sbaplayer_name'], + potential_match_reason=row['potential_match_reason'], + your_decision_sbaplayer_id=row['your_decision_sbaplayer_id'], + your_decision_notes=row['your_decision_notes'] + ) + decisions.append(decision) + + logger.info(f"Parsed {len(decisions)} manual decisions") + return decisions + +def process_manual_decisions(decisions: List[ManualDecision], sbaplayers: List[SbaPlayerRecord]) -> Tuple[Dict, Dict]: + """Process manual decisions into existing matches and new players needed""" + + # Create SbaPlayer lookup + sbaplayer_map = {sp.id: sp for sp in sbaplayers} + + # Process decisions + existing_matches = {} # player_name -> sbaplayer_id + new_player_groups = {} # canonical_name -> [player_names] + special_cases = {} # Handle consolidations and corrupted data + + for decision in decisions: + player_name = decision.player_name + + if decision.your_decision_sbaplayer_id: + # User chose an existing SbaPlayer + try: + sbaplayer_id = int(decision.your_decision_sbaplayer_id) + if sbaplayer_id in sbaplayer_map: + existing_matches[player_name] = sbaplayer_id + logger.info(f"Manual match: '{player_name}' -> SbaPlayer ID {sbaplayer_id} ({sbaplayer_map[sbaplayer_id].full_name})") + else: + logger.warning(f"Invalid SbaPlayer ID {sbaplayer_id} for {player_name}") + except ValueError: + logger.warning(f"Invalid SbaPlayer ID format: {decision.your_decision_sbaplayer_id}") + else: + # User decided this needs a new SbaPlayer record + canonical_name = player_name # Default to same name + + # Check for special consolidation cases + if "Three-way match" in decision.your_decision_notes: + if "use name Tom Eshelman" in decision.your_decision_notes: + canonical_name = "Tom Eshelman" + elif "Two-way match" in decision.your_decision_notes: + if "join with bbref_id mejiafr01" in decision.your_decision_notes: + # This Francisco Mejia (HALP) should consolidate with the legitimate one + canonical_name = "Francisco Mejia" # Will be consolidated later + special_cases[player_name] = "consolidate_with_mejiafr01" + + # Group players by canonical name + if canonical_name not in new_player_groups: + new_player_groups[canonical_name] = [] + new_player_groups[canonical_name].append(player_name) + + logger.info(f"Manual decisions processed:") + logger.info(f" Existing matches: {len(existing_matches)}") + logger.info(f" New player groups: {len(new_player_groups)}") + + return existing_matches, new_player_groups, special_cases + +def create_new_sbaplayer_records(new_player_groups: Dict[str, List[str]], all_players: List[PlayerRecord], + sbaplayers: List[SbaPlayerRecord]) -> List[NewSbaPlayer]: + """Create new SbaPlayer records for unmatched player groups""" + + new_sbaplayers = [] + next_id = max([sp.id for sp in sbaplayers]) + 1000 # Start from high ID to avoid conflicts + + for canonical_name, player_names in new_player_groups.items(): + # Find all player records for this group + all_variants = set(player_names) + group_players = [p for p in all_players if p.name in all_variants] + + if not group_players: + logger.warning(f"No player records found for group: {canonical_name}") + continue + + # Get bbref_id from any player that has one + bbref_id = None + for player in group_players: + if player.bbref_id and player.bbref_id != "HALP": # Skip corrupted data + bbref_id = player.bbref_id + break + + # Parse canonical name for first/last + name_parts = canonical_name.split() + if len(name_parts) >= 2: + first_name = name_parts[0] + last_name = ' '.join(name_parts[1:]) + else: + first_name = canonical_name + last_name = "" + + # Create new SbaPlayer record + new_sba = NewSbaPlayer( + temp_id=next_id, + canonical_name=canonical_name, + key_bbref=bbref_id, + first_name=first_name, + last_name=last_name, + name_variations=player_names, + player_count=len(group_players), + notes=f"Created from manual review. Variations: {', '.join(sorted(set(player_names)))}" + ) + + new_sbaplayers.append(new_sba) + logger.info(f"New SbaPlayer: '{canonical_name}' (temp ID {next_id}) for {len(group_players)} player records") + next_id += 1 + + return new_sbaplayers + +def generate_all_assignments(all_players: List[PlayerRecord], sbaplayers: List[SbaPlayerRecord], + tier1_matches: List[MatchResult], tier2_matches: List[MatchResult], + existing_matches: Dict[str, int], new_sbaplayers: List[NewSbaPlayer]) -> List[FinalAssignment]: + """Generate complete assignments for all 12,232+ player records""" + + assignments = [] + + # Create lookup maps + sbaplayer_map = {sp.id: sp for sp in sbaplayers} + new_sbaplayer_map = {} # name -> temp_id + for new_sba in new_sbaplayers: + for name_variant in new_sba.name_variations: + new_sbaplayer_map[name_variant] = new_sba.temp_id + + # Track assigned player IDs + assigned_player_ids = set() + + # 1. Process Tier 1 matches (bbref_id) + logger.info("Processing Tier 1 (bbref_id) assignments...") + for match in tier1_matches: + # Find the player record to get season info + player_record = next((p for p in all_players if p.id == match.player_id), None) + season = player_record.season if player_record else 0 + + assignment = FinalAssignment( + player_id=match.player_id, + player_name=match.player_name, + season=season, + bbref_id=match.player_bbref_id, + assigned_sbaplayer_id=match.sbaplayer_id, + assignment_source="tier1_bbref", + notes=f"Automatic match via bbref_id to {match.sbaplayer_name}" + ) + assignments.append(assignment) + assigned_player_ids.add(match.player_id) + + # 2. Process Tier 2 matches (exact name) + logger.info("Processing Tier 2 (exact name) assignments...") + for match in tier2_matches: + # Find the player record to get season info + player_record = next((p for p in all_players if p.id == match.player_id), None) + season = player_record.season if player_record else 0 + + assignment = FinalAssignment( + player_id=match.player_id, + player_name=match.player_name, + season=season, + bbref_id=match.player_bbref_id, + assigned_sbaplayer_id=match.sbaplayer_id, + assignment_source="tier2_name", + notes=f"Automatic match via exact name to {match.sbaplayer_name}" + ) + assignments.append(assignment) + assigned_player_ids.add(match.player_id) + + # 3. Process manual existing matches + logger.info("Processing manual existing matches...") + for player_name, sbaplayer_id in existing_matches.items(): + matching_players = [p for p in all_players if p.name == player_name and p.id not in assigned_player_ids] + sba_name = sbaplayer_map[sbaplayer_id].full_name if sbaplayer_id in sbaplayer_map else "Unknown" + + for player in matching_players: + assignment = FinalAssignment( + player_id=player.id, + player_name=player.name, + season=player.season, + bbref_id=player.bbref_id, + assigned_sbaplayer_id=sbaplayer_id, + assignment_source="manual_existing", + notes=f"Manual match to existing SbaPlayer: {sba_name}" + ) + assignments.append(assignment) + assigned_player_ids.add(player.id) + + # 4. Process new SbaPlayer assignments + logger.info("Processing new SbaPlayer assignments...") + for new_sba in new_sbaplayers: + for name_variant in new_sba.name_variations: + matching_players = [p for p in all_players if p.name == name_variant and p.id not in assigned_player_ids] + + for player in matching_players: + assignment = FinalAssignment( + player_id=player.id, + player_name=player.name, + season=player.season, + bbref_id=player.bbref_id, + assigned_sbaplayer_id=new_sba.temp_id, + assignment_source="manual_new", + notes=f"Manual assignment to new SbaPlayer: {new_sba.canonical_name}" + ) + assignments.append(assignment) + assigned_player_ids.add(player.id) + + # 5. Check for any remaining unassigned players + unassigned_players = [p for p in all_players if p.id not in assigned_player_ids] + if unassigned_players: + logger.warning(f"Found {len(unassigned_players)} unassigned players! This shouldn't happen.") + for player in unassigned_players[:5]: # Show first 5 + logger.warning(f" Unassigned: {player.name} (ID: {player.id}, Season: {player.season})") + + logger.info(f"Generated {len(assignments)} total player assignments") + return assignments + +def save_assignment_files(assignments: List[FinalAssignment], new_sbaplayers: List[NewSbaPlayer]): + """Save the final assignment files""" + + # Save player assignments + logger.info("Saving player_sbaplayer_assignments.csv...") + with open('player_sbaplayer_assignments.csv', 'w', newline='') as f: + fieldnames = ['player_id', 'player_name', 'season', 'bbref_id', 'assigned_sbaplayer_id', 'assignment_source', 'notes'] + writer = csv.DictWriter(f, fieldnames=fieldnames) + writer.writeheader() + + for assignment in assignments: + writer.writerow(asdict(assignment)) + + logger.info(f"Saved {len(assignments)} player assignments") + + # Save new SbaPlayers to create + logger.info("Saving new_sbaplayers_to_insert.csv...") + with open('new_sbaplayers_to_insert.csv', 'w', newline='') as f: + fieldnames = ['temp_id', 'canonical_name', 'first_name', 'last_name', 'key_bbref', 'name_variations', 'player_count', 'notes'] + writer = csv.DictWriter(f, fieldnames=fieldnames) + writer.writeheader() + + for new_sba in new_sbaplayers: + row = asdict(new_sba) + row['name_variations'] = ', '.join(row['name_variations']) # Convert list to string + writer.writerow(row) + + logger.info(f"Saved {len(new_sbaplayers)} new SbaPlayer records") + +def generate_summary_report(assignments: List[FinalAssignment], new_sbaplayers: List[NewSbaPlayer]): + """Generate final summary report""" + + # Count assignments by source + source_counts = defaultdict(int) + for assignment in assignments: + source_counts[assignment.assignment_source] += 1 + + # Count assignments by SbaPlayer ID + sbaplayer_counts = defaultdict(int) + for assignment in assignments: + sbaplayer_counts[assignment.assigned_sbaplayer_id] += 1 + + logger.info("Generating final summary report...") + with open('final_assignment_summary.txt', 'w') as f: + f.write("FINAL PLAYER-TO-SBAPLAYER ASSIGNMENT SUMMARY\n") + f.write("=" * 55 + "\n\n") + + f.write("ASSIGNMENT BREAKDOWN:\n") + f.write(f" Tier 1 (bbref_id): {source_counts['tier1_bbref']:,} players\n") + f.write(f" Tier 2 (exact name): {source_counts['tier2_name']:,} players\n") + f.write(f" Manual existing: {source_counts['manual_existing']:,} players\n") + f.write(f" Manual new: {source_counts['manual_new']:,} players\n") + f.write(f" TOTAL ASSIGNMENTS: {len(assignments):,} players\n\n") + + f.write("NEW SBAPLAYER RECORDS TO CREATE:\n") + f.write(f" Total new records: {len(new_sbaplayers)}\n") + for new_sba in new_sbaplayers: + f.write(f" {new_sba.canonical_name} (temp ID {new_sba.temp_id}) - {new_sba.player_count} players\n") + f.write("\n") + + f.write("CAREER STAT TRACKING ENABLED FOR:\n") + existing_sbaplayers = len([a for a in assignments if a.assignment_source in ['tier1_bbref', 'tier2_name', 'manual_existing']]) + f.write(f" {existing_sbaplayers:,} players linked to existing SbaPlayers\n") + f.write(f" {source_counts['manual_new']:,} players will have career stats after new SbaPlayer creation\n") + f.write(f" TOTAL: {len(assignments):,} players will have career stat tracking\n\n") + + f.write("FILES GENERATED:\n") + f.write(" - player_sbaplayer_assignments.csv (ready for API updates)\n") + f.write(" - new_sbaplayers_to_insert.csv (new SbaPlayer records to create first)\n\n") + + f.write("NEXT STEPS:\n") + f.write("1. Review the assignment files for any issues\n") + f.write("2. Create new SbaPlayer records via API (new_sbaplayers_to_insert.csv)\n") + f.write("3. Update all player.sbaplayer_id fields via API (player_sbaplayer_assignments.csv)\n") + f.write("4. Verify career stat tracking works correctly\n") + +def main(): + """Main processing function""" + logger.info("Starting final assignment generation...") + + try: + # Load cached data + all_players, sbaplayers = load_cached_data() + + # Run comprehensive matching for automatic matches + logger.info("Running comprehensive matching for Tier 1 & 2...") + bbref_map, name_map = create_matching_maps(sbaplayers) + tier1_matches = match_players_tier1_bbref(all_players, bbref_map) + tier2_matches = match_players_tier2_name(all_players, name_map, tier1_matches) + + # Parse manual decisions + decisions = parse_manual_decisions() + existing_matches, new_player_groups, special_cases = process_manual_decisions(decisions, sbaplayers) + + # Create new SbaPlayer records + new_sbaplayers = create_new_sbaplayer_records(new_player_groups, all_players, sbaplayers) + + # Generate complete assignments + assignments = generate_all_assignments( + all_players, sbaplayers, tier1_matches, tier2_matches, + existing_matches, new_sbaplayers + ) + + # Save files + save_assignment_files(assignments, new_sbaplayers) + + # Generate summary + generate_summary_report(assignments, new_sbaplayers) + + logger.info("✅ Final assignment generation completed successfully!") + + # Print summary + source_counts = defaultdict(int) + for assignment in assignments: + source_counts[assignment.assignment_source] += 1 + + print(f"\n🎉 FINAL RESULTS:") + print(f" 📊 {len(assignments):,} total player assignments generated") + print(f" 🔗 {source_counts['tier1_bbref']:,} Tier 1 (bbref_id) matches") + print(f" 📝 {source_counts['tier2_name']:,} Tier 2 (exact name) matches") + print(f" 👤 {source_counts['manual_existing']:,} Manual existing matches") + print(f" ➕ {source_counts['manual_new']:,} Manual new SbaPlayer assignments") + print(f" 📋 {len(new_sbaplayers)} new SbaPlayer records to create") + print(f"\n📁 Files generated:") + print(f" - player_sbaplayer_assignments.csv") + print(f" - new_sbaplayers_to_insert.csv") + print(f" - final_assignment_summary.txt") + + except Exception as e: + logger.error(f"Error generating final assignments: {e}") + raise + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/generate_final_assignments_v2.py b/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/generate_final_assignments_v2.py new file mode 100644 index 0000000..cdaafea --- /dev/null +++ b/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/generate_final_assignments_v2.py @@ -0,0 +1,492 @@ +#!/usr/bin/env python3 +""" +Generate final player-to-SbaPlayer assignments by combining: +1. Automatic matches from comprehensive matching (Tier 1 & 2) +2. Manual decisions from review CSV +3. New SbaPlayer records for unmatched players + +FIXED VERSION: Properly handles all 12,232 individual player records +""" + +import json +import csv +import logging +import re +from dataclasses import dataclass, asdict +from typing import Dict, List, Set, Optional, Tuple +from collections import defaultdict + +# Import functions from comprehensive matching +from comprehensive_player_matching import ( + PlayerRecord, SbaPlayerRecord, normalize_name, + create_name_variants, load_cached_data, create_matching_maps +) + +# Set up logging +logging.basicConfig( + level=logging.INFO, + format='%(asctime)s - %(name)s - %(levelname)s - %(message)s', + handlers=[ + logging.FileHandler('matching.log'), + logging.StreamHandler() + ] +) +logger = logging.getLogger(f'{__name__}.generate_final_assignments_v2') + +@dataclass +class ManualDecision: + """Manual decision from review CSV""" + group_key: str + player_name: str + bbref_id: str + seasons_appeared: str + sample_player_ids: str + potential_existing_sbaplayer_id: str + potential_existing_sbaplayer_name: str + potential_match_reason: str + your_decision_sbaplayer_id: str + your_decision_notes: str + +@dataclass +class FinalAssignment: + """Final player assignment result""" + player_id: int + player_name: str + season: int + bbref_id: Optional[str] + assigned_sbaplayer_id: int + assignment_source: str # 'tier1_bbref', 'tier2_name', 'manual_existing', 'manual_new' + notes: str = "" + +@dataclass +class NewSbaPlayer: + """New SbaPlayer record to create""" + temp_id: int # Temporary ID for assignments + canonical_name: str + key_bbref: Optional[str] + first_name: str + last_name: str + name_variations: List[str] + player_count: int + notes: str + +def parse_manual_decisions(): + """Parse manual decisions from the review CSV""" + decisions = [] + + logger.info("Parsing manual decisions from new_sbaplayers_for_review.csv...") + + with open('new_sbaplayers_for_review.csv', 'r', encoding='utf-8') as f: + # Handle the encoded format + content = f.read() + # Decode common HTML entities + content = content.replace('+AF8-', '_') + content = content.replace('+ACI-', '"') + content = content.replace('+AC0-', '-') + + # Parse as CSV + lines = content.strip().split('\n') + reader = csv.DictReader(lines) + + for row in reader: + if not row.get('group_key'): # Skip empty rows + continue + + decision = ManualDecision( + group_key=row['group_key'], + player_name=row['player_name'], + bbref_id=row['bbref_id'], + seasons_appeared=row['seasons_appeared'], + sample_player_ids=row['sample_player_ids'], + potential_existing_sbaplayer_id=row['potential_existing_sbaplayer_id'], + potential_existing_sbaplayer_name=row['potential_existing_sbaplayer_name'], + potential_match_reason=row['potential_match_reason'], + your_decision_sbaplayer_id=row['your_decision_sbaplayer_id'], + your_decision_notes=row['your_decision_notes'] + ) + decisions.append(decision) + + logger.info(f"Parsed {len(decisions)} manual decisions") + return decisions + +def run_comprehensive_matching(all_players, sbaplayers): + """Run the comprehensive matching logic to get automatic assignments""" + logger.info("Running comprehensive matching logic...") + + # Create lookup maps + bbref_map, name_map = create_matching_maps(sbaplayers) + + # Track all assignments + assignments = {} # player_id -> (sbaplayer_id, source, notes) + + # TIER 1: bbref_id matching + logger.info("Tier 1: Matching by bbref_id...") + tier1_count = 0 + for player in all_players: + # Treat "HALP" as corrupted data (equivalent to no bbref_id) + valid_bbref_id = player.bbref_id if player.bbref_id and player.bbref_id != "HALP" else None + if valid_bbref_id and valid_bbref_id in bbref_map: + sba = bbref_map[valid_bbref_id] + assignments[player.id] = ( + sba.id, + "tier1_bbref", + f"Automatic match via bbref_id to {sba.full_name}" + ) + tier1_count += 1 + + logger.info(f"Tier 1 matches: {tier1_count} player records") + + # TIER 2: exact name matching (for players without valid bbref_id that weren't matched in tier 1) + logger.info("Tier 2: Matching by exact name...") + tier2_count = 0 + for player in all_players: + # Treat "HALP" as corrupted data (equivalent to no bbref_id) + valid_bbref_id = player.bbref_id if player.bbref_id and player.bbref_id != "HALP" else None + if player.id not in assignments and not valid_bbref_id: # Not matched in tier 1, no valid bbref_id + normalized_name = normalize_name(player.name) + if normalized_name in name_map: + potential_matches = name_map[normalized_name] + if len(potential_matches) == 1: # Unambiguous match + sba = potential_matches[0] + assignments[player.id] = ( + sba.id, + "tier2_name", + f"Automatic match via exact name to {sba.full_name}" + ) + tier2_count += 1 + + logger.info(f"Tier 2 matches: {tier2_count} player records") + logger.info(f"Total automatic matches: {tier1_count + tier2_count}") + + return assignments + +def process_manual_decisions(decisions: List[ManualDecision], sbaplayers: List[SbaPlayerRecord]) -> Tuple[Dict, Dict]: + """Process manual decisions into existing matches and new players needed""" + + # Create SbaPlayer lookup + sbaplayer_map = {sp.id: sp for sp in sbaplayers} + + # Process decisions + existing_matches = {} # player_name -> sbaplayer_id + new_player_groups = {} # canonical_name -> [player_names] + special_cases = {} # Handle consolidations and corrupted data + + for decision in decisions: + player_name = decision.player_name + + if decision.your_decision_sbaplayer_id: + # User chose an existing SbaPlayer + try: + sbaplayer_id = int(decision.your_decision_sbaplayer_id) + if sbaplayer_id in sbaplayer_map: + existing_matches[player_name] = sbaplayer_id + logger.info(f"Manual match: '{player_name}' -> SbaPlayer ID {sbaplayer_id} ({sbaplayer_map[sbaplayer_id].full_name})") + else: + logger.warning(f"Invalid SbaPlayer ID {sbaplayer_id} for {player_name}") + except ValueError: + logger.warning(f"Invalid SbaPlayer ID format: {decision.your_decision_sbaplayer_id}") + else: + # User decided this needs a new SbaPlayer record + canonical_name = player_name # Default to same name + + # Check for special consolidation cases + if "Three-way match" in decision.your_decision_notes: + if "use name Tom Eshelman" in decision.your_decision_notes: + canonical_name = "Tom Eshelman" + elif "Two-way match" in decision.your_decision_notes: + if "join with bbref_id mejiafr01" in decision.your_decision_notes: + # This Francisco Mejia (HALP) should consolidate with the legitimate one + canonical_name = "Francisco Mejia" # Will be consolidated later + special_cases[player_name] = "consolidate_with_mejiafr01" + + # Group players by canonical name + if canonical_name not in new_player_groups: + new_player_groups[canonical_name] = [] + new_player_groups[canonical_name].append(player_name) + + logger.info(f"Manual decisions processed:") + logger.info(f" Existing matches: {len(existing_matches)}") + logger.info(f" New player groups: {len(new_player_groups)}") + + return existing_matches, new_player_groups, special_cases + +def create_new_sbaplayer_records(new_player_groups: Dict[str, List[str]], all_players: List[PlayerRecord], + sbaplayers: List[SbaPlayerRecord]) -> List[NewSbaPlayer]: + """Create new SbaPlayer records for unmatched player groups""" + + new_sbaplayers = [] + next_id = max([sp.id for sp in sbaplayers]) + 1000 # Start from high ID to avoid conflicts + + for canonical_name, player_names in new_player_groups.items(): + # Find all player records for this group + all_variants = set(player_names) + group_players = [p for p in all_players if p.name in all_variants] + + if not group_players: + logger.warning(f"No player records found for group: {canonical_name}") + continue + + # Get bbref_id from any player that has one + bbref_id = None + for player in group_players: + if player.bbref_id and player.bbref_id != "HALP": # Skip corrupted data + bbref_id = player.bbref_id + break + + # Parse canonical name for first/last + name_parts = canonical_name.split() + if len(name_parts) >= 2: + first_name = name_parts[0] + last_name = ' '.join(name_parts[1:]) + else: + first_name = canonical_name + last_name = "" + + # Create new SbaPlayer record + new_sba = NewSbaPlayer( + temp_id=next_id, + canonical_name=canonical_name, + key_bbref=bbref_id, + first_name=first_name, + last_name=last_name, + name_variations=player_names, + player_count=len(group_players), + notes=f"Created from manual review. Variations: {', '.join(sorted(set(player_names)))}" + ) + + new_sbaplayers.append(new_sba) + logger.info(f"New SbaPlayer: '{canonical_name}' (temp ID {next_id}) for {len(group_players)} player records") + next_id += 1 + + return new_sbaplayers + +def generate_all_assignments(all_players: List[PlayerRecord], sbaplayers: List[SbaPlayerRecord], + auto_assignments: Dict, existing_matches: Dict[str, int], + new_sbaplayers: List[NewSbaPlayer]) -> List[FinalAssignment]: + """Generate complete assignments for ALL 12,232 player records""" + + assignments = [] + + # Create lookup maps + sbaplayer_map = {sp.id: sp for sp in sbaplayers} + new_sbaplayer_map = {} # name -> temp_id + for new_sba in new_sbaplayers: + for name_variant in new_sba.name_variations: + new_sbaplayer_map[name_variant] = new_sba.temp_id + + # Track processed player IDs + processed_player_ids = set() + + # Process every single player record + for player in all_players: + assignment = None + + # 1. Check if already assigned via automatic matching + if player.id in auto_assignments: + sbaplayer_id, source, notes = auto_assignments[player.id] + assignment = FinalAssignment( + player_id=player.id, + player_name=player.name, + season=player.season, + bbref_id=player.bbref_id, + assigned_sbaplayer_id=sbaplayer_id, + assignment_source=source, + notes=notes + ) + + # 2. Check if manually assigned to existing SbaPlayer + elif player.name in existing_matches: + sbaplayer_id = existing_matches[player.name] + sba_name = sbaplayer_map[sbaplayer_id].full_name if sbaplayer_id in sbaplayer_map else "Unknown" + assignment = FinalAssignment( + player_id=player.id, + player_name=player.name, + season=player.season, + bbref_id=player.bbref_id, + assigned_sbaplayer_id=sbaplayer_id, + assignment_source="manual_existing", + notes=f"Manual match to existing SbaPlayer: {sba_name}" + ) + + # 3. Check if assigned to new SbaPlayer + elif player.name in new_sbaplayer_map: + temp_id = new_sbaplayer_map[player.name] + new_sba = next((ns for ns in new_sbaplayers if ns.temp_id == temp_id), None) + canonical_name = new_sba.canonical_name if new_sba else player.name + assignment = FinalAssignment( + player_id=player.id, + player_name=player.name, + season=player.season, + bbref_id=player.bbref_id, + assigned_sbaplayer_id=temp_id, + assignment_source="manual_new", + notes=f"Manual assignment to new SbaPlayer: {canonical_name}" + ) + + # 4. This shouldn't happen - every player should be assigned by now + else: + logger.error(f"UNASSIGNED PLAYER: {player.name} (ID: {player.id}, Season: {player.season})") + # Create emergency new SbaPlayer for this orphaned player + emergency_id = 9999000 + player.id # Use a very high ID to avoid conflicts + assignment = FinalAssignment( + player_id=player.id, + player_name=player.name, + season=player.season, + bbref_id=player.bbref_id, + assigned_sbaplayer_id=emergency_id, + assignment_source="emergency_new", + notes=f"EMERGENCY: Unassigned player, needs new SbaPlayer record" + ) + + if assignment: + assignments.append(assignment) + processed_player_ids.add(player.id) + + logger.info(f"Generated {len(assignments)} total player assignments") + + # Verify we got everyone + if len(assignments) != len(all_players): + logger.error(f"MISMATCH: Expected {len(all_players)} assignments, got {len(assignments)}") + else: + logger.info("✅ All players successfully assigned!") + + return assignments + +def save_assignment_files(assignments: List[FinalAssignment], new_sbaplayers: List[NewSbaPlayer]): + """Save the final assignment files""" + + # Save player assignments + logger.info("Saving player_sbaplayer_assignments.csv...") + with open('player_sbaplayer_assignments.csv', 'w', newline='') as f: + fieldnames = ['player_id', 'player_name', 'season', 'bbref_id', 'assigned_sbaplayer_id', 'assignment_source', 'notes'] + writer = csv.DictWriter(f, fieldnames=fieldnames) + writer.writeheader() + + for assignment in assignments: + writer.writerow(asdict(assignment)) + + logger.info(f"Saved {len(assignments)} player assignments") + + # Save new SbaPlayers to create + logger.info("Saving new_sbaplayers_to_insert.csv...") + with open('new_sbaplayers_to_insert.csv', 'w', newline='') as f: + fieldnames = ['temp_id', 'canonical_name', 'first_name', 'last_name', 'key_bbref', 'name_variations', 'player_count', 'notes'] + writer = csv.DictWriter(f, fieldnames=fieldnames) + writer.writeheader() + + for new_sba in new_sbaplayers: + row = asdict(new_sba) + row['name_variations'] = ', '.join(row['name_variations']) # Convert list to string + writer.writerow(row) + + logger.info(f"Saved {len(new_sbaplayers)} new SbaPlayer records") + +def generate_summary_report(assignments: List[FinalAssignment], new_sbaplayers: List[NewSbaPlayer]): + """Generate final summary report""" + + # Count assignments by source + source_counts = defaultdict(int) + for assignment in assignments: + source_counts[assignment.assignment_source] += 1 + + logger.info("Generating final summary report...") + with open('final_assignment_summary.txt', 'w') as f: + f.write("FINAL PLAYER-TO-SBAPLAYER ASSIGNMENT SUMMARY\n") + f.write("=" * 55 + "\n\n") + + f.write("ASSIGNMENT BREAKDOWN:\n") + f.write(f" Tier 1 (bbref_id): {source_counts['tier1_bbref']:,} players\n") + f.write(f" Tier 2 (exact name): {source_counts['tier2_name']:,} players\n") + f.write(f" Manual existing: {source_counts['manual_existing']:,} players\n") + f.write(f" Manual new: {source_counts['manual_new']:,} players\n") + if source_counts['emergency_new'] > 0: + f.write(f" Emergency new: {source_counts['emergency_new']:,} players (ERROR)\n") + f.write(f" TOTAL ASSIGNMENTS: {len(assignments):,} players\n\n") + + f.write("NEW SBAPLAYER RECORDS TO CREATE:\n") + f.write(f" Total new records: {len(new_sbaplayers)}\n") + for new_sba in new_sbaplayers: + f.write(f" {new_sba.canonical_name} (temp ID {new_sba.temp_id}) - {new_sba.player_count} players\n") + f.write("\n") + + f.write("CAREER STAT TRACKING ENABLED FOR:\n") + existing_sbaplayers = len([a for a in assignments if a.assignment_source in ['tier1_bbref', 'tier2_name', 'manual_existing']]) + f.write(f" {existing_sbaplayers:,} players linked to existing SbaPlayers\n") + f.write(f" {source_counts['manual_new']:,} players will have career stats after new SbaPlayer creation\n") + f.write(f" TOTAL: {len(assignments):,} players will have career stat tracking\n\n") + + f.write("FILES GENERATED:\n") + f.write(" - player_sbaplayer_assignments.csv (ready for API updates)\n") + f.write(" - new_sbaplayers_to_insert.csv (new SbaPlayer records to create first)\n\n") + + f.write("NEXT STEPS:\n") + f.write("1. Review the assignment files for any issues\n") + f.write("2. Create new SbaPlayer records via API (new_sbaplayers_to_insert.csv)\n") + f.write("3. Update all player.sbaplayer_id fields via API (player_sbaplayer_assignments.csv)\n") + f.write("4. Verify career stat tracking works correctly\n") + +def main(): + """Main processing function""" + logger.info("Starting final assignment generation (FIXED VERSION)...") + + try: + # Load cached data + all_players, sbaplayers = load_cached_data() + logger.info(f"Loaded {len(all_players)} players and {len(sbaplayers)} SbaPlayers") + + # Run comprehensive matching for automatic assignments + logger.info("Running comprehensive matching...") + auto_assignments = run_comprehensive_matching(all_players, sbaplayers) + + # Parse manual decisions + decisions = parse_manual_decisions() + existing_matches, new_player_groups, special_cases = process_manual_decisions(decisions, sbaplayers) + + # Create new SbaPlayer records + new_sbaplayers = create_new_sbaplayer_records(new_player_groups, all_players, sbaplayers) + + # Generate complete assignments for ALL players + assignments = generate_all_assignments( + all_players, sbaplayers, auto_assignments, existing_matches, new_sbaplayers + ) + + # Save files + save_assignment_files(assignments, new_sbaplayers) + + # Generate summary + generate_summary_report(assignments, new_sbaplayers) + + logger.info("✅ Final assignment generation completed successfully!") + + # Print summary + source_counts = defaultdict(int) + for assignment in assignments: + source_counts[assignment.assignment_source] += 1 + + print(f"\n🎉 FINAL RESULTS:") + print(f" 📊 {len(assignments):,} total player assignments generated") + print(f" 🔗 {source_counts['tier1_bbref']:,} Tier 1 (bbref_id) matches") + print(f" 📝 {source_counts['tier2_name']:,} Tier 2 (exact name) matches") + print(f" 👤 {source_counts['manual_existing']:,} Manual existing matches") + print(f" ➕ {source_counts['manual_new']:,} Manual new SbaPlayer assignments") + if source_counts['emergency_new'] > 0: + print(f" 🚨 {source_counts['emergency_new']:,} Emergency assignments (ERROR)") + print(f" 📋 {len(new_sbaplayers)} new SbaPlayer records to create") + print(f"\n📁 Files generated:") + print(f" - player_sbaplayer_assignments.csv") + print(f" - new_sbaplayers_to_insert.csv") + print(f" - final_assignment_summary.txt") + + # Verify total matches expected result + expected_total = len(all_players) + if len(assignments) == expected_total: + print(f"\n✅ SUCCESS: All {expected_total:,} players successfully assigned!") + else: + print(f"\n❌ ERROR: Expected {expected_total:,}, got {len(assignments):,} assignments") + + except Exception as e: + logger.error(f"Error generating final assignments: {e}") + raise + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/generate_new_sbaplayers_list.py b/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/generate_new_sbaplayers_list.py new file mode 100644 index 0000000..f519941 --- /dev/null +++ b/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/generate_new_sbaplayers_list.py @@ -0,0 +1,187 @@ +#!/usr/bin/env python3 +""" +Generate detailed list of players that need new SbaPlayer records for manual review +""" +import json +import csv +import logging +from dataclasses import dataclass +from typing import Dict, List, Set, Optional, Tuple +from collections import defaultdict + +# Set up logging +logging.basicConfig(level=logging.INFO) +logger = logging.getLogger('NewSbaPlayersList') + +@dataclass +class PlayerRecord: + id: int + name: str + season: int + bbref_id: Optional[str] = None + sbaplayer_id: Optional[int] = None + +def load_cached_data(): + """Load cached data""" + with open('/tmp/sbaplayers.json', 'r') as f: + sbaplayer_data = json.load(f) + + all_players = [] + for season in range(1, 13): + with open(f"/tmp/players_season_{season}.json", 'r') as f: + season_data = json.load(f) + + for data in season_data: + all_players.append(PlayerRecord(**data)) + + return all_players, sbaplayer_data + +def normalize_name(name: str) -> str: + """Normalize name for matching""" + if not name: + return "" + return name.lower().strip().replace("'", "").replace(".", "").replace("-", " ") + +def find_unmatched_players(): + """Find players that would need new SbaPlayer records""" + all_players, sbaplayer_data = load_cached_data() + + # Create SbaPlayer lookup maps + sbaplayers_by_bbref = {} + sbaplayers_by_name = {} + + for sba in sbaplayer_data: + if sba.get('key_bbref'): + sbaplayers_by_bbref[sba['key_bbref']] = sba + + sba_name = f"{sba['first_name']} {sba['last_name']}" + normalized_sba = normalize_name(sba_name) + if normalized_sba not in sbaplayers_by_name: + sbaplayers_by_name[normalized_sba] = [] + sbaplayers_by_name[normalized_sba].append(sba) + + # Find unmatched players + unmatched_groups = {} + + for player in all_players: + matched = False + + # Try bbref_id match + if player.bbref_id and player.bbref_id in sbaplayers_by_bbref: + matched = True + + # Try name match + if not matched: + normalized_player = normalize_name(player.name) + if normalized_player in sbaplayers_by_name: + if len(sbaplayers_by_name[normalized_player]) == 1: + matched = True + + # If not matched, add to unmatched groups + if not matched: + if player.bbref_id: + key = f"bbref:{player.bbref_id}" + else: + key = f"name:{normalize_name(player.name)}" + + if key not in unmatched_groups: + unmatched_groups[key] = [] + unmatched_groups[key].append(player) + + return unmatched_groups, sbaplayers_by_name, sbaplayer_data + +def generate_review_csv(): + """Generate CSV file for manual review""" + unmatched_groups, sbaplayers_by_name, sbaplayer_data = find_unmatched_players() + + output_file = '/mnt/NV2/Development/major-domo/database/player-to-sbaplayer-matching/new_sbaplayers_for_review.csv' + + with open(output_file, 'w', newline='') as csvfile: + writer = csv.writer(csvfile) + writer.writerow([ + 'group_key', 'player_name', 'bbref_id', 'seasons_appeared', 'sample_player_ids', + 'potential_existing_sbaplayer_id', 'potential_existing_sbaplayer_name', 'potential_match_reason', + 'your_decision_sbaplayer_id', 'your_decision_notes' + ]) + + for key, players in unmatched_groups.items(): + # Use first player as representative + representative = players[0] + seasons = sorted(list(set(p.season for p in players))) + sample_ids = [str(p.id) for p in players[:3]] # Show first 3 player IDs + + # Look for potential matches + potential_id = "" + potential_name = "" + potential_reason = "" + + normalized_name = normalize_name(representative.name) + + # Check for similar names in existing SbaPlayers + for sba in sbaplayer_data: + sba_name = f"{sba['first_name']} {sba['last_name']}" + sba_normalized = normalize_name(sba_name) + + # Exact match that was somehow missed + if sba_normalized == normalized_name: + potential_id = str(sba['id']) + potential_name = sba_name + potential_reason = "Exact name match - check why not matched automatically" + break + + # Check for common variations + player_parts = normalized_name.split() + sba_parts = sba_normalized.split() + + if len(player_parts) >= 2 and len(sba_parts) >= 2: + # Same last name, similar first name + if (player_parts[-1] == sba_parts[-1] and + (player_parts[0] in sba_parts[0] or sba_parts[0] in player_parts[0])): + if not potential_id: # Only suggest first match + potential_id = f"MAYBE:{sba['id']}" + potential_name = sba_name + potential_reason = f"Similar name: {representative.name} vs {sba_name}" + + if not potential_id: + potential_reason = "No obvious existing match - likely needs new SbaPlayer record" + + writer.writerow([ + key, + representative.name, + representative.bbref_id or '', + ','.join(map(str, seasons)), + ','.join(sample_ids), + potential_id, + potential_name, + potential_reason, + '', # your_decision_sbaplayer_id (empty for manual filling) + '' # your_decision_notes (empty for manual filling) + ]) + + logger.info(f"Generated review CSV: {output_file}") + logger.info(f"Found {len(unmatched_groups)} unique unmatched players for review") + + # Also generate a summary + with open('/mnt/NV2/Development/major-domo/database/player-to-sbaplayer-matching/new_sbaplayers_summary.txt', 'w') as f: + f.write("NEW SBAPLAYERS REVIEW SUMMARY\n") + f.write("=" * 40 + "\n\n") + f.write(f"Total unique players needing review: {len(unmatched_groups)}\n\n") + + f.write("INSTRUCTIONS:\n") + f.write("1. Review the CSV file: new_sbaplayers_for_review.csv\n") + f.write("2. For each row, fill in 'your_decision_sbaplayer_id' column:\n") + f.write(" - Enter existing SbaPlayer ID if you found a match\n") + f.write(" - Leave blank if player needs a new SbaPlayer record\n") + f.write("3. Use 'your_decision_notes' for any comments\n\n") + + f.write("SAMPLE ENTRIES:\n") + for i, (key, players) in enumerate(list(unmatched_groups.items())[:5]): + representative = players[0] + seasons = sorted(list(set(p.season for p in players))) + f.write(f" {representative.name} (bbref: {representative.bbref_id or 'None'}) - seasons {seasons}\n") + + if len(unmatched_groups) > 5: + f.write(f" ... and {len(unmatched_groups) - 5} more\n") + +if __name__ == "__main__": + generate_review_csv() \ No newline at end of file diff --git a/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/generate_update_sql.py b/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/generate_update_sql.py new file mode 100644 index 0000000..6b22e31 --- /dev/null +++ b/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/generate_update_sql.py @@ -0,0 +1,203 @@ +#!/usr/bin/env python3 +""" +Generate raw SQL UPDATE statements for bulk player sbaplayer_id assignments +Output can be copied and pasted into Adminer or run via docker exec +""" + +import csv +import logging +from collections import defaultdict + +# Set up logging +logging.basicConfig( + level=logging.INFO, + format='%(asctime)s - %(levelname)s - %(message)s', + handlers=[ + logging.FileHandler('sql_generation.log'), + logging.StreamHandler() + ] +) +logger = logging.getLogger('generate_update_sql') + +def load_assignments(): + """Load player assignments from CSV file""" + assignments = [] + + logger.info("Loading player assignments from player_sbaplayer_assignments.csv...") + + with open('player_sbaplayer_assignments.csv', 'r') as f: + reader = csv.DictReader(f) + for row in reader: + assignments.append({ + 'player_id': int(row['player_id']), + 'assigned_sbaplayer_id': int(row['assigned_sbaplayer_id']), + 'assignment_source': row['assignment_source'] + }) + + logger.info(f"Loaded {len(assignments)} player assignments") + return assignments + +def generate_sql_statements(assignments, max_ids_per_statement=1000): + """Generate SQL UPDATE statements grouped by sbaplayer_id""" + + # Group assignments by sbaplayer_id for efficiency + by_sbaplayer = defaultdict(list) + for assignment in assignments: + sbaplayer_id = assignment['assigned_sbaplayer_id'] + by_sbaplayer[sbaplayer_id].append(assignment['player_id']) + + logger.info(f"Grouped assignments into {len(by_sbaplayer)} unique sbaplayer_id groups") + + sql_statements = [] + total_players = 0 + + for sbaplayer_id, player_ids in by_sbaplayer.items(): + # Split large groups into chunks to avoid overly long SQL statements + for i in range(0, len(player_ids), max_ids_per_statement): + chunk = player_ids[i:i + max_ids_per_statement] + + sql = f"""UPDATE player +SET sbaplayer_id = {sbaplayer_id} +WHERE id IN ({','.join(map(str, chunk))});""" + + sql_statements.append(sql) + total_players += len(chunk) + + logger.info(f"Generated {len(sql_statements)} SQL statements covering {total_players} players") + return sql_statements + +def write_sql_file(sql_statements, filename='player_sbaplayer_updates.sql'): + """Write SQL statements to file""" + + with open(filename, 'w') as f: + f.write("-- Bulk update player.sbaplayer_id assignments\n") + f.write("-- Generated from player-to-sbaplayer matching project\n") + f.write(f"-- Total statements: {len(sql_statements)}\n") + f.write("-- \n") + f.write("-- IMPORTANT: Run these in a transaction for safety:\n") + f.write("-- BEGIN;\n") + f.write("-- \n") + f.write("-- COMMIT;\n") + f.write("\n") + f.write("BEGIN;\n\n") + + for i, sql in enumerate(sql_statements, 1): + f.write(f"-- Statement {i}\n") + f.write(sql) + f.write("\n\n") + + f.write("COMMIT;\n") + + logger.info(f"SQL statements written to {filename}") + +def generate_verification_sql(assignments, sample_size=100): + """Generate SQL to verify updates were applied correctly""" + + # Take a sample for verification + sample_assignments = assignments[:sample_size] + + verification_sql = """-- Verification queries +-- Check sample assignments were applied correctly + +""" + + for i, assignment in enumerate(sample_assignments[:10], 1): + player_id = assignment['player_id'] + expected_sbaplayer_id = assignment['assigned_sbaplayer_id'] + + verification_sql += f"""-- Check player {player_id} +SELECT id, name, sbaplayer_id +FROM player +WHERE id = {player_id} AND sbaplayer_id = {expected_sbaplayer_id}; + +""" + + verification_sql += f""" +-- Summary check: Count of players with non-null sbaplayer_id +SELECT COUNT(*) as players_with_sbaplayer_id +FROM player +WHERE sbaplayer_id IS NOT NULL; +-- Expected result: should be close to 12,232 + +-- Check distribution by assignment source type +SELECT + CASE + WHEN sbaplayer_id < 3000 THEN 'existing_sbaplayer' + ELSE 'new_sbaplayer' + END as assignment_type, + COUNT(*) as player_count +FROM player +WHERE sbaplayer_id IS NOT NULL +GROUP BY assignment_type; +""" + + with open('verify_updates.sql', 'w') as f: + f.write(verification_sql) + + logger.info("Verification SQL written to verify_updates.sql") + +def show_summary_stats(assignments): + """Show summary statistics""" + by_source = defaultdict(int) + by_sbaplayer = defaultdict(int) + + for assignment in assignments: + by_source[assignment['assignment_source']] += 1 + by_sbaplayer[assignment['assigned_sbaplayer_id']] += 1 + + logger.info("=== Assignment Summary ===") + logger.info(f"Total players to update: {len(assignments):,}") + logger.info("By assignment source:") + for source, count in sorted(by_source.items()): + logger.info(f" {source}: {count:,} players") + + logger.info(f"Unique SbaPlayer IDs: {len(by_sbaplayer):,}") + + # Show new vs existing SbaPlayers + new_sbaplayers = sum(1 for sbaplayer_id in by_sbaplayer.keys() if sbaplayer_id >= 3000) + existing_sbaplayers = len(by_sbaplayer) - new_sbaplayers + + logger.info(f" Existing SbaPlayers: {existing_sbaplayers}") + logger.info(f" New SbaPlayers: {new_sbaplayers}") + +def main(): + """Main execution function""" + logger.info("Starting SQL generation for player sbaplayer_id updates...") + + try: + # Load assignments + assignments = load_assignments() + + if not assignments: + logger.error("No assignments loaded. Exiting.") + return + + # Show summary statistics + show_summary_stats(assignments) + + # Generate SQL statements + sql_statements = generate_sql_statements(assignments) + + # Write to file + write_sql_file(sql_statements) + + # Generate verification SQL + generate_verification_sql(assignments) + + logger.info("=== SUCCESS ===") + logger.info("Generated files:") + logger.info(" 📄 player_sbaplayer_updates.sql - Main update statements") + logger.info(" 🔍 verify_updates.sql - Verification queries") + logger.info("") + logger.info("Next steps:") + logger.info("1. Copy player_sbaplayer_updates.sql to your server") + logger.info("2. Run via Adminer or docker exec:") + logger.info(" docker exec -i postgres_container psql -U username -d database < player_sbaplayer_updates.sql") + logger.info("3. Run verify_updates.sql to confirm success") + + except Exception as e: + logger.error(f"Error generating SQL: {e}") + raise + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/matching_report.txt b/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/matching_report.txt new file mode 100644 index 0000000..f3400b0 --- /dev/null +++ b/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/matching_report.txt @@ -0,0 +1,57 @@ +COMPREHENSIVE PLAYER MATCHING REPORT +================================================== + +MATCHING SUMMARY: + Tier 1 (bbref_id): 6,764 player records + Tier 2 (exact name): 4,868 player records + Total matched: 11,632 player records + Unmatched: 600 player records (31 unique players) + +TIER 1 EXAMPLES (bbref_id matches): + Danny Duffy (duffyda01) → Danny Duffy (ID: 541) + Danny Duffy (duffyda01) → Danny Duffy (ID: 541) + Robbie Ray (rayro02) → Robbie Ray (ID: 1620) + Robbie Ray (rayro02) → Robbie Ray (ID: 1620) + Robbie Ray (rayro02) → Robbie Ray (ID: 1620) + Robbie Ray (rayro02) → Robbie Ray (ID: 1620) + Robbie Ray (rayro02) → Robbie Ray (ID: 1620) + Wade Miley (mileywa01) → Wade Miley (ID: 1318) + Wade Miley (mileywa01) → Wade Miley (ID: 1318) + Wade Miley (mileywa01) → Wade Miley (ID: 1318) + ... and 6754 more + +TIER 2 EXAMPLES (exact name matches): + AJ Minter → AJ Minter (ID: 1336) + AJ Minter → AJ Minter (ID: 1336) + AJ Minter → AJ Minter (ID: 1336) + AJ Minter → AJ Minter (ID: 1336) + AJ Minter → AJ Minter (ID: 1336) + AJ Ellis → AJ Ellis (ID: 570) + AJ Pollock → AJ Pollock (ID: 1571) + AJ Pollock → AJ Pollock (ID: 1571) + AJ Pollock → AJ Pollock (ID: 1571) + AJ Pollock → AJ Pollock (ID: 1571) + ... and 4858 more + +SAMPLE UNMATCHED PLAYERS (need new SbaPlayer records): + Diego Castillo (bbref: None) - seasons [1, 2, 3, 4, 5] + Javy Guerra (bbref: None) - seasons [1, 2, 3, 4, 5] + Michael A Taylor (bbref: None) - seasons [1, 2, 3, 4, 5] + Will Smith (bbref: None) - seasons [1, 2, 3, 4, 5] + Evan Phillips (bbref: None) - seasons [2, 3, 4, 5] + Francisco Mejia (bbref: None) - seasons [2, 3, 4, 5] + Nate Lowe (bbref: None) - seasons [2, 3, 4, 5] + Tom Eshelman (bbref: None) - seasons [2, 3] + Will D Smith (bbref: None) - seasons [2, 3, 4, 5] + Zach Britton (bbref: None) - seasons [2] + Luis V Garcia (bbref: None) - seasons [4, 5] + Jose Garcia (bbref: None) - seasons [4, 5] + Josh Fuentes (bbref: None) - seasons [4, 5] + Javy A Guerra (bbref: None) - seasons [4] + Logan Allen (bbref: None) - seasons [4, 5] + Luis H Garcia (bbref: None) - seasons [4, 5] + Thomas Eshelman (bbref: None) - seasons [4, 5] + Tom Hatch (bbref: None) - seasons [4, 5] + Luis H Garcia (bbref: garcilu05) - seasons [6, 7, 8, 9] + Danny Coulombe (bbref: couloda01) - seasons [6, 7, 10, 11, 12] + ... and 11 more unique players diff --git a/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/new_sbaplayers_for_review.csv b/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/new_sbaplayers_for_review.csv new file mode 100644 index 0000000..cd8c0b4 --- /dev/null +++ b/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/new_sbaplayers_for_review.csv @@ -0,0 +1,33 @@ +group+AF8-key,player+AF8-name,bbref+AF8-id,seasons+AF8-appeared,sample+AF8-player+AF8-ids,potential+AF8-existing+AF8-sbaplayer+AF8-id,potential+AF8-existing+AF8-sbaplayer+AF8-name,potential+AF8-match+AF8-reason,your+AF8-decision+AF8-sbaplayer+AF8-id,your+AF8-decision+AF8-notes +name:albert almora,Albert Almora,,+ACI-1,2,3,4,5+ACI-,+ACI-2039,33,1039+ACI-,,,No obvious existing match +AC0- likely needs new SbaPlayer record,, +name:diego castillo,Diego Castillo,,+ACI-1,2,3,4,5+ACI-,+ACI-2234,261,1267+ACI-,341,Diego Castillo,Exact name match +AC0- check why not matched automatically,,+ACI-While this is a duplicate name, this is a different Diego Castillo so needs a new SbaPlayer record+ACI- +name:javy guerra,Javy Guerra,,+ACI-1,2,3,4,5+ACI-,+ACI-2623,424,1430+ACI-,784,Javy Guerra,Exact name match +AC0- check why not matched automatically,, +name:luis garcia,Luis Garcia,,+ACI-1,2,3,4,5+ACI-,+ACI-2764,602,1608+ACI-,,,No obvious existing match +AC0- likely needs new SbaPlayer record,, +name:michael a taylor,Michael A Taylor,,+ACI-1,2,3,4,5+ACI-,+ACI-2817,666,1672+ACI-,MAYBE:1963,Michael Taylor,Similar name: Michael A Taylor vs Michael Taylor,1963, +name:will smith,Will Smith,,+ACI-1,2,3,4,5+ACI-,+ACI-3039,960,1966+ACI-,1841,Will Smith,Exact name match +AC0- check why not matched automatically,1843, +name:evan phillips,Evan Phillips,,+ACI-2,3,4,5+ACI-,+ACI-309,1315,3753+ACI-,,,No obvious existing match +AC0- likely needs new SbaPlayer record,, +name:francisco mejia,Francisco Mejia,,+ACI-2,3,4,5+ACI-,+ACI-319,1325,3234+ACI-,,,No obvious existing match +AC0- likely needs new SbaPlayer record,, +name:mike soroka,Mike Soroka,,+ACI-2,3,4,5+ACI-,+ACI-690,1696,3948+ACI-,,,No obvious existing match +AC0- likely needs new SbaPlayer record,, +name:nate lowe,Nate Lowe,,+ACI-2,3,4,5+ACI-,+ACI-704,1710,3440+ACI-,,,No obvious existing match +AC0- likely needs new SbaPlayer record,1155, +name:tom eshelman,Tom Eshelman,,+ACI-2,3+ACI-,+ACI-887,1893+ACI-,,,No obvious existing match +AC0- likely needs new SbaPlayer record,,Three+AC0-way match: use name Tom Eshelman +name:will d smith,Will D Smith,,+ACI-2,3,4,5+ACI-,+ACI-958,1964,3557+ACI-,MAYBE:1841,Will Smith,Similar name: Will D Smith vs Will Smith,1841, +name:zach britton,Zach Britton,,2,1000,,,No obvious existing match +AC0- likely needs new SbaPlayer record,260, +name:luis v garcia,Luis V Garcia,,+ACI-4,5+ACI-,+ACI-3386,5016+ACI-,,,No obvious existing match +AC0- likely needs new SbaPlayer record,694, +name:jose garcia,Jose Garcia,,+ACI-4,5+ACI-,+ACI-3323,4975+ACI-,,,No obvious existing match +AC0- likely needs new SbaPlayer record,, +name:josh fuentes,Josh Fuentes,,+ACI-4,5+ACI-,+ACI-3334,4184+ACI-,MAYBE:664,Joshua Fuentes,Similar name: Josh Fuentes vs Joshua Fuentes,664, +name:javy a guerra,Javy A Guerra,,4,3810,MAYBE:784,Javy Guerra,Similar name: Javy A Guerra vs Javy Guerra,784, +name:logan allen,Logan Allen,,+ACI-4,5+ACI-,+ACI-3904,4637+ACI-,45,Logan Allen,Exact name match +AC0- check why not matched automatically,,+ACI-This is a duplicate name, but they are different people+ACI- +name:luis h garcia,Luis H Garcia,,+ACI-4,5+ACI-,+ACI-3913,4187+ACI-,,,No obvious existing match +AC0- likely needs new SbaPlayer record,, +name:thomas eshelman,Thomas Eshelman,,+ACI-4,5+ACI-,+ACI-4056,4502+ACI-,,,No obvious existing match +AC0- likely needs new SbaPlayer record,,Three+AC0-way match: use name Tom Eshelman +name:tom hatch,Tom Hatch,,+ACI-4,5+ACI-,+ACI-4060,4353+ACI-,,,No obvious existing match +AC0- likely needs new SbaPlayer record,, +bbref:garcilu05,Luis H Garcia,garcilu05,+ACI-6,7,8,9+ACI-,+ACI-5281,6485,7877+ACI-,,,No obvious existing match +AC0- likely needs new SbaPlayer record,, +bbref:couloda01,Danny Coulombe,couloda01,+ACI-6,7,10,11,12+ACI-,+ACI-5464,6748,9552+ACI-,,,No obvious existing match +AC0- likely needs new SbaPlayer record,, +bbref:garcilu03,Luis Garcia,garcilu03,+ACI-6,7,8,9,10,11,12+ACI-,+ACI-5465,6751,7876+ACI-,,,No obvious existing match +AC0- likely needs new SbaPlayer record,, +bbref:eshelto01,Thomas Eshelman,eshelto01,+ACI-6,7+ACI-,+ACI-5575,6949+ACI-,,,No obvious existing match +AC0- likely needs new SbaPlayer record,,Three+AC0-way match: use name Tom Eshelman +bbref:mejiaje02,JC Mejia,mejiaje02,+ACI-6,7+ACI-,+ACI-5635,7009+ACI-,,,No obvious existing match +AC0- likely needs new SbaPlayer record,, +bbref:mejiafr01,Francisco Mejia,mejiafr01,+ACI-6,7,8,9+ACI-,+ACI-5817,6381,7570+ACI-,,,No obvious existing match +AC0- likely needs new SbaPlayer record,, +bbref:phillev01,Evan Phillips,phillev01,+ACI-8,9,10,11,12+ACI-,+ACI-7564,8618,9622+ACI-,,,No obvious existing match +AC0- likely needs new SbaPlayer record,, +bbref:taylomi01,Michael A Taylor,taylomi01,+ACI-8,9+ACI-,+ACI-7956,9007+ACI-,MAYBE:1963,Michael Taylor,Similar name: Michael A Taylor vs Michael Taylor,1963, +bbref:HALP,Francisco Mejia,HALP,+ACI-10,11+ACI-,+ACI-9632,9907,9932+ACI-,,,No obvious existing match +AC0- likely needs new SbaPlayer record,,Two+AC0-way match: join with bbref+AF8-id mejiafr01 +bbref:fundeko01,Kody Funderburk,fundeko01,12,12049,,,No obvious existing match +AC0- likely needs new SbaPlayer record,, +bbref:phillty01,Tyler Phillips,phillty01,12,12422,,,No obvious existing match +AC0- likely needs new SbaPlayer record,, diff --git a/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/new_sbaplayers_summary.txt b/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/new_sbaplayers_summary.txt new file mode 100644 index 0000000..2e11dd1 --- /dev/null +++ b/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/new_sbaplayers_summary.txt @@ -0,0 +1,19 @@ +NEW SBAPLAYERS REVIEW SUMMARY +======================================== + +Total unique players needing review: 32 + +INSTRUCTIONS: +1. Review the CSV file: new_sbaplayers_for_review.csv +2. For each row, fill in 'your_decision_sbaplayer_id' column: + - Enter existing SbaPlayer ID if you found a match + - Leave blank if player needs a new SbaPlayer record +3. Use 'your_decision_notes' for any comments + +SAMPLE ENTRIES: + Albert Almora (bbref: None) - seasons [1, 2, 3, 4, 5] + Diego Castillo (bbref: None) - seasons [1, 2, 3, 4, 5] + Javy Guerra (bbref: None) - seasons [1, 2, 3, 4, 5] + Luis Garcia (bbref: None) - seasons [1, 2, 3, 4, 5] + Michael A Taylor (bbref: None) - seasons [1, 2, 3, 4, 5] + ... and 27 more diff --git a/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/new_sbaplayers_to_insert.csv b/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/new_sbaplayers_to_insert.csv new file mode 100644 index 0000000..803749f --- /dev/null +++ b/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/new_sbaplayers_to_insert.csv @@ -0,0 +1,15 @@ +temp_id,canonical_name,first_name,last_name,key_bbref,name_variations,player_count,notes +3234,Albert Almora,Albert,Almora,,Albert Almora,5,Created from manual review. Variations: Albert Almora +3236,Javy Guerra,Javy,Guerra,,Javy Guerra,5,Created from manual review. Variations: Javy Guerra +3237,Luis Garcia,Luis,Garcia,garcilu03,"Luis Garcia, Luis Garcia",12,Created from manual review. Variations: Luis Garcia +3238,Evan Phillips,Evan,Phillips,phillev01,"Evan Phillips, Evan Phillips",9,Created from manual review. Variations: Evan Phillips +3239,Francisco Mejia,Francisco,Mejia,mejiafr01,"Francisco Mejia, Francisco Mejia, Francisco Mejia",10,Created from manual review. Variations: Francisco Mejia +3240,Mike Soroka,Mike,Soroka,,Mike Soroka,4,Created from manual review. Variations: Mike Soroka +3241,Tom Eshelman,Tom,Eshelman,eshelto01,"Tom Eshelman, Thomas Eshelman, Thomas Eshelman",6,"Created from manual review. Variations: Thomas Eshelman, Tom Eshelman" +3242,Jose Garcia,Jose,Garcia,,Jose Garcia,2,Created from manual review. Variations: Jose Garcia +3244,Luis H Garcia,Luis,H Garcia,garcilu05,"Luis H Garcia, Luis H Garcia",8,Created from manual review. Variations: Luis H Garcia +3245,Tom Hatch,Tom,Hatch,,Tom Hatch,2,Created from manual review. Variations: Tom Hatch +3246,Danny Coulombe,Danny,Coulombe,couloda01,Danny Coulombe,2,Created from manual review. Variations: Danny Coulombe +3247,JC Mejia,JC,Mejia,mejiaje02,JC Mejia,2,Created from manual review. Variations: JC Mejia +3248,Kody Funderburk,Kody,Funderburk,fundeko01,Kody Funderburk,1,Created from manual review. Variations: Kody Funderburk +3249,Tyler Phillips,Tyler,Phillips,phillty01,Tyler Phillips,1,Created from manual review. Variations: Tyler Phillips diff --git a/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/player_sbaplayer_assignments.csv b/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/player_sbaplayer_assignments.csv new file mode 100644 index 0000000..9a91296 --- /dev/null +++ b/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/player_sbaplayer_assignments.csv @@ -0,0 +1,12233 @@ +player_id,player_name,season,bbref_id,assigned_sbaplayer_id,assignment_source,notes +2014,AJ Minter,1,,1336,tier2_name,Automatic match via exact name to AJ Minter +2013,AJ Ellis,1,,570,tier2_name,Automatic match via exact name to AJ Ellis +2015,AJ Pollock,1,,1571,tier2_name,Automatic match via exact name to AJ Pollock +2016,Aaron Altherr,1,,55,tier2_name,Automatic match via exact name to Aaron Altherr +2017,Aaron Bummer,1,,279,tier2_name,Automatic match via exact name to Aaron Bummer +2018,Aaron Hicks,1,,892,tier2_name,Automatic match via exact name to Aaron Hicks +2019,Aaron Judge,1,,3,tier2_name,Automatic match via exact name to Aaron Judge +2020,Aaron Nola,1,,1433,tier2_name,Automatic match via exact name to Aaron Nola +2021,Aaron Sanchez,1,,1745,tier2_name,Automatic match via exact name to Aaron Sanchez +2022,Abraham Almonte,1,,49,tier2_name,Automatic match via exact name to Abraham Almonte +2023,Adalberto Mondesi,1,,1349,tier2_name,Automatic match via exact name to Adalberto Mondesi +2024,Adam Conley,1,,409,tier2_name,Automatic match via exact name to Adam Conley +2025,Adam Duvall,1,,553,tier2_name,Automatic match via exact name to Adam Duvall +2026,Adam Eaton,1,,556,tier2_name,Automatic match via exact name to Adam Eaton +2027,Adam Engel,1,,574,tier2_name,Automatic match via exact name to Adam Engel +2028,Adam Frazier,1,,648,tier2_name,Automatic match via exact name to Adam Frazier +2029,Adam Jones,1,,989,tier2_name,Automatic match via exact name to Adam Jones +2030,Adam Kolarek,1,,1069,tier2_name,Automatic match via exact name to Adam Kolarek +2031,Adam Morgan,1,,1368,tier2_name,Automatic match via exact name to Adam Morgan +2032,Adam Ottavino,1,,1475,tier2_name,Automatic match via exact name to Adam Ottavino +2033,Adam Warren,1,,2118,tier2_name,Automatic match via exact name to Adam Warren +2034,Addison Reed,1,,1624,tier2_name,Automatic match via exact name to Addison Reed +2035,Addison Russell,1,,1728,tier2_name,Automatic match via exact name to Addison Russell +2036,Adeiny Hechavarria,1,,847,tier2_name,Automatic match via exact name to Adeiny Hechavarria +2037,Adrian Beltre,1,,174,tier2_name,Automatic match via exact name to Adrian Beltre +2038,Adrian Gonzalez,1,,738,tier2_name,Automatic match via exact name to Adrian Gonzalez +2039,Albert Almora,1,,51,tier2_name,Automatic match via exact name to Albert Almora Jr +2040,Albert Pujols,1,,1591,tier2_name,Automatic match via exact name to Albert Pujols +2041,Alcides Escobar,1,,580,tier2_name,Automatic match via exact name to Alcides Escobar +2042,Aledmys Diaz,1,,505,tier2_name,Automatic match via exact name to Aledmys Diaz +2043,Alen Hanson,1,,819,tier2_name,Automatic match via exact name to Alen Hanson +2044,Alex Avila,1,,104,tier2_name,Automatic match via exact name to Alex Avila +2045,Alex Blandino,1,,210,tier2_name,Automatic match via exact name to Alex Blandino +2046,Alex Bregman,1,,248,tier2_name,Automatic match via exact name to Alex Bregman +2047,Alex Claudio,1,,387,tier2_name,Automatic match via exact name to Alex Claudio +2048,Alex Cobb,1,,394,tier2_name,Automatic match via exact name to Alex Cobb +2049,Alex Colome,1,,404,tier2_name,Automatic match via exact name to Alex Colome +2050,Alex Gordon,1,,751,tier2_name,Automatic match via exact name to Alex Gordon +2051,Alex Wilson,1,,2168,tier2_name,Automatic match via exact name to Alex Wilson +2052,Alex Wood,1,,2193,tier2_name,Automatic match via exact name to Alex Wood +2053,Amed Rosario,1,,1711,tier2_name,Automatic match via exact name to Amed Rosario +2054,Amir Garrett,1,,698,tier2_name,Automatic match via exact name to Amir Garrett +2055,Andrelton Simmons,1,,1825,tier2_name,Automatic match via exact name to Andrelton Simmons +2056,Andrew Benintendi,1,,177,tier2_name,Automatic match via exact name to Andrew Benintendi +2057,Andrew Cashner,1,,336,tier2_name,Automatic match via exact name to Andrew Cashner +2058,Andrew Chafin,1,,363,tier2_name,Automatic match via exact name to Andrew Chafin +2059,Andrew Heaney,1,,843,tier2_name,Automatic match via exact name to Andrew Heaney +2060,Andrew Knapp,1,,1062,tier2_name,Automatic match via exact name to Andrew Knapp +2061,Andrew McCutchen,1,,1272,tier2_name,Automatic match via exact name to Andrew McCutchen +2062,Andrew Miller,1,,1320,tier2_name,Automatic match via exact name to Andrew Miller +2063,Andrew Romine,1,,1703,tier2_name,Automatic match via exact name to Andrew Romine +2064,Andrew Stevenson,1,,1906,tier2_name,Automatic match via exact name to Andrew Stevenson +2065,Andrew Suarez,1,,1935,tier2_name,Automatic match via exact name to Andrew Suarez +2066,Anibal Sanchez,1,,1743,tier2_name,Automatic match via exact name to Anibal Sanchez +2067,Anthony DeSclafani,1,,493,tier2_name,Automatic match via exact name to Anthony DeSclafani +2068,Anthony Rendon,1,,1630,tier2_name,Automatic match via exact name to Anthony Rendon +2069,Anthony Rizzo,1,,1658,tier2_name,Automatic match via exact name to Anthony Rizzo +2070,Anthony Swarzak,1,,1950,tier2_name,Automatic match via exact name to Anthony Swarzak +2071,Antonio Senzatela,1,,1801,tier2_name,Automatic match via exact name to Antonio Senzatela +2072,Archie Bradley,1,,236,tier2_name,Automatic match via exact name to Archie Bradley +2073,Ariel Jurado,1,,1005,tier2_name,Automatic match via exact name to Ariel Jurado +2074,Arodys Vizcaino,1,,2083,tier2_name,Automatic match via exact name to Arodys Vizcaino +2075,Aroldis Chapman,1,,366,tier2_name,Automatic match via exact name to Aroldis Chapman +2076,Asdrubal Cabrera,1,,299,tier2_name,Automatic match via exact name to Asdrubal Cabrera +2077,Austin Barnes,1,,132,tier2_name,Automatic match via exact name to Austin Barnes +2078,Austin Gomber,1,,730,tier2_name,Automatic match via exact name to Austin Gomber +2079,Austin Hedges,1,,848,tier2_name,Automatic match via exact name to Austin Hedges +2080,Austin Jackson,1,,958,tier2_name,Automatic match via exact name to Austin Jackson +2081,Austin Pruitt,1,,1588,tier2_name,Automatic match via exact name to Austin Pruitt +2082,Austin Romine,1,,1704,tier2_name,Automatic match via exact name to Austin Romine +2083,Austin Slater,1,,1838,tier2_name,Automatic match via exact name to Austin Slater +2084,Austin Wynns,1,,2202,tier2_name,Automatic match via exact name to Austin Wynns +2085,Avisail Garcia,1,,678,tier2_name,Automatic match via exact name to Avisail Garcia +2086,Bartolo Colon,1,,405,tier2_name,Automatic match via exact name to Bartolo Colon +2087,Ben Gamel,1,,676,tier2_name,Automatic match via exact name to Ben Gamel +2088,Ben Zobrist,1,,2232,tier2_name,Automatic match via exact name to Ben Zobrist +2089,Billy Hamilton,1,,810,tier2_name,Automatic match via exact name to Billy Hamilton +2090,Billy McKinney,1,,1283,tier2_name,Automatic match via exact name to Billy McKinney +2091,Blaine Hardy,1,,822,tier2_name,Automatic match via exact name to Blaine Hardy +2092,Blake Parker,1,,1499,tier2_name,Automatic match via exact name to Blake Parker +2093,Blake Snell,1,,1861,tier2_name,Automatic match via exact name to Blake Snell +2094,Blake Swihart,1,,1952,tier2_name,Automatic match via exact name to Blake Swihart +2095,Blake Treinen,1,,2011,tier2_name,Automatic match via exact name to Blake Treinen +2096,Bobby Wilson,1,,2166,tier2_name,Automatic match via exact name to Bobby Wilson +2097,Brad Boxberger,1,,229,tier2_name,Automatic match via exact name to Brad Boxberger +2098,Brad Brach,1,,232,tier2_name,Automatic match via exact name to Brad Brach +2099,Brad Hand,1,,816,tier2_name,Automatic match via exact name to Brad Hand +2100,Brad Keller,1,,1016,tier2_name,Automatic match via exact name to Brad Keller +2101,Brad Peacock,1,,1510,tier2_name,Automatic match via exact name to Brad Peacock +2102,Brad Ziegler,1,,2226,tier2_name,Automatic match via exact name to Brad Ziegler +2103,Brandon Belt,1,,173,tier2_name,Automatic match via exact name to Brandon Belt +2104,Brandon Crawford,1,,430,tier2_name,Automatic match via exact name to Brandon Crawford +2105,Brandon Dixon,1,,520,tier2_name,Automatic match via exact name to Brandon Dixon +2106,Brandon Guyer,1,,798,tier2_name,Automatic match via exact name to Brandon Guyer +2107,Brandon Kintzler,1,,1052,tier2_name,Automatic match via exact name to Brandon Kintzler +2108,Brandon Maurer,1,,1246,tier2_name,Automatic match via exact name to Brandon Maurer +2109,Brandon McCarthy,1,,1263,tier2_name,Automatic match via exact name to Brandon McCarthy +2110,Brandon Morrow,1,,1374,tier2_name,Automatic match via exact name to Brandon Morrow +2111,Brandon Nimmo,1,,1425,tier2_name,Automatic match via exact name to Brandon Nimmo +2112,Brent Suter,1,,1943,tier2_name,Automatic match via exact name to Brent Suter +2113,Brett Anderson,1,,66,tier2_name,Automatic match via exact name to Brett Anderson +2114,Brett Cecil,1,,357,tier2_name,Automatic match via exact name to Brett Cecil +2115,Brett Gardner,1,,695,tier2_name,Automatic match via exact name to Brett Gardner +2116,Brett Phillips,1,,1555,tier2_name,Automatic match via exact name to Brett Phillips +2117,Brian Anderson,1,,69,tier2_name,Automatic match via exact name to Brian Anderson +2118,Brian Dozier,1,,532,tier2_name,Automatic match via exact name to Brian Dozier +2119,Brian Flynn,1,,631,tier2_name,Automatic match via exact name to Brian Flynn +2120,Brian Johnson,1,,986,tier2_name,Automatic match via exact name to Brian Johnson +2121,Brian McCann,1,,1260,tier2_name,Automatic match via exact name to Brian McCann +2122,Brock Holt,1,,921,tier2_name,Automatic match via exact name to Brock Holt +2123,Bryan Holaday,1,,911,tier2_name,Automatic match via exact name to Bryan Holaday +2124,Bryan Mitchell,1,,1339,tier2_name,Automatic match via exact name to Bryan Mitchell +2125,Bryan Shaw,1,,1808,tier2_name,Automatic match via exact name to Bryan Shaw +2126,Bryce Harper,1,,823,tier2_name,Automatic match via exact name to Bryce Harper +2127,Buck Farmer,1,,597,tier2_name,Automatic match via exact name to Buck Farmer +2128,Bud Norris,1,,1438,tier2_name,Automatic match via exact name to Bud Norris +2129,Burch Smith,1,,1844,tier2_name,Automatic match via exact name to Burch Smith +2130,Buster Posey,1,,1578,tier2_name,Automatic match via exact name to Buster Posey +2131,CJ Cron,1,,441,tier2_name,Automatic match via exact name to CJ Cron +2132,Caleb Joseph,1,,996,tier2_name,Automatic match via exact name to Caleb Joseph +2133,Caleb Smith,1,,1845,tier2_name,Automatic match via exact name to Caleb Smith +2134,Cam Bedrosian,1,,163,tier2_name,Automatic match via exact name to Cam Bedrosian +2135,Cam Gallagher,1,,670,tier2_name,Automatic match via exact name to Cam Gallagher +2136,Carl Edwards Jr,1,,560,tier2_name,Automatic match via exact name to Carl Edwards Jr +2137,Carlos Asuaje,1,,102,tier2_name,Automatic match via exact name to Carlos Asuaje +2138,Carlos Carrasco,1,,331,tier2_name,Automatic match via exact name to Carlos Carrasco +2139,Carlos Correa,1,,420,tier2_name,Automatic match via exact name to Carlos Correa +2140,Carlos Gomez,1,,732,tier2_name,Automatic match via exact name to Carlos Gomez +2141,Carlos Gonzalez,1,,740,tier2_name,Automatic match via exact name to Carlos Gonzalez +2142,Carlos Martinez,1,,1223,tier2_name,Automatic match via exact name to Carlos Martinez +2143,Carlos Rodon,1,,1670,tier2_name,Automatic match via exact name to Carlos Rodon +2144,Carlos Santana,1,,1759,tier2_name,Automatic match via exact name to Carlos Santana +2145,Carlos Tocci,1,,1993,tier2_name,Automatic match via exact name to Carlos Tocci +2146,CC Sabathia,1,,1734,tier2_name,Automatic match via exact name to CC Sabathia +2147,Cedric Mullins,1,,1381,tier2_name,Automatic match via exact name to Cedric Mullins +2148,Cesar Hernandez,1,,870,tier2_name,Automatic match via exact name to Cesar Hernandez +2149,Chad Bettis,1,,186,tier2_name,Automatic match via exact name to Chad Bettis +2150,Chad Green,1,,768,tier2_name,Automatic match via exact name to Chad Green +2151,Chad Kuhl,1,,1078,tier2_name,Automatic match via exact name to Chad Kuhl +2152,Chad Pinder,1,,1559,tier2_name,Automatic match via exact name to Chad Pinder +2153,Chance Sisco,1,,1831,tier2_name,Automatic match via exact name to Chance Sisco +2154,Charlie Blackmon,1,,205,tier2_name,Automatic match via exact name to Charlie Blackmon +2155,Charlie Culberson,1,,453,tier2_name,Automatic match via exact name to Charlie Culberson +2156,Charlie Morton,1,,1375,tier2_name,Automatic match via exact name to Charlie Morton +2157,Charlie Tilson,1,,1991,tier2_name,Automatic match via exact name to Charlie Tilson +2158,Chase Anderson,1,,67,tier2_name,Automatic match via exact name to Chase Anderson +2159,Chase Utley,1,,2043,tier2_name,Automatic match via exact name to Chase Utley +2160,Chasen Bradford,1,,234,tier2_name,Automatic match via exact name to Chasen Bradford +2161,Chaz Roe,1,,1688,tier2_name,Automatic match via exact name to Chaz Roe +2162,Chris Archer,1,,85,tier2_name,Automatic match via exact name to Chris Archer +2163,Chris Davis,1,,467,tier2_name,Automatic match via exact name to Chris Davis +2164,Chris Devenski,1,,498,tier2_name,Automatic match via exact name to Chris Devenski +2165,Chris Herrmann,1,,887,tier2_name,Automatic match via exact name to Chris Herrmann +2166,Chris Iannetta,1,,947,tier2_name,Automatic match via exact name to Chris Iannetta +2167,Chris Martin,1,,1214,tier2_name,Automatic match via exact name to Chris Martin +2168,Chris Owings,1,,1480,tier2_name,Automatic match via exact name to Chris Owings +2169,Chris Rusin,1,,1727,tier2_name,Automatic match via exact name to Chris Rusin +2170,Chris Sale,1,,1739,tier2_name,Automatic match via exact name to Chris Sale +2171,Chris Stratton,1,,1922,tier2_name,Automatic match via exact name to Chris Stratton +2172,Chris Taylor,1,,1964,tier2_name,Automatic match via exact name to Chris Taylor +2173,Chris Volstad,1,,2089,tier2_name,Automatic match via exact name to Chris Volstad +2174,Christian Vazquez,1,,2063,tier2_name,Automatic match via exact name to Christian Vazquez +2175,Christian Villanueva,1,,2078,tier2_name,Automatic match via exact name to Christian Villanueva +2176,Christian Yelich,1,,2212,tier2_name,Automatic match via exact name to Christian Yelich +2177,Clay Buchholz,1,,275,tier2_name,Automatic match via exact name to Clay Buchholz +2178,Clayton Kershaw,1,,1034,tier2_name,Automatic match via exact name to Clayton Kershaw +2179,Clayton Richard,1,,1644,tier2_name,Automatic match via exact name to Clayton Richard +2180,Cody Allen,1,,43,tier2_name,Automatic match via exact name to Cody Allen +2181,Cody Bellinger,1,,170,tier2_name,Automatic match via exact name to Cody Bellinger +2182,Cody Reed,1,,1625,tier2_name,Automatic match via exact name to Cody Reed +2183,Cole Hamels,1,,809,tier2_name,Automatic match via exact name to Cole Hamels +2184,Colin Moran,1,,1360,tier2_name,Automatic match via exact name to Colin Moran +2185,Collin McHugh,1,,1278,tier2_name,Automatic match via exact name to Collin McHugh +2186,Corbin Burnes,1,,286,tier2_name,Automatic match via exact name to Corbin Burnes +2187,Corey Dickerson,1,,513,tier2_name,Automatic match via exact name to Corey Dickerson +2188,Corey Kluber,1,,1060,tier2_name,Automatic match via exact name to Corey Kluber +2189,Corey Knebel,1,,1063,tier2_name,Automatic match via exact name to Corey Knebel +2190,Corey Oswalt,1,,1472,tier2_name,Automatic match via exact name to Corey Oswalt +2191,Cory Spangenberg,1,,1883,tier2_name,Automatic match via exact name to Cory Spangenberg +2192,Craig Gentry,1,,711,tier2_name,Automatic match via exact name to Craig Gentry +2193,Craig Kimbrel,1,,1043,tier2_name,Automatic match via exact name to Craig Kimbrel +2194,Craig Stammen,1,,1891,tier2_name,Automatic match via exact name to Craig Stammen +2195,Curt Casali,1,,334,tier2_name,Automatic match via exact name to Curt Casali +2196,Dallas Keuchel,1,,1035,tier2_name,Automatic match via exact name to Dallas Keuchel +2197,Dan Jennings,1,,977,tier2_name,Automatic match via exact name to Dan Jennings +2198,Dan Otero,1,,1474,tier2_name,Automatic match via exact name to Dan Otero +2199,Dan Straily,1,,1919,tier2_name,Automatic match via exact name to Dan Straily +2200,Dan Winkler,1,,2178,tier2_name,Automatic match via exact name to Dan Winkler +2201,Daniel Descalso,1,,492,tier2_name,Automatic match via exact name to Daniel Descalso +2202,Daniel Mengden,1,,1305,tier2_name,Automatic match via exact name to Daniel Mengden +2203,Daniel Murphy,1,,1387,tier2_name,Automatic match via exact name to Daniel Murphy +2204,Daniel Norris,1,,1439,tier2_name,Automatic match via exact name to Daniel Norris +2205,Daniel Palka,1,,1491,tier2_name,Automatic match via exact name to Daniel Palka +2206,Daniel Robertson,1,,1663,tier2_name,Automatic match via exact name to Daniel Robertson +2207,Daniel Stumpf,1,,1932,tier2_name,Automatic match via exact name to Daniel Stumpf +2208,Danny Barnes,1,,130,tier2_name,Automatic match via exact name to Danny Barnes +2209,Danny Duffy,1,,541,tier2_name,Automatic match via exact name to Danny Duffy +2210,Danny Jansen,1,,969,tier2_name,Automatic match via exact name to Danny Jansen +2211,Danny Valencia,1,,2050,tier2_name,Automatic match via exact name to Danny Valencia +2212,Dansby Swanson,1,,1947,tier2_name,Automatic match via exact name to Dansby Swanson +2213,David Bote,1,,224,tier2_name,Automatic match via exact name to David Bote +2214,David Dahl,1,,457,tier2_name,Automatic match via exact name to David Dahl +2215,David Fletcher,1,,624,tier2_name,Automatic match via exact name to David Fletcher +2216,David Freese,1,,655,tier2_name,Automatic match via exact name to David Freese +2217,David Freitas,1,,656,tier2_name,Automatic match via exact name to David Freitas +2218,David Hernandez,1,,868,tier2_name,Automatic match via exact name to David Hernandez +2219,David Hess,1,,889,tier2_name,Automatic match via exact name to David Hess +2220,David Peralta,1,,1522,tier2_name,Automatic match via exact name to David Peralta +2221,David Price,1,,1585,tier2_name,Automatic match via exact name to David Price +2222,David Robertson,1,,1662,tier2_name,Automatic match via exact name to David Robertson +2223,Dee Strange Gordon,1,,1920,tier2_name,Automatic match via exact name to Dee Strange Gordon +2224,Delino DeShields,1,,494,tier2_name,Automatic match via exact name to Delino DeShields +2225,Dellin Betances,1,,184,tier2_name,Automatic match via exact name to Dellin Betances +2226,Denard Span,1,,1882,tier2_name,Automatic match via exact name to Denard Span +2227,Dereck Rodriguez,1,,1676,tier2_name,Automatic match via exact name to Dereck Rodriguez +2228,Derek Dietrich,1,,515,tier2_name,Automatic match via exact name to Derek Dietrich +2229,Derek Holland,1,,914,tier2_name,Automatic match via exact name to Derek Holland +2230,Devin Mesoraco,1,,1313,tier2_name,Automatic match via exact name to Devin Mesoraco +2231,Devon Travis,1,,2009,tier2_name,Automatic match via exact name to Devon Travis +2232,Dexter Fowler,1,,639,tier2_name,Automatic match via exact name to Dexter Fowler +2233,Didi Gregorius,1,,772,tier2_name,Automatic match via exact name to Didi Gregorius +2234,Diego Castillo,1,,3235,manual_new,Manual assignment to new SbaPlayer: Diego Castillo +2235,Dixon Machado,1,,1174,tier2_name,Automatic match via exact name to Dixon Machado +2236,DJ LeMahieu,1,,1114,tier2_name,Automatic match via exact name to DJ LeMahieu +2237,Domingo German,1,,713,tier2_name,Automatic match via exact name to Domingo German +2238,Domingo Santana,1,,1761,tier2_name,Automatic match via exact name to Domingo Santana +2239,Dominic Smith,1,,1849,tier2_name,Automatic match via exact name to Dominic Smith +2240,Doug Fister,1,,619,tier2_name,Automatic match via exact name to Doug Fister +2241,Dovydas Neverauskas,1,,1416,tier2_name,Automatic match via exact name to Dovydas Neverauskas +2242,Drew Pomeranz,1,,1572,tier2_name,Automatic match via exact name to Drew Pomeranz +2243,Drew Rucinski,1,,1720,tier2_name,Automatic match via exact name to Drew Rucinski +2244,Drew Steckenrider,1,,1898,tier2_name,Automatic match via exact name to Drew Steckenrider +2245,Drew VerHagen,1,,2070,tier2_name,Automatic match via exact name to Drew VerHagen +2246,Dustin Fowler,1,,640,tier2_name,Automatic match via exact name to Dustin Fowler +2247,Dylan Bundy,1,,280,tier2_name,Automatic match via exact name to Dylan Bundy +2248,Dylan Covey,1,,425,tier2_name,Automatic match via exact name to Dylan Covey +2249,Dylan Floro,1,,629,tier2_name,Automatic match via exact name to Dylan Floro +2250,Eddie Butler,1,,291,tier2_name,Automatic match via exact name to Eddie Butler +2251,Eddie Rosario,1,,1710,tier2_name,Automatic match via exact name to Eddie Rosario +2252,Edgar Santana,1,,1763,tier2_name,Automatic match via exact name to Edgar Santana +2253,Eduardo Escobar,1,,581,tier2_name,Automatic match via exact name to Eduardo Escobar +2254,Eduardo Nunez,1,,1442,tier2_name,Automatic match via exact name to Eduardo Nunez +2255,Eduardo Rodriguez,1,,1675,tier2_name,Automatic match via exact name to Eduardo Rodriguez +2256,Edubray Ramos,1,,1613,tier2_name,Automatic match via exact name to Edubray Ramos +2257,Edwin Diaz,1,,503,tier2_name,Automatic match via exact name to Edwin Diaz +2258,Edwin Encarnacion,1,,571,tier2_name,Automatic match via exact name to Edwin Encarnacion +2259,Edwin Jackson,1,,957,tier2_name,Automatic match via exact name to Edwin Jackson +2260,Ehire Adrianza,1,,22,tier2_name,Automatic match via exact name to Ehire Adrianza +2261,Elias Diaz,1,,502,tier2_name,Automatic match via exact name to Elias Diaz +2262,Elieser Hernandez,1,,874,tier2_name,Automatic match via exact name to Elieser Hernandez +2513,Elvis Andrus,1,,77,tier2_name,Automatic match via exact name to Elvis Andrus +2514,Emilio Pagan,1,,1484,tier2_name,Automatic match via exact name to Emilio Pagan +2515,Ender Inciarte,1,,952,tier2_name,Automatic match via exact name to Ender Inciarte +2516,Enrique Hernandez,1,,871,tier2_name,Automatic match via exact name to Enrique Hernandez +2517,Eric Hosmer,1,,926,tier2_name,Automatic match via exact name to Eric Hosmer +2518,Eric Lauer,1,,1096,tier2_name,Automatic match via exact name to Eric Lauer +2519,Eric Skoglund,1,,1834,tier2_name,Automatic match via exact name to Eric Skoglund +2520,Eric Thames,1,,1976,tier2_name,Automatic match via exact name to Eric Thames +2521,Eric Young Jr,1,,2221,tier2_name,Automatic match via exact name to Eric Young Jr +2522,Erick Fedde,1,,600,tier2_name,Automatic match via exact name to Erick Fedde +2523,Erik Gonzalez,1,,742,tier2_name,Automatic match via exact name to Erik Gonzalez +2524,Erik Kratz,1,,1074,tier2_name,Automatic match via exact name to Erik Kratz +2525,Eugenio Suarez,1,,1934,tier2_name,Automatic match via exact name to Eugenio Suarez +2526,Evan Gattis,1,,705,tier2_name,Automatic match via exact name to Evan Gattis +2527,Evan Longoria,1,,1140,tier2_name,Automatic match via exact name to Evan Longoria +2528,Felipe Vazquez,1,,2064,tier2_name,Automatic match via exact name to Felipe Vazquez +2529,Felix Hernandez,1,,867,tier2_name,Automatic match via exact name to Felix Hernandez +2530,Felix Pena,1,,1518,tier2_name,Automatic match via exact name to Felix Pena +2531,Fernando Rodney,1,,1669,tier2_name,Automatic match via exact name to Fernando Rodney +2532,Fernando Romero,1,,1701,tier2_name,Automatic match via exact name to Fernando Romero +2533,Francisco Arcia,1,,87,tier2_name,Automatic match via exact name to Francisco Arcia +2534,Francisco Cervelli,1,,359,tier2_name,Automatic match via exact name to Francisco Cervelli +2535,Francisco Lindor,1,,1124,tier2_name,Automatic match via exact name to Francisco Lindor +2536,Francisco Liriano,1,,1126,tier2_name,Automatic match via exact name to Francisco Liriano +2537,Francisco Pena,1,,1517,tier2_name,Automatic match via exact name to Francisco Pena +2538,Franmil Reyes,1,,1634,tier2_name,Automatic match via exact name to Franmil Reyes +2539,Freddie Freeman,1,,652,tier2_name,Automatic match via exact name to Freddie Freeman +2540,Freddy Galvis,1,,675,tier2_name,Automatic match via exact name to Freddy Galvis +2541,Freddy Peralta,1,,1525,tier2_name,Automatic match via exact name to Freddy Peralta +2542,Gabriel Moya,1,,1379,tier2_name,Automatic match via exact name to Gabriel Moya +2543,Garrett Richards,1,,1645,tier2_name,Automatic match via exact name to Garrett Richards +2544,Gary Sanchez,1,,1746,tier2_name,Automatic match via exact name to Gary Sanchez +2545,George Springer,1,,1888,tier2_name,Automatic match via exact name to George Springer +2546,Gerardo Parra,1,,1501,tier2_name,Automatic match via exact name to Gerardo Parra +2547,German Marquez,1,,1204,tier2_name,Automatic match via exact name to German Marquez +2548,Gerrit Cole,1,,398,tier2_name,Automatic match via exact name to Gerrit Cole +2549,Giancarlo Stanton,1,,1893,tier2_name,Automatic match via exact name to Giancarlo Stanton +2550,Gio Gonzalez,1,,739,tier2_name,Automatic match via exact name to Gio Gonzalez +2551,Gleyber Torres,1,,2003,tier2_name,Automatic match via exact name to Gleyber Torres +2552,Gorkys Hernandez,1,,869,tier2_name,Automatic match via exact name to Gorkys Hernandez +2553,Greg Allen,1,,44,tier2_name,Automatic match via exact name to Greg Allen +2554,Greg Bird,1,,197,tier2_name,Automatic match via exact name to Greg Bird +2555,Greg Garcia,1,,681,tier2_name,Automatic match via exact name to Greg Garcia +2556,Greg Holland,1,,915,tier2_name,Automatic match via exact name to Greg Holland +2557,Gregor Blanco,1,,207,tier2_name,Automatic match via exact name to Gregor Blanco +2558,Gregory Polanco,1,,1569,tier2_name,Automatic match via exact name to Gregory Polanco +2559,Guillermo Heredia,1,,862,tier2_name,Automatic match via exact name to Guillermo Heredia +2560,Hansel Robles,1,,1665,tier2_name,Automatic match via exact name to Hansel Robles +2561,Harrison Bader,1,,110,tier2_name,Automatic match via exact name to Harrison Bader +2562,Harrison Musgrave,1,,1393,tier2_name,Automatic match via exact name to Harrison Musgrave +2563,Heath Fillmyer,1,,616,tier2_name,Automatic match via exact name to Heath Fillmyer +2564,Heath Hembree,1,,854,tier2_name,Automatic match via exact name to Heath Hembree +2565,Hector Neris,1,,1413,tier2_name,Automatic match via exact name to Hector Neris +2566,Hector Rondon,1,,1706,tier2_name,Automatic match via exact name to Hector Rondon +2567,Hector Santiago,1,,1765,tier2_name,Automatic match via exact name to Hector Santiago +2568,Hector Velazquez,1,,2066,tier2_name,Automatic match via exact name to Hector Velazquez +2569,Hernan Perez,1,,1536,tier2_name,Automatic match via exact name to Hernan Perez +2570,Homer Bailey,1,,114,tier2_name,Automatic match via exact name to Homer Bailey +2571,Howie Kendrick,1,,1028,tier2_name,Automatic match via exact name to Howie Kendrick +2572,Hunter Dozier,1,,533,tier2_name,Automatic match via exact name to Hunter Dozier +2573,Hunter Pence,1,,1520,tier2_name,Automatic match via exact name to Hunter Pence +2574,Hunter Renfroe,1,,1631,tier2_name,Automatic match via exact name to Hunter Renfroe +2575,Hunter Strickland,1,,1925,tier2_name,Automatic match via exact name to Hunter Strickland +2576,Hunter Wood,1,,2192,tier2_name,Automatic match via exact name to Hunter Wood +2577,Hyun Jin Ryu,1,,1733,tier2_name,Automatic match via exact name to Hyun Jin Ryu +2578,Ian Desmond,1,,495,tier2_name,Automatic match via exact name to Ian Desmond +2579,Ian Happ,1,,820,tier2_name,Automatic match via exact name to Ian Happ +2580,Ian Kennedy,1,,1029,tier2_name,Automatic match via exact name to Ian Kennedy +2581,Ian Kinsler,1,,1051,tier2_name,Automatic match via exact name to Ian Kinsler +2582,Isiah Kiner Falefa,1,,1044,tier2_name,Automatic match via exact name to Isiah Kiner Falefa +2583,Ivan Nova,1,,1441,tier2_name,Automatic match via exact name to Ivan Nova +2584,JA Happ,1,,821,tier2_name,Automatic match via exact name to JA Happ +2585,JD Martinez,1,,1229,tier2_name,Automatic match via exact name to JD Martinez +2586,JT Realmuto,1,,1622,tier2_name,Automatic match via exact name to JT Realmuto +2587,Jace Fry,1,,661,tier2_name,Automatic match via exact name to Jace Fry +2588,Jace Peterson,1,,1547,tier2_name,Automatic match via exact name to Jace Peterson +2589,Jack Flaherty,1,,622,tier2_name,Automatic match via exact name to Jack Flaherty +2590,Jackie Bradley Jr,1,,239,tier2_name,Automatic match via exact name to Jackie Bradley Jr +2591,Jackson Stephens,1,,1903,tier2_name,Automatic match via exact name to Jackson Stephens +2592,Jacob Barnes,1,,133,tier2_name,Automatic match via exact name to Jacob Barnes +2593,Jacob deGrom,1,,484,tier2_name,Automatic match via exact name to Jacob deGrom +2594,Jacob Nix,1,,1426,tier2_name,Automatic match via exact name to Jacob Nix +2595,Jacob Rhame,1,,1642,tier2_name,Automatic match via exact name to Jacob Rhame +2596,JaCoby Jones,1,,991,tier2_name,Automatic match via exact name to JaCoby Jones +2597,Jaime Barria,1,,141,tier2_name,Automatic match via exact name to Jaime Barria +2598,Jake Arrieta,1,,94,tier2_name,Automatic match via exact name to Jake Arrieta +2599,Jake Bauers,1,,151,tier2_name,Automatic match via exact name to Jake Bauers +2600,Jake Cave,1,,354,tier2_name,Automatic match via exact name to Jake Cave +2601,Jake Faria,1,,596,tier2_name,Automatic match via exact name to Jake Faria +2602,Jake Lamb,1,,1087,tier2_name,Automatic match via exact name to Jake Lamb +2603,Jake Marisnick,1,,1200,tier2_name,Automatic match via exact name to Jake Marisnick +2604,Jake McGee,1,,1274,tier2_name,Automatic match via exact name to Jake McGee +2605,Jake Odorizzi,1,,1452,tier2_name,Automatic match via exact name to Jake Odorizzi +2606,Jake Petricka,1,,1550,tier2_name,Automatic match via exact name to Jake Petricka +2607,Jakob Junis,1,,1004,tier2_name,Automatic match via exact name to Jakob Junis +2608,Jalen Beeks,1,,165,tier2_name,Automatic match via exact name to Jalen Beeks +2609,James McCann,1,,1261,tier2_name,Automatic match via exact name to James McCann +2610,James Paxton,1,,1506,tier2_name,Automatic match via exact name to James Paxton +2611,James Pazos,1,,1509,tier2_name,Automatic match via exact name to James Pazos +2612,James Shields,1,,1816,tier2_name,Automatic match via exact name to James Shields +2613,Jameson Taillon,1,,1954,tier2_name,Automatic match via exact name to Jameson Taillon +2614,Jared Hughes,1,,937,tier2_name,Automatic match via exact name to Jared Hughes +2615,Jarlin Garcia,1,,684,tier2_name,Automatic match via exact name to Jarlin Garcia +2616,Jarrod Dyson,1,,555,tier2_name,Automatic match via exact name to Jarrod Dyson +2617,Jason Adam,1,,13,tier2_name,Automatic match via exact name to Jason Adam +2618,Jason Hammel,1,,813,tier2_name,Automatic match via exact name to Jason Hammel +2619,Jason Heyward,1,,891,tier2_name,Automatic match via exact name to Jason Heyward +2620,Jason Kipnis,1,,1053,tier2_name,Automatic match via exact name to Jason Kipnis +2621,Jason Vargas,1,,2053,tier2_name,Automatic match via exact name to Jason Vargas +2622,Javier Baez,1,,112,tier2_name,Automatic match via exact name to Javier Baez +2623,Javy Guerra,1,,3236,manual_new,Manual assignment to new SbaPlayer: Javy Guerra +2624,Jay Bruce,1,,270,tier2_name,Automatic match via exact name to Jay Bruce +2625,JB Shuck,1,,1820,tier2_name,Automatic match via exact name to JB Shuck +2626,Jean Segura,1,,1796,tier2_name,Automatic match via exact name to Jean Segura +2627,Jeanmar Gomez,1,,733,tier2_name,Automatic match via exact name to Jeanmar Gomez +2628,Jed Lowrie,1,,1158,tier2_name,Automatic match via exact name to Jed Lowrie +2629,Jedd Gyorko,1,,800,tier2_name,Automatic match via exact name to Jedd Gyorko +2630,Jeff Mathis,1,,1235,tier2_name,Automatic match via exact name to Jeff Mathis +2631,Jeff McNeil,1,,1287,tier2_name,Automatic match via exact name to Jeff McNeil +2632,Jeffrey Springs,1,,1889,tier2_name,Automatic match via exact name to Jeffrey Springs +2633,Jefry Marte,1,,1209,tier2_name,Automatic match via exact name to Jefry Marte +2634,Jefry Rodriguez,1,,1677,tier2_name,Automatic match via exact name to Jefry Rodriguez +2635,Jeimer Candelario,1,,315,tier2_name,Automatic match via exact name to Jeimer Candelario +2636,Jeremy Hellickson,1,,852,tier2_name,Automatic match via exact name to Jeremy Hellickson +2637,Jeremy Jeffress,1,,976,tier2_name,Automatic match via exact name to Jeremy Jeffress +2638,Jerry Blevins,1,,213,tier2_name,Automatic match via exact name to Jerry Blevins +2639,Jesse Biddle,1,,192,tier2_name,Automatic match via exact name to Jesse Biddle +2640,Jesse Chavez,1,,370,tier2_name,Automatic match via exact name to Jesse Chavez +2641,Jesse Winker,1,,2177,tier2_name,Automatic match via exact name to Jesse Winker +2642,Jesus Aguilar,1,,25,tier2_name,Automatic match via exact name to Jesus Aguilar +2643,Jesus Sucre,1,,1939,tier2_name,Automatic match via exact name to Jesus Sucre +2644,Jeurys Familia,1,,595,tier2_name,Automatic match via exact name to Jeurys Familia +2645,Jhoulys Chacin,1,,362,tier2_name,Automatic match via exact name to Jhoulys Chacin +2646,Ji Man Choi,1,,377,tier2_name,Automatic match via exact name to Ji Man Choi +2647,Jim Adduci,1,,19,tier2_name,Automatic match via exact name to Jim Adduci +2648,Jim Johnson,1,,984,tier2_name,Automatic match via exact name to Jim Johnson +2649,Jimmy Yacabonis,1,,2203,tier2_name,Automatic match via exact name to Jimmy Yacabonis +2650,Joc Pederson,1,,1514,tier2_name,Automatic match via exact name to Joc Pederson +2651,Joe Biagini,1,,188,tier2_name,Automatic match via exact name to Joe Biagini +2652,Joe Jimenez,1,,979,tier2_name,Automatic match via exact name to Joe Jimenez +2653,Joe Kelly,1,,1021,tier2_name,Automatic match via exact name to Joe Kelly +2654,Joe Mauer,1,,1245,tier2_name,Automatic match via exact name to Joe Mauer +2655,Joe Musgrove,1,,1394,tier2_name,Automatic match via exact name to Joe Musgrove +2656,Joe Panik,1,,1493,tier2_name,Automatic match via exact name to Joe Panik +2657,Joe Smith,1,,1842,tier2_name,Automatic match via exact name to Joe Smith +2658,Joey Gallo,1,,674,tier2_name,Automatic match via exact name to Joey Gallo +2659,Joey Lucchesi,1,,1160,tier2_name,Automatic match via exact name to Joey Lucchesi +2660,Joey Rickard,1,,1647,tier2_name,Automatic match via exact name to Joey Rickard +2661,Joey Votto,1,,2092,tier2_name,Automatic match via exact name to Joey Votto +2662,Joey Wendle,1,,2135,tier2_name,Automatic match via exact name to Joey Wendle +2663,Johan Camargo,1,,309,tier2_name,Automatic match via exact name to Johan Camargo +2664,John Brebbia,1,,247,tier2_name,Automatic match via exact name to John Brebbia +2665,John Gant,1,,677,tier2_name,Automatic match via exact name to John Gant +2666,John Hicks,1,,893,tier2_name,Automatic match via exact name to John Hicks +2667,John Ryan Murphy,1,,1392,tier2_name,Automatic match via exact name to John Ryan Murphy +2668,Johnny Field,1,,613,tier2_name,Automatic match via exact name to Johnny Field +2669,Jon Gray,1,,766,tier2_name,Automatic match via exact name to Jon Gray +2670,Jon Jay,1,,973,tier2_name,Automatic match via exact name to Jon Jay +2671,Jon Lester,1,,1117,tier2_name,Automatic match via exact name to Jon Lester +2672,Jonathan Holder,1,,912,tier2_name,Automatic match via exact name to Jonathan Holder +2673,Jonathan Lucroy,1,,1163,tier2_name,Automatic match via exact name to Jonathan Lucroy +2674,Jonathan Schoop,1,,1779,tier2_name,Automatic match via exact name to Jonathan Schoop +2675,Jonathan Villar,1,,2079,tier2_name,Automatic match via exact name to Jonathan Villar +2676,Jordan Hicks,1,,894,tier2_name,Automatic match via exact name to Jordan Hicks +2677,Jordan Zimmermann,1,,2230,tier2_name,Automatic match via exact name to Jordan Zimmermann +2678,Jordy Mercer,1,,1308,tier2_name,Automatic match via exact name to Jordy Mercer +2679,Jorge Alfaro,1,,40,tier2_name,Automatic match via exact name to Jorge Alfaro +2680,Jorge Bonifacio,1,,220,tier2_name,Automatic match via exact name to Jorge Bonifacio +2681,Jorge Polanco,1,,1570,tier2_name,Automatic match via exact name to Jorge Polanco +2682,Jorge Soler,1,,1870,tier2_name,Automatic match via exact name to Jorge Soler +2683,Jose Abreu,1,,7,tier2_name,Automatic match via exact name to Jose Abreu +2684,Jose Altuve,1,,56,tier2_name,Automatic match via exact name to Jose Altuve +2685,Jose Alvarado,1,,58,tier2_name,Automatic match via exact name to Jose Alvarado +2686,Jose Alvarez,1,,59,tier2_name,Automatic match via exact name to Jose Alvarez +2687,Jose Bautista,1,,153,tier2_name,Automatic match via exact name to Jose Bautista +2688,Jose Berrios,1,,182,tier2_name,Automatic match via exact name to Jose Berrios +2689,Jose Briceno,1,,254,tier2_name,Automatic match via exact name to Jose Briceno +2690,Jose Castillo,1,,342,tier2_name,Automatic match via exact name to Jose Castillo +2691,Jose Iglesias,1,,949,tier2_name,Automatic match via exact name to Jose Iglesias +2692,Jose Leclerc,1,,1106,tier2_name,Automatic match via exact name to Jose Leclerc +2693,Jose Martinez,1,,1222,tier2_name,Automatic match via exact name to Jose Martinez +2694,Jose Osuna,1,,1471,tier2_name,Automatic match via exact name to Jose Osuna +2695,Jose Peraza,1,,1527,tier2_name,Automatic match via exact name to Jose Peraza +2696,Jose Pirela,1,,1562,tier2_name,Automatic match via exact name to Jose Pirela +2697,Jose Quintana,1,,1596,tier2_name,Automatic match via exact name to Jose Quintana +2698,Jose Ramirez,1,,1608,tier2_name,Automatic match via exact name to Jose Ramirez +2699,Jose Reyes,1,,1633,tier2_name,Automatic match via exact name to Jose Reyes +2700,Jose Urena,1,,2035,tier2_name,Automatic match via exact name to Jose Urena +2701,Josh Bell,1,,168,tier2_name,Automatic match via exact name to Josh Bell +2702,Josh Fields,1,,614,tier2_name,Automatic match via exact name to Josh Fields +2703,Josh Hader,1,,802,tier2_name,Automatic match via exact name to Josh Hader +2704,Josh Harrison,1,,829,tier2_name,Automatic match via exact name to Josh Harrison +2705,Josh Phegley,1,,1553,tier2_name,Automatic match via exact name to Josh Phegley +2706,Josh Reddick,1,,1623,tier2_name,Automatic match via exact name to Josh Reddick +2707,Josh Tomlin,1,,1996,tier2_name,Automatic match via exact name to Josh Tomlin +2708,JT Riddle,1,,1648,tier2_name,Automatic match via exact name to JT Riddle +2709,Juan Minaya,1,,1334,tier2_name,Automatic match via exact name to Juan Minaya +2710,Juan Nicasio,1,,1422,tier2_name,Automatic match via exact name to Juan Nicasio +2711,Juan Soto,1,,1879,tier2_name,Automatic match via exact name to Juan Soto +2712,Julio Teheran,1,,1970,tier2_name,Automatic match via exact name to Julio Teheran +2713,Junior Guerra,1,,785,tier2_name,Automatic match via exact name to Junior Guerra +2714,Jurickson Profar,1,,1587,tier2_name,Automatic match via exact name to Jurickson Profar +2715,Justin Anderson,1,,70,tier2_name,Automatic match via exact name to Justin Anderson +2716,Justin Bour,1,,226,tier2_name,Automatic match via exact name to Justin Bour +2717,Justin Miller,1,,1321,tier2_name,Automatic match via exact name to Justin Miller +2718,Justin Smoak,1,,1857,tier2_name,Automatic match via exact name to Justin Smoak +2719,Justin Turner,1,,2029,tier2_name,Automatic match via exact name to Justin Turner +2720,Justin Upton,1,,2034,tier2_name,Automatic match via exact name to Justin Upton +2721,Justin Verlander,1,,2071,tier2_name,Automatic match via exact name to Justin Verlander +2722,Justin Wilson,1,,2167,tier2_name,Automatic match via exact name to Justin Wilson +2723,Kazuhisa Makita,1,,1186,tier2_name,Automatic match via exact name to Kazuhisa Makita +2724,Kelby Tomlinson,1,,1997,tier2_name,Automatic match via exact name to Kelby Tomlinson +2725,Ken Giles,1,,720,tier2_name,Automatic match via exact name to Ken Giles +2726,Kendrys Morales,1,,1359,tier2_name,Automatic match via exact name to Kendrys Morales +2727,Kenley Jansen,1,,968,tier2_name,Automatic match via exact name to Kenley Jansen +2728,Kenta Maeda,1,,1181,tier2_name,Automatic match via exact name to Kenta Maeda +2729,Ketel Marte,1,,1210,tier2_name,Automatic match via exact name to Ketel Marte +2730,Kevan Smith,1,,1847,tier2_name,Automatic match via exact name to Kevan Smith +2731,Kevin Gausman,1,,706,tier2_name,Automatic match via exact name to Kevin Gausman +2732,Kevin Kiermaier,1,,1039,tier2_name,Automatic match via exact name to Kevin Kiermaier +2733,Kevin McCarthy,1,,1264,tier2_name,Automatic match via exact name to Kevin McCarthy +2734,Kevin Newman,1,,1420,tier2_name,Automatic match via exact name to Kevin Newman +2735,Kevin Pillar,1,,1557,tier2_name,Automatic match via exact name to Kevin Pillar +2736,Kevin Plawecki,1,,1565,tier2_name,Automatic match via exact name to Kevin Plawecki +2737,Khris Davis,1,,469,tier2_name,Automatic match via exact name to Khris Davis +2738,Kirby Yates,1,,2211,tier2_name,Automatic match via exact name to Kirby Yates +2739,Kohl Stewart,1,,1911,tier2_name,Automatic match via exact name to Kohl Stewart +2740,Kole Calhoun,1,,306,tier2_name,Automatic match via exact name to Kole Calhoun +2741,Kolten Wong,1,,2188,tier2_name,Automatic match via exact name to Kolten Wong +2742,Kris Bryant,1,,273,tier2_name,Automatic match via exact name to Kris Bryant +2743,Kurt Suzuki,1,,1945,tier2_name,Automatic match via exact name to Kurt Suzuki +2744,Kyle Barraclough,1,,136,tier2_name,Automatic match via exact name to Kyle Barraclough +2745,Kyle Crick,1,,435,tier2_name,Automatic match via exact name to Kyle Crick +2746,Kyle Freeland,1,,650,tier2_name,Automatic match via exact name to Kyle Freeland +2747,Kyle Gibson,1,,715,tier2_name,Automatic match via exact name to Kyle Gibson +2748,Kyle Hendricks,1,,856,tier2_name,Automatic match via exact name to Kyle Hendricks +2749,Kyle Schwarber,1,,1784,tier2_name,Automatic match via exact name to Kyle Schwarber +2750,Kyle Seager,1,,1793,tier2_name,Automatic match via exact name to Kyle Seager +2751,Lance Lynn,1,,1173,tier2_name,Automatic match via exact name to Lance Lynn +2752,Lance McCullers Jr,1,,1271,tier2_name,Automatic match via exact name to Lance McCullers Jr +2753,Leonys Martin,1,,1215,tier2_name,Automatic match via exact name to Leonys Martin +2754,Leury Garcia,1,,679,tier2_name,Automatic match via exact name to Leury Garcia +2755,Lewis Brinson,1,,258,tier2_name,Automatic match via exact name to Lewis Brinson +2756,Logan Forsythe,1,,636,tier2_name,Automatic match via exact name to Logan Forsythe +2757,Logan Morrison,1,,1373,tier2_name,Automatic match via exact name to Logan Morrison +2758,Lorenzo Cain,1,,305,tier2_name,Automatic match via exact name to Lorenzo Cain +2759,Lou Trivino,1,,2016,tier2_name,Automatic match via exact name to Lou Trivino +2760,Louis Coleman,1,,400,tier2_name,Automatic match via exact name to Louis Coleman +2761,Lourdes Gurriel Jr,1,,794,tier2_name,Automatic match via exact name to Lourdes Gurriel Jr +2762,Lucas Giolito,1,,724,tier2_name,Automatic match via exact name to Lucas Giolito +2763,Luis Castillo,1,,344,tier2_name,Automatic match via exact name to Luis Castillo +2764,Luis Garcia,1,,694,tier2_name,Automatic match via exact name to Luis Garcia Jr +2765,Luis Perdomo,1,,1529,tier2_name,Automatic match via exact name to Luis Perdomo +2766,Luis Severino,1,,1805,tier2_name,Automatic match via exact name to Luis Severino +2767,Luis Valbuena,1,,2045,tier2_name,Automatic match via exact name to Luis Valbuena +2768,Luke Jackson,1,,960,tier2_name,Automatic match via exact name to Luke Jackson +2769,Luke Maile,1,,1185,tier2_name,Automatic match via exact name to Luke Maile +2770,Luke Voit,1,,2087,tier2_name,Automatic match via exact name to Luke Voit +2771,Luke Weaver,1,,2124,tier2_name,Automatic match via exact name to Luke Weaver +2772,Madison Bumgarner,1,,278,tier2_name,Automatic match via exact name to Madison Bumgarner +2773,Magneuris Sierra,1,,1823,tier2_name,Automatic match via exact name to Magneuris Sierra +2774,Maikel Franco,1,,645,tier2_name,Automatic match via exact name to Maikel Franco +2775,Mallex Smith,1,,1846,tier2_name,Automatic match via exact name to Mallex Smith +2776,Manny Machado,1,,1175,tier2_name,Automatic match via exact name to Manny Machado +2777,Manny Pina,1,,1558,tier2_name,Automatic match via exact name to Manny Pina +2778,Manuel Margot,1,,1198,tier2_name,Automatic match via exact name to Manuel Margot +2779,Marcell Ozuna,1,,1481,tier2_name,Automatic match via exact name to Marcell Ozuna +2780,Marco Estrada,1,,586,tier2_name,Automatic match via exact name to Marco Estrada +2781,Marco Gonzales,1,,735,tier2_name,Automatic match via exact name to Marco Gonzales +2782,Marcus Semien,1,,1799,tier2_name,Automatic match via exact name to Marcus Semien +2783,Marcus Stroman,1,,1928,tier2_name,Automatic match via exact name to Marcus Stroman +2784,Mark Canha,1,,316,tier2_name,Automatic match via exact name to Mark Canha +2785,Mark Melancon,1,,1298,tier2_name,Automatic match via exact name to Mark Melancon +2786,Mark Reynolds,1,,1639,tier2_name,Automatic match via exact name to Mark Reynolds +2787,Mark Trumbo,1,,2020,tier2_name,Automatic match via exact name to Mark Trumbo +2788,Martin Maldonado,1,,1187,tier2_name,Automatic match via exact name to Martin Maldonado +2789,Martin Perez,1,,1535,tier2_name,Automatic match via exact name to Martin Perez +2790,Martin Prado,1,,1582,tier2_name,Automatic match via exact name to Martin Prado +2791,Marwin Gonzalez,1,,741,tier2_name,Automatic match via exact name to Marwin Gonzalez +2792,Masahiro Tanaka,1,,1955,tier2_name,Automatic match via exact name to Masahiro Tanaka +2793,Mason Williams,1,,2154,tier2_name,Automatic match via exact name to Mason Williams +2794,Matt Adams,1,,15,tier2_name,Automatic match via exact name to Matt Adams +2795,Matt Barnes,1,,131,tier2_name,Automatic match via exact name to Matt Barnes +2796,Matt Belisle,1,,167,tier2_name,Automatic match via exact name to Matt Belisle +2797,Matt Carpenter,1,,329,tier2_name,Automatic match via exact name to Matt Carpenter +2798,Matt Chapman,1,,367,tier2_name,Automatic match via exact name to Matt Chapman +2799,Matt Davidson,1,,463,tier2_name,Automatic match via exact name to Matt Davidson +2800,Matt Duffy,1,,542,tier2_name,Automatic match via exact name to Matt Duffy +2801,Matt Grace,1,,760,tier2_name,Automatic match via exact name to Matt Grace +2802,Matt Harvey,1,,835,tier2_name,Automatic match via exact name to Matt Harvey +2803,Matt Kemp,1,,1026,tier2_name,Automatic match via exact name to Matt Kemp +2804,Matt Koch,1,,1066,tier2_name,Automatic match via exact name to Matt Koch +2805,Matt Magill,1,,1182,tier2_name,Automatic match via exact name to Matt Magill +2806,Matt Moore,1,,1357,tier2_name,Automatic match via exact name to Matt Moore +2807,Matt Olson,1,,1461,tier2_name,Automatic match via exact name to Matt Olson +2808,Matt Strahm,1,,1918,tier2_name,Automatic match via exact name to Matt Strahm +2809,Matt Wieters,1,,2152,tier2_name,Automatic match via exact name to Matt Wieters +2810,Matthew Boyd,1,,230,tier2_name,Automatic match via exact name to Matthew Boyd +2811,Matthew Joyce,1,,999,tier2_name,Automatic match via exact name to Matthew Joyce +2812,Max Kepler,1,,1031,tier2_name,Automatic match via exact name to Max Kepler +2813,Max Muncy,1,,1382,tier2_name,Automatic match via exact name to Max Muncy +2814,Max Scherzer,1,,1773,tier2_name,Automatic match via exact name to Max Scherzer +2815,Max Stassi,1,,1896,tier2_name,Automatic match via exact name to Max Stassi +2816,Melky Cabrera,1,,300,tier2_name,Automatic match via exact name to Melky Cabrera +2817,Michael A Taylor,1,,1963,manual_existing,Manual match to existing SbaPlayer: Michael Taylor +2818,Michael Brantley,1,,240,tier2_name,Automatic match via exact name to Michael Brantley +2819,Michael Conforto,1,,407,tier2_name,Automatic match via exact name to Michael Conforto +2820,Michael Feliz,1,,602,tier2_name,Automatic match via exact name to Michael Feliz +2821,Michael Fulmer,1,,666,tier2_name,Automatic match via exact name to Michael Fulmer +2822,Michael Lorenzen,1,,1151,tier2_name,Automatic match via exact name to Michael Lorenzen +2823,Michael Perez,1,,1539,tier2_name,Automatic match via exact name to Michael Perez +2824,Michael Wacha,1,,2093,tier2_name,Automatic match via exact name to Michael Wacha +2825,Miguel Andujar,1,,78,tier2_name,Automatic match via exact name to Miguel Andujar +2826,Miguel Cabrera,1,,298,tier2_name,Automatic match via exact name to Miguel Cabrera +2827,Miguel Castro,1,,350,tier2_name,Automatic match via exact name to Miguel Castro +2828,Miguel Rojas,1,,1694,tier2_name,Automatic match via exact name to Miguel Rojas +2829,Miguel Sano,1,,1757,tier2_name,Automatic match via exact name to Miguel Sano +2830,Mike Clevinger,1,,392,tier2_name,Automatic match via exact name to Mike Clevinger +2831,Mike Fiers,1,,615,tier2_name,Automatic match via exact name to Mike Fiers +2832,Mike Foltynewicz,1,,633,tier2_name,Automatic match via exact name to Mike Foltynewicz +2833,Mike Leake,1,,1102,tier2_name,Automatic match via exact name to Mike Leake +2834,Mike Mayers,1,,1251,tier2_name,Automatic match via exact name to Mike Mayers +2835,Mike Minor,1,,1335,tier2_name,Automatic match via exact name to Mike Minor +2836,Mike Montgomery,1,,1355,tier2_name,Automatic match via exact name to Mike Montgomery +2837,Mike Moustakas,1,,1378,tier2_name,Automatic match via exact name to Mike Moustakas +2838,Mike Trout,1,,2019,tier2_name,Automatic match via exact name to Mike Trout +2839,Mike Wright,1,,2199,tier2_name,Automatic match via exact name to Mike Wright +2840,Mike Zunino,1,,2234,tier2_name,Automatic match via exact name to Mike Zunino +2841,Mikie Mahtook,1,,1184,tier2_name,Automatic match via exact name to Mikie Mahtook +2842,Miles Mikolas,1,,1317,tier2_name,Automatic match via exact name to Miles Mikolas +2843,Mitch Garver,1,,702,tier2_name,Automatic match via exact name to Mitch Garver +2844,Mitch Haniger,1,,818,tier2_name,Automatic match via exact name to Mitch Haniger +2845,Mitch Moreland,1,,1365,tier2_name,Automatic match via exact name to Mitch Moreland +2846,Mookie Betts,1,,187,tier2_name,Automatic match via exact name to Mookie Betts +2847,Mychal Givens,1,,725,tier2_name,Automatic match via exact name to Mychal Givens +2848,Nate Jones,1,,990,tier2_name,Automatic match via exact name to Nate Jones +2849,Nathan Eovaldi,1,,576,tier2_name,Automatic match via exact name to Nathan Eovaldi +2850,Neil Ramirez,1,,1603,tier2_name,Automatic match via exact name to Neil Ramirez +2851,Neil Walker,1,,2103,tier2_name,Automatic match via exact name to Neil Walker +2852,Nelson Cruz,1,,447,tier2_name,Automatic match via exact name to Nelson Cruz +2853,Nicholas Castellanos,1,,340,tier2_name,Automatic match via exact name to Nicholas Castellanos +2854,Nick Ahmed,1,,26,tier2_name,Automatic match via exact name to Nick Ahmed +2855,Nick Hundley,1,,940,tier2_name,Automatic match via exact name to Nick Hundley +2856,Nick Kingham,1,,1049,tier2_name,Automatic match via exact name to Nick Kingham +2857,Nick Markakis,1,,1201,tier2_name,Automatic match via exact name to Nick Markakis +2858,Nick Martini,1,,1230,tier2_name,Automatic match via exact name to Nick Martini +2859,Nick Pivetta,1,,1564,tier2_name,Automatic match via exact name to Nick Pivetta +2860,Nick Tropeano,1,,2018,tier2_name,Automatic match via exact name to Nick Tropeano +2861,Nick Vincent,1,,2082,tier2_name,Automatic match via exact name to Nick Vincent +2862,Nick Williams,1,,2157,tier2_name,Automatic match via exact name to Nick Williams +2863,Nicky Delmonico,1,,488,tier2_name,Automatic match via exact name to Nicky Delmonico +2864,Niko Goodrum,1,,748,tier2_name,Automatic match via exact name to Niko Goodrum +2865,Noah Syndergaard,1,,1953,tier2_name,Automatic match via exact name to Noah Syndergaard +2866,Noe Ramirez,1,,1606,tier2_name,Automatic match via exact name to Noe Ramirez +2867,Noel Cuevas,1,,452,tier2_name,Automatic match via exact name to Noel Cuevas +2868,Nolan Arenado,1,,88,tier2_name,Automatic match via exact name to Nolan Arenado +2869,Nomar Mazara,1,,1254,tier2_name,Automatic match via exact name to Nomar Mazara +2870,Odubel Herrera,1,,882,tier2_name,Automatic match via exact name to Odubel Herrera +2871,Oliver Drake,1,,534,tier2_name,Automatic match via exact name to Oliver Drake +2872,Oliver Perez,1,,1533,tier2_name,Automatic match via exact name to Oliver Perez +2873,Omar Narvaez,1,,1401,tier2_name,Automatic match via exact name to Omar Narvaez +2874,Orlando Arcia,1,,86,tier2_name,Automatic match via exact name to Orlando Arcia +2875,Ozzie Albies,1,,31,tier2_name,Automatic match via exact name to Ozzie Albies +2876,Pablo Lopez,1,,1146,tier2_name,Automatic match via exact name to Pablo Lopez +2877,Pablo Sandoval,1,,1753,tier2_name,Automatic match via exact name to Pablo Sandoval +2878,Pat Valaika,1,,2044,tier2_name,Automatic match via exact name to Pat Valaika +2879,Patrick Corbin,1,,416,tier2_name,Automatic match via exact name to Patrick Corbin +2880,Paul DeJong,1,,485,tier2_name,Automatic match via exact name to Paul DeJong +2881,Paul Fry,1,,662,tier2_name,Automatic match via exact name to Paul Fry +2882,Paul Goldschmidt,1,,729,tier2_name,Automatic match via exact name to Paul Goldschmidt +2883,Paul Sewald,1,,1806,tier2_name,Automatic match via exact name to Paul Sewald +2884,Pedro Baez,1,,111,tier2_name,Automatic match via exact name to Pedro Baez +2885,Pedro Severino,1,,1804,tier2_name,Automatic match via exact name to Pedro Severino +2886,Pedro Strop,1,,1929,tier2_name,Automatic match via exact name to Pedro Strop +2887,Phil Ervin,1,,579,tier2_name,Automatic match via exact name to Phil Ervin +2888,Phil Maton,1,,1238,tier2_name,Automatic match via exact name to Phil Maton +2889,Pierce Johnson,1,,985,tier2_name,Automatic match via exact name to Pierce Johnson +2890,Preston Tucker,1,,2024,tier2_name,Automatic match via exact name to Preston Tucker +2891,Rafael Devers,1,,499,tier2_name,Automatic match via exact name to Rafael Devers +2892,Rafael Ortega,1,,1465,tier2_name,Automatic match via exact name to Rafael Ortega +2893,Raisel Iglesias,1,,950,tier2_name,Automatic match via exact name to Raisel Iglesias +2894,Rajai Davis,1,,466,tier2_name,Automatic match via exact name to Rajai Davis +2895,Ramon Laureano,1,,1097,tier2_name,Automatic match via exact name to Ramon Laureano +2896,Randal Grichuk,1,,775,tier2_name,Automatic match via exact name to Randal Grichuk +2897,Renato Nunez,1,,1443,tier2_name,Automatic match via exact name to Renato Nunez +2898,Reyes Moronta,1,,1371,tier2_name,Automatic match via exact name to Reyes Moronta +2899,Reynaldo Lopez,1,,1145,tier2_name,Automatic match via exact name to Reynaldo Lopez +2900,Rhys Hoskins,1,,925,tier2_name,Automatic match via exact name to Rhys Hoskins +2901,Rich Hill,1,,898,tier2_name,Automatic match via exact name to Rich Hill +2902,Richard Bleier,1,,212,tier2_name,Automatic match via exact name to Richard Bleier +2903,Richard Rodriguez,1,,1674,tier2_name,Automatic match via exact name to Richard Rodriguez +2904,Richard Urena,1,,2036,tier2_name,Automatic match via exact name to Richard Urena +2905,Rick Porcello,1,,1577,tier2_name,Automatic match via exact name to Rick Porcello +2906,Robbie Erlin,1,,578,tier2_name,Automatic match via exact name to Robbie Erlin +2907,Robbie Grossman,1,,779,tier2_name,Automatic match via exact name to Robbie Grossman +2908,Robbie Ray,1,,1620,tier2_name,Automatic match via exact name to Robbie Ray +2909,Robert Gsellman,1,,782,tier2_name,Automatic match via exact name to Robert Gsellman +2910,Robert Stock,1,,1912,tier2_name,Automatic match via exact name to Robert Stock +2911,Roberto Perez,1,,1538,tier2_name,Automatic match via exact name to Roberto Perez +2912,Robinson Cano,1,,319,tier2_name,Automatic match via exact name to Robinson Cano +2913,Robinson Chirinos,1,,373,tier2_name,Automatic match via exact name to Robinson Chirinos +2914,Roman Quinn,1,,1595,tier2_name,Automatic match via exact name to Roman Quinn +2915,Ronald Acuna Jr,1,,12,tier2_name,Automatic match via exact name to Ronald Acuna Jr +2916,Ronald Guzman,1,,799,tier2_name,Automatic match via exact name to Ronald Guzman +2917,Ronny Rodriguez,1,,1672,tier2_name,Automatic match via exact name to Ronny Rodriguez +2918,Rosell Herrera,1,,883,tier2_name,Automatic match via exact name to Rosell Herrera +2919,Ross Stripling,1,,1927,tier2_name,Automatic match via exact name to Ross Stripling +2920,Rougned Odor,1,,1451,tier2_name,Automatic match via exact name to Rougned Odor +2921,Russell Martin,1,,1213,tier2_name,Automatic match via exact name to Russell Martin +2922,Ryan Borucki,1,,222,tier2_name,Automatic match via exact name to Ryan Borucki +2923,Ryan Brasier,1,,242,tier2_name,Automatic match via exact name to Ryan Brasier +2924,Ryan Braun,1,,244,tier2_name,Automatic match via exact name to Ryan Braun +2925,Ryan Buchter,1,,276,tier2_name,Automatic match via exact name to Ryan Buchter +2926,Ryan Flaherty,1,,621,tier2_name,Automatic match via exact name to Ryan Flaherty +2927,Ryan LaMarre,1,,1086,tier2_name,Automatic match via exact name to Ryan LaMarre +2928,Ryan Madson,1,,1180,tier2_name,Automatic match via exact name to Ryan Madson +2929,Ryan McMahon,1,,1286,tier2_name,Automatic match via exact name to Ryan McMahon +2930,Ryan OHearn,1,,1453,tier2_name,Automatic match via exact name to Ryan OHearn +2931,Ryan Pressly,1,,1584,tier2_name,Automatic match via exact name to Ryan Pressly +2932,Ryan Rua,1,,1719,tier2_name,Automatic match via exact name to Ryan Rua +2933,Ryan Tepera,1,,1974,tier2_name,Automatic match via exact name to Ryan Tepera +2934,Ryan Yarbrough,1,,2208,tier2_name,Automatic match via exact name to Ryan Yarbrough +2935,Ryan Zimmerman,1,,2229,tier2_name,Automatic match via exact name to Ryan Zimmerman +2936,Ryne Stanek,1,,1892,tier2_name,Automatic match via exact name to Ryne Stanek +2937,Ryon Healy,1,,842,tier2_name,Automatic match via exact name to Ryon Healy +2938,Sal Romano,1,,1700,tier2_name,Automatic match via exact name to Sal Romano +2939,Salvador Perez,1,,1534,tier2_name,Automatic match via exact name to Salvador Perez +2940,Sam Dyson,1,,554,tier2_name,Automatic match via exact name to Sam Dyson +2941,Sam Freeman,1,,653,tier2_name,Automatic match via exact name to Sam Freeman +2942,Sam Gaviglio,1,,707,tier2_name,Automatic match via exact name to Sam Gaviglio +2943,Sammy Solis,1,,1871,tier2_name,Automatic match via exact name to Sammy Solis +2944,Sandy Leon,1,,1115,tier2_name,Automatic match via exact name to Sandy Leon +2945,Scooter Gennett,1,,710,tier2_name,Automatic match via exact name to Scooter Gennett +2946,Scott Alexander,1,,36,tier2_name,Automatic match via exact name to Scott Alexander +2947,Scott Kingery,1,,1048,tier2_name,Automatic match via exact name to Scott Kingery +2948,Scott Oberg,1,,1448,tier2_name,Automatic match via exact name to Scott Oberg +2949,Scott Schebler,1,,1772,tier2_name,Automatic match via exact name to Scott Schebler +2950,Sean Doolittle,1,,528,tier2_name,Automatic match via exact name to Sean Doolittle +2951,Sean Manaea,1,,1189,tier2_name,Automatic match via exact name to Sean Manaea +2952,Sean Newcomb,1,,1419,tier2_name,Automatic match via exact name to Sean Newcomb +2953,Sean Rodriguez,1,,1671,tier2_name,Automatic match via exact name to Sean Rodriguez +2954,Seranthony Dominguez,1,,524,tier2_name,Automatic match via exact name to Seranthony Dominguez +2955,Sergio Romo,1,,1705,tier2_name,Automatic match via exact name to Sergio Romo +2956,Seth Lugo,1,,1165,tier2_name,Automatic match via exact name to Seth Lugo +2957,Shane Bieber,1,,194,tier2_name,Automatic match via exact name to Shane Bieber +2958,Shane Carle,1,,326,tier2_name,Automatic match via exact name to Shane Carle +2959,Shane Greene,1,,769,tier2_name,Automatic match via exact name to Shane Greene +2960,Shin Soo Choo,1,,378,tier2_name,Automatic match via exact name to Shin Soo Choo +2961,Shohei Ohtani,1,,1455,tier2_name,Automatic match via exact name to Shohei Ohtani +2962,Sonny Gray,1,,765,tier2_name,Automatic match via exact name to Sonny Gray +2963,Spencer Kieboom,1,,1037,tier2_name,Automatic match via exact name to Spencer Kieboom +2964,Starlin Castro,1,,348,tier2_name,Automatic match via exact name to Starlin Castro +2965,Starling Marte,1,,1208,tier2_name,Automatic match via exact name to Starling Marte +2966,Stephen Piscotty,1,,1563,tier2_name,Automatic match via exact name to Stephen Piscotty +2967,Stephen Strasburg,1,,1921,tier2_name,Automatic match via exact name to Stephen Strasburg +2968,Steve Cishek,1,,381,tier2_name,Automatic match via exact name to Steve Cishek +2969,Steve Pearce,1,,1512,tier2_name,Automatic match via exact name to Steve Pearce +2970,Steven Brault,1,,243,tier2_name,Automatic match via exact name to Steven Brault +2971,Steven Duggar,1,,543,tier2_name,Automatic match via exact name to Steven Duggar +2972,Steven Matz,1,,1243,tier2_name,Automatic match via exact name to Steven Matz +2973,Steven Souza Jr,1,,1881,tier2_name,Automatic match via exact name to Steven Souza Jr +2974,TJ McFarland,1,,1273,tier2_name,Automatic match via exact name to TJ McFarland +2975,Tanner Roark,1,,1659,tier2_name,Automatic match via exact name to Tanner Roark +2976,Tanner Scott,1,,1788,tier2_name,Automatic match via exact name to Tanner Scott +2977,Taylor Rogers,1,,1689,tier2_name,Automatic match via exact name to Taylor Rogers +2978,Taylor Ward,1,,2116,tier2_name,Automatic match via exact name to Taylor Ward +2979,Taylor Williams,1,,2155,tier2_name,Automatic match via exact name to Taylor Williams +2980,Tayron Guerrero,1,,788,tier2_name,Automatic match via exact name to Tayron Guerrero +2981,Teoscar Hernandez,1,,873,tier2_name,Automatic match via exact name to Teoscar Hernandez +2982,Thomas Pannone,1,,1494,tier2_name,Automatic match via exact name to Thomas Pannone +2983,Tim Anderson,1,,73,tier2_name,Automatic match via exact name to Tim Anderson +2984,Tim Beckham,1,,161,tier2_name,Automatic match via exact name to Tim Beckham +2985,Tim Collins,1,,402,tier2_name,Automatic match via exact name to Tim Collins +2986,Tim Hill,1,,900,tier2_name,Automatic match via exact name to Tim Hill +2987,Tim Mayza,1,,1253,tier2_name,Automatic match via exact name to Tim Mayza +2988,Todd Frazier,1,,647,tier2_name,Automatic match via exact name to Todd Frazier +2989,Tom Murphy,1,,1388,tier2_name,Automatic match via exact name to Tom Murphy +2990,Tommy Hunter,1,,941,tier2_name,Automatic match via exact name to Tommy Hunter +2991,Tommy La Stella,1,,1082,tier2_name,Automatic match via exact name to Tommy La Stella +2992,Tommy Pham,1,,1552,tier2_name,Automatic match via exact name to Tommy Pham +2993,Tony Kemp,1,,1027,tier2_name,Automatic match via exact name to Tony Kemp +2994,Tony Sipp,1,,1829,tier2_name,Automatic match via exact name to Tony Sipp +2995,Tony Watson,1,,2122,tier2_name,Automatic match via exact name to Tony Watson +2996,Tony Wolters,1,,2187,tier2_name,Automatic match via exact name to Tony Wolters +2997,Travis Jankowski,1,,967,tier2_name,Automatic match via exact name to Travis Jankowski +2998,Travis Shaw,1,,1809,tier2_name,Automatic match via exact name to Travis Shaw +2999,Trea Turner,1,,1,tier2_name,Automatic match via exact name to Trea Turner +3000,Trevor Bauer,1,,150,tier2_name,Automatic match via exact name to Trevor Bauer +3001,Trevor Cahill,1,,304,tier2_name,Automatic match via exact name to Trevor Cahill +3002,Trevor Hildenberger,1,,897,tier2_name,Automatic match via exact name to Trevor Hildenberger +3003,Trevor May,1,,1248,tier2_name,Automatic match via exact name to Trevor May +3004,Trevor Richards,1,,1646,tier2_name,Automatic match via exact name to Trevor Richards +3005,Trevor Story,1,,1914,tier2_name,Automatic match via exact name to Trevor Story +3006,Trevor Williams,1,,2156,tier2_name,Automatic match via exact name to Trevor Williams +3007,Trey Mancini,1,,1190,tier2_name,Automatic match via exact name to Trey Mancini +3008,Tucker Barnhart,1,,135,tier2_name,Automatic match via exact name to Tucker Barnhart +3009,Ty Blach,1,,202,tier2_name,Automatic match via exact name to Ty Blach +3010,Tyler Anderson,1,,68,tier2_name,Automatic match via exact name to Tyler Anderson +3011,Tyler Austin,1,,103,tier2_name,Automatic match via exact name to Tyler Austin +3012,Tyler Bashlor,1,,144,tier2_name,Automatic match via exact name to Tyler Bashlor +3013,Tyler Chatwood,1,,369,tier2_name,Automatic match via exact name to Tyler Chatwood +3014,Tyler Clippard,1,,393,tier2_name,Automatic match via exact name to Tyler Clippard +3015,Tyler Flowers,1,,630,tier2_name,Automatic match via exact name to Tyler Flowers +3016,Tyler Glasnow,1,,726,tier2_name,Automatic match via exact name to Tyler Glasnow +3017,Tyler Mahle,1,,1183,tier2_name,Automatic match via exact name to Tyler Mahle +3018,Tyler Olson,1,,1460,tier2_name,Automatic match via exact name to Tyler Olson +3019,Tyler ONeill,1,,1463,tier2_name,Automatic match via exact name to Tyler ONeill +3020,Tyler Skaggs,1,,1832,tier2_name,Automatic match via exact name to Tyler Skaggs +3021,Tyler White,1,,2141,tier2_name,Automatic match via exact name to Tyler White +3022,Tyson Ross,1,,1714,tier2_name,Automatic match via exact name to Tyson Ross +3023,Victor Arano,1,,83,tier2_name,Automatic match via exact name to Victor Arano +3024,Victor Caratini,1,,325,tier2_name,Automatic match via exact name to Victor Caratini +3025,Victor Martinez,1,,1221,tier2_name,Automatic match via exact name to Victor Martinez +3026,Victor Reyes,1,,1638,tier2_name,Automatic match via exact name to Victor Reyes +3027,Vince Velasquez,1,,2065,tier2_name,Automatic match via exact name to Vince Velasquez +3028,Wade Davis,1,,468,tier2_name,Automatic match via exact name to Wade Davis +3029,Wade LeBlanc,1,,1104,tier2_name,Automatic match via exact name to Wade LeBlanc +3030,Wade Miley,1,,1318,tier2_name,Automatic match via exact name to Wade Miley +3031,Walker Buehler,1,,277,tier2_name,Automatic match via exact name to Walker Buehler +3032,Wander Suero,1,,1940,tier2_name,Automatic match via exact name to Wander Suero +3033,Wandy Peralta,1,,1524,tier2_name,Automatic match via exact name to Wandy Peralta +3034,Wei Yin Chen,1,,372,tier2_name,Automatic match via exact name to Wei Yin Chen +3035,Welington Castillo,1,,343,tier2_name,Automatic match via exact name to Welington Castillo +3036,Whit Merrifield,1,,1309,tier2_name,Automatic match via exact name to Whit Merrifield +3037,Wil Myers,1,,1395,tier2_name,Automatic match via exact name to Wil Myers +3038,Will Harris,1,,825,tier2_name,Automatic match via exact name to Will Harris +3039,Will Smith,1,,1843,manual_existing,Manual match to existing SbaPlayer: Will Smith +3040,Willie Calhoun,1,,307,tier2_name,Automatic match via exact name to Willie Calhoun +3041,Willson Contreras,1,,410,tier2_name,Automatic match via exact name to Willson Contreras +3042,Willy Adames,1,,14,tier2_name,Automatic match via exact name to Willy Adames +3043,Wilmer Difo,1,,516,tier2_name,Automatic match via exact name to Wilmer Difo +3044,Wilmer Flores,1,,627,tier2_name,Automatic match via exact name to Wilmer Flores +3045,Wily Peralta,1,,1523,tier2_name,Automatic match via exact name to Wily Peralta +3046,Xander Bogaerts,1,,216,tier2_name,Automatic match via exact name to Xander Bogaerts +3047,Yacksel Rios,1,,1650,tier2_name,Automatic match via exact name to Yacksel Rios +3048,Yadiel Rivera,1,,1656,tier2_name,Automatic match via exact name to Yadiel Rivera +3049,Yadier Molina,1,,1344,tier2_name,Automatic match via exact name to Yadier Molina +3050,Yairo Munoz,1,,1383,tier2_name,Automatic match via exact name to Yairo Munoz +3051,Yan Gomes,1,,731,tier2_name,Automatic match via exact name to Yan Gomes +3052,Yangervis Solarte,1,,1869,tier2_name,Automatic match via exact name to Yangervis Solarte +3053,Yasiel Puig,1,,1590,tier2_name,Automatic match via exact name to Yasiel Puig +3054,Yasmani Grandal,1,,761,tier2_name,Automatic match via exact name to Yasmani Grandal +3055,Yefry Ramirez,1,,1607,tier2_name,Automatic match via exact name to Yefry Ramirez +3056,Yoan Moncada,1,,1348,tier2_name,Automatic match via exact name to Yoan Moncada +3057,Yoenis Cespedes,1,,360,tier2_name,Automatic match via exact name to Yoenis Cespedes +3058,Yolmer Sanchez,1,,1744,tier2_name,Automatic match via exact name to Yolmer Sanchez +3059,Yonder Alonso,1,,52,tier2_name,Automatic match via exact name to Yonder Alonso +3060,Yonny Chirinos,1,,374,tier2_name,Automatic match via exact name to Yonny Chirinos +3061,Yoshihisa Hirano,1,,904,tier2_name,Automatic match via exact name to Yoshihisa Hirano +3062,Yovani Gallardo,1,,671,tier2_name,Automatic match via exact name to Yovani Gallardo +3063,Yuli Gurriel,1,,793,tier2_name,Automatic match via exact name to Yuli Gurriel +3064,Yusmeiro Petit,1,,1549,tier2_name,Automatic match via exact name to Yusmeiro Petit +3065,Zach Duke,1,,545,tier2_name,Automatic match via exact name to Zach Duke +3066,Zach Eflin,1,,562,tier2_name,Automatic match via exact name to Zach Eflin +3067,Zack Britton,1,,260,tier2_name,Automatic match via exact name to Zack Britton +3068,Zack Cozart,1,,428,tier2_name,Automatic match via exact name to Zack Cozart +3069,Zack Godley,1,,727,tier2_name,Automatic match via exact name to Zack Godley +3070,Zack Greinke,1,,774,tier2_name,Automatic match via exact name to Zack Greinke +3071,Zack Wheeler,1,,2139,tier2_name,Automatic match via exact name to Zack Wheeler +1,AJ Cole,2,,399,tier2_name,Automatic match via exact name to AJ Cole +2,AJ Minter,2,,1336,tier2_name,Automatic match via exact name to AJ Minter +3,AJ Pollock,2,,1571,tier2_name,Automatic match via exact name to AJ Pollock +4,Aaron Altherr,2,,55,tier2_name,Automatic match via exact name to Aaron Altherr +5,Aaron Brooks,2,,262,tier2_name,Automatic match via exact name to Aaron Brooks +6,Aaron Bummer,2,,279,tier2_name,Automatic match via exact name to Aaron Bummer +7,Aaron Civale,2,,383,tier2_name,Automatic match via exact name to Aaron Civale +8,Aaron Hicks,2,,892,tier2_name,Automatic match via exact name to Aaron Hicks +9,Aaron Judge,2,,3,tier2_name,Automatic match via exact name to Aaron Judge +10,Aaron Nola,2,,1433,tier2_name,Automatic match via exact name to Aaron Nola +11,Aaron Sanchez,2,,1745,tier2_name,Automatic match via exact name to Aaron Sanchez +12,Abraham Toro,2,,2001,tier2_name,Automatic match via exact name to Abraham Toro +13,Adalberto Mejia,2,,1296,tier2_name,Automatic match via exact name to Adalberto Mejia +14,Adalberto Mondesi,2,,1349,tier2_name,Automatic match via exact name to Adalberto Mondesi +15,Adam Cimber,2,,380,tier2_name,Automatic match via exact name to Adam Cimber +16,Adam Conley,2,,409,tier2_name,Automatic match via exact name to Adam Conley +17,Adam Duvall,2,,553,tier2_name,Automatic match via exact name to Adam Duvall +18,Adam Eaton,2,,556,tier2_name,Automatic match via exact name to Adam Eaton +19,Adam Engel,2,,574,tier2_name,Automatic match via exact name to Adam Engel +20,Adam Frazier,2,,648,tier2_name,Automatic match via exact name to Adam Frazier +21,Adam Haseley,2,,837,tier2_name,Automatic match via exact name to Adam Haseley +22,Adam Jones,2,,989,tier2_name,Automatic match via exact name to Adam Jones +23,Adam Kolarek,2,,1069,tier2_name,Automatic match via exact name to Adam Kolarek +24,Adam Morgan,2,,1368,tier2_name,Automatic match via exact name to Adam Morgan +25,Adam Ottavino,2,,1475,tier2_name,Automatic match via exact name to Adam Ottavino +26,Adam Plutko,2,,1567,tier2_name,Automatic match via exact name to Adam Plutko +27,Adam Wainwright,2,,2099,tier2_name,Automatic match via exact name to Adam Wainwright +28,Adam Warren,2,,2118,tier2_name,Automatic match via exact name to Adam Warren +29,Addison Russell,2,,1728,tier2_name,Automatic match via exact name to Addison Russell +30,Adeiny Hechavarria,2,,847,tier2_name,Automatic match via exact name to Adeiny Hechavarria +31,Adrian Houser,2,,928,tier2_name,Automatic match via exact name to Adrian Houser +32,Adrian Sampson,2,,1742,tier2_name,Automatic match via exact name to Adrian Sampson +33,Albert Almora,2,,51,tier2_name,Automatic match via exact name to Albert Almora Jr +34,Albert Pujols,2,,1591,tier2_name,Automatic match via exact name to Albert Pujols +35,Alec Mills,2,,1330,tier2_name,Automatic match via exact name to Alec Mills +36,Aledmys Diaz,2,,505,tier2_name,Automatic match via exact name to Aledmys Diaz +37,Alex Avila,2,,104,tier2_name,Automatic match via exact name to Alex Avila +38,Alex Bregman,2,,248,tier2_name,Automatic match via exact name to Alex Bregman +39,Alex Claudio,2,,387,tier2_name,Automatic match via exact name to Alex Claudio +40,Alex Colome,2,,404,tier2_name,Automatic match via exact name to Alex Colome +41,Alex Dickerson,2,,512,tier2_name,Automatic match via exact name to Alex Dickerson +42,Alex Gordon,2,,751,tier2_name,Automatic match via exact name to Alex Gordon +43,Alex McRae,2,,1288,tier2_name,Automatic match via exact name to Alex McRae +44,Alex Verdugo,2,,2069,tier2_name,Automatic match via exact name to Alex Verdugo +45,Alex Wood,2,,2193,tier2_name,Automatic match via exact name to Alex Wood +46,Alex Young,2,,2217,tier2_name,Automatic match via exact name to Alex Young +47,Amed Rosario,2,,1711,tier2_name,Automatic match via exact name to Amed Rosario +48,Amir Garrett,2,,698,tier2_name,Automatic match via exact name to Amir Garrett +49,Andrelton Simmons,2,,1825,tier2_name,Automatic match via exact name to Andrelton Simmons +50,Andrew Benintendi,2,,177,tier2_name,Automatic match via exact name to Andrew Benintendi +51,Andrew Cashner,2,,336,tier2_name,Automatic match via exact name to Andrew Cashner +52,Andrew Chafin,2,,363,tier2_name,Automatic match via exact name to Andrew Chafin +53,Andrew Heaney,2,,843,tier2_name,Automatic match via exact name to Andrew Heaney +54,Andrew Kittredge,2,,1057,tier2_name,Automatic match via exact name to Andrew Kittredge +55,Andrew Knapp,2,,1062,tier2_name,Automatic match via exact name to Andrew Knapp +56,Andrew McCutchen,2,,1272,tier2_name,Automatic match via exact name to Andrew McCutchen +57,Andrew Miller,2,,1320,tier2_name,Automatic match via exact name to Andrew Miller +58,Andrew Suarez,2,,1935,tier2_name,Automatic match via exact name to Andrew Suarez +59,Anibal Sanchez,2,,1743,tier2_name,Automatic match via exact name to Anibal Sanchez +60,Anthony Bass,2,,145,tier2_name,Automatic match via exact name to Anthony Bass +61,Anthony DeSclafani,2,,493,tier2_name,Automatic match via exact name to Anthony DeSclafani +62,Anthony Rendon,2,,1630,tier2_name,Automatic match via exact name to Anthony Rendon +63,Anthony Rizzo,2,,1658,tier2_name,Automatic match via exact name to Anthony Rizzo +64,Anthony Santander,2,,1764,tier2_name,Automatic match via exact name to Anthony Santander +65,Anthony Swarzak,2,,1950,tier2_name,Automatic match via exact name to Anthony Swarzak +66,Antonio Senzatela,2,,1801,tier2_name,Automatic match via exact name to Antonio Senzatela +67,Archie Bradley,2,,236,tier2_name,Automatic match via exact name to Archie Bradley +68,Ariel Jurado,2,,1005,tier2_name,Automatic match via exact name to Ariel Jurado +69,Aristides Aquino,2,,81,tier2_name,Automatic match via exact name to Aristides Aquino +70,Aroldis Chapman,2,,366,tier2_name,Automatic match via exact name to Aroldis Chapman +71,Asdrubal Cabrera,2,,299,tier2_name,Automatic match via exact name to Asdrubal Cabrera +72,Asher Wojciechowski,2,,2186,tier2_name,Automatic match via exact name to Asher Wojciechowski +73,Austin Adams,2,,16,tier2_name,Automatic match via exact name to Austin Adams +74,Austin Allen,2,,47,tier2_name,Automatic match via exact name to Austin Allen +75,Austin Barnes,2,,132,tier2_name,Automatic match via exact name to Austin Barnes +76,Austin Brice,2,,253,tier2_name,Automatic match via exact name to Austin Brice +77,Austin Dean,2,,483,tier2_name,Automatic match via exact name to Austin Dean +78,Austin Hays,2,,839,tier2_name,Automatic match via exact name to Austin Hays +79,Austin Hedges,2,,848,tier2_name,Automatic match via exact name to Austin Hedges +80,Austin Meadows,2,,1290,tier2_name,Automatic match via exact name to Austin Meadows +81,Austin Nola,2,,1432,tier2_name,Automatic match via exact name to Austin Nola +82,Austin Pruitt,2,,1588,tier2_name,Automatic match via exact name to Austin Pruitt +83,Austin Riley,2,,1649,tier2_name,Automatic match via exact name to Austin Riley +84,Austin Romine,2,,1704,tier2_name,Automatic match via exact name to Austin Romine +85,Austin Slater,2,,1838,tier2_name,Automatic match via exact name to Austin Slater +86,Austin Voth,2,,2091,tier2_name,Automatic match via exact name to Austin Voth +87,Austin Wynns,2,,2202,tier2_name,Automatic match via exact name to Austin Wynns +88,Avisail Garcia,2,,678,tier2_name,Automatic match via exact name to Avisail Garcia +89,Ben Gamel,2,,676,tier2_name,Automatic match via exact name to Ben Gamel +90,Ben Zobrist,2,,2232,tier2_name,Automatic match via exact name to Ben Zobrist +91,Billy Hamilton,2,,810,tier2_name,Automatic match via exact name to Billy Hamilton +92,Billy McKinney,2,,1283,tier2_name,Automatic match via exact name to Billy McKinney +93,Blaine Hardy,2,,822,tier2_name,Automatic match via exact name to Blaine Hardy +94,Blake Parker,2,,1499,tier2_name,Automatic match via exact name to Blake Parker +95,Blake Snell,2,,1861,tier2_name,Automatic match via exact name to Blake Snell +96,Blake Swihart,2,,1952,tier2_name,Automatic match via exact name to Blake Swihart +97,Blake Treinen,2,,2011,tier2_name,Automatic match via exact name to Blake Treinen +98,Bo Bichette,2,,190,tier2_name,Automatic match via exact name to Bo Bichette +99,Brad Boxberger,2,,229,tier2_name,Automatic match via exact name to Brad Boxberger +100,Brad Brach,2,,232,tier2_name,Automatic match via exact name to Brad Brach +101,Brad Hand,2,,816,tier2_name,Automatic match via exact name to Brad Hand +102,Brad Keller,2,,1016,tier2_name,Automatic match via exact name to Brad Keller +103,Brad Miller,2,,1322,tier2_name,Automatic match via exact name to Brad Miller +104,Brad Peacock,2,,1510,tier2_name,Automatic match via exact name to Brad Peacock +105,Brad Wieck,2,,2150,tier2_name,Automatic match via exact name to Brad Wieck +106,Branden Kline,2,,1059,tier2_name,Automatic match via exact name to Branden Kline +107,Brandon Belt,2,,173,tier2_name,Automatic match via exact name to Brandon Belt +108,Brandon Brennan,2,,249,tier2_name,Automatic match via exact name to Brandon Brennan +109,Brandon Crawford,2,,430,tier2_name,Automatic match via exact name to Brandon Crawford +110,Brandon Dixon,2,,520,tier2_name,Automatic match via exact name to Brandon Dixon +111,Brandon Drury,2,,535,tier2_name,Automatic match via exact name to Brandon Drury +112,Brandon Kintzler,2,,1052,tier2_name,Automatic match via exact name to Brandon Kintzler +113,Brandon Lowe,2,,1156,tier2_name,Automatic match via exact name to Brandon Lowe +114,Brandon Nimmo,2,,1425,tier2_name,Automatic match via exact name to Brandon Nimmo +115,Brandon Woodruff,2,,2196,tier2_name,Automatic match via exact name to Brandon Woodruff +116,Brandon Workman,2,,2198,tier2_name,Automatic match via exact name to Brandon Workman +117,Brendan McKay,2,,1280,tier2_name,Automatic match via exact name to Brendan McKay +118,Brendan Rodgers,2,,1668,tier2_name,Automatic match via exact name to Brendan Rodgers +119,Brent Suter,2,,1943,tier2_name,Automatic match via exact name to Brent Suter +120,Brett Anderson,2,,66,tier2_name,Automatic match via exact name to Brett Anderson +121,Brett Gardner,2,,695,tier2_name,Automatic match via exact name to Brett Gardner +122,Brett Martin,2,,1218,tier2_name,Automatic match via exact name to Brett Martin +123,Brett Phillips,2,,1555,tier2_name,Automatic match via exact name to Brett Phillips +124,Brian Anderson,2,,69,tier2_name,Automatic match via exact name to Brian Anderson +125,Brian Dozier,2,,532,tier2_name,Automatic match via exact name to Brian Dozier +126,Brian Flynn,2,,631,tier2_name,Automatic match via exact name to Brian Flynn +127,Brian Goodwin,2,,749,tier2_name,Automatic match via exact name to Brian Goodwin +128,Brian Johnson,2,,986,tier2_name,Automatic match via exact name to Brian Johnson +129,Brian McCann,2,,1260,tier2_name,Automatic match via exact name to Brian McCann +130,Brock Burke,2,,284,tier2_name,Automatic match via exact name to Brock Burke +131,Brock Holt,2,,921,tier2_name,Automatic match via exact name to Brock Holt +132,Brock Stewart,2,,1908,tier2_name,Automatic match via exact name to Brock Stewart +133,Bryan Holaday,2,,911,tier2_name,Automatic match via exact name to Bryan Holaday +134,Bryan Reynolds,2,,1641,tier2_name,Automatic match via exact name to Bryan Reynolds +135,Bryan Shaw,2,,1808,tier2_name,Automatic match via exact name to Bryan Shaw +136,Bryce Harper,2,,823,tier2_name,Automatic match via exact name to Bryce Harper +137,Bubba Starling,2,,1894,tier2_name,Automatic match via exact name to Bubba Starling +138,Buck Farmer,2,,597,tier2_name,Automatic match via exact name to Buck Farmer +139,Buddy Boshers,2,,223,tier2_name,Automatic match via exact name to Buddy Boshers +140,Buster Posey,2,,1578,tier2_name,Automatic match via exact name to Buster Posey +141,Byron Buxton,2,,295,tier2_name,Automatic match via exact name to Byron Buxton +142,CJ Cron,2,,441,tier2_name,Automatic match via exact name to CJ Cron +143,Cal Quantrill,2,,1593,tier2_name,Automatic match via exact name to Cal Quantrill +144,Caleb Ferguson,2,,605,tier2_name,Automatic match via exact name to Caleb Ferguson +145,Caleb Smith,2,,1845,tier2_name,Automatic match via exact name to Caleb Smith +146,Cam Bedrosian,2,,163,tier2_name,Automatic match via exact name to Cam Bedrosian +147,Cam Gallagher,2,,670,tier2_name,Automatic match via exact name to Cam Gallagher +148,Cameron Maybin,2,,1250,tier2_name,Automatic match via exact name to Cameron Maybin +149,Carlos Carrasco,2,,331,tier2_name,Automatic match via exact name to Carlos Carrasco +150,Carlos Correa,2,,420,tier2_name,Automatic match via exact name to Carlos Correa +151,Carlos Estevez,2,,585,tier2_name,Automatic match via exact name to Carlos Estevez +152,Carlos Gomez,2,,732,tier2_name,Automatic match via exact name to Carlos Gomez +153,Carlos Gonzalez,2,,740,tier2_name,Automatic match via exact name to Carlos Gonzalez +154,Carlos Martinez,2,,1223,tier2_name,Automatic match via exact name to Carlos Martinez +155,Carlos Rodon,2,,1670,tier2_name,Automatic match via exact name to Carlos Rodon +156,Carlos Santana,2,,1759,tier2_name,Automatic match via exact name to Carlos Santana +157,Carson Fulmer,2,,667,tier2_name,Automatic match via exact name to Carson Fulmer +158,Carson Kelly,2,,1023,tier2_name,Automatic match via exact name to Carson Kelly +159,Casey Sadler,2,,1736,tier2_name,Automatic match via exact name to Casey Sadler +160,Cavan Biggio,2,,196,tier2_name,Automatic match via exact name to Cavan Biggio +161,CC Sabathia,2,,1734,tier2_name,Automatic match via exact name to CC Sabathia +162,Cedric Mullins,2,,1381,tier2_name,Automatic match via exact name to Cedric Mullins +163,Cesar Hernandez,2,,870,tier2_name,Automatic match via exact name to Cesar Hernandez +164,Cesar Puello,2,,1589,tier2_name,Automatic match via exact name to Cesar Puello +165,Chad Bettis,2,,186,tier2_name,Automatic match via exact name to Chad Bettis +166,Chad Green,2,,768,tier2_name,Automatic match via exact name to Chad Green +167,Chad Pinder,2,,1559,tier2_name,Automatic match via exact name to Chad Pinder +168,Chad Sobotka,2,,1863,tier2_name,Automatic match via exact name to Chad Sobotka +169,Chance Sisco,2,,1831,tier2_name,Automatic match via exact name to Chance Sisco +170,Charlie Blackmon,2,,205,tier2_name,Automatic match via exact name to Charlie Blackmon +171,Charlie Culberson,2,,453,tier2_name,Automatic match via exact name to Charlie Culberson +172,Charlie Morton,2,,1375,tier2_name,Automatic match via exact name to Charlie Morton +173,Charlie Tilson,2,,1991,tier2_name,Automatic match via exact name to Charlie Tilson +174,Chase Anderson,2,,67,tier2_name,Automatic match via exact name to Chase Anderson +175,Chaz Roe,2,,1688,tier2_name,Automatic match via exact name to Chaz Roe +176,Cheslor Cuthbert,2,,456,tier2_name,Automatic match via exact name to Cheslor Cuthbert +177,Chi Chi Gonzalez,2,,737,tier2_name,Automatic match via exact name to Chi Chi Gonzalez +178,Chris Archer,2,,85,tier2_name,Automatic match via exact name to Chris Archer +179,Chris Bassitt,2,,146,tier2_name,Automatic match via exact name to Chris Bassitt +180,Chris Davis,2,,467,tier2_name,Automatic match via exact name to Chris Davis +181,Chris Devenski,2,,498,tier2_name,Automatic match via exact name to Chris Devenski +182,Chris Herrmann,2,,887,tier2_name,Automatic match via exact name to Chris Herrmann +183,Chris Iannetta,2,,947,tier2_name,Automatic match via exact name to Chris Iannetta +184,Chris Martin,2,,1214,tier2_name,Automatic match via exact name to Chris Martin +185,Chris Owings,2,,1480,tier2_name,Automatic match via exact name to Chris Owings +186,Chris Paddack,2,,1483,tier2_name,Automatic match via exact name to Chris Paddack +187,Chris Sale,2,,1739,tier2_name,Automatic match via exact name to Chris Sale +188,Chris Stratton,2,,1922,tier2_name,Automatic match via exact name to Chris Stratton +189,Chris Taylor,2,,1964,tier2_name,Automatic match via exact name to Chris Taylor +190,Christian Vazquez,2,,2063,tier2_name,Automatic match via exact name to Christian Vazquez +191,Christian Walker,2,,2104,tier2_name,Automatic match via exact name to Christian Walker +192,Christian Yelich,2,,2212,tier2_name,Automatic match via exact name to Christian Yelich +193,Christin Stewart,2,,1910,tier2_name,Automatic match via exact name to Christin Stewart +194,Clay Buchholz,2,,275,tier2_name,Automatic match via exact name to Clay Buchholz +195,Clay Holmes,2,,919,tier2_name,Automatic match via exact name to Clay Holmes +196,Clayton Kershaw,2,,1034,tier2_name,Automatic match via exact name to Clayton Kershaw +197,Clayton Richard,2,,1644,tier2_name,Automatic match via exact name to Clayton Richard +198,Clint Frazier,2,,649,tier2_name,Automatic match via exact name to Clint Frazier +199,Cody Bellinger,2,,170,tier2_name,Automatic match via exact name to Cody Bellinger +200,Cody Stashak,2,,1895,tier2_name,Automatic match via exact name to Cody Stashak +201,Cole Hamels,2,,809,tier2_name,Automatic match via exact name to Cole Hamels +202,Cole Irvin,2,,954,tier2_name,Automatic match via exact name to Cole Irvin +203,Cole Tucker,2,,2022,tier2_name,Automatic match via exact name to Cole Tucker +204,Colin Moran,2,,1360,tier2_name,Automatic match via exact name to Colin Moran +205,Colin Poche,2,,1568,tier2_name,Automatic match via exact name to Colin Poche +206,Collin McHugh,2,,1278,tier2_name,Automatic match via exact name to Collin McHugh +207,Colten Brewer,2,,252,tier2_name,Automatic match via exact name to Colten Brewer +208,Corban Joseph,2,,997,tier2_name,Automatic match via exact name to Corban Joseph +209,Corbin Burnes,2,,286,tier2_name,Automatic match via exact name to Corbin Burnes +210,Corey Dickerson,2,,513,tier2_name,Automatic match via exact name to Corey Dickerson +211,Corey Kluber,2,,1060,tier2_name,Automatic match via exact name to Corey Kluber +212,Corey Seager,2,,1794,tier2_name,Automatic match via exact name to Corey Seager +213,Cory Gearrin,2,,708,tier2_name,Automatic match via exact name to Cory Gearrin +214,Cory Spangenberg,2,,1883,tier2_name,Automatic match via exact name to Cory Spangenberg +215,Craig Kimbrel,2,,1043,tier2_name,Automatic match via exact name to Craig Kimbrel +216,Craig Stammen,2,,1891,tier2_name,Automatic match via exact name to Craig Stammen +217,Curt Casali,2,,334,tier2_name,Automatic match via exact name to Curt Casali +218,Curtis Granderson,2,,762,tier2_name,Automatic match via exact name to Curtis Granderson +219,Dakota Hudson,2,,934,tier2_name,Automatic match via exact name to Dakota Hudson +220,Dallas Keuchel,2,,1035,tier2_name,Automatic match via exact name to Dallas Keuchel +221,Dan Otero,2,,1474,tier2_name,Automatic match via exact name to Dan Otero +222,Dan Straily,2,,1919,tier2_name,Automatic match via exact name to Dan Straily +223,Daniel Descalso,2,,492,tier2_name,Automatic match via exact name to Daniel Descalso +224,Daniel Hudson,2,,933,tier2_name,Automatic match via exact name to Daniel Hudson +225,Daniel Mengden,2,,1305,tier2_name,Automatic match via exact name to Daniel Mengden +226,Daniel Murphy,2,,1387,tier2_name,Automatic match via exact name to Daniel Murphy +227,Daniel Norris,2,,1439,tier2_name,Automatic match via exact name to Daniel Norris +228,Daniel Palka,2,,1491,tier2_name,Automatic match via exact name to Daniel Palka +229,Daniel Ponce de Leon,2,,1574,tier2_name,Automatic match via exact name to Daniel Ponce de Leon +230,Daniel Robertson,2,,1663,tier2_name,Automatic match via exact name to Daniel Robertson +231,Daniel Stumpf,2,,1932,tier2_name,Automatic match via exact name to Daniel Stumpf +232,Daniel Vogelbach,2,,2085,tier2_name,Automatic match via exact name to Daniel Vogelbach +233,Danny Duffy,2,,541,tier2_name,Automatic match via exact name to Danny Duffy +234,Danny Jansen,2,,969,tier2_name,Automatic match via exact name to Danny Jansen +235,Danny Santana,2,,1760,tier2_name,Automatic match via exact name to Danny Santana +236,Dansby Swanson,2,,1947,tier2_name,Automatic match via exact name to Dansby Swanson +237,Dario Agrazal,2,,23,tier2_name,Automatic match via exact name to Dario Agrazal +238,Darwinzon Hernandez,2,,877,tier2_name,Automatic match via exact name to Darwinzon Hernandez +239,David Bote,2,,224,tier2_name,Automatic match via exact name to David Bote +240,David Dahl,2,,457,tier2_name,Automatic match via exact name to David Dahl +241,David Fletcher,2,,624,tier2_name,Automatic match via exact name to David Fletcher +242,David Freese,2,,655,tier2_name,Automatic match via exact name to David Freese +243,David Hale,2,,805,tier2_name,Automatic match via exact name to David Hale +244,David Hernandez,2,,868,tier2_name,Automatic match via exact name to David Hernandez +245,David Hess,2,,889,tier2_name,Automatic match via exact name to David Hess +246,David McKay,2,,1279,tier2_name,Automatic match via exact name to David McKay +247,David Peralta,2,,1522,tier2_name,Automatic match via exact name to David Peralta +248,David Phelps,2,,1554,tier2_name,Automatic match via exact name to David Phelps +249,David Price,2,,1585,tier2_name,Automatic match via exact name to David Price +250,Dawel Lugo,2,,1166,tier2_name,Automatic match via exact name to Dawel Lugo +251,Dee Strange Gordon,2,,1920,tier2_name,Automatic match via exact name to Dee Strange Gordon +252,Delino DeShields,2,,494,tier2_name,Automatic match via exact name to Delino DeShields +253,Dereck Rodriguez,2,,1676,tier2_name,Automatic match via exact name to Dereck Rodriguez +254,Derek Dietrich,2,,515,tier2_name,Automatic match via exact name to Derek Dietrich +255,Derek Fisher,2,,618,tier2_name,Automatic match via exact name to Derek Fisher +256,Derek Holland,2,,914,tier2_name,Automatic match via exact name to Derek Holland +257,Derek Law,2,,1098,tier2_name,Automatic match via exact name to Derek Law +258,Devin Smeltzer,2,,1840,tier2_name,Automatic match via exact name to Devin Smeltzer +259,Dexter Fowler,2,,639,tier2_name,Automatic match via exact name to Dexter Fowler +260,Didi Gregorius,2,,772,tier2_name,Automatic match via exact name to Didi Gregorius +261,Diego Castillo,2,,3235,manual_new,Manual assignment to new SbaPlayer: Diego Castillo +262,Dillon Peters,2,,1544,tier2_name,Automatic match via exact name to Dillon Peters +263,Dinelson Lamet,2,,1090,tier2_name,Automatic match via exact name to Dinelson Lamet +264,DJ LeMahieu,2,,1114,tier2_name,Automatic match via exact name to DJ LeMahieu +265,DJ Stewart,2,,1909,tier2_name,Automatic match via exact name to DJ Stewart +266,Domingo German,2,,713,tier2_name,Automatic match via exact name to Domingo German +267,Domingo Santana,2,,1761,tier2_name,Automatic match via exact name to Domingo Santana +268,Dominic Leone,2,,1116,tier2_name,Automatic match via exact name to Dominic Leone +269,Dominic Smith,2,,1849,tier2_name,Automatic match via exact name to Dominic Smith +270,Donovan Solano,2,,1868,tier2_name,Automatic match via exact name to Donovan Solano +271,Drew Pomeranz,2,,1572,tier2_name,Automatic match via exact name to Drew Pomeranz +272,Drew Smyly,2,,1858,tier2_name,Automatic match via exact name to Drew Smyly +273,Drew VerHagen,2,,2070,tier2_name,Automatic match via exact name to Drew VerHagen +274,Dustin Garneau,2,,697,tier2_name,Automatic match via exact name to Dustin Garneau +275,Dustin May,2,,1249,tier2_name,Automatic match via exact name to Dustin May +276,Dwight Smith Jr,2,,1855,tier2_name,Automatic match via exact name to Dwight Smith Jr +277,Dylan Bundy,2,,280,tier2_name,Automatic match via exact name to Dylan Bundy +278,Dylan Cease,2,,355,tier2_name,Automatic match via exact name to Dylan Cease +279,Dylan Covey,2,,425,tier2_name,Automatic match via exact name to Dylan Covey +280,Dylan Floro,2,,629,tier2_name,Automatic match via exact name to Dylan Floro +281,Dylan Moore,2,,1358,tier2_name,Automatic match via exact name to Dylan Moore +282,Eddie Rosario,2,,1710,tier2_name,Automatic match via exact name to Eddie Rosario +283,Edgar Garcia,2,,686,tier2_name,Automatic match via exact name to Edgar Garcia +284,Eduardo Escobar,2,,581,tier2_name,Automatic match via exact name to Eduardo Escobar +285,Eduardo Nunez,2,,1442,tier2_name,Automatic match via exact name to Eduardo Nunez +286,Eduardo Rodriguez,2,,1675,tier2_name,Automatic match via exact name to Eduardo Rodriguez +287,Edwin Diaz,2,,503,tier2_name,Automatic match via exact name to Edwin Diaz +288,Edwin Encarnacion,2,,571,tier2_name,Automatic match via exact name to Edwin Encarnacion +289,Edwin Jackson,2,,957,tier2_name,Automatic match via exact name to Edwin Jackson +290,Ehire Adrianza,2,,22,tier2_name,Automatic match via exact name to Ehire Adrianza +291,Elias Diaz,2,,502,tier2_name,Automatic match via exact name to Elias Diaz +292,Elieser Hernandez,2,,874,tier2_name,Automatic match via exact name to Elieser Hernandez +293,Eloy Jimenez,2,,980,tier2_name,Automatic match via exact name to Eloy Jimenez +294,Elvis Andrus,2,,77,tier2_name,Automatic match via exact name to Elvis Andrus +295,Elvis Luciano,2,,1161,tier2_name,Automatic match via exact name to Elvis Luciano +296,Emilio Pagan,2,,1484,tier2_name,Automatic match via exact name to Emilio Pagan +297,Ender Inciarte,2,,952,tier2_name,Automatic match via exact name to Ender Inciarte +298,Enrique Hernandez,2,,871,tier2_name,Automatic match via exact name to Enrique Hernandez +299,Eric Hosmer,2,,926,tier2_name,Automatic match via exact name to Eric Hosmer +300,Eric Lauer,2,,1096,tier2_name,Automatic match via exact name to Eric Lauer +301,Eric Sogard,2,,1865,tier2_name,Automatic match via exact name to Eric Sogard +302,Eric Thames,2,,1976,tier2_name,Automatic match via exact name to Eric Thames +303,Erick Fedde,2,,600,tier2_name,Automatic match via exact name to Erick Fedde +304,Erik Gonzalez,2,,742,tier2_name,Automatic match via exact name to Erik Gonzalez +305,Erik Swanson,2,,1948,tier2_name,Automatic match via exact name to Erik Swanson +306,Eugenio Suarez,2,,1934,tier2_name,Automatic match via exact name to Eugenio Suarez +307,Evan Longoria,2,,1140,tier2_name,Automatic match via exact name to Evan Longoria +308,Evan Marshall,2,,1207,tier2_name,Automatic match via exact name to Evan Marshall +309,Evan Phillips,2,,3238,manual_new,Manual assignment to new SbaPlayer: Evan Phillips +310,Felipe Vazquez,2,,2064,tier2_name,Automatic match via exact name to Felipe Vazquez +311,Felix Hernandez,2,,867,tier2_name,Automatic match via exact name to Felix Hernandez +312,Felix Pena,2,,1518,tier2_name,Automatic match via exact name to Felix Pena +313,Fernando Rodney,2,,1669,tier2_name,Automatic match via exact name to Fernando Rodney +314,Fernando Tatis Jr,2,,1960,tier2_name,Automatic match via exact name to Fernando Tatis Jr +315,Framber Valdez,2,,2048,tier2_name,Automatic match via exact name to Framber Valdez +316,Francisco Cervelli,2,,359,tier2_name,Automatic match via exact name to Francisco Cervelli +317,Francisco Lindor,2,,1124,tier2_name,Automatic match via exact name to Francisco Lindor +318,Francisco Liriano,2,,1126,tier2_name,Automatic match via exact name to Francisco Liriano +319,Francisco Mejia,2,,3239,manual_new,Manual assignment to new SbaPlayer: Francisco Mejia +320,Frankie Montas,2,,1351,tier2_name,Automatic match via exact name to Frankie Montas +321,Franmil Reyes,2,,1634,tier2_name,Automatic match via exact name to Franmil Reyes +322,Freddie Freeman,2,,652,tier2_name,Automatic match via exact name to Freddie Freeman +323,Freddy Galvis,2,,675,tier2_name,Automatic match via exact name to Freddy Galvis +324,Freddy Peralta,2,,1525,tier2_name,Automatic match via exact name to Freddy Peralta +325,Gabriel Ynoa,2,,2214,tier2_name,Automatic match via exact name to Gabriel Ynoa +326,Garrett Cooper,2,,415,tier2_name,Automatic match via exact name to Garrett Cooper +327,Garrett Hampson,2,,814,tier2_name,Automatic match via exact name to Garrett Hampson +328,Gary Sanchez,2,,1746,tier2_name,Automatic match via exact name to Gary Sanchez +329,Gavin Lux,2,,1169,tier2_name,Automatic match via exact name to Gavin Lux +330,Geoff Hartlieb,2,,833,tier2_name,Automatic match via exact name to Geoff Hartlieb +331,George Springer,2,,1888,tier2_name,Automatic match via exact name to George Springer +332,Gerardo Parra,2,,1501,tier2_name,Automatic match via exact name to Gerardo Parra +333,Gerardo Reyes,2,,1636,tier2_name,Automatic match via exact name to Gerardo Reyes +334,German Marquez,2,,1204,tier2_name,Automatic match via exact name to German Marquez +335,Gerrit Cole,2,,398,tier2_name,Automatic match via exact name to Gerrit Cole +336,Giancarlo Stanton,2,,1893,tier2_name,Automatic match via exact name to Giancarlo Stanton +337,Gio Gonzalez,2,,739,tier2_name,Automatic match via exact name to Gio Gonzalez +338,Gio Urshela,2,,2042,tier2_name,Automatic match via exact name to Gio Urshela +339,Giovanny Gallegos,2,,672,tier2_name,Automatic match via exact name to Giovanny Gallegos +340,Glenn Sparkman,2,,1884,tier2_name,Automatic match via exact name to Glenn Sparkman +341,Gleyber Torres,2,,2003,tier2_name,Automatic match via exact name to Gleyber Torres +342,Gordon Beckham,2,,160,tier2_name,Automatic match via exact name to Gordon Beckham +343,Grayson Greiner,2,,773,tier2_name,Automatic match via exact name to Grayson Greiner +344,Greg Allen,2,,44,tier2_name,Automatic match via exact name to Greg Allen +345,Greg Garcia,2,,681,tier2_name,Automatic match via exact name to Greg Garcia +346,Greg Holland,2,,915,tier2_name,Automatic match via exact name to Greg Holland +347,Gregory Polanco,2,,1569,tier2_name,Automatic match via exact name to Gregory Polanco +348,Gregory Soto,2,,1878,tier2_name,Automatic match via exact name to Gregory Soto +349,Griffin Canning,2,,317,tier2_name,Automatic match via exact name to Griffin Canning +350,Guillermo Heredia,2,,862,tier2_name,Automatic match via exact name to Guillermo Heredia +351,Hansel Robles,2,,1665,tier2_name,Automatic match via exact name to Hansel Robles +352,Hanser Alberto,2,,30,tier2_name,Automatic match via exact name to Hanser Alberto +353,Harold Castro,2,,349,tier2_name,Automatic match via exact name to Harold Castro +354,Harold Ramirez,2,,1609,tier2_name,Automatic match via exact name to Harold Ramirez +355,Harrison Bader,2,,110,tier2_name,Automatic match via exact name to Harrison Bader +356,Heath Hembree,2,,854,tier2_name,Automatic match via exact name to Heath Hembree +357,Hector Neris,2,,1413,tier2_name,Automatic match via exact name to Hector Neris +358,Hector Noesi,2,,1429,tier2_name,Automatic match via exact name to Hector Noesi +359,Hector Rondon,2,,1706,tier2_name,Automatic match via exact name to Hector Rondon +360,Hector Santiago,2,,1765,tier2_name,Automatic match via exact name to Hector Santiago +361,Hector Velazquez,2,,2066,tier2_name,Automatic match via exact name to Hector Velazquez +362,Hernan Perez,2,,1536,tier2_name,Automatic match via exact name to Hernan Perez +363,Homer Bailey,2,,114,tier2_name,Automatic match via exact name to Homer Bailey +364,Howie Kendrick,2,,1028,tier2_name,Automatic match via exact name to Howie Kendrick +365,Humberto Arteaga,2,,97,tier2_name,Automatic match via exact name to Humberto Arteaga +366,Hunter Dozier,2,,533,tier2_name,Automatic match via exact name to Hunter Dozier +367,Hunter Pence,2,,1520,tier2_name,Automatic match via exact name to Hunter Pence +368,Hunter Renfroe,2,,1631,tier2_name,Automatic match via exact name to Hunter Renfroe +369,Hunter Wood,2,,2192,tier2_name,Automatic match via exact name to Hunter Wood +370,Hyun Jin Ryu,2,,1733,tier2_name,Automatic match via exact name to Hyun Jin Ryu +371,Ian Desmond,2,,495,tier2_name,Automatic match via exact name to Ian Desmond +372,Ian Happ,2,,820,tier2_name,Automatic match via exact name to Ian Happ +373,Ian Kennedy,2,,1029,tier2_name,Automatic match via exact name to Ian Kennedy +374,Ian Kinsler,2,,1051,tier2_name,Automatic match via exact name to Ian Kinsler +375,Ildemaro Vargas,2,,2054,tier2_name,Automatic match via exact name to Ildemaro Vargas +376,Isan Diaz,2,,508,tier2_name,Automatic match via exact name to Isan Diaz +377,Isiah Kiner Falefa,2,,1044,tier2_name,Automatic match via exact name to Isiah Kiner Falefa +378,Ivan Nova,2,,1441,tier2_name,Automatic match via exact name to Ivan Nova +379,JA Happ,2,,821,tier2_name,Automatic match via exact name to JA Happ +380,JB Wendelken,2,,2134,tier2_name,Automatic match via exact name to JB Wendelken +381,JD Davis,2,,474,tier2_name,Automatic match via exact name to JD Davis +382,JD Martinez,2,,1229,tier2_name,Automatic match via exact name to JD Martinez +383,JP Crawford,2,,432,tier2_name,Automatic match via exact name to JP Crawford +384,JT Realmuto,2,,1622,tier2_name,Automatic match via exact name to JT Realmuto +385,Jace Fry,2,,661,tier2_name,Automatic match via exact name to Jace Fry +386,Jace Peterson,2,,1547,tier2_name,Automatic match via exact name to Jace Peterson +387,Jack Flaherty,2,,622,tier2_name,Automatic match via exact name to Jack Flaherty +388,Jack Mayfield,2,,1252,tier2_name,Automatic match via exact name to Jack Mayfield +389,Jackie Bradley Jr,2,,239,tier2_name,Automatic match via exact name to Jackie Bradley Jr +390,Jacob Barnes,2,,133,tier2_name,Automatic match via exact name to Jacob Barnes +391,Jacob deGrom,2,,484,tier2_name,Automatic match via exact name to Jacob deGrom +392,Jacob Stallings,2,,1890,tier2_name,Automatic match via exact name to Jacob Stallings +393,Jacob Waguespack,2,,2098,tier2_name,Automatic match via exact name to Jacob Waguespack +394,Jacob Webb,2,,2126,tier2_name,Automatic match via exact name to Jacob Webb +395,JaCoby Jones,2,,991,tier2_name,Automatic match via exact name to JaCoby Jones +396,Jaime Barria,2,,141,tier2_name,Automatic match via exact name to Jaime Barria +397,Jairo Diaz,2,,501,tier2_name,Automatic match via exact name to Jairo Diaz +398,Jake Arrieta,2,,94,tier2_name,Automatic match via exact name to Jake Arrieta +399,Jake Bauers,2,,151,tier2_name,Automatic match via exact name to Jake Bauers +400,Jake Cave,2,,354,tier2_name,Automatic match via exact name to Jake Cave +401,Jake Diekman,2,,514,tier2_name,Automatic match via exact name to Jake Diekman +402,Jake Jewell,2,,978,tier2_name,Automatic match via exact name to Jake Jewell +403,Jake Lamb,2,,1087,tier2_name,Automatic match via exact name to Jake Lamb +404,Jake Marisnick,2,,1200,tier2_name,Automatic match via exact name to Jake Marisnick +405,Jake McGee,2,,1274,tier2_name,Automatic match via exact name to Jake McGee +406,Jake Newberry,2,,1418,tier2_name,Automatic match via exact name to Jake Newberry +407,Jake Odorizzi,2,,1452,tier2_name,Automatic match via exact name to Jake Odorizzi +408,Jake Rogers,2,,1692,tier2_name,Automatic match via exact name to Jake Rogers +409,Jakob Junis,2,,1004,tier2_name,Automatic match via exact name to Jakob Junis +410,Jalen Beeks,2,,165,tier2_name,Automatic match via exact name to Jalen Beeks +411,James McCann,2,,1261,tier2_name,Automatic match via exact name to James McCann +412,James Paxton,2,,1506,tier2_name,Automatic match via exact name to James Paxton +413,Jameson Taillon,2,,1954,tier2_name,Automatic match via exact name to Jameson Taillon +414,Jandel Gustave,2,,795,tier2_name,Automatic match via exact name to Jandel Gustave +415,Jared Hughes,2,,937,tier2_name,Automatic match via exact name to Jared Hughes +416,Jared Walsh,2,,2111,tier2_name,Automatic match via exact name to Jared Walsh +417,Jarlin Garcia,2,,684,tier2_name,Automatic match via exact name to Jarlin Garcia +418,Jarrod Dyson,2,,555,tier2_name,Automatic match via exact name to Jarrod Dyson +419,Jason Castro,2,,347,tier2_name,Automatic match via exact name to Jason Castro +420,Jason Heyward,2,,891,tier2_name,Automatic match via exact name to Jason Heyward +421,Jason Kipnis,2,,1053,tier2_name,Automatic match via exact name to Jason Kipnis +422,Jason Vargas,2,,2053,tier2_name,Automatic match via exact name to Jason Vargas +423,Javier Baez,2,,112,tier2_name,Automatic match via exact name to Javier Baez +424,Javy Guerra,2,,3236,manual_new,Manual assignment to new SbaPlayer: Javy Guerra +425,Jay Bruce,2,,270,tier2_name,Automatic match via exact name to Jay Bruce +426,Jay Jackson,2,,959,tier2_name,Automatic match via exact name to Jay Jackson +427,Jean Segura,2,,1796,tier2_name,Automatic match via exact name to Jean Segura +428,Jedd Gyorko,2,,800,tier2_name,Automatic match via exact name to Jedd Gyorko +429,Jeff Brigham,2,,257,tier2_name,Automatic match via exact name to Jeff Brigham +430,Jeff Hoffman,2,,910,tier2_name,Automatic match via exact name to Jeff Hoffman +431,Jeff Mathis,2,,1235,tier2_name,Automatic match via exact name to Jeff Mathis +432,Jeff McNeil,2,,1287,tier2_name,Automatic match via exact name to Jeff McNeil +433,Jeff Samardzija,2,,1740,tier2_name,Automatic match via exact name to Jeff Samardzija +434,Jeffrey Springs,2,,1889,tier2_name,Automatic match via exact name to Jeffrey Springs +435,Jefry Rodriguez,2,,1677,tier2_name,Automatic match via exact name to Jefry Rodriguez +436,Jeimer Candelario,2,,315,tier2_name,Automatic match via exact name to Jeimer Candelario +437,Jerad Eickhoff,2,,563,tier2_name,Automatic match via exact name to Jerad Eickhoff +438,Jeremy Hellickson,2,,852,tier2_name,Automatic match via exact name to Jeremy Hellickson +439,Jeremy Jeffress,2,,976,tier2_name,Automatic match via exact name to Jeremy Jeffress +440,Jerry Blevins,2,,213,tier2_name,Automatic match via exact name to Jerry Blevins +441,Jesse Biddle,2,,192,tier2_name,Automatic match via exact name to Jesse Biddle +442,Jesse Chavez,2,,370,tier2_name,Automatic match via exact name to Jesse Chavez +443,Jesse Winker,2,,2177,tier2_name,Automatic match via exact name to Jesse Winker +444,Jesus Aguilar,2,,25,tier2_name,Automatic match via exact name to Jesus Aguilar +445,Jesus Luzardo,2,,1170,tier2_name,Automatic match via exact name to Jesus Luzardo +446,Jesus Sucre,2,,1939,tier2_name,Automatic match via exact name to Jesus Sucre +447,Jesus Tinoco,2,,1992,tier2_name,Automatic match via exact name to Jesus Tinoco +448,Jeurys Familia,2,,595,tier2_name,Automatic match via exact name to Jeurys Familia +449,Jhoulys Chacin,2,,362,tier2_name,Automatic match via exact name to Jhoulys Chacin +450,Ji Man Choi,2,,377,tier2_name,Automatic match via exact name to Ji Man Choi +451,Jimmy Cordero,2,,419,tier2_name,Automatic match via exact name to Jimmy Cordero +452,Jimmy Yacabonis,2,,2203,tier2_name,Automatic match via exact name to Jimmy Yacabonis +453,Joakim Soria,2,,1872,tier2_name,Automatic match via exact name to Joakim Soria +454,Joc Pederson,2,,1514,tier2_name,Automatic match via exact name to Joc Pederson +455,Joe Biagini,2,,188,tier2_name,Automatic match via exact name to Joe Biagini +456,Joe Jimenez,2,,979,tier2_name,Automatic match via exact name to Joe Jimenez +457,Joe Kelly,2,,1021,tier2_name,Automatic match via exact name to Joe Kelly +458,Joe Musgrove,2,,1394,tier2_name,Automatic match via exact name to Joe Musgrove +459,Joe Panik,2,,1493,tier2_name,Automatic match via exact name to Joe Panik +460,Joe Ross,2,,1715,tier2_name,Automatic match via exact name to Joe Ross +461,Joe Smith,2,,1842,tier2_name,Automatic match via exact name to Joe Smith +462,Joey Gallo,2,,674,tier2_name,Automatic match via exact name to Joey Gallo +463,Joey Lucchesi,2,,1160,tier2_name,Automatic match via exact name to Joey Lucchesi +464,Joey Rickard,2,,1647,tier2_name,Automatic match via exact name to Joey Rickard +465,Joey Votto,2,,2092,tier2_name,Automatic match via exact name to Joey Votto +466,Joey Wendle,2,,2135,tier2_name,Automatic match via exact name to Joey Wendle +467,Johan Camargo,2,,309,tier2_name,Automatic match via exact name to Johan Camargo +468,John Brebbia,2,,247,tier2_name,Automatic match via exact name to John Brebbia +469,John Gant,2,,677,tier2_name,Automatic match via exact name to John Gant +470,John Hicks,2,,893,tier2_name,Automatic match via exact name to John Hicks +471,John Means,2,,2,tier2_name,Automatic match via exact name to John Means +472,John Ryan Murphy,2,,1392,tier2_name,Automatic match via exact name to John Ryan Murphy +473,Jon Berti,2,,183,tier2_name,Automatic match via exact name to Jon Berti +474,Jon Duplantier,2,,549,tier2_name,Automatic match via exact name to Jon Duplantier +475,Jon Gray,2,,766,tier2_name,Automatic match via exact name to Jon Gray +476,Jon Jay,2,,973,tier2_name,Automatic match via exact name to Jon Jay +477,Jon Lester,2,,1117,tier2_name,Automatic match via exact name to Jon Lester +478,Jonathan Davis,2,,470,tier2_name,Automatic match via exact name to Jonathan Davis +479,Jonathan Holder,2,,912,tier2_name,Automatic match via exact name to Jonathan Holder +480,Jonathan Loaisiga,2,,1132,tier2_name,Automatic match via exact name to Jonathan Loaisiga +481,Jonathan Lucroy,2,,1163,tier2_name,Automatic match via exact name to Jonathan Lucroy +482,Jonathan Schoop,2,,1779,tier2_name,Automatic match via exact name to Jonathan Schoop +483,Jonathan Villar,2,,2079,tier2_name,Automatic match via exact name to Jonathan Villar +484,Jordan Hicks,2,,894,tier2_name,Automatic match via exact name to Jordan Hicks +485,Jordan Luplow,2,,1168,tier2_name,Automatic match via exact name to Jordan Luplow +486,Jordan Lyles,2,,1171,tier2_name,Automatic match via exact name to Jordan Lyles +487,Jordan Yamamoto,2,,2205,tier2_name,Automatic match via exact name to Jordan Yamamoto +488,Jordan Zimmermann,2,,2230,tier2_name,Automatic match via exact name to Jordan Zimmermann +489,Jordy Mercer,2,,1308,tier2_name,Automatic match via exact name to Jordy Mercer +490,Jorge Alfaro,2,,40,tier2_name,Automatic match via exact name to Jorge Alfaro +491,Jorge Lopez,2,,1144,tier2_name,Automatic match via exact name to Jorge Lopez +492,Jorge Polanco,2,,1570,tier2_name,Automatic match via exact name to Jorge Polanco +493,Jorge Soler,2,,1870,tier2_name,Automatic match via exact name to Jorge Soler +494,Jose Abreu,2,,7,tier2_name,Automatic match via exact name to Jose Abreu +495,Jose Altuve,2,,56,tier2_name,Automatic match via exact name to Jose Altuve +496,Jose Alvarado,2,,58,tier2_name,Automatic match via exact name to Jose Alvarado +497,Jose Alvarez,2,,59,tier2_name,Automatic match via exact name to Jose Alvarez +498,Jose Berrios,2,,182,tier2_name,Automatic match via exact name to Jose Berrios +499,Jose Cisnero,2,,382,tier2_name,Automatic match via exact name to Jose Cisnero +500,Jose Iglesias,2,,949,tier2_name,Automatic match via exact name to Jose Iglesias +501,Jose Leclerc,2,,1106,tier2_name,Automatic match via exact name to Jose Leclerc +502,Jose Martinez,2,,1222,tier2_name,Automatic match via exact name to Jose Martinez +503,Jose Osuna,2,,1471,tier2_name,Automatic match via exact name to Jose Osuna +504,Jose Peraza,2,,1527,tier2_name,Automatic match via exact name to Jose Peraza +505,Jose Quijada,2,,1594,tier2_name,Automatic match via exact name to Jose Quijada +506,Jose Quintana,2,,1596,tier2_name,Automatic match via exact name to Jose Quintana +507,Jose Ramirez,2,,1608,tier2_name,Automatic match via exact name to Jose Ramirez +508,Jose Rondon,2,,1707,tier2_name,Automatic match via exact name to Jose Rondon +509,Jose Ruiz,2,,1724,tier2_name,Automatic match via exact name to Jose Ruiz +510,Jose Suarez,2,,1937,tier2_name,Automatic match via exact name to Jose Suarez +511,Jose Trevino,2,,2013,tier2_name,Automatic match via exact name to Jose Trevino +512,Jose Urena,2,,2035,tier2_name,Automatic match via exact name to Jose Urena +513,Jose Urquidy,2,,2041,tier2_name,Automatic match via exact name to Jose Urquidy +514,Josh Bell,2,,168,tier2_name,Automatic match via exact name to Josh Bell +515,Josh Donaldson,2,,526,tier2_name,Automatic match via exact name to Josh Donaldson +516,Josh Hader,2,,802,tier2_name,Automatic match via exact name to Josh Hader +517,Josh Harrison,2,,829,tier2_name,Automatic match via exact name to Josh Harrison +518,Josh James,2,,965,tier2_name,Automatic match via exact name to Josh James +519,Josh Naylor,2,,1404,tier2_name,Automatic match via exact name to Josh Naylor +520,Josh Osich,2,,1469,tier2_name,Automatic match via exact name to Josh Osich +521,Josh Phegley,2,,1553,tier2_name,Automatic match via exact name to Josh Phegley +522,Josh Reddick,2,,1623,tier2_name,Automatic match via exact name to Josh Reddick +523,Josh Rojas,2,,1695,tier2_name,Automatic match via exact name to Josh Rojas +524,Josh Smith,2,,1852,tier2_name,Automatic match via exact name to Josh Smith +525,Josh Taylor,2,,1967,tier2_name,Automatic match via exact name to Josh Taylor +526,Josh Tomlin,2,,1996,tier2_name,Automatic match via exact name to Josh Tomlin +527,Josh VanMeter,2,,2052,tier2_name,Automatic match via exact name to Josh VanMeter +528,JT Riddle,2,,1648,tier2_name,Automatic match via exact name to JT Riddle +529,Juan Lagares,2,,1083,tier2_name,Automatic match via exact name to Juan Lagares +530,Juan Minaya,2,,1334,tier2_name,Automatic match via exact name to Juan Minaya +531,Juan Nicasio,2,,1422,tier2_name,Automatic match via exact name to Juan Nicasio +532,Juan Soto,2,,1879,tier2_name,Automatic match via exact name to Juan Soto +533,Julio Teheran,2,,1970,tier2_name,Automatic match via exact name to Julio Teheran +534,Julio Urias,2,,2038,tier2_name,Automatic match via exact name to Julio Urias +535,Jung Ho Kang,2,,1007,tier2_name,Automatic match via exact name to Jung Ho Kang +536,Junior Guerra,2,,785,tier2_name,Automatic match via exact name to Junior Guerra +537,Jurickson Profar,2,,1587,tier2_name,Automatic match via exact name to Jurickson Profar +538,Justin Anderson,2,,70,tier2_name,Automatic match via exact name to Justin Anderson +539,Justin Bour,2,,226,tier2_name,Automatic match via exact name to Justin Bour +540,Justin Shafer,2,,1807,tier2_name,Automatic match via exact name to Justin Shafer +541,Justin Smoak,2,,1857,tier2_name,Automatic match via exact name to Justin Smoak +542,Justin Turner,2,,2029,tier2_name,Automatic match via exact name to Justin Turner +543,Justin Upton,2,,2034,tier2_name,Automatic match via exact name to Justin Upton +544,Justin Verlander,2,,2071,tier2_name,Automatic match via exact name to Justin Verlander +545,Justin Wilson,2,,2167,tier2_name,Automatic match via exact name to Justin Wilson +546,Justus Sheffield,2,,1813,tier2_name,Automatic match via exact name to Justus Sheffield +547,Kelvin Gutierrez,2,,796,tier2_name,Automatic match via exact name to Kelvin Gutierrez +548,Kelvin Herrera,2,,881,tier2_name,Automatic match via exact name to Kelvin Herrera +549,Ken Giles,2,,720,tier2_name,Automatic match via exact name to Ken Giles +550,Kendrys Morales,2,,1359,tier2_name,Automatic match via exact name to Kendrys Morales +551,Kenley Jansen,2,,968,tier2_name,Automatic match via exact name to Kenley Jansen +552,Kenta Maeda,2,,1181,tier2_name,Automatic match via exact name to Kenta Maeda +553,Keon Broxton,2,,268,tier2_name,Automatic match via exact name to Keon Broxton +554,Keone Kela,2,,1014,tier2_name,Automatic match via exact name to Keone Kela +555,Keston Hiura,2,,905,tier2_name,Automatic match via exact name to Keston Hiura +556,Ketel Marte,2,,1210,tier2_name,Automatic match via exact name to Ketel Marte +557,Kevan Smith,2,,1847,tier2_name,Automatic match via exact name to Kevan Smith +558,Kevin Cron,2,,440,tier2_name,Automatic match via exact name to Kevin Cron +559,Kevin Gausman,2,,706,tier2_name,Automatic match via exact name to Kevin Gausman +560,Kevin Kiermaier,2,,1039,tier2_name,Automatic match via exact name to Kevin Kiermaier +561,Kevin McCarthy,2,,1264,tier2_name,Automatic match via exact name to Kevin McCarthy +562,Kevin Newman,2,,1420,tier2_name,Automatic match via exact name to Kevin Newman +563,Kevin Pillar,2,,1557,tier2_name,Automatic match via exact name to Kevin Pillar +564,Kevin Plawecki,2,,1565,tier2_name,Automatic match via exact name to Kevin Plawecki +565,Khris Davis,2,,469,tier2_name,Automatic match via exact name to Khris Davis +566,Kirby Yates,2,,2211,tier2_name,Automatic match via exact name to Kirby Yates +567,Kolby Allard,2,,42,tier2_name,Automatic match via exact name to Kolby Allard +568,Kole Calhoun,2,,306,tier2_name,Automatic match via exact name to Kole Calhoun +569,Kolten Wong,2,,2188,tier2_name,Automatic match via exact name to Kolten Wong +570,Kris Bryant,2,,273,tier2_name,Automatic match via exact name to Kris Bryant +571,Kristopher Negron,2,,1407,tier2_name,Automatic match via exact name to Kristopher Negron +572,Kurt Suzuki,2,,1945,tier2_name,Automatic match via exact name to Kurt Suzuki +573,Kyle Barraclough,2,,136,tier2_name,Automatic match via exact name to Kyle Barraclough +574,Kyle Crick,2,,435,tier2_name,Automatic match via exact name to Kyle Crick +575,Kyle Farmer,2,,598,tier2_name,Automatic match via exact name to Kyle Farmer +576,Kyle Freeland,2,,650,tier2_name,Automatic match via exact name to Kyle Freeland +577,Kyle Gibson,2,,715,tier2_name,Automatic match via exact name to Kyle Gibson +578,Kyle Hendricks,2,,856,tier2_name,Automatic match via exact name to Kyle Hendricks +579,Kyle Lewis,2,,1118,tier2_name,Automatic match via exact name to Kyle Lewis +580,Kyle Ryan,2,,1730,tier2_name,Automatic match via exact name to Kyle Ryan +581,Kyle Schwarber,2,,1784,tier2_name,Automatic match via exact name to Kyle Schwarber +582,Kyle Seager,2,,1793,tier2_name,Automatic match via exact name to Kyle Seager +583,Kyle Tucker,2,,2023,tier2_name,Automatic match via exact name to Kyle Tucker +584,Lance Lynn,2,,1173,tier2_name,Automatic match via exact name to Lance Lynn +585,Leonys Martin,2,,1215,tier2_name,Automatic match via exact name to Leonys Martin +586,Leury Garcia,2,,679,tier2_name,Automatic match via exact name to Leury Garcia +587,Lewis Brinson,2,,258,tier2_name,Automatic match via exact name to Lewis Brinson +588,Lewis Thorpe,2,,1989,tier2_name,Automatic match via exact name to Lewis Thorpe +589,Liam Hendriks,2,,857,tier2_name,Automatic match via exact name to Liam Hendriks +590,Logan Forsythe,2,,636,tier2_name,Automatic match via exact name to Logan Forsythe +591,Logan Webb,2,,2127,tier2_name,Automatic match via exact name to Logan Webb +592,Lorenzo Cain,2,,305,tier2_name,Automatic match via exact name to Lorenzo Cain +593,Lou Trivino,2,,2016,tier2_name,Automatic match via exact name to Lou Trivino +594,Lourdes Gurriel Jr,2,,794,tier2_name,Automatic match via exact name to Lourdes Gurriel Jr +595,Lucas Duda,2,,539,tier2_name,Automatic match via exact name to Lucas Duda +596,Lucas Giolito,2,,724,tier2_name,Automatic match via exact name to Lucas Giolito +597,Lucas Sims,2,,1826,tier2_name,Automatic match via exact name to Lucas Sims +598,Luis Arraez,2,,93,tier2_name,Automatic match via exact name to Luis Arraez +599,Luis Avilan,2,,106,tier2_name,Automatic match via exact name to Luis Avilan +600,Luis Castillo,2,,344,tier2_name,Automatic match via exact name to Luis Castillo +601,Luis Cessa,2,,361,tier2_name,Automatic match via exact name to Luis Cessa +602,Luis Garcia,2,,694,tier2_name,Automatic match via exact name to Luis Garcia Jr +603,Luis Guillorme,2,,792,tier2_name,Automatic match via exact name to Luis Guillorme +604,Luis Perdomo,2,,1529,tier2_name,Automatic match via exact name to Luis Perdomo +605,Luis Rengifo,2,,1632,tier2_name,Automatic match via exact name to Luis Rengifo +606,Luis Severino,2,,1805,tier2_name,Automatic match via exact name to Luis Severino +607,Luis Urias,2,,2039,tier2_name,Automatic match via exact name to Luis Urias +608,Luke Bard,2,,126,tier2_name,Automatic match via exact name to Luke Bard +609,Luke Jackson,2,,960,tier2_name,Automatic match via exact name to Luke Jackson +610,Luke Maile,2,,1185,tier2_name,Automatic match via exact name to Luke Maile +611,Luke Voit,2,,2087,tier2_name,Automatic match via exact name to Luke Voit +612,Luke Weaver,2,,2124,tier2_name,Automatic match via exact name to Luke Weaver +613,Mac Williamson,2,,2163,tier2_name,Automatic match via exact name to Mac Williamson +614,Madison Bumgarner,2,,278,tier2_name,Automatic match via exact name to Madison Bumgarner +615,Maikel Franco,2,,645,tier2_name,Automatic match via exact name to Maikel Franco +616,Mallex Smith,2,,1846,tier2_name,Automatic match via exact name to Mallex Smith +617,Manny Banuelos,2,,123,tier2_name,Automatic match via exact name to Manny Banuelos +618,Manny Machado,2,,1175,tier2_name,Automatic match via exact name to Manny Machado +619,Manny Pina,2,,1558,tier2_name,Automatic match via exact name to Manny Pina +620,Manuel Margot,2,,1198,tier2_name,Automatic match via exact name to Manuel Margot +621,Marcell Ozuna,2,,1481,tier2_name,Automatic match via exact name to Marcell Ozuna +622,Marco Gonzales,2,,735,tier2_name,Automatic match via exact name to Marco Gonzales +623,Marco Hernandez,2,,872,tier2_name,Automatic match via exact name to Marco Hernandez +624,Marcus Semien,2,,1799,tier2_name,Automatic match via exact name to Marcus Semien +625,Marcus Stroman,2,,1928,tier2_name,Automatic match via exact name to Marcus Stroman +626,Marcus Walden,2,,2100,tier2_name,Automatic match via exact name to Marcus Walden +627,Mark Canha,2,,316,tier2_name,Automatic match via exact name to Mark Canha +628,Mark Melancon,2,,1298,tier2_name,Automatic match via exact name to Mark Melancon +629,Mark Reynolds,2,,1639,tier2_name,Automatic match via exact name to Mark Reynolds +630,Martin Maldonado,2,,1187,tier2_name,Automatic match via exact name to Martin Maldonado +631,Martin Perez,2,,1535,tier2_name,Automatic match via exact name to Martin Perez +632,Martin Prado,2,,1582,tier2_name,Automatic match via exact name to Martin Prado +633,Marwin Gonzalez,2,,741,tier2_name,Automatic match via exact name to Marwin Gonzalez +634,Masahiro Tanaka,2,,1955,tier2_name,Automatic match via exact name to Masahiro Tanaka +635,Matt Adams,2,,15,tier2_name,Automatic match via exact name to Matt Adams +636,Matt Albers,2,,29,tier2_name,Automatic match via exact name to Matt Albers +637,Matt Andriese,2,,76,tier2_name,Automatic match via exact name to Matt Andriese +638,Matt Barnes,2,,131,tier2_name,Automatic match via exact name to Matt Barnes +639,Matt Beaty,2,,157,tier2_name,Automatic match via exact name to Matt Beaty +640,Matt Bowman,2,,228,tier2_name,Automatic match via exact name to Matt Bowman +641,Matt Carpenter,2,,329,tier2_name,Automatic match via exact name to Matt Carpenter +642,Matt Chapman,2,,367,tier2_name,Automatic match via exact name to Matt Chapman +643,Matt Duffy,2,,542,tier2_name,Automatic match via exact name to Matt Duffy +644,Matt Grace,2,,760,tier2_name,Automatic match via exact name to Matt Grace +645,Matt Harvey,2,,835,tier2_name,Automatic match via exact name to Matt Harvey +646,Matt Kemp,2,,1026,tier2_name,Automatic match via exact name to Matt Kemp +647,Matt Magill,2,,1182,tier2_name,Automatic match via exact name to Matt Magill +648,Matt Olson,2,,1461,tier2_name,Automatic match via exact name to Matt Olson +649,Matt Shoemaker,2,,1817,tier2_name,Automatic match via exact name to Matt Shoemaker +650,Matt Skole,2,,1835,tier2_name,Automatic match via exact name to Matt Skole +651,Matt Strahm,2,,1918,tier2_name,Automatic match via exact name to Matt Strahm +652,Matt Thaiss,2,,1975,tier2_name,Automatic match via exact name to Matt Thaiss +653,Matt Wieters,2,,2152,tier2_name,Automatic match via exact name to Matt Wieters +654,Matt Wisler,2,,2183,tier2_name,Automatic match via exact name to Matt Wisler +655,Matthew Boyd,2,,230,tier2_name,Automatic match via exact name to Matthew Boyd +656,Matthew Joyce,2,,999,tier2_name,Automatic match via exact name to Matthew Joyce +657,Mauricio Dubon,2,,538,tier2_name,Automatic match via exact name to Mauricio Dubon +658,Max Fried,2,,659,tier2_name,Automatic match via exact name to Max Fried +659,Max Kepler,2,,1031,tier2_name,Automatic match via exact name to Max Kepler +660,Max Muncy,2,,1382,tier2_name,Automatic match via exact name to Max Muncy +661,Max Scherzer,2,,1773,tier2_name,Automatic match via exact name to Max Scherzer +662,Max Stassi,2,,1896,tier2_name,Automatic match via exact name to Max Stassi +663,Meibrys Viloria,2,,2081,tier2_name,Automatic match via exact name to Meibrys Viloria +664,Melky Cabrera,2,,300,tier2_name,Automatic match via exact name to Melky Cabrera +665,Merrill Kelly,2,,1020,tier2_name,Automatic match via exact name to Merrill Kelly +666,Michael A Taylor,2,,1963,manual_existing,Manual match to existing SbaPlayer: Michael Taylor +667,Michael Brantley,2,,240,tier2_name,Automatic match via exact name to Michael Brantley +668,Michael Chavis,2,,371,tier2_name,Automatic match via exact name to Michael Chavis +669,Michael Conforto,2,,407,tier2_name,Automatic match via exact name to Michael Conforto +670,Michael Feliz,2,,602,tier2_name,Automatic match via exact name to Michael Feliz +671,Michael Lorenzen,2,,1151,tier2_name,Automatic match via exact name to Michael Lorenzen +672,Michael Pineda,2,,1560,tier2_name,Automatic match via exact name to Michael Pineda +673,Michael Wacha,2,,2093,tier2_name,Automatic match via exact name to Michael Wacha +674,Michel Baez,2,,113,tier2_name,Automatic match via exact name to Michel Baez +675,Miguel Cabrera,2,,298,tier2_name,Automatic match via exact name to Miguel Cabrera +676,Miguel Castro,2,,350,tier2_name,Automatic match via exact name to Miguel Castro +677,Miguel Rojas,2,,1694,tier2_name,Automatic match via exact name to Miguel Rojas +678,Miguel Sano,2,,1757,tier2_name,Automatic match via exact name to Miguel Sano +679,Mike Brosseau,2,,263,tier2_name,Automatic match via exact name to Mike Brosseau +680,Mike Clevinger,2,,392,tier2_name,Automatic match via exact name to Mike Clevinger +681,Mike Fiers,2,,615,tier2_name,Automatic match via exact name to Mike Fiers +682,Mike Foltynewicz,2,,633,tier2_name,Automatic match via exact name to Mike Foltynewicz +683,Mike Ford,2,,635,tier2_name,Automatic match via exact name to Mike Ford +684,Mike Freeman,2,,651,tier2_name,Automatic match via exact name to Mike Freeman +685,Mike Leake,2,,1102,tier2_name,Automatic match via exact name to Mike Leake +686,Mike Minor,2,,1335,tier2_name,Automatic match via exact name to Mike Minor +687,Mike Montgomery,2,,1355,tier2_name,Automatic match via exact name to Mike Montgomery +688,Mike Morin,2,,1370,tier2_name,Automatic match via exact name to Mike Morin +689,Mike Moustakas,2,,1378,tier2_name,Automatic match via exact name to Mike Moustakas +690,Mike Soroka,2,,1875,tier2_name,Automatic match via exact name to Michael Soroka +691,Mike Tauchman,2,,1961,tier2_name,Automatic match via exact name to Mike Tauchman +692,Mike Trout,2,,2019,tier2_name,Automatic match via exact name to Mike Trout +693,Mike Wright,2,,2199,tier2_name,Automatic match via exact name to Mike Wright +694,Mike Yastrzemski,2,,2210,tier2_name,Automatic match via exact name to Mike Yastrzemski +695,Mike Zunino,2,,2234,tier2_name,Automatic match via exact name to Mike Zunino +696,Miles Mikolas,2,,1317,tier2_name,Automatic match via exact name to Miles Mikolas +697,Mitch Garver,2,,702,tier2_name,Automatic match via exact name to Mitch Garver +698,Mitch Haniger,2,,818,tier2_name,Automatic match via exact name to Mitch Haniger +699,Mitch Keller,2,,1017,tier2_name,Automatic match via exact name to Mitch Keller +700,Mitch Moreland,2,,1365,tier2_name,Automatic match via exact name to Mitch Moreland +701,Mookie Betts,2,,187,tier2_name,Automatic match via exact name to Mookie Betts +702,Mychal Givens,2,,725,tier2_name,Automatic match via exact name to Mychal Givens +703,Myles Straw,2,,1924,tier2_name,Automatic match via exact name to Myles Straw +704,Nate Lowe,2,,1155,manual_existing,Manual match to existing SbaPlayer: Nathaniel Lowe +705,Nathan Eovaldi,2,,576,tier2_name,Automatic match via exact name to Nathan Eovaldi +706,Neil Walker,2,,2103,tier2_name,Automatic match via exact name to Neil Walker +707,Nelson Cruz,2,,447,tier2_name,Automatic match via exact name to Nelson Cruz +708,Nestor Cortes Jr,2,,421,tier2_name,Automatic match via exact name to Nestor Cortes Jr +709,Nicholas Castellanos,2,,340,tier2_name,Automatic match via exact name to Nicholas Castellanos +710,Nick Ahmed,2,,26,tier2_name,Automatic match via exact name to Nick Ahmed +711,Nick Anderson,2,,71,tier2_name,Automatic match via exact name to Nick Anderson +712,Nick Dini,2,,518,tier2_name,Automatic match via exact name to Nick Dini +713,Nick Goody,2,,750,tier2_name,Automatic match via exact name to Nick Goody +714,Nick Hundley,2,,940,tier2_name,Automatic match via exact name to Nick Hundley +715,Nick Kingham,2,,1049,tier2_name,Automatic match via exact name to Nick Kingham +716,Nick Margevicius,2,,1197,tier2_name,Automatic match via exact name to Nick Margevicius +717,Nick Markakis,2,,1201,tier2_name,Automatic match via exact name to Nick Markakis +718,Nick Martini,2,,1230,tier2_name,Automatic match via exact name to Nick Martini +719,Nick Pivetta,2,,1564,tier2_name,Automatic match via exact name to Nick Pivetta +720,Nick Ramirez,2,,1605,tier2_name,Automatic match via exact name to Nick Ramirez +721,Nick Senzel,2,,1802,tier2_name,Automatic match via exact name to Nick Senzel +722,Nick Solak,2,,1867,tier2_name,Automatic match via exact name to Nick Solak +723,Nick Vincent,2,,2082,tier2_name,Automatic match via exact name to Nick Vincent +724,Nick Williams,2,,2157,tier2_name,Automatic match via exact name to Nick Williams +725,Nick Wittgren,2,,2185,tier2_name,Automatic match via exact name to Nick Wittgren +726,Nicky Delmonico,2,,488,tier2_name,Automatic match via exact name to Nicky Delmonico +727,Nicky Lopez,2,,1149,tier2_name,Automatic match via exact name to Nicky Lopez +728,Nico Hoerner,2,,909,tier2_name,Automatic match via exact name to Nico Hoerner +729,Niko Goodrum,2,,748,tier2_name,Automatic match via exact name to Niko Goodrum +730,Noah Syndergaard,2,,1953,tier2_name,Automatic match via exact name to Noah Syndergaard +731,Noe Ramirez,2,,1606,tier2_name,Automatic match via exact name to Noe Ramirez +732,Nolan Arenado,2,,88,tier2_name,Automatic match via exact name to Nolan Arenado +733,Nomar Mazara,2,,1254,tier2_name,Automatic match via exact name to Nomar Mazara +734,Odubel Herrera,2,,882,tier2_name,Automatic match via exact name to Odubel Herrera +735,Oliver Drake,2,,534,tier2_name,Automatic match via exact name to Oliver Drake +736,Oliver Perez,2,,1533,tier2_name,Automatic match via exact name to Oliver Perez +737,Omar Narvaez,2,,1401,tier2_name,Automatic match via exact name to Omar Narvaez +738,Orlando Arcia,2,,86,tier2_name,Automatic match via exact name to Orlando Arcia +739,Oscar Mercado,2,,1306,tier2_name,Automatic match via exact name to Oscar Mercado +740,Ozzie Albies,2,,31,tier2_name,Automatic match via exact name to Ozzie Albies +741,Pablo Lopez,2,,1146,tier2_name,Automatic match via exact name to Pablo Lopez +742,Pablo Reyes,2,,1637,tier2_name,Automatic match via exact name to Pablo Reyes +743,Pablo Sandoval,2,,1753,tier2_name,Automatic match via exact name to Pablo Sandoval +744,Pat Valaika,2,,2044,tier2_name,Automatic match via exact name to Pat Valaika +745,Patrick Corbin,2,,416,tier2_name,Automatic match via exact name to Patrick Corbin +746,Patrick Sandoval,2,,1754,tier2_name,Automatic match via exact name to Patrick Sandoval +747,Paul DeJong,2,,485,tier2_name,Automatic match via exact name to Paul DeJong +748,Paul Fry,2,,662,tier2_name,Automatic match via exact name to Paul Fry +749,Paul Goldschmidt,2,,729,tier2_name,Automatic match via exact name to Paul Goldschmidt +750,Pedro Baez,2,,111,tier2_name,Automatic match via exact name to Pedro Baez +751,Pedro Severino,2,,1804,tier2_name,Automatic match via exact name to Pedro Severino +752,Pedro Strop,2,,1929,tier2_name,Automatic match via exact name to Pedro Strop +753,Pete Alonso,2,,53,tier2_name,Automatic match via exact name to Pete Alonso +754,Peter Lambert,2,,1088,tier2_name,Automatic match via exact name to Peter Lambert +755,Phil Ervin,2,,579,tier2_name,Automatic match via exact name to Phil Ervin +756,Phil Gosselin,2,,757,tier2_name,Automatic match via exact name to Phil Gosselin +757,Phil Maton,2,,1238,tier2_name,Automatic match via exact name to Phil Maton +758,Rafael Devers,2,,499,tier2_name,Automatic match via exact name to Rafael Devers +759,Rafael Montero,2,,1352,tier2_name,Automatic match via exact name to Rafael Montero +760,Rafael Ortega,2,,1465,tier2_name,Automatic match via exact name to Rafael Ortega +761,Raimel Tapia,2,,1957,tier2_name,Automatic match via exact name to Raimel Tapia +762,Raisel Iglesias,2,,950,tier2_name,Automatic match via exact name to Raisel Iglesias +763,Ramon Laureano,2,,1097,tier2_name,Automatic match via exact name to Ramon Laureano +764,Randal Grichuk,2,,775,tier2_name,Automatic match via exact name to Randal Grichuk +765,Randy Dobnak,2,,521,tier2_name,Automatic match via exact name to Randy Dobnak +766,Ranger Suarez,2,,1936,tier2_name,Automatic match via exact name to Ranger Suarez +767,Reese McGuire,2,,1277,tier2_name,Automatic match via exact name to Reese McGuire +768,Renato Nunez,2,,1443,tier2_name,Automatic match via exact name to Renato Nunez +769,Reyes Moronta,2,,1371,tier2_name,Automatic match via exact name to Reyes Moronta +770,Reynaldo Lopez,2,,1145,tier2_name,Automatic match via exact name to Reynaldo Lopez +771,Rhys Hoskins,2,,925,tier2_name,Automatic match via exact name to Rhys Hoskins +772,Rich Hill,2,,898,tier2_name,Automatic match via exact name to Rich Hill +773,Richard Bleier,2,,212,tier2_name,Automatic match via exact name to Richard Bleier +774,Richard Rodriguez,2,,1674,tier2_name,Automatic match via exact name to Richard Rodriguez +775,Richard Urena,2,,2036,tier2_name,Automatic match via exact name to Richard Urena +776,Richie Martin,2,,1216,tier2_name,Automatic match via exact name to Richie Martin +777,Rick Porcello,2,,1577,tier2_name,Automatic match via exact name to Rick Porcello +778,Rio Ruiz,2,,1723,tier2_name,Automatic match via exact name to Rio Ruiz +779,Robbie Erlin,2,,578,tier2_name,Automatic match via exact name to Robbie Erlin +780,Robbie Grossman,2,,779,tier2_name,Automatic match via exact name to Robbie Grossman +781,Robbie Ray,2,,1620,tier2_name,Automatic match via exact name to Robbie Ray +782,Robel Garcia,2,,682,tier2_name,Automatic match via exact name to Robel Garcia +783,Robert Dugger,2,,544,tier2_name,Automatic match via exact name to Robert Dugger +784,Robert Gsellman,2,,782,tier2_name,Automatic match via exact name to Robert Gsellman +785,Robert Stephenson,2,,1904,tier2_name,Automatic match via exact name to Robert Stephenson +786,Roberto Osuna,2,,1470,tier2_name,Automatic match via exact name to Roberto Osuna +787,Roberto Perez,2,,1538,tier2_name,Automatic match via exact name to Roberto Perez +788,Robinson Cano,2,,319,tier2_name,Automatic match via exact name to Robinson Cano +789,Robinson Chirinos,2,,373,tier2_name,Automatic match via exact name to Robinson Chirinos +790,Roenis Elias,2,,565,tier2_name,Automatic match via exact name to Roenis Elias +791,Roman Quinn,2,,1595,tier2_name,Automatic match via exact name to Roman Quinn +792,Ronald Acuna Jr,2,,12,tier2_name,Automatic match via exact name to Ronald Acuna Jr +793,Ronald Guzman,2,,799,tier2_name,Automatic match via exact name to Ronald Guzman +794,Ronny Rodriguez,2,,1672,tier2_name,Automatic match via exact name to Ronny Rodriguez +795,Rosell Herrera,2,,883,tier2_name,Automatic match via exact name to Rosell Herrera +796,Ross Detwiler,2,,497,tier2_name,Automatic match via exact name to Ross Detwiler +797,Ross Stripling,2,,1927,tier2_name,Automatic match via exact name to Ross Stripling +798,Rougned Odor,2,,1451,tier2_name,Automatic match via exact name to Rougned Odor +799,Rowan Wick,2,,2147,tier2_name,Automatic match via exact name to Rowan Wick +800,Rowdy Tellez,2,,1972,tier2_name,Automatic match via exact name to Rowdy Tellez +801,Russell Martin,2,,1213,tier2_name,Automatic match via exact name to Russell Martin +802,Ryan Brasier,2,,242,tier2_name,Automatic match via exact name to Ryan Brasier +803,Ryan Braun,2,,244,tier2_name,Automatic match via exact name to Ryan Braun +804,Ryan Buchter,2,,276,tier2_name,Automatic match via exact name to Ryan Buchter +805,Ryan Carpenter,2,,328,tier2_name,Automatic match via exact name to Ryan Carpenter +806,Ryan Cordell,2,,417,tier2_name,Automatic match via exact name to Ryan Cordell +807,Ryan Goins,2,,728,tier2_name,Automatic match via exact name to Ryan Goins +808,Ryan Helsley,2,,853,tier2_name,Automatic match via exact name to Ryan Helsley +809,Ryan McBroom,2,,1259,tier2_name,Automatic match via exact name to Ryan McBroom +810,Ryan McMahon,2,,1286,tier2_name,Automatic match via exact name to Ryan McMahon +811,Ryan OHearn,2,,1453,tier2_name,Automatic match via exact name to Ryan OHearn +812,Ryan Pressly,2,,1584,tier2_name,Automatic match via exact name to Ryan Pressly +813,Ryan Weber,2,,2128,tier2_name,Automatic match via exact name to Ryan Weber +814,Ryan Yarbrough,2,,2208,tier2_name,Automatic match via exact name to Ryan Yarbrough +815,Ryan Zimmerman,2,,2229,tier2_name,Automatic match via exact name to Ryan Zimmerman +816,Ryne Harper,2,,824,tier2_name,Automatic match via exact name to Ryne Harper +817,Ryne Stanek,2,,1892,tier2_name,Automatic match via exact name to Ryne Stanek +818,Ryon Healy,2,,842,tier2_name,Automatic match via exact name to Ryon Healy +819,Sam Coonrod,2,,414,tier2_name,Automatic match via exact name to Sam Coonrod +820,Sam Dyson,2,,554,tier2_name,Automatic match via exact name to Sam Dyson +821,Sam Gaviglio,2,,707,tier2_name,Automatic match via exact name to Sam Gaviglio +822,Sam Hilliard,2,,903,tier2_name,Automatic match via exact name to Sam Hilliard +823,Sam Travis,2,,2010,tier2_name,Automatic match via exact name to Sam Travis +824,Sam Tuivailala,2,,2025,tier2_name,Automatic match via exact name to Sam Tuivailala +825,Sandy Alcantara,2,,35,tier2_name,Automatic match via exact name to Sandy Alcantara +826,Sandy Leon,2,,1115,tier2_name,Automatic match via exact name to Sandy Leon +827,Scooter Gennett,2,,710,tier2_name,Automatic match via exact name to Scooter Gennett +828,Scott Barlow,2,,128,tier2_name,Automatic match via exact name to Scott Barlow +829,Scott Heineman,2,,850,tier2_name,Automatic match via exact name to Scott Heineman +830,Scott Kingery,2,,1048,tier2_name,Automatic match via exact name to Scott Kingery +831,Scott Oberg,2,,1448,tier2_name,Automatic match via exact name to Scott Oberg +832,Scott Schebler,2,,1772,tier2_name,Automatic match via exact name to Scott Schebler +833,Sean Doolittle,2,,528,tier2_name,Automatic match via exact name to Sean Doolittle +834,Sean Manaea,2,,1189,tier2_name,Automatic match via exact name to Sean Manaea +835,Sean Murphy,2,,1390,tier2_name,Automatic match via exact name to Sean Murphy +836,Sean Newcomb,2,,1419,tier2_name,Automatic match via exact name to Sean Newcomb +837,Sean Reid Foley,2,,1627,tier2_name,Automatic match via exact name to Sean Reid Foley +838,Sean Rodriguez,2,,1671,tier2_name,Automatic match via exact name to Sean Rodriguez +839,Sergio Romo,2,,1705,tier2_name,Automatic match via exact name to Sergio Romo +840,Seth Brown,2,,265,tier2_name,Automatic match via exact name to Seth Brown +841,Seth Lugo,2,,1165,tier2_name,Automatic match via exact name to Seth Lugo +842,Shane Bieber,2,,194,tier2_name,Automatic match via exact name to Shane Bieber +843,Shane Greene,2,,769,tier2_name,Automatic match via exact name to Shane Greene +844,Shaun Anderson,2,,72,tier2_name,Automatic match via exact name to Shaun Anderson +845,Shawn Armstrong,2,,91,tier2_name,Automatic match via exact name to Shawn Armstrong +846,Shawn Kelley,2,,1019,tier2_name,Automatic match via exact name to Shawn Kelley +847,Shed Long,2,,1138,tier2_name,Automatic match via exact name to Shed Long +848,Shelby Miller,2,,1323,tier2_name,Automatic match via exact name to Shelby Miller +849,Sheldon Neuse,2,,1415,tier2_name,Automatic match via exact name to Sheldon Neuse +850,Shin Soo Choo,2,,378,tier2_name,Automatic match via exact name to Shin Soo Choo +851,Shohei Ohtani,2,,1455,tier2_name,Automatic match via exact name to Shohei Ohtani +852,Sonny Gray,2,,765,tier2_name,Automatic match via exact name to Sonny Gray +853,Spencer Turnbull,2,,2028,tier2_name,Automatic match via exact name to Spencer Turnbull +854,Starlin Castro,2,,348,tier2_name,Automatic match via exact name to Starlin Castro +855,Starling Marte,2,,1208,tier2_name,Automatic match via exact name to Starling Marte +856,Stefan Crichton,2,,434,tier2_name,Automatic match via exact name to Stefan Crichton +857,Stephen Piscotty,2,,1563,tier2_name,Automatic match via exact name to Stephen Piscotty +858,Stephen Strasburg,2,,1921,tier2_name,Automatic match via exact name to Stephen Strasburg +859,Stephen Vogt,2,,2086,tier2_name,Automatic match via exact name to Stephen Vogt +860,Steve Cishek,2,,381,tier2_name,Automatic match via exact name to Steve Cishek +861,Steve Pearce,2,,1512,tier2_name,Automatic match via exact name to Steve Pearce +862,Steven Brault,2,,243,tier2_name,Automatic match via exact name to Steven Brault +863,Steven Duggar,2,,543,tier2_name,Automatic match via exact name to Steven Duggar +864,Steven Matz,2,,1243,tier2_name,Automatic match via exact name to Steven Matz +865,Stevie Wilkerson,2,,2153,tier2_name,Automatic match via exact name to Stevie Wilkerson +866,TJ McFarland,2,,1273,tier2_name,Automatic match via exact name to TJ McFarland +867,Tanner Rainey,2,,1599,tier2_name,Automatic match via exact name to Tanner Rainey +868,Tanner Roark,2,,1659,tier2_name,Automatic match via exact name to Tanner Roark +869,Tanner Scott,2,,1788,tier2_name,Automatic match via exact name to Tanner Scott +870,Taylor Clarke,2,,384,tier2_name,Automatic match via exact name to Taylor Clarke +871,Taylor Cole,2,,397,tier2_name,Automatic match via exact name to Taylor Cole +872,Taylor Guerrieri,2,,790,tier2_name,Automatic match via exact name to Taylor Guerrieri +873,Taylor Rogers,2,,1689,tier2_name,Automatic match via exact name to Taylor Rogers +874,Tayron Guerrero,2,,788,tier2_name,Automatic match via exact name to Tayron Guerrero +875,Teoscar Hernandez,2,,873,tier2_name,Automatic match via exact name to Teoscar Hernandez +876,Thairo Estrada,2,,587,tier2_name,Automatic match via exact name to Thairo Estrada +877,Thomas Pannone,2,,1494,tier2_name,Automatic match via exact name to Thomas Pannone +878,Tim Anderson,2,,73,tier2_name,Automatic match via exact name to Tim Anderson +879,Tim Beckham,2,,161,tier2_name,Automatic match via exact name to Tim Beckham +880,Tim Federowicz,2,,601,tier2_name,Automatic match via exact name to Tim Federowicz +881,Tim Hill,2,,900,tier2_name,Automatic match via exact name to Tim Hill +882,Tim Locastro,2,,1133,tier2_name,Automatic match via exact name to Tim Locastro +883,Tim Lopes,2,,1142,tier2_name,Automatic match via exact name to Tim Lopes +884,Tim Mayza,2,,1253,tier2_name,Automatic match via exact name to Tim Mayza +885,Tim Melville,2,,1301,tier2_name,Automatic match via exact name to Tim Melville +886,Todd Frazier,2,,647,tier2_name,Automatic match via exact name to Todd Frazier +887,Tom Eshelman,2,,3241,manual_new,Manual assignment to new SbaPlayer: Tom Eshelman +888,Tom Murphy,2,,1388,tier2_name,Automatic match via exact name to Tom Murphy +889,Tomas Nido,2,,1424,tier2_name,Automatic match via exact name to Tomas Nido +890,Tommy Edman,2,,558,tier2_name,Automatic match via exact name to Tommy Edman +891,Tommy Kahnle,2,,1006,tier2_name,Automatic match via exact name to Tommy Kahnle +892,Tommy La Stella,2,,1082,tier2_name,Automatic match via exact name to Tommy La Stella +893,Tommy Milone,2,,1333,tier2_name,Automatic match via exact name to Tommy Milone +894,Tommy Pham,2,,1552,tier2_name,Automatic match via exact name to Tommy Pham +895,Tony Gonsolin,2,,734,tier2_name,Automatic match via exact name to Tony Gonsolin +896,Tony Kemp,2,,1027,tier2_name,Automatic match via exact name to Tony Kemp +897,Tony Watson,2,,2122,tier2_name,Automatic match via exact name to Tony Watson +898,Tony Wolters,2,,2187,tier2_name,Automatic match via exact name to Tony Wolters +899,Touki Toussaint,2,,2005,tier2_name,Automatic match via exact name to Touki Toussaint +900,Travis dArnaud,2,,461,tier2_name,Automatic match via exact name to Travis dArnaud +901,Travis Demeritte,2,,491,tier2_name,Automatic match via exact name to Travis Demeritte +902,Travis Shaw,2,,1809,tier2_name,Automatic match via exact name to Travis Shaw +903,Trea Turner,2,,1,tier2_name,Automatic match via exact name to Trea Turner +904,Trent Grisham,2,,776,tier2_name,Automatic match via exact name to Trent Grisham +905,Trent Thornton,2,,1988,tier2_name,Automatic match via exact name to Trent Thornton +906,Trevor Bauer,2,,150,tier2_name,Automatic match via exact name to Trevor Bauer +907,Trevor Cahill,2,,304,tier2_name,Automatic match via exact name to Trevor Cahill +908,Trevor Gott,2,,758,tier2_name,Automatic match via exact name to Trevor Gott +909,Trevor May,2,,1248,tier2_name,Automatic match via exact name to Trevor May +910,Trevor Richards,2,,1646,tier2_name,Automatic match via exact name to Trevor Richards +911,Trevor Story,2,,1914,tier2_name,Automatic match via exact name to Trevor Story +912,Trevor Williams,2,,2156,tier2_name,Automatic match via exact name to Trevor Williams +913,Trey Mancini,2,,1190,tier2_name,Automatic match via exact name to Trey Mancini +914,Trey Wingenter,2,,2176,tier2_name,Automatic match via exact name to Trey Wingenter +915,Tucker Barnhart,2,,135,tier2_name,Automatic match via exact name to Tucker Barnhart +916,Ty Blach,2,,202,tier2_name,Automatic match via exact name to Ty Blach +917,Ty Buttrey,2,,294,tier2_name,Automatic match via exact name to Ty Buttrey +918,Ty France,2,,642,tier2_name,Automatic match via exact name to Ty France +919,Tyler Alexander,2,,37,tier2_name,Automatic match via exact name to Tyler Alexander +920,Tyler Austin,2,,103,tier2_name,Automatic match via exact name to Tyler Austin +921,Tyler Beede,2,,164,tier2_name,Automatic match via exact name to Tyler Beede +922,Tyler Chatwood,2,,369,tier2_name,Automatic match via exact name to Tyler Chatwood +923,Tyler Clippard,2,,393,tier2_name,Automatic match via exact name to Tyler Clippard +924,Tyler Duffey,2,,540,tier2_name,Automatic match via exact name to Tyler Duffey +925,Tyler Flowers,2,,630,tier2_name,Automatic match via exact name to Tyler Flowers +926,Tyler Glasnow,2,,726,tier2_name,Automatic match via exact name to Tyler Glasnow +927,Tyler Kinley,2,,1050,tier2_name,Automatic match via exact name to Tyler Kinley +928,Tyler Mahle,2,,1183,tier2_name,Automatic match via exact name to Tyler Mahle +929,Tyler Naquin,2,,1399,tier2_name,Automatic match via exact name to Tyler Naquin +930,Tyler ONeill,2,,1463,tier2_name,Automatic match via exact name to Tyler ONeill +931,Tyler Olson,2,,1460,tier2_name,Automatic match via exact name to Tyler Olson +932,Tyler Saladino,2,,1737,tier2_name,Automatic match via exact name to Tyler Saladino +933,Tyler Skaggs,2,,1832,tier2_name,Automatic match via exact name to Tyler Skaggs +934,Tyler Wade,2,,2094,tier2_name,Automatic match via exact name to Tyler Wade +935,Tyler Webb,2,,2125,tier2_name,Automatic match via exact name to Tyler Webb +936,Tyler White,2,,2141,tier2_name,Automatic match via exact name to Tyler White +937,Tyson Ross,2,,1714,tier2_name,Automatic match via exact name to Tyson Ross +938,Victor Alcantara,2,,33,tier2_name,Automatic match via exact name to Victor Alcantara +939,Victor Caratini,2,,325,tier2_name,Automatic match via exact name to Victor Caratini +940,Victor Reyes,2,,1638,tier2_name,Automatic match via exact name to Victor Reyes +941,Victor Robles,2,,1666,tier2_name,Automatic match via exact name to Victor Robles +942,Vince Velasquez,2,,2065,tier2_name,Automatic match via exact name to Vince Velasquez +943,Vladimir Guerrero Jr,2,,789,tier2_name,Automatic match via exact name to Vladimir Guerrero Jr +944,Wade Davis,2,,468,tier2_name,Automatic match via exact name to Wade Davis +945,Wade LeBlanc,2,,1104,tier2_name,Automatic match via exact name to Wade LeBlanc +946,Wade Miley,2,,1318,tier2_name,Automatic match via exact name to Wade Miley +947,Walker Buehler,2,,277,tier2_name,Automatic match via exact name to Walker Buehler +948,Walker Lockett,2,,1134,tier2_name,Automatic match via exact name to Walker Lockett +949,Wander Suero,2,,1940,tier2_name,Automatic match via exact name to Wander Suero +950,Wandy Peralta,2,,1524,tier2_name,Automatic match via exact name to Wandy Peralta +951,Wei Chung Wang,2,,2114,tier2_name,Automatic match via exact name to Wei Chung Wang +952,Wei Yin Chen,2,,372,tier2_name,Automatic match via exact name to Wei Yin Chen +953,Welington Castillo,2,,343,tier2_name,Automatic match via exact name to Welington Castillo +954,Wes Parsons,2,,1502,tier2_name,Automatic match via exact name to Wes Parsons +955,Whit Merrifield,2,,1309,tier2_name,Automatic match via exact name to Whit Merrifield +956,Wil Myers,2,,1395,tier2_name,Automatic match via exact name to Wil Myers +957,Wilfredo Tovar,2,,2006,tier2_name,Automatic match via exact name to Wilfredo Tovar +958,Will D Smith,2,,1841,manual_existing,Manual match to existing SbaPlayer: Will Smith +959,Will Harris,2,,825,tier2_name,Automatic match via exact name to Will Harris +960,Will Smith,2,,1843,manual_existing,Manual match to existing SbaPlayer: Will Smith +961,Willi Castro,2,,352,tier2_name,Automatic match via exact name to Willi Castro +962,Willians Astudillo,2,,101,tier2_name,Automatic match via exact name to Willians Astudillo +963,Willie Calhoun,2,,307,tier2_name,Automatic match via exact name to Willie Calhoun +964,Willson Contreras,2,,410,tier2_name,Automatic match via exact name to Willson Contreras +965,Willy Adames,2,,14,tier2_name,Automatic match via exact name to Willy Adames +966,Wilmer Difo,2,,516,tier2_name,Automatic match via exact name to Wilmer Difo +967,Wilmer Flores,2,,627,tier2_name,Automatic match via exact name to Wilmer Flores +968,Wilmer Font,2,,634,tier2_name,Automatic match via exact name to Wilmer Font +969,Wilson Ramos,2,,1612,tier2_name,Automatic match via exact name to Wilson Ramos +970,Wily Peralta,2,,1523,tier2_name,Automatic match via exact name to Wily Peralta +971,Xander Bogaerts,2,,216,tier2_name,Automatic match via exact name to Xander Bogaerts +972,Yadiel Rivera,2,,1656,tier2_name,Automatic match via exact name to Yadiel Rivera +973,Yadier Molina,2,,1344,tier2_name,Automatic match via exact name to Yadier Molina +974,Yairo Munoz,2,,1383,tier2_name,Automatic match via exact name to Yairo Munoz +975,Yan Gomes,2,,731,tier2_name,Automatic match via exact name to Yan Gomes +976,Yandy Diaz,2,,507,tier2_name,Automatic match via exact name to Yandy Diaz +977,Yangervis Solarte,2,,1869,tier2_name,Automatic match via exact name to Yangervis Solarte +978,Yasiel Puig,2,,1590,tier2_name,Automatic match via exact name to Yasiel Puig +979,Yasmani Grandal,2,,761,tier2_name,Automatic match via exact name to Yasmani Grandal +980,Yency Almonte,2,,50,tier2_name,Automatic match via exact name to Yency Almonte +981,Yimi Garcia,2,,680,tier2_name,Automatic match via exact name to Yimi Garcia +982,Yoan Lopez,2,,1147,tier2_name,Automatic match via exact name to Yoan Lopez +983,Yoan Moncada,2,,1348,tier2_name,Automatic match via exact name to Yoan Moncada +984,Yolmer Sanchez,2,,1744,tier2_name,Automatic match via exact name to Yolmer Sanchez +985,Yonathan Daza,2,,476,tier2_name,Automatic match via exact name to Yonathan Daza +986,Yonder Alonso,2,,52,tier2_name,Automatic match via exact name to Yonder Alonso +987,Yonny Chirinos,2,,374,tier2_name,Automatic match via exact name to Yonny Chirinos +988,Yordan Alvarez,2,,61,tier2_name,Automatic match via exact name to Yordan Alvarez +989,Yoshihisa Hirano,2,,904,tier2_name,Automatic match via exact name to Yoshihisa Hirano +990,Yu Chang,2,,364,tier2_name,Automatic match via exact name to Yu Chang +991,Yu Darvish,2,,462,tier2_name,Automatic match via exact name to Yu Darvish +992,Yuli Gurriel,2,,793,tier2_name,Automatic match via exact name to Yuli Gurriel +993,Yusei Kikuchi,2,,1040,tier2_name,Automatic match via exact name to Yusei Kikuchi +994,Yusmeiro Petit,2,,1549,tier2_name,Automatic match via exact name to Yusmeiro Petit +995,Zac Gallen,2,,673,tier2_name,Automatic match via exact name to Zac Gallen +996,Zac Reininger,2,,1628,tier2_name,Automatic match via exact name to Zac Reininger +997,Zach Davies,2,,465,tier2_name,Automatic match via exact name to Zach Davies +998,Zach Eflin,2,,562,tier2_name,Automatic match via exact name to Zach Eflin +999,Zach Plesac,2,,1566,tier2_name,Automatic match via exact name to Zach Plesac +1000,Zach Britton,2,,260,manual_existing,Manual match to existing SbaPlayer: Zack Britton +1001,Zack Collins,2,,403,tier2_name,Automatic match via exact name to Zack Collins +1002,Zack Cozart,2,,428,tier2_name,Automatic match via exact name to Zack Cozart +1003,Zack Godley,2,,727,tier2_name,Automatic match via exact name to Zack Godley +1004,Zack Greinke,2,,774,tier2_name,Automatic match via exact name to Zack Greinke +1005,Zack Littell,2,,1127,tier2_name,Automatic match via exact name to Zack Littell +1006,Zack Wheeler,2,,2139,tier2_name,Automatic match via exact name to Zack Wheeler +1007,AJ Cole,3,,399,tier2_name,Automatic match via exact name to AJ Cole +1008,AJ Minter,3,,1336,tier2_name,Automatic match via exact name to AJ Minter +1009,AJ Pollock,3,,1571,tier2_name,Automatic match via exact name to AJ Pollock +1010,Aaron Altherr,3,,55,tier2_name,Automatic match via exact name to Aaron Altherr +1011,Aaron Brooks,3,,262,tier2_name,Automatic match via exact name to Aaron Brooks +1012,Aaron Bummer,3,,279,tier2_name,Automatic match via exact name to Aaron Bummer +1013,Aaron Civale,3,,383,tier2_name,Automatic match via exact name to Aaron Civale +1014,Aaron Hicks,3,,892,tier2_name,Automatic match via exact name to Aaron Hicks +1015,Aaron Judge,3,,3,tier2_name,Automatic match via exact name to Aaron Judge +1016,Aaron Nola,3,,1433,tier2_name,Automatic match via exact name to Aaron Nola +1017,Aaron Sanchez,3,,1745,tier2_name,Automatic match via exact name to Aaron Sanchez +1018,Abraham Toro,3,,2001,tier2_name,Automatic match via exact name to Abraham Toro +1019,Adalberto Mejia,3,,1296,tier2_name,Automatic match via exact name to Adalberto Mejia +1020,Adalberto Mondesi,3,,1349,tier2_name,Automatic match via exact name to Adalberto Mondesi +1021,Adam Cimber,3,,380,tier2_name,Automatic match via exact name to Adam Cimber +1022,Adam Conley,3,,409,tier2_name,Automatic match via exact name to Adam Conley +1023,Adam Duvall,3,,553,tier2_name,Automatic match via exact name to Adam Duvall +1024,Adam Eaton,3,,556,tier2_name,Automatic match via exact name to Adam Eaton +1025,Adam Engel,3,,574,tier2_name,Automatic match via exact name to Adam Engel +1026,Adam Frazier,3,,648,tier2_name,Automatic match via exact name to Adam Frazier +1027,Adam Haseley,3,,837,tier2_name,Automatic match via exact name to Adam Haseley +1028,Adam Jones,3,,989,tier2_name,Automatic match via exact name to Adam Jones +1029,Adam Kolarek,3,,1069,tier2_name,Automatic match via exact name to Adam Kolarek +1030,Adam Morgan,3,,1368,tier2_name,Automatic match via exact name to Adam Morgan +1031,Adam Ottavino,3,,1475,tier2_name,Automatic match via exact name to Adam Ottavino +1032,Adam Plutko,3,,1567,tier2_name,Automatic match via exact name to Adam Plutko +1033,Adam Wainwright,3,,2099,tier2_name,Automatic match via exact name to Adam Wainwright +1034,Adam Warren,3,,2118,tier2_name,Automatic match via exact name to Adam Warren +1035,Addison Russell,3,,1728,tier2_name,Automatic match via exact name to Addison Russell +1036,Adeiny Hechavarria,3,,847,tier2_name,Automatic match via exact name to Adeiny Hechavarria +1037,Adrian Houser,3,,928,tier2_name,Automatic match via exact name to Adrian Houser +1038,Adrian Sampson,3,,1742,tier2_name,Automatic match via exact name to Adrian Sampson +1039,Albert Almora,3,,51,tier2_name,Automatic match via exact name to Albert Almora Jr +1040,Albert Pujols,3,,1591,tier2_name,Automatic match via exact name to Albert Pujols +1041,Alec Mills,3,,1330,tier2_name,Automatic match via exact name to Alec Mills +1042,Aledmys Diaz,3,,505,tier2_name,Automatic match via exact name to Aledmys Diaz +1043,Alex Avila,3,,104,tier2_name,Automatic match via exact name to Alex Avila +1044,Alex Bregman,3,,248,tier2_name,Automatic match via exact name to Alex Bregman +1045,Alex Claudio,3,,387,tier2_name,Automatic match via exact name to Alex Claudio +1046,Alex Colome,3,,404,tier2_name,Automatic match via exact name to Alex Colome +1047,Alex Dickerson,3,,512,tier2_name,Automatic match via exact name to Alex Dickerson +1048,Alex Gordon,3,,751,tier2_name,Automatic match via exact name to Alex Gordon +1049,Alex McRae,3,,1288,tier2_name,Automatic match via exact name to Alex McRae +1050,Alex Verdugo,3,,2069,tier2_name,Automatic match via exact name to Alex Verdugo +1051,Alex Wood,3,,2193,tier2_name,Automatic match via exact name to Alex Wood +1052,Alex Young,3,,2217,tier2_name,Automatic match via exact name to Alex Young +1053,Amed Rosario,3,,1711,tier2_name,Automatic match via exact name to Amed Rosario +1054,Amir Garrett,3,,698,tier2_name,Automatic match via exact name to Amir Garrett +1055,Andrelton Simmons,3,,1825,tier2_name,Automatic match via exact name to Andrelton Simmons +1056,Andrew Benintendi,3,,177,tier2_name,Automatic match via exact name to Andrew Benintendi +1057,Andrew Cashner,3,,336,tier2_name,Automatic match via exact name to Andrew Cashner +1058,Andrew Chafin,3,,363,tier2_name,Automatic match via exact name to Andrew Chafin +1059,Andrew Heaney,3,,843,tier2_name,Automatic match via exact name to Andrew Heaney +1060,Andrew Kittredge,3,,1057,tier2_name,Automatic match via exact name to Andrew Kittredge +1061,Andrew Knapp,3,,1062,tier2_name,Automatic match via exact name to Andrew Knapp +1062,Andrew McCutchen,3,,1272,tier2_name,Automatic match via exact name to Andrew McCutchen +1063,Andrew Miller,3,,1320,tier2_name,Automatic match via exact name to Andrew Miller +1064,Andrew Suarez,3,,1935,tier2_name,Automatic match via exact name to Andrew Suarez +1065,Anibal Sanchez,3,,1743,tier2_name,Automatic match via exact name to Anibal Sanchez +1066,Anthony Bass,3,,145,tier2_name,Automatic match via exact name to Anthony Bass +1067,Anthony DeSclafani,3,,493,tier2_name,Automatic match via exact name to Anthony DeSclafani +1068,Anthony Rendon,3,,1630,tier2_name,Automatic match via exact name to Anthony Rendon +1069,Anthony Rizzo,3,,1658,tier2_name,Automatic match via exact name to Anthony Rizzo +1070,Anthony Santander,3,,1764,tier2_name,Automatic match via exact name to Anthony Santander +1071,Anthony Swarzak,3,,1950,tier2_name,Automatic match via exact name to Anthony Swarzak +1072,Antonio Senzatela,3,,1801,tier2_name,Automatic match via exact name to Antonio Senzatela +1073,Archie Bradley,3,,236,tier2_name,Automatic match via exact name to Archie Bradley +1074,Ariel Jurado,3,,1005,tier2_name,Automatic match via exact name to Ariel Jurado +1075,Aristides Aquino,3,,81,tier2_name,Automatic match via exact name to Aristides Aquino +1076,Aroldis Chapman,3,,366,tier2_name,Automatic match via exact name to Aroldis Chapman +1077,Asdrubal Cabrera,3,,299,tier2_name,Automatic match via exact name to Asdrubal Cabrera +1078,Asher Wojciechowski,3,,2186,tier2_name,Automatic match via exact name to Asher Wojciechowski +1079,Austin Adams,3,,16,tier2_name,Automatic match via exact name to Austin Adams +1080,Austin Allen,3,,47,tier2_name,Automatic match via exact name to Austin Allen +1081,Austin Barnes,3,,132,tier2_name,Automatic match via exact name to Austin Barnes +1082,Austin Brice,3,,253,tier2_name,Automatic match via exact name to Austin Brice +1083,Austin Dean,3,,483,tier2_name,Automatic match via exact name to Austin Dean +1084,Austin Hays,3,,839,tier2_name,Automatic match via exact name to Austin Hays +1085,Austin Hedges,3,,848,tier2_name,Automatic match via exact name to Austin Hedges +1086,Austin Meadows,3,,1290,tier2_name,Automatic match via exact name to Austin Meadows +1087,Austin Nola,3,,1432,tier2_name,Automatic match via exact name to Austin Nola +1088,Austin Pruitt,3,,1588,tier2_name,Automatic match via exact name to Austin Pruitt +1089,Austin Riley,3,,1649,tier2_name,Automatic match via exact name to Austin Riley +1090,Austin Romine,3,,1704,tier2_name,Automatic match via exact name to Austin Romine +1091,Austin Slater,3,,1838,tier2_name,Automatic match via exact name to Austin Slater +1092,Austin Voth,3,,2091,tier2_name,Automatic match via exact name to Austin Voth +1093,Austin Wynns,3,,2202,tier2_name,Automatic match via exact name to Austin Wynns +1094,Avisail Garcia,3,,678,tier2_name,Automatic match via exact name to Avisail Garcia +1095,Ben Gamel,3,,676,tier2_name,Automatic match via exact name to Ben Gamel +1096,Ben Zobrist,3,,2232,tier2_name,Automatic match via exact name to Ben Zobrist +1097,Billy Hamilton,3,,810,tier2_name,Automatic match via exact name to Billy Hamilton +1098,Billy McKinney,3,,1283,tier2_name,Automatic match via exact name to Billy McKinney +1099,Blaine Hardy,3,,822,tier2_name,Automatic match via exact name to Blaine Hardy +1100,Blake Parker,3,,1499,tier2_name,Automatic match via exact name to Blake Parker +1101,Blake Snell,3,,1861,tier2_name,Automatic match via exact name to Blake Snell +1102,Blake Swihart,3,,1952,tier2_name,Automatic match via exact name to Blake Swihart +1103,Blake Treinen,3,,2011,tier2_name,Automatic match via exact name to Blake Treinen +1104,Bo Bichette,3,,190,tier2_name,Automatic match via exact name to Bo Bichette +1105,Brad Boxberger,3,,229,tier2_name,Automatic match via exact name to Brad Boxberger +1106,Brad Brach,3,,232,tier2_name,Automatic match via exact name to Brad Brach +1107,Brad Hand,3,,816,tier2_name,Automatic match via exact name to Brad Hand +1108,Brad Keller,3,,1016,tier2_name,Automatic match via exact name to Brad Keller +1109,Brad Miller,3,,1322,tier2_name,Automatic match via exact name to Brad Miller +1110,Brad Peacock,3,,1510,tier2_name,Automatic match via exact name to Brad Peacock +1111,Brad Wieck,3,,2150,tier2_name,Automatic match via exact name to Brad Wieck +1112,Branden Kline,3,,1059,tier2_name,Automatic match via exact name to Branden Kline +1113,Brandon Belt,3,,173,tier2_name,Automatic match via exact name to Brandon Belt +1114,Brandon Brennan,3,,249,tier2_name,Automatic match via exact name to Brandon Brennan +1115,Brandon Crawford,3,,430,tier2_name,Automatic match via exact name to Brandon Crawford +1116,Brandon Dixon,3,,520,tier2_name,Automatic match via exact name to Brandon Dixon +1117,Brandon Drury,3,,535,tier2_name,Automatic match via exact name to Brandon Drury +1118,Brandon Kintzler,3,,1052,tier2_name,Automatic match via exact name to Brandon Kintzler +1119,Brandon Lowe,3,,1156,tier2_name,Automatic match via exact name to Brandon Lowe +1120,Brandon Nimmo,3,,1425,tier2_name,Automatic match via exact name to Brandon Nimmo +1129,Brett Phillips,3,,1555,tier2_name,Automatic match via exact name to Brett Phillips +1121,Brandon Woodruff,3,,2196,tier2_name,Automatic match via exact name to Brandon Woodruff +1122,Brandon Workman,3,,2198,tier2_name,Automatic match via exact name to Brandon Workman +1123,Brendan McKay,3,,1280,tier2_name,Automatic match via exact name to Brendan McKay +1124,Brendan Rodgers,3,,1668,tier2_name,Automatic match via exact name to Brendan Rodgers +1125,Brent Suter,3,,1943,tier2_name,Automatic match via exact name to Brent Suter +1126,Brett Anderson,3,,66,tier2_name,Automatic match via exact name to Brett Anderson +1127,Brett Gardner,3,,695,tier2_name,Automatic match via exact name to Brett Gardner +1128,Brett Martin,3,,1218,tier2_name,Automatic match via exact name to Brett Martin +1130,Brian Anderson,3,,69,tier2_name,Automatic match via exact name to Brian Anderson +1131,Brian Dozier,3,,532,tier2_name,Automatic match via exact name to Brian Dozier +1132,Brian Flynn,3,,631,tier2_name,Automatic match via exact name to Brian Flynn +1133,Brian Goodwin,3,,749,tier2_name,Automatic match via exact name to Brian Goodwin +1134,Brian Johnson,3,,986,tier2_name,Automatic match via exact name to Brian Johnson +1135,Brian McCann,3,,1260,tier2_name,Automatic match via exact name to Brian McCann +1136,Brock Burke,3,,284,tier2_name,Automatic match via exact name to Brock Burke +1137,Brock Holt,3,,921,tier2_name,Automatic match via exact name to Brock Holt +1138,Brock Stewart,3,,1908,tier2_name,Automatic match via exact name to Brock Stewart +1139,Bryan Holaday,3,,911,tier2_name,Automatic match via exact name to Bryan Holaday +1140,Bryan Reynolds,3,,1641,tier2_name,Automatic match via exact name to Bryan Reynolds +1141,Bryan Shaw,3,,1808,tier2_name,Automatic match via exact name to Bryan Shaw +1142,Bryce Harper,3,,823,tier2_name,Automatic match via exact name to Bryce Harper +1143,Bubba Starling,3,,1894,tier2_name,Automatic match via exact name to Bubba Starling +1144,Buck Farmer,3,,597,tier2_name,Automatic match via exact name to Buck Farmer +1145,Buddy Boshers,3,,223,tier2_name,Automatic match via exact name to Buddy Boshers +1146,Buster Posey,3,,1578,tier2_name,Automatic match via exact name to Buster Posey +1147,Byron Buxton,3,,295,tier2_name,Automatic match via exact name to Byron Buxton +1148,CJ Cron,3,,441,tier2_name,Automatic match via exact name to CJ Cron +1149,Cal Quantrill,3,,1593,tier2_name,Automatic match via exact name to Cal Quantrill +1150,Caleb Ferguson,3,,605,tier2_name,Automatic match via exact name to Caleb Ferguson +1151,Caleb Smith,3,,1845,tier2_name,Automatic match via exact name to Caleb Smith +1152,Cam Bedrosian,3,,163,tier2_name,Automatic match via exact name to Cam Bedrosian +1153,Cam Gallagher,3,,670,tier2_name,Automatic match via exact name to Cam Gallagher +1154,Cameron Maybin,3,,1250,tier2_name,Automatic match via exact name to Cameron Maybin +1155,Carlos Carrasco,3,,331,tier2_name,Automatic match via exact name to Carlos Carrasco +1156,Carlos Correa,3,,420,tier2_name,Automatic match via exact name to Carlos Correa +1157,Carlos Estevez,3,,585,tier2_name,Automatic match via exact name to Carlos Estevez +1158,Carlos Gomez,3,,732,tier2_name,Automatic match via exact name to Carlos Gomez +1159,Carlos Gonzalez,3,,740,tier2_name,Automatic match via exact name to Carlos Gonzalez +1160,Carlos Martinez,3,,1223,tier2_name,Automatic match via exact name to Carlos Martinez +1161,Carlos Rodon,3,,1670,tier2_name,Automatic match via exact name to Carlos Rodon +1162,Carlos Santana,3,,1759,tier2_name,Automatic match via exact name to Carlos Santana +1163,Carson Fulmer,3,,667,tier2_name,Automatic match via exact name to Carson Fulmer +1164,Carson Kelly,3,,1023,tier2_name,Automatic match via exact name to Carson Kelly +1165,Casey Sadler,3,,1736,tier2_name,Automatic match via exact name to Casey Sadler +1166,Cavan Biggio,3,,196,tier2_name,Automatic match via exact name to Cavan Biggio +1167,CC Sabathia,3,,1734,tier2_name,Automatic match via exact name to CC Sabathia +1168,Cedric Mullins,3,,1381,tier2_name,Automatic match via exact name to Cedric Mullins +1169,Cesar Hernandez,3,,870,tier2_name,Automatic match via exact name to Cesar Hernandez +1170,Cesar Puello,3,,1589,tier2_name,Automatic match via exact name to Cesar Puello +1171,Chad Bettis,3,,186,tier2_name,Automatic match via exact name to Chad Bettis +1172,Chad Green,3,,768,tier2_name,Automatic match via exact name to Chad Green +1173,Chad Pinder,3,,1559,tier2_name,Automatic match via exact name to Chad Pinder +1174,Chad Sobotka,3,,1863,tier2_name,Automatic match via exact name to Chad Sobotka +1175,Chance Sisco,3,,1831,tier2_name,Automatic match via exact name to Chance Sisco +1176,Charlie Blackmon,3,,205,tier2_name,Automatic match via exact name to Charlie Blackmon +1177,Charlie Culberson,3,,453,tier2_name,Automatic match via exact name to Charlie Culberson +1178,Charlie Morton,3,,1375,tier2_name,Automatic match via exact name to Charlie Morton +1179,Charlie Tilson,3,,1991,tier2_name,Automatic match via exact name to Charlie Tilson +1180,Chase Anderson,3,,67,tier2_name,Automatic match via exact name to Chase Anderson +1181,Chaz Roe,3,,1688,tier2_name,Automatic match via exact name to Chaz Roe +1182,Cheslor Cuthbert,3,,456,tier2_name,Automatic match via exact name to Cheslor Cuthbert +1183,Chi Chi Gonzalez,3,,737,tier2_name,Automatic match via exact name to Chi Chi Gonzalez +1184,Chris Archer,3,,85,tier2_name,Automatic match via exact name to Chris Archer +1185,Chris Bassitt,3,,146,tier2_name,Automatic match via exact name to Chris Bassitt +1186,Chris Davis,3,,467,tier2_name,Automatic match via exact name to Chris Davis +1187,Chris Devenski,3,,498,tier2_name,Automatic match via exact name to Chris Devenski +1188,Chris Herrmann,3,,887,tier2_name,Automatic match via exact name to Chris Herrmann +1189,Chris Iannetta,3,,947,tier2_name,Automatic match via exact name to Chris Iannetta +1190,Chris Martin,3,,1214,tier2_name,Automatic match via exact name to Chris Martin +1191,Chris Owings,3,,1480,tier2_name,Automatic match via exact name to Chris Owings +1192,Chris Paddack,3,,1483,tier2_name,Automatic match via exact name to Chris Paddack +1193,Chris Sale,3,,1739,tier2_name,Automatic match via exact name to Chris Sale +1194,Chris Stratton,3,,1922,tier2_name,Automatic match via exact name to Chris Stratton +1195,Chris Taylor,3,,1964,tier2_name,Automatic match via exact name to Chris Taylor +1196,Christian Vazquez,3,,2063,tier2_name,Automatic match via exact name to Christian Vazquez +1197,Christian Walker,3,,2104,tier2_name,Automatic match via exact name to Christian Walker +1198,Christian Yelich,3,,2212,tier2_name,Automatic match via exact name to Christian Yelich +1199,Christin Stewart,3,,1910,tier2_name,Automatic match via exact name to Christin Stewart +1200,Clay Buchholz,3,,275,tier2_name,Automatic match via exact name to Clay Buchholz +1201,Clay Holmes,3,,919,tier2_name,Automatic match via exact name to Clay Holmes +1202,Clayton Kershaw,3,,1034,tier2_name,Automatic match via exact name to Clayton Kershaw +1203,Clayton Richard,3,,1644,tier2_name,Automatic match via exact name to Clayton Richard +1204,Clint Frazier,3,,649,tier2_name,Automatic match via exact name to Clint Frazier +1205,Cody Bellinger,3,,170,tier2_name,Automatic match via exact name to Cody Bellinger +1206,Cody Stashak,3,,1895,tier2_name,Automatic match via exact name to Cody Stashak +1207,Cole Hamels,3,,809,tier2_name,Automatic match via exact name to Cole Hamels +1208,Cole Irvin,3,,954,tier2_name,Automatic match via exact name to Cole Irvin +1209,Cole Tucker,3,,2022,tier2_name,Automatic match via exact name to Cole Tucker +1210,Colin Moran,3,,1360,tier2_name,Automatic match via exact name to Colin Moran +1211,Colin Poche,3,,1568,tier2_name,Automatic match via exact name to Colin Poche +1212,Collin McHugh,3,,1278,tier2_name,Automatic match via exact name to Collin McHugh +1213,Colten Brewer,3,,252,tier2_name,Automatic match via exact name to Colten Brewer +1214,Corban Joseph,3,,997,tier2_name,Automatic match via exact name to Corban Joseph +1215,Corbin Burnes,3,,286,tier2_name,Automatic match via exact name to Corbin Burnes +1216,Corey Dickerson,3,,513,tier2_name,Automatic match via exact name to Corey Dickerson +1217,Corey Kluber,3,,1060,tier2_name,Automatic match via exact name to Corey Kluber +1218,Corey Seager,3,,1794,tier2_name,Automatic match via exact name to Corey Seager +1219,Cory Gearrin,3,,708,tier2_name,Automatic match via exact name to Cory Gearrin +1220,Cory Spangenberg,3,,1883,tier2_name,Automatic match via exact name to Cory Spangenberg +1221,Craig Kimbrel,3,,1043,tier2_name,Automatic match via exact name to Craig Kimbrel +1222,Craig Stammen,3,,1891,tier2_name,Automatic match via exact name to Craig Stammen +1223,Curt Casali,3,,334,tier2_name,Automatic match via exact name to Curt Casali +1224,Curtis Granderson,3,,762,tier2_name,Automatic match via exact name to Curtis Granderson +1225,Dakota Hudson,3,,934,tier2_name,Automatic match via exact name to Dakota Hudson +1226,Dallas Keuchel,3,,1035,tier2_name,Automatic match via exact name to Dallas Keuchel +1227,Dan Otero,3,,1474,tier2_name,Automatic match via exact name to Dan Otero +1228,Dan Straily,3,,1919,tier2_name,Automatic match via exact name to Dan Straily +1229,Daniel Descalso,3,,492,tier2_name,Automatic match via exact name to Daniel Descalso +1230,Daniel Hudson,3,,933,tier2_name,Automatic match via exact name to Daniel Hudson +1231,Daniel Mengden,3,,1305,tier2_name,Automatic match via exact name to Daniel Mengden +1232,Daniel Murphy,3,,1387,tier2_name,Automatic match via exact name to Daniel Murphy +1233,Daniel Norris,3,,1439,tier2_name,Automatic match via exact name to Daniel Norris +1234,Daniel Palka,3,,1491,tier2_name,Automatic match via exact name to Daniel Palka +1235,Daniel Ponce de Leon,3,,1574,tier2_name,Automatic match via exact name to Daniel Ponce de Leon +1236,Daniel Robertson,3,,1663,tier2_name,Automatic match via exact name to Daniel Robertson +1237,Daniel Stumpf,3,,1932,tier2_name,Automatic match via exact name to Daniel Stumpf +1238,Daniel Vogelbach,3,,2085,tier2_name,Automatic match via exact name to Daniel Vogelbach +1239,Danny Duffy,3,,541,tier2_name,Automatic match via exact name to Danny Duffy +1240,Danny Jansen,3,,969,tier2_name,Automatic match via exact name to Danny Jansen +1241,Danny Santana,3,,1760,tier2_name,Automatic match via exact name to Danny Santana +1242,Dansby Swanson,3,,1947,tier2_name,Automatic match via exact name to Dansby Swanson +1243,Dario Agrazal,3,,23,tier2_name,Automatic match via exact name to Dario Agrazal +1244,Darwinzon Hernandez,3,,877,tier2_name,Automatic match via exact name to Darwinzon Hernandez +1245,David Bote,3,,224,tier2_name,Automatic match via exact name to David Bote +1246,David Dahl,3,,457,tier2_name,Automatic match via exact name to David Dahl +1247,David Fletcher,3,,624,tier2_name,Automatic match via exact name to David Fletcher +1248,David Freese,3,,655,tier2_name,Automatic match via exact name to David Freese +1249,David Hale,3,,805,tier2_name,Automatic match via exact name to David Hale +1250,David Hernandez,3,,868,tier2_name,Automatic match via exact name to David Hernandez +1251,David Hess,3,,889,tier2_name,Automatic match via exact name to David Hess +1252,David McKay,3,,1279,tier2_name,Automatic match via exact name to David McKay +1253,David Peralta,3,,1522,tier2_name,Automatic match via exact name to David Peralta +1254,David Phelps,3,,1554,tier2_name,Automatic match via exact name to David Phelps +1255,David Price,3,,1585,tier2_name,Automatic match via exact name to David Price +1256,Dawel Lugo,3,,1166,tier2_name,Automatic match via exact name to Dawel Lugo +1257,Dee Strange Gordon,3,,1920,tier2_name,Automatic match via exact name to Dee Strange Gordon +1258,Delino DeShields,3,,494,tier2_name,Automatic match via exact name to Delino DeShields +1259,Dereck Rodriguez,3,,1676,tier2_name,Automatic match via exact name to Dereck Rodriguez +1260,Derek Dietrich,3,,515,tier2_name,Automatic match via exact name to Derek Dietrich +1261,Derek Fisher,3,,618,tier2_name,Automatic match via exact name to Derek Fisher +1262,Derek Holland,3,,914,tier2_name,Automatic match via exact name to Derek Holland +1263,Derek Law,3,,1098,tier2_name,Automatic match via exact name to Derek Law +1264,Devin Smeltzer,3,,1840,tier2_name,Automatic match via exact name to Devin Smeltzer +1265,Dexter Fowler,3,,639,tier2_name,Automatic match via exact name to Dexter Fowler +1266,Didi Gregorius,3,,772,tier2_name,Automatic match via exact name to Didi Gregorius +1267,Diego Castillo,3,,3235,manual_new,Manual assignment to new SbaPlayer: Diego Castillo +1268,Dillon Peters,3,,1544,tier2_name,Automatic match via exact name to Dillon Peters +1269,Dinelson Lamet,3,,1090,tier2_name,Automatic match via exact name to Dinelson Lamet +1270,DJ LeMahieu,3,,1114,tier2_name,Automatic match via exact name to DJ LeMahieu +1271,DJ Stewart,3,,1909,tier2_name,Automatic match via exact name to DJ Stewart +1272,Domingo German,3,,713,tier2_name,Automatic match via exact name to Domingo German +1273,Domingo Santana,3,,1761,tier2_name,Automatic match via exact name to Domingo Santana +1274,Dominic Leone,3,,1116,tier2_name,Automatic match via exact name to Dominic Leone +1275,Dominic Smith,3,,1849,tier2_name,Automatic match via exact name to Dominic Smith +1276,Donovan Solano,3,,1868,tier2_name,Automatic match via exact name to Donovan Solano +1277,Drew Pomeranz,3,,1572,tier2_name,Automatic match via exact name to Drew Pomeranz +1278,Drew Smyly,3,,1858,tier2_name,Automatic match via exact name to Drew Smyly +1279,Drew VerHagen,3,,2070,tier2_name,Automatic match via exact name to Drew VerHagen +1280,Dustin Garneau,3,,697,tier2_name,Automatic match via exact name to Dustin Garneau +1281,Dustin May,3,,1249,tier2_name,Automatic match via exact name to Dustin May +1282,Dwight Smith Jr,3,,1855,tier2_name,Automatic match via exact name to Dwight Smith Jr +1283,Dylan Bundy,3,,280,tier2_name,Automatic match via exact name to Dylan Bundy +1284,Dylan Cease,3,,355,tier2_name,Automatic match via exact name to Dylan Cease +1285,Dylan Covey,3,,425,tier2_name,Automatic match via exact name to Dylan Covey +1286,Dylan Floro,3,,629,tier2_name,Automatic match via exact name to Dylan Floro +1287,Dylan Moore,3,,1358,tier2_name,Automatic match via exact name to Dylan Moore +1288,Eddie Rosario,3,,1710,tier2_name,Automatic match via exact name to Eddie Rosario +1289,Edgar Garcia,3,,686,tier2_name,Automatic match via exact name to Edgar Garcia +1290,Eduardo Escobar,3,,581,tier2_name,Automatic match via exact name to Eduardo Escobar +1291,Eduardo Nunez,3,,1442,tier2_name,Automatic match via exact name to Eduardo Nunez +1292,Eduardo Rodriguez,3,,1675,tier2_name,Automatic match via exact name to Eduardo Rodriguez +1293,Edwin Diaz,3,,503,tier2_name,Automatic match via exact name to Edwin Diaz +1294,Edwin Encarnacion,3,,571,tier2_name,Automatic match via exact name to Edwin Encarnacion +1295,Edwin Jackson,3,,957,tier2_name,Automatic match via exact name to Edwin Jackson +1296,Ehire Adrianza,3,,22,tier2_name,Automatic match via exact name to Ehire Adrianza +1297,Elias Diaz,3,,502,tier2_name,Automatic match via exact name to Elias Diaz +1298,Elieser Hernandez,3,,874,tier2_name,Automatic match via exact name to Elieser Hernandez +1299,Eloy Jimenez,3,,980,tier2_name,Automatic match via exact name to Eloy Jimenez +1300,Elvis Andrus,3,,77,tier2_name,Automatic match via exact name to Elvis Andrus +1301,Elvis Luciano,3,,1161,tier2_name,Automatic match via exact name to Elvis Luciano +1302,Emilio Pagan,3,,1484,tier2_name,Automatic match via exact name to Emilio Pagan +1303,Ender Inciarte,3,,952,tier2_name,Automatic match via exact name to Ender Inciarte +1304,Enrique Hernandez,3,,871,tier2_name,Automatic match via exact name to Enrique Hernandez +1305,Eric Hosmer,3,,926,tier2_name,Automatic match via exact name to Eric Hosmer +1306,Eric Lauer,3,,1096,tier2_name,Automatic match via exact name to Eric Lauer +1307,Eric Sogard,3,,1865,tier2_name,Automatic match via exact name to Eric Sogard +1308,Eric Thames,3,,1976,tier2_name,Automatic match via exact name to Eric Thames +1309,Erick Fedde,3,,600,tier2_name,Automatic match via exact name to Erick Fedde +1310,Erik Gonzalez,3,,742,tier2_name,Automatic match via exact name to Erik Gonzalez +1311,Erik Swanson,3,,1948,tier2_name,Automatic match via exact name to Erik Swanson +1312,Eugenio Suarez,3,,1934,tier2_name,Automatic match via exact name to Eugenio Suarez +1313,Evan Longoria,3,,1140,tier2_name,Automatic match via exact name to Evan Longoria +1314,Evan Marshall,3,,1207,tier2_name,Automatic match via exact name to Evan Marshall +1315,Evan Phillips,3,,3238,manual_new,Manual assignment to new SbaPlayer: Evan Phillips +1316,Felipe Vazquez,3,,2064,tier2_name,Automatic match via exact name to Felipe Vazquez +1317,Felix Hernandez,3,,867,tier2_name,Automatic match via exact name to Felix Hernandez +1318,Felix Pena,3,,1518,tier2_name,Automatic match via exact name to Felix Pena +1319,Fernando Rodney,3,,1669,tier2_name,Automatic match via exact name to Fernando Rodney +1320,Fernando Tatis Jr,3,,1960,tier2_name,Automatic match via exact name to Fernando Tatis Jr +1321,Framber Valdez,3,,2048,tier2_name,Automatic match via exact name to Framber Valdez +1322,Francisco Cervelli,3,,359,tier2_name,Automatic match via exact name to Francisco Cervelli +1323,Francisco Lindor,3,,1124,tier2_name,Automatic match via exact name to Francisco Lindor +1324,Francisco Liriano,3,,1126,tier2_name,Automatic match via exact name to Francisco Liriano +1325,Francisco Mejia,3,,3239,manual_new,Manual assignment to new SbaPlayer: Francisco Mejia +1326,Frankie Montas,3,,1351,tier2_name,Automatic match via exact name to Frankie Montas +1327,Franmil Reyes,3,,1634,tier2_name,Automatic match via exact name to Franmil Reyes +1328,Freddie Freeman,3,,652,tier2_name,Automatic match via exact name to Freddie Freeman +1329,Freddy Galvis,3,,675,tier2_name,Automatic match via exact name to Freddy Galvis +1330,Freddy Peralta,3,,1525,tier2_name,Automatic match via exact name to Freddy Peralta +1331,Gabriel Ynoa,3,,2214,tier2_name,Automatic match via exact name to Gabriel Ynoa +1332,Garrett Cooper,3,,415,tier2_name,Automatic match via exact name to Garrett Cooper +1333,Garrett Hampson,3,,814,tier2_name,Automatic match via exact name to Garrett Hampson +1334,Gary Sanchez,3,,1746,tier2_name,Automatic match via exact name to Gary Sanchez +1335,Gavin Lux,3,,1169,tier2_name,Automatic match via exact name to Gavin Lux +1336,Geoff Hartlieb,3,,833,tier2_name,Automatic match via exact name to Geoff Hartlieb +1337,George Springer,3,,1888,tier2_name,Automatic match via exact name to George Springer +1338,Gerardo Parra,3,,1501,tier2_name,Automatic match via exact name to Gerardo Parra +1339,Gerardo Reyes,3,,1636,tier2_name,Automatic match via exact name to Gerardo Reyes +1340,German Marquez,3,,1204,tier2_name,Automatic match via exact name to German Marquez +1341,Gerrit Cole,3,,398,tier2_name,Automatic match via exact name to Gerrit Cole +1342,Giancarlo Stanton,3,,1893,tier2_name,Automatic match via exact name to Giancarlo Stanton +1343,Gio Gonzalez,3,,739,tier2_name,Automatic match via exact name to Gio Gonzalez +1344,Gio Urshela,3,,2042,tier2_name,Automatic match via exact name to Gio Urshela +1345,Giovanny Gallegos,3,,672,tier2_name,Automatic match via exact name to Giovanny Gallegos +1346,Glenn Sparkman,3,,1884,tier2_name,Automatic match via exact name to Glenn Sparkman +1347,Gleyber Torres,3,,2003,tier2_name,Automatic match via exact name to Gleyber Torres +1348,Gordon Beckham,3,,160,tier2_name,Automatic match via exact name to Gordon Beckham +1349,Grayson Greiner,3,,773,tier2_name,Automatic match via exact name to Grayson Greiner +1350,Greg Allen,3,,44,tier2_name,Automatic match via exact name to Greg Allen +1351,Greg Garcia,3,,681,tier2_name,Automatic match via exact name to Greg Garcia +1352,Greg Holland,3,,915,tier2_name,Automatic match via exact name to Greg Holland +1353,Gregory Polanco,3,,1569,tier2_name,Automatic match via exact name to Gregory Polanco +1354,Gregory Soto,3,,1878,tier2_name,Automatic match via exact name to Gregory Soto +1355,Griffin Canning,3,,317,tier2_name,Automatic match via exact name to Griffin Canning +1356,Guillermo Heredia,3,,862,tier2_name,Automatic match via exact name to Guillermo Heredia +1357,Hansel Robles,3,,1665,tier2_name,Automatic match via exact name to Hansel Robles +1358,Hanser Alberto,3,,30,tier2_name,Automatic match via exact name to Hanser Alberto +1359,Harold Castro,3,,349,tier2_name,Automatic match via exact name to Harold Castro +1360,Harold Ramirez,3,,1609,tier2_name,Automatic match via exact name to Harold Ramirez +1361,Harrison Bader,3,,110,tier2_name,Automatic match via exact name to Harrison Bader +1362,Heath Hembree,3,,854,tier2_name,Automatic match via exact name to Heath Hembree +1363,Hector Neris,3,,1413,tier2_name,Automatic match via exact name to Hector Neris +1364,Hector Noesi,3,,1429,tier2_name,Automatic match via exact name to Hector Noesi +1365,Hector Rondon,3,,1706,tier2_name,Automatic match via exact name to Hector Rondon +1366,Hector Santiago,3,,1765,tier2_name,Automatic match via exact name to Hector Santiago +1367,Hector Velazquez,3,,2066,tier2_name,Automatic match via exact name to Hector Velazquez +1368,Hernan Perez,3,,1536,tier2_name,Automatic match via exact name to Hernan Perez +1369,Homer Bailey,3,,114,tier2_name,Automatic match via exact name to Homer Bailey +1370,Howie Kendrick,3,,1028,tier2_name,Automatic match via exact name to Howie Kendrick +1371,Humberto Arteaga,3,,97,tier2_name,Automatic match via exact name to Humberto Arteaga +1372,Hunter Dozier,3,,533,tier2_name,Automatic match via exact name to Hunter Dozier +1373,Hunter Pence,3,,1520,tier2_name,Automatic match via exact name to Hunter Pence +1374,Hunter Renfroe,3,,1631,tier2_name,Automatic match via exact name to Hunter Renfroe +1375,Hunter Wood,3,,2192,tier2_name,Automatic match via exact name to Hunter Wood +1376,Hyun Jin Ryu,3,,1733,tier2_name,Automatic match via exact name to Hyun Jin Ryu +1377,Ian Desmond,3,,495,tier2_name,Automatic match via exact name to Ian Desmond +1378,Ian Happ,3,,820,tier2_name,Automatic match via exact name to Ian Happ +1379,Ian Kennedy,3,,1029,tier2_name,Automatic match via exact name to Ian Kennedy +1380,Ian Kinsler,3,,1051,tier2_name,Automatic match via exact name to Ian Kinsler +1381,Ildemaro Vargas,3,,2054,tier2_name,Automatic match via exact name to Ildemaro Vargas +1382,Isan Diaz,3,,508,tier2_name,Automatic match via exact name to Isan Diaz +1383,Isiah Kiner Falefa,3,,1044,tier2_name,Automatic match via exact name to Isiah Kiner Falefa +1384,Ivan Nova,3,,1441,tier2_name,Automatic match via exact name to Ivan Nova +1385,JA Happ,3,,821,tier2_name,Automatic match via exact name to JA Happ +1386,JB Wendelken,3,,2134,tier2_name,Automatic match via exact name to JB Wendelken +1387,JD Davis,3,,474,tier2_name,Automatic match via exact name to JD Davis +1388,JD Martinez,3,,1229,tier2_name,Automatic match via exact name to JD Martinez +1389,JP Crawford,3,,432,tier2_name,Automatic match via exact name to JP Crawford +1390,JT Realmuto,3,,1622,tier2_name,Automatic match via exact name to JT Realmuto +1391,Jace Fry,3,,661,tier2_name,Automatic match via exact name to Jace Fry +1392,Jace Peterson,3,,1547,tier2_name,Automatic match via exact name to Jace Peterson +1393,Jack Flaherty,3,,622,tier2_name,Automatic match via exact name to Jack Flaherty +1394,Jack Mayfield,3,,1252,tier2_name,Automatic match via exact name to Jack Mayfield +1395,Jackie Bradley Jr,3,,239,tier2_name,Automatic match via exact name to Jackie Bradley Jr +1396,Jacob Barnes,3,,133,tier2_name,Automatic match via exact name to Jacob Barnes +1397,Jacob deGrom,3,,484,tier2_name,Automatic match via exact name to Jacob deGrom +1398,Jacob Stallings,3,,1890,tier2_name,Automatic match via exact name to Jacob Stallings +1399,Jacob Waguespack,3,,2098,tier2_name,Automatic match via exact name to Jacob Waguespack +1400,Jacob Webb,3,,2126,tier2_name,Automatic match via exact name to Jacob Webb +1401,JaCoby Jones,3,,991,tier2_name,Automatic match via exact name to JaCoby Jones +1402,Jaime Barria,3,,141,tier2_name,Automatic match via exact name to Jaime Barria +1403,Jairo Diaz,3,,501,tier2_name,Automatic match via exact name to Jairo Diaz +1404,Jake Arrieta,3,,94,tier2_name,Automatic match via exact name to Jake Arrieta +1405,Jake Bauers,3,,151,tier2_name,Automatic match via exact name to Jake Bauers +1406,Jake Cave,3,,354,tier2_name,Automatic match via exact name to Jake Cave +1407,Jake Diekman,3,,514,tier2_name,Automatic match via exact name to Jake Diekman +1408,Jake Jewell,3,,978,tier2_name,Automatic match via exact name to Jake Jewell +1409,Jake Lamb,3,,1087,tier2_name,Automatic match via exact name to Jake Lamb +1410,Jake Marisnick,3,,1200,tier2_name,Automatic match via exact name to Jake Marisnick +1411,Jake McGee,3,,1274,tier2_name,Automatic match via exact name to Jake McGee +1412,Jake Newberry,3,,1418,tier2_name,Automatic match via exact name to Jake Newberry +1413,Jake Odorizzi,3,,1452,tier2_name,Automatic match via exact name to Jake Odorizzi +1414,Jake Rogers,3,,1692,tier2_name,Automatic match via exact name to Jake Rogers +1415,Jakob Junis,3,,1004,tier2_name,Automatic match via exact name to Jakob Junis +1416,Jalen Beeks,3,,165,tier2_name,Automatic match via exact name to Jalen Beeks +1417,James McCann,3,,1261,tier2_name,Automatic match via exact name to James McCann +1418,James Paxton,3,,1506,tier2_name,Automatic match via exact name to James Paxton +1419,Jameson Taillon,3,,1954,tier2_name,Automatic match via exact name to Jameson Taillon +1420,Jandel Gustave,3,,795,tier2_name,Automatic match via exact name to Jandel Gustave +1421,Jared Hughes,3,,937,tier2_name,Automatic match via exact name to Jared Hughes +1422,Jared Walsh,3,,2111,tier2_name,Automatic match via exact name to Jared Walsh +1423,Jarlin Garcia,3,,684,tier2_name,Automatic match via exact name to Jarlin Garcia +1424,Jarrod Dyson,3,,555,tier2_name,Automatic match via exact name to Jarrod Dyson +1425,Jason Castro,3,,347,tier2_name,Automatic match via exact name to Jason Castro +1426,Jason Heyward,3,,891,tier2_name,Automatic match via exact name to Jason Heyward +1427,Jason Kipnis,3,,1053,tier2_name,Automatic match via exact name to Jason Kipnis +1428,Jason Vargas,3,,2053,tier2_name,Automatic match via exact name to Jason Vargas +1429,Javier Baez,3,,112,tier2_name,Automatic match via exact name to Javier Baez +1430,Javy Guerra,3,,3236,manual_new,Manual assignment to new SbaPlayer: Javy Guerra +1431,Jay Bruce,3,,270,tier2_name,Automatic match via exact name to Jay Bruce +1432,Jay Jackson,3,,959,tier2_name,Automatic match via exact name to Jay Jackson +1433,Jean Segura,3,,1796,tier2_name,Automatic match via exact name to Jean Segura +1434,Jedd Gyorko,3,,800,tier2_name,Automatic match via exact name to Jedd Gyorko +1435,Jeff Brigham,3,,257,tier2_name,Automatic match via exact name to Jeff Brigham +1436,Jeff Hoffman,3,,910,tier2_name,Automatic match via exact name to Jeff Hoffman +1437,Jeff Mathis,3,,1235,tier2_name,Automatic match via exact name to Jeff Mathis +1438,Jeff McNeil,3,,1287,tier2_name,Automatic match via exact name to Jeff McNeil +1439,Jeff Samardzija,3,,1740,tier2_name,Automatic match via exact name to Jeff Samardzija +1440,Jeffrey Springs,3,,1889,tier2_name,Automatic match via exact name to Jeffrey Springs +1441,Jefry Rodriguez,3,,1677,tier2_name,Automatic match via exact name to Jefry Rodriguez +1442,Jeimer Candelario,3,,315,tier2_name,Automatic match via exact name to Jeimer Candelario +1443,Jerad Eickhoff,3,,563,tier2_name,Automatic match via exact name to Jerad Eickhoff +1444,Jeremy Hellickson,3,,852,tier2_name,Automatic match via exact name to Jeremy Hellickson +1445,Jeremy Jeffress,3,,976,tier2_name,Automatic match via exact name to Jeremy Jeffress +1446,Jerry Blevins,3,,213,tier2_name,Automatic match via exact name to Jerry Blevins +1447,Jesse Biddle,3,,192,tier2_name,Automatic match via exact name to Jesse Biddle +1448,Jesse Chavez,3,,370,tier2_name,Automatic match via exact name to Jesse Chavez +1449,Jesse Winker,3,,2177,tier2_name,Automatic match via exact name to Jesse Winker +1450,Jesus Aguilar,3,,25,tier2_name,Automatic match via exact name to Jesus Aguilar +1451,Jesus Luzardo,3,,1170,tier2_name,Automatic match via exact name to Jesus Luzardo +1452,Jesus Sucre,3,,1939,tier2_name,Automatic match via exact name to Jesus Sucre +1453,Jesus Tinoco,3,,1992,tier2_name,Automatic match via exact name to Jesus Tinoco +1454,Jeurys Familia,3,,595,tier2_name,Automatic match via exact name to Jeurys Familia +1455,Jhoulys Chacin,3,,362,tier2_name,Automatic match via exact name to Jhoulys Chacin +1456,Ji Man Choi,3,,377,tier2_name,Automatic match via exact name to Ji Man Choi +1457,Jimmy Cordero,3,,419,tier2_name,Automatic match via exact name to Jimmy Cordero +1458,Jimmy Yacabonis,3,,2203,tier2_name,Automatic match via exact name to Jimmy Yacabonis +1459,Joakim Soria,3,,1872,tier2_name,Automatic match via exact name to Joakim Soria +1460,Joc Pederson,3,,1514,tier2_name,Automatic match via exact name to Joc Pederson +1461,Joe Biagini,3,,188,tier2_name,Automatic match via exact name to Joe Biagini +1462,Joe Jimenez,3,,979,tier2_name,Automatic match via exact name to Joe Jimenez +1463,Joe Kelly,3,,1021,tier2_name,Automatic match via exact name to Joe Kelly +1464,Joe Musgrove,3,,1394,tier2_name,Automatic match via exact name to Joe Musgrove +1465,Joe Panik,3,,1493,tier2_name,Automatic match via exact name to Joe Panik +1466,Joe Ross,3,,1715,tier2_name,Automatic match via exact name to Joe Ross +1467,Joe Smith,3,,1842,tier2_name,Automatic match via exact name to Joe Smith +1468,Joey Gallo,3,,674,tier2_name,Automatic match via exact name to Joey Gallo +1469,Joey Lucchesi,3,,1160,tier2_name,Automatic match via exact name to Joey Lucchesi +1470,Joey Rickard,3,,1647,tier2_name,Automatic match via exact name to Joey Rickard +1471,Joey Votto,3,,2092,tier2_name,Automatic match via exact name to Joey Votto +1472,Joey Wendle,3,,2135,tier2_name,Automatic match via exact name to Joey Wendle +1473,Johan Camargo,3,,309,tier2_name,Automatic match via exact name to Johan Camargo +1474,John Brebbia,3,,247,tier2_name,Automatic match via exact name to John Brebbia +1475,John Gant,3,,677,tier2_name,Automatic match via exact name to John Gant +1476,John Hicks,3,,893,tier2_name,Automatic match via exact name to John Hicks +1477,John Means,3,,2,tier2_name,Automatic match via exact name to John Means +1478,John Ryan Murphy,3,,1392,tier2_name,Automatic match via exact name to John Ryan Murphy +1479,Jon Berti,3,,183,tier2_name,Automatic match via exact name to Jon Berti +1480,Jon Duplantier,3,,549,tier2_name,Automatic match via exact name to Jon Duplantier +1481,Jon Gray,3,,766,tier2_name,Automatic match via exact name to Jon Gray +1482,Jon Jay,3,,973,tier2_name,Automatic match via exact name to Jon Jay +1483,Jon Lester,3,,1117,tier2_name,Automatic match via exact name to Jon Lester +1484,Jonathan Davis,3,,470,tier2_name,Automatic match via exact name to Jonathan Davis +1485,Jonathan Holder,3,,912,tier2_name,Automatic match via exact name to Jonathan Holder +1486,Jonathan Loaisiga,3,,1132,tier2_name,Automatic match via exact name to Jonathan Loaisiga +1487,Jonathan Lucroy,3,,1163,tier2_name,Automatic match via exact name to Jonathan Lucroy +1488,Jonathan Schoop,3,,1779,tier2_name,Automatic match via exact name to Jonathan Schoop +1489,Jonathan Villar,3,,2079,tier2_name,Automatic match via exact name to Jonathan Villar +1490,Jordan Hicks,3,,894,tier2_name,Automatic match via exact name to Jordan Hicks +1491,Jordan Luplow,3,,1168,tier2_name,Automatic match via exact name to Jordan Luplow +1492,Jordan Lyles,3,,1171,tier2_name,Automatic match via exact name to Jordan Lyles +1493,Jordan Yamamoto,3,,2205,tier2_name,Automatic match via exact name to Jordan Yamamoto +1494,Jordan Zimmermann,3,,2230,tier2_name,Automatic match via exact name to Jordan Zimmermann +1495,Jordy Mercer,3,,1308,tier2_name,Automatic match via exact name to Jordy Mercer +1496,Jorge Alfaro,3,,40,tier2_name,Automatic match via exact name to Jorge Alfaro +1497,Jorge Lopez,3,,1144,tier2_name,Automatic match via exact name to Jorge Lopez +1498,Jorge Polanco,3,,1570,tier2_name,Automatic match via exact name to Jorge Polanco +1499,Jorge Soler,3,,1870,tier2_name,Automatic match via exact name to Jorge Soler +1500,Jose Abreu,3,,7,tier2_name,Automatic match via exact name to Jose Abreu +1501,Jose Altuve,3,,56,tier2_name,Automatic match via exact name to Jose Altuve +1502,Jose Alvarado,3,,58,tier2_name,Automatic match via exact name to Jose Alvarado +1503,Jose Alvarez,3,,59,tier2_name,Automatic match via exact name to Jose Alvarez +1504,Jose Berrios,3,,182,tier2_name,Automatic match via exact name to Jose Berrios +1505,Jose Cisnero,3,,382,tier2_name,Automatic match via exact name to Jose Cisnero +1506,Jose Iglesias,3,,949,tier2_name,Automatic match via exact name to Jose Iglesias +1507,Jose Leclerc,3,,1106,tier2_name,Automatic match via exact name to Jose Leclerc +1508,Jose Martinez,3,,1222,tier2_name,Automatic match via exact name to Jose Martinez +1509,Jose Osuna,3,,1471,tier2_name,Automatic match via exact name to Jose Osuna +1510,Jose Peraza,3,,1527,tier2_name,Automatic match via exact name to Jose Peraza +1511,Jose Quijada,3,,1594,tier2_name,Automatic match via exact name to Jose Quijada +1512,Jose Quintana,3,,1596,tier2_name,Automatic match via exact name to Jose Quintana +1513,Jose Ramirez,3,,1608,tier2_name,Automatic match via exact name to Jose Ramirez +1514,Jose Rondon,3,,1707,tier2_name,Automatic match via exact name to Jose Rondon +1515,Jose Ruiz,3,,1724,tier2_name,Automatic match via exact name to Jose Ruiz +1516,Jose Suarez,3,,1937,tier2_name,Automatic match via exact name to Jose Suarez +1517,Jose Trevino,3,,2013,tier2_name,Automatic match via exact name to Jose Trevino +1518,Jose Urena,3,,2035,tier2_name,Automatic match via exact name to Jose Urena +1519,Jose Urquidy,3,,2041,tier2_name,Automatic match via exact name to Jose Urquidy +1520,Josh Bell,3,,168,tier2_name,Automatic match via exact name to Josh Bell +1521,Josh Donaldson,3,,526,tier2_name,Automatic match via exact name to Josh Donaldson +1522,Josh Hader,3,,802,tier2_name,Automatic match via exact name to Josh Hader +1523,Josh Harrison,3,,829,tier2_name,Automatic match via exact name to Josh Harrison +1524,Josh James,3,,965,tier2_name,Automatic match via exact name to Josh James +1525,Josh Naylor,3,,1404,tier2_name,Automatic match via exact name to Josh Naylor +1526,Josh Osich,3,,1469,tier2_name,Automatic match via exact name to Josh Osich +1527,Josh Phegley,3,,1553,tier2_name,Automatic match via exact name to Josh Phegley +1528,Josh Reddick,3,,1623,tier2_name,Automatic match via exact name to Josh Reddick +1529,Josh Rojas,3,,1695,tier2_name,Automatic match via exact name to Josh Rojas +1530,Josh Smith,3,,1852,tier2_name,Automatic match via exact name to Josh Smith +1531,Josh Taylor,3,,1967,tier2_name,Automatic match via exact name to Josh Taylor +1532,Josh Tomlin,3,,1996,tier2_name,Automatic match via exact name to Josh Tomlin +1533,Josh VanMeter,3,,2052,tier2_name,Automatic match via exact name to Josh VanMeter +1534,JT Riddle,3,,1648,tier2_name,Automatic match via exact name to JT Riddle +1535,Juan Lagares,3,,1083,tier2_name,Automatic match via exact name to Juan Lagares +1536,Juan Minaya,3,,1334,tier2_name,Automatic match via exact name to Juan Minaya +1537,Juan Nicasio,3,,1422,tier2_name,Automatic match via exact name to Juan Nicasio +1538,Juan Soto,3,,1879,tier2_name,Automatic match via exact name to Juan Soto +1539,Julio Teheran,3,,1970,tier2_name,Automatic match via exact name to Julio Teheran +1540,Julio Urias,3,,2038,tier2_name,Automatic match via exact name to Julio Urias +1541,Jung Ho Kang,3,,1007,tier2_name,Automatic match via exact name to Jung Ho Kang +1542,Junior Guerra,3,,785,tier2_name,Automatic match via exact name to Junior Guerra +1543,Jurickson Profar,3,,1587,tier2_name,Automatic match via exact name to Jurickson Profar +1544,Justin Anderson,3,,70,tier2_name,Automatic match via exact name to Justin Anderson +1545,Justin Bour,3,,226,tier2_name,Automatic match via exact name to Justin Bour +1546,Justin Shafer,3,,1807,tier2_name,Automatic match via exact name to Justin Shafer +1547,Justin Smoak,3,,1857,tier2_name,Automatic match via exact name to Justin Smoak +1548,Justin Turner,3,,2029,tier2_name,Automatic match via exact name to Justin Turner +1549,Justin Upton,3,,2034,tier2_name,Automatic match via exact name to Justin Upton +1550,Justin Verlander,3,,2071,tier2_name,Automatic match via exact name to Justin Verlander +1551,Justin Wilson,3,,2167,tier2_name,Automatic match via exact name to Justin Wilson +1552,Justus Sheffield,3,,1813,tier2_name,Automatic match via exact name to Justus Sheffield +1553,Kelvin Gutierrez,3,,796,tier2_name,Automatic match via exact name to Kelvin Gutierrez +1554,Kelvin Herrera,3,,881,tier2_name,Automatic match via exact name to Kelvin Herrera +1555,Ken Giles,3,,720,tier2_name,Automatic match via exact name to Ken Giles +1556,Kendrys Morales,3,,1359,tier2_name,Automatic match via exact name to Kendrys Morales +1557,Kenley Jansen,3,,968,tier2_name,Automatic match via exact name to Kenley Jansen +1566,Kevin Kiermaier,3,,1039,tier2_name,Automatic match via exact name to Kevin Kiermaier +1558,Kenta Maeda,3,,1181,tier2_name,Automatic match via exact name to Kenta Maeda +1559,Keon Broxton,3,,268,tier2_name,Automatic match via exact name to Keon Broxton +1560,Keone Kela,3,,1014,tier2_name,Automatic match via exact name to Keone Kela +1561,Keston Hiura,3,,905,tier2_name,Automatic match via exact name to Keston Hiura +1562,Ketel Marte,3,,1210,tier2_name,Automatic match via exact name to Ketel Marte +1563,Kevan Smith,3,,1847,tier2_name,Automatic match via exact name to Kevan Smith +1564,Kevin Cron,3,,440,tier2_name,Automatic match via exact name to Kevin Cron +1565,Kevin Gausman,3,,706,tier2_name,Automatic match via exact name to Kevin Gausman +1567,Kevin McCarthy,3,,1264,tier2_name,Automatic match via exact name to Kevin McCarthy +1568,Kevin Newman,3,,1420,tier2_name,Automatic match via exact name to Kevin Newman +1569,Kevin Pillar,3,,1557,tier2_name,Automatic match via exact name to Kevin Pillar +1570,Kevin Plawecki,3,,1565,tier2_name,Automatic match via exact name to Kevin Plawecki +1571,Khris Davis,3,,469,tier2_name,Automatic match via exact name to Khris Davis +1572,Kirby Yates,3,,2211,tier2_name,Automatic match via exact name to Kirby Yates +1573,Kolby Allard,3,,42,tier2_name,Automatic match via exact name to Kolby Allard +1574,Kole Calhoun,3,,306,tier2_name,Automatic match via exact name to Kole Calhoun +1575,Kolten Wong,3,,2188,tier2_name,Automatic match via exact name to Kolten Wong +1576,Kris Bryant,3,,273,tier2_name,Automatic match via exact name to Kris Bryant +1577,Kristopher Negron,3,,1407,tier2_name,Automatic match via exact name to Kristopher Negron +1578,Kurt Suzuki,3,,1945,tier2_name,Automatic match via exact name to Kurt Suzuki +1579,Kyle Barraclough,3,,136,tier2_name,Automatic match via exact name to Kyle Barraclough +1580,Kyle Crick,3,,435,tier2_name,Automatic match via exact name to Kyle Crick +1581,Kyle Farmer,3,,598,tier2_name,Automatic match via exact name to Kyle Farmer +1582,Kyle Freeland,3,,650,tier2_name,Automatic match via exact name to Kyle Freeland +1583,Kyle Gibson,3,,715,tier2_name,Automatic match via exact name to Kyle Gibson +1592,Leury Garcia,3,,679,tier2_name,Automatic match via exact name to Leury Garcia +1584,Kyle Hendricks,3,,856,tier2_name,Automatic match via exact name to Kyle Hendricks +1585,Kyle Lewis,3,,1118,tier2_name,Automatic match via exact name to Kyle Lewis +1586,Kyle Ryan,3,,1730,tier2_name,Automatic match via exact name to Kyle Ryan +1587,Kyle Schwarber,3,,1784,tier2_name,Automatic match via exact name to Kyle Schwarber +1588,Kyle Seager,3,,1793,tier2_name,Automatic match via exact name to Kyle Seager +1589,Kyle Tucker,3,,2023,tier2_name,Automatic match via exact name to Kyle Tucker +1590,Lance Lynn,3,,1173,tier2_name,Automatic match via exact name to Lance Lynn +1591,Leonys Martin,3,,1215,tier2_name,Automatic match via exact name to Leonys Martin +1593,Lewis Brinson,3,,258,tier2_name,Automatic match via exact name to Lewis Brinson +1594,Lewis Thorpe,3,,1989,tier2_name,Automatic match via exact name to Lewis Thorpe +1595,Liam Hendriks,3,,857,tier2_name,Automatic match via exact name to Liam Hendriks +1596,Logan Forsythe,3,,636,tier2_name,Automatic match via exact name to Logan Forsythe +1597,Logan Webb,3,,2127,tier2_name,Automatic match via exact name to Logan Webb +1598,Lorenzo Cain,3,,305,tier2_name,Automatic match via exact name to Lorenzo Cain +1599,Lou Trivino,3,,2016,tier2_name,Automatic match via exact name to Lou Trivino +1600,Lourdes Gurriel Jr,3,,794,tier2_name,Automatic match via exact name to Lourdes Gurriel Jr +1601,Lucas Duda,3,,539,tier2_name,Automatic match via exact name to Lucas Duda +1602,Lucas Giolito,3,,724,tier2_name,Automatic match via exact name to Lucas Giolito +1603,Lucas Sims,3,,1826,tier2_name,Automatic match via exact name to Lucas Sims +1604,Luis Arraez,3,,93,tier2_name,Automatic match via exact name to Luis Arraez +1605,Luis Avilan,3,,106,tier2_name,Automatic match via exact name to Luis Avilan +1606,Luis Castillo,3,,344,tier2_name,Automatic match via exact name to Luis Castillo +1607,Luis Cessa,3,,361,tier2_name,Automatic match via exact name to Luis Cessa +1608,Luis Garcia,3,,694,tier2_name,Automatic match via exact name to Luis Garcia Jr +1609,Luis Guillorme,3,,792,tier2_name,Automatic match via exact name to Luis Guillorme +1610,Luis Perdomo,3,,1529,tier2_name,Automatic match via exact name to Luis Perdomo +1611,Luis Rengifo,3,,1632,tier2_name,Automatic match via exact name to Luis Rengifo +1612,Luis Severino,3,,1805,tier2_name,Automatic match via exact name to Luis Severino +1613,Luis Urias,3,,2039,tier2_name,Automatic match via exact name to Luis Urias +1614,Luke Bard,3,,126,tier2_name,Automatic match via exact name to Luke Bard +1615,Luke Jackson,3,,960,tier2_name,Automatic match via exact name to Luke Jackson +1616,Luke Maile,3,,1185,tier2_name,Automatic match via exact name to Luke Maile +1617,Luke Voit,3,,2087,tier2_name,Automatic match via exact name to Luke Voit +1618,Luke Weaver,3,,2124,tier2_name,Automatic match via exact name to Luke Weaver +1619,Mac Williamson,3,,2163,tier2_name,Automatic match via exact name to Mac Williamson +1620,Madison Bumgarner,3,,278,tier2_name,Automatic match via exact name to Madison Bumgarner +1621,Maikel Franco,3,,645,tier2_name,Automatic match via exact name to Maikel Franco +1622,Mallex Smith,3,,1846,tier2_name,Automatic match via exact name to Mallex Smith +1623,Manny Banuelos,3,,123,tier2_name,Automatic match via exact name to Manny Banuelos +1624,Manny Machado,3,,1175,tier2_name,Automatic match via exact name to Manny Machado +1625,Manny Pina,3,,1558,tier2_name,Automatic match via exact name to Manny Pina +1626,Manuel Margot,3,,1198,tier2_name,Automatic match via exact name to Manuel Margot +1627,Marcell Ozuna,3,,1481,tier2_name,Automatic match via exact name to Marcell Ozuna +1628,Marco Gonzales,3,,735,tier2_name,Automatic match via exact name to Marco Gonzales +1629,Marco Hernandez,3,,872,tier2_name,Automatic match via exact name to Marco Hernandez +1630,Marcus Semien,3,,1799,tier2_name,Automatic match via exact name to Marcus Semien +1631,Marcus Stroman,3,,1928,tier2_name,Automatic match via exact name to Marcus Stroman +1632,Marcus Walden,3,,2100,tier2_name,Automatic match via exact name to Marcus Walden +1633,Mark Canha,3,,316,tier2_name,Automatic match via exact name to Mark Canha +1634,Mark Melancon,3,,1298,tier2_name,Automatic match via exact name to Mark Melancon +1635,Mark Reynolds,3,,1639,tier2_name,Automatic match via exact name to Mark Reynolds +1636,Martin Maldonado,3,,1187,tier2_name,Automatic match via exact name to Martin Maldonado +1637,Martin Perez,3,,1535,tier2_name,Automatic match via exact name to Martin Perez +1638,Martin Prado,3,,1582,tier2_name,Automatic match via exact name to Martin Prado +1639,Marwin Gonzalez,3,,741,tier2_name,Automatic match via exact name to Marwin Gonzalez +1640,Masahiro Tanaka,3,,1955,tier2_name,Automatic match via exact name to Masahiro Tanaka +1641,Matt Adams,3,,15,tier2_name,Automatic match via exact name to Matt Adams +1642,Matt Albers,3,,29,tier2_name,Automatic match via exact name to Matt Albers +1643,Matt Andriese,3,,76,tier2_name,Automatic match via exact name to Matt Andriese +1644,Matt Barnes,3,,131,tier2_name,Automatic match via exact name to Matt Barnes +1645,Matt Beaty,3,,157,tier2_name,Automatic match via exact name to Matt Beaty +1646,Matt Bowman,3,,228,tier2_name,Automatic match via exact name to Matt Bowman +1647,Matt Carpenter,3,,329,tier2_name,Automatic match via exact name to Matt Carpenter +1648,Matt Chapman,3,,367,tier2_name,Automatic match via exact name to Matt Chapman +1649,Matt Duffy,3,,542,tier2_name,Automatic match via exact name to Matt Duffy +1650,Matt Grace,3,,760,tier2_name,Automatic match via exact name to Matt Grace +1651,Matt Harvey,3,,835,tier2_name,Automatic match via exact name to Matt Harvey +1652,Matt Kemp,3,,1026,tier2_name,Automatic match via exact name to Matt Kemp +1653,Matt Magill,3,,1182,tier2_name,Automatic match via exact name to Matt Magill +1654,Matt Olson,3,,1461,tier2_name,Automatic match via exact name to Matt Olson +1655,Matt Shoemaker,3,,1817,tier2_name,Automatic match via exact name to Matt Shoemaker +1656,Matt Skole,3,,1835,tier2_name,Automatic match via exact name to Matt Skole +1657,Matt Strahm,3,,1918,tier2_name,Automatic match via exact name to Matt Strahm +1658,Matt Thaiss,3,,1975,tier2_name,Automatic match via exact name to Matt Thaiss +1659,Matt Wieters,3,,2152,tier2_name,Automatic match via exact name to Matt Wieters +1660,Matt Wisler,3,,2183,tier2_name,Automatic match via exact name to Matt Wisler +1661,Matthew Boyd,3,,230,tier2_name,Automatic match via exact name to Matthew Boyd +1662,Matthew Joyce,3,,999,tier2_name,Automatic match via exact name to Matthew Joyce +1663,Mauricio Dubon,3,,538,tier2_name,Automatic match via exact name to Mauricio Dubon +1664,Max Fried,3,,659,tier2_name,Automatic match via exact name to Max Fried +1665,Max Kepler,3,,1031,tier2_name,Automatic match via exact name to Max Kepler +1666,Max Muncy,3,,1382,tier2_name,Automatic match via exact name to Max Muncy +1667,Max Scherzer,3,,1773,tier2_name,Automatic match via exact name to Max Scherzer +1668,Max Stassi,3,,1896,tier2_name,Automatic match via exact name to Max Stassi +1669,Meibrys Viloria,3,,2081,tier2_name,Automatic match via exact name to Meibrys Viloria +1670,Melky Cabrera,3,,300,tier2_name,Automatic match via exact name to Melky Cabrera +1671,Merrill Kelly,3,,1020,tier2_name,Automatic match via exact name to Merrill Kelly +1672,Michael A Taylor,3,,1963,manual_existing,Manual match to existing SbaPlayer: Michael Taylor +1673,Michael Brantley,3,,240,tier2_name,Automatic match via exact name to Michael Brantley +1674,Michael Chavis,3,,371,tier2_name,Automatic match via exact name to Michael Chavis +1675,Michael Conforto,3,,407,tier2_name,Automatic match via exact name to Michael Conforto +1676,Michael Feliz,3,,602,tier2_name,Automatic match via exact name to Michael Feliz +1677,Michael Lorenzen,3,,1151,tier2_name,Automatic match via exact name to Michael Lorenzen +1678,Michael Pineda,3,,1560,tier2_name,Automatic match via exact name to Michael Pineda +1679,Michael Wacha,3,,2093,tier2_name,Automatic match via exact name to Michael Wacha +1680,Michel Baez,3,,113,tier2_name,Automatic match via exact name to Michel Baez +1681,Miguel Cabrera,3,,298,tier2_name,Automatic match via exact name to Miguel Cabrera +1682,Miguel Castro,3,,350,tier2_name,Automatic match via exact name to Miguel Castro +1683,Miguel Rojas,3,,1694,tier2_name,Automatic match via exact name to Miguel Rojas +1684,Miguel Sano,3,,1757,tier2_name,Automatic match via exact name to Miguel Sano +1685,Mike Brosseau,3,,263,tier2_name,Automatic match via exact name to Mike Brosseau +1686,Mike Clevinger,3,,392,tier2_name,Automatic match via exact name to Mike Clevinger +1687,Mike Fiers,3,,615,tier2_name,Automatic match via exact name to Mike Fiers +1688,Mike Foltynewicz,3,,633,tier2_name,Automatic match via exact name to Mike Foltynewicz +1689,Mike Ford,3,,635,tier2_name,Automatic match via exact name to Mike Ford +1690,Mike Freeman,3,,651,tier2_name,Automatic match via exact name to Mike Freeman +1691,Mike Leake,3,,1102,tier2_name,Automatic match via exact name to Mike Leake +1692,Mike Minor,3,,1335,tier2_name,Automatic match via exact name to Mike Minor +1693,Mike Montgomery,3,,1355,tier2_name,Automatic match via exact name to Mike Montgomery +1694,Mike Morin,3,,1370,tier2_name,Automatic match via exact name to Mike Morin +1695,Mike Moustakas,3,,1378,tier2_name,Automatic match via exact name to Mike Moustakas +1696,Mike Soroka,3,,1875,tier2_name,Automatic match via exact name to Michael Soroka +1697,Mike Tauchman,3,,1961,tier2_name,Automatic match via exact name to Mike Tauchman +1698,Mike Trout,3,,2019,tier2_name,Automatic match via exact name to Mike Trout +1699,Mike Wright,3,,2199,tier2_name,Automatic match via exact name to Mike Wright +1700,Mike Yastrzemski,3,,2210,tier2_name,Automatic match via exact name to Mike Yastrzemski +1701,Mike Zunino,3,,2234,tier2_name,Automatic match via exact name to Mike Zunino +1702,Miles Mikolas,3,,1317,tier2_name,Automatic match via exact name to Miles Mikolas +1703,Mitch Garver,3,,702,tier2_name,Automatic match via exact name to Mitch Garver +1704,Mitch Haniger,3,,818,tier2_name,Automatic match via exact name to Mitch Haniger +1705,Mitch Keller,3,,1017,tier2_name,Automatic match via exact name to Mitch Keller +1706,Mitch Moreland,3,,1365,tier2_name,Automatic match via exact name to Mitch Moreland +1707,Mookie Betts,3,,187,tier2_name,Automatic match via exact name to Mookie Betts +1708,Mychal Givens,3,,725,tier2_name,Automatic match via exact name to Mychal Givens +1709,Myles Straw,3,,1924,tier2_name,Automatic match via exact name to Myles Straw +1710,Nate Lowe,3,,1155,manual_existing,Manual match to existing SbaPlayer: Nathaniel Lowe +1711,Nathan Eovaldi,3,,576,tier2_name,Automatic match via exact name to Nathan Eovaldi +1712,Neil Walker,3,,2103,tier2_name,Automatic match via exact name to Neil Walker +1713,Nelson Cruz,3,,447,tier2_name,Automatic match via exact name to Nelson Cruz +1714,Nestor Cortes Jr,3,,421,tier2_name,Automatic match via exact name to Nestor Cortes Jr +1715,Nicholas Castellanos,3,,340,tier2_name,Automatic match via exact name to Nicholas Castellanos +1716,Nick Ahmed,3,,26,tier2_name,Automatic match via exact name to Nick Ahmed +1717,Nick Anderson,3,,71,tier2_name,Automatic match via exact name to Nick Anderson +1718,Nick Dini,3,,518,tier2_name,Automatic match via exact name to Nick Dini +1719,Nick Goody,3,,750,tier2_name,Automatic match via exact name to Nick Goody +1720,Nick Hundley,3,,940,tier2_name,Automatic match via exact name to Nick Hundley +1721,Nick Kingham,3,,1049,tier2_name,Automatic match via exact name to Nick Kingham +1722,Nick Margevicius,3,,1197,tier2_name,Automatic match via exact name to Nick Margevicius +1723,Nick Markakis,3,,1201,tier2_name,Automatic match via exact name to Nick Markakis +1724,Nick Martini,3,,1230,tier2_name,Automatic match via exact name to Nick Martini +1725,Nick Pivetta,3,,1564,tier2_name,Automatic match via exact name to Nick Pivetta +1726,Nick Ramirez,3,,1605,tier2_name,Automatic match via exact name to Nick Ramirez +1727,Nick Senzel,3,,1802,tier2_name,Automatic match via exact name to Nick Senzel +1728,Nick Solak,3,,1867,tier2_name,Automatic match via exact name to Nick Solak +1729,Nick Vincent,3,,2082,tier2_name,Automatic match via exact name to Nick Vincent +1730,Nick Williams,3,,2157,tier2_name,Automatic match via exact name to Nick Williams +1731,Nick Wittgren,3,,2185,tier2_name,Automatic match via exact name to Nick Wittgren +1732,Nicky Delmonico,3,,488,tier2_name,Automatic match via exact name to Nicky Delmonico +1733,Nicky Lopez,3,,1149,tier2_name,Automatic match via exact name to Nicky Lopez +1734,Nico Hoerner,3,,909,tier2_name,Automatic match via exact name to Nico Hoerner +1735,Niko Goodrum,3,,748,tier2_name,Automatic match via exact name to Niko Goodrum +1736,Noah Syndergaard,3,,1953,tier2_name,Automatic match via exact name to Noah Syndergaard +1737,Noe Ramirez,3,,1606,tier2_name,Automatic match via exact name to Noe Ramirez +1738,Nolan Arenado,3,,88,tier2_name,Automatic match via exact name to Nolan Arenado +1739,Nomar Mazara,3,,1254,tier2_name,Automatic match via exact name to Nomar Mazara +1740,Odubel Herrera,3,,882,tier2_name,Automatic match via exact name to Odubel Herrera +1741,Oliver Drake,3,,534,tier2_name,Automatic match via exact name to Oliver Drake +1742,Oliver Perez,3,,1533,tier2_name,Automatic match via exact name to Oliver Perez +1743,Omar Narvaez,3,,1401,tier2_name,Automatic match via exact name to Omar Narvaez +1744,Orlando Arcia,3,,86,tier2_name,Automatic match via exact name to Orlando Arcia +1745,Oscar Mercado,3,,1306,tier2_name,Automatic match via exact name to Oscar Mercado +1746,Ozzie Albies,3,,31,tier2_name,Automatic match via exact name to Ozzie Albies +1747,Pablo Lopez,3,,1146,tier2_name,Automatic match via exact name to Pablo Lopez +1748,Pablo Reyes,3,,1637,tier2_name,Automatic match via exact name to Pablo Reyes +1749,Pablo Sandoval,3,,1753,tier2_name,Automatic match via exact name to Pablo Sandoval +1750,Pat Valaika,3,,2044,tier2_name,Automatic match via exact name to Pat Valaika +1751,Patrick Corbin,3,,416,tier2_name,Automatic match via exact name to Patrick Corbin +1752,Patrick Sandoval,3,,1754,tier2_name,Automatic match via exact name to Patrick Sandoval +1753,Paul DeJong,3,,485,tier2_name,Automatic match via exact name to Paul DeJong +1754,Paul Fry,3,,662,tier2_name,Automatic match via exact name to Paul Fry +1755,Paul Goldschmidt,3,,729,tier2_name,Automatic match via exact name to Paul Goldschmidt +1756,Pedro Baez,3,,111,tier2_name,Automatic match via exact name to Pedro Baez +1757,Pedro Severino,3,,1804,tier2_name,Automatic match via exact name to Pedro Severino +1758,Pedro Strop,3,,1929,tier2_name,Automatic match via exact name to Pedro Strop +1759,Pete Alonso,3,,53,tier2_name,Automatic match via exact name to Pete Alonso +1760,Peter Lambert,3,,1088,tier2_name,Automatic match via exact name to Peter Lambert +1761,Phil Ervin,3,,579,tier2_name,Automatic match via exact name to Phil Ervin +1762,Phil Gosselin,3,,757,tier2_name,Automatic match via exact name to Phil Gosselin +1763,Phil Maton,3,,1238,tier2_name,Automatic match via exact name to Phil Maton +1764,Rafael Devers,3,,499,tier2_name,Automatic match via exact name to Rafael Devers +1765,Rafael Montero,3,,1352,tier2_name,Automatic match via exact name to Rafael Montero +1766,Rafael Ortega,3,,1465,tier2_name,Automatic match via exact name to Rafael Ortega +1767,Raimel Tapia,3,,1957,tier2_name,Automatic match via exact name to Raimel Tapia +1768,Raisel Iglesias,3,,950,tier2_name,Automatic match via exact name to Raisel Iglesias +1769,Ramon Laureano,3,,1097,tier2_name,Automatic match via exact name to Ramon Laureano +1770,Randal Grichuk,3,,775,tier2_name,Automatic match via exact name to Randal Grichuk +1771,Randy Dobnak,3,,521,tier2_name,Automatic match via exact name to Randy Dobnak +1772,Ranger Suarez,3,,1936,tier2_name,Automatic match via exact name to Ranger Suarez +1773,Reese McGuire,3,,1277,tier2_name,Automatic match via exact name to Reese McGuire +1774,Renato Nunez,3,,1443,tier2_name,Automatic match via exact name to Renato Nunez +1775,Reyes Moronta,3,,1371,tier2_name,Automatic match via exact name to Reyes Moronta +1776,Reynaldo Lopez,3,,1145,tier2_name,Automatic match via exact name to Reynaldo Lopez +1777,Rhys Hoskins,3,,925,tier2_name,Automatic match via exact name to Rhys Hoskins +1778,Rich Hill,3,,898,tier2_name,Automatic match via exact name to Rich Hill +1779,Richard Bleier,3,,212,tier2_name,Automatic match via exact name to Richard Bleier +1780,Richard Rodriguez,3,,1674,tier2_name,Automatic match via exact name to Richard Rodriguez +1781,Richard Urena,3,,2036,tier2_name,Automatic match via exact name to Richard Urena +1782,Richie Martin,3,,1216,tier2_name,Automatic match via exact name to Richie Martin +1783,Rick Porcello,3,,1577,tier2_name,Automatic match via exact name to Rick Porcello +1784,Rio Ruiz,3,,1723,tier2_name,Automatic match via exact name to Rio Ruiz +1785,Robbie Erlin,3,,578,tier2_name,Automatic match via exact name to Robbie Erlin +1786,Robbie Grossman,3,,779,tier2_name,Automatic match via exact name to Robbie Grossman +1787,Robbie Ray,3,,1620,tier2_name,Automatic match via exact name to Robbie Ray +1788,Robel Garcia,3,,682,tier2_name,Automatic match via exact name to Robel Garcia +1789,Robert Dugger,3,,544,tier2_name,Automatic match via exact name to Robert Dugger +1790,Robert Gsellman,3,,782,tier2_name,Automatic match via exact name to Robert Gsellman +1791,Robert Stephenson,3,,1904,tier2_name,Automatic match via exact name to Robert Stephenson +1792,Roberto Osuna,3,,1470,tier2_name,Automatic match via exact name to Roberto Osuna +1793,Roberto Perez,3,,1538,tier2_name,Automatic match via exact name to Roberto Perez +1794,Robinson Cano,3,,319,tier2_name,Automatic match via exact name to Robinson Cano +1795,Robinson Chirinos,3,,373,tier2_name,Automatic match via exact name to Robinson Chirinos +1796,Roenis Elias,3,,565,tier2_name,Automatic match via exact name to Roenis Elias +1797,Roman Quinn,3,,1595,tier2_name,Automatic match via exact name to Roman Quinn +1798,Ronald Acuna Jr,3,,12,tier2_name,Automatic match via exact name to Ronald Acuna Jr +1799,Ronald Guzman,3,,799,tier2_name,Automatic match via exact name to Ronald Guzman +1800,Ronny Rodriguez,3,,1672,tier2_name,Automatic match via exact name to Ronny Rodriguez +1801,Rosell Herrera,3,,883,tier2_name,Automatic match via exact name to Rosell Herrera +1802,Ross Detwiler,3,,497,tier2_name,Automatic match via exact name to Ross Detwiler +1803,Ross Stripling,3,,1927,tier2_name,Automatic match via exact name to Ross Stripling +1804,Rougned Odor,3,,1451,tier2_name,Automatic match via exact name to Rougned Odor +1805,Rowan Wick,3,,2147,tier2_name,Automatic match via exact name to Rowan Wick +1806,Rowdy Tellez,3,,1972,tier2_name,Automatic match via exact name to Rowdy Tellez +1807,Russell Martin,3,,1213,tier2_name,Automatic match via exact name to Russell Martin +1808,Ryan Brasier,3,,242,tier2_name,Automatic match via exact name to Ryan Brasier +1809,Ryan Braun,3,,244,tier2_name,Automatic match via exact name to Ryan Braun +1810,Ryan Buchter,3,,276,tier2_name,Automatic match via exact name to Ryan Buchter +1811,Ryan Carpenter,3,,328,tier2_name,Automatic match via exact name to Ryan Carpenter +1812,Ryan Cordell,3,,417,tier2_name,Automatic match via exact name to Ryan Cordell +1813,Ryan Goins,3,,728,tier2_name,Automatic match via exact name to Ryan Goins +1814,Ryan Helsley,3,,853,tier2_name,Automatic match via exact name to Ryan Helsley +1815,Ryan McBroom,3,,1259,tier2_name,Automatic match via exact name to Ryan McBroom +1816,Ryan McMahon,3,,1286,tier2_name,Automatic match via exact name to Ryan McMahon +1817,Ryan OHearn,3,,1453,tier2_name,Automatic match via exact name to Ryan OHearn +1818,Ryan Pressly,3,,1584,tier2_name,Automatic match via exact name to Ryan Pressly +1819,Ryan Weber,3,,2128,tier2_name,Automatic match via exact name to Ryan Weber +1820,Ryan Yarbrough,3,,2208,tier2_name,Automatic match via exact name to Ryan Yarbrough +1821,Ryan Zimmerman,3,,2229,tier2_name,Automatic match via exact name to Ryan Zimmerman +1822,Ryne Harper,3,,824,tier2_name,Automatic match via exact name to Ryne Harper +1823,Ryne Stanek,3,,1892,tier2_name,Automatic match via exact name to Ryne Stanek +1824,Ryon Healy,3,,842,tier2_name,Automatic match via exact name to Ryon Healy +1825,Sam Coonrod,3,,414,tier2_name,Automatic match via exact name to Sam Coonrod +1826,Sam Dyson,3,,554,tier2_name,Automatic match via exact name to Sam Dyson +1827,Sam Gaviglio,3,,707,tier2_name,Automatic match via exact name to Sam Gaviglio +1828,Sam Hilliard,3,,903,tier2_name,Automatic match via exact name to Sam Hilliard +1829,Sam Travis,3,,2010,tier2_name,Automatic match via exact name to Sam Travis +1830,Sam Tuivailala,3,,2025,tier2_name,Automatic match via exact name to Sam Tuivailala +1831,Sandy Alcantara,3,,35,tier2_name,Automatic match via exact name to Sandy Alcantara +1832,Sandy Leon,3,,1115,tier2_name,Automatic match via exact name to Sandy Leon +1833,Scooter Gennett,3,,710,tier2_name,Automatic match via exact name to Scooter Gennett +1834,Scott Barlow,3,,128,tier2_name,Automatic match via exact name to Scott Barlow +1835,Scott Heineman,3,,850,tier2_name,Automatic match via exact name to Scott Heineman +1836,Scott Kingery,3,,1048,tier2_name,Automatic match via exact name to Scott Kingery +1837,Scott Oberg,3,,1448,tier2_name,Automatic match via exact name to Scott Oberg +1838,Scott Schebler,3,,1772,tier2_name,Automatic match via exact name to Scott Schebler +1839,Sean Doolittle,3,,528,tier2_name,Automatic match via exact name to Sean Doolittle +1840,Sean Manaea,3,,1189,tier2_name,Automatic match via exact name to Sean Manaea +1841,Sean Murphy,3,,1390,tier2_name,Automatic match via exact name to Sean Murphy +1842,Sean Newcomb,3,,1419,tier2_name,Automatic match via exact name to Sean Newcomb +1843,Sean Reid Foley,3,,1627,tier2_name,Automatic match via exact name to Sean Reid Foley +1844,Sean Rodriguez,3,,1671,tier2_name,Automatic match via exact name to Sean Rodriguez +1845,Sergio Romo,3,,1705,tier2_name,Automatic match via exact name to Sergio Romo +1846,Seth Brown,3,,265,tier2_name,Automatic match via exact name to Seth Brown +1847,Seth Lugo,3,,1165,tier2_name,Automatic match via exact name to Seth Lugo +1848,Shane Bieber,3,,194,tier2_name,Automatic match via exact name to Shane Bieber +1849,Shane Greene,3,,769,tier2_name,Automatic match via exact name to Shane Greene +1850,Shaun Anderson,3,,72,tier2_name,Automatic match via exact name to Shaun Anderson +1851,Shawn Armstrong,3,,91,tier2_name,Automatic match via exact name to Shawn Armstrong +1852,Shawn Kelley,3,,1019,tier2_name,Automatic match via exact name to Shawn Kelley +1853,Shed Long,3,,1138,tier2_name,Automatic match via exact name to Shed Long +1854,Shelby Miller,3,,1323,tier2_name,Automatic match via exact name to Shelby Miller +1855,Sheldon Neuse,3,,1415,tier2_name,Automatic match via exact name to Sheldon Neuse +1856,Shin Soo Choo,3,,378,tier2_name,Automatic match via exact name to Shin Soo Choo +1857,Shohei Ohtani,3,,1455,tier2_name,Automatic match via exact name to Shohei Ohtani +1858,Sonny Gray,3,,765,tier2_name,Automatic match via exact name to Sonny Gray +1859,Spencer Turnbull,3,,2028,tier2_name,Automatic match via exact name to Spencer Turnbull +1860,Starlin Castro,3,,348,tier2_name,Automatic match via exact name to Starlin Castro +1861,Starling Marte,3,,1208,tier2_name,Automatic match via exact name to Starling Marte +1862,Stefan Crichton,3,,434,tier2_name,Automatic match via exact name to Stefan Crichton +1863,Stephen Piscotty,3,,1563,tier2_name,Automatic match via exact name to Stephen Piscotty +1864,Stephen Strasburg,3,,1921,tier2_name,Automatic match via exact name to Stephen Strasburg +1865,Stephen Vogt,3,,2086,tier2_name,Automatic match via exact name to Stephen Vogt +1866,Steve Cishek,3,,381,tier2_name,Automatic match via exact name to Steve Cishek +1867,Steve Pearce,3,,1512,tier2_name,Automatic match via exact name to Steve Pearce +1875,Tanner Scott,3,,1788,tier2_name,Automatic match via exact name to Tanner Scott +1868,Steven Brault,3,,243,tier2_name,Automatic match via exact name to Steven Brault +1869,Steven Duggar,3,,543,tier2_name,Automatic match via exact name to Steven Duggar +1870,Steven Matz,3,,1243,tier2_name,Automatic match via exact name to Steven Matz +1871,Stevie Wilkerson,3,,2153,tier2_name,Automatic match via exact name to Stevie Wilkerson +1872,TJ McFarland,3,,1273,tier2_name,Automatic match via exact name to TJ McFarland +1873,Tanner Rainey,3,,1599,tier2_name,Automatic match via exact name to Tanner Rainey +1874,Tanner Roark,3,,1659,tier2_name,Automatic match via exact name to Tanner Roark +1876,Taylor Clarke,3,,384,tier2_name,Automatic match via exact name to Taylor Clarke +1877,Taylor Cole,3,,397,tier2_name,Automatic match via exact name to Taylor Cole +1878,Taylor Guerrieri,3,,790,tier2_name,Automatic match via exact name to Taylor Guerrieri +1879,Taylor Rogers,3,,1689,tier2_name,Automatic match via exact name to Taylor Rogers +1880,Tayron Guerrero,3,,788,tier2_name,Automatic match via exact name to Tayron Guerrero +1881,Teoscar Hernandez,3,,873,tier2_name,Automatic match via exact name to Teoscar Hernandez +1882,Thairo Estrada,3,,587,tier2_name,Automatic match via exact name to Thairo Estrada +1883,Thomas Pannone,3,,1494,tier2_name,Automatic match via exact name to Thomas Pannone +1884,Tim Anderson,3,,73,tier2_name,Automatic match via exact name to Tim Anderson +1885,Tim Beckham,3,,161,tier2_name,Automatic match via exact name to Tim Beckham +1886,Tim Federowicz,3,,601,tier2_name,Automatic match via exact name to Tim Federowicz +1887,Tim Hill,3,,900,tier2_name,Automatic match via exact name to Tim Hill +1888,Tim Locastro,3,,1133,tier2_name,Automatic match via exact name to Tim Locastro +1889,Tim Lopes,3,,1142,tier2_name,Automatic match via exact name to Tim Lopes +1890,Tim Mayza,3,,1253,tier2_name,Automatic match via exact name to Tim Mayza +1891,Tim Melville,3,,1301,tier2_name,Automatic match via exact name to Tim Melville +1892,Todd Frazier,3,,647,tier2_name,Automatic match via exact name to Todd Frazier +1893,Tom Eshelman,3,,3241,manual_new,Manual assignment to new SbaPlayer: Tom Eshelman +1894,Tom Murphy,3,,1388,tier2_name,Automatic match via exact name to Tom Murphy +1895,Tomas Nido,3,,1424,tier2_name,Automatic match via exact name to Tomas Nido +1896,Tommy Edman,3,,558,tier2_name,Automatic match via exact name to Tommy Edman +1897,Tommy Kahnle,3,,1006,tier2_name,Automatic match via exact name to Tommy Kahnle +1898,Tommy La Stella,3,,1082,tier2_name,Automatic match via exact name to Tommy La Stella +1899,Tommy Milone,3,,1333,tier2_name,Automatic match via exact name to Tommy Milone +1900,Tommy Pham,3,,1552,tier2_name,Automatic match via exact name to Tommy Pham +1901,Tony Gonsolin,3,,734,tier2_name,Automatic match via exact name to Tony Gonsolin +1902,Tony Kemp,3,,1027,tier2_name,Automatic match via exact name to Tony Kemp +1903,Tony Watson,3,,2122,tier2_name,Automatic match via exact name to Tony Watson +1904,Tony Wolters,3,,2187,tier2_name,Automatic match via exact name to Tony Wolters +1905,Touki Toussaint,3,,2005,tier2_name,Automatic match via exact name to Touki Toussaint +1906,Travis dArnaud,3,,461,tier2_name,Automatic match via exact name to Travis dArnaud +1907,Travis Demeritte,3,,491,tier2_name,Automatic match via exact name to Travis Demeritte +1908,Travis Shaw,3,,1809,tier2_name,Automatic match via exact name to Travis Shaw +1909,Trea Turner,3,,1,tier2_name,Automatic match via exact name to Trea Turner +1910,Trent Grisham,3,,776,tier2_name,Automatic match via exact name to Trent Grisham +1911,Trent Thornton,3,,1988,tier2_name,Automatic match via exact name to Trent Thornton +1912,Trevor Bauer,3,,150,tier2_name,Automatic match via exact name to Trevor Bauer +1913,Trevor Cahill,3,,304,tier2_name,Automatic match via exact name to Trevor Cahill +1914,Trevor Gott,3,,758,tier2_name,Automatic match via exact name to Trevor Gott +1915,Trevor May,3,,1248,tier2_name,Automatic match via exact name to Trevor May +1916,Trevor Richards,3,,1646,tier2_name,Automatic match via exact name to Trevor Richards +1917,Trevor Story,3,,1914,tier2_name,Automatic match via exact name to Trevor Story +1918,Trevor Williams,3,,2156,tier2_name,Automatic match via exact name to Trevor Williams +1919,Trey Mancini,3,,1190,tier2_name,Automatic match via exact name to Trey Mancini +1920,Trey Wingenter,3,,2176,tier2_name,Automatic match via exact name to Trey Wingenter +1921,Tucker Barnhart,3,,135,tier2_name,Automatic match via exact name to Tucker Barnhart +1922,Ty Blach,3,,202,tier2_name,Automatic match via exact name to Ty Blach +1923,Ty Buttrey,3,,294,tier2_name,Automatic match via exact name to Ty Buttrey +1924,Ty France,3,,642,tier2_name,Automatic match via exact name to Ty France +1925,Tyler Alexander,3,,37,tier2_name,Automatic match via exact name to Tyler Alexander +1926,Tyler Austin,3,,103,tier2_name,Automatic match via exact name to Tyler Austin +1927,Tyler Beede,3,,164,tier2_name,Automatic match via exact name to Tyler Beede +1928,Tyler Chatwood,3,,369,tier2_name,Automatic match via exact name to Tyler Chatwood +1929,Tyler Clippard,3,,393,tier2_name,Automatic match via exact name to Tyler Clippard +1930,Tyler Duffey,3,,540,tier2_name,Automatic match via exact name to Tyler Duffey +1931,Tyler Flowers,3,,630,tier2_name,Automatic match via exact name to Tyler Flowers +1932,Tyler Glasnow,3,,726,tier2_name,Automatic match via exact name to Tyler Glasnow +1933,Tyler Kinley,3,,1050,tier2_name,Automatic match via exact name to Tyler Kinley +1934,Tyler Mahle,3,,1183,tier2_name,Automatic match via exact name to Tyler Mahle +1935,Tyler Naquin,3,,1399,tier2_name,Automatic match via exact name to Tyler Naquin +1936,Tyler ONeill,3,,1463,tier2_name,Automatic match via exact name to Tyler ONeill +1937,Tyler Olson,3,,1460,tier2_name,Automatic match via exact name to Tyler Olson +1938,Tyler Saladino,3,,1737,tier2_name,Automatic match via exact name to Tyler Saladino +1939,Tyler Skaggs,3,,1832,tier2_name,Automatic match via exact name to Tyler Skaggs +1940,Tyler Wade,3,,2094,tier2_name,Automatic match via exact name to Tyler Wade +1941,Tyler Webb,3,,2125,tier2_name,Automatic match via exact name to Tyler Webb +1942,Tyler White,3,,2141,tier2_name,Automatic match via exact name to Tyler White +1943,Tyson Ross,3,,1714,tier2_name,Automatic match via exact name to Tyson Ross +1944,Victor Alcantara,3,,33,tier2_name,Automatic match via exact name to Victor Alcantara +1945,Victor Caratini,3,,325,tier2_name,Automatic match via exact name to Victor Caratini +1946,Victor Reyes,3,,1638,tier2_name,Automatic match via exact name to Victor Reyes +1947,Victor Robles,3,,1666,tier2_name,Automatic match via exact name to Victor Robles +1948,Vince Velasquez,3,,2065,tier2_name,Automatic match via exact name to Vince Velasquez +1949,Vladimir Guerrero Jr,3,,789,tier2_name,Automatic match via exact name to Vladimir Guerrero Jr +1950,Wade Davis,3,,468,tier2_name,Automatic match via exact name to Wade Davis +1951,Wade LeBlanc,3,,1104,tier2_name,Automatic match via exact name to Wade LeBlanc +1952,Wade Miley,3,,1318,tier2_name,Automatic match via exact name to Wade Miley +1953,Walker Buehler,3,,277,tier2_name,Automatic match via exact name to Walker Buehler +1954,Walker Lockett,3,,1134,tier2_name,Automatic match via exact name to Walker Lockett +1955,Wander Suero,3,,1940,tier2_name,Automatic match via exact name to Wander Suero +1956,Wandy Peralta,3,,1524,tier2_name,Automatic match via exact name to Wandy Peralta +1957,Wei Chung Wang,3,,2114,tier2_name,Automatic match via exact name to Wei Chung Wang +1958,Wei Yin Chen,3,,372,tier2_name,Automatic match via exact name to Wei Yin Chen +1959,Welington Castillo,3,,343,tier2_name,Automatic match via exact name to Welington Castillo +1960,Wes Parsons,3,,1502,tier2_name,Automatic match via exact name to Wes Parsons +1961,Whit Merrifield,3,,1309,tier2_name,Automatic match via exact name to Whit Merrifield +1962,Wil Myers,3,,1395,tier2_name,Automatic match via exact name to Wil Myers +1963,Wilfredo Tovar,3,,2006,tier2_name,Automatic match via exact name to Wilfredo Tovar +1964,Will D Smith,3,,1841,manual_existing,Manual match to existing SbaPlayer: Will Smith +1965,Will Harris,3,,825,tier2_name,Automatic match via exact name to Will Harris +1966,Will Smith,3,,1843,manual_existing,Manual match to existing SbaPlayer: Will Smith +1967,Willi Castro,3,,352,tier2_name,Automatic match via exact name to Willi Castro +1968,Willians Astudillo,3,,101,tier2_name,Automatic match via exact name to Willians Astudillo +1969,Willie Calhoun,3,,307,tier2_name,Automatic match via exact name to Willie Calhoun +1970,Willson Contreras,3,,410,tier2_name,Automatic match via exact name to Willson Contreras +1971,Willy Adames,3,,14,tier2_name,Automatic match via exact name to Willy Adames +1972,Wilmer Difo,3,,516,tier2_name,Automatic match via exact name to Wilmer Difo +1973,Wilmer Flores,3,,627,tier2_name,Automatic match via exact name to Wilmer Flores +1974,Wilmer Font,3,,634,tier2_name,Automatic match via exact name to Wilmer Font +1975,Wilson Ramos,3,,1612,tier2_name,Automatic match via exact name to Wilson Ramos +1976,Wily Peralta,3,,1523,tier2_name,Automatic match via exact name to Wily Peralta +1977,Xander Bogaerts,3,,216,tier2_name,Automatic match via exact name to Xander Bogaerts +1978,Yadiel Rivera,3,,1656,tier2_name,Automatic match via exact name to Yadiel Rivera +1979,Yadier Molina,3,,1344,tier2_name,Automatic match via exact name to Yadier Molina +1980,Yairo Munoz,3,,1383,tier2_name,Automatic match via exact name to Yairo Munoz +1981,Yan Gomes,3,,731,tier2_name,Automatic match via exact name to Yan Gomes +1982,Yandy Diaz,3,,507,tier2_name,Automatic match via exact name to Yandy Diaz +1983,Yangervis Solarte,3,,1869,tier2_name,Automatic match via exact name to Yangervis Solarte +1984,Yasiel Puig,3,,1590,tier2_name,Automatic match via exact name to Yasiel Puig +1985,Yasmani Grandal,3,,761,tier2_name,Automatic match via exact name to Yasmani Grandal +1986,Yency Almonte,3,,50,tier2_name,Automatic match via exact name to Yency Almonte +1987,Yimi Garcia,3,,680,tier2_name,Automatic match via exact name to Yimi Garcia +1988,Yoan Lopez,3,,1147,tier2_name,Automatic match via exact name to Yoan Lopez +1989,Yoan Moncada,3,,1348,tier2_name,Automatic match via exact name to Yoan Moncada +1990,Yolmer Sanchez,3,,1744,tier2_name,Automatic match via exact name to Yolmer Sanchez +1991,Yonathan Daza,3,,476,tier2_name,Automatic match via exact name to Yonathan Daza +1992,Yonder Alonso,3,,52,tier2_name,Automatic match via exact name to Yonder Alonso +1993,Yonny Chirinos,3,,374,tier2_name,Automatic match via exact name to Yonny Chirinos +1994,Yordan Alvarez,3,,61,tier2_name,Automatic match via exact name to Yordan Alvarez +1995,Yoshihisa Hirano,3,,904,tier2_name,Automatic match via exact name to Yoshihisa Hirano +1996,Yu Chang,3,,364,tier2_name,Automatic match via exact name to Yu Chang +1997,Yu Darvish,3,,462,tier2_name,Automatic match via exact name to Yu Darvish +1998,Yuli Gurriel,3,,793,tier2_name,Automatic match via exact name to Yuli Gurriel +1999,Yusei Kikuchi,3,,1040,tier2_name,Automatic match via exact name to Yusei Kikuchi +2000,Yusmeiro Petit,3,,1549,tier2_name,Automatic match via exact name to Yusmeiro Petit +2001,Zac Gallen,3,,673,tier2_name,Automatic match via exact name to Zac Gallen +2002,Zac Reininger,3,,1628,tier2_name,Automatic match via exact name to Zac Reininger +2003,Zach Davies,3,,465,tier2_name,Automatic match via exact name to Zach Davies +2004,Zach Eflin,3,,562,tier2_name,Automatic match via exact name to Zach Eflin +2005,Zach Plesac,3,,1566,tier2_name,Automatic match via exact name to Zach Plesac +2006,Zack Britton,3,,260,tier2_name,Automatic match via exact name to Zack Britton +2007,Zack Collins,3,,403,tier2_name,Automatic match via exact name to Zack Collins +2008,Zack Cozart,3,,428,tier2_name,Automatic match via exact name to Zack Cozart +2009,Zack Godley,3,,727,tier2_name,Automatic match via exact name to Zack Godley +2010,Zack Greinke,3,,774,tier2_name,Automatic match via exact name to Zack Greinke +2011,Zack Littell,3,,1127,tier2_name,Automatic match via exact name to Zack Littell +2012,Zack Wheeler,3,,2139,tier2_name,Automatic match via exact name to Zack Wheeler +3530,Tommy Pham,4,,1552,tier2_name,Automatic match via exact name to Tommy Pham +3619,Asher Wojciechowski,4,,2186,tier2_name,Automatic match via exact name to Asher Wojciechowski +3620,Ashton Goudeau,4,,759,tier2_name,Automatic match via exact name to Ashton Goudeau +3621,Austin Brice,4,,253,tier2_name,Automatic match via exact name to Austin Brice +3622,Austin Davis,4,,471,tier2_name,Automatic match via exact name to Austin Davis +3751,Erik Swanson,4,,1948,tier2_name,Automatic match via exact name to Erik Swanson +3800,Jake Odorizzi,4,,1452,tier2_name,Automatic match via exact name to Jake Odorizzi +3801,Jake Woodford,4,,2195,tier2_name,Automatic match via exact name to Jake Woodford +3802,Jakob Junis,4,,1004,tier2_name,Automatic match via exact name to Jakob Junis +3803,Jalen Beeks,4,,165,tier2_name,Automatic match via exact name to Jalen Beeks +3977,Phil Maton,4,,1238,tier2_name,Automatic match via exact name to Phil Maton +3978,Phillips Valdez,4,,2047,tier2_name,Automatic match via exact name to Phillips Valdez +3979,Pierce Johnson,4,,985,tier2_name,Automatic match via exact name to Pierce Johnson +4027,Seth Elledge,4,,567,tier2_name,Automatic match via exact name to Seth Elledge +4028,Seth Lugo,4,,1165,tier2_name,Automatic match via exact name to Seth Lugo +4071,Trevor May,4,,1248,tier2_name,Automatic match via exact name to Trevor May +4072,Trevor Richards,4,,1646,tier2_name,Automatic match via exact name to Trevor Richards +4073,Trevor Rogers,4,,1693,tier2_name,Automatic match via exact name to Trevor Rogers +4074,Trevor Rosenthal,4,,1713,tier2_name,Automatic match via exact name to Trevor Rosenthal +4075,Trevor Williams,4,,2156,tier2_name,Automatic match via exact name to Trevor Williams +4120,Zack Burdi,4,,281,tier2_name,Automatic match via exact name to Zack Burdi +4121,Zack Godley,4,,727,tier2_name,Automatic match via exact name to Zack Godley +4122,Zack Greinke,4,,774,tier2_name,Automatic match via exact name to Zack Greinke +4123,Zack Wheeler,4,,2139,tier2_name,Automatic match via exact name to Zack Wheeler +3096,Andres Gimenez,4,,721,tier2_name,Automatic match via exact name to Andres Gimenez +3097,Andrew Benintendi,4,,177,tier2_name,Automatic match via exact name to Andrew Benintendi +3098,Andrew Knapp,4,,1062,tier2_name,Automatic match via exact name to Andrew Knapp +3099,Andrew Knizner,4,,1065,tier2_name,Automatic match via exact name to Andrew Knizner +3100,Andrew McCutchen,4,,1272,tier2_name,Automatic match via exact name to Andrew McCutchen +3101,Andrew Stevenson,4,,1906,tier2_name,Automatic match via exact name to Andrew Stevenson +3102,Andrew Velazquez,4,,2067,tier2_name,Automatic match via exact name to Andrew Velazquez +3103,Andy Young,4,,2220,tier2_name,Automatic match via exact name to Andy Young +3104,Anthony Alford,4,,41,tier2_name,Automatic match via exact name to Anthony Alford +3105,Anthony Bemboom,4,,175,tier2_name,Automatic match via exact name to Anthony Bemboom +3106,Anthony Rendon,4,,1630,tier2_name,Automatic match via exact name to Anthony Rendon +3107,Anthony Rizzo,4,,1658,tier2_name,Automatic match via exact name to Anthony Rizzo +3108,Anthony Santander,4,,1764,tier2_name,Automatic match via exact name to Anthony Santander +3109,Aristides Aquino,4,,81,tier2_name,Automatic match via exact name to Aristides Aquino +3110,Asdrubal Cabrera,4,,299,tier2_name,Automatic match via exact name to Asdrubal Cabrera +3111,Austin Allen,4,,47,tier2_name,Automatic match via exact name to Austin Allen +3112,Austin Barnes,4,,132,tier2_name,Automatic match via exact name to Austin Barnes +3113,Austin Hays,4,,839,tier2_name,Automatic match via exact name to Austin Hays +3114,Austin Hedges,4,,848,tier2_name,Automatic match via exact name to Austin Hedges +3115,Austin Meadows,4,,1290,tier2_name,Automatic match via exact name to Austin Meadows +3116,Austin Nola,4,,1432,tier2_name,Automatic match via exact name to Austin Nola +3117,Austin Riley,4,,1649,tier2_name,Automatic match via exact name to Austin Riley +3118,Austin Romine,4,,1704,tier2_name,Automatic match via exact name to Austin Romine +3119,Austin Slater,4,,1838,tier2_name,Automatic match via exact name to Austin Slater +3120,Avisail Garcia,4,,678,tier2_name,Automatic match via exact name to Avisail Garcia +3121,Beau Taylor,4,,1968,tier2_name,Automatic match via exact name to Beau Taylor +3122,Ben Gamel,4,,676,tier2_name,Automatic match via exact name to Ben Gamel +3123,Billy Hamilton,4,,810,tier2_name,Automatic match via exact name to Billy Hamilton +3124,Bo Bichette,4,,190,tier2_name,Automatic match via exact name to Bo Bichette +3125,Bobby Dalbec,4,,458,tier2_name,Automatic match via exact name to Bobby Dalbec +3126,Brad Miller,4,,1322,tier2_name,Automatic match via exact name to Brad Miller +3127,Braden Bishop,4,,200,tier2_name,Automatic match via exact name to Braden Bishop +3128,Bradley Zimmer,4,,2227,tier2_name,Automatic match via exact name to Bradley Zimmer +3129,Brandon Belt,4,,173,tier2_name,Automatic match via exact name to Brandon Belt +3130,Brandon Crawford,4,,430,tier2_name,Automatic match via exact name to Brandon Crawford +3131,Brandon Drury,4,,535,tier2_name,Automatic match via exact name to Brandon Drury +3132,Brandon Lowe,4,,1156,tier2_name,Automatic match via exact name to Brandon Lowe +3133,Brandon Nimmo,4,,1425,tier2_name,Automatic match via exact name to Brandon Nimmo +3134,Brendan Rodgers,4,,1668,tier2_name,Automatic match via exact name to Brendan Rodgers +3135,Brent Rooker,4,,1708,tier2_name,Automatic match via exact name to Brent Rooker +3136,Brett Gardner,4,,695,tier2_name,Automatic match via exact name to Brett Gardner +3137,Brett Phillips,4,,1555,tier2_name,Automatic match via exact name to Brett Phillips +3138,Brian Anderson,4,,69,tier2_name,Automatic match via exact name to Brian Anderson +3139,Brian Dozier,4,,532,tier2_name,Automatic match via exact name to Brian Dozier +3140,Brian Goodwin,4,,749,tier2_name,Automatic match via exact name to Brian Goodwin +3141,Brock Holt,4,,921,tier2_name,Automatic match via exact name to Brock Holt +3142,Bryan Holaday,4,,911,tier2_name,Automatic match via exact name to Bryan Holaday +3143,Bryan Reynolds,4,,1641,tier2_name,Automatic match via exact name to Bryan Reynolds +3144,Bryce Harper,4,,823,tier2_name,Automatic match via exact name to Bryce Harper +3145,Bubba Starling,4,,1894,tier2_name,Automatic match via exact name to Bubba Starling +3146,Byron Buxton,4,,295,tier2_name,Automatic match via exact name to Byron Buxton +3193,Delino DeShields,4,,494,tier2_name,Automatic match via exact name to Delino DeShields +3241,Gary Sanchez,4,,1746,tier2_name,Automatic match via exact name to Gary Sanchez +3242,Gavin Lux,4,,1169,tier2_name,Automatic match via exact name to Gavin Lux +3287,JD Martinez,4,,1229,tier2_name,Automatic match via exact name to JD Martinez +3288,Jean Segura,4,,1796,tier2_name,Automatic match via exact name to Jean Segura +3092,Alex Verdugo,4,,2069,tier2_name,Automatic match via exact name to Alex Verdugo +3289,Jedd Gyorko,4,,800,tier2_name,Automatic match via exact name to Jedd Gyorko +3093,Amed Rosario,4,,1711,tier2_name,Automatic match via exact name to Amed Rosario +3290,Jeff Mathis,4,,1235,tier2_name,Automatic match via exact name to Jeff Mathis +3094,Anderson Tejeda,4,,1971,tier2_name,Automatic match via exact name to Anderson Tejeda +3384,Luis Torrens,4,,2002,tier2_name,Automatic match via exact name to Luis Torrens +3385,Luis Urias,4,,2039,tier2_name,Automatic match via exact name to Luis Urias +3386,Luis V Garcia,4,,694,manual_existing,Manual match to existing SbaPlayer: Luis Garcia Jr +3387,Luke Voit,4,,2087,tier2_name,Automatic match via exact name to Luke Voit +3095,Andrelton Simmons,4,,1825,tier2_name,Automatic match via exact name to Andrelton Simmons +3388,Magneuris Sierra,4,,1823,tier2_name,Automatic match via exact name to Magneuris Sierra +3481,Rob Refsnyder,4,,1626,tier2_name,Automatic match via exact name to Rob Refsnyder +3529,Tommy La Stella,4,,1082,tier2_name,Automatic match via exact name to Tommy La Stella +3072,Aaron Hicks,4,,892,tier2_name,Automatic match via exact name to Aaron Hicks +3073,Aaron Judge,4,,3,tier2_name,Automatic match via exact name to Aaron Judge +3074,Abraham Toro,4,,2001,tier2_name,Automatic match via exact name to Abraham Toro +3075,Adalberto Mondesi,4,,1349,tier2_name,Automatic match via exact name to Adalberto Mondesi +3076,Adam Duvall,4,,553,tier2_name,Automatic match via exact name to Adam Duvall +3077,Adam Eaton,4,,556,tier2_name,Automatic match via exact name to Adam Eaton +3078,Adam Engel,4,,574,tier2_name,Automatic match via exact name to Adam Engel +3079,Adam Frazier,4,,648,tier2_name,Automatic match via exact name to Adam Frazier +3080,Adam Haseley,4,,837,tier2_name,Automatic match via exact name to Adam Haseley +3081,Adeiny Hechavarria,4,,847,tier2_name,Automatic match via exact name to Adeiny Hechavarria +3082,AJ Pollock,4,,1571,tier2_name,Automatic match via exact name to AJ Pollock +3083,Albert Almora,4,,51,tier2_name,Automatic match via exact name to Albert Almora Jr +3084,Albert Pujols,4,,1591,tier2_name,Automatic match via exact name to Albert Pujols +3085,Alec Bohm,4,,217,tier2_name,Automatic match via exact name to Alec Bohm +3086,Aledmys Diaz,4,,505,tier2_name,Automatic match via exact name to Aledmys Diaz +3087,Alejandro Kirk,4,,1056,tier2_name,Automatic match via exact name to Alejandro Kirk +3088,Alex Avila,4,,104,tier2_name,Automatic match via exact name to Alex Avila +3089,Alex Bregman,4,,248,tier2_name,Automatic match via exact name to Alex Bregman +3090,Alex Dickerson,4,,512,tier2_name,Automatic match via exact name to Alex Dickerson +3091,Alex Gordon,4,,751,tier2_name,Automatic match via exact name to Alex Gordon +3147,Cam Gallagher,4,,670,tier2_name,Automatic match via exact name to Cam Gallagher +3148,Cameron Maybin,4,,1250,tier2_name,Automatic match via exact name to Cameron Maybin +3149,Carlos Correa,4,,420,tier2_name,Automatic match via exact name to Carlos Correa +3150,Carlos Santana,4,,1759,tier2_name,Automatic match via exact name to Carlos Santana +3151,Carson Kelly,4,,1023,tier2_name,Automatic match via exact name to Carson Kelly +3152,Carter Kieboom,4,,1038,tier2_name,Automatic match via exact name to Carter Kieboom +3153,Cavan Biggio,4,,196,tier2_name,Automatic match via exact name to Cavan Biggio +3154,Cedric Mullins,4,,1381,tier2_name,Automatic match via exact name to Cedric Mullins +3155,Cesar Hernandez,4,,870,tier2_name,Automatic match via exact name to Cesar Hernandez +3156,Chad Pinder,4,,1559,tier2_name,Automatic match via exact name to Chad Pinder +3157,Chad Wallach,4,,2108,tier2_name,Automatic match via exact name to Chad Wallach +3158,Chadwick Tromp,4,,2017,tier2_name,Automatic match via exact name to Chadwick Tromp +3159,Chance Sisco,4,,1831,tier2_name,Automatic match via exact name to Chance Sisco +3160,Charlie Blackmon,4,,205,tier2_name,Automatic match via exact name to Charlie Blackmon +3161,Chris Davis,4,,467,tier2_name,Automatic match via exact name to Chris Davis +3162,Chris Owings,4,,1480,tier2_name,Automatic match via exact name to Chris Owings +3163,Chris Taylor,4,,1964,tier2_name,Automatic match via exact name to Chris Taylor +3164,Christian Arroyo,4,,96,tier2_name,Automatic match via exact name to Christian Arroyo +3165,Christian Colon,4,,406,tier2_name,Automatic match via exact name to Christian Colon +3166,Christian Vazquez,4,,2063,tier2_name,Automatic match via exact name to Christian Vazquez +3167,Christian Walker,4,,2104,tier2_name,Automatic match via exact name to Christian Walker +3168,Christian Yelich,4,,2212,tier2_name,Automatic match via exact name to Christian Yelich +3169,Christin Stewart,4,,1910,tier2_name,Automatic match via exact name to Christin Stewart +3170,CJ Cron,4,,441,tier2_name,Automatic match via exact name to CJ Cron +3171,Clint Frazier,4,,649,tier2_name,Automatic match via exact name to Clint Frazier +3172,Cody Bellinger,4,,170,tier2_name,Automatic match via exact name to Cody Bellinger +3173,Cole Tucker,4,,2022,tier2_name,Automatic match via exact name to Cole Tucker +3174,Colin Moran,4,,1360,tier2_name,Automatic match via exact name to Colin Moran +3175,Corey Dickerson,4,,513,tier2_name,Automatic match via exact name to Corey Dickerson +3176,Corey Seager,4,,1794,tier2_name,Automatic match via exact name to Corey Seager +3177,Curt Casali,4,,334,tier2_name,Automatic match via exact name to Curt Casali +3178,Daniel Murphy,4,,1387,tier2_name,Automatic match via exact name to Daniel Murphy +3179,Daniel Robertson,4,,1663,tier2_name,Automatic match via exact name to Daniel Robertson +3180,Daniel Vogelbach,4,,2085,tier2_name,Automatic match via exact name to Daniel Vogelbach +3181,Danny Jansen,4,,969,tier2_name,Automatic match via exact name to Danny Jansen +3182,Danny Mendick,4,,1302,tier2_name,Automatic match via exact name to Danny Mendick +3183,Danny Santana,4,,1760,tier2_name,Automatic match via exact name to Danny Santana +3184,Dansby Swanson,4,,1947,tier2_name,Automatic match via exact name to Dansby Swanson +3185,Darin Ruf,4,,1722,tier2_name,Automatic match via exact name to Darin Ruf +3186,Daulton Varsho,4,,2058,tier2_name,Automatic match via exact name to Daulton Varsho +3187,David Bote,4,,224,tier2_name,Automatic match via exact name to David Bote +3188,David Dahl,4,,457,tier2_name,Automatic match via exact name to David Dahl +3189,David Fletcher,4,,624,tier2_name,Automatic match via exact name to David Fletcher +3190,David Peralta,4,,1522,tier2_name,Automatic match via exact name to David Peralta +3191,Daz Cameron,4,,310,tier2_name,Automatic match via exact name to Daz Cameron +3192,Dee Strange Gordon,4,,1920,tier2_name,Automatic match via exact name to Dee Strange Gordon +3194,Derek Dietrich,4,,515,tier2_name,Automatic match via exact name to Derek Dietrich +3195,Derek Fisher,4,,618,tier2_name,Automatic match via exact name to Derek Fisher +3196,Dexter Fowler,4,,639,tier2_name,Automatic match via exact name to Dexter Fowler +3197,Didi Gregorius,4,,772,tier2_name,Automatic match via exact name to Didi Gregorius +3198,DJ LeMahieu,4,,1114,tier2_name,Automatic match via exact name to DJ LeMahieu +3199,DJ Stewart,4,,1909,tier2_name,Automatic match via exact name to DJ Stewart +3200,Domingo Santana,4,,1761,tier2_name,Automatic match via exact name to Domingo Santana +3201,Dominic Smith,4,,1849,tier2_name,Automatic match via exact name to Dominic Smith +3202,Donovan Solano,4,,1868,tier2_name,Automatic match via exact name to Donovan Solano +3203,Drew Butera,4,,290,tier2_name,Automatic match via exact name to Drew Butera +3204,Dustin Garneau,4,,697,tier2_name,Automatic match via exact name to Dustin Garneau +3205,Dwight Smith Jr,4,,1855,tier2_name,Automatic match via exact name to Dwight Smith Jr +3206,Dylan Carlson,4,,327,tier2_name,Automatic match via exact name to Dylan Carlson +3207,Dylan Moore,4,,1358,tier2_name,Automatic match via exact name to Dylan Moore +3208,Eddie Rosario,4,,1710,tier2_name,Automatic match via exact name to Eddie Rosario +3209,Eddy Alvarez,4,,60,tier2_name,Automatic match via exact name to Eddy Alvarez +3210,Eduardo Escobar,4,,581,tier2_name,Automatic match via exact name to Eduardo Escobar +3211,Edward Olivares,4,,1458,tier2_name,Automatic match via exact name to Edward Olivares +3212,Edwin Encarnacion,4,,571,tier2_name,Automatic match via exact name to Edwin Encarnacion +3213,Edwin Rios,4,,1651,tier2_name,Automatic match via exact name to Edwin Rios +3214,Ehire Adrianza,4,,22,tier2_name,Automatic match via exact name to Ehire Adrianza +3215,Eli White,4,,2140,tier2_name,Automatic match via exact name to Eli White +3216,Elias Diaz,4,,502,tier2_name,Automatic match via exact name to Elias Diaz +3217,Eloy Jimenez,4,,980,tier2_name,Automatic match via exact name to Eloy Jimenez +3218,Elvis Andrus,4,,77,tier2_name,Automatic match via exact name to Elvis Andrus +3219,Ender Inciarte,4,,952,tier2_name,Automatic match via exact name to Ender Inciarte +3220,Enrique Hernandez,4,,871,tier2_name,Automatic match via exact name to Enrique Hernandez +3221,Eric Haase,4,,801,tier2_name,Automatic match via exact name to Eric Haase +3222,Eric Hosmer,4,,926,tier2_name,Automatic match via exact name to Eric Hosmer +3223,Eric Sogard,4,,1865,tier2_name,Automatic match via exact name to Eric Sogard +3224,Eric Thames,4,,1976,tier2_name,Automatic match via exact name to Eric Thames +3225,Erik Gonzalez,4,,742,tier2_name,Automatic match via exact name to Erik Gonzalez +3226,Erik Kratz,4,,1074,tier2_name,Automatic match via exact name to Erik Kratz +3227,Eugenio Suarez,4,,1934,tier2_name,Automatic match via exact name to Eugenio Suarez +3228,Evan Longoria,4,,1140,tier2_name,Automatic match via exact name to Evan Longoria +3229,Evan White,4,,2142,tier2_name,Automatic match via exact name to Evan White +3230,Fernando Tatis Jr,4,,1960,tier2_name,Automatic match via exact name to Fernando Tatis Jr +3231,Franchy Cordero,4,,418,tier2_name,Automatic match via exact name to Franchy Cordero +3232,Francisco Cervelli,4,,359,tier2_name,Automatic match via exact name to Francisco Cervelli +3233,Francisco Lindor,4,,1124,tier2_name,Automatic match via exact name to Francisco Lindor +3234,Francisco Mejia,4,,3239,manual_new,Manual assignment to new SbaPlayer: Francisco Mejia +3235,Franklin Barreto,4,,140,tier2_name,Automatic match via exact name to Franklin Barreto +3236,Franmil Reyes,4,,1634,tier2_name,Automatic match via exact name to Franmil Reyes +3237,Freddie Freeman,4,,652,tier2_name,Automatic match via exact name to Freddie Freeman +3238,Freddy Galvis,4,,675,tier2_name,Automatic match via exact name to Freddy Galvis +3239,Garrett Cooper,4,,415,tier2_name,Automatic match via exact name to Garrett Cooper +3240,Garrett Hampson,4,,814,tier2_name,Automatic match via exact name to Garrett Hampson +3243,George Springer,4,,1888,tier2_name,Automatic match via exact name to George Springer +3244,Giancarlo Stanton,4,,1893,tier2_name,Automatic match via exact name to Giancarlo Stanton +3245,Gio Urshela,4,,2042,tier2_name,Automatic match via exact name to Gio Urshela +3246,Gleyber Torres,4,,2003,tier2_name,Automatic match via exact name to Gleyber Torres +3247,Grayson Greiner,4,,773,tier2_name,Automatic match via exact name to Grayson Greiner +3248,Greg Allen,4,,44,tier2_name,Automatic match via exact name to Greg Allen +3249,Greg Garcia,4,,681,tier2_name,Automatic match via exact name to Greg Garcia +3250,Gregory Polanco,4,,1569,tier2_name,Automatic match via exact name to Gregory Polanco +3251,Guillermo Heredia,4,,862,tier2_name,Automatic match via exact name to Guillermo Heredia +3252,Hanser Alberto,4,,30,tier2_name,Automatic match via exact name to Hanser Alberto +3253,Harold Castro,4,,349,tier2_name,Automatic match via exact name to Harold Castro +3254,Harrison Bader,4,,110,tier2_name,Automatic match via exact name to Harrison Bader +3255,Howie Kendrick,4,,1028,tier2_name,Automatic match via exact name to Howie Kendrick +3256,Hunter Dozier,4,,533,tier2_name,Automatic match via exact name to Hunter Dozier +3257,Hunter Pence,4,,1520,tier2_name,Automatic match via exact name to Hunter Pence +3258,Hunter Renfroe,4,,1631,tier2_name,Automatic match via exact name to Hunter Renfroe +3259,Ian Happ,4,,820,tier2_name,Automatic match via exact name to Ian Happ +3260,Ildemaro Vargas,4,,2054,tier2_name,Automatic match via exact name to Ildemaro Vargas +3261,Isaac Paredes,4,,1497,tier2_name,Automatic match via exact name to Isaac Paredes +3262,Isan Diaz,4,,508,tier2_name,Automatic match via exact name to Isan Diaz +3263,Isiah Kiner Falefa,4,,1044,tier2_name,Automatic match via exact name to Isiah Kiner Falefa +3264,Jace Peterson,4,,1547,tier2_name,Automatic match via exact name to Jace Peterson +3265,Jack Mayfield,4,,1252,tier2_name,Automatic match via exact name to Jack Mayfield +3266,Jackie Bradley Jr,4,,239,tier2_name,Automatic match via exact name to Jackie Bradley Jr +3267,Jacob Nottingham,4,,1440,tier2_name,Automatic match via exact name to Jacob Nottingham +3268,Jacob Stallings,4,,1890,tier2_name,Automatic match via exact name to Jacob Stallings +3269,JaCoby Jones,4,,991,tier2_name,Automatic match via exact name to JaCoby Jones +3270,Jake Cave,4,,354,tier2_name,Automatic match via exact name to Jake Cave +3271,Jake Cronenworth,4,,442,tier2_name,Automatic match via exact name to Jake Cronenworth +3272,Jake Fraley,4,,641,tier2_name,Automatic match via exact name to Jake Fraley +3273,Jake Lamb,4,,1087,tier2_name,Automatic match via exact name to Jake Lamb +3274,Jake Marisnick,4,,1200,tier2_name,Automatic match via exact name to Jake Marisnick +3275,Jake Noll,4,,1435,tier2_name,Automatic match via exact name to Jake Noll +3276,James McCann,4,,1261,tier2_name,Automatic match via exact name to James McCann +3277,Jared Oliva,4,,1457,tier2_name,Automatic match via exact name to Jared Oliva +3278,Jared Walsh,4,,2111,tier2_name,Automatic match via exact name to Jared Walsh +3279,Jarrod Dyson,4,,555,tier2_name,Automatic match via exact name to Jarrod Dyson +3280,Jason Castro,4,,347,tier2_name,Automatic match via exact name to Jason Castro +3281,Jason Heyward,4,,891,tier2_name,Automatic match via exact name to Jason Heyward +3282,Jason Kipnis,4,,1053,tier2_name,Automatic match via exact name to Jason Kipnis +3283,Javier Baez,4,,112,tier2_name,Automatic match via exact name to Javier Baez +3284,Jay Bruce,4,,270,tier2_name,Automatic match via exact name to Jay Bruce +3285,Jazz Chisholm,4,,375,tier2_name,Automatic match via exact name to Jazz Chisholm +3286,JD Davis,4,,474,tier2_name,Automatic match via exact name to JD Davis +3291,Jeff McNeil,4,,1287,tier2_name,Automatic match via exact name to Jeff McNeil +3292,Jeimer Candelario,4,,315,tier2_name,Automatic match via exact name to Jeimer Candelario +3293,Jesse Winker,4,,2177,tier2_name,Automatic match via exact name to Jesse Winker +3294,Jesus Aguilar,4,,25,tier2_name,Automatic match via exact name to Jesus Aguilar +3295,Jesus Sanchez,4,,1749,tier2_name,Automatic match via exact name to Jesus Sanchez +3296,Ji Man Choi,4,,377,tier2_name,Automatic match via exact name to Ji Man Choi +3297,Jo Adell,4,,20,tier2_name,Automatic match via exact name to Jo Adell +3298,Joc Pederson,4,,1514,tier2_name,Automatic match via exact name to Joc Pederson +3299,Joe Hudson,4,,932,tier2_name,Automatic match via exact name to Joe Hudson +3300,Joe Panik,4,,1493,tier2_name,Automatic match via exact name to Joe Panik +3301,Joey Bart,4,,142,tier2_name,Automatic match via exact name to Joey Bart +3302,Joey Gallo,4,,674,tier2_name,Automatic match via exact name to Joey Gallo +3303,Joey Votto,4,,2092,tier2_name,Automatic match via exact name to Joey Votto +3304,Joey Wendle,4,,2135,tier2_name,Automatic match via exact name to Joey Wendle +3305,Johan Camargo,4,,309,tier2_name,Automatic match via exact name to Johan Camargo +3306,John Ryan Murphy,4,,1392,tier2_name,Automatic match via exact name to John Ryan Murphy +3307,Jon Berti,4,,183,tier2_name,Automatic match via exact name to Jon Berti +3308,Jon Jay,4,,973,tier2_name,Automatic match via exact name to Jon Jay +3309,Jonah Heim,4,,849,tier2_name,Automatic match via exact name to Jonah Heim +3310,Jonathan Arauz,4,,84,tier2_name,Automatic match via exact name to Jonathan Arauz +3311,Jonathan Davis,4,,470,tier2_name,Automatic match via exact name to Jonathan Davis +3312,Jonathan Schoop,4,,1779,tier2_name,Automatic match via exact name to Jonathan Schoop +3313,Jonathan Villar,4,,2079,tier2_name,Automatic match via exact name to Jonathan Villar +3314,Jordan Luplow,4,,1168,tier2_name,Automatic match via exact name to Jordan Luplow +3315,Jordy Mercer,4,,1308,tier2_name,Automatic match via exact name to Jordy Mercer +3316,Jorge Alfaro,4,,40,tier2_name,Automatic match via exact name to Jorge Alfaro +3317,Jorge Bonifacio,4,,220,tier2_name,Automatic match via exact name to Jorge Bonifacio +3318,Jorge Mateo,4,,1233,tier2_name,Automatic match via exact name to Jorge Mateo +3319,Jorge Polanco,4,,1570,tier2_name,Automatic match via exact name to Jorge Polanco +3320,Jorge Soler,4,,1870,tier2_name,Automatic match via exact name to Jorge Soler +3321,Jose Abreu,4,,7,tier2_name,Automatic match via exact name to Jose Abreu +3322,Jose Altuve,4,,56,tier2_name,Automatic match via exact name to Jose Altuve +3323,Jose Garcia,4,,3242,manual_new,Manual assignment to new SbaPlayer: Jose Garcia +3324,Jose Iglesias,4,,949,tier2_name,Automatic match via exact name to Jose Iglesias +3325,Jose Marmolejos,4,,1203,tier2_name,Automatic match via exact name to Jose Marmolejos +3326,Jose Martinez,4,,1222,tier2_name,Automatic match via exact name to Jose Martinez +3327,Jose Osuna,4,,1471,tier2_name,Automatic match via exact name to Jose Osuna +3328,Jose Peraza,4,,1527,tier2_name,Automatic match via exact name to Jose Peraza +3329,Jose Ramirez,4,,1608,tier2_name,Automatic match via exact name to Jose Ramirez +3330,Jose Trevino,4,,2013,tier2_name,Automatic match via exact name to Jose Trevino +3331,Joseph Odom,4,,1450,tier2_name,Automatic match via exact name to Joseph Odom +3332,Josh Bell,4,,168,tier2_name,Automatic match via exact name to Josh Bell +3333,Josh Donaldson,4,,526,tier2_name,Automatic match via exact name to Josh Donaldson +3334,Josh Fuentes,4,,664,manual_existing,Manual match to existing SbaPlayer: Joshua Fuentes +3335,Josh Harrison,4,,829,tier2_name,Automatic match via exact name to Josh Harrison +3336,Josh Naylor,4,,1404,tier2_name,Automatic match via exact name to Josh Naylor +3337,Josh Phegley,4,,1553,tier2_name,Automatic match via exact name to Josh Phegley +3338,Josh Reddick,4,,1623,tier2_name,Automatic match via exact name to Josh Reddick +3339,Josh Rojas,4,,1695,tier2_name,Automatic match via exact name to Josh Rojas +3340,Josh VanMeter,4,,2052,tier2_name,Automatic match via exact name to Josh VanMeter +3341,JP Crawford,4,,432,tier2_name,Automatic match via exact name to JP Crawford +3342,JT Realmuto,4,,1622,tier2_name,Automatic match via exact name to JT Realmuto +3343,JT Riddle,4,,1648,tier2_name,Automatic match via exact name to JT Riddle +3344,Juan Soto,4,,1879,tier2_name,Automatic match via exact name to Juan Soto +3345,Jurickson Profar,4,,1587,tier2_name,Automatic match via exact name to Jurickson Profar +3346,Justin Smoak,4,,1857,tier2_name,Automatic match via exact name to Justin Smoak +3347,Justin Turner,4,,2029,tier2_name,Automatic match via exact name to Justin Turner +3348,Justin Upton,4,,2034,tier2_name,Automatic match via exact name to Justin Upton +3349,KeBryan Hayes,4,,838,tier2_name,Automatic match via exact name to KeBryan Hayes +3350,Keston Hiura,4,,905,tier2_name,Automatic match via exact name to Keston Hiura +3351,Ketel Marte,4,,1210,tier2_name,Automatic match via exact name to Ketel Marte +3352,Kevan Smith,4,,1847,tier2_name,Automatic match via exact name to Kevan Smith +3353,Kevin Cron,4,,440,tier2_name,Automatic match via exact name to Kevin Cron +3354,Kevin Kiermaier,4,,1039,tier2_name,Automatic match via exact name to Kevin Kiermaier +3355,Kevin Newman,4,,1420,tier2_name,Automatic match via exact name to Kevin Newman +3356,Kevin Pillar,4,,1557,tier2_name,Automatic match via exact name to Kevin Pillar +3357,Kevin Plawecki,4,,1565,tier2_name,Automatic match via exact name to Kevin Plawecki +3358,Khris Davis,4,,469,tier2_name,Automatic match via exact name to Khris Davis +3359,Kole Calhoun,4,,306,tier2_name,Automatic match via exact name to Kole Calhoun +3360,Kolten Wong,4,,2188,tier2_name,Automatic match via exact name to Kolten Wong +3361,Kris Bryant,4,,273,tier2_name,Automatic match via exact name to Kris Bryant +3362,Kurt Suzuki,4,,1945,tier2_name,Automatic match via exact name to Kurt Suzuki +3363,Kyle Farmer,4,,598,tier2_name,Automatic match via exact name to Kyle Farmer +3364,Kyle Garlick,4,,696,tier2_name,Automatic match via exact name to Kyle Garlick +3365,Kyle Higashioka,4,,895,tier2_name,Automatic match via exact name to Kyle Higashioka +3366,Kyle Lewis,4,,1118,tier2_name,Automatic match via exact name to Kyle Lewis +3367,Kyle Schwarber,4,,1784,tier2_name,Automatic match via exact name to Kyle Schwarber +3368,Kyle Seager,4,,1793,tier2_name,Automatic match via exact name to Kyle Seager +3369,Kyle Tucker,4,,2023,tier2_name,Automatic match via exact name to Kyle Tucker +3370,LaMonte Wade Jr,4,,2095,tier2_name,Automatic match via exact name to LaMonte Wade Jr +3371,Lane Thomas,4,,1978,tier2_name,Automatic match via exact name to Lane Thomas +3372,Leody Taveras,4,,1962,tier2_name,Automatic match via exact name to Leody Taveras +3373,Leury Garcia,4,,679,tier2_name,Automatic match via exact name to Leury Garcia +3374,Lewin Diaz,4,,506,tier2_name,Automatic match via exact name to Lewin Diaz +3375,Lewis Brinson,4,,258,tier2_name,Automatic match via exact name to Lewis Brinson +3376,Logan Forsythe,4,,636,tier2_name,Automatic match via exact name to Logan Forsythe +3377,Logan Morrison,4,,1373,tier2_name,Automatic match via exact name to Logan Morrison +3378,Lorenzo Cain,4,,305,tier2_name,Automatic match via exact name to Lorenzo Cain +3379,Lourdes Gurriel Jr,4,,794,tier2_name,Automatic match via exact name to Lourdes Gurriel Jr +3380,Luis Arraez,4,,93,tier2_name,Automatic match via exact name to Luis Arraez +3381,Luis Guillorme,4,,792,tier2_name,Automatic match via exact name to Luis Guillorme +3382,Luis Rengifo,4,,1632,tier2_name,Automatic match via exact name to Luis Rengifo +3383,Luis Robert,4,,1660,tier2_name,Automatic match via exact name to Luis Robert +3389,Maikel Franco,4,,645,tier2_name,Automatic match via exact name to Maikel Franco +3390,Mallex Smith,4,,1846,tier2_name,Automatic match via exact name to Mallex Smith +3391,Manny Machado,4,,1175,tier2_name,Automatic match via exact name to Manny Machado +3392,Manny Pina,4,,1558,tier2_name,Automatic match via exact name to Manny Pina +3393,Manuel Margot,4,,1198,tier2_name,Automatic match via exact name to Manuel Margot +3394,Marcell Ozuna,4,,1481,tier2_name,Automatic match via exact name to Marcell Ozuna +3395,Marcus Semien,4,,1799,tier2_name,Automatic match via exact name to Marcus Semien +3396,Mark Canha,4,,316,tier2_name,Automatic match via exact name to Mark Canha +3397,Mark Mathias,4,,1234,tier2_name,Automatic match via exact name to Mark Mathias +3398,Mark Payton,4,,1508,tier2_name,Automatic match via exact name to Mark Payton +3399,Martin Maldonado,4,,1187,tier2_name,Automatic match via exact name to Martin Maldonado +3400,Marwin Gonzalez,4,,741,tier2_name,Automatic match via exact name to Marwin Gonzalez +3401,Mason Williams,4,,2154,tier2_name,Automatic match via exact name to Mason Williams +3402,Matt Adams,4,,15,tier2_name,Automatic match via exact name to Matt Adams +3403,Matt Beaty,4,,157,tier2_name,Automatic match via exact name to Matt Beaty +3404,Matt Carpenter,4,,329,tier2_name,Automatic match via exact name to Matt Carpenter +3405,Matt Chapman,4,,367,tier2_name,Automatic match via exact name to Matt Chapman +3406,Matt Davidson,4,,463,tier2_name,Automatic match via exact name to Matt Davidson +3407,Matt Kemp,4,,1026,tier2_name,Automatic match via exact name to Matt Kemp +3408,Matt Olson,4,,1461,tier2_name,Automatic match via exact name to Matt Olson +3409,Matt Thaiss,4,,1975,tier2_name,Automatic match via exact name to Matt Thaiss +3410,Matt Wieters,4,,2152,tier2_name,Automatic match via exact name to Matt Wieters +3411,Matthew Joyce,4,,999,tier2_name,Automatic match via exact name to Matthew Joyce +3412,Mauricio Dubon,4,,538,tier2_name,Automatic match via exact name to Mauricio Dubon +3413,Max Kepler,4,,1031,tier2_name,Automatic match via exact name to Max Kepler +3414,Max Muncy,4,,1382,tier2_name,Automatic match via exact name to Max Muncy +3415,Max Schrock,4,,1781,tier2_name,Automatic match via exact name to Max Schrock +3416,Max Stassi,4,,1896,tier2_name,Automatic match via exact name to Max Stassi +3417,Meibrys Viloria,4,,2081,tier2_name,Automatic match via exact name to Meibrys Viloria +3418,Michael A Taylor,4,,1963,manual_existing,Manual match to existing SbaPlayer: Michael Taylor +3419,Michael Brantley,4,,240,tier2_name,Automatic match via exact name to Michael Brantley +3420,Michael Chavis,4,,371,tier2_name,Automatic match via exact name to Michael Chavis +3421,Michael Conforto,4,,407,tier2_name,Automatic match via exact name to Michael Conforto +3422,Michael Perez,4,,1539,tier2_name,Automatic match via exact name to Michael Perez +3423,Miguel Andujar,4,,78,tier2_name,Automatic match via exact name to Miguel Andujar +3424,Miguel Cabrera,4,,298,tier2_name,Automatic match via exact name to Miguel Cabrera +3425,Miguel Rojas,4,,1694,tier2_name,Automatic match via exact name to Miguel Rojas +3426,Miguel Sano,4,,1757,tier2_name,Automatic match via exact name to Miguel Sano +3427,Mike Brosseau,4,,263,tier2_name,Automatic match via exact name to Mike Brosseau +3428,Mike Ford,4,,635,tier2_name,Automatic match via exact name to Mike Ford +3429,Mike Freeman,4,,651,tier2_name,Automatic match via exact name to Mike Freeman +3430,Mike Moustakas,4,,1378,tier2_name,Automatic match via exact name to Mike Moustakas +3431,Mike Tauchman,4,,1961,tier2_name,Automatic match via exact name to Mike Tauchman +3432,Mike Trout,4,,2019,tier2_name,Automatic match via exact name to Mike Trout +3433,Mike Yastrzemski,4,,2210,tier2_name,Automatic match via exact name to Mike Yastrzemski +3434,Mike Zunino,4,,2234,tier2_name,Automatic match via exact name to Mike Zunino +3435,Mitch Garver,4,,702,tier2_name,Automatic match via exact name to Mitch Garver +3436,Mitch Moreland,4,,1365,tier2_name,Automatic match via exact name to Mitch Moreland +3437,Monte Harrison,4,,831,tier2_name,Automatic match via exact name to Monte Harrison +3438,Mookie Betts,4,,187,tier2_name,Automatic match via exact name to Mookie Betts +3439,Myles Straw,4,,1924,tier2_name,Automatic match via exact name to Myles Straw +3440,Nate Lowe,4,,1155,manual_existing,Manual match to existing SbaPlayer: Nathaniel Lowe +3441,Neil Walker,4,,2103,tier2_name,Automatic match via exact name to Neil Walker +3442,Nelson Cruz,4,,447,tier2_name,Automatic match via exact name to Nelson Cruz +3443,Nicholas Castellanos,4,,340,tier2_name,Automatic match via exact name to Nicholas Castellanos +3444,Nick Ahmed,4,,26,tier2_name,Automatic match via exact name to Nick Ahmed +3445,Nick Heath,4,,846,tier2_name,Automatic match via exact name to Nick Heath +3446,Nick Madrigal,4,,1178,tier2_name,Automatic match via exact name to Nick Madrigal +3447,Nick Markakis,4,,1201,tier2_name,Automatic match via exact name to Nick Markakis +3448,Nick Senzel,4,,1802,tier2_name,Automatic match via exact name to Nick Senzel +3449,Nick Solak,4,,1867,tier2_name,Automatic match via exact name to Nick Solak +3450,Nicky Delmonico,4,,488,tier2_name,Automatic match via exact name to Nicky Delmonico +3451,Nicky Lopez,4,,1149,tier2_name,Automatic match via exact name to Nicky Lopez +3452,Nico Hoerner,4,,909,tier2_name,Automatic match via exact name to Nico Hoerner +3453,Niko Goodrum,4,,748,tier2_name,Automatic match via exact name to Niko Goodrum +3454,Nolan Arenado,4,,88,tier2_name,Automatic match via exact name to Nolan Arenado +3455,Nomar Mazara,4,,1254,tier2_name,Automatic match via exact name to Nomar Mazara +3456,Omar Narvaez,4,,1401,tier2_name,Automatic match via exact name to Omar Narvaez +3457,Orlando Arcia,4,,86,tier2_name,Automatic match via exact name to Orlando Arcia +3458,Oscar Mercado,4,,1306,tier2_name,Automatic match via exact name to Oscar Mercado +3459,Ozzie Albies,4,,31,tier2_name,Automatic match via exact name to Ozzie Albies +3460,Pablo Sandoval,4,,1753,tier2_name,Automatic match via exact name to Pablo Sandoval +3461,Pat Valaika,4,,2044,tier2_name,Automatic match via exact name to Pat Valaika +3462,Paul DeJong,4,,485,tier2_name,Automatic match via exact name to Paul DeJong +3463,Paul Goldschmidt,4,,729,tier2_name,Automatic match via exact name to Paul Goldschmidt +3464,Pavin Smith,4,,1851,tier2_name,Automatic match via exact name to Pavin Smith +3465,Pedro Severino,4,,1804,tier2_name,Automatic match via exact name to Pedro Severino +3466,Pete Alonso,4,,53,tier2_name,Automatic match via exact name to Pete Alonso +3467,Phil Ervin,4,,579,tier2_name,Automatic match via exact name to Phil Ervin +3468,Phil Gosselin,4,,757,tier2_name,Automatic match via exact name to Phil Gosselin +3469,Phillip Evans,4,,589,tier2_name,Automatic match via exact name to Phillip Evans +3470,Rafael Devers,4,,499,tier2_name,Automatic match via exact name to Rafael Devers +3471,Raimel Tapia,4,,1957,tier2_name,Automatic match via exact name to Raimel Tapia +3472,Ramon Laureano,4,,1097,tier2_name,Automatic match via exact name to Ramon Laureano +3473,Ramon Urias,4,,2037,tier2_name,Automatic match via exact name to Ramon Urias +3474,Randal Grichuk,4,,775,tier2_name,Automatic match via exact name to Randal Grichuk +3475,Randy Arozarena,4,,92,tier2_name,Automatic match via exact name to Randy Arozarena +3476,Rangel Ravelo,4,,1619,tier2_name,Automatic match via exact name to Rangel Ravelo +3477,Reese McGuire,4,,1277,tier2_name,Automatic match via exact name to Reese McGuire +3478,Renato Nunez,4,,1443,tier2_name,Automatic match via exact name to Renato Nunez +3479,Rhys Hoskins,4,,925,tier2_name,Automatic match via exact name to Rhys Hoskins +3480,Rio Ruiz,4,,1723,tier2_name,Automatic match via exact name to Rio Ruiz +3482,Robbie Grossman,4,,779,tier2_name,Automatic match via exact name to Robbie Grossman +3483,Roberto Perez,4,,1538,tier2_name,Automatic match via exact name to Roberto Perez +3484,Robinson Cano,4,,319,tier2_name,Automatic match via exact name to Robinson Cano +3485,Robinson Chirinos,4,,373,tier2_name,Automatic match via exact name to Robinson Chirinos +3486,Roman Quinn,4,,1595,tier2_name,Automatic match via exact name to Roman Quinn +3487,Ronald Acuna Jr,4,,12,tier2_name,Automatic match via exact name to Ronald Acuna Jr +3488,Ronald Guzman,4,,799,tier2_name,Automatic match via exact name to Ronald Guzman +3489,Rougned Odor,4,,1451,tier2_name,Automatic match via exact name to Rougned Odor +3490,Rowdy Tellez,4,,1972,tier2_name,Automatic match via exact name to Rowdy Tellez +3491,Ryan Braun,4,,244,tier2_name,Automatic match via exact name to Ryan Braun +3492,Ryan Jeffers,4,,975,tier2_name,Automatic match via exact name to Ryan Jeffers +3493,Ryan McBroom,4,,1259,tier2_name,Automatic match via exact name to Ryan McBroom +3494,Ryan McMahon,4,,1286,tier2_name,Automatic match via exact name to Ryan McMahon +3495,Ryan Mountcastle,4,,1377,tier2_name,Automatic match via exact name to Ryan Mountcastle +3496,Ryan OHearn,4,,1453,tier2_name,Automatic match via exact name to Ryan OHearn +3497,Ryon Healy,4,,842,tier2_name,Automatic match via exact name to Ryon Healy +3498,Salvador Perez,4,,1534,tier2_name,Automatic match via exact name to Salvador Perez +3499,Sam Haggerty,4,,803,tier2_name,Automatic match via exact name to Sam Haggerty +3500,Sam Hilliard,4,,903,tier2_name,Automatic match via exact name to Sam Hilliard +3501,Sam Huff,4,,936,tier2_name,Automatic match via exact name to Sam Huff +3502,Sandy Leon,4,,1115,tier2_name,Automatic match via exact name to Sandy Leon +3503,Santiago Espinal,4,,582,tier2_name,Automatic match via exact name to Santiago Espinal +3504,Scott Heineman,4,,850,tier2_name,Automatic match via exact name to Scott Heineman +3505,Scott Kingery,4,,1048,tier2_name,Automatic match via exact name to Scott Kingery +3506,Sean Murphy,4,,1390,tier2_name,Automatic match via exact name to Sean Murphy +3507,Sergio Alcantara,4,,34,tier2_name,Automatic match via exact name to Sergio Alcantara +3508,Shed Long,4,,1138,tier2_name,Automatic match via exact name to Shed Long +3509,Sherten Apostel,4,,80,tier2_name,Automatic match via exact name to Sherten Apostel +3510,Shin Soo Choo,4,,378,tier2_name,Automatic match via exact name to Shin Soo Choo +3511,Shogo Akiyama,4,,28,tier2_name,Automatic match via exact name to Shogo Akiyama +3512,Shohei Ohtani,4,,1455,tier2_name,Automatic match via exact name to Shohei Ohtani +3513,Starlin Castro,4,,348,tier2_name,Automatic match via exact name to Starlin Castro +3514,Starling Marte,4,,1208,tier2_name,Automatic match via exact name to Starling Marte +3515,Stephen Piscotty,4,,1563,tier2_name,Automatic match via exact name to Stephen Piscotty +3516,Stephen Vogt,4,,2086,tier2_name,Automatic match via exact name to Stephen Vogt +3517,Steven Duggar,4,,543,tier2_name,Automatic match via exact name to Steven Duggar +3518,Steven Souza Jr,4,,1881,tier2_name,Automatic match via exact name to Steven Souza Jr +3519,Taylor Jones,4,,992,tier2_name,Automatic match via exact name to Taylor Jones +3520,Taylor Ward,4,,2116,tier2_name,Automatic match via exact name to Taylor Ward +3521,Teoscar Hernandez,4,,873,tier2_name,Automatic match via exact name to Teoscar Hernandez +3522,Thairo Estrada,4,,587,tier2_name,Automatic match via exact name to Thairo Estrada +3523,Tim Anderson,4,,73,tier2_name,Automatic match via exact name to Tim Anderson +3524,Tim Locastro,4,,1133,tier2_name,Automatic match via exact name to Tim Locastro +3525,Tim Lopes,4,,1142,tier2_name,Automatic match via exact name to Tim Lopes +3526,Todd Frazier,4,,647,tier2_name,Automatic match via exact name to Todd Frazier +3527,Tomas Nido,4,,1424,tier2_name,Automatic match via exact name to Tomas Nido +3528,Tommy Edman,4,,558,tier2_name,Automatic match via exact name to Tommy Edman +3531,Tony Kemp,4,,1027,tier2_name,Automatic match via exact name to Tony Kemp +3532,Tony Wolters,4,,2187,tier2_name,Automatic match via exact name to Tony Wolters +3533,Travis dArnaud,4,,461,tier2_name,Automatic match via exact name to Travis dArnaud +3534,Travis Demeritte,4,,491,tier2_name,Automatic match via exact name to Travis Demeritte +3535,Travis Jankowski,4,,967,tier2_name,Automatic match via exact name to Travis Jankowski +3536,Travis Shaw,4,,1809,tier2_name,Automatic match via exact name to Travis Shaw +3537,Trea Turner,4,,1,tier2_name,Automatic match via exact name to Trea Turner +3538,Trent Grisham,4,,776,tier2_name,Automatic match via exact name to Trent Grisham +3539,Trevor Story,4,,1914,tier2_name,Automatic match via exact name to Trevor Story +3540,Tucker Barnhart,4,,135,tier2_name,Automatic match via exact name to Tucker Barnhart +3541,Ty France,4,,642,tier2_name,Automatic match via exact name to Ty France +3542,Tyler Flowers,4,,630,tier2_name,Automatic match via exact name to Tyler Flowers +3543,Tyler Heineman,4,,851,tier2_name,Automatic match via exact name to Tyler Heineman +3544,Tyler Naquin,4,,1399,tier2_name,Automatic match via exact name to Tyler Naquin +3545,Tyler ONeill,4,,1463,tier2_name,Automatic match via exact name to Tyler ONeill +3546,Tyler Stephenson,4,,1905,tier2_name,Automatic match via exact name to Tyler Stephenson +3547,Tyler Wade,4,,2094,tier2_name,Automatic match via exact name to Tyler Wade +3548,Tyrone Taylor,4,,1965,tier2_name,Automatic match via exact name to Tyrone Taylor +3549,Tzu Wei Lin,4,,1122,tier2_name,Automatic match via exact name to Tzu Wei Lin +3550,Victor Caratini,4,,325,tier2_name,Automatic match via exact name to Victor Caratini +3551,Victor Reyes,4,,1638,tier2_name,Automatic match via exact name to Victor Reyes +3552,Victor Robles,4,,1666,tier2_name,Automatic match via exact name to Victor Robles +3553,Vimael Machin,4,,1177,tier2_name,Automatic match via exact name to Vimael Machin +3554,Vladimir Guerrero Jr,4,,789,tier2_name,Automatic match via exact name to Vladimir Guerrero Jr +3555,Whit Merrifield,4,,1309,tier2_name,Automatic match via exact name to Whit Merrifield +3556,Wil Myers,4,,1395,tier2_name,Automatic match via exact name to Wil Myers +3557,Will D Smith,4,,1841,manual_existing,Manual match to existing SbaPlayer: Will Smith +3558,Willi Castro,4,,352,tier2_name,Automatic match via exact name to Willi Castro +3559,Willians Astudillo,4,,101,tier2_name,Automatic match via exact name to Willians Astudillo +3560,Willie Calhoun,4,,307,tier2_name,Automatic match via exact name to Willie Calhoun +3561,Willson Contreras,4,,410,tier2_name,Automatic match via exact name to Willson Contreras +3562,Willy Adames,4,,14,tier2_name,Automatic match via exact name to Willy Adames +3563,Wilmer Flores,4,,627,tier2_name,Automatic match via exact name to Wilmer Flores +3564,Wilson Ramos,4,,1612,tier2_name,Automatic match via exact name to Wilson Ramos +3565,Wyatt Mathisen,4,,1236,tier2_name,Automatic match via exact name to Wyatt Mathisen +3566,Xander Bogaerts,4,,216,tier2_name,Automatic match via exact name to Xander Bogaerts +3567,Yadiel Hernandez,4,,875,tier2_name,Automatic match via exact name to Yadiel Hernandez +3568,Yadier Molina,4,,1344,tier2_name,Automatic match via exact name to Yadier Molina +3569,Yairo Munoz,4,,1383,tier2_name,Automatic match via exact name to Yairo Munoz +3570,Yan Gomes,4,,731,tier2_name,Automatic match via exact name to Yan Gomes +3571,Yandy Diaz,4,,507,tier2_name,Automatic match via exact name to Yandy Diaz +3572,Yasmani Grandal,4,,761,tier2_name,Automatic match via exact name to Yasmani Grandal +3573,Yoan Moncada,4,,1348,tier2_name,Automatic match via exact name to Yoan Moncada +3574,Yoenis Cespedes,4,,360,tier2_name,Automatic match via exact name to Yoenis Cespedes +3575,Yolmer Sanchez,4,,1744,tier2_name,Automatic match via exact name to Yolmer Sanchez +3576,Yoshi Tsutsugo,4,,2021,tier2_name,Automatic match via exact name to Yoshi Tsutsugo +3577,Yuli Gurriel,4,,793,tier2_name,Automatic match via exact name to Yuli Gurriel +3578,Zack Collins,4,,403,tier2_name,Automatic match via exact name to Zack Collins +3579,Aaron Bummer,4,,279,tier2_name,Automatic match via exact name to Aaron Bummer +3580,Aaron Civale,4,,383,tier2_name,Automatic match via exact name to Aaron Civale +3581,Aaron Loup,4,,1152,tier2_name,Automatic match via exact name to Aaron Loup +3582,Aaron Nola,4,,1433,tier2_name,Automatic match via exact name to Aaron Nola +3583,Aaron Slegers,4,,1839,tier2_name,Automatic match via exact name to Aaron Slegers +3584,Adam Cimber,4,,380,tier2_name,Automatic match via exact name to Adam Cimber +3585,Adam Kolarek,4,,1069,tier2_name,Automatic match via exact name to Adam Kolarek +3586,Adam Morgan,4,,1368,tier2_name,Automatic match via exact name to Adam Morgan +3587,Adam Ottavino,4,,1475,tier2_name,Automatic match via exact name to Adam Ottavino +3588,Adam Plutko,4,,1567,tier2_name,Automatic match via exact name to Adam Plutko +3589,Adam Wainwright,4,,2099,tier2_name,Automatic match via exact name to Adam Wainwright +3590,Adbert Alzolay,4,,63,tier2_name,Automatic match via exact name to Adbert Alzolay +3591,Adrian Houser,4,,928,tier2_name,Automatic match via exact name to Adrian Houser +3592,Adrian Morejon,4,,1363,tier2_name,Automatic match via exact name to Adrian Morejon +3593,AJ Cole,4,,399,tier2_name,Automatic match via exact name to AJ Cole +3594,AJ Minter,4,,1336,tier2_name,Automatic match via exact name to AJ Minter +3595,Alec Mills,4,,1330,tier2_name,Automatic match via exact name to Alec Mills +3596,Alex Claudio,4,,387,tier2_name,Automatic match via exact name to Alex Claudio +3597,Alex Cobb,4,,394,tier2_name,Automatic match via exact name to Alex Cobb +3598,Alex Colome,4,,404,tier2_name,Automatic match via exact name to Alex Colome +3599,Alex Reyes,4,,1635,tier2_name,Automatic match via exact name to Alex Reyes +3600,Alex Wood,4,,2193,tier2_name,Automatic match via exact name to Alex Wood +3601,Alex Young,4,,2217,tier2_name,Automatic match via exact name to Alex Young +3602,Amir Garrett,4,,698,tier2_name,Automatic match via exact name to Amir Garrett +3603,Andre Scrubb,4,,1791,tier2_name,Automatic match via exact name to Andre Scrubb +3604,Andrew Chafin,4,,363,tier2_name,Automatic match via exact name to Andrew Chafin +3605,Andrew Heaney,4,,843,tier2_name,Automatic match via exact name to Andrew Heaney +3606,Andrew Kittredge,4,,1057,tier2_name,Automatic match via exact name to Andrew Kittredge +3607,Andrew Miller,4,,1320,tier2_name,Automatic match via exact name to Andrew Miller +3608,Andrew Suarez,4,,1935,tier2_name,Automatic match via exact name to Andrew Suarez +3609,Andrew Triggs,4,,2014,tier2_name,Automatic match via exact name to Andrew Triggs +3610,Anibal Sanchez,4,,1743,tier2_name,Automatic match via exact name to Anibal Sanchez +3611,Anthony Banda,4,,121,tier2_name,Automatic match via exact name to Anthony Banda +3612,Anthony Bass,4,,145,tier2_name,Automatic match via exact name to Anthony Bass +3613,Anthony DeSclafani,4,,493,tier2_name,Automatic match via exact name to Anthony DeSclafani +3614,Anthony Kay,4,,1012,tier2_name,Automatic match via exact name to Anthony Kay +3615,Anthony Misiewicz,4,,1338,tier2_name,Automatic match via exact name to Anthony Misiewicz +3616,Antonio Senzatela,4,,1801,tier2_name,Automatic match via exact name to Antonio Senzatela +3617,Archie Bradley,4,,236,tier2_name,Automatic match via exact name to Archie Bradley +3618,Aroldis Chapman,4,,366,tier2_name,Automatic match via exact name to Aroldis Chapman +3623,Austin Gomber,4,,730,tier2_name,Automatic match via exact name to Austin Gomber +3624,Austin Voth,4,,2091,tier2_name,Automatic match via exact name to Austin Voth +3625,Ben Braymer,4,,245,tier2_name,Automatic match via exact name to Ben Braymer +3626,Blake Parker,4,,1499,tier2_name,Automatic match via exact name to Blake Parker +3627,Blake Snell,4,,1861,tier2_name,Automatic match via exact name to Blake Snell +3628,Blake Taylor,4,,1966,tier2_name,Automatic match via exact name to Blake Taylor +3629,Blake Treinen,4,,2011,tier2_name,Automatic match via exact name to Blake Treinen +3630,Brad Boxberger,4,,229,tier2_name,Automatic match via exact name to Brad Boxberger +3631,Brad Brach,4,,232,tier2_name,Automatic match via exact name to Brad Brach +3632,Brad Hand,4,,816,tier2_name,Automatic match via exact name to Brad Hand +3633,Brad Keller,4,,1016,tier2_name,Automatic match via exact name to Brad Keller +3634,Brady Lail,4,,1084,tier2_name,Automatic match via exact name to Brady Lail +3635,Brady Singer,4,,1827,tier2_name,Automatic match via exact name to Brady Singer +3636,Brandon Bailey,4,,116,tier2_name,Automatic match via exact name to Brandon Bailey +3637,Brandon Bielak,4,,195,tier2_name,Automatic match via exact name to Brandon Bielak +3638,Brandon Brennan,4,,249,tier2_name,Automatic match via exact name to Brandon Brennan +3639,Brandon Kintzler,4,,1052,tier2_name,Automatic match via exact name to Brandon Kintzler +3640,Brandon Leibrandt,4,,1111,tier2_name,Automatic match via exact name to Brandon Leibrandt +3641,Brandon Woodruff,4,,2196,tier2_name,Automatic match via exact name to Brandon Woodruff +3642,Brandon Workman,4,,2198,tier2_name,Automatic match via exact name to Brandon Workman +3643,Braxton Garrett,4,,701,tier2_name,Automatic match via exact name to Braxton Garrett +3644,Brent Suter,4,,1943,tier2_name,Automatic match via exact name to Brent Suter +3645,Brett Anderson,4,,66,tier2_name,Automatic match via exact name to Brett Anderson +3646,Brett Martin,4,,1218,tier2_name,Automatic match via exact name to Brett Martin +3647,Brian Moran,4,,1362,tier2_name,Automatic match via exact name to Brian Moran +3648,Brooks Raley,4,,1601,tier2_name,Automatic match via exact name to Brooks Raley +3649,Brusdar Graterol,4,,763,tier2_name,Automatic match via exact name to Brusdar Graterol +3650,Bryan Garcia,4,,685,tier2_name,Automatic match via exact name to Bryan Garcia +3651,Bryse Wilson,4,,2171,tier2_name,Automatic match via exact name to Bryse Wilson +3652,Buck Farmer,4,,597,tier2_name,Automatic match via exact name to Buck Farmer +3653,Burch Smith,4,,1844,tier2_name,Automatic match via exact name to Burch Smith +3654,Cal Quantrill,4,,1593,tier2_name,Automatic match via exact name to Cal Quantrill +3655,Caleb Baragar,4,,124,tier2_name,Automatic match via exact name to Caleb Baragar +3656,Caleb Ferguson,4,,605,tier2_name,Automatic match via exact name to Caleb Ferguson +3657,Caleb Smith,4,,1845,tier2_name,Automatic match via exact name to Caleb Smith +3658,Caleb Thielbar,4,,1977,tier2_name,Automatic match via exact name to Caleb Thielbar +3659,Cam Bedrosian,4,,163,tier2_name,Automatic match via exact name to Cam Bedrosian +3660,Cam Hill,4,,902,tier2_name,Automatic match via exact name to Cam Hill +3661,Carlos Carrasco,4,,331,tier2_name,Automatic match via exact name to Carlos Carrasco +3662,Carlos Estevez,4,,585,tier2_name,Automatic match via exact name to Carlos Estevez +3663,Carlos Hernandez,4,,880,tier2_name,Automatic match via exact name to Carlos Hernandez +3664,Carlos Martinez,4,,1223,tier2_name,Automatic match via exact name to Carlos Martinez +3665,Carlos Rodon,4,,1670,tier2_name,Automatic match via exact name to Carlos Rodon +3666,Carson Fulmer,4,,667,tier2_name,Automatic match via exact name to Carson Fulmer +3667,Casey Mize,4,,1342,tier2_name,Automatic match via exact name to Casey Mize +3668,Casey Sadler,4,,1736,tier2_name,Automatic match via exact name to Casey Sadler +3669,Cesar Valdez,4,,2046,tier2_name,Automatic match via exact name to Cesar Valdez +3670,Chad Green,4,,768,tier2_name,Automatic match via exact name to Chad Green +3671,Chad Kuhl,4,,1078,tier2_name,Automatic match via exact name to Chad Kuhl +3672,Chance Adams,4,,18,tier2_name,Automatic match via exact name to Chance Adams +3673,Charlie Morton,4,,1375,tier2_name,Automatic match via exact name to Charlie Morton +3674,Chase Anderson,4,,67,tier2_name,Automatic match via exact name to Chase Anderson +3675,Chase De Jong,4,,478,tier2_name,Automatic match via exact name to Chase De Jong +3676,Chasen Shreve,4,,1819,tier2_name,Automatic match via exact name to Chasen Shreve +3677,Chaz Roe,4,,1688,tier2_name,Automatic match via exact name to Chaz Roe +3678,Chi Chi Gonzalez,4,,737,tier2_name,Automatic match via exact name to Chi Chi Gonzalez +3679,Chris Bassitt,4,,146,tier2_name,Automatic match via exact name to Chris Bassitt +3680,Chris Martin,4,,1214,tier2_name,Automatic match via exact name to Chris Martin +3681,Chris Mazza,4,,1257,tier2_name,Automatic match via exact name to Chris Mazza +3682,Chris Paddack,4,,1483,tier2_name,Automatic match via exact name to Chris Paddack +3683,Chris Stratton,4,,1922,tier2_name,Automatic match via exact name to Chris Stratton +3684,Cionel Perez,4,,1540,tier2_name,Automatic match via exact name to Cionel Perez +3685,Clayton Kershaw,4,,1034,tier2_name,Automatic match via exact name to Clayton Kershaw +3686,Codi Heuer,4,,890,tier2_name,Automatic match via exact name to Codi Heuer +3687,Cody Ponce,4,,1573,tier2_name,Automatic match via exact name to Cody Ponce +3688,Cody Reed,4,,1625,tier2_name,Automatic match via exact name to Cody Reed +3689,Cody Stashak,4,,1895,tier2_name,Automatic match via exact name to Cody Stashak +3690,Cole Sulser,4,,1942,tier2_name,Automatic match via exact name to Cole Sulser +3691,Colin Rea,4,,1621,tier2_name,Automatic match via exact name to Colin Rea +3692,Colten Brewer,4,,252,tier2_name,Automatic match via exact name to Colten Brewer +3693,Conner Menez,4,,1304,tier2_name,Automatic match via exact name to Conner Menez +3694,Connor Brogdon,4,,261,tier2_name,Automatic match via exact name to Connor Brogdon +3695,Corbin Burnes,4,,286,tier2_name,Automatic match via exact name to Corbin Burnes +3696,Corey Knebel,4,,1063,tier2_name,Automatic match via exact name to Corey Knebel +3697,Corey Oswalt,4,,1472,tier2_name,Automatic match via exact name to Corey Oswalt +3698,Craig Kimbrel,4,,1043,tier2_name,Automatic match via exact name to Craig Kimbrel +3699,Craig Stammen,4,,1891,tier2_name,Automatic match via exact name to Craig Stammen +3700,Cristian Javier,4,,971,tier2_name,Automatic match via exact name to Cristian Javier +3701,Cy Sneed,4,,1860,tier2_name,Automatic match via exact name to Cy Sneed +3702,Dakota Bacus,4,,108,tier2_name,Automatic match via exact name to Dakota Bacus +3703,Dakota Hudson,4,,934,tier2_name,Automatic match via exact name to Dakota Hudson +3704,Dallas Keuchel,4,,1035,tier2_name,Automatic match via exact name to Dallas Keuchel +3705,Dan Altavilla,4,,54,tier2_name,Automatic match via exact name to Dan Altavilla +3706,Dan Winkler,4,,2178,tier2_name,Automatic match via exact name to Dan Winkler +3707,Dane Dunning,4,,548,tier2_name,Automatic match via exact name to Dane Dunning +3708,Daniel Bard,4,,125,tier2_name,Automatic match via exact name to Daniel Bard +3709,Daniel Castano,4,,337,tier2_name,Automatic match via exact name to Daniel Castano +3710,Daniel Hudson,4,,933,tier2_name,Automatic match via exact name to Daniel Hudson +3711,Daniel Mengden,4,,1305,tier2_name,Automatic match via exact name to Daniel Mengden +3712,Daniel Norris,4,,1439,tier2_name,Automatic match via exact name to Daniel Norris +3713,Daniel Ponce de Leon,4,,1574,tier2_name,Automatic match via exact name to Daniel Ponce de Leon +3714,Danny Duffy,4,,541,tier2_name,Automatic match via exact name to Danny Duffy +3715,Darren ODay,4,,1449,tier2_name,Automatic match via exact name to Darren ODay +3716,Darwinzon Hernandez,4,,877,tier2_name,Automatic match via exact name to Darwinzon Hernandez +3717,David Hale,4,,805,tier2_name,Automatic match via exact name to David Hale +3718,David Peterson,4,,1548,tier2_name,Automatic match via exact name to David Peterson +3719,David Phelps,4,,1554,tier2_name,Automatic match via exact name to David Phelps +3720,Dean Kremer,4,,1077,tier2_name,Automatic match via exact name to Dean Kremer +3721,Deivi Garcia,4,,688,tier2_name,Automatic match via exact name to Deivi Garcia +3722,Dellin Betances,4,,184,tier2_name,Automatic match via exact name to Dellin Betances +3723,Dennis Santana,4,,1762,tier2_name,Automatic match via exact name to Dennis Santana +3724,Deolis Guerra,4,,787,tier2_name,Automatic match via exact name to Deolis Guerra +3725,Derek Holland,4,,914,tier2_name,Automatic match via exact name to Derek Holland +3726,Devin Smeltzer,4,,1840,tier2_name,Automatic match via exact name to Devin Smeltzer +3727,Devin Williams,4,,2158,tier2_name,Automatic match via exact name to Devin Williams +3728,Diego Castillo,4,,3235,manual_new,Manual assignment to new SbaPlayer: Diego Castillo +3729,Dillon Tate,4,,1959,tier2_name,Automatic match via exact name to Dillon Tate +3730,Dinelson Lamet,4,,1090,tier2_name,Automatic match via exact name to Dinelson Lamet +3731,Dominic Leone,4,,1116,tier2_name,Automatic match via exact name to Dominic Leone +3732,Dovydas Neverauskas,4,,1416,tier2_name,Automatic match via exact name to Dovydas Neverauskas +3733,Drew Pomeranz,4,,1572,tier2_name,Automatic match via exact name to Drew Pomeranz +3734,Drew Rasmussen,4,,1618,tier2_name,Automatic match via exact name to Drew Rasmussen +3735,Drew Smith,4,,1848,tier2_name,Automatic match via exact name to Drew Smith +3736,Drew Smyly,4,,1858,tier2_name,Automatic match via exact name to Drew Smyly +3737,Duane Underwood,4,,2033,tier2_name,Automatic match via exact name to Duane Underwood +3738,Dustin May,4,,1249,tier2_name,Automatic match via exact name to Dustin May +3739,Dylan Bundy,4,,280,tier2_name,Automatic match via exact name to Dylan Bundy +3740,Dylan Cease,4,,355,tier2_name,Automatic match via exact name to Dylan Cease +3741,Dylan Covey,4,,425,tier2_name,Automatic match via exact name to Dylan Covey +3742,Dylan Floro,4,,629,tier2_name,Automatic match via exact name to Dylan Floro +3743,Edwin Diaz,4,,503,tier2_name,Automatic match via exact name to Edwin Diaz +3744,Elieser Hernandez,4,,874,tier2_name,Automatic match via exact name to Elieser Hernandez +3745,Emilio Pagan,4,,1484,tier2_name,Automatic match via exact name to Emilio Pagan +3746,Enoli Paredes,4,,1496,tier2_name,Automatic match via exact name to Enoli Paredes +3747,Erasmo Ramirez,4,,1604,tier2_name,Automatic match via exact name to Erasmo Ramirez +3748,Eric Lauer,4,,1096,tier2_name,Automatic match via exact name to Eric Lauer +3749,Eric Yardley,4,,2209,tier2_name,Automatic match via exact name to Eric Yardley +3750,Erick Fedde,4,,600,tier2_name,Automatic match via exact name to Erick Fedde +3752,Evan Marshall,4,,1207,tier2_name,Automatic match via exact name to Evan Marshall +3753,Evan Phillips,4,,3238,manual_new,Manual assignment to new SbaPlayer: Evan Phillips +3754,Felix Pena,4,,1518,tier2_name,Automatic match via exact name to Felix Pena +3755,Framber Valdez,4,,2048,tier2_name,Automatic match via exact name to Framber Valdez +3756,Frankie Montas,4,,1351,tier2_name,Automatic match via exact name to Frankie Montas +3757,Franklyn Kilome,4,,1041,tier2_name,Automatic match via exact name to Franklyn Kilome +3758,Freddy Peralta,4,,1525,tier2_name,Automatic match via exact name to Freddy Peralta +3759,Gabe Speier,4,,1885,tier2_name,Automatic match via exact name to Gabe Speier +3760,Garrett Crochet,4,,439,tier2_name,Automatic match via exact name to Garrett Crochet +3761,Garrett Richards,4,,1645,tier2_name,Automatic match via exact name to Garrett Richards +3762,Genesis Cabrera,4,,301,tier2_name,Automatic match via exact name to Genesis Cabrera +3763,Geoff Hartlieb,4,,833,tier2_name,Automatic match via exact name to Geoff Hartlieb +3764,German Marquez,4,,1204,tier2_name,Automatic match via exact name to German Marquez +3765,Gerrit Cole,4,,398,tier2_name,Automatic match via exact name to Gerrit Cole +3766,Gio Gonzalez,4,,739,tier2_name,Automatic match via exact name to Gio Gonzalez +3767,Giovanny Gallegos,4,,672,tier2_name,Automatic match via exact name to Giovanny Gallegos +3768,Grant Dayton,4,,475,tier2_name,Automatic match via exact name to Grant Dayton +3769,Greg Holland,4,,915,tier2_name,Automatic match via exact name to Greg Holland +3770,Gregory Soto,4,,1878,tier2_name,Automatic match via exact name to Gregory Soto +3771,Griffin Canning,4,,317,tier2_name,Automatic match via exact name to Griffin Canning +3772,Hansel Robles,4,,1665,tier2_name,Automatic match via exact name to Hansel Robles +3773,Heath Hembree,4,,854,tier2_name,Automatic match via exact name to Heath Hembree +3774,Hector Neris,4,,1413,tier2_name,Automatic match via exact name to Hector Neris +3775,Hector Rondon,4,,1706,tier2_name,Automatic match via exact name to Hector Rondon +3776,Hoby Milner,4,,1332,tier2_name,Automatic match via exact name to Hoby Milner +3777,Homer Bailey,4,,114,tier2_name,Automatic match via exact name to Homer Bailey +3778,Huascar Ynoa,4,,2215,tier2_name,Automatic match via exact name to Huascar Ynoa +3779,Humberto Castellanos,4,,339,tier2_name,Automatic match via exact name to Humberto Castellanos +3780,Humberto Mejia,4,,1297,tier2_name,Automatic match via exact name to Humberto Mejia +3781,Hunter Harvey,4,,836,tier2_name,Automatic match via exact name to Hunter Harvey +3782,Hyun Jin Ryu,4,,1733,tier2_name,Automatic match via exact name to Hyun Jin Ryu +3783,Ian Anderson,4,,74,tier2_name,Automatic match via exact name to Ian Anderson +3784,Ian Gibaut,4,,714,tier2_name,Automatic match via exact name to Ian Gibaut +3785,Ian Kennedy,4,,1029,tier2_name,Automatic match via exact name to Ian Kennedy +3786,Ivan Nova,4,,1441,tier2_name,Automatic match via exact name to Ivan Nova +3787,JA Happ,4,,821,tier2_name,Automatic match via exact name to JA Happ +3788,Jace Fry,4,,661,tier2_name,Automatic match via exact name to Jace Fry +3789,Jack Flaherty,4,,622,tier2_name,Automatic match via exact name to Jack Flaherty +3790,Jacob Barnes,4,,133,tier2_name,Automatic match via exact name to Jacob Barnes +3791,Jacob deGrom,4,,484,tier2_name,Automatic match via exact name to Jacob deGrom +3792,Jacob Waguespack,4,,2098,tier2_name,Automatic match via exact name to Jacob Waguespack +3793,Jacob Webb,4,,2126,tier2_name,Automatic match via exact name to Jacob Webb +3794,Jaime Barria,4,,141,tier2_name,Automatic match via exact name to Jaime Barria +3795,Jairo Diaz,4,,501,tier2_name,Automatic match via exact name to Jairo Diaz +3796,Jake Arrieta,4,,94,tier2_name,Automatic match via exact name to Jake Arrieta +3797,Jake Diekman,4,,514,tier2_name,Automatic match via exact name to Jake Diekman +3798,Jake McGee,4,,1274,tier2_name,Automatic match via exact name to Jake McGee +3799,Jake Newberry,4,,1418,tier2_name,Automatic match via exact name to Jake Newberry +3804,James Hoyt,4,,931,tier2_name,Automatic match via exact name to James Hoyt +3805,James Karinchak,4,,1009,tier2_name,Automatic match via exact name to James Karinchak +3806,James Paxton,4,,1506,tier2_name,Automatic match via exact name to James Paxton +3807,Jared Hughes,4,,937,tier2_name,Automatic match via exact name to Jared Hughes +3808,Jarlin Garcia,4,,684,tier2_name,Automatic match via exact name to Jarlin Garcia +3809,Jason Adam,4,,13,tier2_name,Automatic match via exact name to Jason Adam +3810,Javy A Guerra,4,,784,manual_existing,Manual match to existing SbaPlayer: Javy Guerra +3811,Javy Guerra,4,,3236,manual_new,Manual assignment to new SbaPlayer: Javy Guerra +3812,JB Wendelken,4,,2134,tier2_name,Automatic match via exact name to JB Wendelken +3813,Jeff Hoffman,4,,910,tier2_name,Automatic match via exact name to Jeff Hoffman +3814,Jeff Samardzija,4,,1740,tier2_name,Automatic match via exact name to Jeff Samardzija +3815,Jeffrey Springs,4,,1889,tier2_name,Automatic match via exact name to Jeffrey Springs +3816,Jeremy Jeffress,4,,976,tier2_name,Automatic match via exact name to Jeremy Jeffress +3817,Jesse Chavez,4,,370,tier2_name,Automatic match via exact name to Jesse Chavez +3818,Jesse Hahn,4,,804,tier2_name,Automatic match via exact name to Jesse Hahn +3819,Jesus Luzardo,4,,1170,tier2_name,Automatic match via exact name to Jesus Luzardo +3820,Jesus Tinoco,4,,1992,tier2_name,Automatic match via exact name to Jesus Tinoco +3821,Jeurys Familia,4,,595,tier2_name,Automatic match via exact name to Jeurys Familia +3822,Jimmy Cordero,4,,419,tier2_name,Automatic match via exact name to Jimmy Cordero +3823,Jimmy Herget,4,,863,tier2_name,Automatic match via exact name to Jimmy Herget +3824,Joakim Soria,4,,1872,tier2_name,Automatic match via exact name to Joakim Soria +3825,Joe Jimenez,4,,979,tier2_name,Automatic match via exact name to Joe Jimenez +3826,Joe Kelly,4,,1021,tier2_name,Automatic match via exact name to Joe Kelly +3827,Joe Musgrove,4,,1394,tier2_name,Automatic match via exact name to Joe Musgrove +3828,Joely Rodriguez,4,,1673,tier2_name,Automatic match via exact name to Joely Rodriguez +3829,Joey Gerber,4,,712,tier2_name,Automatic match via exact name to Joey Gerber +3830,Johan Oviedo,4,,1479,tier2_name,Automatic match via exact name to Johan Oviedo +3831,John Curtiss,4,,455,tier2_name,Automatic match via exact name to John Curtiss +3832,John Gant,4,,677,tier2_name,Automatic match via exact name to John Gant +3833,John King,4,,1045,tier2_name,Automatic match via exact name to John King +3834,John Means,4,,2,tier2_name,Automatic match via exact name to John Means +3835,John Schreiber,4,,1780,tier2_name,Automatic match via exact name to John Schreiber +3836,Johnny Cueto,4,,451,tier2_name,Automatic match via exact name to Johnny Cueto +3837,JoJo Romero,4,,1702,tier2_name,Automatic match via exact name to JoJo Romero +3838,Jon Gray,4,,766,tier2_name,Automatic match via exact name to Jon Gray +3839,Jon Lester,4,,1117,tier2_name,Automatic match via exact name to Jon Lester +3840,Jonathan Hernandez,4,,876,tier2_name,Automatic match via exact name to Jonathan Hernandez +3841,Jonathan Holder,4,,912,tier2_name,Automatic match via exact name to Jonathan Holder +3842,Jonathan Loaisiga,4,,1132,tier2_name,Automatic match via exact name to Jonathan Loaisiga +3843,Jordan Lyles,4,,1171,tier2_name,Automatic match via exact name to Jordan Lyles +3844,Jordan Montgomery,4,,1356,tier2_name,Automatic match via exact name to Jordan Montgomery +3845,Jordan Romano,4,,1699,tier2_name,Automatic match via exact name to Jordan Romano +3846,Jordan Weems,4,,2129,tier2_name,Automatic match via exact name to Jordan Weems +3847,Jordan Yamamoto,4,,2205,tier2_name,Automatic match via exact name to Jordan Yamamoto +3848,Jorge Alcala,4,,32,tier2_name,Automatic match via exact name to Jorge Alcala +3849,Jorge Lopez,4,,1144,tier2_name,Automatic match via exact name to Jorge Lopez +3850,Jose Alvarado,4,,58,tier2_name,Automatic match via exact name to Jose Alvarado +3851,Jose Alvarez,4,,59,tier2_name,Automatic match via exact name to Jose Alvarez +3852,Jose Berrios,4,,182,tier2_name,Automatic match via exact name to Jose Berrios +3853,Jose Cisnero,4,,382,tier2_name,Automatic match via exact name to Jose Cisnero +3854,Jose Quintana,4,,1596,tier2_name,Automatic match via exact name to Jose Quintana +3855,Jose Urena,4,,2035,tier2_name,Automatic match via exact name to Jose Urena +3856,Jose Urquidy,4,,2041,tier2_name,Automatic match via exact name to Jose Urquidy +3857,Josh Fleming,4,,623,tier2_name,Automatic match via exact name to Josh Fleming +3858,Josh Hader,4,,802,tier2_name,Automatic match via exact name to Josh Hader +3859,Josh James,4,,965,tier2_name,Automatic match via exact name to Josh James +3860,Josh Lindblom,4,,1123,tier2_name,Automatic match via exact name to Josh Lindblom +3861,Josh Osich,4,,1469,tier2_name,Automatic match via exact name to Josh Osich +3862,Josh Smith,4,,1852,tier2_name,Automatic match via exact name to Josh Smith +3863,Josh Staumont,4,,1897,tier2_name,Automatic match via exact name to Josh Staumont +3864,Josh Taylor,4,,1967,tier2_name,Automatic match via exact name to Josh Taylor +3865,Josh Tomlin,4,,1996,tier2_name,Automatic match via exact name to Josh Tomlin +3866,JP Feyereisen,4,,612,tier2_name,Automatic match via exact name to JP Feyereisen +3867,JT Brubaker,4,,269,tier2_name,Automatic match via exact name to JT Brubaker +3868,Julian Merryweather,4,,1311,tier2_name,Automatic match via exact name to Julian Merryweather +3869,Julio Teheran,4,,1970,tier2_name,Automatic match via exact name to Julio Teheran +3870,Julio Urias,4,,2038,tier2_name,Automatic match via exact name to Julio Urias +3871,Junior Guerra,4,,785,tier2_name,Automatic match via exact name to Junior Guerra +3872,Justin Dunn,4,,546,tier2_name,Automatic match via exact name to Justin Dunn +3873,Justin Topa,4,,1999,tier2_name,Automatic match via exact name to Justin Topa +3874,Justin Wilson,4,,2167,tier2_name,Automatic match via exact name to Justin Wilson +3875,Justus Sheffield,4,,1813,tier2_name,Automatic match via exact name to Justus Sheffield +3876,Keegan Akin,4,,27,tier2_name,Automatic match via exact name to Keegan Akin +3877,Kendall Graveman,4,,764,tier2_name,Automatic match via exact name to Kendall Graveman +3878,Kenley Jansen,4,,968,tier2_name,Automatic match via exact name to Kenley Jansen +3879,Kenta Maeda,4,,1181,tier2_name,Automatic match via exact name to Kenta Maeda +3880,Keury Mella,4,,1300,tier2_name,Automatic match via exact name to Keury Mella +3881,Kevin Gausman,4,,706,tier2_name,Automatic match via exact name to Kevin Gausman +3882,Kevin Ginkel,4,,722,tier2_name,Automatic match via exact name to Kevin Ginkel +3883,Keynan Middleton,4,,1316,tier2_name,Automatic match via exact name to Keynan Middleton +3884,Kolby Allard,4,,42,tier2_name,Automatic match via exact name to Kolby Allard +3885,Kris Bubic,4,,274,tier2_name,Automatic match via exact name to Kris Bubic +3886,Kwang Hyun Kim,4,,946,tier2_name,Automatic match via exact name to Kwang Hyun Kim +3887,Kyle Cody,4,,395,tier2_name,Automatic match via exact name to Kyle Cody +3888,Kyle Crick,4,,435,tier2_name,Automatic match via exact name to Kyle Crick +3889,Kyle Finnegan,4,,617,tier2_name,Automatic match via exact name to Kyle Finnegan +3890,Kyle Freeland,4,,650,tier2_name,Automatic match via exact name to Kyle Freeland +3891,Kyle Funkhouser,4,,668,tier2_name,Automatic match via exact name to Kyle Funkhouser +3892,Kyle Gibson,4,,715,tier2_name,Automatic match via exact name to Kyle Gibson +3893,Kyle Hart,4,,832,tier2_name,Automatic match via exact name to Kyle Hart +3894,Kyle Hendricks,4,,856,tier2_name,Automatic match via exact name to Kyle Hendricks +3895,Kyle McGowin,4,,1276,tier2_name,Automatic match via exact name to Kyle McGowin +3896,Kyle Ryan,4,,1730,tier2_name,Automatic match via exact name to Kyle Ryan +3897,Kyle Wright,4,,2200,tier2_name,Automatic match via exact name to Kyle Wright +3898,Kyle Zimmer,4,,2228,tier2_name,Automatic match via exact name to Kyle Zimmer +3899,Lance Lynn,4,,1173,tier2_name,Automatic match via exact name to Lance Lynn +3900,Lance McCullers Jr,4,,1271,tier2_name,Automatic match via exact name to Lance McCullers Jr +3901,Lewis Thorpe,4,,1989,tier2_name,Automatic match via exact name to Lewis Thorpe +3902,Liam Hendriks,4,,857,tier2_name,Automatic match via exact name to Liam Hendriks +3903,Ljay Newsome,4,,1421,tier2_name,Automatic match via exact name to Ljay Newsome +3904,Logan Allen,4,,3243,manual_new,Manual assignment to new SbaPlayer: Logan Allen +3905,Logan Webb,4,,2127,tier2_name,Automatic match via exact name to Logan Webb +3906,Lou Trivino,4,,2016,tier2_name,Automatic match via exact name to Lou Trivino +3907,Lucas Giolito,4,,724,tier2_name,Automatic match via exact name to Lucas Giolito +3908,Lucas Sims,4,,1826,tier2_name,Automatic match via exact name to Lucas Sims +3909,Luis Avilan,4,,106,tier2_name,Automatic match via exact name to Luis Avilan +3910,Luis Castillo,4,,344,tier2_name,Automatic match via exact name to Luis Castillo +3911,Luis Cessa,4,,361,tier2_name,Automatic match via exact name to Luis Cessa +3912,Luis Garcia,4,,694,tier2_name,Automatic match via exact name to Luis Garcia Jr +3913,Luis H Garcia,4,,3244,manual_new,Manual assignment to new SbaPlayer: Luis H Garcia +3914,Luis Patino,4,,1504,tier2_name,Automatic match via exact name to Luis Patino +3915,Luis Perdomo,4,,1529,tier2_name,Automatic match via exact name to Luis Perdomo +3916,Luke Jackson,4,,960,tier2_name,Automatic match via exact name to Luke Jackson +3917,Luke Weaver,4,,2124,tier2_name,Automatic match via exact name to Luke Weaver +3918,Madison Bumgarner,4,,278,tier2_name,Automatic match via exact name to Madison Bumgarner +3919,Marco Gonzales,4,,735,tier2_name,Automatic match via exact name to Marco Gonzales +3920,Marcus Walden,4,,2100,tier2_name,Automatic match via exact name to Marcus Walden +3921,Mark Melancon,4,,1298,tier2_name,Automatic match via exact name to Mark Melancon +3922,Martin Perez,4,,1535,tier2_name,Automatic match via exact name to Martin Perez +3923,Masahiro Tanaka,4,,1955,tier2_name,Automatic match via exact name to Masahiro Tanaka +3924,Matt Andriese,4,,76,tier2_name,Automatic match via exact name to Matt Andriese +3925,Matt Barnes,4,,131,tier2_name,Automatic match via exact name to Matt Barnes +3926,Matt Foster,4,,638,tier2_name,Automatic match via exact name to Matt Foster +3927,Matt Hall,4,,806,tier2_name,Automatic match via exact name to Matt Hall +3928,Matt Harvey,4,,835,tier2_name,Automatic match via exact name to Matt Harvey +3929,Matt Magill,4,,1182,tier2_name,Automatic match via exact name to Matt Magill +3930,Matt Shoemaker,4,,1817,tier2_name,Automatic match via exact name to Matt Shoemaker +3931,Matt Strahm,4,,1918,tier2_name,Automatic match via exact name to Matt Strahm +3932,Matt Wisler,4,,2183,tier2_name,Automatic match via exact name to Matt Wisler +3933,Matthew Boyd,4,,230,tier2_name,Automatic match via exact name to Matthew Boyd +3934,Max Fried,4,,659,tier2_name,Automatic match via exact name to Max Fried +3935,Max Scherzer,4,,1773,tier2_name,Automatic match via exact name to Max Scherzer +3936,Merrill Kelly,4,,1020,tier2_name,Automatic match via exact name to Merrill Kelly +3937,Michael Fulmer,4,,666,tier2_name,Automatic match via exact name to Michael Fulmer +3938,Michael King,4,,1047,tier2_name,Automatic match via exact name to Michael King +3939,Michael Lorenzen,4,,1151,tier2_name,Automatic match via exact name to Michael Lorenzen +3940,Michael Pineda,4,,1560,tier2_name,Automatic match via exact name to Michael Pineda +3941,Michael Wacha,4,,2093,tier2_name,Automatic match via exact name to Michael Wacha +3942,Miguel Castro,4,,350,tier2_name,Automatic match via exact name to Miguel Castro +3943,Mike Clevinger,4,,392,tier2_name,Automatic match via exact name to Mike Clevinger +3944,Mike Fiers,4,,615,tier2_name,Automatic match via exact name to Mike Fiers +3945,Mike Kickham,4,,1036,tier2_name,Automatic match via exact name to Mike Kickham +3946,Mike Mayers,4,,1251,tier2_name,Automatic match via exact name to Mike Mayers +3947,Mike Minor,4,,1335,tier2_name,Automatic match via exact name to Mike Minor +3948,Mike Soroka,4,,1875,tier2_name,Automatic match via exact name to Michael Soroka +3949,Mitch Keller,4,,1017,tier2_name,Automatic match via exact name to Mitch Keller +3950,Mychal Givens,4,,725,tier2_name,Automatic match via exact name to Mychal Givens +3951,Nabil Crismatt,4,,436,tier2_name,Automatic match via exact name to Nabil Crismatt +3952,Nate Jones,4,,990,tier2_name,Automatic match via exact name to Nate Jones +3953,Nate Pearson,4,,1513,tier2_name,Automatic match via exact name to Nate Pearson +3954,Nathan Eovaldi,4,,576,tier2_name,Automatic match via exact name to Nathan Eovaldi +3955,Nestor Cortes Jr,4,,421,tier2_name,Automatic match via exact name to Nestor Cortes Jr +3956,Nick Anderson,4,,71,tier2_name,Automatic match via exact name to Nick Anderson +3957,Nick Goody,4,,750,tier2_name,Automatic match via exact name to Nick Goody +3958,Nick Margevicius,4,,1197,tier2_name,Automatic match via exact name to Nick Margevicius +3959,Nick Neidert,4,,1408,tier2_name,Automatic match via exact name to Nick Neidert +3960,Nick Nelson,4,,1410,tier2_name,Automatic match via exact name to Nick Nelson +3961,Nick Pivetta,4,,1564,tier2_name,Automatic match via exact name to Nick Pivetta +3962,Nick Ramirez,4,,1605,tier2_name,Automatic match via exact name to Nick Ramirez +3963,Nick Tropeano,4,,2018,tier2_name,Automatic match via exact name to Nick Tropeano +3964,Nick Vincent,4,,2082,tier2_name,Automatic match via exact name to Nick Vincent +3965,Nick Wittgren,4,,2185,tier2_name,Automatic match via exact name to Nick Wittgren +3966,Nik Turley,4,,2027,tier2_name,Automatic match via exact name to Nik Turley +3967,Nivaldo Rodriguez,4,,1687,tier2_name,Automatic match via exact name to Nivaldo Rodriguez +3968,Noe Ramirez,4,,1606,tier2_name,Automatic match via exact name to Noe Ramirez +3969,Oliver Drake,4,,534,tier2_name,Automatic match via exact name to Oliver Drake +3970,Oliver Perez,4,,1533,tier2_name,Automatic match via exact name to Oliver Perez +3971,Pablo Lopez,4,,1146,tier2_name,Automatic match via exact name to Pablo Lopez +3972,Patrick Corbin,4,,416,tier2_name,Automatic match via exact name to Patrick Corbin +3973,Patrick Sandoval,4,,1754,tier2_name,Automatic match via exact name to Patrick Sandoval +3974,Paul Fry,4,,662,tier2_name,Automatic match via exact name to Paul Fry +3975,Pedro Baez,4,,111,tier2_name,Automatic match via exact name to Pedro Baez +3976,Pete Fairbanks,4,,592,tier2_name,Automatic match via exact name to Pete Fairbanks +3980,Rafael Dolis,4,,523,tier2_name,Automatic match via exact name to Rafael Dolis +3981,Rafael Montero,4,,1352,tier2_name,Automatic match via exact name to Rafael Montero +3982,Raisel Iglesias,4,,950,tier2_name,Automatic match via exact name to Raisel Iglesias +3983,Ramon Rosso,4,,1716,tier2_name,Automatic match via exact name to Ramon Rosso +3984,Randy Dobnak,4,,521,tier2_name,Automatic match via exact name to Randy Dobnak +3985,Reynaldo Lopez,4,,1145,tier2_name,Automatic match via exact name to Reynaldo Lopez +3986,Rich Hill,4,,898,tier2_name,Automatic match via exact name to Rich Hill +3987,Richard Bleier,4,,212,tier2_name,Automatic match via exact name to Richard Bleier +3988,Richard Rodriguez,4,,1674,tier2_name,Automatic match via exact name to Richard Rodriguez +3989,Rick Porcello,4,,1577,tier2_name,Automatic match via exact name to Rick Porcello +3990,Rico Garcia,4,,693,tier2_name,Automatic match via exact name to Rico Garcia +3991,Riley Smith,4,,1850,tier2_name,Automatic match via exact name to Riley Smith +3992,Robbie Erlin,4,,578,tier2_name,Automatic match via exact name to Robbie Erlin +3993,Robbie Ray,4,,1620,tier2_name,Automatic match via exact name to Robbie Ray +3994,Robert Dugger,4,,544,tier2_name,Automatic match via exact name to Robert Dugger +3995,Robert Gsellman,4,,782,tier2_name,Automatic match via exact name to Robert Gsellman +3996,Robert Stephenson,4,,1904,tier2_name,Automatic match via exact name to Robert Stephenson +3997,Robert Stock,4,,1912,tier2_name,Automatic match via exact name to Robert Stock +3998,Rony Garcia,4,,689,tier2_name,Automatic match via exact name to Rony Garcia +3999,Ross Detwiler,4,,497,tier2_name,Automatic match via exact name to Ross Detwiler +4000,Ross Stripling,4,,1927,tier2_name,Automatic match via exact name to Ross Stripling +4001,Rowan Wick,4,,2147,tier2_name,Automatic match via exact name to Rowan Wick +4002,Ryan Borucki,4,,222,tier2_name,Automatic match via exact name to Ryan Borucki +4003,Ryan Brasier,4,,242,tier2_name,Automatic match via exact name to Ryan Brasier +4004,Ryan Buchter,4,,276,tier2_name,Automatic match via exact name to Ryan Buchter +4005,Ryan Castellani,4,,338,tier2_name,Automatic match via exact name to Ryan Castellani +4006,Ryan Helsley,4,,853,tier2_name,Automatic match via exact name to Ryan Helsley +4007,Ryan Pressly,4,,1584,tier2_name,Automatic match via exact name to Ryan Pressly +4008,Ryan Sherriff,4,,1814,tier2_name,Automatic match via exact name to Ryan Sherriff +4009,Ryan Tepera,4,,1974,tier2_name,Automatic match via exact name to Ryan Tepera +4010,Ryan Thompson,4,,1983,tier2_name,Automatic match via exact name to Ryan Thompson +4011,Ryan Weber,4,,2128,tier2_name,Automatic match via exact name to Ryan Weber +4012,Ryan Yarbrough,4,,2208,tier2_name,Automatic match via exact name to Ryan Yarbrough +4013,Ryne Harper,4,,824,tier2_name,Automatic match via exact name to Ryne Harper +4014,Ryne Stanek,4,,1892,tier2_name,Automatic match via exact name to Ryne Stanek +4015,Sam Coonrod,4,,414,tier2_name,Automatic match via exact name to Sam Coonrod +4016,Sam Howard,4,,929,tier2_name,Automatic match via exact name to Sam Howard +4017,Sam Selman,4,,1798,tier2_name,Automatic match via exact name to Sam Selman +4018,Sandy Alcantara,4,,35,tier2_name,Automatic match via exact name to Sandy Alcantara +4019,Scott Alexander,4,,36,tier2_name,Automatic match via exact name to Scott Alexander +4020,Scott Barlow,4,,128,tier2_name,Automatic match via exact name to Scott Barlow +4021,Sean Doolittle,4,,528,tier2_name,Automatic match via exact name to Sean Doolittle +4022,Sean Manaea,4,,1189,tier2_name,Automatic match via exact name to Sean Manaea +4023,Sean Newcomb,4,,1419,tier2_name,Automatic match via exact name to Sean Newcomb +4024,Sean Poppen,4,,1576,tier2_name,Automatic match via exact name to Sean Poppen +4025,Sean Reid Foley,4,,1627,tier2_name,Automatic match via exact name to Sean Reid Foley +4026,Sergio Romo,4,,1705,tier2_name,Automatic match via exact name to Sergio Romo +4029,Shane Bieber,4,,194,tier2_name,Automatic match via exact name to Shane Bieber +4030,Shane Greene,4,,769,tier2_name,Automatic match via exact name to Shane Greene +4031,Shaun Anderson,4,,72,tier2_name,Automatic match via exact name to Shaun Anderson +4032,Shawn Armstrong,4,,91,tier2_name,Automatic match via exact name to Shawn Armstrong +4033,Shun Yamaguchi,4,,2204,tier2_name,Automatic match via exact name to Shun Yamaguchi +4034,Sixto Sanchez,4,,1751,tier2_name,Automatic match via exact name to Sixto Sanchez +4035,Sonny Gray,4,,765,tier2_name,Automatic match via exact name to Sonny Gray +4036,Spencer Howard,4,,930,tier2_name,Automatic match via exact name to Spencer Howard +4037,Spencer Turnbull,4,,2028,tier2_name,Automatic match via exact name to Spencer Turnbull +4038,Stefan Crichton,4,,434,tier2_name,Automatic match via exact name to Stefan Crichton +4039,Stephen Tarpley,4,,1958,tier2_name,Automatic match via exact name to Stephen Tarpley +4040,Steve Cishek,4,,381,tier2_name,Automatic match via exact name to Steve Cishek +4041,Steven Brault,4,,243,tier2_name,Automatic match via exact name to Steven Brault +4042,Steven Matz,4,,1243,tier2_name,Automatic match via exact name to Steven Matz +4043,Taijuan Walker,4,,2105,tier2_name,Automatic match via exact name to Taijuan Walker +4044,Tanner Houck,4,,927,tier2_name,Automatic match via exact name to Tanner Houck +4045,Tanner Rainey,4,,1599,tier2_name,Automatic match via exact name to Tanner Rainey +4046,Tanner Roark,4,,1659,tier2_name,Automatic match via exact name to Tanner Roark +4047,Tanner Scott,4,,1788,tier2_name,Automatic match via exact name to Tanner Scott +4048,Tarik Skubal,4,,1836,tier2_name,Automatic match via exact name to Tarik Skubal +4049,Taylor Clarke,4,,384,tier2_name,Automatic match via exact name to Taylor Clarke +4050,Taylor Guilbeau,4,,791,tier2_name,Automatic match via exact name to Taylor Guilbeau +4051,Taylor Hearn,4,,844,tier2_name,Automatic match via exact name to Taylor Hearn +4052,Taylor Rogers,4,,1689,tier2_name,Automatic match via exact name to Taylor Rogers +4053,Taylor Widener,4,,2149,tier2_name,Automatic match via exact name to Taylor Widener +4054,Taylor Williams,4,,2155,tier2_name,Automatic match via exact name to Taylor Williams +4055,Tejay Antone,4,,79,tier2_name,Automatic match via exact name to Tejay Antone +4056,Thomas Eshelman,4,,3241,manual_new,Manual assignment to new SbaPlayer: Tom Eshelman +4057,Tim Hill,4,,900,tier2_name,Automatic match via exact name to Tim Hill +4058,TJ McFarland,4,,1273,tier2_name,Automatic match via exact name to TJ McFarland +4059,TJ Zeuch,4,,2225,tier2_name,Automatic match via exact name to TJ Zeuch +4060,Tom Hatch,4,,3245,manual_new,Manual assignment to new SbaPlayer: Tom Hatch +4061,Tommy Hunter,4,,941,tier2_name,Automatic match via exact name to Tommy Hunter +4062,Tommy Milone,4,,1333,tier2_name,Automatic match via exact name to Tommy Milone +4063,Tony Gonsolin,4,,734,tier2_name,Automatic match via exact name to Tony Gonsolin +4064,Tony Watson,4,,2122,tier2_name,Automatic match via exact name to Tony Watson +4065,Touki Toussaint,4,,2005,tier2_name,Automatic match via exact name to Touki Toussaint +4066,Travis Bergen,4,,180,tier2_name,Automatic match via exact name to Travis Bergen +4067,Travis Lakins,4,,1085,tier2_name,Automatic match via exact name to Travis Lakins +4068,Trevor Bauer,4,,150,tier2_name,Automatic match via exact name to Trevor Bauer +4069,Trevor Cahill,4,,304,tier2_name,Automatic match via exact name to Trevor Cahill +4070,Trevor Gott,4,,758,tier2_name,Automatic match via exact name to Trevor Gott +4076,Triston McKenzie,4,,1282,tier2_name,Automatic match via exact name to Triston McKenzie +4077,Ty Buttrey,4,,294,tier2_name,Automatic match via exact name to Ty Buttrey +4078,Tyler Alexander,4,,37,tier2_name,Automatic match via exact name to Tyler Alexander +4079,Tyler Anderson,4,,68,tier2_name,Automatic match via exact name to Tyler Anderson +4080,Tyler Bashlor,4,,144,tier2_name,Automatic match via exact name to Tyler Bashlor +4081,Tyler Chatwood,4,,369,tier2_name,Automatic match via exact name to Tyler Chatwood +4082,Tyler Clippard,4,,393,tier2_name,Automatic match via exact name to Tyler Clippard +4083,Tyler Duffey,4,,540,tier2_name,Automatic match via exact name to Tyler Duffey +4084,Tyler Glasnow,4,,726,tier2_name,Automatic match via exact name to Tyler Glasnow +4085,Tyler Kinley,4,,1050,tier2_name,Automatic match via exact name to Tyler Kinley +4086,Tyler Mahle,4,,1183,tier2_name,Automatic match via exact name to Tyler Mahle +4087,Tyler Matzek,4,,1244,tier2_name,Automatic match via exact name to Tyler Matzek +4088,Tyler Rogers,4,,1691,tier2_name,Automatic match via exact name to Tyler Rogers +4089,Tyler Thornburg,4,,1987,tier2_name,Automatic match via exact name to Tyler Thornburg +4090,Tyler Webb,4,,2125,tier2_name,Automatic match via exact name to Tyler Webb +4091,Tyler Zuber,4,,2233,tier2_name,Automatic match via exact name to Tyler Zuber +4092,Victor Gonzalez,4,,743,tier2_name,Automatic match via exact name to Victor Gonzalez +4093,Vince Velasquez,4,,2065,tier2_name,Automatic match via exact name to Vince Velasquez +4094,Wade LeBlanc,4,,1104,tier2_name,Automatic match via exact name to Wade LeBlanc +4095,Wade Miley,4,,1318,tier2_name,Automatic match via exact name to Wade Miley +4096,Walker Buehler,4,,277,tier2_name,Automatic match via exact name to Walker Buehler +4097,Walker Lockett,4,,1134,tier2_name,Automatic match via exact name to Walker Lockett +4098,Wander Suero,4,,1940,tier2_name,Automatic match via exact name to Wander Suero +4099,Wandy Peralta,4,,1524,tier2_name,Automatic match via exact name to Wandy Peralta +4100,Wes Benjamin,4,,178,tier2_name,Automatic match via exact name to Wes Benjamin +4101,Wil Crowe,4,,446,tier2_name,Automatic match via exact name to Wil Crowe +4102,Will Harris,4,,825,tier2_name,Automatic match via exact name to Will Harris +4103,Will Smith,4,,1843,manual_existing,Manual match to existing SbaPlayer: Will Smith +4104,Wilmer Font,4,,634,tier2_name,Automatic match via exact name to Wilmer Font +4105,Yency Almonte,4,,50,tier2_name,Automatic match via exact name to Yency Almonte +4106,Yimi Garcia,4,,680,tier2_name,Automatic match via exact name to Yimi Garcia +4107,Yoan Lopez,4,,1147,tier2_name,Automatic match via exact name to Yoan Lopez +4108,Yohan Ramirez,4,,1611,tier2_name,Automatic match via exact name to Yohan Ramirez +4109,Yonny Chirinos,4,,374,tier2_name,Automatic match via exact name to Yonny Chirinos +4110,Yoshihisa Hirano,4,,904,tier2_name,Automatic match via exact name to Yoshihisa Hirano +4111,Yu Darvish,4,,462,tier2_name,Automatic match via exact name to Yu Darvish +4112,Yusei Kikuchi,4,,1040,tier2_name,Automatic match via exact name to Yusei Kikuchi +4113,Yusmeiro Petit,4,,1549,tier2_name,Automatic match via exact name to Yusmeiro Petit +4114,Zac Gallen,4,,673,tier2_name,Automatic match via exact name to Zac Gallen +4115,Zac Grotz,4,,780,tier2_name,Automatic match via exact name to Zac Grotz +4116,Zach Davies,4,,465,tier2_name,Automatic match via exact name to Zach Davies +4117,Zach Eflin,4,,562,tier2_name,Automatic match via exact name to Zach Eflin +4118,Zach Plesac,4,,1566,tier2_name,Automatic match via exact name to Zach Plesac +4119,Zack Britton,4,,260,tier2_name,Automatic match via exact name to Zack Britton +4124,Tanner Houck,5,,927,tier2_name,Automatic match via exact name to Tanner Houck +4125,KeBryan Hayes,5,,838,tier2_name,Automatic match via exact name to KeBryan Hayes +4167,Dylan Moore,5,,1358,tier2_name,Automatic match via exact name to Dylan Moore +4168,Tim Anderson,5,,73,tier2_name,Automatic match via exact name to Tim Anderson +4169,Francisco Cervelli,5,,359,tier2_name,Automatic match via exact name to Francisco Cervelli +4170,Sixto Sanchez,5,,1751,tier2_name,Automatic match via exact name to Sixto Sanchez +4212,Lorenzo Cain,5,,305,tier2_name,Automatic match via exact name to Lorenzo Cain +4252,Zach Eflin,5,,562,tier2_name,Automatic match via exact name to Zach Eflin +5135,Taylor Williams,5,,2155,tier2_name,Automatic match via exact name to Taylor Williams +4297,Joey Wendle,5,,2135,tier2_name,Automatic match via exact name to Joey Wendle +4298,Mark Melancon,5,,1298,tier2_name,Automatic match via exact name to Mark Melancon +4299,Cavan Biggio,5,,196,tier2_name,Automatic match via exact name to Cavan Biggio +4343,JP Crawford,5,,432,tier2_name,Automatic match via exact name to JP Crawford +4344,Kyle McGowin,5,,1276,tier2_name,Automatic match via exact name to Kyle McGowin +4345,Ryan Yarbrough,5,,2208,tier2_name,Automatic match via exact name to Ryan Yarbrough +4346,Marco Gonzales,5,,735,tier2_name,Automatic match via exact name to Marco Gonzales +4347,Yonny Chirinos,5,,374,tier2_name,Automatic match via exact name to Yonny Chirinos +4348,Jonathan Schoop,5,,1779,tier2_name,Automatic match via exact name to Jonathan Schoop +4349,Austin Barnes,5,,132,tier2_name,Automatic match via exact name to Austin Barnes +4350,Enrique Hernandez,5,,871,tier2_name,Automatic match via exact name to Enrique Hernandez +4395,Andrew Heaney,5,,843,tier2_name,Automatic match via exact name to Andrew Heaney +4396,Griffin Canning,5,,317,tier2_name,Automatic match via exact name to Griffin Canning +4397,Danny Mendick,5,,1302,tier2_name,Automatic match via exact name to Danny Mendick +4398,Framber Valdez,5,,2048,tier2_name,Automatic match via exact name to Framber Valdez +4399,Garrett Richards,5,,1645,tier2_name,Automatic match via exact name to Garrett Richards +4400,Paul Fry,5,,662,tier2_name,Automatic match via exact name to Paul Fry +4401,Spencer Turnbull,5,,2028,tier2_name,Automatic match via exact name to Spencer Turnbull +4445,Brady Singer,5,,1827,tier2_name,Automatic match via exact name to Brady Singer +4446,Greg Holland,5,,915,tier2_name,Automatic match via exact name to Greg Holland +4447,John Curtiss,5,,455,tier2_name,Automatic match via exact name to John Curtiss +4448,Adam Engel,5,,574,tier2_name,Automatic match via exact name to Adam Engel +4492,Nick Madrigal,5,,1178,tier2_name,Automatic match via exact name to Nick Madrigal +4581,Ryan Brasier,5,,242,tier2_name,Automatic match via exact name to Ryan Brasier +4629,Derek Dietrich,5,,515,tier2_name,Automatic match via exact name to Derek Dietrich +4630,Jalen Beeks,5,,165,tier2_name,Automatic match via exact name to Jalen Beeks +4631,Andrew Miller,5,,1320,tier2_name,Automatic match via exact name to Andrew Miller +4632,Freddy Peralta,5,,1525,tier2_name,Automatic match via exact name to Freddy Peralta +4680,Mike Moustakas,5,,1378,tier2_name,Automatic match via exact name to Mike Moustakas +4681,Roberto Perez,5,,1538,tier2_name,Automatic match via exact name to Roberto Perez +4731,Spencer Howard,5,,930,tier2_name,Automatic match via exact name to Spencer Howard +4732,Colten Brewer,5,,252,tier2_name,Automatic match via exact name to Colten Brewer +4733,Nicky Lopez,5,,1149,tier2_name,Automatic match via exact name to Nicky Lopez +4734,Alec Mills,5,,1330,tier2_name,Automatic match via exact name to Alec Mills +4735,Ehire Adrianza,5,,22,tier2_name,Automatic match via exact name to Ehire Adrianza +4736,Marwin Gonzalez,5,,741,tier2_name,Automatic match via exact name to Marwin Gonzalez +4737,Pedro Baez,5,,111,tier2_name,Automatic match via exact name to Pedro Baez +4738,Adam Plutko,5,,1567,tier2_name,Automatic match via exact name to Adam Plutko +4739,Asdrubal Cabrera,5,,299,tier2_name,Automatic match via exact name to Asdrubal Cabrera +4740,Corey Dickerson,5,,513,tier2_name,Automatic match via exact name to Corey Dickerson +4741,Tony Watson,5,,2122,tier2_name,Automatic match via exact name to Tony Watson +4742,Alex Claudio,5,,387,tier2_name,Automatic match via exact name to Alex Claudio +4743,Jace Fry,5,,661,tier2_name,Automatic match via exact name to Jace Fry +4744,Lewis Brinson,5,,258,tier2_name,Automatic match via exact name to Lewis Brinson +4745,Sam Hilliard,5,,903,tier2_name,Automatic match via exact name to Sam Hilliard +4746,Anthony Misiewicz,5,,1338,tier2_name,Automatic match via exact name to Anthony Misiewicz +4747,Luis Urias,5,,2039,tier2_name,Automatic match via exact name to Luis Urias +4748,TJ McFarland,5,,1273,tier2_name,Automatic match via exact name to TJ McFarland +4844,Colin Rea,5,,1621,tier2_name,Automatic match via exact name to Colin Rea +4845,Corey Knebel,5,,1063,tier2_name,Automatic match via exact name to Corey Knebel +4896,Franklin Barreto,5,,140,tier2_name,Automatic match via exact name to Franklin Barreto +4897,Franklyn Kilome,5,,1041,tier2_name,Automatic match via exact name to Franklyn Kilome +4898,Gabe Speier,5,,1885,tier2_name,Automatic match via exact name to Gabe Speier +4952,Joe Jimenez,5,,979,tier2_name,Automatic match via exact name to Joe Jimenez +4953,Joe Panik,5,,1493,tier2_name,Automatic match via exact name to Joe Panik +4954,Joey Gerber,5,,712,tier2_name,Automatic match via exact name to Joey Gerber +4955,Johan Oviedo,5,,1479,tier2_name,Automatic match via exact name to Johan Oviedo +4956,John King,5,,1045,tier2_name,Automatic match via exact name to John King +4957,John Ryan Murphy,5,,1392,tier2_name,Automatic match via exact name to John Ryan Murphy +4958,John Schreiber,5,,1780,tier2_name,Automatic match via exact name to John Schreiber +4959,JoJo Romero,5,,1702,tier2_name,Automatic match via exact name to JoJo Romero +4960,Jon Gray,5,,766,tier2_name,Automatic match via exact name to Jon Gray +4961,Jon Jay,5,,973,tier2_name,Automatic match via exact name to Jon Jay +5014,Logan Morrison,5,,1373,tier2_name,Automatic match via exact name to Logan Morrison +5015,Logan Webb,5,,2127,tier2_name,Automatic match via exact name to Logan Webb +5016,Luis V Garcia,5,,694,manual_existing,Manual match to existing SbaPlayer: Luis Garcia Jr +5017,Luis Garcia,5,,694,tier2_name,Automatic match via exact name to Luis Garcia Jr +5018,Luis Patino,5,,1504,tier2_name,Automatic match via exact name to Luis Patino +5019,Luis Perdomo,5,,1529,tier2_name,Automatic match via exact name to Luis Perdomo +5069,Nick Senzel,5,,1802,tier2_name,Automatic match via exact name to Nick Senzel +5070,Nick Solak,5,,1867,tier2_name,Automatic match via exact name to Nick Solak +5071,Nicky Delmonico,5,,488,tier2_name,Automatic match via exact name to Nicky Delmonico +5072,Nik Turley,5,,2027,tier2_name,Automatic match via exact name to Nik Turley +5124,Stephen Tarpley,5,,1958,tier2_name,Automatic match via exact name to Stephen Tarpley +5125,Stephen Vogt,5,,2086,tier2_name,Automatic match via exact name to Stephen Vogt +5126,Steve Cishek,5,,381,tier2_name,Automatic match via exact name to Steve Cishek +5127,Steven Duggar,5,,543,tier2_name,Automatic match via exact name to Steven Duggar +5128,Steven Matz,5,,1243,tier2_name,Automatic match via exact name to Steven Matz +5129,Steven Souza Jr,5,,1881,tier2_name,Automatic match via exact name to Steven Souza Jr +5130,Tanner Roark,5,,1659,tier2_name,Automatic match via exact name to Tanner Roark +5131,Tarik Skubal,5,,1836,tier2_name,Automatic match via exact name to Tarik Skubal +5132,Taylor Jones,5,,992,tier2_name,Automatic match via exact name to Taylor Jones +5133,Taylor Rogers,5,,1689,tier2_name,Automatic match via exact name to Taylor Rogers +5134,Taylor Ward,5,,2116,tier2_name,Automatic match via exact name to Taylor Ward +4126,Yolmer Sanchez,5,,1744,tier2_name,Automatic match via exact name to Yolmer Sanchez +4127,Cesar Valdez,5,,2046,tier2_name,Automatic match via exact name to Cesar Valdez +4128,Andrew Stevenson,5,,1906,tier2_name,Automatic match via exact name to Andrew Stevenson +4129,Max Fried,5,,659,tier2_name,Automatic match via exact name to Max Fried +4130,Byron Buxton,5,,295,tier2_name,Automatic match via exact name to Byron Buxton +4131,Sam Huff,5,,936,tier2_name,Automatic match via exact name to Sam Huff +4132,Tyler Stephenson,5,,1905,tier2_name,Automatic match via exact name to Tyler Stephenson +4133,Mookie Betts,5,,187,tier2_name,Automatic match via exact name to Mookie Betts +4134,Ben Braymer,5,,245,tier2_name,Automatic match via exact name to Ben Braymer +4135,Mike Brosseau,5,,263,tier2_name,Automatic match via exact name to Mike Brosseau +4136,Merrill Kelly,5,,1020,tier2_name,Automatic match via exact name to Merrill Kelly +4137,Hyun Jin Ryu,5,,1733,tier2_name,Automatic match via exact name to Hyun Jin Ryu +4138,DJ LeMahieu,5,,1114,tier2_name,Automatic match via exact name to DJ LeMahieu +4139,Zach Plesac,5,,1566,tier2_name,Automatic match via exact name to Zach Plesac +4140,Salvador Perez,5,,1534,tier2_name,Automatic match via exact name to Salvador Perez +4141,Shane Bieber,5,,194,tier2_name,Automatic match via exact name to Shane Bieber +4142,Erik Kratz,5,,1074,tier2_name,Automatic match via exact name to Erik Kratz +4143,Yairo Munoz,5,,1383,tier2_name,Automatic match via exact name to Yairo Munoz +4144,Jordan Romano,5,,1699,tier2_name,Automatic match via exact name to Jordan Romano +4145,Zack Wheeler,5,,2139,tier2_name,Automatic match via exact name to Zack Wheeler +4146,Erasmo Ramirez,5,,1604,tier2_name,Automatic match via exact name to Erasmo Ramirez +4147,Ian Anderson,5,,74,tier2_name,Automatic match via exact name to Ian Anderson +4148,Freddie Freeman,5,,652,tier2_name,Automatic match via exact name to Freddie Freeman +4149,Manny Machado,5,,1175,tier2_name,Automatic match via exact name to Manny Machado +4150,Gio Urshela,5,,2042,tier2_name,Automatic match via exact name to Gio Urshela +4151,Antonio Senzatela,5,,1801,tier2_name,Automatic match via exact name to Antonio Senzatela +4152,Jacob deGrom,5,,484,tier2_name,Automatic match via exact name to Jacob deGrom +4153,Mike Yastrzemski,5,,2210,tier2_name,Automatic match via exact name to Mike Yastrzemski +4154,Miguel Rojas,5,,1694,tier2_name,Automatic match via exact name to Miguel Rojas +4155,Jose Abreu,5,,7,tier2_name,Automatic match via exact name to Jose Abreu +4156,Randy Arozarena,5,,92,tier2_name,Automatic match via exact name to Randy Arozarena +4157,Zac Gallen,5,,673,tier2_name,Automatic match via exact name to Zac Gallen +4158,Jonathan Davis,5,,470,tier2_name,Automatic match via exact name to Jonathan Davis +4159,Brandon Belt,5,,173,tier2_name,Automatic match via exact name to Brandon Belt +4160,Juan Soto,5,,1879,tier2_name,Automatic match via exact name to Juan Soto +4161,James McCann,5,,1261,tier2_name,Automatic match via exact name to James McCann +4162,Trevor Bauer,5,,150,tier2_name,Automatic match via exact name to Trevor Bauer +4163,TJ Zeuch,5,,2225,tier2_name,Automatic match via exact name to TJ Zeuch +4164,Nick Anderson,5,,71,tier2_name,Automatic match via exact name to Nick Anderson +4165,Max Stassi,5,,1896,tier2_name,Automatic match via exact name to Max Stassi +4166,Ronald Acuna Jr,5,,12,tier2_name,Automatic match via exact name to Ronald Acuna Jr +4171,Chris Martin,5,,1214,tier2_name,Automatic match via exact name to Chris Martin +4172,Devin Williams,5,,2158,tier2_name,Automatic match via exact name to Devin Williams +4173,Jake Diekman,5,,514,tier2_name,Automatic match via exact name to Jake Diekman +4174,Yu Darvish,5,,462,tier2_name,Automatic match via exact name to Yu Darvish +4175,Corbin Burnes,5,,286,tier2_name,Automatic match via exact name to Corbin Burnes +4176,Guillermo Heredia,5,,862,tier2_name,Automatic match via exact name to Guillermo Heredia +4177,Leury Garcia,5,,679,tier2_name,Automatic match via exact name to Leury Garcia +4178,Manny Pina,5,,1558,tier2_name,Automatic match via exact name to Manny Pina +4179,Dansby Swanson,5,,1947,tier2_name,Automatic match via exact name to Dansby Swanson +4180,Dinelson Lamet,5,,1090,tier2_name,Automatic match via exact name to Dinelson Lamet +4181,Will D Smith,5,,1841,manual_existing,Manual match to existing SbaPlayer: Will Smith +4182,Fernando Tatis Jr,5,,1960,tier2_name,Automatic match via exact name to Fernando Tatis Jr +4183,Brandon Lowe,5,,1156,tier2_name,Automatic match via exact name to Brandon Lowe +4184,Josh Fuentes,5,,664,manual_existing,Manual match to existing SbaPlayer: Joshua Fuentes +4185,Kevin Kiermaier,5,,1039,tier2_name,Automatic match via exact name to Kevin Kiermaier +4186,Clint Frazier,5,,649,tier2_name,Automatic match via exact name to Clint Frazier +4187,Luis H Garcia,5,,3244,manual_new,Manual assignment to new SbaPlayer: Luis H Garcia +4188,Chris Bassitt,5,,146,tier2_name,Automatic match via exact name to Chris Bassitt +4189,Dallas Keuchel,5,,1035,tier2_name,Automatic match via exact name to Dallas Keuchel +4190,Kyle Cody,5,,395,tier2_name,Automatic match via exact name to Kyle Cody +4191,Anthony Santander,5,,1764,tier2_name,Automatic match via exact name to Anthony Santander +4192,Max Scherzer,5,,1773,tier2_name,Automatic match via exact name to Max Scherzer +4193,Gavin Lux,5,,1169,tier2_name,Automatic match via exact name to Gavin Lux +4194,Yimi Garcia,5,,680,tier2_name,Automatic match via exact name to Yimi Garcia +4195,Cam Gallagher,5,,670,tier2_name,Automatic match via exact name to Cam Gallagher +4196,Tanner Scott,5,,1788,tier2_name,Automatic match via exact name to Tanner Scott +4197,Alex Verdugo,5,,2069,tier2_name,Automatic match via exact name to Alex Verdugo +4198,George Springer,5,,1888,tier2_name,Automatic match via exact name to George Springer +4199,Brad Keller,5,,1016,tier2_name,Automatic match via exact name to Brad Keller +4200,Kyle Freeland,5,,650,tier2_name,Automatic match via exact name to Kyle Freeland +4201,Michael Conforto,5,,407,tier2_name,Automatic match via exact name to Michael Conforto +4202,Chris Taylor,5,,1964,tier2_name,Automatic match via exact name to Chris Taylor +4203,Marcell Ozuna,5,,1481,tier2_name,Automatic match via exact name to Marcell Ozuna +4204,Aaron Nola,5,,1433,tier2_name,Automatic match via exact name to Aaron Nola +4205,Leody Taveras,5,,1962,tier2_name,Automatic match via exact name to Leody Taveras +4206,Jackie Bradley Jr,5,,239,tier2_name,Automatic match via exact name to Jackie Bradley Jr +4207,Aaron Judge,5,,3,tier2_name,Automatic match via exact name to Aaron Judge +4208,Austin Slater,5,,1838,tier2_name,Automatic match via exact name to Austin Slater +4209,David Peterson,5,,1548,tier2_name,Automatic match via exact name to David Peterson +4210,AJ Minter,5,,1336,tier2_name,Automatic match via exact name to AJ Minter +4211,Dominic Smith,5,,1849,tier2_name,Automatic match via exact name to Dominic Smith +4213,Tony Gonsolin,5,,734,tier2_name,Automatic match via exact name to Tony Gonsolin +4214,Trent Grisham,5,,776,tier2_name,Automatic match via exact name to Trent Grisham +4215,Gerrit Cole,5,,398,tier2_name,Automatic match via exact name to Gerrit Cole +4216,James Hoyt,5,,931,tier2_name,Automatic match via exact name to James Hoyt +4217,Jose Ramirez,5,,1608,tier2_name,Automatic match via exact name to Jose Ramirez +4218,Erick Fedde,5,,600,tier2_name,Automatic match via exact name to Erick Fedde +4219,Liam Hendriks,5,,857,tier2_name,Automatic match via exact name to Liam Hendriks +4220,Darwinzon Hernandez,5,,877,tier2_name,Automatic match via exact name to Darwinzon Hernandez +4221,Drew Pomeranz,5,,1572,tier2_name,Automatic match via exact name to Drew Pomeranz +4222,Jacob Nottingham,5,,1440,tier2_name,Automatic match via exact name to Jacob Nottingham +4223,Trea Turner,5,,1,tier2_name,Automatic match via exact name to Trea Turner +4224,Trevor Story,5,,1914,tier2_name,Automatic match via exact name to Trevor Story +4225,Willy Adames,5,,14,tier2_name,Automatic match via exact name to Willy Adames +4226,Jeimer Candelario,5,,315,tier2_name,Automatic match via exact name to Jeimer Candelario +4227,Tanner Rainey,5,,1599,tier2_name,Automatic match via exact name to Tanner Rainey +4228,Clayton Kershaw,5,,1034,tier2_name,Automatic match via exact name to Clayton Kershaw +4229,Jesus Tinoco,5,,1992,tier2_name,Automatic match via exact name to Jesus Tinoco +4230,Ryan Sherriff,5,,1814,tier2_name,Automatic match via exact name to Ryan Sherriff +4231,Michael Brantley,5,,240,tier2_name,Automatic match via exact name to Michael Brantley +4232,Anthony Rendon,5,,1630,tier2_name,Automatic match via exact name to Anthony Rendon +4233,Corey Seager,5,,1794,tier2_name,Automatic match via exact name to Corey Seager +4234,Brandon Woodruff,5,,2196,tier2_name,Automatic match via exact name to Brandon Woodruff +4235,Jesse Hahn,5,,804,tier2_name,Automatic match via exact name to Jesse Hahn +4236,Luis Guillorme,5,,792,tier2_name,Automatic match via exact name to Luis Guillorme +4237,Josh Fleming,5,,623,tier2_name,Automatic match via exact name to Josh Fleming +4238,Isiah Kiner Falefa,5,,1044,tier2_name,Automatic match via exact name to Isiah Kiner Falefa +4239,Brian Anderson,5,,69,tier2_name,Automatic match via exact name to Brian Anderson +4240,Jeremy Jeffress,5,,976,tier2_name,Automatic match via exact name to Jeremy Jeffress +4241,Trevor Rosenthal,5,,1713,tier2_name,Automatic match via exact name to Trevor Rosenthal +4242,Dylan Bundy,5,,280,tier2_name,Automatic match via exact name to Dylan Bundy +4243,Edwin Diaz,5,,503,tier2_name,Automatic match via exact name to Edwin Diaz +4244,Jose Iglesias,5,,949,tier2_name,Automatic match via exact name to Jose Iglesias +4245,Paul Goldschmidt,5,,729,tier2_name,Automatic match via exact name to Paul Goldschmidt +4246,Jose Urquidy,5,,2041,tier2_name,Automatic match via exact name to Jose Urquidy +4247,Burch Smith,5,,1844,tier2_name,Automatic match via exact name to Burch Smith +4248,Justin Turner,5,,2029,tier2_name,Automatic match via exact name to Justin Turner +4249,Sean Murphy,5,,1390,tier2_name,Automatic match via exact name to Sean Murphy +4250,Tim Locastro,5,,1133,tier2_name,Automatic match via exact name to Tim Locastro +4251,Riley Smith,5,,1850,tier2_name,Automatic match via exact name to Riley Smith +4253,Nathan Eovaldi,5,,576,tier2_name,Automatic match via exact name to Nathan Eovaldi +4254,Nick Tropeano,5,,2018,tier2_name,Automatic match via exact name to Nick Tropeano +4255,Edwin Rios,5,,1651,tier2_name,Automatic match via exact name to Edwin Rios +4256,Garrett Crochet,5,,439,tier2_name,Automatic match via exact name to Garrett Crochet +4257,Rafael Dolis,5,,523,tier2_name,Automatic match via exact name to Rafael Dolis +4258,Brandon Kintzler,5,,1052,tier2_name,Automatic match via exact name to Brandon Kintzler +4259,Mike Clevinger,5,,392,tier2_name,Automatic match via exact name to Mike Clevinger +4260,Nelson Cruz,5,,447,tier2_name,Automatic match via exact name to Nelson Cruz +4261,Andres Gimenez,5,,721,tier2_name,Automatic match via exact name to Andres Gimenez +4262,Jake Cronenworth,5,,442,tier2_name,Automatic match via exact name to Jake Cronenworth +4263,Kyle Higashioka,5,,895,tier2_name,Automatic match via exact name to Kyle Higashioka +4264,Kyle Tucker,5,,2023,tier2_name,Automatic match via exact name to Kyle Tucker +4265,Jason Heyward,5,,891,tier2_name,Automatic match via exact name to Jason Heyward +4266,Jose Alvarez,5,,59,tier2_name,Automatic match via exact name to Jose Alvarez +4267,Wil Myers,5,,1395,tier2_name,Automatic match via exact name to Wil Myers +4268,Lance Lynn,5,,1173,tier2_name,Automatic match via exact name to Lance Lynn +4269,Patrick Corbin,5,,416,tier2_name,Automatic match via exact name to Patrick Corbin +4270,Tucker Barnhart,5,,135,tier2_name,Automatic match via exact name to Tucker Barnhart +4271,Carlos Correa,5,,420,tier2_name,Automatic match via exact name to Carlos Correa +4272,Alejandro Kirk,5,,1056,tier2_name,Automatic match via exact name to Alejandro Kirk +4273,Brandon Nimmo,5,,1425,tier2_name,Automatic match via exact name to Brandon Nimmo +4274,Harrison Bader,5,,110,tier2_name,Automatic match via exact name to Harrison Bader +4275,Nolan Arenado,5,,88,tier2_name,Automatic match via exact name to Nolan Arenado +4276,Travis Lakins,5,,1085,tier2_name,Automatic match via exact name to Travis Lakins +4277,Diego Castillo,5,,3235,manual_new,Manual assignment to new SbaPlayer: Diego Castillo +4278,Luis Robert,5,,1660,tier2_name,Automatic match via exact name to Luis Robert +4279,Kevan Smith,5,,1847,tier2_name,Automatic match via exact name to Kevan Smith +4280,Matt Chapman,5,,367,tier2_name,Automatic match via exact name to Matt Chapman +4281,Mike Trout,5,,2019,tier2_name,Automatic match via exact name to Mike Trout +4282,Mitch Moreland,5,,1365,tier2_name,Automatic match via exact name to Mitch Moreland +4283,Andrew Knapp,5,,1062,tier2_name,Automatic match via exact name to Andrew Knapp +4284,Dustin May,5,,1249,tier2_name,Automatic match via exact name to Dustin May +4285,David Fletcher,5,,624,tier2_name,Automatic match via exact name to David Fletcher +4286,Bo Bichette,5,,190,tier2_name,Automatic match via exact name to Bo Bichette +4287,Bryce Harper,5,,823,tier2_name,Automatic match via exact name to Bryce Harper +4288,Tyler Matzek,5,,1244,tier2_name,Automatic match via exact name to Tyler Matzek +4289,Brandon Crawford,5,,430,tier2_name,Automatic match via exact name to Brandon Crawford +4290,Zach Davies,5,,465,tier2_name,Automatic match via exact name to Zach Davies +4291,JA Happ,5,,821,tier2_name,Automatic match via exact name to JA Happ +4292,Jacob Stallings,5,,1890,tier2_name,Automatic match via exact name to Jacob Stallings +4293,Ketel Marte,5,,1210,tier2_name,Automatic match via exact name to Ketel Marte +4294,Tomas Nido,5,,1424,tier2_name,Automatic match via exact name to Tomas Nido +4295,Kyle Zimmer,5,,2228,tier2_name,Automatic match via exact name to Kyle Zimmer +4296,Alex Colome,5,,404,tier2_name,Automatic match via exact name to Alex Colome +4300,Cristian Javier,5,,971,tier2_name,Automatic match via exact name to Cristian Javier +4301,Magneuris Sierra,5,,1823,tier2_name,Automatic match via exact name to Magneuris Sierra +4302,Mike Mayers,5,,1251,tier2_name,Automatic match via exact name to Mike Mayers +4303,Victor Gonzalez,5,,743,tier2_name,Automatic match via exact name to Victor Gonzalez +4304,Luis Arraez,5,,93,tier2_name,Automatic match via exact name to Luis Arraez +4305,Carlos Carrasco,5,,331,tier2_name,Automatic match via exact name to Carlos Carrasco +4306,Donovan Solano,5,,1868,tier2_name,Automatic match via exact name to Donovan Solano +4307,Sam Haggerty,5,,803,tier2_name,Automatic match via exact name to Sam Haggerty +4308,Kyle Hendricks,5,,856,tier2_name,Automatic match via exact name to Kyle Hendricks +4309,Nick Ahmed,5,,26,tier2_name,Automatic match via exact name to Nick Ahmed +4310,Caleb Smith,5,,1845,tier2_name,Automatic match via exact name to Caleb Smith +4311,Darren ODay,5,,1449,tier2_name,Automatic match via exact name to Darren ODay +4312,Jeff Mathis,5,,1235,tier2_name,Automatic match via exact name to Jeff Mathis +4313,Tyrone Taylor,5,,1965,tier2_name,Automatic match via exact name to Tyrone Taylor +4314,AJ Cole,5,,399,tier2_name,Automatic match via exact name to AJ Cole +4315,Andre Scrubb,5,,1791,tier2_name,Automatic match via exact name to Andre Scrubb +4316,Kwang Hyun Kim,5,,946,tier2_name,Automatic match via exact name to Kwang Hyun Kim +4317,Luke Voit,5,,2087,tier2_name,Automatic match via exact name to Luke Voit +4318,Teoscar Hernandez,5,,873,tier2_name,Automatic match via exact name to Teoscar Hernandez +4319,Jaime Barria,5,,141,tier2_name,Automatic match via exact name to Jaime Barria +4320,JT Realmuto,5,,1622,tier2_name,Automatic match via exact name to JT Realmuto +4321,Jeff McNeil,5,,1287,tier2_name,Automatic match via exact name to Jeff McNeil +4322,Bryan Garcia,5,,685,tier2_name,Automatic match via exact name to Bryan Garcia +4323,Kyle Farmer,5,,598,tier2_name,Automatic match via exact name to Kyle Farmer +4324,Pablo Lopez,5,,1146,tier2_name,Automatic match via exact name to Pablo Lopez +4325,Jesse Winker,5,,2177,tier2_name,Automatic match via exact name to Jesse Winker +4326,Kenta Maeda,5,,1181,tier2_name,Automatic match via exact name to Kenta Maeda +4327,Mitch Keller,5,,1017,tier2_name,Automatic match via exact name to Mitch Keller +4328,Cam Bedrosian,5,,163,tier2_name,Automatic match via exact name to Cam Bedrosian +4329,Austin Nola,5,,1432,tier2_name,Automatic match via exact name to Austin Nola +4330,Daniel Castano,5,,337,tier2_name,Automatic match via exact name to Daniel Castano +4331,Eric Hosmer,5,,926,tier2_name,Automatic match via exact name to Eric Hosmer +4332,JB Wendelken,5,,2134,tier2_name,Automatic match via exact name to JB Wendelken +4333,Kyle Lewis,5,,1118,tier2_name,Automatic match via exact name to Kyle Lewis +4334,Cody Bellinger,5,,170,tier2_name,Automatic match via exact name to Cody Bellinger +4335,Elieser Hernandez,5,,874,tier2_name,Automatic match via exact name to Elieser Hernandez +4336,Justin Topa,5,,1999,tier2_name,Automatic match via exact name to Justin Topa +4337,Jurickson Profar,5,,1587,tier2_name,Automatic match via exact name to Jurickson Profar +4338,Blake Snell,5,,1861,tier2_name,Automatic match via exact name to Blake Snell +4339,Dean Kremer,5,,1077,tier2_name,Automatic match via exact name to Dean Kremer +4340,Joely Rodriguez,5,,1673,tier2_name,Automatic match via exact name to Joely Rodriguez +4341,Kevin Gausman,5,,706,tier2_name,Automatic match via exact name to Kevin Gausman +4342,Cesar Hernandez,5,,870,tier2_name,Automatic match via exact name to Cesar Hernandez +4351,Kevin Plawecki,5,,1565,tier2_name,Automatic match via exact name to Kevin Plawecki +4352,Ramon Laureano,5,,1097,tier2_name,Automatic match via exact name to Ramon Laureano +4353,Tom Hatch,5,,3245,manual_new,Manual assignment to new SbaPlayer: Tom Hatch +4354,Austin Hays,5,,839,tier2_name,Automatic match via exact name to Austin Hays +4355,Matt Wisler,5,,2183,tier2_name,Automatic match via exact name to Matt Wisler +4356,Yan Gomes,5,,731,tier2_name,Automatic match via exact name to Yan Gomes +4357,Matt Shoemaker,5,,1817,tier2_name,Automatic match via exact name to Matt Shoemaker +4358,Xander Bogaerts,5,,216,tier2_name,Automatic match via exact name to Xander Bogaerts +4359,Tejay Antone,5,,79,tier2_name,Automatic match via exact name to Tejay Antone +4360,German Marquez,5,,1204,tier2_name,Automatic match via exact name to German Marquez +4361,Mark Canha,5,,316,tier2_name,Automatic match via exact name to Mark Canha +4362,Rich Hill,5,,898,tier2_name,Automatic match via exact name to Rich Hill +4363,Ryan Weber,5,,2128,tier2_name,Automatic match via exact name to Ryan Weber +4364,John Means,5,,2,tier2_name,Automatic match via exact name to John Means +4365,Bobby Dalbec,5,,458,tier2_name,Automatic match via exact name to Bobby Dalbec +4366,Grant Dayton,5,,475,tier2_name,Automatic match via exact name to Grant Dayton +4367,Jared Walsh,5,,2111,tier2_name,Automatic match via exact name to Jared Walsh +4368,Stefan Crichton,5,,434,tier2_name,Automatic match via exact name to Stefan Crichton +4369,Alex Avila,5,,104,tier2_name,Automatic match via exact name to Alex Avila +4370,Jean Segura,5,,1796,tier2_name,Automatic match via exact name to Jean Segura +4371,Ryan Jeffers,5,,975,tier2_name,Automatic match via exact name to Ryan Jeffers +4372,Ty France,5,,642,tier2_name,Automatic match via exact name to Ty France +4373,Cal Quantrill,5,,1593,tier2_name,Automatic match via exact name to Cal Quantrill +4374,Yusmeiro Petit,5,,1549,tier2_name,Automatic match via exact name to Yusmeiro Petit +4375,Starlin Castro,5,,348,tier2_name,Automatic match via exact name to Starlin Castro +4376,Andrew Kittredge,5,,1057,tier2_name,Automatic match via exact name to Andrew Kittredge +4377,Blake Parker,5,,1499,tier2_name,Automatic match via exact name to Blake Parker +4378,Caleb Thielbar,5,,1977,tier2_name,Automatic match via exact name to Caleb Thielbar +4379,Homer Bailey,5,,114,tier2_name,Automatic match via exact name to Homer Bailey +4380,Manuel Margot,5,,1198,tier2_name,Automatic match via exact name to Manuel Margot +4381,Daniel Bard,5,,125,tier2_name,Automatic match via exact name to Daniel Bard +4382,DJ Stewart,5,,1909,tier2_name,Automatic match via exact name to DJ Stewart +4383,Kolten Wong,5,,2188,tier2_name,Automatic match via exact name to Kolten Wong +4384,Kyle Finnegan,5,,617,tier2_name,Automatic match via exact name to Kyle Finnegan +4385,Robbie Grossman,5,,779,tier2_name,Automatic match via exact name to Robbie Grossman +4386,Ryan Borucki,5,,222,tier2_name,Automatic match via exact name to Ryan Borucki +4387,Yohan Ramirez,5,,1611,tier2_name,Automatic match via exact name to Yohan Ramirez +4388,Adam Kolarek,5,,1069,tier2_name,Automatic match via exact name to Adam Kolarek +4389,Austin Gomber,5,,730,tier2_name,Automatic match via exact name to Austin Gomber +4390,Dillon Tate,5,,1959,tier2_name,Automatic match via exact name to Dillon Tate +4391,Eloy Jimenez,5,,980,tier2_name,Automatic match via exact name to Eloy Jimenez +4392,Joey Gallo,5,,674,tier2_name,Automatic match via exact name to Joey Gallo +4393,Shane Greene,5,,769,tier2_name,Automatic match via exact name to Shane Greene +4394,Travis Bergen,5,,180,tier2_name,Automatic match via exact name to Travis Bergen +4402,Taijuan Walker,5,,2105,tier2_name,Automatic match via exact name to Taijuan Walker +4403,Wilmer Flores,5,,627,tier2_name,Automatic match via exact name to Wilmer Flores +4404,Adbert Alzolay,5,,63,tier2_name,Automatic match via exact name to Adbert Alzolay +4405,David Hale,5,,805,tier2_name,Automatic match via exact name to David Hale +4406,Ian Happ,5,,820,tier2_name,Automatic match via exact name to Ian Happ +4407,Robinson Cano,5,,319,tier2_name,Automatic match via exact name to Robinson Cano +4408,Wyatt Mathisen,5,,1236,tier2_name,Automatic match via exact name to Wyatt Mathisen +4409,Alex Cobb,5,,394,tier2_name,Automatic match via exact name to Alex Cobb +4410,Aroldis Chapman,5,,366,tier2_name,Automatic match via exact name to Aroldis Chapman +4411,Jon Berti,5,,183,tier2_name,Automatic match via exact name to Jon Berti +4412,Darin Ruf,5,,1722,tier2_name,Automatic match via exact name to Darin Ruf +4413,Starling Marte,5,,1208,tier2_name,Automatic match via exact name to Starling Marte +4414,Jedd Gyorko,5,,800,tier2_name,Automatic match via exact name to Jedd Gyorko +4415,Jake Marisnick,5,,1200,tier2_name,Automatic match via exact name to Jake Marisnick +4416,Blake Taylor,5,,1966,tier2_name,Automatic match via exact name to Blake Taylor +4417,Codi Heuer,5,,890,tier2_name,Automatic match via exact name to Codi Heuer +4418,Yandy Diaz,5,,507,tier2_name,Automatic match via exact name to Yandy Diaz +4419,CJ Cron,5,,441,tier2_name,Automatic match via exact name to CJ Cron +4420,Jake Arrieta,5,,94,tier2_name,Automatic match via exact name to Jake Arrieta +4421,Julio Urias,5,,2038,tier2_name,Automatic match via exact name to Julio Urias +4422,Kole Calhoun,5,,306,tier2_name,Automatic match via exact name to Kole Calhoun +4423,Matt Olson,5,,1461,tier2_name,Automatic match via exact name to Matt Olson +4424,Mike Soroka,5,,1875,tier2_name,Automatic match via exact name to Michael Soroka +4425,Tyler Wade,5,,2094,tier2_name,Automatic match via exact name to Tyler Wade +4426,Daniel Norris,5,,1439,tier2_name,Automatic match via exact name to Daniel Norris +4427,Mauricio Dubon,5,,538,tier2_name,Automatic match via exact name to Mauricio Dubon +4428,Ozzie Albies,5,,31,tier2_name,Automatic match via exact name to Ozzie Albies +4429,Noe Ramirez,5,,1606,tier2_name,Automatic match via exact name to Noe Ramirez +4430,Oliver Perez,5,,1533,tier2_name,Automatic match via exact name to Oliver Perez +4431,Zack Greinke,5,,774,tier2_name,Automatic match via exact name to Zack Greinke +4432,Brandon Leibrandt,5,,1111,tier2_name,Automatic match via exact name to Brandon Leibrandt +4433,Jonathan Loaisiga,5,,1132,tier2_name,Automatic match via exact name to Jonathan Loaisiga +4434,Aaron Bummer,5,,279,tier2_name,Automatic match via exact name to Aaron Bummer +4435,Chaz Roe,5,,1688,tier2_name,Automatic match via exact name to Chaz Roe +4436,Martin Perez,5,,1535,tier2_name,Automatic match via exact name to Martin Perez +4437,Alex Bregman,5,,248,tier2_name,Automatic match via exact name to Alex Bregman +4438,Harold Castro,5,,349,tier2_name,Automatic match via exact name to Harold Castro +4439,JaCoby Jones,5,,991,tier2_name,Automatic match via exact name to JaCoby Jones +4440,Nick Heath,5,,846,tier2_name,Automatic match via exact name to Nick Heath +4441,Nico Hoerner,5,,909,tier2_name,Automatic match via exact name to Nico Hoerner +4442,Andrew Suarez,5,,1935,tier2_name,Automatic match via exact name to Andrew Suarez +4443,Martin Maldonado,5,,1187,tier2_name,Automatic match via exact name to Martin Maldonado +4444,Triston McKenzie,5,,1282,tier2_name,Automatic match via exact name to Triston McKenzie +4449,Brad Hand,5,,816,tier2_name,Automatic match via exact name to Brad Hand +4450,Curt Casali,5,,334,tier2_name,Automatic match via exact name to Curt Casali +4451,Lourdes Gurriel Jr,5,,794,tier2_name,Automatic match via exact name to Lourdes Gurriel Jr +4452,Giancarlo Stanton,5,,1893,tier2_name,Automatic match via exact name to Giancarlo Stanton +4453,Brad Miller,5,,1322,tier2_name,Automatic match via exact name to Brad Miller +4454,Sandy Alcantara,5,,35,tier2_name,Automatic match via exact name to Sandy Alcantara +4455,Jason Kipnis,5,,1053,tier2_name,Automatic match via exact name to Jason Kipnis +4456,Trevor Cahill,5,,304,tier2_name,Automatic match via exact name to Trevor Cahill +4457,Max Kepler,5,,1031,tier2_name,Automatic match via exact name to Max Kepler +4458,Brett Phillips,5,,1555,tier2_name,Automatic match via exact name to Brett Phillips +4459,Bryse Wilson,5,,2171,tier2_name,Automatic match via exact name to Bryse Wilson +4460,Tyler ONeill,5,,1463,tier2_name,Automatic match via exact name to Tyler ONeill +4461,Didi Gregorius,5,,772,tier2_name,Automatic match via exact name to Didi Gregorius +4462,Pedro Severino,5,,1804,tier2_name,Automatic match via exact name to Pedro Severino +4463,Jacob Webb,5,,2126,tier2_name,Automatic match via exact name to Jacob Webb +4464,Shawn Armstrong,5,,91,tier2_name,Automatic match via exact name to Shawn Armstrong +4465,Alec Bohm,5,,217,tier2_name,Automatic match via exact name to Alec Bohm +4466,Anthony Bemboom,5,,175,tier2_name,Automatic match via exact name to Anthony Bemboom +4467,Carson Fulmer,5,,667,tier2_name,Automatic match via exact name to Carson Fulmer +4468,Lucas Sims,5,,1826,tier2_name,Automatic match via exact name to Lucas Sims +4469,Matt Strahm,5,,1918,tier2_name,Automatic match via exact name to Matt Strahm +4470,Ryan Mountcastle,5,,1377,tier2_name,Automatic match via exact name to Ryan Mountcastle +4471,Aaron Slegers,5,,1839,tier2_name,Automatic match via exact name to Aaron Slegers +4472,Josh Donaldson,5,,526,tier2_name,Automatic match via exact name to Josh Donaldson +4473,Tyler Duffey,5,,540,tier2_name,Automatic match via exact name to Tyler Duffey +4474,Tyler Mahle,5,,1183,tier2_name,Automatic match via exact name to Tyler Mahle +4475,Rhys Hoskins,5,,925,tier2_name,Automatic match via exact name to Rhys Hoskins +4476,Tommy Edman,5,,558,tier2_name,Automatic match via exact name to Tommy Edman +4477,Dakota Hudson,5,,934,tier2_name,Automatic match via exact name to Dakota Hudson +4478,Matt Andriese,5,,76,tier2_name,Automatic match via exact name to Matt Andriese +4479,Michael Pineda,5,,1560,tier2_name,Automatic match via exact name to Michael Pineda +4480,Christian Vazquez,5,,2063,tier2_name,Automatic match via exact name to Christian Vazquez +4481,Eddie Rosario,5,,1710,tier2_name,Automatic match via exact name to Eddie Rosario +4482,Brett Martin,5,,1218,tier2_name,Automatic match via exact name to Brett Martin +4483,Adalberto Mondesi,5,,1349,tier2_name,Automatic match via exact name to Adalberto Mondesi +4484,Alex Dickerson,5,,512,tier2_name,Automatic match via exact name to Alex Dickerson +4485,Rowdy Tellez,5,,1972,tier2_name,Automatic match via exact name to Rowdy Tellez +4486,Josh Staumont,5,,1897,tier2_name,Automatic match via exact name to Josh Staumont +4487,Taylor Guilbeau,5,,791,tier2_name,Automatic match via exact name to Taylor Guilbeau +4488,Amir Garrett,5,,698,tier2_name,Automatic match via exact name to Amir Garrett +4489,Archie Bradley,5,,236,tier2_name,Automatic match via exact name to Archie Bradley +4490,Jarlin Garcia,5,,684,tier2_name,Automatic match via exact name to Jarlin Garcia +4491,Conner Menez,5,,1304,tier2_name,Automatic match via exact name to Conner Menez +4493,Justus Sheffield,5,,1813,tier2_name,Automatic match via exact name to Justus Sheffield +4494,Masahiro Tanaka,5,,1955,tier2_name,Automatic match via exact name to Masahiro Tanaka +4495,Chris Owings,5,,1480,tier2_name,Automatic match via exact name to Chris Owings +4496,Cody Ponce,5,,1573,tier2_name,Automatic match via exact name to Cody Ponce +4497,Connor Brogdon,5,,261,tier2_name,Automatic match via exact name to Connor Brogdon +4498,Evan Marshall,5,,1207,tier2_name,Automatic match via exact name to Evan Marshall +4499,Pavin Smith,5,,1851,tier2_name,Automatic match via exact name to Pavin Smith +4500,Santiago Espinal,5,,582,tier2_name,Automatic match via exact name to Santiago Espinal +4501,Maikel Franco,5,,645,tier2_name,Automatic match via exact name to Maikel Franco +4502,Thomas Eshelman,5,,3241,manual_new,Manual assignment to new SbaPlayer: Tom Eshelman +4503,Kevin Pillar,5,,1557,tier2_name,Automatic match via exact name to Kevin Pillar +4504,Luis Castillo,5,,344,tier2_name,Automatic match via exact name to Luis Castillo +4505,Willson Contreras,5,,410,tier2_name,Automatic match via exact name to Willson Contreras +4506,Brett Gardner,5,,695,tier2_name,Automatic match via exact name to Brett Gardner +4507,Zack Britton,5,,260,tier2_name,Automatic match via exact name to Zack Britton +4508,Josh Harrison,5,,829,tier2_name,Automatic match via exact name to Josh Harrison +4509,Tyler Glasnow,5,,726,tier2_name,Automatic match via exact name to Tyler Glasnow +4510,Eric Yardley,5,,2209,tier2_name,Automatic match via exact name to Eric Yardley +4511,Junior Guerra,5,,785,tier2_name,Automatic match via exact name to Junior Guerra +4512,Wander Suero,5,,1940,tier2_name,Automatic match via exact name to Wander Suero +4513,Jonathan Hernandez,5,,876,tier2_name,Automatic match via exact name to Jonathan Hernandez +4514,Travis dArnaud,5,,461,tier2_name,Automatic match via exact name to Travis dArnaud +4515,Yency Almonte,5,,50,tier2_name,Automatic match via exact name to Yency Almonte +4516,AJ Pollock,5,,1571,tier2_name,Automatic match via exact name to AJ Pollock +4517,Tyler Alexander,5,,37,tier2_name,Automatic match via exact name to Tyler Alexander +4518,Daniel Mengden,5,,1305,tier2_name,Automatic match via exact name to Daniel Mengden +4519,Jorge Alcala,5,,32,tier2_name,Automatic match via exact name to Jorge Alcala +4520,Enoli Paredes,5,,1496,tier2_name,Automatic match via exact name to Enoli Paredes +4521,Matt Foster,5,,638,tier2_name,Automatic match via exact name to Matt Foster +4522,Richard Bleier,5,,212,tier2_name,Automatic match via exact name to Richard Bleier +4523,Tommy Hunter,5,,941,tier2_name,Automatic match via exact name to Tommy Hunter +4524,Francisco Lindor,5,,1124,tier2_name,Automatic match via exact name to Francisco Lindor +4525,Anthony Rizzo,5,,1658,tier2_name,Automatic match via exact name to Anthony Rizzo +4526,Brent Suter,5,,1943,tier2_name,Automatic match via exact name to Brent Suter +4527,Yasmani Grandal,5,,761,tier2_name,Automatic match via exact name to Yasmani Grandal +4528,Danny Jansen,5,,969,tier2_name,Automatic match via exact name to Danny Jansen +4529,Sean Reid Foley,5,,1627,tier2_name,Automatic match via exact name to Sean Reid Foley +4530,Jose Cisnero,5,,382,tier2_name,Automatic match via exact name to Jose Cisnero +4531,Anthony Bass,5,,145,tier2_name,Automatic match via exact name to Anthony Bass +4532,Brett Anderson,5,,66,tier2_name,Automatic match via exact name to Brett Anderson +4533,Joe Musgrove,5,,1394,tier2_name,Automatic match via exact name to Joe Musgrove +4534,Andrelton Simmons,5,,1825,tier2_name,Automatic match via exact name to Andrelton Simmons +4535,Drew Smyly,5,,1858,tier2_name,Automatic match via exact name to Drew Smyly +4536,Nate Lowe,5,,1155,manual_existing,Manual match to existing SbaPlayer: Nathaniel Lowe +4537,Will Harris,5,,825,tier2_name,Automatic match via exact name to Will Harris +4538,Anderson Tejeda,5,,1971,tier2_name,Automatic match via exact name to Anderson Tejeda +4539,Andrew Velazquez,5,,2067,tier2_name,Automatic match via exact name to Andrew Velazquez +4540,Julian Merryweather,5,,1311,tier2_name,Automatic match via exact name to Julian Merryweather +4541,Raimel Tapia,5,,1957,tier2_name,Automatic match via exact name to Raimel Tapia +4542,Felix Pena,5,,1518,tier2_name,Automatic match via exact name to Felix Pena +4543,Pete Fairbanks,5,,592,tier2_name,Automatic match via exact name to Pete Fairbanks +4544,Adam Duvall,5,,553,tier2_name,Automatic match via exact name to Adam Duvall +4545,Javier Baez,5,,112,tier2_name,Automatic match via exact name to Javier Baez +4546,Shogo Akiyama,5,,28,tier2_name,Automatic match via exact name to Shogo Akiyama +4547,Garrett Cooper,5,,415,tier2_name,Automatic match via exact name to Garrett Cooper +4548,Brad Boxberger,5,,229,tier2_name,Automatic match via exact name to Brad Boxberger +4549,James Karinchak,5,,1009,tier2_name,Automatic match via exact name to James Karinchak +4550,Jesus Luzardo,5,,1170,tier2_name,Automatic match via exact name to Jesus Luzardo +4551,Tyler Flowers,5,,630,tier2_name,Automatic match via exact name to Tyler Flowers +4552,Christian Arroyo,5,,96,tier2_name,Automatic match via exact name to Christian Arroyo +4553,Ramon Urias,5,,2037,tier2_name,Automatic match via exact name to Ramon Urias +4554,Steven Brault,5,,243,tier2_name,Automatic match via exact name to Steven Brault +4555,Jose Trevino,5,,2013,tier2_name,Automatic match via exact name to Jose Trevino +4556,Kyle Seager,5,,1793,tier2_name,Automatic match via exact name to Kyle Seager +4557,Nick Wittgren,5,,2185,tier2_name,Automatic match via exact name to Nick Wittgren +4558,Jordan Weems,5,,2129,tier2_name,Automatic match via exact name to Jordan Weems +4559,Luis Cessa,5,,361,tier2_name,Automatic match via exact name to Luis Cessa +4560,Taylor Clarke,5,,384,tier2_name,Automatic match via exact name to Taylor Clarke +4561,Willi Castro,5,,352,tier2_name,Automatic match via exact name to Willi Castro +4562,Brandon Bailey,5,,116,tier2_name,Automatic match via exact name to Brandon Bailey +4563,Brandon Brennan,5,,249,tier2_name,Automatic match via exact name to Brandon Brennan +4564,Carlos Santana,5,,1759,tier2_name,Automatic match via exact name to Carlos Santana +4565,Josh Hader,5,,802,tier2_name,Automatic match via exact name to Josh Hader +4566,Jimmy Herget,5,,863,tier2_name,Automatic match via exact name to Jimmy Herget +4567,Tommy La Stella,5,,1082,tier2_name,Automatic match via exact name to Tommy La Stella +4568,Dylan Floro,5,,629,tier2_name,Automatic match via exact name to Dylan Floro +4569,Jose Berrios,5,,182,tier2_name,Automatic match via exact name to Jose Berrios +4570,Lucas Giolito,5,,724,tier2_name,Automatic match via exact name to Lucas Giolito +4571,Miguel Castro,5,,350,tier2_name,Automatic match via exact name to Miguel Castro +4572,Ronald Guzman,5,,799,tier2_name,Automatic match via exact name to Ronald Guzman +4573,Chris Mazza,5,,1257,tier2_name,Automatic match via exact name to Chris Mazza +4574,Lance McCullers Jr,5,,1271,tier2_name,Automatic match via exact name to Lance McCullers Jr +4575,Rio Ruiz,5,,1723,tier2_name,Automatic match via exact name to Rio Ruiz +4576,Aaron Loup,5,,1152,tier2_name,Automatic match via exact name to Aaron Loup +4577,Joe Kelly,5,,1021,tier2_name,Automatic match via exact name to Joe Kelly +4578,Keury Mella,5,,1300,tier2_name,Automatic match via exact name to Keury Mella +4579,Nick Pivetta,5,,1564,tier2_name,Automatic match via exact name to Nick Pivetta +4580,Pierce Johnson,5,,985,tier2_name,Automatic match via exact name to Pierce Johnson +4582,Sonny Gray,5,,765,tier2_name,Automatic match via exact name to Sonny Gray +4583,Cody Stashak,5,,1895,tier2_name,Automatic match via exact name to Cody Stashak +4584,Evan Longoria,5,,1140,tier2_name,Automatic match via exact name to Evan Longoria +4585,Jake McGee,5,,1274,tier2_name,Automatic match via exact name to Jake McGee +4586,Phillips Valdez,5,,2047,tier2_name,Automatic match via exact name to Phillips Valdez +4587,Aaron Hicks,5,,892,tier2_name,Automatic match via exact name to Aaron Hicks +4588,Javy Guerra,5,,3236,manual_new,Manual assignment to new SbaPlayer: Javy Guerra +4589,Chad Pinder,5,,1559,tier2_name,Automatic match via exact name to Chad Pinder +4590,Jace Peterson,5,,1547,tier2_name,Automatic match via exact name to Jace Peterson +4591,Josh Tomlin,5,,1996,tier2_name,Automatic match via exact name to Josh Tomlin +4592,Cedric Mullins,5,,1381,tier2_name,Automatic match via exact name to Cedric Mullins +4593,Jake Cave,5,,354,tier2_name,Automatic match via exact name to Jake Cave +4594,Charlie Blackmon,5,,205,tier2_name,Automatic match via exact name to Charlie Blackmon +4595,Jesus Aguilar,5,,25,tier2_name,Automatic match via exact name to Jesus Aguilar +4596,Jeurys Familia,5,,595,tier2_name,Automatic match via exact name to Jeurys Familia +4597,Renato Nunez,5,,1443,tier2_name,Automatic match via exact name to Renato Nunez +4598,Mike Fiers,5,,615,tier2_name,Automatic match via exact name to Mike Fiers +4599,Walker Lockett,5,,1134,tier2_name,Automatic match via exact name to Walker Lockett +4600,Tyler Webb,5,,2125,tier2_name,Automatic match via exact name to Tyler Webb +4601,Greg Allen,5,,44,tier2_name,Automatic match via exact name to Greg Allen +4602,Ryan McMahon,5,,1286,tier2_name,Automatic match via exact name to Ryan McMahon +4603,Adam Frazier,5,,648,tier2_name,Automatic match via exact name to Adam Frazier +4604,Joakim Soria,5,,1872,tier2_name,Automatic match via exact name to Joakim Soria +4605,Mychal Givens,5,,725,tier2_name,Automatic match via exact name to Mychal Givens +4606,Nick Vincent,5,,2082,tier2_name,Automatic match via exact name to Nick Vincent +4607,Chasen Shreve,5,,1819,tier2_name,Automatic match via exact name to Chasen Shreve +4608,Eugenio Suarez,5,,1934,tier2_name,Automatic match via exact name to Eugenio Suarez +4609,Hanser Alberto,5,,30,tier2_name,Automatic match via exact name to Hanser Alberto +4610,Vince Velasquez,5,,2065,tier2_name,Automatic match via exact name to Vince Velasquez +4611,Whit Merrifield,5,,1309,tier2_name,Automatic match via exact name to Whit Merrifield +4612,Yoan Moncada,5,,1348,tier2_name,Automatic match via exact name to Yoan Moncada +4613,Colin Moran,5,,1360,tier2_name,Automatic match via exact name to Colin Moran +4614,Rowan Wick,5,,2147,tier2_name,Automatic match via exact name to Rowan Wick +4615,Braden Bishop,5,,200,tier2_name,Automatic match via exact name to Braden Bishop +4616,Taylor Hearn,5,,844,tier2_name,Automatic match via exact name to Taylor Hearn +4617,Richard Rodriguez,5,,1674,tier2_name,Automatic match via exact name to Richard Rodriguez +4618,Bryan Reynolds,5,,1641,tier2_name,Automatic match via exact name to Bryan Reynolds +4619,Christian Walker,5,,2104,tier2_name,Automatic match via exact name to Christian Walker +4620,Scott Alexander,5,,36,tier2_name,Automatic match via exact name to Scott Alexander +4621,Cionel Perez,5,,1540,tier2_name,Automatic match via exact name to Cionel Perez +4622,Deivi Garcia,5,,688,tier2_name,Automatic match via exact name to Deivi Garcia +4623,Ji Man Choi,5,,377,tier2_name,Automatic match via exact name to Ji Man Choi +4624,David Peralta,5,,1522,tier2_name,Automatic match via exact name to David Peralta +4625,Joey Bart,5,,142,tier2_name,Automatic match via exact name to Joey Bart +4626,Kris Bryant,5,,273,tier2_name,Automatic match via exact name to Kris Bryant +4627,Randy Dobnak,5,,521,tier2_name,Automatic match via exact name to Randy Dobnak +4628,Chad Green,5,,768,tier2_name,Automatic match via exact name to Chad Green +4633,Tyler Clippard,5,,393,tier2_name,Automatic match via exact name to Tyler Clippard +4634,Walker Buehler,5,,277,tier2_name,Automatic match via exact name to Walker Buehler +4635,Taylor Widener,5,,2149,tier2_name,Automatic match via exact name to Taylor Widener +4636,Brooks Raley,5,,1601,tier2_name,Automatic match via exact name to Brooks Raley +4637,Logan Allen,5,,3243,manual_new,Manual assignment to new SbaPlayer: Logan Allen +4638,Carter Kieboom,5,,1038,tier2_name,Automatic match via exact name to Carter Kieboom +4639,Vladimir Guerrero Jr,5,,789,tier2_name,Automatic match via exact name to Vladimir Guerrero Jr +4640,Jonah Heim,5,,849,tier2_name,Automatic match via exact name to Jonah Heim +4641,Rafael Devers,5,,499,tier2_name,Automatic match via exact name to Rafael Devers +4642,Adam Wainwright,5,,2099,tier2_name,Automatic match via exact name to Adam Wainwright +4643,Buck Farmer,5,,597,tier2_name,Automatic match via exact name to Buck Farmer +4644,Ryan Pressly,5,,1584,tier2_name,Automatic match via exact name to Ryan Pressly +4645,Tyler Thornburg,5,,1987,tier2_name,Automatic match via exact name to Tyler Thornburg +4646,Johan Camargo,5,,309,tier2_name,Automatic match via exact name to Johan Camargo +4647,Victor Reyes,5,,1638,tier2_name,Automatic match via exact name to Victor Reyes +4648,Kurt Suzuki,5,,1945,tier2_name,Automatic match via exact name to Kurt Suzuki +4649,Wes Benjamin,5,,178,tier2_name,Automatic match via exact name to Wes Benjamin +4650,Caleb Baragar,5,,124,tier2_name,Automatic match via exact name to Caleb Baragar +4651,LaMonte Wade Jr,5,,2095,tier2_name,Automatic match via exact name to LaMonte Wade Jr +4652,John Gant,5,,677,tier2_name,Automatic match via exact name to John Gant +4653,Phillip Evans,5,,589,tier2_name,Automatic match via exact name to Phillip Evans +4654,Shaun Anderson,5,,72,tier2_name,Automatic match via exact name to Shaun Anderson +4655,Jose Urena,5,,2035,tier2_name,Automatic match via exact name to Jose Urena +4656,Tyler Kinley,5,,1050,tier2_name,Automatic match via exact name to Tyler Kinley +4657,Seth Lugo,5,,1165,tier2_name,Automatic match via exact name to Seth Lugo +4658,Marcus Semien,5,,1799,tier2_name,Automatic match via exact name to Marcus Semien +4659,Tyler Anderson,5,,68,tier2_name,Automatic match via exact name to Tyler Anderson +4660,Will Smith,5,,1843,manual_existing,Manual match to existing SbaPlayer: Will Smith +4661,Chad Wallach,5,,2108,tier2_name,Automatic match via exact name to Chad Wallach +4662,Justin Dunn,5,,546,tier2_name,Automatic match via exact name to Justin Dunn +4663,Kenley Jansen,5,,968,tier2_name,Automatic match via exact name to Kenley Jansen +4664,Luis Avilan,5,,106,tier2_name,Automatic match via exact name to Luis Avilan +4665,Christian Yelich,5,,2212,tier2_name,Automatic match via exact name to Christian Yelich +4666,Keegan Akin,5,,27,tier2_name,Automatic match via exact name to Keegan Akin +4667,Bradley Zimmer,5,,2227,tier2_name,Automatic match via exact name to Bradley Zimmer +4668,Pat Valaika,5,,2044,tier2_name,Automatic match via exact name to Pat Valaika +4669,Tyler Heineman,5,,851,tier2_name,Automatic match via exact name to Tyler Heineman +4670,Corey Oswalt,5,,1472,tier2_name,Automatic match via exact name to Corey Oswalt +4671,Kyle Wright,5,,2200,tier2_name,Automatic match via exact name to Kyle Wright +4672,Jay Bruce,5,,270,tier2_name,Automatic match via exact name to Jay Bruce +4673,Wilson Ramos,5,,1612,tier2_name,Automatic match via exact name to Wilson Ramos +4674,Yadier Molina,5,,1344,tier2_name,Automatic match via exact name to Yadier Molina +4675,Freddy Galvis,5,,675,tier2_name,Automatic match via exact name to Freddy Galvis +4676,Kris Bubic,5,,274,tier2_name,Automatic match via exact name to Kris Bubic +4677,Caleb Ferguson,5,,605,tier2_name,Automatic match via exact name to Caleb Ferguson +4678,Dan Winkler,5,,2178,tier2_name,Automatic match via exact name to Dan Winkler +4679,Wandy Peralta,5,,1524,tier2_name,Automatic match via exact name to Wandy Peralta +4682,Sam Selman,5,,1798,tier2_name,Automatic match via exact name to Sam Selman +4683,Justin Wilson,5,,2167,tier2_name,Automatic match via exact name to Justin Wilson +4684,Randal Grichuk,5,,775,tier2_name,Automatic match via exact name to Randal Grichuk +4685,Sean Manaea,5,,1189,tier2_name,Automatic match via exact name to Sean Manaea +4686,Todd Frazier,5,,647,tier2_name,Automatic match via exact name to Todd Frazier +4687,Jorge Soler,5,,1870,tier2_name,Automatic match via exact name to Jorge Soler +4688,Paul DeJong,5,,485,tier2_name,Automatic match via exact name to Paul DeJong +4689,Aaron Civale,5,,383,tier2_name,Automatic match via exact name to Aaron Civale +4690,Aledmys Diaz,5,,505,tier2_name,Automatic match via exact name to Aledmys Diaz +4691,Danny Duffy,5,,541,tier2_name,Automatic match via exact name to Danny Duffy +4692,Ljay Newsome,5,,1421,tier2_name,Automatic match via exact name to Ljay Newsome +4693,Chance Sisco,5,,1831,tier2_name,Automatic match via exact name to Chance Sisco +4694,David Phelps,5,,1554,tier2_name,Automatic match via exact name to David Phelps +4695,Franmil Reyes,5,,1634,tier2_name,Automatic match via exact name to Franmil Reyes +4696,Ryan Tepera,5,,1974,tier2_name,Automatic match via exact name to Ryan Tepera +4697,Brady Lail,5,,1084,tier2_name,Automatic match via exact name to Brady Lail +4698,Chris Paddack,5,,1483,tier2_name,Automatic match via exact name to Chris Paddack +4699,Hunter Dozier,5,,533,tier2_name,Automatic match via exact name to Hunter Dozier +4700,Jazz Chisholm,5,,375,tier2_name,Automatic match via exact name to Jazz Chisholm +4701,Max Muncy,5,,1382,tier2_name,Automatic match via exact name to Max Muncy +4702,Austin Voth,5,,2091,tier2_name,Automatic match via exact name to Austin Voth +4703,Michael Lorenzen,5,,1151,tier2_name,Automatic match via exact name to Michael Lorenzen +4704,Nick Margevicius,5,,1197,tier2_name,Automatic match via exact name to Nick Margevicius +4705,Tyler Zuber,5,,2233,tier2_name,Automatic match via exact name to Tyler Zuber +4706,Adam Cimber,5,,380,tier2_name,Automatic match via exact name to Adam Cimber +4707,Brusdar Graterol,5,,763,tier2_name,Automatic match via exact name to Brusdar Graterol +4708,Gregory Soto,5,,1878,tier2_name,Automatic match via exact name to Gregory Soto +4709,Lou Trivino,5,,2016,tier2_name,Automatic match via exact name to Lou Trivino +4710,Matt Barnes,5,,131,tier2_name,Automatic match via exact name to Matt Barnes +4711,Raisel Iglesias,5,,950,tier2_name,Automatic match via exact name to Raisel Iglesias +4712,Chi Chi Gonzalez,5,,737,tier2_name,Automatic match via exact name to Chi Chi Gonzalez +4713,Austin Meadows,5,,1290,tier2_name,Automatic match via exact name to Austin Meadows +4714,Charlie Morton,5,,1375,tier2_name,Automatic match via exact name to Charlie Morton +4715,Jorge Polanco,5,,1570,tier2_name,Automatic match via exact name to Jorge Polanco +4716,Ross Detwiler,5,,497,tier2_name,Automatic match via exact name to Ross Detwiler +4717,Adam Morgan,5,,1368,tier2_name,Automatic match via exact name to Adam Morgan +4718,Jason Adam,5,,13,tier2_name,Automatic match via exact name to Jason Adam +4719,Josh VanMeter,5,,2052,tier2_name,Automatic match via exact name to Josh VanMeter +4720,Pete Alonso,5,,53,tier2_name,Automatic match via exact name to Pete Alonso +4721,Anthony Kay,5,,1012,tier2_name,Automatic match via exact name to Anthony Kay +4722,Evan Phillips,5,,3238,manual_new,Manual assignment to new SbaPlayer: Evan Phillips +4723,Huascar Ynoa,5,,2215,tier2_name,Automatic match via exact name to Huascar Ynoa +4724,Jonathan Holder,5,,912,tier2_name,Automatic match via exact name to Jonathan Holder +4725,Tyler Rogers,5,,1691,tier2_name,Automatic match via exact name to Tyler Rogers +4726,Josh Lindblom,5,,1123,tier2_name,Automatic match via exact name to Josh Lindblom +4727,Scott Barlow,5,,128,tier2_name,Automatic match via exact name to Scott Barlow +4728,Travis Shaw,5,,1809,tier2_name,Automatic match via exact name to Travis Shaw +4729,Yoshi Tsutsugo,5,,2021,tier2_name,Automatic match via exact name to Yoshi Tsutsugo +4730,Orlando Arcia,5,,86,tier2_name,Automatic match via exact name to Orlando Arcia +4749,Sam Howard,5,,929,tier2_name,Automatic match via exact name to Sam Howard +4750,Shin Soo Choo,5,,378,tier2_name,Automatic match via exact name to Shin Soo Choo +4751,Emilio Pagan,5,,1484,tier2_name,Automatic match via exact name to Emilio Pagan +4752,Genesis Cabrera,5,,301,tier2_name,Automatic match via exact name to Genesis Cabrera +4753,Matt Kemp,5,,1026,tier2_name,Automatic match via exact name to Matt Kemp +4754,Dane Dunning,5,,548,tier2_name,Automatic match via exact name to Dane Dunning +4755,Trevor May,5,,1248,tier2_name,Automatic match via exact name to Trevor May +4756,Jordan Montgomery,5,,1356,tier2_name,Automatic match via exact name to Jordan Montgomery +4757,Ryan Braun,5,,244,tier2_name,Automatic match via exact name to Ryan Braun +4758,David Bote,5,,224,tier2_name,Automatic match via exact name to David Bote +4759,Yusei Kikuchi,5,,1040,tier2_name,Automatic match via exact name to Yusei Kikuchi +4760,Anibal Sanchez,5,,1743,tier2_name,Automatic match via exact name to Anibal Sanchez +4761,Matt Carpenter,5,,329,tier2_name,Automatic match via exact name to Matt Carpenter +4762,Ryan Castellani,5,,338,tier2_name,Automatic match via exact name to Ryan Castellani +4763,Shohei Ohtani,5,,1455,tier2_name,Automatic match via exact name to Shohei Ohtani +4764,Alex Gordon,5,,751,tier2_name,Automatic match via exact name to Alex Gordon +4765,Dylan Cease,5,,355,tier2_name,Automatic match via exact name to Dylan Cease +4766,Rick Porcello,5,,1577,tier2_name,Automatic match via exact name to Rick Porcello +4767,Erik Gonzalez,5,,742,tier2_name,Automatic match via exact name to Erik Gonzalez +4768,Evan White,5,,2142,tier2_name,Automatic match via exact name to Evan White +4769,Johnny Cueto,5,,451,tier2_name,Automatic match via exact name to Johnny Cueto +4770,Joey Votto,5,,2092,tier2_name,Automatic match via exact name to Joey Votto +4771,Kyle Schwarber,5,,1784,tier2_name,Automatic match via exact name to Kyle Schwarber +4772,JD Davis,5,,474,tier2_name,Automatic match via exact name to JD Davis +4773,Nicholas Castellanos,5,,340,tier2_name,Automatic match via exact name to Nicholas Castellanos +4774,Abraham Toro,5,,2001,tier2_name,Automatic match via exact name to Abraham Toro +4775,Adam Eaton,5,,556,tier2_name,Automatic match via exact name to Adam Eaton +4776,Adam Haseley,5,,837,tier2_name,Automatic match via exact name to Adam Haseley +4777,Adam Ottavino,5,,1475,tier2_name,Automatic match via exact name to Adam Ottavino +4778,Adeiny Hechavarria,5,,847,tier2_name,Automatic match via exact name to Adeiny Hechavarria +4779,Adrian Houser,5,,928,tier2_name,Automatic match via exact name to Adrian Houser +4780,Adrian Morejon,5,,1363,tier2_name,Automatic match via exact name to Adrian Morejon +4781,Albert Almora,5,,51,tier2_name,Automatic match via exact name to Albert Almora Jr +4782,Albert Pujols,5,,1591,tier2_name,Automatic match via exact name to Albert Pujols +4783,Alex Reyes,5,,1635,tier2_name,Automatic match via exact name to Alex Reyes +4784,Alex Wood,5,,2193,tier2_name,Automatic match via exact name to Alex Wood +4785,Alex Young,5,,2217,tier2_name,Automatic match via exact name to Alex Young +4786,Amed Rosario,5,,1711,tier2_name,Automatic match via exact name to Amed Rosario +4787,Andrew Benintendi,5,,177,tier2_name,Automatic match via exact name to Andrew Benintendi +4788,Andrew Chafin,5,,363,tier2_name,Automatic match via exact name to Andrew Chafin +4789,Andrew Knizner,5,,1065,tier2_name,Automatic match via exact name to Andrew Knizner +4790,Andrew McCutchen,5,,1272,tier2_name,Automatic match via exact name to Andrew McCutchen +4791,Andrew Triggs,5,,2014,tier2_name,Automatic match via exact name to Andrew Triggs +4792,Andy Young,5,,2220,tier2_name,Automatic match via exact name to Andy Young +4793,Anthony Alford,5,,41,tier2_name,Automatic match via exact name to Anthony Alford +4794,Anthony Banda,5,,121,tier2_name,Automatic match via exact name to Anthony Banda +4795,Anthony DeSclafani,5,,493,tier2_name,Automatic match via exact name to Anthony DeSclafani +4796,Aristides Aquino,5,,81,tier2_name,Automatic match via exact name to Aristides Aquino +4797,Asher Wojciechowski,5,,2186,tier2_name,Automatic match via exact name to Asher Wojciechowski +4798,Ashton Goudeau,5,,759,tier2_name,Automatic match via exact name to Ashton Goudeau +4799,Austin Allen,5,,47,tier2_name,Automatic match via exact name to Austin Allen +4800,Austin Brice,5,,253,tier2_name,Automatic match via exact name to Austin Brice +4801,Austin Davis,5,,471,tier2_name,Automatic match via exact name to Austin Davis +4802,Austin Hedges,5,,848,tier2_name,Automatic match via exact name to Austin Hedges +4803,Austin Riley,5,,1649,tier2_name,Automatic match via exact name to Austin Riley +4804,Austin Romine,5,,1704,tier2_name,Automatic match via exact name to Austin Romine +4805,Avisail Garcia,5,,678,tier2_name,Automatic match via exact name to Avisail Garcia +4806,Beau Taylor,5,,1968,tier2_name,Automatic match via exact name to Beau Taylor +4807,Ben Gamel,5,,676,tier2_name,Automatic match via exact name to Ben Gamel +4808,Billy Hamilton,5,,810,tier2_name,Automatic match via exact name to Billy Hamilton +4809,Blake Treinen,5,,2011,tier2_name,Automatic match via exact name to Blake Treinen +4810,Brad Brach,5,,232,tier2_name,Automatic match via exact name to Brad Brach +4811,Brandon Bielak,5,,195,tier2_name,Automatic match via exact name to Brandon Bielak +4812,Brandon Drury,5,,535,tier2_name,Automatic match via exact name to Brandon Drury +4813,Brandon Workman,5,,2198,tier2_name,Automatic match via exact name to Brandon Workman +4814,Braxton Garrett,5,,701,tier2_name,Automatic match via exact name to Braxton Garrett +4815,Brendan Rodgers,5,,1668,tier2_name,Automatic match via exact name to Brendan Rodgers +4816,Brent Rooker,5,,1708,tier2_name,Automatic match via exact name to Brent Rooker +4817,Brian Dozier,5,,532,tier2_name,Automatic match via exact name to Brian Dozier +4818,Brian Goodwin,5,,749,tier2_name,Automatic match via exact name to Brian Goodwin +4819,Brian Moran,5,,1362,tier2_name,Automatic match via exact name to Brian Moran +4820,Brock Holt,5,,921,tier2_name,Automatic match via exact name to Brock Holt +4821,Bryan Holaday,5,,911,tier2_name,Automatic match via exact name to Bryan Holaday +4822,Bubba Starling,5,,1894,tier2_name,Automatic match via exact name to Bubba Starling +4823,Cam Hill,5,,902,tier2_name,Automatic match via exact name to Cam Hill +4824,Cameron Maybin,5,,1250,tier2_name,Automatic match via exact name to Cameron Maybin +4825,Carlos Estevez,5,,585,tier2_name,Automatic match via exact name to Carlos Estevez +4826,Carlos Hernandez,5,,880,tier2_name,Automatic match via exact name to Carlos Hernandez +4827,Carlos Martinez,5,,1223,tier2_name,Automatic match via exact name to Carlos Martinez +4828,Carlos Rodon,5,,1670,tier2_name,Automatic match via exact name to Carlos Rodon +4829,Carson Kelly,5,,1023,tier2_name,Automatic match via exact name to Carson Kelly +4830,Casey Mize,5,,1342,tier2_name,Automatic match via exact name to Casey Mize +4831,Casey Sadler,5,,1736,tier2_name,Automatic match via exact name to Casey Sadler +4832,Chad Kuhl,5,,1078,tier2_name,Automatic match via exact name to Chad Kuhl +4833,Chadwick Tromp,5,,2017,tier2_name,Automatic match via exact name to Chadwick Tromp +4834,Chance Adams,5,,18,tier2_name,Automatic match via exact name to Chance Adams +4835,Chase Anderson,5,,67,tier2_name,Automatic match via exact name to Chase Anderson +4836,Chase De Jong,5,,478,tier2_name,Automatic match via exact name to Chase De Jong +4837,Chris Davis,5,,467,tier2_name,Automatic match via exact name to Chris Davis +4838,Chris Stratton,5,,1922,tier2_name,Automatic match via exact name to Chris Stratton +4839,Christian Colon,5,,406,tier2_name,Automatic match via exact name to Christian Colon +4840,Christin Stewart,5,,1910,tier2_name,Automatic match via exact name to Christin Stewart +4841,Cody Reed,5,,1625,tier2_name,Automatic match via exact name to Cody Reed +4842,Cole Sulser,5,,1942,tier2_name,Automatic match via exact name to Cole Sulser +4843,Cole Tucker,5,,2022,tier2_name,Automatic match via exact name to Cole Tucker +4846,Craig Kimbrel,5,,1043,tier2_name,Automatic match via exact name to Craig Kimbrel +4847,Craig Stammen,5,,1891,tier2_name,Automatic match via exact name to Craig Stammen +4848,Cy Sneed,5,,1860,tier2_name,Automatic match via exact name to Cy Sneed +4849,Dakota Bacus,5,,108,tier2_name,Automatic match via exact name to Dakota Bacus +4850,Dan Altavilla,5,,54,tier2_name,Automatic match via exact name to Dan Altavilla +4851,Daniel Hudson,5,,933,tier2_name,Automatic match via exact name to Daniel Hudson +4852,Daniel Murphy,5,,1387,tier2_name,Automatic match via exact name to Daniel Murphy +4853,Daniel Ponce de Leon,5,,1574,tier2_name,Automatic match via exact name to Daniel Ponce de Leon +4854,Daniel Robertson,5,,1663,tier2_name,Automatic match via exact name to Daniel Robertson +4855,Daniel Vogelbach,5,,2085,tier2_name,Automatic match via exact name to Daniel Vogelbach +4856,Danny Santana,5,,1760,tier2_name,Automatic match via exact name to Danny Santana +4857,Daulton Varsho,5,,2058,tier2_name,Automatic match via exact name to Daulton Varsho +4858,David Dahl,5,,457,tier2_name,Automatic match via exact name to David Dahl +4859,Daz Cameron,5,,310,tier2_name,Automatic match via exact name to Daz Cameron +4860,Dee Strange Gordon,5,,1920,tier2_name,Automatic match via exact name to Dee Strange Gordon +4861,Delino DeShields,5,,494,tier2_name,Automatic match via exact name to Delino DeShields +4862,Dellin Betances,5,,184,tier2_name,Automatic match via exact name to Dellin Betances +4863,Dennis Santana,5,,1762,tier2_name,Automatic match via exact name to Dennis Santana +4864,Deolis Guerra,5,,787,tier2_name,Automatic match via exact name to Deolis Guerra +4865,Derek Fisher,5,,618,tier2_name,Automatic match via exact name to Derek Fisher +4866,Derek Holland,5,,914,tier2_name,Automatic match via exact name to Derek Holland +4867,Devin Smeltzer,5,,1840,tier2_name,Automatic match via exact name to Devin Smeltzer +4868,Dexter Fowler,5,,639,tier2_name,Automatic match via exact name to Dexter Fowler +4869,Domingo Santana,5,,1761,tier2_name,Automatic match via exact name to Domingo Santana +4870,Dominic Leone,5,,1116,tier2_name,Automatic match via exact name to Dominic Leone +4871,Dovydas Neverauskas,5,,1416,tier2_name,Automatic match via exact name to Dovydas Neverauskas +4872,Drew Butera,5,,290,tier2_name,Automatic match via exact name to Drew Butera +4873,Drew Rasmussen,5,,1618,tier2_name,Automatic match via exact name to Drew Rasmussen +4874,Drew Smith,5,,1848,tier2_name,Automatic match via exact name to Drew Smith +4875,Duane Underwood,5,,2033,tier2_name,Automatic match via exact name to Duane Underwood +4876,Dustin Garneau,5,,697,tier2_name,Automatic match via exact name to Dustin Garneau +4877,Dwight Smith Jr,5,,1855,tier2_name,Automatic match via exact name to Dwight Smith Jr +4878,Dylan Carlson,5,,327,tier2_name,Automatic match via exact name to Dylan Carlson +4879,Dylan Covey,5,,425,tier2_name,Automatic match via exact name to Dylan Covey +4880,Eddy Alvarez,5,,60,tier2_name,Automatic match via exact name to Eddy Alvarez +4881,Eduardo Escobar,5,,581,tier2_name,Automatic match via exact name to Eduardo Escobar +4882,Edward Olivares,5,,1458,tier2_name,Automatic match via exact name to Edward Olivares +4883,Edwin Encarnacion,5,,571,tier2_name,Automatic match via exact name to Edwin Encarnacion +4884,Eli White,5,,2140,tier2_name,Automatic match via exact name to Eli White +4885,Elias Diaz,5,,502,tier2_name,Automatic match via exact name to Elias Diaz +4886,Elvis Andrus,5,,77,tier2_name,Automatic match via exact name to Elvis Andrus +4887,Ender Inciarte,5,,952,tier2_name,Automatic match via exact name to Ender Inciarte +4888,Eric Haase,5,,801,tier2_name,Automatic match via exact name to Eric Haase +4889,Eric Lauer,5,,1096,tier2_name,Automatic match via exact name to Eric Lauer +4890,Eric Sogard,5,,1865,tier2_name,Automatic match via exact name to Eric Sogard +4891,Eric Thames,5,,1976,tier2_name,Automatic match via exact name to Eric Thames +4892,Erik Swanson,5,,1948,tier2_name,Automatic match via exact name to Erik Swanson +4893,Franchy Cordero,5,,418,tier2_name,Automatic match via exact name to Franchy Cordero +4894,Francisco Mejia,5,,3239,manual_new,Manual assignment to new SbaPlayer: Francisco Mejia +4895,Frankie Montas,5,,1351,tier2_name,Automatic match via exact name to Frankie Montas +4899,Garrett Hampson,5,,814,tier2_name,Automatic match via exact name to Garrett Hampson +4900,Gary Sanchez,5,,1746,tier2_name,Automatic match via exact name to Gary Sanchez +4901,Geoff Hartlieb,5,,833,tier2_name,Automatic match via exact name to Geoff Hartlieb +4902,Gio Gonzalez,5,,739,tier2_name,Automatic match via exact name to Gio Gonzalez +4903,Giovanny Gallegos,5,,672,tier2_name,Automatic match via exact name to Giovanny Gallegos +4904,Gleyber Torres,5,,2003,tier2_name,Automatic match via exact name to Gleyber Torres +4905,Grayson Greiner,5,,773,tier2_name,Automatic match via exact name to Grayson Greiner +4906,Greg Garcia,5,,681,tier2_name,Automatic match via exact name to Greg Garcia +4907,Gregory Polanco,5,,1569,tier2_name,Automatic match via exact name to Gregory Polanco +4908,Hansel Robles,5,,1665,tier2_name,Automatic match via exact name to Hansel Robles +4909,Heath Hembree,5,,854,tier2_name,Automatic match via exact name to Heath Hembree +4910,Hector Neris,5,,1413,tier2_name,Automatic match via exact name to Hector Neris +4911,Hector Rondon,5,,1706,tier2_name,Automatic match via exact name to Hector Rondon +4912,Hoby Milner,5,,1332,tier2_name,Automatic match via exact name to Hoby Milner +4913,Howie Kendrick,5,,1028,tier2_name,Automatic match via exact name to Howie Kendrick +4914,Humberto Castellanos,5,,339,tier2_name,Automatic match via exact name to Humberto Castellanos +4915,Humberto Mejia,5,,1297,tier2_name,Automatic match via exact name to Humberto Mejia +4916,Hunter Harvey,5,,836,tier2_name,Automatic match via exact name to Hunter Harvey +4917,Hunter Pence,5,,1520,tier2_name,Automatic match via exact name to Hunter Pence +4918,Hunter Renfroe,5,,1631,tier2_name,Automatic match via exact name to Hunter Renfroe +4919,Ian Gibaut,5,,714,tier2_name,Automatic match via exact name to Ian Gibaut +4920,Ian Kennedy,5,,1029,tier2_name,Automatic match via exact name to Ian Kennedy +4921,Ildemaro Vargas,5,,2054,tier2_name,Automatic match via exact name to Ildemaro Vargas +4922,Isaac Paredes,5,,1497,tier2_name,Automatic match via exact name to Isaac Paredes +4923,Isan Diaz,5,,508,tier2_name,Automatic match via exact name to Isan Diaz +4924,Ivan Nova,5,,1441,tier2_name,Automatic match via exact name to Ivan Nova +4925,Jack Flaherty,5,,622,tier2_name,Automatic match via exact name to Jack Flaherty +4926,Jack Mayfield,5,,1252,tier2_name,Automatic match via exact name to Jack Mayfield +4927,Jacob Barnes,5,,133,tier2_name,Automatic match via exact name to Jacob Barnes +4928,Jacob Waguespack,5,,2098,tier2_name,Automatic match via exact name to Jacob Waguespack +4929,Jairo Diaz,5,,501,tier2_name,Automatic match via exact name to Jairo Diaz +4930,Jake Fraley,5,,641,tier2_name,Automatic match via exact name to Jake Fraley +4931,Jake Lamb,5,,1087,tier2_name,Automatic match via exact name to Jake Lamb +4932,Jake Newberry,5,,1418,tier2_name,Automatic match via exact name to Jake Newberry +4933,Jake Noll,5,,1435,tier2_name,Automatic match via exact name to Jake Noll +4934,Jake Odorizzi,5,,1452,tier2_name,Automatic match via exact name to Jake Odorizzi +4935,Jake Woodford,5,,2195,tier2_name,Automatic match via exact name to Jake Woodford +4936,Jakob Junis,5,,1004,tier2_name,Automatic match via exact name to Jakob Junis +4937,James Paxton,5,,1506,tier2_name,Automatic match via exact name to James Paxton +4938,Jared Hughes,5,,937,tier2_name,Automatic match via exact name to Jared Hughes +4939,Jared Oliva,5,,1457,tier2_name,Automatic match via exact name to Jared Oliva +4940,Jarrod Dyson,5,,555,tier2_name,Automatic match via exact name to Jarrod Dyson +4941,Jason Castro,5,,347,tier2_name,Automatic match via exact name to Jason Castro +4942,JD Martinez,5,,1229,tier2_name,Automatic match via exact name to JD Martinez +4943,Jeff Hoffman,5,,910,tier2_name,Automatic match via exact name to Jeff Hoffman +4944,Jeff Samardzija,5,,1740,tier2_name,Automatic match via exact name to Jeff Samardzija +4945,Jeffrey Springs,5,,1889,tier2_name,Automatic match via exact name to Jeffrey Springs +4946,Jesse Chavez,5,,370,tier2_name,Automatic match via exact name to Jesse Chavez +4947,Jesus Sanchez,5,,1749,tier2_name,Automatic match via exact name to Jesus Sanchez +4948,Jimmy Cordero,5,,419,tier2_name,Automatic match via exact name to Jimmy Cordero +4949,Jo Adell,5,,20,tier2_name,Automatic match via exact name to Jo Adell +4950,Joc Pederson,5,,1514,tier2_name,Automatic match via exact name to Joc Pederson +4951,Joe Hudson,5,,932,tier2_name,Automatic match via exact name to Joe Hudson +4962,Jon Lester,5,,1117,tier2_name,Automatic match via exact name to Jon Lester +4963,Jonathan Arauz,5,,84,tier2_name,Automatic match via exact name to Jonathan Arauz +4964,Jonathan Villar,5,,2079,tier2_name,Automatic match via exact name to Jonathan Villar +4965,Jordan Luplow,5,,1168,tier2_name,Automatic match via exact name to Jordan Luplow +4966,Jordan Lyles,5,,1171,tier2_name,Automatic match via exact name to Jordan Lyles +4967,Jordan Yamamoto,5,,2205,tier2_name,Automatic match via exact name to Jordan Yamamoto +4968,Jordy Mercer,5,,1308,tier2_name,Automatic match via exact name to Jordy Mercer +4969,Jorge Alfaro,5,,40,tier2_name,Automatic match via exact name to Jorge Alfaro +4970,Jorge Bonifacio,5,,220,tier2_name,Automatic match via exact name to Jorge Bonifacio +4971,Jorge Lopez,5,,1144,tier2_name,Automatic match via exact name to Jorge Lopez +4972,Jorge Mateo,5,,1233,tier2_name,Automatic match via exact name to Jorge Mateo +4973,Jose Altuve,5,,56,tier2_name,Automatic match via exact name to Jose Altuve +4974,Jose Alvarado,5,,58,tier2_name,Automatic match via exact name to Jose Alvarado +4975,Jose Garcia,5,,3242,manual_new,Manual assignment to new SbaPlayer: Jose Garcia +4976,Jose Marmolejos,5,,1203,tier2_name,Automatic match via exact name to Jose Marmolejos +4977,Jose Martinez,5,,1222,tier2_name,Automatic match via exact name to Jose Martinez +4978,Jose Osuna,5,,1471,tier2_name,Automatic match via exact name to Jose Osuna +4979,Jose Peraza,5,,1527,tier2_name,Automatic match via exact name to Jose Peraza +4980,Jose Quintana,5,,1596,tier2_name,Automatic match via exact name to Jose Quintana +4981,Joseph Odom,5,,1450,tier2_name,Automatic match via exact name to Joseph Odom +4982,Josh Bell,5,,168,tier2_name,Automatic match via exact name to Josh Bell +4983,Josh James,5,,965,tier2_name,Automatic match via exact name to Josh James +4984,Josh Naylor,5,,1404,tier2_name,Automatic match via exact name to Josh Naylor +4985,Josh Osich,5,,1469,tier2_name,Automatic match via exact name to Josh Osich +4986,Josh Phegley,5,,1553,tier2_name,Automatic match via exact name to Josh Phegley +4987,Josh Reddick,5,,1623,tier2_name,Automatic match via exact name to Josh Reddick +4988,Josh Rojas,5,,1695,tier2_name,Automatic match via exact name to Josh Rojas +4989,Josh Taylor,5,,1967,tier2_name,Automatic match via exact name to Josh Taylor +4990,JP Feyereisen,5,,612,tier2_name,Automatic match via exact name to JP Feyereisen +4991,JT Brubaker,5,,269,tier2_name,Automatic match via exact name to JT Brubaker +4992,JT Riddle,5,,1648,tier2_name,Automatic match via exact name to JT Riddle +4993,Julio Teheran,5,,1970,tier2_name,Automatic match via exact name to Julio Teheran +4994,Justin Smoak,5,,1857,tier2_name,Automatic match via exact name to Justin Smoak +4995,Justin Upton,5,,2034,tier2_name,Automatic match via exact name to Justin Upton +4996,Kendall Graveman,5,,764,tier2_name,Automatic match via exact name to Kendall Graveman +4997,Keston Hiura,5,,905,tier2_name,Automatic match via exact name to Keston Hiura +4998,Kevin Cron,5,,440,tier2_name,Automatic match via exact name to Kevin Cron +4999,Kevin Ginkel,5,,722,tier2_name,Automatic match via exact name to Kevin Ginkel +5000,Kevin Newman,5,,1420,tier2_name,Automatic match via exact name to Kevin Newman +5001,Keynan Middleton,5,,1316,tier2_name,Automatic match via exact name to Keynan Middleton +5002,Khris Davis,5,,469,tier2_name,Automatic match via exact name to Khris Davis +5003,Kolby Allard,5,,42,tier2_name,Automatic match via exact name to Kolby Allard +5004,Kyle Crick,5,,435,tier2_name,Automatic match via exact name to Kyle Crick +5005,Kyle Funkhouser,5,,668,tier2_name,Automatic match via exact name to Kyle Funkhouser +5006,Kyle Garlick,5,,696,tier2_name,Automatic match via exact name to Kyle Garlick +5007,Kyle Gibson,5,,715,tier2_name,Automatic match via exact name to Kyle Gibson +5008,Kyle Hart,5,,832,tier2_name,Automatic match via exact name to Kyle Hart +5009,Kyle Ryan,5,,1730,tier2_name,Automatic match via exact name to Kyle Ryan +5010,Lane Thomas,5,,1978,tier2_name,Automatic match via exact name to Lane Thomas +5011,Lewin Diaz,5,,506,tier2_name,Automatic match via exact name to Lewin Diaz +5012,Lewis Thorpe,5,,1989,tier2_name,Automatic match via exact name to Lewis Thorpe +5013,Logan Forsythe,5,,636,tier2_name,Automatic match via exact name to Logan Forsythe +5020,Luis Rengifo,5,,1632,tier2_name,Automatic match via exact name to Luis Rengifo +5021,Luis Torrens,5,,2002,tier2_name,Automatic match via exact name to Luis Torrens +5022,Luke Jackson,5,,960,tier2_name,Automatic match via exact name to Luke Jackson +5023,Luke Weaver,5,,2124,tier2_name,Automatic match via exact name to Luke Weaver +5024,Madison Bumgarner,5,,278,tier2_name,Automatic match via exact name to Madison Bumgarner +5025,Mallex Smith,5,,1846,tier2_name,Automatic match via exact name to Mallex Smith +5026,Marcus Walden,5,,2100,tier2_name,Automatic match via exact name to Marcus Walden +5027,Mark Mathias,5,,1234,tier2_name,Automatic match via exact name to Mark Mathias +5028,Mark Payton,5,,1508,tier2_name,Automatic match via exact name to Mark Payton +5029,Mason Williams,5,,2154,tier2_name,Automatic match via exact name to Mason Williams +5030,Matt Adams,5,,15,tier2_name,Automatic match via exact name to Matt Adams +5031,Matt Beaty,5,,157,tier2_name,Automatic match via exact name to Matt Beaty +5032,Matt Davidson,5,,463,tier2_name,Automatic match via exact name to Matt Davidson +5033,Matt Hall,5,,806,tier2_name,Automatic match via exact name to Matt Hall +5034,Matt Harvey,5,,835,tier2_name,Automatic match via exact name to Matt Harvey +5035,Matt Magill,5,,1182,tier2_name,Automatic match via exact name to Matt Magill +5036,Matt Thaiss,5,,1975,tier2_name,Automatic match via exact name to Matt Thaiss +5037,Matt Wieters,5,,2152,tier2_name,Automatic match via exact name to Matt Wieters +5038,Matthew Boyd,5,,230,tier2_name,Automatic match via exact name to Matthew Boyd +5039,Matthew Joyce,5,,999,tier2_name,Automatic match via exact name to Matthew Joyce +5040,Max Schrock,5,,1781,tier2_name,Automatic match via exact name to Max Schrock +5041,Meibrys Viloria,5,,2081,tier2_name,Automatic match via exact name to Meibrys Viloria +5042,Michael A Taylor,5,,1963,manual_existing,Manual match to existing SbaPlayer: Michael Taylor +5043,Michael Chavis,5,,371,tier2_name,Automatic match via exact name to Michael Chavis +5044,Michael Fulmer,5,,666,tier2_name,Automatic match via exact name to Michael Fulmer +5045,Michael King,5,,1047,tier2_name,Automatic match via exact name to Michael King +5046,Michael Perez,5,,1539,tier2_name,Automatic match via exact name to Michael Perez +5047,Michael Wacha,5,,2093,tier2_name,Automatic match via exact name to Michael Wacha +5048,Miguel Andujar,5,,78,tier2_name,Automatic match via exact name to Miguel Andujar +5049,Miguel Cabrera,5,,298,tier2_name,Automatic match via exact name to Miguel Cabrera +5050,Miguel Sano,5,,1757,tier2_name,Automatic match via exact name to Miguel Sano +5051,Mike Ford,5,,635,tier2_name,Automatic match via exact name to Mike Ford +5052,Mike Freeman,5,,651,tier2_name,Automatic match via exact name to Mike Freeman +5053,Mike Kickham,5,,1036,tier2_name,Automatic match via exact name to Mike Kickham +5054,Mike Minor,5,,1335,tier2_name,Automatic match via exact name to Mike Minor +5055,Mike Tauchman,5,,1961,tier2_name,Automatic match via exact name to Mike Tauchman +5056,Mike Zunino,5,,2234,tier2_name,Automatic match via exact name to Mike Zunino +5057,Mitch Garver,5,,702,tier2_name,Automatic match via exact name to Mitch Garver +5058,Monte Harrison,5,,831,tier2_name,Automatic match via exact name to Monte Harrison +5059,Myles Straw,5,,1924,tier2_name,Automatic match via exact name to Myles Straw +5060,Nabil Crismatt,5,,436,tier2_name,Automatic match via exact name to Nabil Crismatt +5061,Nate Jones,5,,990,tier2_name,Automatic match via exact name to Nate Jones +5062,Nate Pearson,5,,1513,tier2_name,Automatic match via exact name to Nate Pearson +5063,Neil Walker,5,,2103,tier2_name,Automatic match via exact name to Neil Walker +5064,Nick Goody,5,,750,tier2_name,Automatic match via exact name to Nick Goody +5065,Nick Markakis,5,,1201,tier2_name,Automatic match via exact name to Nick Markakis +5066,Nick Neidert,5,,1408,tier2_name,Automatic match via exact name to Nick Neidert +5067,Nick Nelson,5,,1410,tier2_name,Automatic match via exact name to Nick Nelson +5068,Nick Ramirez,5,,1605,tier2_name,Automatic match via exact name to Nick Ramirez +5073,Niko Goodrum,5,,748,tier2_name,Automatic match via exact name to Niko Goodrum +5074,Nivaldo Rodriguez,5,,1687,tier2_name,Automatic match via exact name to Nivaldo Rodriguez +5075,Nomar Mazara,5,,1254,tier2_name,Automatic match via exact name to Nomar Mazara +5076,Oliver Drake,5,,534,tier2_name,Automatic match via exact name to Oliver Drake +5077,Omar Narvaez,5,,1401,tier2_name,Automatic match via exact name to Omar Narvaez +5078,Oscar Mercado,5,,1306,tier2_name,Automatic match via exact name to Oscar Mercado +5079,Pablo Sandoval,5,,1753,tier2_name,Automatic match via exact name to Pablo Sandoval +5080,Patrick Sandoval,5,,1754,tier2_name,Automatic match via exact name to Patrick Sandoval +5081,Phil Ervin,5,,579,tier2_name,Automatic match via exact name to Phil Ervin +5082,Phil Gosselin,5,,757,tier2_name,Automatic match via exact name to Phil Gosselin +5083,Phil Maton,5,,1238,tier2_name,Automatic match via exact name to Phil Maton +5084,Rafael Montero,5,,1352,tier2_name,Automatic match via exact name to Rafael Montero +5085,Ramon Rosso,5,,1716,tier2_name,Automatic match via exact name to Ramon Rosso +5086,Rangel Ravelo,5,,1619,tier2_name,Automatic match via exact name to Rangel Ravelo +5087,Reese McGuire,5,,1277,tier2_name,Automatic match via exact name to Reese McGuire +5088,Reynaldo Lopez,5,,1145,tier2_name,Automatic match via exact name to Reynaldo Lopez +5089,Rico Garcia,5,,693,tier2_name,Automatic match via exact name to Rico Garcia +5090,Rob Refsnyder,5,,1626,tier2_name,Automatic match via exact name to Rob Refsnyder +5091,Robbie Erlin,5,,578,tier2_name,Automatic match via exact name to Robbie Erlin +5092,Robbie Ray,5,,1620,tier2_name,Automatic match via exact name to Robbie Ray +5093,Robert Dugger,5,,544,tier2_name,Automatic match via exact name to Robert Dugger +5094,Robert Gsellman,5,,782,tier2_name,Automatic match via exact name to Robert Gsellman +5095,Robert Stephenson,5,,1904,tier2_name,Automatic match via exact name to Robert Stephenson +5096,Robert Stock,5,,1912,tier2_name,Automatic match via exact name to Robert Stock +5097,Robinson Chirinos,5,,373,tier2_name,Automatic match via exact name to Robinson Chirinos +5098,Roman Quinn,5,,1595,tier2_name,Automatic match via exact name to Roman Quinn +5099,Rony Garcia,5,,689,tier2_name,Automatic match via exact name to Rony Garcia +5100,Ross Stripling,5,,1927,tier2_name,Automatic match via exact name to Ross Stripling +5101,Rougned Odor,5,,1451,tier2_name,Automatic match via exact name to Rougned Odor +5102,Ryan Buchter,5,,276,tier2_name,Automatic match via exact name to Ryan Buchter +5103,Ryan Helsley,5,,853,tier2_name,Automatic match via exact name to Ryan Helsley +5104,Ryan McBroom,5,,1259,tier2_name,Automatic match via exact name to Ryan McBroom +5105,Ryan OHearn,5,,1453,tier2_name,Automatic match via exact name to Ryan OHearn +5106,Ryan Thompson,5,,1983,tier2_name,Automatic match via exact name to Ryan Thompson +5107,Ryne Harper,5,,824,tier2_name,Automatic match via exact name to Ryne Harper +5108,Ryne Stanek,5,,1892,tier2_name,Automatic match via exact name to Ryne Stanek +5109,Ryon Healy,5,,842,tier2_name,Automatic match via exact name to Ryon Healy +5110,Sam Coonrod,5,,414,tier2_name,Automatic match via exact name to Sam Coonrod +5111,Sandy Leon,5,,1115,tier2_name,Automatic match via exact name to Sandy Leon +5112,Scott Heineman,5,,850,tier2_name,Automatic match via exact name to Scott Heineman +5113,Scott Kingery,5,,1048,tier2_name,Automatic match via exact name to Scott Kingery +5114,Sean Doolittle,5,,528,tier2_name,Automatic match via exact name to Sean Doolittle +5115,Sean Newcomb,5,,1419,tier2_name,Automatic match via exact name to Sean Newcomb +5116,Sean Poppen,5,,1576,tier2_name,Automatic match via exact name to Sean Poppen +5117,Sergio Alcantara,5,,34,tier2_name,Automatic match via exact name to Sergio Alcantara +5118,Sergio Romo,5,,1705,tier2_name,Automatic match via exact name to Sergio Romo +5119,Seth Elledge,5,,567,tier2_name,Automatic match via exact name to Seth Elledge +5120,Shed Long,5,,1138,tier2_name,Automatic match via exact name to Shed Long +5121,Sherten Apostel,5,,80,tier2_name,Automatic match via exact name to Sherten Apostel +5122,Shun Yamaguchi,5,,2204,tier2_name,Automatic match via exact name to Shun Yamaguchi +5123,Stephen Piscotty,5,,1563,tier2_name,Automatic match via exact name to Stephen Piscotty +5136,Thairo Estrada,5,,587,tier2_name,Automatic match via exact name to Thairo Estrada +5137,Tim Hill,5,,900,tier2_name,Automatic match via exact name to Tim Hill +5138,Tim Lopes,5,,1142,tier2_name,Automatic match via exact name to Tim Lopes +5139,Tommy Milone,5,,1333,tier2_name,Automatic match via exact name to Tommy Milone +5140,Tommy Pham,5,,1552,tier2_name,Automatic match via exact name to Tommy Pham +5141,Tony Kemp,5,,1027,tier2_name,Automatic match via exact name to Tony Kemp +5142,Tony Wolters,5,,2187,tier2_name,Automatic match via exact name to Tony Wolters +5143,Touki Toussaint,5,,2005,tier2_name,Automatic match via exact name to Touki Toussaint +5144,Travis Demeritte,5,,491,tier2_name,Automatic match via exact name to Travis Demeritte +5145,Travis Jankowski,5,,967,tier2_name,Automatic match via exact name to Travis Jankowski +5146,Trevor Gott,5,,758,tier2_name,Automatic match via exact name to Trevor Gott +5147,Trevor Richards,5,,1646,tier2_name,Automatic match via exact name to Trevor Richards +5148,Trevor Rogers,5,,1693,tier2_name,Automatic match via exact name to Trevor Rogers +5149,Trevor Williams,5,,2156,tier2_name,Automatic match via exact name to Trevor Williams +5150,Ty Buttrey,5,,294,tier2_name,Automatic match via exact name to Ty Buttrey +5151,Tyler Bashlor,5,,144,tier2_name,Automatic match via exact name to Tyler Bashlor +5152,Tyler Chatwood,5,,369,tier2_name,Automatic match via exact name to Tyler Chatwood +5153,Tyler Naquin,5,,1399,tier2_name,Automatic match via exact name to Tyler Naquin +5154,Tzu Wei Lin,5,,1122,tier2_name,Automatic match via exact name to Tzu Wei Lin +5155,Victor Caratini,5,,325,tier2_name,Automatic match via exact name to Victor Caratini +5156,Victor Robles,5,,1666,tier2_name,Automatic match via exact name to Victor Robles +5157,Vimael Machin,5,,1177,tier2_name,Automatic match via exact name to Vimael Machin +5158,Wade LeBlanc,5,,1104,tier2_name,Automatic match via exact name to Wade LeBlanc +5159,Wade Miley,5,,1318,tier2_name,Automatic match via exact name to Wade Miley +5160,Wil Crowe,5,,446,tier2_name,Automatic match via exact name to Wil Crowe +5161,Willians Astudillo,5,,101,tier2_name,Automatic match via exact name to Willians Astudillo +5162,Willie Calhoun,5,,307,tier2_name,Automatic match via exact name to Willie Calhoun +5163,Wilmer Font,5,,634,tier2_name,Automatic match via exact name to Wilmer Font +5164,Yadiel Hernandez,5,,875,tier2_name,Automatic match via exact name to Yadiel Hernandez +5165,Yoan Lopez,5,,1147,tier2_name,Automatic match via exact name to Yoan Lopez +5166,Yoenis Cespedes,5,,360,tier2_name,Automatic match via exact name to Yoenis Cespedes +5167,Yoshihisa Hirano,5,,904,tier2_name,Automatic match via exact name to Yoshihisa Hirano +5168,Yuli Gurriel,5,,793,tier2_name,Automatic match via exact name to Yuli Gurriel +5169,Zac Grotz,5,,780,tier2_name,Automatic match via exact name to Zac Grotz +5170,Zack Burdi,5,,281,tier2_name,Automatic match via exact name to Zack Burdi +5171,Zack Collins,5,,403,tier2_name,Automatic match via exact name to Zack Collins +5172,Zack Godley,5,,727,tier2_name,Automatic match via exact name to Zack Godley +5182,Danny Duffy,6,duffyda01,541,tier1_bbref,Automatic match via bbref_id to Danny Duffy +5183,Robbie Ray,6,rayro02,1620,tier1_bbref,Automatic match via bbref_id to Robbie Ray +5184,Wade Miley,6,mileywa01,1318,tier1_bbref,Automatic match via bbref_id to Wade Miley +5296,Merrill Kelly,6,kellyme01,1020,tier1_bbref,Automatic match via bbref_id to Merrill Kelly +5375,Mike Mayers,6,mayermi01,1251,tier1_bbref,Automatic match via bbref_id to Mike Mayers +5415,Johnny Cueto,6,cuetojo01,451,tier1_bbref,Automatic match via bbref_id to Johnny Cueto +5455,Justin Garza,6,garzaju01,703,tier1_bbref,Automatic match via bbref_id to Justin Garza +5630,Evan Marshall,6,marshev01,1207,tier1_bbref,Automatic match via bbref_id to Evan Marshall +5631,Carlos Martinez,6,martica04,1223,tier1_bbref,Automatic match via bbref_id to Carlos Martinez +5632,Phil Maton,6,matonph01,1238,tier1_bbref,Automatic match via bbref_id to Phil Maton +5802,KeBryan Hayes,6,hayeske01,838,tier1_bbref,Automatic match via bbref_id to KeBryan Hayes +5881,Riley Adams,6,adamsri03,17,tier1_bbref,Automatic match via bbref_id to Riley Adams +5925,Dansby Swanson,6,swansda01,1947,tier1_bbref,Automatic match via bbref_id to Dansby Swanson +5926,Tom Murphy,6,murphto04,1388,tier1_bbref,Automatic match via bbref_id to Tom Murphy +5970,Wil Myers,6,myerswi01,1395,tier1_bbref,Automatic match via bbref_id to Wil Myers +5971,Gary Sanchez,6,sanchga02,1746,tier1_bbref,Automatic match via bbref_id to Gary Sanchez +6017,DJ Peters,6,peterdj01,1545,tier1_bbref,Automatic match via bbref_id to DJ Peters +6018,Brandon Marsh,6,marshbr02,1205,tier1_bbref,Automatic match via bbref_id to Brandon Marsh +6108,Daz Cameron,6,camerda01,310,tier1_bbref,Automatic match via bbref_id to Daz Cameron +6203,Domingo Leyba,6,leybado01,1120,tier1_bbref,Automatic match via bbref_id to Domingo Leyba +5173,Shohei Ohtani,6,ohtansh01,1455,tier1_bbref,Automatic match via bbref_id to Shohei Ohtani +5174,Ranger Suarez,6,suarera01,1936,tier1_bbref,Automatic match via bbref_id to Ranger Suarez +5175,Tejay Antone,6,antonte01,79,tier1_bbref,Automatic match via bbref_id to Tejay Antone +5176,Jacob deGrom,6,degroja01,484,tier1_bbref,Automatic match via bbref_id to Jacob deGrom +5177,Chris Ellis,6,ellisch01,568,tier1_bbref,Automatic match via bbref_id to Chris Ellis +5178,Zack Wheeler,6,wheelza01,2139,tier1_bbref,Automatic match via bbref_id to Zack Wheeler +5179,Carlos Rodon,6,rodonca01,1670,tier1_bbref,Automatic match via bbref_id to Carlos Rodon +5180,Jonathan Loaisiga,6,loaisjo01,1132,tier1_bbref,Automatic match via bbref_id to Jonathan Loaisiga +5181,Lance Lynn,6,lynnla01,1173,tier1_bbref,Automatic match via bbref_id to Lance Lynn +5185,Corbin Burnes,6,burneco01,286,tier1_bbref,Automatic match via bbref_id to Corbin Burnes +5186,Max Scherzer,6,scherma01,1773,tier1_bbref,Automatic match via bbref_id to Max Scherzer +5187,Walker Buehler,6,buehlwa01,277,tier1_bbref,Automatic match via bbref_id to Walker Buehler +5188,Garrett Whitlock,6,whitlga01,2146,tier1_bbref,Automatic match via bbref_id to Garrett Whitlock +5189,Brandon Woodruff,6,woodrbr01,2196,tier1_bbref,Automatic match via bbref_id to Brandon Woodruff +5190,Gerrit Cole,6,colege01,398,tier1_bbref,Automatic match via bbref_id to Gerrit Cole +5191,Nestor Cortes Jr,6,cortene01,421,tier1_bbref,Automatic match via bbref_id to Nestor Cortes Jr +5192,Tyler Gilbert,6,gilbety01,717,tier1_bbref,Automatic match via bbref_id to Tyler Gilbert +5193,Josh Hader,6,haderjo01,802,tier1_bbref,Automatic match via bbref_id to Josh Hader +5194,Tyler Mahle,6,mahlety01,1183,tier1_bbref,Automatic match via bbref_id to Tyler Mahle +5195,Tony Santillan,6,santito01,1766,tier1_bbref,Automatic match via bbref_id to Tony Santillan +5196,Max Fried,6,friedma01,659,tier1_bbref,Automatic match via bbref_id to Max Fried +5197,Freddy Peralta,6,peralfr01,1525,tier1_bbref,Automatic match via bbref_id to Freddy Peralta +5198,Shane Bieber,6,biebesh01,194,tier1_bbref,Automatic match via bbref_id to Shane Bieber +5199,Trevor Bauer,6,bauertr01,150,tier1_bbref,Automatic match via bbref_id to Trevor Bauer +5200,Luis Gil,6,gillu01,716,tier1_bbref,Automatic match via bbref_id to Luis Gil +5201,Pablo Lopez,6,lopezpa01,1146,tier1_bbref,Automatic match via bbref_id to Pablo Lopez +5202,John Means,6,meansjo01,2,tier1_bbref,Automatic match via bbref_id to John Means +5203,Casey Sadler,6,sadleca02,1736,tier1_bbref,Automatic match via bbref_id to Casey Sadler +5204,Kevin Gausman,6,gausmke01,706,tier1_bbref,Automatic match via bbref_id to Kevin Gausman +5205,Art Warren,6,warrear01,2119,tier1_bbref,Automatic match via bbref_id to Art Warren +5206,Spencer Turnbull,6,turnbsp01,2028,tier1_bbref,Automatic match via bbref_id to Spencer Turnbull +5207,Luis Cessa,6,cessalu01,361,tier1_bbref,Automatic match via bbref_id to Luis Cessa +5208,Tyler Glasnow,6,glasnty01,726,tier1_bbref,Automatic match via bbref_id to Tyler Glasnow +5209,Cal Quantrill,6,quantca01,1593,tier1_bbref,Automatic match via bbref_id to Cal Quantrill +5210,Trevor Rogers,6,rogertr01,1693,tier1_bbref,Automatic match via bbref_id to Trevor Rogers +5211,Nathan Eovaldi,6,eovalna01,576,tier1_bbref,Automatic match via bbref_id to Nathan Eovaldi +5212,Aaron Loup,6,loupaa01,1152,tier1_bbref,Automatic match via bbref_id to Aaron Loup +5213,Sonny Gray,6,grayso01,765,tier1_bbref,Automatic match via bbref_id to Sonny Gray +5214,Chris Bassitt,6,bassich01,146,tier1_bbref,Automatic match via bbref_id to Chris Bassitt +5215,Alek Manoah,6,manoaal01,1192,tier1_bbref,Automatic match via bbref_id to Alek Manoah +5216,Luis Castillo,6,castilu02,344,tier1_bbref,Automatic match via bbref_id to Luis Castillo +5217,Logan Webb,6,webblo01,2127,tier1_bbref,Automatic match via bbref_id to Logan Webb +5218,Anthony DeSclafani,6,desclan01,493,tier1_bbref,Automatic match via bbref_id to Anthony DeSclafani +5258,Jordan Romano,6,romanjo03,1699,tier1_bbref,Automatic match via bbref_id to Jordan Romano +5219,Collin McHugh,6,mchugco01,1278,tier1_bbref,Automatic match via bbref_id to Collin McHugh +5220,Patrick Sandoval,6,sandopa02,1754,tier1_bbref,Automatic match via bbref_id to Patrick Sandoval +5221,Lucas Giolito,6,giolilu01,724,tier1_bbref,Automatic match via bbref_id to Lucas Giolito +5222,Chris Sale,6,salech01,1739,tier1_bbref,Automatic match via bbref_id to Chris Sale +5223,Julio Urias,6,uriasju01,2038,tier1_bbref,Automatic match via bbref_id to Julio Urias +5224,Chad Green,6,greench03,768,tier1_bbref,Automatic match via bbref_id to Chad Green +5225,Aaron Sanchez,6,sanchaa01,1745,tier1_bbref,Automatic match via bbref_id to Aaron Sanchez +5226,Ian Anderson,6,anderia01,74,tier1_bbref,Automatic match via bbref_id to Ian Anderson +5227,Michael Fulmer,6,fulmemi01,666,tier1_bbref,Automatic match via bbref_id to Michael Fulmer +5228,Charlie Morton,6,mortoch02,1375,tier1_bbref,Automatic match via bbref_id to Charlie Morton +5229,Juan Minaya,6,minayju01,1334,tier1_bbref,Automatic match via bbref_id to Juan Minaya +5230,Jordan Montgomery,6,montgjo01,1356,tier1_bbref,Automatic match via bbref_id to Jordan Montgomery +5231,Andrew Chafin,6,chafian01,363,tier1_bbref,Automatic match via bbref_id to Andrew Chafin +5232,Wily Peralta,6,peralwi01,1523,tier1_bbref,Automatic match via bbref_id to Wily Peralta +5233,Craig Kimbrel,6,kimbrcr01,1043,tier1_bbref,Automatic match via bbref_id to Craig Kimbrel +5234,Casey Mize,6,mizeca01,1342,tier1_bbref,Automatic match via bbref_id to Casey Mize +5235,Lance McCullers Jr,6,mcculla02,1271,tier1_bbref,Automatic match via bbref_id to Lance McCullers Jr +5236,Carlos Hernandez,6,hernaca04,880,tier1_bbref,Automatic match via bbref_id to Carlos Hernandez +5237,Emmanuel Clase,6,claseem01,385,tier1_bbref,Automatic match via bbref_id to Emmanuel Clase +5238,Raisel Iglesias,6,iglesra01,950,tier1_bbref,Automatic match via bbref_id to Raisel Iglesias +5239,Justin Dunn,6,dunnju01,546,tier1_bbref,Automatic match via bbref_id to Justin Dunn +5240,Scott Barlow,6,barlosc01,128,tier1_bbref,Automatic match via bbref_id to Scott Barlow +5241,Jose Urquidy,6,urquijo01,2041,tier1_bbref,Automatic match via bbref_id to Jose Urquidy +5242,Sandy Alcantara,6,alcansa01,35,tier1_bbref,Automatic match via bbref_id to Sandy Alcantara +5243,Zach Eflin,6,eflinza01,562,tier1_bbref,Automatic match via bbref_id to Zach Eflin +5244,Frankie Montas,6,montafr02,1351,tier1_bbref,Automatic match via bbref_id to Frankie Montas +5245,Kyle Gibson,6,gibsoky01,715,tier1_bbref,Automatic match via bbref_id to Kyle Gibson +5246,Jose Suarez,6,suarejo01,1937,tier1_bbref,Automatic match via bbref_id to Jose Suarez +5247,Joe Musgrove,6,musgrjo01,1394,tier1_bbref,Automatic match via bbref_id to Joe Musgrove +5248,Cole Sulser,6,sulseco01,1942,tier1_bbref,Automatic match via bbref_id to Cole Sulser +5249,Josh Rogers,6,rogerjo01,1690,tier1_bbref,Automatic match via bbref_id to Josh Rogers +5250,Garrett Crochet,6,crochga01,439,tier1_bbref,Automatic match via bbref_id to Garrett Crochet +5251,Chris Flexen,6,flexech01,626,tier1_bbref,Automatic match via bbref_id to Chris Flexen +5252,Kendall Graveman,6,graveke01,764,tier1_bbref,Automatic match via bbref_id to Kendall Graveman +5253,Tanner Houck,6,houckta01,927,tier1_bbref,Automatic match via bbref_id to Tanner Houck +5254,Drew Steckenrider,6,steckdr01,1898,tier1_bbref,Automatic match via bbref_id to Drew Steckenrider +5255,Dillon Peters,6,peterdi01,1544,tier1_bbref,Automatic match via bbref_id to Dillon Peters +5256,Marcus Stroman,6,stromma01,1928,tier1_bbref,Automatic match via bbref_id to Marcus Stroman +5257,Jarlin Garcia,6,garcija04,684,tier1_bbref,Automatic match via bbref_id to Jarlin Garcia +5259,Liam Hendriks,6,hendrli01,857,tier1_bbref,Automatic match via bbref_id to Liam Hendriks +5260,Adrian Sampson,6,sampsad01,1742,tier1_bbref,Automatic match via bbref_id to Adrian Sampson +5261,Luke Jackson,6,jackslu01,960,tier1_bbref,Automatic match via bbref_id to Luke Jackson +5262,Kyle Freeland,6,freelky01,650,tier1_bbref,Automatic match via bbref_id to Kyle Freeland +5263,Framber Valdez,6,valdefr01,2048,tier1_bbref,Automatic match via bbref_id to Framber Valdez +5264,Alex Cobb,6,cobbal01,394,tier1_bbref,Automatic match via bbref_id to Alex Cobb +5265,Sean Manaea,6,manaese01,1189,tier1_bbref,Automatic match via bbref_id to Sean Manaea +5266,Steven Okert,6,okertst01,1456,tier1_bbref,Automatic match via bbref_id to Steven Okert +5267,Eric Lauer,6,lauerer01,1096,tier1_bbref,Automatic match via bbref_id to Eric Lauer +5268,Tony Gonsolin,6,gonsoto01,734,tier1_bbref,Automatic match via bbref_id to Tony Gonsolin +5269,David Bednar,6,bednada01,162,tier1_bbref,Automatic match via bbref_id to David Bednar +5270,Aaron Civale,6,civalaa01,383,tier1_bbref,Automatic match via bbref_id to Aaron Civale +5271,Drew Rasmussen,6,rasmudr01,1618,tier1_bbref,Automatic match via bbref_id to Drew Rasmussen +5272,Dominic Leone,6,leonedo01,1116,tier1_bbref,Automatic match via bbref_id to Dominic Leone +5273,Chasen Shreve,6,shrevch01,1819,tier1_bbref,Automatic match via bbref_id to Chasen Shreve +5274,Zac Gallen,6,galleza01,673,tier1_bbref,Automatic match via bbref_id to Zac Gallen +5275,Kenley Jansen,6,janseke01,968,tier1_bbref,Automatic match via bbref_id to Kenley Jansen +5276,Clayton Kershaw,6,kershcl01,1034,tier1_bbref,Automatic match via bbref_id to Clayton Kershaw +5277,Dylan Cease,6,ceasedy01,355,tier1_bbref,Automatic match via bbref_id to Dylan Cease +5278,Blake Treinen,6,treinbl01,2011,tier1_bbref,Automatic match via bbref_id to Blake Treinen +5279,Jose Berrios,6,berrijo01,182,tier1_bbref,Automatic match via bbref_id to Jose Berrios +5280,Nick Pivetta,6,pivetni01,1564,tier1_bbref,Automatic match via bbref_id to Nick Pivetta +5281,Luis H Garcia,6,garcilu05,3244,manual_new,Manual assignment to new SbaPlayer: Luis H Garcia +5282,Vladimir Gutierrez,6,gutievl01,797,tier1_bbref,Automatic match via bbref_id to Vladimir Gutierrez +5283,Adam Wainwright,6,wainwad01,2099,tier1_bbref,Automatic match via bbref_id to Adam Wainwright +5284,Jesse Chavez,6,chaveje01,370,tier1_bbref,Automatic match via bbref_id to Jesse Chavez +5285,Domingo Tapia,6,tapiado01,1956,tier1_bbref,Automatic match via bbref_id to Domingo Tapia +5286,Lucas Luetge,6,luetglu01,1164,tier1_bbref,Automatic match via bbref_id to Lucas Luetge +5287,TJ McFarland,6,mcfartj01,1273,tier1_bbref,Automatic match via bbref_id to TJ McFarland +5288,Mark Melancon,6,melanma01,1298,tier1_bbref,Automatic match via bbref_id to Mark Melancon +5289,Matthew Boyd,6,boydma01,230,tier1_bbref,Automatic match via bbref_id to Matthew Boyd +5290,Huascar Ynoa,6,ynoahu01,2215,tier1_bbref,Automatic match via bbref_id to Huascar Ynoa +5291,Kyle Muller,6,mulleky01,1380,tier1_bbref,Automatic match via bbref_id to Kyle Muller +5292,Andrew Kittredge,6,kittran01,1057,tier1_bbref,Automatic match via bbref_id to Andrew Kittredge +5293,Tyler Matzek,6,matzety01,1244,tier1_bbref,Automatic match via bbref_id to Tyler Matzek +5294,Richard Rodriguez,6,rodriri05,1674,tier1_bbref,Automatic match via bbref_id to Richard Rodriguez +5295,Jimmy Nelson,6,nelsoji02,1409,tier1_bbref,Automatic match via bbref_id to Jimmy Nelson +5297,Drew Smith,6,smithdr01,1848,tier1_bbref,Automatic match via bbref_id to Drew Smith +5298,Tyler Alexander,6,alexaty01,37,tier1_bbref,Automatic match via bbref_id to Tyler Alexander +5299,Michael Kopech,6,kopecmi01,1071,tier1_bbref,Automatic match via bbref_id to Michael Kopech +5300,Dillon Maples,6,mapledi01,1195,tier1_bbref,Automatic match via bbref_id to Dillon Maples +5301,Ryan Burr,6,burrry01,287,tier1_bbref,Automatic match via bbref_id to Ryan Burr +5302,Jameson Taillon,6,taillja01,1954,tier1_bbref,Automatic match via bbref_id to Jameson Taillon +5303,Ryan Pressly,6,pressry01,1584,tier1_bbref,Automatic match via bbref_id to Ryan Pressly +5304,Devin Williams,6,willide03,2158,tier1_bbref,Automatic match via bbref_id to Devin Williams +5305,Marco Gonzales,6,gonzama02,735,tier1_bbref,Automatic match via bbref_id to Marco Gonzales +5306,Tyler Rogers,6,rogerty01,1691,tier1_bbref,Automatic match via bbref_id to Tyler Rogers +5307,Joe Ryan,6,ryanjo04,1732,tier1_bbref,Automatic match via bbref_id to Joe Ryan +5308,Ryan Tepera,6,teperry01,1974,tier1_bbref,Automatic match via bbref_id to Ryan Tepera +5309,Mychal Givens,6,givenmy01,725,tier1_bbref,Automatic match via bbref_id to Mychal Givens +5310,Jose Alvarez,6,alvarjo02,59,tier1_bbref,Automatic match via bbref_id to Jose Alvarez +5311,Adrian Houser,6,housead01,928,tier1_bbref,Automatic match via bbref_id to Adrian Houser +5312,Joel Payamps,6,payamjo01,1507,tier1_bbref,Automatic match via bbref_id to Joel Payamps +5313,JT Chargois,6,chargjt01,368,tier1_bbref,Automatic match via bbref_id to JT Chargois +5314,Joe Barlow,6,barlojo01,129,tier1_bbref,Automatic match via bbref_id to Joe Barlow +5315,Corey Kluber,6,klubeco01,1060,tier1_bbref,Automatic match via bbref_id to Corey Kluber +5316,Josh Taylor,6,taylojo02,1967,tier1_bbref,Automatic match via bbref_id to Josh Taylor +5317,Corey Knebel,6,knebeco01,1063,tier1_bbref,Automatic match via bbref_id to Corey Knebel +5318,Drew Pomeranz,6,pomerdr01,1572,tier1_bbref,Automatic match via bbref_id to Drew Pomeranz +5319,Connor Brogdon,6,brogdco01,261,tier1_bbref,Automatic match via bbref_id to Connor Brogdon +5320,Cristian Javier,6,javiecr01,971,tier1_bbref,Automatic match via bbref_id to Cristian Javier +5321,Keegan Thompson,6,thompke02,1982,tier1_bbref,Automatic match via bbref_id to Keegan Thompson +5322,Michael Pineda,6,pinedmi01,1560,tier1_bbref,Automatic match via bbref_id to Michael Pineda +5323,German Marquez,6,marquge01,1204,tier1_bbref,Automatic match via bbref_id to German Marquez +5324,Aroldis Chapman,6,chapmar01,366,tier1_bbref,Automatic match via bbref_id to Aroldis Chapman +5325,Caleb Baragar,6,baragca01,124,tier1_bbref,Automatic match via bbref_id to Caleb Baragar +5326,Steven Matz,6,matzst01,1243,tier1_bbref,Automatic match via bbref_id to Steven Matz +5327,Jaime Barria,6,barrija01,141,tier1_bbref,Automatic match via bbref_id to Jaime Barria +5328,Hector Neris,6,nerishe01,1413,tier1_bbref,Automatic match via bbref_id to Hector Neris +5329,Reynaldo Lopez,6,lopezre01,1145,tier1_bbref,Automatic match via bbref_id to Reynaldo Lopez +5330,Aaron Nola,6,nolaaa01,1433,tier1_bbref,Automatic match via bbref_id to Aaron Nola +5331,Will Smith,6,smithwi04,1843,tier1_bbref,Automatic match via bbref_id to Will Smith +5332,Ian Kennedy,6,kenneia01,1029,tier1_bbref,Automatic match via bbref_id to Ian Kennedy +5333,Kodi Whitley,6,whitlko01,2145,tier1_bbref,Automatic match via bbref_id to Kodi Whitley +5334,Tyler Wells,6,wellsty01,2132,tier1_bbref,Automatic match via bbref_id to Tyler Wells +5335,Paul Sewald,6,sewalpa01,1806,tier1_bbref,Automatic match via bbref_id to Paul Sewald +5336,Shane McClanahan,6,mcclash01,1268,tier1_bbref,Automatic match via bbref_id to Shane McClanahan +5337,Adam Cimber,6,cimbead01,380,tier1_bbref,Automatic match via bbref_id to Adam Cimber +5338,Tyler Clippard,6,clippty01,393,tier1_bbref,Automatic match via bbref_id to Tyler Clippard +5339,Eduardo Rodriguez,6,rodried05,1675,tier1_bbref,Automatic match via bbref_id to Eduardo Rodriguez +5340,Zach Thompson,6,thompza01,1981,tier1_bbref,Automatic match via bbref_id to Zach Thompson +5341,Ryan Thompson,6,thompry02,1983,tier1_bbref,Automatic match via bbref_id to Ryan Thompson +5342,Dylan Floro,6,florody01,629,tier1_bbref,Automatic match via bbref_id to Dylan Floro +5343,Ashton Goudeau,6,goudeas01,759,tier1_bbref,Automatic match via bbref_id to Ashton Goudeau +5344,Jake Cousins,6,cousija01,424,tier1_bbref,Automatic match via bbref_id to Jake Cousins +5345,Yacksel Rios,6,riosya01,1650,tier1_bbref,Automatic match via bbref_id to Yacksel Rios +5346,Josh Staumont,6,staumjo01,1897,tier1_bbref,Automatic match via bbref_id to Josh Staumont +5347,Michael King,6,kingmi01,1047,tier1_bbref,Automatic match via bbref_id to Michael King +5348,Alex Wood,6,woodal02,2193,tier1_bbref,Automatic match via bbref_id to Alex Wood +5349,Darwinzon Hernandez,6,hernada02,877,tier1_bbref,Automatic match via bbref_id to Darwinzon Hernandez +5350,Tarik Skubal,6,skubata01,1836,tier1_bbref,Automatic match via bbref_id to Tarik Skubal +5351,Taylor Widener,6,widenta01,2149,tier1_bbref,Automatic match via bbref_id to Taylor Widener +5352,Camilo Doval,6,dovalca01,529,tier1_bbref,Automatic match via bbref_id to Camilo Doval +5353,Noe Ramirez,6,ramirno01,1606,tier1_bbref,Automatic match via bbref_id to Noe Ramirez +5354,Antonio Senzatela,6,senzaan01,1801,tier1_bbref,Automatic match via bbref_id to Antonio Senzatela +5355,Jeff Hoffman,6,hoffmje02,910,tier1_bbref,Automatic match via bbref_id to Jeff Hoffman +5356,Gregory Soto,6,sotogr01,1878,tier1_bbref,Automatic match via bbref_id to Gregory Soto +5357,Matt Barnes,6,barnema01,131,tier1_bbref,Automatic match via bbref_id to Matt Barnes +5358,Chris Stratton,6,stratch01,1922,tier1_bbref,Automatic match via bbref_id to Chris Stratton +5359,Chris Rodriguez,6,rodrich01,1681,tier1_bbref,Automatic match via bbref_id to Chris Rodriguez +5360,Luke Weaver,6,weavelu01,2124,tier1_bbref,Automatic match via bbref_id to Luke Weaver +5361,Giovanny Gallegos,6,gallegi01,672,tier1_bbref,Automatic match via bbref_id to Giovanny Gallegos +5362,Phil Bickford,6,bickfph01,191,tier1_bbref,Automatic match via bbref_id to Phil Bickford +5363,James Kaprielian,6,kaprija01,1008,tier1_bbref,Automatic match via bbref_id to James Kaprielian +5364,Bruce Zimmermann,6,zimmebr02,2231,tier1_bbref,Automatic match via bbref_id to Bruce Zimmermann +5365,Blake Snell,6,snellbl01,1861,tier1_bbref,Automatic match via bbref_id to Blake Snell +5366,Yusei Kikuchi,6,kikucyu01,1040,tier1_bbref,Automatic match via bbref_id to Yusei Kikuchi +5367,Domingo German,6,germado01,713,tier1_bbref,Automatic match via bbref_id to Domingo German +5368,Lucas Gilbreath,6,gilbrlu01,719,tier1_bbref,Automatic match via bbref_id to Lucas Gilbreath +5369,Jon Gray,6,grayjo02,766,tier1_bbref,Automatic match via bbref_id to Jon Gray +5370,Dillon Tate,6,tatedi01,1959,tier1_bbref,Automatic match via bbref_id to Dillon Tate +5371,Richard Bleier,6,bleieri01,212,tier1_bbref,Automatic match via bbref_id to Richard Bleier +5372,Justin Steele,6,steelju01,1899,tier1_bbref,Automatic match via bbref_id to Justin Steele +5373,Blake Parker,6,parkebl01,1499,tier1_bbref,Automatic match via bbref_id to Blake Parker +5374,Jordan Sheffield,6,sheffjo01,1812,tier1_bbref,Automatic match via bbref_id to Jordan Sheffield +5376,Madison Bumgarner,6,bumgama01,278,tier1_bbref,Automatic match via bbref_id to Madison Bumgarner +5377,Hyun Jin Ryu,6,ryuhy01,1733,tier1_bbref,Automatic match via bbref_id to Hyun Jin Ryu +5378,Kris Bubic,6,bubickr01,274,tier1_bbref,Automatic match via bbref_id to Kris Bubic +5379,Anthony Bender,6,bendean01,176,tier1_bbref,Automatic match via bbref_id to Anthony Bender +5380,Trevor Richards,6,richatr01,1646,tier1_bbref,Automatic match via bbref_id to Trevor Richards +5381,Tyler Duffey,6,duffety01,540,tier1_bbref,Automatic match via bbref_id to Tyler Duffey +5382,Elieser Hernandez,6,hernael01,874,tier1_bbref,Automatic match via bbref_id to Elieser Hernandez +5383,Diego Castillo,6,castidi01,345,tier1_bbref,Automatic match via bbref_id to Diego Castillo +5384,Tyler Anderson,6,anderty01,68,tier1_bbref,Automatic match via bbref_id to Tyler Anderson +5385,Caleb Thielbar,6,thielca01,1977,tier1_bbref,Automatic match via bbref_id to Caleb Thielbar +5386,Bailey Ober,6,oberba01,1447,tier1_bbref,Automatic match via bbref_id to Bailey Ober +5387,Clay Holmes,6,holmecl01,919,tier1_bbref,Automatic match via bbref_id to Clay Holmes +5388,Rich Hill,6,hillri01,898,tier1_bbref,Automatic match via bbref_id to Rich Hill +5389,James Karinchak,6,karinja01,1009,tier1_bbref,Automatic match via bbref_id to James Karinchak +5390,Steve Cishek,6,cishest01,381,tier1_bbref,Automatic match via bbref_id to Steve Cishek +5391,Wandy Peralta,6,peralwa01,1524,tier1_bbref,Automatic match via bbref_id to Wandy Peralta +5392,Robert Stephenson,6,stephro01,1904,tier1_bbref,Automatic match via bbref_id to Robert Stephenson +5393,Jhoulys Chacin,6,chacijh01,362,tier1_bbref,Automatic match via bbref_id to Jhoulys Chacin +5394,Pierce Johnson,6,johnspi01,985,tier1_bbref,Automatic match via bbref_id to Pierce Johnson +5395,Yohan Ramirez,6,ramiryo01,1611,tier1_bbref,Automatic match via bbref_id to Yohan Ramirez +5396,Brad Boxberger,6,boxbebr01,229,tier1_bbref,Automatic match via bbref_id to Brad Boxberger +5397,Craig Stammen,6,stammcr01,1891,tier1_bbref,Automatic match via bbref_id to Craig Stammen +5398,Tim Mayza,6,mayzati01,1253,tier1_bbref,Automatic match via bbref_id to Tim Mayza +5399,Jose Ruiz,6,ruizjo01,1724,tier1_bbref,Automatic match via bbref_id to Jose Ruiz +5400,Bryan Shaw,6,shawbr01,1808,tier1_bbref,Automatic match via bbref_id to Bryan Shaw +5401,Jake McGee,6,mcgeeja01,1274,tier1_bbref,Automatic match via bbref_id to Jake McGee +5402,Logan Gilbert,6,gilbelo01,718,tier1_bbref,Automatic match via bbref_id to Logan Gilbert +5403,Lou Trivino,6,trivilo01,2016,tier1_bbref,Automatic match via bbref_id to Lou Trivino +5404,Yu Darvish,6,darviyu01,462,tier1_bbref,Automatic match via bbref_id to Yu Darvish +5405,Zach Plesac,6,plesaza01,1566,tier1_bbref,Automatic match via bbref_id to Zach Plesac +5406,Zack Littell,6,litteza01,1127,tier1_bbref,Automatic match via bbref_id to Zack Littell +5407,Paolo Espino,6,espinpa01,583,tier1_bbref,Automatic match via bbref_id to Paolo Espino +5408,JP Feyereisen,6,feyerjo01,612,tier1_bbref,Automatic match via bbref_id to JP Feyereisen +5409,Edwin Diaz,6,diazed04,503,tier1_bbref,Automatic match via bbref_id to Edwin Diaz +5410,Joe Kelly,6,kellyjo05,1021,tier1_bbref,Automatic match via bbref_id to Joe Kelly +5411,Marcos Diplan,6,diplama01,519,tier1_bbref,Automatic match via bbref_id to Marcos Diplan +5412,Adbert Alzolay,6,alzolad01,63,tier1_bbref,Automatic match via bbref_id to Adbert Alzolay +5413,Ralph Garza,6,garzara01,704,tier1_bbref,Automatic match via bbref_id to Ralph Garza +5414,Ross Stripling,6,stripro01,1927,tier1_bbref,Automatic match via bbref_id to Ross Stripling +5416,Jharel Cotton,6,cottojh01,423,tier1_bbref,Automatic match via bbref_id to Jharel Cotton +5417,Hunter Strickland,6,strichu01,1925,tier1_bbref,Automatic match via bbref_id to Hunter Strickland +5418,Seth Lugo,6,lugose01,1165,tier1_bbref,Automatic match via bbref_id to Seth Lugo +5419,Hirokazu Sawamura,6,sawamhi01,1769,tier1_bbref,Automatic match via bbref_id to Hirokazu Sawamura +5420,Kwang Hyun Kim,6,kimkw01,946,tier1_bbref,Automatic match via bbref_id to Kwang Hyun Kim +5421,Alex Vesia,6,vesiaal01,2072,tier1_bbref,Automatic match via bbref_id to Alex Vesia +5422,Lucas Sims,6,simslu01,1826,tier1_bbref,Automatic match via bbref_id to Lucas Sims +5423,Jack Flaherty,6,flaheja01,622,tier1_bbref,Automatic match via bbref_id to Jack Flaherty +5424,Edgar Santana,6,santaed01,1763,tier1_bbref,Automatic match via bbref_id to Edgar Santana +5425,Kyle Funkhouser,6,funkhky01,668,tier1_bbref,Automatic match via bbref_id to Kyle Funkhouser +5426,Joe Ross,6,rossjo01,1715,tier1_bbref,Automatic match via bbref_id to Joe Ross +5427,Triston McKenzie,6,mckentr01,1282,tier1_bbref,Automatic match via bbref_id to Triston McKenzie +5428,Louis Head,6,headlo01,840,tier1_bbref,Automatic match via bbref_id to Louis Head +5429,Victor Gonzalez,6,gonzavi02,743,tier1_bbref,Automatic match via bbref_id to Victor Gonzalez +5430,Sean Doolittle,6,doolise01,528,tier1_bbref,Automatic match via bbref_id to Sean Doolittle +5431,Cole Irvin,6,irvinco01,954,tier1_bbref,Automatic match via bbref_id to Cole Irvin +5432,Tony Watson,6,watsoto01,2122,tier1_bbref,Automatic match via bbref_id to Tony Watson +5433,Archie Bradley,6,bradlar01,236,tier1_bbref,Automatic match via bbref_id to Archie Bradley +5434,Austin Gomber,6,gombeau01,730,tier1_bbref,Automatic match via bbref_id to Austin Gomber +5435,Daniel Hudson,6,hudsoda01,933,tier1_bbref,Automatic match via bbref_id to Daniel Hudson +5436,Nick Neidert,6,neideni01,1408,tier1_bbref,Automatic match via bbref_id to Nick Neidert +5437,Zack Greinke,6,greinza01,774,tier1_bbref,Automatic match via bbref_id to Zack Greinke +5438,Mike Minor,6,minormi01,1335,tier1_bbref,Automatic match via bbref_id to Mike Minor +5439,Ryne Harper,6,harpery01,824,tier1_bbref,Automatic match via bbref_id to Ryne Harper +5440,Tylor Megill,6,megilty01,1295,tier1_bbref,Automatic match via bbref_id to Tylor Megill +5441,Jake Odorizzi,6,odorija01,1452,tier1_bbref,Automatic match via bbref_id to Jake Odorizzi +5442,Alex Reyes,6,reyesal02,1635,tier1_bbref,Automatic match via bbref_id to Alex Reyes +5443,Humberto Castellanos,6,castehu01,339,tier1_bbref,Automatic match via bbref_id to Humberto Castellanos +5444,Brent Suter,6,suterbr01,1943,tier1_bbref,Automatic match via bbref_id to Brent Suter +5445,Adam Ottavino,6,ottavad01,1475,tier1_bbref,Automatic match via bbref_id to Adam Ottavino +5446,Trevor Stephan,6,stephtr01,1902,tier1_bbref,Automatic match via bbref_id to Trevor Stephan +5447,Drew Smyly,6,smylydr01,1858,tier1_bbref,Automatic match via bbref_id to Drew Smyly +5448,Ervin Santana,6,santaer01,1758,tier1_bbref,Automatic match via bbref_id to Ervin Santana +5449,Caleb Smith,6,smithca03,1845,tier1_bbref,Automatic match via bbref_id to Caleb Smith +5450,Sean Nolin,6,nolinse01,1434,tier1_bbref,Automatic match via bbref_id to Sean Nolin +5451,Nick Sandlin,6,sandlni01,1752,tier1_bbref,Automatic match via bbref_id to Nick Sandlin +5452,Touki Toussaint,6,toussto01,2005,tier1_bbref,Automatic match via bbref_id to Touki Toussaint +5453,Dane Dunning,6,dunnida01,548,tier1_bbref,Automatic match via bbref_id to Dane Dunning +5454,Miguel Diaz,6,diazmi02,504,tier1_bbref,Automatic match via bbref_id to Miguel Diaz +5456,David Price,6,priceda01,1585,tier1_bbref,Automatic match via bbref_id to David Price +5457,Kyle McGowin,6,mcgowky01,1276,tier1_bbref,Automatic match via bbref_id to Kyle McGowin +5458,Yusmeiro Petit,6,petityu01,1549,tier1_bbref,Automatic match via bbref_id to Yusmeiro Petit +5459,Taylor Rogers,6,rogerta01,1689,tier1_bbref,Automatic match via bbref_id to Taylor Rogers +5460,Kyle Hendricks,6,hendrky01,856,tier1_bbref,Automatic match via bbref_id to Kyle Hendricks +5461,Sam Coonrod,6,coonrsa01,414,tier1_bbref,Automatic match via bbref_id to Sam Coonrod +5462,Spencer Patton,6,pattosp01,1505,tier1_bbref,Automatic match via bbref_id to Spencer Patton +5463,Chris Martin,6,martich02,1214,tier1_bbref,Automatic match via bbref_id to Chris Martin +5464,Danny Coulombe,6,couloda01,3246,manual_new,Manual assignment to new SbaPlayer: Danny Coulombe +5465,Luis Garcia,6,garcilu03,3237,manual_new,Manual assignment to new SbaPlayer: Luis Garcia +5466,Tyler Kinley,6,kinlety01,1050,tier1_bbref,Automatic match via bbref_id to Tyler Kinley +5467,Aaron Bummer,6,bummeaa01,279,tier1_bbref,Automatic match via bbref_id to Aaron Bummer +5468,Jordan Holloway,6,hollojo01,917,tier1_bbref,Automatic match via bbref_id to Jordan Holloway +5469,Jake Woodford,6,woodfja01,2195,tier1_bbref,Automatic match via bbref_id to Jake Woodford +5470,Yimi Garcia,6,garciyi01,680,tier1_bbref,Automatic match via bbref_id to Yimi Garcia +5471,Martin Perez,6,perezma02,1535,tier1_bbref,Automatic match via bbref_id to Martin Perez +5472,Miguel Castro,6,castrmi01,350,tier1_bbref,Automatic match via bbref_id to Miguel Castro +5473,Erik Swanson,6,swanser01,1948,tier1_bbref,Automatic match via bbref_id to Erik Swanson +5474,Alex Lange,6,langeal01,1091,tier1_bbref,Automatic match via bbref_id to Alex Lange +5475,Joey Lucchesi,6,lucchjo01,1160,tier1_bbref,Automatic match via bbref_id to Joey Lucchesi +5476,Jake Brentz,6,brentja01,251,tier1_bbref,Automatic match via bbref_id to Jake Brentz +5477,Codi Heuer,6,heuerco01,890,tier1_bbref,Automatic match via bbref_id to Codi Heuer +5478,Kenta Maeda,6,maedake01,1181,tier1_bbref,Automatic match via bbref_id to Kenta Maeda +5479,Ryne Stanek,6,stanery01,1892,tier1_bbref,Automatic match via bbref_id to Ryne Stanek +5480,John Gant,6,gantjo01,677,tier1_bbref,Automatic match via bbref_id to John Gant +5481,Blake Taylor,6,taylobl01,1966,tier1_bbref,Automatic match via bbref_id to Blake Taylor +5482,Dinelson Lamet,6,lametdi01,1090,tier1_bbref,Automatic match via bbref_id to Dinelson Lamet +5483,Matt Peacock,6,peacoma01,1511,tier1_bbref,Automatic match via bbref_id to Matt Peacock +5484,Eli Morgan,6,morgael01,1369,tier1_bbref,Automatic match via bbref_id to Eli Morgan +5485,Jake Diekman,6,diekmja01,514,tier1_bbref,Automatic match via bbref_id to Jake Diekman +5486,Wade LeBlanc,6,leblawa01,1104,tier1_bbref,Automatic match via bbref_id to Wade LeBlanc +5487,Carlos Estevez,6,estevca01,585,tier1_bbref,Automatic match via bbref_id to Carlos Estevez +5488,Trevor Williams,6,willitr01,2156,tier1_bbref,Automatic match via bbref_id to Trevor Williams +5489,Brett Martin,6,martibr01,1218,tier1_bbref,Automatic match via bbref_id to Brett Martin +5490,Trevor May,6,maytr01,1248,tier1_bbref,Automatic match via bbref_id to Trevor May +5491,JT Brubaker,6,brubajt01,269,tier1_bbref,Automatic match via bbref_id to JT Brubaker +5492,Taijuan Walker,6,walketa01,2105,tier1_bbref,Automatic match via bbref_id to Taijuan Walker +5493,Nabil Crismatt,6,crismna01,436,tier1_bbref,Automatic match via bbref_id to Nabil Crismatt +5494,AJ Minter,6,minteaj01,1336,tier1_bbref,Automatic match via bbref_id to AJ Minter +5495,Steven Brault,6,braulst01,243,tier1_bbref,Automatic match via bbref_id to Steven Brault +5496,Andres Machado,6,machaan02,1176,tier1_bbref,Automatic match via bbref_id to Andres Machado +5497,Robert Gsellman,6,gsellro01,782,tier1_bbref,Automatic match via bbref_id to Robert Gsellman +5498,Jose Alvarado,6,alvarjo03,58,tier1_bbref,Automatic match via bbref_id to Jose Alvarado +5499,Bryse Wilson,6,wilsobr02,2171,tier1_bbref,Automatic match via bbref_id to Bryse Wilson +5500,Cody Poteet,6,poteeco01,1579,tier1_bbref,Automatic match via bbref_id to Cody Poteet +5501,Josh Sborz,6,sborzjo01,1770,tier1_bbref,Automatic match via bbref_id to Josh Sborz +5502,Joe Smith,6,smithjo05,1842,tier1_bbref,Automatic match via bbref_id to Joe Smith +5503,Jorge Alcala,6,alcaljo01,32,tier1_bbref,Automatic match via bbref_id to Jorge Alcala +5504,Jakob Junis,6,junisja01,1004,tier1_bbref,Automatic match via bbref_id to Jakob Junis +5505,Jose Cisnero,6,cisnejo01,382,tier1_bbref,Automatic match via bbref_id to Jose Cisnero +5506,Sean Newcomb,6,newcose01,1419,tier1_bbref,Automatic match via bbref_id to Sean Newcomb +5507,Deolis Guerra,6,guerrde01,787,tier1_bbref,Automatic match via bbref_id to Deolis Guerra +5508,Anthony Banda,6,bandaan01,121,tier1_bbref,Automatic match via bbref_id to Anthony Banda +5509,JB Wendelken,6,wendejb01,2134,tier1_bbref,Automatic match via bbref_id to JB Wendelken +5510,Jeffrey Springs,6,sprinje01,1889,tier1_bbref,Automatic match via bbref_id to Jeffrey Springs +5511,Duane Underwood,6,underdu01,2033,tier1_bbref,Automatic match via bbref_id to Duane Underwood +5512,Garrett Richards,6,richaga01,1645,tier1_bbref,Automatic match via bbref_id to Garrett Richards +5513,Albert Abreu,6,abreual01,9,tier1_bbref,Automatic match via bbref_id to Albert Abreu +5514,Kyle Crick,6,crickky01,435,tier1_bbref,Automatic match via bbref_id to Kyle Crick +5515,Jose Quijada,6,quijajo01,1594,tier1_bbref,Automatic match via bbref_id to Jose Quijada +5516,Tayler Saucedo,6,sauceta01,1768,tier1_bbref,Automatic match via bbref_id to Tayler Saucedo +5517,Ross Detwiler,6,detwiro01,497,tier1_bbref,Automatic match via bbref_id to Ross Detwiler +5518,Anthony Misiewicz,6,misiean01,1338,tier1_bbref,Automatic match via bbref_id to Anthony Misiewicz +5519,Derek Holland,6,hollade01,914,tier1_bbref,Automatic match via bbref_id to Derek Holland +5520,Griffin Canning,6,cannigr01,317,tier1_bbref,Automatic match via bbref_id to Griffin Canning +5521,Andrew Heaney,6,heanean01,843,tier1_bbref,Automatic match via bbref_id to Andrew Heaney +5522,Zach Pop,6,popza01,1575,tier1_bbref,Automatic match via bbref_id to Zach Pop +5523,Chad Kuhl,6,kuhlch01,1078,tier1_bbref,Automatic match via bbref_id to Chad Kuhl +5524,John Curtiss,6,curtijo02,455,tier1_bbref,Automatic match via bbref_id to John Curtiss +5525,Genesis Cabrera,6,cabrege01,301,tier1_bbref,Automatic match via bbref_id to Genesis Cabrera +5526,Luis Patino,6,patinlu01,1504,tier1_bbref,Automatic match via bbref_id to Luis Patino +5527,Austin Adams,6,adamsau02,16,tier1_bbref,Automatic match via bbref_id to Austin Adams +5528,Taylor Hearn,6,hearnta01,844,tier1_bbref,Automatic match via bbref_id to Taylor Hearn +5529,Greg Holland,6,hollagr01,915,tier1_bbref,Automatic match via bbref_id to Greg Holland +5530,Brett Anderson,6,anderbr04,66,tier1_bbref,Automatic match via bbref_id to Brett Anderson +5531,Anthony Bass,6,bassan01,145,tier1_bbref,Automatic match via bbref_id to Anthony Bass +5532,Sergio Romo,6,romose01,1705,tier1_bbref,Automatic match via bbref_id to Sergio Romo +5533,Jorge Lopez,6,lopezjo02,1144,tier1_bbref,Automatic match via bbref_id to Jorge Lopez +5534,Brady Singer,6,singebr01,1827,tier1_bbref,Automatic match via bbref_id to Brady Singer +5535,Bryan Abreu,6,abreubr01,8,tier1_bbref,Automatic match via bbref_id to Bryan Abreu +5536,Keegan Akin,6,akinke01,27,tier1_bbref,Automatic match via bbref_id to Keegan Akin +5537,Kolby Allard,6,allarko01,42,tier1_bbref,Automatic match via bbref_id to Kolby Allard +5538,Logan Allen,6,allenlo01,45,tier1_bbref,Automatic match via bbref_id to Logan Allen +5539,Yency Almonte,6,almonye01,50,tier1_bbref,Automatic match via bbref_id to Yency Almonte +5540,Chase Anderson,6,anderch01,67,tier1_bbref,Automatic match via bbref_id to Chase Anderson +5541,Matt Andriese,6,andrima01,76,tier1_bbref,Automatic match via bbref_id to Matt Andriese +5542,Kohei Arihara,6,arihako01,90,tier1_bbref,Automatic match via bbref_id to Kohei Arihara +5543,Shawn Armstrong,6,armstsh01,91,tier1_bbref,Automatic match via bbref_id to Shawn Armstrong +5544,Jake Arrieta,6,arrieja01,94,tier1_bbref,Automatic match via bbref_id to Jake Arrieta +5545,Aaron Ashby,6,ashbyaa01,98,tier1_bbref,Automatic match via bbref_id to Aaron Ashby +5546,Daniel Bard,6,bardda01,125,tier1_bbref,Automatic match via bbref_id to Daniel Bard +5547,Charlie Barnes,6,barnech01,134,tier1_bbref,Automatic match via bbref_id to Charlie Barnes +5548,Jacob Barnes,6,barneja01,133,tier1_bbref,Automatic match via bbref_id to Jacob Barnes +5549,Brandon Bielak,6,bielabr01,195,tier1_bbref,Automatic match via bbref_id to Brandon Bielak +5550,Paul Blackburn,6,blackpa01,204,tier1_bbref,Automatic match via bbref_id to Paul Blackburn +5551,Ben Bowden,6,bowdebe01,227,tier1_bbref,Automatic match via bbref_id to Ben Bowden +5552,Brad Brach,6,brachbr01,232,tier1_bbref,Automatic match via bbref_id to Brad Brach +5553,Rex Brothers,6,brothre01,264,tier1_bbref,Automatic match via bbref_id to Rex Brothers +5554,Dylan Bundy,6,bundydy01,280,tier1_bbref,Automatic match via bbref_id to Dylan Bundy +5555,Edward Cabrera,6,cabreed02,302,tier1_bbref,Automatic match via bbref_id to Edward Cabrera +5556,Trevor Cahill,6,cahiltr01,304,tier1_bbref,Automatic match via bbref_id to Trevor Cahill +5557,Paul Campbell,6,campbpa02,313,tier1_bbref,Automatic match via bbref_id to Paul Campbell +5558,Carlos Carrasco,6,carraca01,331,tier1_bbref,Automatic match via bbref_id to Carlos Carrasco +5559,Anthony Castro,6,castran02,351,tier1_bbref,Automatic match via bbref_id to Anthony Castro +5560,Tyler Chatwood,6,chatwty01,369,tier1_bbref,Automatic match via bbref_id to Tyler Chatwood +5561,Taylor Clarke,6,clarkta01,384,tier1_bbref,Automatic match via bbref_id to Taylor Clarke +5562,Alex Claudio,6,claudal01,387,tier1_bbref,Automatic match via bbref_id to Alex Claudio +5563,Sam Clay,6,claysa01,388,tier1_bbref,Automatic match via bbref_id to Sam Clay +5564,Alex Colome,6,colomal01,404,tier1_bbref,Automatic match via bbref_id to Alex Colome +5565,Patrick Corbin,6,corbipa01,416,tier1_bbref,Automatic match via bbref_id to Patrick Corbin +5566,Wil Crowe,6,crowewi01,446,tier1_bbref,Automatic match via bbref_id to Wil Crowe +5567,Zach Davies,6,davieza02,465,tier1_bbref,Automatic match via bbref_id to Zach Davies +5568,Austin Davis,6,davisau01,471,tier1_bbref,Automatic match via bbref_id to Austin Davis +5569,Wade Davis,6,daviswa01,468,tier1_bbref,Automatic match via bbref_id to Wade Davis +5570,Brett de Geus,6,degeubr01,477,tier1_bbref,Automatic match via bbref_id to Brett de Geus +5571,Chase De Jong,6,dejonch01,478,tier1_bbref,Automatic match via bbref_id to Chase De Jong +5572,Enyel De Los Santos,6,delosen01,482,tier1_bbref,Automatic match via bbref_id to Enyel De Los Santos +5573,Randy Dobnak,6,dobnara01,521,tier1_bbref,Automatic match via bbref_id to Randy Dobnak +5574,Rafael Dolis,6,dolisra01,523,tier1_bbref,Automatic match via bbref_id to Rafael Dolis +5575,Thomas Eshelman,6,eshelto01,3241,manual_new,Manual assignment to new SbaPlayer: Tom Eshelman +5576,Demarcus Evans,6,evansde01,590,tier1_bbref,Automatic match via bbref_id to DeMarcus Evans +5577,Pete Fairbanks,6,fairbpe01,592,tier1_bbref,Automatic match via bbref_id to Pete Fairbanks +5578,Bailey Falter,6,falteba01,594,tier1_bbref,Automatic match via bbref_id to Bailey Falter +5579,Jeurys Familia,6,familje01,595,tier1_bbref,Automatic match via bbref_id to Jeurys Familia +5580,Jake Faria,6,fariaja01,596,tier1_bbref,Automatic match via bbref_id to Jake Faria +5581,Buck Farmer,6,farmebu01,597,tier1_bbref,Automatic match via bbref_id to Buck Farmer +5582,Erick Fedde,6,feddeer01,600,tier1_bbref,Automatic match via bbref_id to Erick Fedde +5583,Kyle Finnegan,6,finneky01,617,tier1_bbref,Automatic match via bbref_id to Kyle Finnegan +5584,Josh Fleming,6,flemijo01,623,tier1_bbref,Automatic match via bbref_id to Josh Fleming +5585,Mike Foltynewicz,6,foltymi01,633,tier1_bbref,Automatic match via bbref_id to Mike Foltynewicz +5586,Matt Foster,6,fostema01,638,tier1_bbref,Automatic match via bbref_id to Matt Foster +5587,Paul Fry,6,frypa01,662,tier1_bbref,Automatic match via bbref_id to Paul Fry +5588,Bryan Garcia,6,garcibr01,685,tier1_bbref,Automatic match via bbref_id to Bryan Garcia +5589,Amir Garrett,6,garream01,698,tier1_bbref,Automatic match via bbref_id to Amir Garrett +5590,Braxton Garrett,6,garrebr01,701,tier1_bbref,Automatic match via bbref_id to Braxton Garrett +5591,Kevin Ginkel,6,ginkeke01,722,tier1_bbref,Automatic match via bbref_id to Kevin Ginkel +5592,Chi Chi Gonzalez,6,gonzach01,737,tier1_bbref,Automatic match via bbref_id to Chi Chi Gonzalez +5593,Brusdar Graterol,6,gratebr01,763,tier1_bbref,Automatic match via bbref_id to Brusdar Graterol +5594,Josiah Gray,6,grayjo03,767,tier1_bbref,Automatic match via bbref_id to Josiah Gray +5595,Junior Guerra,6,guerrju02,785,tier1_bbref,Automatic match via bbref_id to Junior Guerra +5596,David Hale,6,haleda02,805,tier1_bbref,Automatic match via bbref_id to David Hale +5597,Brad Hand,6,handbr01,816,tier1_bbref,Automatic match via bbref_id to Brad Hand +5598,JA Happ,6,happja01,821,tier1_bbref,Automatic match via bbref_id to JA Happ +5599,Matt Harvey,6,harvema01,835,tier1_bbref,Automatic match via bbref_id to Matt Harvey +5600,Ryan Helsley,6,helslry01,853,tier1_bbref,Automatic match via bbref_id to Ryan Helsley +5601,Heath Hembree,6,hembrhe01,854,tier1_bbref,Automatic match via bbref_id to Heath Hembree +5602,Ryan Hendrix,6,hendrry01,858,tier1_bbref,Automatic match via bbref_id to Ryan Hendrix +5603,Sam Hentges,6,hentgsa01,861,tier1_bbref,Automatic match via bbref_id to Sam Hentges +5604,Tim Hill,6,hillti01,900,tier1_bbref,Automatic match via bbref_id to Tim Hill +5605,Spencer Howard,6,howarsp01,930,tier1_bbref,Automatic match via bbref_id to Spencer Howard +5606,Sam Howard,6,howarsa01,929,tier1_bbref,Automatic match via bbref_id to Sam Howard +5607,Griffin Jax,6,jaxgr01,972,tier1_bbref,Automatic match via bbref_id to Griffin Jax +5608,Joe Jimenez,6,jimenjo02,979,tier1_bbref,Automatic match via bbref_id to Joe Jimenez +5609,Anthony Kay,6,kayan01,1012,tier1_bbref,Automatic match via bbref_id to Anthony Kay +5610,Brad Keller,6,kellebr01,1016,tier1_bbref,Automatic match via bbref_id to Brad Keller +5611,Kyle Keller,6,kelleky01,1018,tier1_bbref,Automatic match via bbref_id to Kyle Keller +5612,Mitch Keller,6,kellemi03,1017,tier1_bbref,Automatic match via bbref_id to Mitch Keller +5613,Dallas Keuchel,6,keuchda01,1035,tier1_bbref,Automatic match via bbref_id to Dallas Keuchel +5614,John King,6,kingjo01,1045,tier1_bbref,Automatic match via bbref_id to John King +5615,Brandon Kintzler,6,kintzbr01,1052,tier1_bbref,Automatic match via bbref_id to Brandon Kintzler +5616,Reiss Knehr,6,knehrre01,1064,tier1_bbref,Automatic match via bbref_id to Reiss Knehr +5617,Jackson Kowar,6,kowarja01,1072,tier1_bbref,Automatic match via bbref_id to Jackson Kowar +5618,Max Kranick,6,kranima01,1073,tier1_bbref,Automatic match via bbref_id to Max Kranick +5619,Dean Kremer,6,kremede01,1077,tier1_bbref,Automatic match via bbref_id to Dean Kremer +5620,Travis Lakins,6,lakintr01,1085,tier1_bbref,Automatic match via bbref_id to Travis Lakins +5621,Jon Lester,6,lestejo01,1117,tier1_bbref,Automatic match via bbref_id to Jon Lester +5622,Sammy Long,6,longsa01,1139,tier1_bbref,Automatic match via bbref_id to Sam Long +5623,Michael Lorenzen,6,lorenmi01,1151,tier1_bbref,Automatic match via bbref_id to Michael Lorenzen +5624,Zac Lowther,6,lowthza01,1159,tier1_bbref,Automatic match via bbref_id to Zac Lowther +5625,Jesus Luzardo,6,luzarje01,1170,tier1_bbref,Automatic match via bbref_id to Jesus Luzardo +5626,Jordan Lyles,6,lylesjo01,1171,tier1_bbref,Automatic match via bbref_id to Jordan Lyles +5627,Daniel Lynch,6,lynchda02,1172,tier1_bbref,Automatic match via bbref_id to Daniel Lynch +5628,Matt Manning,6,mannima02,1191,tier1_bbref,Automatic match via bbref_id to Matt Manning +5629,Joe Mantiply,6,mantijo01,1193,tier1_bbref,Automatic match via bbref_id to Joe Mantiply +5633,Chris Mazza,6,mazzach01,1257,tier1_bbref,Automatic match via bbref_id to Chris Mazza +5634,Nick Mears,6,mearsni01,1292,tier1_bbref,Automatic match via bbref_id to Nick Mears +5635,JC Mejia,6,mejiaje02,3247,manual_new,Manual assignment to new SbaPlayer: JC Mejia +5636,Keynan Middleton,6,middlke01,1316,tier1_bbref,Automatic match via bbref_id to Keynan Middleton +5637,Miles Mikolas,6,mikolmi01,1317,tier1_bbref,Automatic match via bbref_id to Miles Mikolas +5638,Andrew Miller,6,millean01,1320,tier1_bbref,Automatic match via bbref_id to Andrew Miller +5639,Alec Mills,6,millsal02,1330,tier1_bbref,Automatic match via bbref_id to Alec Mills +5640,Rafael Montero,6,montera01,1352,tier1_bbref,Automatic match via bbref_id to Rafael Montero +5641,Matt Moore,6,moorema02,1357,tier1_bbref,Automatic match via bbref_id to Matt Moore +5642,Adam Morgan,6,morgaad01,1368,tier1_bbref,Automatic match via bbref_id to Adam Morgan +5643,Patrick Murphy,6,murphpa02,1389,tier1_bbref,Automatic match via bbref_id to Patrick Murphy +5644,Tommy Nance,6,nanceto01,1398,tier1_bbref,Automatic match via bbref_id to Tommy Nance +5645,Daniel Norris,6,norrida01,1439,tier1_bbref,Automatic match via bbref_id to Daniel Norris +5646,Johan Oviedo,6,oviedjo01,1479,tier1_bbref,Automatic match via bbref_id to Johan Oviedo +5647,Chris Paddack,6,paddach01,1483,tier1_bbref,Automatic match via bbref_id to Chris Paddack +5648,Emilio Pagan,6,paganem01,1484,tier1_bbref,Automatic match via bbref_id to Emilio Pagan +5649,David Peterson,6,peterda01,1548,tier1_bbref,Automatic match via bbref_id to David Peterson +5650,Adam Plutko,6,plutkad01,1567,tier1_bbref,Automatic match via bbref_id to Adam Plutko +5651,Daniel Ponce de Leon,6,ponceda01,1574,tier1_bbref,Automatic match via bbref_id to Daniel Ponce de Leon +5652,Cody Ponce,6,ponceco01,1573,tier1_bbref,Automatic match via bbref_id to Cody Ponce +5653,Jose Quintana,6,quintjo01,1596,tier1_bbref,Automatic match via bbref_id to Jose Quintana +5654,Tanner Rainey,6,raineta01,1599,tier1_bbref,Automatic match via bbref_id to Tanner Rainey +5655,Brooks Raley,6,raleybr01,1601,tier1_bbref,Automatic match via bbref_id to Brooks Raley +5656,Erasmo Ramirez,6,ramirer02,1604,tier1_bbref,Automatic match via bbref_id to Erasmo Ramirez +5657,Hansel Robles,6,robleha01,1665,tier1_bbref,Automatic match via bbref_id to Hansel Robles +5658,Joely Rodriguez,6,rodrijo06,1673,tier1_bbref,Automatic match via bbref_id to Joely Rodriguez +5659,Michael Rucker,6,ruckemi01,1721,tier1_bbref,Automatic match via bbref_id to Michael Rucker +5660,Miguel Sanchez,6,sanchmi01,1750,tier1_bbref,Automatic match via bbref_id to Miguel Sanchez +5661,Dennis Santana,6,santade01,1762,tier1_bbref,Automatic match via bbref_id to Dennis Santana +5662,Tanner Scott,6,scottta01,1788,tier1_bbref,Automatic match via bbref_id to Tanner Scott +5663,Justus Sheffield,6,sheffju01,1813,tier1_bbref,Automatic match via bbref_id to Justus Sheffield +5664,Matt Shoemaker,6,shoemma01,1817,tier1_bbref,Automatic match via bbref_id to Matt Shoemaker +5665,Aaron Slegers,6,slegeaa01,1839,tier1_bbref,Automatic match via bbref_id to Aaron Slegers +5666,Burch Smith,6,smithbu03,1844,tier1_bbref,Automatic match via bbref_id to Burch Smith +5667,Riley Smith,6,smithri01,1850,tier1_bbref,Automatic match via bbref_id to Riley Smith +5668,Joakim Soria,6,soriajo01,1872,tier1_bbref,Automatic match via bbref_id to Joakim Soria +5669,Wander Suero,6,suerowa01,1940,tier1_bbref,Automatic match via bbref_id to Wander Suero +5670,Mason Thompson,6,thompma02,1984,tier1_bbref,Automatic match via bbref_id to Mason Thompson +5671,Trent Thornton,6,thorntr01,1988,tier1_bbref,Automatic match via bbref_id to Trent Thornton +5672,Josh Tomlin,6,tomlijo01,1996,tier1_bbref,Automatic match via bbref_id to Josh Tomlin +5673,Jose Urena,6,urenajo01,2035,tier1_bbref,Automatic match via bbref_id to Jose Urena +5674,Cesar Valdez,6,valdece01,2046,tier1_bbref,Automatic match via bbref_id to Cesar Valdez +5675,Phillips Valdez,6,valdeph01,2047,tier1_bbref,Automatic match via bbref_id to Phillips Valdez +5676,Vince Velasquez,6,velasvi01,2065,tier1_bbref,Automatic match via bbref_id to Vince Velasquez +5677,Will Vest,6,vestwi01,2074,tier1_bbref,Automatic match via bbref_id to Will Vest +5678,Austin Voth,6,vothau01,2091,tier1_bbref,Automatic match via bbref_id to Austin Voth +5679,Michael Wacha,6,wachami01,2093,tier1_bbref,Automatic match via bbref_id to Michael Wacha +5680,Andrew Wantz,6,wantzan01,2115,tier1_bbref,Automatic match via bbref_id to Andrew Wantz +5681,Spenser Watkins,6,watkisp01,2121,tier1_bbref,Automatic match via bbref_id to Spenser Watkins +5682,Ryan Weathers,6,weathry01,2123,tier1_bbref,Automatic match via bbref_id to Ryan Weathers +5683,Jacob Webb,6,webbja01,2126,tier1_bbref,Automatic match via bbref_id to Jacob Webb +5684,Alexander Wells,6,wellsal01,2133,tier1_bbref,Automatic match via bbref_id to Alexander Wells +5685,Mitch White,6,whitemi03,2143,tier1_bbref,Automatic match via bbref_id to Mitch White +5686,Rowan Wick,6,wickro01,2147,tier1_bbref,Automatic match via bbref_id to Rowan Wick +5687,Justin Wilson,6,wilsoju10,2167,tier1_bbref,Automatic match via bbref_id to Justin Wilson +5688,Dan Winkler,6,winklda01,2178,tier1_bbref,Automatic match via bbref_id to Dan Winkler +5689,Matt Wisler,6,wislema01,2183,tier1_bbref,Automatic match via bbref_id to Matt Wisler +5690,Nick Wittgren,6,wittgni01,2185,tier1_bbref,Automatic match via bbref_id to Nick Wittgren +5691,Brandon Workman,6,workmbr01,2198,tier1_bbref,Automatic match via bbref_id to Brandon Workman +5692,Hyeon jong Yang,6,yanghy01,2207,tier1_bbref,Automatic match via bbref_id to Hyeon jong Yang +5693,Ryan Yarbrough,6,yarbrry01,2208,tier1_bbref,Automatic match via bbref_id to Ryan Yarbrough +5694,Alex Young,6,youngal01,2217,tier1_bbref,Automatic match via bbref_id to Alex Young +5695,Kyle Zimmer,6,zimmeky01,2228,tier1_bbref,Automatic match via bbref_id to Kyle Zimmer +5696,Tyler Zuber,6,zuberty01,2233,tier1_bbref,Automatic match via bbref_id to Tyler Zuber +5697,Byron Buxton,6,buxtoby01,295,tier1_bbref,Automatic match via bbref_id to Byron Buxton +5698,Mike Trout,6,troutmi01,2019,tier1_bbref,Automatic match via bbref_id to Mike Trout +5699,Luis Robert,6,roberlu01,1660,tier1_bbref,Automatic match via bbref_id to Luis Robert +5700,Fernando Tatis Jr,6,tatisfe02,1960,tier1_bbref,Automatic match via bbref_id to Fernando Tatis Jr +5701,Tyler ONeill,6,oneilty01,1463,tier1_bbref,Automatic match via bbref_id to Tyler ONeill +5702,Adam Engel,6,engelad01,574,tier1_bbref,Automatic match via bbref_id to Adam Engel +5703,Wander Franco,6,francwa01,646,tier1_bbref,Automatic match via bbref_id to Wander Franco +5704,Carlos Correa,6,correca01,420,tier1_bbref,Automatic match via bbref_id to Carlos Correa +5705,Brandon Crawford,6,crawfbr01,430,tier1_bbref,Automatic match via bbref_id to Brandon Crawford +5706,Juan Soto,6,sotoju01,1879,tier1_bbref,Automatic match via bbref_id to Juan Soto +5707,Jose Ramirez,6,ramirjo01,1608,tier1_bbref,Automatic match via bbref_id to Jose Ramirez +5708,Santiago Espinal,6,espinsa01,582,tier1_bbref,Automatic match via bbref_id to Santiago Espinal +5709,Mike Zunino,6,zuninmi01,2234,tier1_bbref,Automatic match via bbref_id to Mike Zunino +5710,Marcus Semien,6,semiema01,1799,tier1_bbref,Automatic match via bbref_id to Marcus Semien +5711,Trea Turner,6,turnetr01,1,tier1_bbref,Automatic match via bbref_id to Trea Turner +5712,Kyle Tucker,6,tuckeky01,2023,tier1_bbref,Automatic match via bbref_id to Kyle Tucker +5713,Ronald Acuna Jr,6,acunaro01,12,tier1_bbref,Automatic match via bbref_id to Ronald Acuna Jr +5714,Bryce Harper,6,harpebr03,823,tier1_bbref,Automatic match via bbref_id to Bryce Harper +5715,Yasmani Grandal,6,grandya01,761,tier1_bbref,Automatic match via bbref_id to Yasmani Grandal +5716,Edmundo Sosa,6,sosaed01,1876,tier1_bbref,Automatic match via bbref_id to Edmundo Sosa +5717,Vladimir Guerrero Jr,6,guerrvl02,789,tier1_bbref,Automatic match via bbref_id to Vladimir Guerrero Jr +5718,Harrison Bader,6,baderha01,110,tier1_bbref,Automatic match via bbref_id to Harrison Bader +5719,Aaron Judge,6,judgeaa01,3,tier1_bbref,Automatic match via bbref_id to Aaron Judge +5720,Jake Rogers,6,rogerja03,1692,tier1_bbref,Automatic match via bbref_id to Jake Rogers +5721,Brandon Nimmo,6,nimmobr01,1425,tier1_bbref,Automatic match via bbref_id to Brandon Nimmo +5722,Bryan Reynolds,6,reynobr01,1641,tier1_bbref,Automatic match via bbref_id to Bryan Reynolds +5723,Darin Ruf,6,rufda01,1722,tier1_bbref,Automatic match via bbref_id to Darin Ruf +5724,Austin Riley,6,rileyau01,1649,tier1_bbref,Automatic match via bbref_id to Austin Riley +5725,Corey Seager,6,seageco01,1794,tier1_bbref,Automatic match via bbref_id to Corey Seager +5726,Paul Goldschmidt,6,goldspa01,729,tier1_bbref,Automatic match via bbref_id to Paul Goldschmidt +5727,Starling Marte,6,martest01,1208,tier1_bbref,Automatic match via bbref_id to Starling Marte +5728,Tim Anderson,6,anderti01,73,tier1_bbref,Automatic match via bbref_id to Tim Anderson +5729,Kevin Kiermaier,6,kiermke01,1039,tier1_bbref,Automatic match via bbref_id to Kevin Kiermaier +5730,Matt Olson,6,olsonma02,1461,tier1_bbref,Automatic match via bbref_id to Matt Olson +5731,Mitch Garver,6,garvemi01,702,tier1_bbref,Automatic match via bbref_id to Mitch Garver +5732,Tony Kemp,6,kempto01,1027,tier1_bbref,Automatic match via bbref_id to Tony Kemp +5733,Bo Bichette,6,bichebo01,190,tier1_bbref,Automatic match via bbref_id to Bo Bichette +5734,Taylor Walls,6,wallsta01,2110,tier1_bbref,Automatic match via bbref_id to Taylor Walls +5735,Willson Contreras,6,contrwi01,410,tier1_bbref,Automatic match via bbref_id to Willson Contreras +5736,Cedric Mullins,6,mullice01,1381,tier1_bbref,Automatic match via bbref_id to Cedric Mullins +5737,Enrique Hernandez,6,hernaen02,871,tier1_bbref,Automatic match via bbref_id to Enrique Hernandez +5738,Max Muncy,6,muncyma01,1382,tier1_bbref,Automatic match via bbref_id to Max Muncy +5739,Christian Arroyo,6,arroych01,96,tier1_bbref,Automatic match via bbref_id to Christian Arroyo +5740,Javier Baez,6,baezja01,112,tier1_bbref,Automatic match via bbref_id to Javier Baez +5741,Brett Phillips,6,phillbr02,1555,tier1_bbref,Automatic match via bbref_id to Brett Phillips +5742,Xander Bogaerts,6,bogaexa01,216,tier1_bbref,Automatic match via bbref_id to Xander Bogaerts +5743,Salvador Perez,6,perezsa02,1534,tier1_bbref,Automatic match via bbref_id to Salvador Perez +5744,Manny Machado,6,machama01,1175,tier1_bbref,Automatic match via bbref_id to Manny Machado +5745,Buster Posey,6,poseybu01,1578,tier1_bbref,Automatic match via bbref_id to Buster Posey +5746,Lorenzo Cain,6,cainlo01,305,tier1_bbref,Automatic match via bbref_id to Lorenzo Cain +5747,Mookie Betts,6,bettsmo01,187,tier1_bbref,Automatic match via bbref_id to Mookie Betts +5748,Brandon Lowe,6,lowebr01,1156,tier1_bbref,Automatic match via bbref_id to Brandon Lowe +5749,Joey Gallo,6,gallojo01,674,tier1_bbref,Automatic match via bbref_id to Joey Gallo +5750,Jorge Polanco,6,polanjo01,1570,tier1_bbref,Automatic match via bbref_id to Jorge Polanco +5751,Nicky Lopez,6,lopezni01,1149,tier1_bbref,Automatic match via bbref_id to Nicky Lopez +5752,Connor Joe,6,joeco01,983,tier1_bbref,Automatic match via bbref_id to Connor Joe +5753,Willy Adames,6,adamewi01,14,tier1_bbref,Automatic match via bbref_id to Willy Adames +5754,Joey Wendle,6,wendljo01,2135,tier1_bbref,Automatic match via bbref_id to Joey Wendle +5755,Jake Cronenworth,6,croneja01,442,tier1_bbref,Automatic match via bbref_id to Jake Cronenworth +5756,Steven Duggar,6,duggast01,543,tier1_bbref,Automatic match via bbref_id to Steven Duggar +5757,Jake Meyers,6,meyerja02,1315,tier1_bbref,Automatic match via bbref_id to Jake Meyers +5758,Dustin Garneau,6,garnedu01,697,tier1_bbref,Automatic match via bbref_id to Dustin Garneau +5759,AJ Pollock,6,polloaj01,1571,tier1_bbref,Automatic match via bbref_id to AJ Pollock +5760,Chas McCormick,6,mccorch01,1269,tier1_bbref,Automatic match via bbref_id to Chas McCormick +5882,Hunter Renfroe,6,renfrhu01,1631,tier1_bbref,Automatic match via bbref_id to Hunter Renfroe +5761,Brandon Belt,6,beltbr01,173,tier1_bbref,Automatic match via bbref_id to Brandon Belt +5762,Luis Arraez,6,arraelu01,93,tier1_bbref,Automatic match via bbref_id to Luis Arraez +5763,Trevor Story,6,storytr01,1914,tier1_bbref,Automatic match via bbref_id to Trevor Story +5764,Ha Seong Kim,6,kimha01,1042,tier1_bbref,Automatic match via bbref_id to Ha Seong Kim +5765,Nico Hoerner,6,hoernni01,909,tier1_bbref,Automatic match via bbref_id to Nico Hoerner +5766,George Springer,6,springe01,1888,tier1_bbref,Automatic match via bbref_id to George Springer +5767,Jacob Stallings,6,stallja01,1890,tier1_bbref,Automatic match via bbref_id to Jacob Stallings +5768,Will D Smith,6,smithwi05,1841,tier1_bbref,Automatic match via bbref_id to Will Smith +5769,Ramon Laureano,6,laurera01,1097,tier1_bbref,Automatic match via bbref_id to Ramon Laureano +5770,Pablo Reyes,6,reyespa01,1637,tier1_bbref,Automatic match via bbref_id to Pablo Reyes +5771,Randy Arozarena,6,arozara01,92,tier1_bbref,Automatic match via bbref_id to Randy Arozarena +5772,Kyle Schwarber,6,schwaky01,1784,tier1_bbref,Automatic match via bbref_id to Kyle Schwarber +5773,Freddie Freeman,6,freemfr01,652,tier1_bbref,Automatic match via bbref_id to Freddie Freeman +5774,Kolten Wong,6,wongko01,2188,tier1_bbref,Automatic match via bbref_id to Kolten Wong +5775,Ryan McMahon,6,mcmahry01,1286,tier1_bbref,Automatic match via bbref_id to Ryan McMahon +5776,Yan Gomes,6,gomesya01,731,tier1_bbref,Automatic match via bbref_id to Yan Gomes +5777,Andy Ibanez,6,ibanean01,948,tier1_bbref,Automatic match via bbref_id to Andy Ibanez +5778,Ty France,6,francty01,642,tier1_bbref,Automatic match via bbref_id to Ty France +5779,Pete Alonso,6,alonspe01,53,tier1_bbref,Automatic match via bbref_id to Pete Alonso +5780,Frank Schwindel,6,schwifr01,1786,tier1_bbref,Automatic match via bbref_id to Frank Schwindel +5781,Joey Votto,6,vottojo01,2092,tier1_bbref,Automatic match via bbref_id to Joey Votto +5782,Teoscar Hernandez,6,hernate01,873,tier1_bbref,Automatic match via bbref_id to Teoscar Hernandez +5783,Jean Segura,6,segurje01,1796,tier1_bbref,Automatic match via bbref_id to Jean Segura +5784,JT Realmuto,6,realmjt01,1622,tier1_bbref,Automatic match via bbref_id to JT Realmuto +5785,Jose Altuve,6,altuvjo01,56,tier1_bbref,Automatic match via bbref_id to Jose Altuve +5786,Yoan Moncada,6,moncayo01,1348,tier1_bbref,Automatic match via bbref_id to Yoan Moncada +5787,Ramon Urias,6,uriasra01,2037,tier1_bbref,Automatic match via bbref_id to Ramon Urias +5788,Danny Jansen,6,janseda01,969,tier1_bbref,Automatic match via bbref_id to Danny Jansen +5789,Alex Avila,6,avilaal01,104,tier1_bbref,Automatic match via bbref_id to Alex Avila +5790,Nolan Arenado,6,arenano01,88,tier1_bbref,Automatic match via bbref_id to Nolan Arenado +5791,Adam Frazier,6,fraziad01,648,tier1_bbref,Automatic match via bbref_id to Adam Frazier +5792,Trent Grisham,6,grishtr01,776,tier1_bbref,Automatic match via bbref_id to Trent Grisham +5793,Manny Pina,6,pinama01,1558,tier1_bbref,Automatic match via bbref_id to Manny Pina +5794,Lewin Diaz,6,diazle01,506,tier1_bbref,Automatic match via bbref_id to Lewin Diaz +5795,CJ Cron,6,croncj01,441,tier1_bbref,Automatic match via bbref_id to CJ Cron +5796,Evan Longoria,6,longoev01,1140,tier1_bbref,Automatic match via bbref_id to Evan Longoria +5797,Jonathan India,6,indiajo01,953,tier1_bbref,Automatic match via bbref_id to Jonathan India +5798,Jose Siri,6,sirijo01,1830,tier1_bbref,Automatic match via bbref_id to Jose Siri +5799,Yuli Gurriel,6,gourryu01,793,tier1_bbref,Automatic match via bbref_id to Yuli Gurriel +5800,Adolis Garcia,6,garciad02,690,tier1_bbref,Automatic match via bbref_id to Adolis Garcia +5801,Jeimer Candelario,6,candeje01,315,tier1_bbref,Automatic match via bbref_id to Jeimer Candelario +5803,Justin Turner,6,turneju01,2029,tier1_bbref,Automatic match via bbref_id to Justin Turner +5804,Rafael Ortega,6,ortegra01,1465,tier1_bbref,Automatic match via bbref_id to Rafael Ortega +5805,Kyle Isbel,6,isbelky01,956,tier1_bbref,Automatic match via bbref_id to Kyle Isbel +5806,Manuel Margot,6,margoma01,1198,tier1_bbref,Automatic match via bbref_id to Manuel Margot +5807,Sean Murphy,6,murphse01,1390,tier1_bbref,Automatic match via bbref_id to Sean Murphy +5808,Jake Fraley,6,fraleja01,641,tier1_bbref,Automatic match via bbref_id to Jake Fraley +5809,Elias Diaz,6,diazel01,502,tier1_bbref,Automatic match via bbref_id to Elias Diaz +5810,Tyrone Taylor,6,tayloty01,1965,tier1_bbref,Automatic match via bbref_id to Tyrone Taylor +5811,Francisco Lindor,6,lindofr01,1124,tier1_bbref,Automatic match via bbref_id to Francisco Lindor +5812,Mike Brosseau,6,brossmi01,263,tier1_bbref,Automatic match via bbref_id to Mike Brosseau +5813,Josh Donaldson,6,donaljo02,526,tier1_bbref,Automatic match via bbref_id to Josh Donaldson +5814,Carson Kelly,6,kellyca02,1023,tier1_bbref,Automatic match via bbref_id to Carson Kelly +5815,Austin Hays,6,haysau01,839,tier1_bbref,Automatic match via bbref_id to Austin Hays +5816,Patrick Wisdom,6,wisdopa01,2181,tier1_bbref,Automatic match via bbref_id to Patrick Wisdom +5817,Francisco Mejia,6,mejiafr01,3239,manual_new,Manual assignment to new SbaPlayer: Francisco Mejia +5818,Lars Nootbaar,6,nootbla01,1436,tier1_bbref,Automatic match via bbref_id to Lars Nootbaar +5819,Kris Bryant,6,bryankr01,273,tier1_bbref,Automatic match via bbref_id to Kris Bryant +5820,Avisail Garcia,6,garciav01,678,tier1_bbref,Automatic match via bbref_id to Avisail Garcia +5821,Matt Chapman,6,chapmma01,367,tier1_bbref,Automatic match via bbref_id to Matt Chapman +5822,Max Stassi,6,stassma01,1896,tier1_bbref,Automatic match via bbref_id to Max Stassi +5823,Jason Castro,6,castrja01,347,tier1_bbref,Automatic match via bbref_id to Jason Castro +5824,Nick Madrigal,6,madrini01,1178,tier1_bbref,Automatic match via bbref_id to Nick Madrigal +5825,Adam Duvall,6,duvalad01,553,tier1_bbref,Automatic match via bbref_id to Adam Duvall +5826,Jesse Winker,6,winkeje01,2177,tier1_bbref,Automatic match via bbref_id to Jesse Winker +5827,JP Crawford,6,crawfjp01,432,tier1_bbref,Automatic match via bbref_id to JP Crawford +5828,Nicholas Castellanos,6,casteni01,340,tier1_bbref,Automatic match via bbref_id to Nicholas Castellanos +5829,Josh Bell,6,belljo02,168,tier1_bbref,Automatic match via bbref_id to Josh Bell +5830,Isiah Kiner Falefa,6,kineris01,1044,tier1_bbref,Automatic match via bbref_id to Isiah Kiner Falefa +5831,Luis Urias,6,uriaslu01,2039,tier1_bbref,Automatic match via bbref_id to Luis Urias +5832,Yonny Hernandez,6,hernayo02,878,tier1_bbref,Automatic match via bbref_id to Yonny Hernandez +5833,Daulton Varsho,6,varshda01,2058,tier1_bbref,Automatic match via bbref_id to Daulton Varsho +5834,Tommy Edman,6,edmanto01,558,tier1_bbref,Automatic match via bbref_id to Tommy Edman +5835,Giancarlo Stanton,6,stantmi03,1893,tier1_bbref,Automatic match via bbref_id to Giancarlo Stanton +5836,Thairo Estrada,6,estrath01,587,tier1_bbref,Automatic match via bbref_id to Thairo Estrada +5837,Rafael Devers,6,deverra01,499,tier1_bbref,Automatic match via bbref_id to Rafael Devers +5838,Alex Bregman,6,bregmal01,248,tier1_bbref,Automatic match via bbref_id to Alex Bregman +5839,Keibert Ruiz,6,ruizke01,1725,tier1_bbref,Automatic match via bbref_id to Keibert Ruiz +5840,Jesus Sanchez,6,sanchje02,1749,tier1_bbref,Automatic match via bbref_id to Jesus Sanchez +5841,Dylan Carlson,6,carlsdy01,327,tier1_bbref,Automatic match via bbref_id to Dylan Carlson +5883,Cam Gallagher,6,gallaca01,670,tier1_bbref,Automatic match via bbref_id to Cam Gallagher +5842,Yordan Alvarez,6,alvaryo01,61,tier1_bbref,Automatic match via bbref_id to Yordan Alvarez +5843,Aledmys Diaz,6,diazal02,505,tier1_bbref,Automatic match via bbref_id to Aledmys Diaz +5844,Myles Straw,6,strawmy01,1924,tier1_bbref,Automatic match via bbref_id to Myles Straw +5845,Eric Haase,6,haaseer01,801,tier1_bbref,Automatic match via bbref_id to Eric Haase +5846,Whit Merrifield,6,merriwh01,1309,tier1_bbref,Automatic match via bbref_id to Whit Merrifield +5847,Lourdes Gurriel Jr,6,gurrilo01,794,tier1_bbref,Automatic match via bbref_id to Lourdes Gurriel Jr +5848,Matt Duffy,6,duffyma01,542,tier1_bbref,Automatic match via bbref_id to Matt Duffy +5849,Ozzie Albies,6,albieoz01,31,tier1_bbref,Automatic match via bbref_id to Ozzie Albies +5850,Jazz Chisholm,6,chishja01,375,tier1_bbref,Automatic match via bbref_id to Jazz Chisholm +5851,Michael Brantley,6,brantmi02,240,tier1_bbref,Automatic match via bbref_id to Michael Brantley +5852,Brian Anderson,6,anderbr06,69,tier1_bbref,Automatic match via bbref_id to Brian Anderson +5853,Miguel Rojas,6,rojasmi02,1694,tier1_bbref,Automatic match via bbref_id to Miguel Rojas +5854,Ketel Marte,6,marteke01,1210,tier1_bbref,Automatic match via bbref_id to Ketel Marte +5855,Jared Walsh,6,walshja01,2111,tier1_bbref,Automatic match via bbref_id to Jared Walsh +5856,Alejandro Kirk,6,kirkal01,1056,tier1_bbref,Automatic match via bbref_id to Alejandro Kirk +5857,JD Martinez,6,martijd02,1229,tier1_bbref,Automatic match via bbref_id to JD Martinez +5858,Michael A Taylor,6,taylomi02,1963,tier1_bbref,Automatic match via bbref_id to Michael Taylor +5859,Tyler Stephenson,6,stephty01,1905,tier1_bbref,Automatic match via bbref_id to Tyler Stephenson +5860,Tres Barrera,6,barretr01,137,tier1_bbref,Automatic match via bbref_id to Tres Barrera +5861,Mike Yastrzemski,6,yastrmi01,2210,tier1_bbref,Automatic match via bbref_id to Mike Yastrzemski +5862,Austin Nola,6,nolaau01,1432,tier1_bbref,Automatic match via bbref_id to Austin Nola +5863,Bryan De La Cruz,6,delacbr01,479,tier1_bbref,Automatic match via bbref_id to Bryan De La Cruz +5864,Austin Slater,6,slateau01,1838,tier1_bbref,Automatic match via bbref_id to Austin Slater +5865,Alcides Escobar,6,escobal02,580,tier1_bbref,Automatic match via bbref_id to Alcides Escobar +5866,Seth Brown,6,brownse01,265,tier1_bbref,Automatic match via bbref_id to Seth Brown +5867,Jose Abreu,6,abreujo02,7,tier1_bbref,Automatic match via bbref_id to Jose Abreu +5868,Akil Baddoo,6,baddoak01,109,tier1_bbref,Automatic match via bbref_id to Akil Baddoo +5869,Rhys Hoskins,6,hoskirh01,925,tier1_bbref,Automatic match via bbref_id to Rhys Hoskins +5870,Mitch Haniger,6,hanigmi01,818,tier1_bbref,Automatic match via bbref_id to Mitch Haniger +5871,Andrew Benintendi,6,beninan01,177,tier1_bbref,Automatic match via bbref_id to Andrew Benintendi +5872,Chris Taylor,6,tayloch03,1964,tier1_bbref,Automatic match via bbref_id to Chris Taylor +5873,Leury Garcia,6,garcile02,679,tier1_bbref,Automatic match via bbref_id to Leury Garcia +5874,Ryan Zimmerman,6,zimmery01,2229,tier1_bbref,Automatic match via bbref_id to Ryan Zimmerman +5875,Garrett Cooper,6,coopega03,415,tier1_bbref,Automatic match via bbref_id to Garrett Cooper +5876,Robbie Grossman,6,grossro01,779,tier1_bbref,Automatic match via bbref_id to Robbie Grossman +5877,Nelson Cruz,6,cruzne02,447,tier1_bbref,Automatic match via bbref_id to Nelson Cruz +5878,Max Kepler,6,keplema01,1031,tier1_bbref,Automatic match via bbref_id to Max Kepler +5879,Abraham Toro,6,toroab01,2001,tier1_bbref,Automatic match via bbref_id to Abraham Toro +5880,Gavin Lux,6,luxga01,1169,tier1_bbref,Automatic match via bbref_id to Gavin Lux +5884,Eduardo Escobar,6,escobed01,581,tier1_bbref,Automatic match via bbref_id to Eduardo Escobar +5885,Mark Canha,6,canhama01,316,tier1_bbref,Automatic match via bbref_id to Mark Canha +5886,Paul DeJong,6,dejonpa01,485,tier1_bbref,Automatic match via bbref_id to Paul DeJong +5887,Matt Vierling,6,vierlma01,2077,tier1_bbref,Automatic match via bbref_id to Matt Vierling +5888,Wilmer Flores,6,florewi01,627,tier1_bbref,Automatic match via bbref_id to Wilmer Flores +5889,Lane Thomas,6,thomala02,1978,tier1_bbref,Automatic match via bbref_id to Lane Thomas +5890,Yadier Molina,6,molinya01,1344,tier1_bbref,Automatic match via bbref_id to Yadier Molina +5891,JD Davis,6,davisjd01,474,tier1_bbref,Automatic match via bbref_id to JD Davis +5892,Andres Gimenez,6,gimenan01,721,tier1_bbref,Automatic match via bbref_id to Andres Gimenez +5893,Josh Harrison,6,harrijo05,829,tier1_bbref,Automatic match via bbref_id to Josh Harrison +5894,Oscar Mercado,6,mercaos01,1306,tier1_bbref,Automatic match via bbref_id to Oscar Mercado +5895,Nathaniel Lowe,6,lowena01,1155,tier1_bbref,Automatic match via bbref_id to Nathaniel Lowe +5896,Charlie Culberson,6,culbech01,453,tier1_bbref,Automatic match via bbref_id to Charlie Culberson +5897,Odubel Herrera,6,herreod01,882,tier1_bbref,Automatic match via bbref_id to Odubel Herrera +5898,Alex Verdugo,6,verdual01,2069,tier1_bbref,Automatic match via bbref_id to Alex Verdugo +5899,Bradley Zimmer,6,zimmebr01,2227,tier1_bbref,Automatic match via bbref_id to Bradley Zimmer +5900,Franmil Reyes,6,reyesfr01,1634,tier1_bbref,Automatic match via bbref_id to Franmil Reyes +5901,Kyle Lewis,6,lewisky01,1118,tier1_bbref,Automatic match via bbref_id to Kyle Lewis +5902,Brendan Rodgers,6,rodgebr02,1668,tier1_bbref,Automatic match via bbref_id to Brendan Rodgers +5903,Jonathan Villar,6,villajo01,2079,tier1_bbref,Automatic match via bbref_id to Jonathan Villar +5904,Austin Meadows,6,meadoau01,1290,tier1_bbref,Automatic match via bbref_id to Austin Meadows +5905,Omar Narvaez,6,narvaom01,1401,tier1_bbref,Automatic match via bbref_id to Omar Narvaez +5906,Andrelton Simmons,6,simmoan01,1825,tier1_bbref,Automatic match via bbref_id to Andrelton Simmons +5907,Jeff McNeil,6,mcneije01,1287,tier1_bbref,Automatic match via bbref_id to Jeff McNeil +5908,Amed Rosario,6,rosaram01,1711,tier1_bbref,Automatic match via bbref_id to Amed Rosario +5909,Donovan Solano,6,solando01,1868,tier1_bbref,Automatic match via bbref_id to Donovan Solano +5910,Starlin Castro,6,castrst01,348,tier1_bbref,Automatic match via bbref_id to Starlin Castro +5911,LaMonte Wade Jr,6,wadela01,2095,tier1_bbref,Automatic match via bbref_id to LaMonte Wade Jr +5912,Jordan Luplow,6,luplojo01,1168,tier1_bbref,Automatic match via bbref_id to Jordan Luplow +5913,Freddy Galvis,6,galvifr01,675,tier1_bbref,Automatic match via bbref_id to Freddy Galvis +5914,Emmanuel Rivera,6,riverem01,1657,tier1_bbref,Automatic match via bbref_id to Emmanuel Rivera +5915,Eloy Jimenez,6,jimenel02,980,tier1_bbref,Automatic match via bbref_id to Eloy Jimenez +5916,Curt Casali,6,casalcu01,334,tier1_bbref,Automatic match via bbref_id to Curt Casali +5917,Ian Happ,6,happia01,820,tier1_bbref,Automatic match via bbref_id to Ian Happ +5918,Jonathan Schoop,6,schoojo01,1779,tier1_bbref,Automatic match via bbref_id to Jonathan Schoop +5919,Billy Hamilton,6,hamilbi02,810,tier1_bbref,Automatic match via bbref_id to Billy Hamilton +5920,Yandy Diaz,6,diazya01,507,tier1_bbref,Automatic match via bbref_id to Yandy Diaz +5921,Kyle Seager,6,seageky01,1793,tier1_bbref,Automatic match via bbref_id to Kyle Seager +5922,Adalberto Mondesi,6,mondera02,1349,tier1_bbref,Automatic match via bbref_id to Adalberto Mondesi +5923,Anthony Rizzo,6,rizzoan01,1658,tier1_bbref,Automatic match via bbref_id to Anthony Rizzo +5924,Ji Man Choi,6,choiji01,377,tier1_bbref,Automatic match via bbref_id to Ji Man Choi +5927,Jesus Aguilar,6,aguilje01,25,tier1_bbref,Automatic match via bbref_id to Jesus Aguilar +5928,David Fletcher,6,fletcda02,624,tier1_bbref,Automatic match via bbref_id to David Fletcher +5929,Anthony Alford,6,alforan01,41,tier1_bbref,Automatic match via bbref_id to Anthony Alford +5930,Luis Torrens,6,torrelu01,2002,tier1_bbref,Automatic match via bbref_id to Luis Torrens +5931,Eddie Rosario,6,rosared01,1710,tier1_bbref,Automatic match via bbref_id to Eddie Rosario +5932,Alex Kirilloff,6,kirilal01,1055,tier1_bbref,Automatic match via bbref_id to Alex Kirilloff +5933,Webster Rivas,6,rivaswe01,1652,tier1_bbref,Automatic match via bbref_id to Webster Rivas +5934,Luis Guillorme,6,guilllu01,792,tier1_bbref,Automatic match via bbref_id to Luis Guillorme +5935,Taylor Ward,6,wardta01,2116,tier1_bbref,Automatic match via bbref_id to Taylor Ward +5936,Travis Jankowski,6,jankotr01,967,tier1_bbref,Automatic match via bbref_id to Travis Jankowski +5937,Sam Hilliard,6,hillisa01,903,tier1_bbref,Automatic match via bbref_id to Sam Hilliard +5938,Christian Yelich,6,yelicch01,2212,tier1_bbref,Automatic match via bbref_id to Christian Yelich +5939,Tommy Pham,6,phamth01,1552,tier1_bbref,Automatic match via bbref_id to Tommy Pham +5940,Andrew McCutchen,6,mccutan01,1272,tier1_bbref,Automatic match via bbref_id to Andrew McCutchen +5941,Dylan Moore,6,mooredy01,1358,tier1_bbref,Automatic match via bbref_id to Dylan Moore +5942,Jace Peterson,6,peterja01,1547,tier1_bbref,Automatic match via bbref_id to Jace Peterson +5943,Brandon Drury,6,drurybr01,535,tier1_bbref,Automatic match via bbref_id to Brandon Drury +5944,Kyle Farmer,6,farmeky01,598,tier1_bbref,Automatic match via bbref_id to Kyle Farmer +5945,DJ LeMahieu,6,lemahdj01,1114,tier1_bbref,Automatic match via bbref_id to DJ LeMahieu +5946,Brett Gardner,6,gardnbr01,695,tier1_bbref,Automatic match via bbref_id to Brett Gardner +5947,Jo Adell,6,adelljo01,20,tier1_bbref,Automatic match via bbref_id to Jo Adell +5948,Pedro Severino,6,severpe01,1804,tier1_bbref,Automatic match via bbref_id to Pedro Severino +5949,Mauricio Dubon,6,dubonma01,538,tier1_bbref,Automatic match via bbref_id to Mauricio Dubon +5950,Tyler Wade,6,wadety01,2094,tier1_bbref,Automatic match via bbref_id to Tyler Wade +5951,David Peralta,6,peralda01,1522,tier1_bbref,Automatic match via bbref_id to David Peralta +5952,Ryan Jeffers,6,jeffery01,975,tier1_bbref,Automatic match via bbref_id to Ryan Jeffers +5953,Christian Vazquez,6,vazquch01,2063,tier1_bbref,Automatic match via bbref_id to Christian Vazquez +5954,Trevor Larnach,6,larnatr01,1094,tier1_bbref,Automatic match via bbref_id to Trevor Larnach +5955,Sergio Alcantara,6,alcanse01,34,tier1_bbref,Automatic match via bbref_id to Sergio Alcantara +5956,Nick Solak,6,solakni01,1867,tier1_bbref,Automatic match via bbref_id to Nick Solak +5957,Yermin Mercedes,6,merceye01,1307,tier1_bbref,Automatic match via bbref_id to Yermin Mercedes +5958,Jorge Mateo,6,mateojo01,1233,tier1_bbref,Automatic match via bbref_id to Jorge Mateo +5959,Kyle Higashioka,6,higasky01,895,tier1_bbref,Automatic match via bbref_id to Kyle Higashioka +5960,Raimel Tapia,6,tapiara01,1957,tier1_bbref,Automatic match via bbref_id to Raimel Tapia +5961,Miguel Sano,6,sanomi01,1757,tier1_bbref,Automatic match via bbref_id to Miguel Sano +5962,Tomas Nido,6,nidoto01,1424,tier1_bbref,Automatic match via bbref_id to Tomas Nido +5963,Jon Berti,6,bertijo01,183,tier1_bbref,Automatic match via bbref_id to Jon Berti +5964,Robinson Chirinos,6,chiriro01,373,tier1_bbref,Automatic match via bbref_id to Robinson Chirinos +5965,Eric Hosmer,6,hosmeer01,926,tier1_bbref,Automatic match via bbref_id to Eric Hosmer +5966,Austin Barnes,6,barneau01,132,tier1_bbref,Automatic match via bbref_id to Austin Barnes +5967,Tyler Naquin,6,naquity01,1399,tier1_bbref,Automatic match via bbref_id to Tyler Naquin +5968,Charlie Blackmon,6,blackch02,205,tier1_bbref,Automatic match via bbref_id to Charlie Blackmon +5969,Michael Conforto,6,confomi01,407,tier1_bbref,Automatic match via bbref_id to Michael Conforto +5972,Hanser Alberto,6,alberha01,30,tier1_bbref,Automatic match via bbref_id to Hanser Alberto +5973,Jordy Mercer,6,mercejo03,1308,tier1_bbref,Automatic match via bbref_id to Jordy Mercer +5974,Ryan Mountcastle,6,mountry01,1377,tier1_bbref,Automatic match via bbref_id to Ryan Mountcastle +5975,Gleyber Torres,6,torregl01,2003,tier1_bbref,Automatic match via bbref_id to Gleyber Torres +5976,Nick Maton,6,matonni01,1239,tier1_bbref,Automatic match via bbref_id to Nick Maton +5977,Nick Ahmed,6,ahmedni01,26,tier1_bbref,Automatic match via bbref_id to Nick Ahmed +5978,Josh Rojas,6,rojasjo01,1695,tier1_bbref,Automatic match via bbref_id to Josh Rojas +5979,Randal Grichuk,6,grichra01,775,tier1_bbref,Automatic match via bbref_id to Randal Grichuk +5980,Garrett Hampson,6,hampsga01,814,tier1_bbref,Automatic match via bbref_id to Garrett Hampson +5981,Kevin Pillar,6,pillake01,1557,tier1_bbref,Automatic match via bbref_id to Kevin Pillar +5982,Ehire Adrianza,6,adriaeh01,22,tier1_bbref,Automatic match via bbref_id to Ehire Adrianza +5983,Gio Urshela,6,urshegi01,2042,tier1_bbref,Automatic match via bbref_id to Gio Urshela +5984,Reese McGuire,6,mcguire01,1277,tier1_bbref,Automatic match via bbref_id to Reese McGuire +5985,Cavan Biggio,6,biggica01,196,tier1_bbref,Automatic match via bbref_id to Cavan Biggio +5986,Jarrod Dyson,6,dysonja01,555,tier1_bbref,Automatic match via bbref_id to Jarrod Dyson +5987,Eddy Alvarez,6,alvared01,60,tier1_bbref,Automatic match via bbref_id to Eddy Alvarez +5988,Trey Mancini,6,mancitr01,1190,tier1_bbref,Automatic match via bbref_id to Trey Mancini +5989,Luke Voit,6,voitlu01,2087,tier1_bbref,Automatic match via bbref_id to Luke Voit +5990,Luis V Garcia,6,garcilu04,694,tier1_bbref,Automatic match via bbref_id to Luis Garcia Jr +5991,Tommy La Stella,6,lasteto01,1082,tier1_bbref,Automatic match via bbref_id to Tommy La Stella +5992,Yonathan Daza,6,dazayo01,476,tier1_bbref,Automatic match via bbref_id to Yonathan Daza +5993,Yu Chang,6,changyu01,364,tier1_bbref,Automatic match via bbref_id to Yu Chang +5994,Josh Naylor,6,naylojo01,1404,tier1_bbref,Automatic match via bbref_id to Josh Naylor +5995,Asdrubal Cabrera,6,cabreas01,299,tier1_bbref,Automatic match via bbref_id to Asdrubal Cabrera +5996,Kevin Plawecki,6,plaweke01,1565,tier1_bbref,Automatic match via bbref_id to Kevin Plawecki +5997,Jason Heyward,6,heywaja01,891,tier1_bbref,Automatic match via bbref_id to Jason Heyward +5998,Jose Rondon,6,rondojo02,1707,tier1_bbref,Automatic match via bbref_id to Jose Rondon +5999,Christian Walker,6,walkech02,2104,tier1_bbref,Automatic match via bbref_id to Christian Walker +6000,Elvis Andrus,6,andruel01,77,tier1_bbref,Automatic match via bbref_id to Elvis Andrus +6001,Gavin Sheets,6,sheetga01,1811,tier1_bbref,Automatic match via bbref_id to Gavin Sheets +6002,Bobby Bradley,6,bradlbo01,237,tier1_bbref,Automatic match via bbref_id to Bobby Bradley +6003,Joshua Fuentes,6,fuentjo01,664,tier1_bbref,Automatic match via bbref_id to Joshua Fuentes +6004,Brad Miller,6,millebr02,1322,tier1_bbref,Automatic match via bbref_id to Brad Miller +6005,Jake Marisnick,6,marisja01,1200,tier1_bbref,Automatic match via bbref_id to Jake Marisnick +6006,Kyle Garlick,6,garliky01,696,tier1_bbref,Automatic match via bbref_id to Kyle Garlick +6007,Taylor Jones,6,jonesta01,992,tier1_bbref,Automatic match via bbref_id to Taylor Jones +6008,Luke Williams,6,willilu01,2159,tier1_bbref,Automatic match via bbref_id to Luke Williams +6009,Kevin Newman,6,newmake01,1420,tier1_bbref,Automatic match via bbref_id to Kevin Newman +6010,Nick Gordon,6,gordoni01,752,tier1_bbref,Automatic match via bbref_id to Nick Gordon +6011,Ronald Torreyes,6,torrero01,2004,tier1_bbref,Automatic match via bbref_id to Ronald Torreyes +6012,Travis dArnaud,6,darnatr01,461,tier1_bbref,Automatic match via bbref_id to Travis dArnaud +6013,Guillermo Heredia,6,heredgu01,862,tier1_bbref,Automatic match via bbref_id to Guillermo Heredia +6014,Chad Pinder,6,pindech01,1559,tier1_bbref,Automatic match via bbref_id to Chad Pinder +6015,Corey Dickerson,6,dickeco01,513,tier1_bbref,Automatic match via bbref_id to Corey Dickerson +6016,Rougned Odor,6,odorro01,1451,tier1_bbref,Automatic match via bbref_id to Rougned Odor +6019,Jack Mayfield,6,mayfija01,1252,tier1_bbref,Automatic match via bbref_id to Jack Mayfield +6020,Cesar Hernandez,6,hernace02,870,tier1_bbref,Automatic match via bbref_id to Cesar Hernandez +6021,Tucker Barnhart,6,barnhtu01,135,tier1_bbref,Automatic match via bbref_id to Tucker Barnhart +6022,Victor Reyes,6,reyesvi01,1638,tier1_bbref,Automatic match via bbref_id to Victor Reyes +6023,Anthony Santander,6,santaan02,1764,tier1_bbref,Automatic match via bbref_id to Anthony Santander +6024,Magneuris Sierra,6,sierrma01,1823,tier1_bbref,Automatic match via bbref_id to Magneuris Sierra +6025,Andrew Stevenson,6,stevean01,1906,tier1_bbref,Automatic match via bbref_id to Andrew Stevenson +6026,Bobby Dalbec,6,dalbebo01,458,tier1_bbref,Automatic match via bbref_id to Bobby Dalbec +6027,Andrew Vaughn,6,vaughan01,2061,tier1_bbref,Automatic match via bbref_id to Andrew Vaughn +6028,Matt Beaty,6,beatyma01,157,tier1_bbref,Automatic match via bbref_id to Matt Beaty +6029,Brock Holt,6,holtbr01,921,tier1_bbref,Automatic match via bbref_id to Brock Holt +6030,Yadiel Hernandez,6,hernaya01,875,tier1_bbref,Automatic match via bbref_id to Yadiel Hernandez +6031,Jose Trevino,6,trevijo01,2013,tier1_bbref,Automatic match via bbref_id to Jose Trevino +6032,Billy McKinney,6,mckinbi01,1283,tier1_bbref,Automatic match via bbref_id to Billy McKinney +6033,Harold Ramirez,6,ramirha02,1609,tier1_bbref,Automatic match via bbref_id to Harold Ramirez +6034,Jed Lowrie,6,lowrije01,1158,tier1_bbref,Automatic match via bbref_id to Jed Lowrie +6035,Andy Young,6,youngan02,2220,tier1_bbref,Automatic match via bbref_id to Andy Young +6036,Derek Hill,6,hillde01,899,tier1_bbref,Automatic match via bbref_id to Derek Hill +6037,Albert Pujols,6,pujolal01,1591,tier1_bbref,Automatic match via bbref_id to Albert Pujols +6038,Austin Romine,6,rominau01,1704,tier1_bbref,Automatic match via bbref_id to Austin Romine +6039,Nick Senzel,6,senzeni01,1802,tier1_bbref,Automatic match via bbref_id to Nick Senzel +6040,Willi Castro,6,castrwi01,352,tier1_bbref,Automatic match via bbref_id to Willi Castro +6041,Juan Lagares,6,lagarju01,1083,tier1_bbref,Automatic match via bbref_id to Juan Lagares +6042,Jorge Alfaro,6,alfarjo01,40,tier1_bbref,Automatic match via bbref_id to Jorge Alfaro +6043,Ben Gamel,6,gamelbe01,676,tier1_bbref,Automatic match via bbref_id to Ben Gamel +6044,Rob Refsnyder,6,refsnro01,1626,tier1_bbref,Automatic match via bbref_id to Rob Refsnyder +6045,Khris Davis,6,daviskh01,469,tier1_bbref,Automatic match via bbref_id to Khris Davis +6046,Rodolfo Castro,6,castrro01,353,tier1_bbref,Automatic match via bbref_id to Rodolfo Castro +6047,Jose Iglesias,6,iglesjo01,949,tier1_bbref,Automatic match via bbref_id to Jose Iglesias +6048,Yoshi Tsutsugo,6,tsutsyo01,2021,tier1_bbref,Automatic match via bbref_id to Yoshi Tsutsugo +6049,Cristian Pache,6,pachecr01,1482,tier1_bbref,Automatic match via bbref_id to Cristian Pache +6050,Yohel Pozo,6,pozoyo01,1581,tier1_bbref,Automatic match via bbref_id to Yohel Pozo +6051,Jorge Soler,6,solerjo01,1870,tier1_bbref,Automatic match via bbref_id to Jorge Soler +6052,Victor Caratini,6,caratvi01,325,tier1_bbref,Automatic match via bbref_id to Victor Caratini +6053,Willie Calhoun,6,calhowi01,307,tier1_bbref,Automatic match via bbref_id to Willie Calhoun +6054,Lewis Brinson,6,brinsle01,258,tier1_bbref,Automatic match via bbref_id to Lewis Brinson +6055,Marwin Gonzalez,6,gonzama01,741,tier1_bbref,Automatic match via bbref_id to Marwin Gonzalez +6056,Breyvic Valera,6,valerbr01,2051,tier1_bbref,Automatic match via bbref_id to Breyvic Valera +6057,Erik Gonzalez,6,gonzaer01,742,tier1_bbref,Automatic match via bbref_id to Erik Gonzalez +6058,Michael Chavis,6,chavimi01,371,tier1_bbref,Automatic match via bbref_id to Michael Chavis +6059,Cal Raleigh,6,raleica01,1600,tier1_bbref,Automatic match via bbref_id to Cal Raleigh +6060,Alec Bohm,6,bohmal01,217,tier1_bbref,Automatic match via bbref_id to Alec Bohm +6061,Maikel Franco,6,francma02,645,tier1_bbref,Automatic match via bbref_id to Maikel Franco +6062,Phil Gosselin,6,gosseph01,757,tier1_bbref,Automatic match via bbref_id to Phil Gosselin +6063,Kelvin Gutierrez,6,gutieke01,796,tier1_bbref,Automatic match via bbref_id to Kelvin Gutierrez +6064,Dominic Smith,6,smithdo02,1849,tier1_bbref,Automatic match via bbref_id to Dominic Smith +6065,Rene Rivera,6,riverre01,1655,tier1_bbref,Automatic match via bbref_id to Rene Rivera +6066,Jonah Heim,6,heimjo01,849,tier1_bbref,Automatic match via bbref_id to Jonah Heim +6067,Willians Astudillo,6,astudwi01,101,tier1_bbref,Automatic match via bbref_id to Willians Astudillo +6068,John Nogowski,6,nogowjo01,1431,tier1_bbref,Automatic match via bbref_id to John Nogowski +6069,Stephen Piscotty,6,piscost01,1563,tier1_bbref,Automatic match via bbref_id to Stephen Piscotty +6070,Joc Pederson,6,pederjo01,1514,tier1_bbref,Automatic match via bbref_id to Joc Pederson +6071,Edward Olivares,6,olivaed02,1458,tier1_bbref,Automatic match via bbref_id to Edward Olivares +6072,Rowdy Tellez,6,tellero01,1972,tier1_bbref,Automatic match via bbref_id to Rowdy Tellez +6073,James McCann,6,mccanja02,1261,tier1_bbref,Automatic match via bbref_id to James McCann +6074,Josh Reddick,6,reddijo01,1623,tier1_bbref,Automatic match via bbref_id to Josh Reddick +6075,Kurt Suzuki,6,suzukku01,1945,tier1_bbref,Automatic match via bbref_id to Kurt Suzuki +6076,Leody Taveras,6,taverle01,1962,tier1_bbref,Automatic match via bbref_id to Leody Taveras +6077,Zach McKinstry,6,mckinza01,1284,tier1_bbref,Automatic match via bbref_id to Zach McKinstry +6078,Richie Martin,6,martiri01,1216,tier1_bbref,Automatic match via bbref_id to Richie Martin +6079,Orlando Arcia,6,arciaor01,86,tier1_bbref,Automatic match via bbref_id to Orlando Arcia +6080,Ernie Clement,6,clemeer01,391,tier1_bbref,Automatic match via bbref_id to Ernie Clement +6081,Jose Peraza,6,perazjo01,1527,tier1_bbref,Automatic match via bbref_id to Jose Peraza +6082,Aaron Hicks,6,hicksaa01,892,tier1_bbref,Automatic match via bbref_id to Aaron Hicks +6083,Justin Upton,6,uptonju01,2034,tier1_bbref,Automatic match via bbref_id to Justin Upton +6085,Luis Rengifo,6,rengilu01,1632,tier1_bbref,Automatic match via bbref_id to Luis Rengifo +6086,Pavin Smith,6,smithpa04,1851,tier1_bbref,Automatic match via bbref_id to Pavin Smith +6087,Phillip Evans,6,evansph01,589,tier1_bbref,Automatic match via bbref_id to Phillip Evans +6088,Jose Rojas,6,rojasjo02,1696,tier1_bbref,Automatic match via bbref_id to Jose Rojas +6089,Carlos Santana,6,santaca01,1759,tier1_bbref,Automatic match via bbref_id to Carlos Santana +6090,Niko Goodrum,6,goodrni01,748,tier1_bbref,Automatic match via bbref_id to Niko Goodrum +6091,Roberto Perez,6,perezro02,1538,tier1_bbref,Automatic match via bbref_id to Roberto Perez +6092,Wilmer Difo,6,difowi01,516,tier1_bbref,Automatic match via bbref_id to Wilmer Difo +6093,Jarren Duran,6,duranja01,552,tier1_bbref,Automatic match via bbref_id to Jarren Duran +6094,Austin Wynns,6,wynnsau01,2202,tier1_bbref,Automatic match via bbref_id to Austin Wynns +6095,David Bote,6,boteda01,224,tier1_bbref,Automatic match via bbref_id to David Bote +6096,Brent Rooker,6,rookebr01,1708,tier1_bbref,Automatic match via bbref_id to Brent Rooker +6097,Pat Valaika,6,valaipa01,2044,tier1_bbref,Automatic match via bbref_id to Pat Valaika +6098,Sheldon Neuse,6,neusesh01,1415,tier1_bbref,Automatic match via bbref_id to Sheldon Neuse +6099,Josh VanMeter,6,vanmejo01,2052,tier1_bbref,Automatic match via bbref_id to Josh VanMeter +6100,Shed Long,6,longsh01,1138,tier1_bbref,Automatic match via bbref_id to Shed Long +6101,Aristides Aquino,6,aquinar01,81,tier1_bbref,Automatic match via bbref_id to Aristides Aquino +6102,Miguel Andujar,6,andujmi01,78,tier1_bbref,Automatic match via bbref_id to Miguel Andujar +6103,Jake Bauers,6,bauerja01,151,tier1_bbref,Automatic match via bbref_id to Jake Bauers +6104,Miguel Cabrera,6,cabremi01,298,tier1_bbref,Automatic match via bbref_id to Miguel Cabrera +6105,Danny Mendick,6,mendida01,1302,tier1_bbref,Automatic match via bbref_id to Danny Mendick +6106,Jarred Kelenic,6,kelenja01,1015,tier1_bbref,Automatic match via bbref_id to Jarred Kelenic +6107,Martin Maldonado,6,maldoma01,1187,tier1_bbref,Automatic match via bbref_id to Martin Maldonado +6109,Ryan McKenna,6,mckenry01,1281,tier1_bbref,Automatic match via bbref_id to Ryan McKenna +6110,Hoy Park,6,parkho01,1498,tier1_bbref,Automatic match via bbref_id to Hoy Park +6111,Jake Lamb,6,lambja01,1087,tier1_bbref,Automatic match via bbref_id to Jake Lamb +6112,Will Craig,6,craigwi01,429,tier1_bbref,Automatic match via bbref_id to Will Craig +6113,Isaac Paredes,6,paredis01,1497,tier1_bbref,Automatic match via bbref_id to Isaac Paredes +6114,Aramis Garcia,6,garciar01,683,tier1_bbref,Automatic match via bbref_id to Aramis Garcia +6115,Ender Inciarte,6,inciaen01,952,tier1_bbref,Automatic match via bbref_id to Ender Inciarte +6116,Donovan Walton,6,waltodo01,2113,tier1_bbref,Automatic match via bbref_id to Donovan Walton +6117,Harold Castro,6,castrha01,349,tier1_bbref,Automatic match via bbref_id to Harold Castro +6118,William Contreras,6,contrwi02,411,tier1_bbref,Automatic match via bbref_id to William Contreras +6119,Owen Miller,6,milleow01,1327,tier1_bbref,Automatic match via bbref_id to Owen Miller +6120,Zack Collins,6,colliza01,403,tier1_bbref,Automatic match via bbref_id to Zack Collins +6121,Eugenio Suarez,6,suareeu01,1934,tier1_bbref,Automatic match via bbref_id to Eugenio Suarez +6122,Patrick Mazeika,6,mazeipa01,1255,tier1_bbref,Automatic match via bbref_id to Patrick Mazeika +6123,Andrew Velazquez,6,velazan01,2067,tier1_bbref,Automatic match via bbref_id to Andrew Velazquez +6124,Eric Sogard,6,sogarer01,1865,tier1_bbref,Automatic match via bbref_id to Eric Sogard +6125,Wilson Ramos,6,ramoswi01,1612,tier1_bbref,Automatic match via bbref_id to Wilson Ramos +6126,Anthony Rendon,6,rendoan01,1630,tier1_bbref,Automatic match via bbref_id to Anthony Rendon +6127,Stephen Vogt,6,vogtst01,2086,tier1_bbref,Automatic match via bbref_id to Stephen Vogt +6128,Marcell Ozuna,6,ozunama01,1481,tier1_bbref,Automatic match via bbref_id to Marcell Ozuna +6129,Hunter Dozier,6,doziehu01,533,tier1_bbref,Automatic match via bbref_id to Hunter Dozier +6130,Abraham Almonte,6,almonab01,49,tier1_bbref,Automatic match via bbref_id to Abraham Almonte +6131,Austin Hedges,6,hedgeau01,848,tier1_bbref,Automatic match via bbref_id to Austin Hedges +6132,Carter Kieboom,6,kieboca01,1038,tier1_bbref,Automatic match via bbref_id to Carter Kieboom +6133,Shogo Akiyama,6,akiyash01,28,tier1_bbref,Automatic match via bbref_id to Shogo Akiyama +6134,Jonathan Arauz,6,arauzjo01,84,tier1_bbref,Automatic match via bbref_id to Jonathan Arauz +6135,Grayson Greiner,6,greingr01,773,tier1_bbref,Automatic match via bbref_id to Grayson Greiner +6136,Didi Gregorius,6,gregodi01,772,tier1_bbref,Automatic match via bbref_id to Didi Gregorius +6137,Keston Hiura,6,hiurake01,905,tier1_bbref,Automatic match via bbref_id to Keston Hiura +6138,Chad Wallach,6,wallach01,2108,tier1_bbref,Automatic match via bbref_id to Chad Wallach +6139,Adam Eaton,6,eatonad02,556,tier1_bbref,Automatic match via bbref_id to Adam Eaton +6140,Mitch Moreland,6,morelmi01,1365,tier1_bbref,Automatic match via bbref_id to Mitch Moreland +6141,Kole Calhoun,6,calhoko01,306,tier1_bbref,Automatic match via bbref_id to Kole Calhoun +6142,DJ Stewart,6,stewadj01,1909,tier1_bbref,Automatic match via bbref_id to DJ Stewart +6143,Clint Frazier,6,frazicl01,649,tier1_bbref,Automatic match via bbref_id to Clint Frazier +6144,Sandy Leon,6,leonsa01,1115,tier1_bbref,Automatic match via bbref_id to Sandy Leon +6145,Victor Robles,6,roblevi01,1666,tier1_bbref,Automatic match via bbref_id to Victor Robles +6146,Seby Zavala,6,zavalse01,2223,tier1_bbref,Automatic match via bbref_id to Seby Zavala +6147,Alex Blandino,6,blandal01,210,tier1_bbref,Automatic match via bbref_id to Alex Blandino +6148,Colin Moran,6,moranco01,1360,tier1_bbref,Automatic match via bbref_id to Colin Moran +6149,Jurickson Profar,6,profaju01,1587,tier1_bbref,Automatic match via bbref_id to Jurickson Profar +6150,Gregory Polanco,6,polangr01,1569,tier1_bbref,Automatic match via bbref_id to Gregory Polanco +6151,Isan Diaz,6,diazis01,508,tier1_bbref,Automatic match via bbref_id to Isan Diaz +6152,Rio Ruiz,6,ruizri01,1723,tier1_bbref,Automatic match via bbref_id to Rio Ruiz +6153,Zack Short,6,shortza01,1818,tier1_bbref,Automatic match via bbref_id to Zack Short +6154,Franchy Cordero,6,cordefr02,418,tier1_bbref,Automatic match via bbref_id to Franchy Cordero +6155,Tim Locastro,6,locasti01,1133,tier1_bbref,Automatic match via bbref_id to Tim Locastro +6156,Jackie Bradley Jr,6,bradlja02,239,tier1_bbref,Automatic match via bbref_id to Jackie Bradley Jr +6157,Daniel Vogelbach,6,vogelda01,2085,tier1_bbref,Automatic match via bbref_id to Daniel Vogelbach +6158,Daniel Johnson,6,johnsda07,988,tier1_bbref,Automatic match via bbref_id to Daniel Johnson +6159,Jason Vosler,6,vosleja01,2090,tier1_bbref,Automatic match via bbref_id to Jason Vosler +6160,Danny Santana,6,santada01,1760,tier1_bbref,Automatic match via bbref_id to Danny Santana +6161,Alex Dickerson,6,dickeal01,512,tier1_bbref,Automatic match via bbref_id to Alex Dickerson +6162,Travis Shaw,6,shawtr01,1809,tier1_bbref,Automatic match via bbref_id to Travis Shaw +6163,Eli White,6,whiteel04,2140,tier1_bbref,Automatic match via bbref_id to Eli White +6164,Cody Bellinger,6,bellico01,170,tier1_bbref,Automatic match via bbref_id to Cody Bellinger +6165,Dom Nunez,6,nunezdo01,1444,tier1_bbref,Automatic match via bbref_id to Dom Nunez +6166,Michael Perez,6,perezmi03,1539,tier1_bbref,Automatic match via bbref_id to Michael Perez +6167,Daniel Robertson,6,roberda10,1663,tier1_bbref,Automatic match via bbref_id to Daniel Robertson +6168,Sam Haggerty,6,haggesa01,803,tier1_bbref,Automatic match via bbref_id to Sam Haggerty +6170,Evan White,6,whiteev01,2142,tier1_bbref,Automatic match via bbref_id to Evan White +6171,Cole Tucker,6,tuckeco01,2022,tier1_bbref,Automatic match via bbref_id to Cole Tucker +6172,Gerardo Parra,6,parrage01,1501,tier1_bbref,Automatic match via bbref_id to Gerardo Parra +6173,David Dahl,6,dahlda01,457,tier1_bbref,Automatic match via bbref_id to David Dahl +6174,Ben Rortvedt,6,rortvbe01,1709,tier1_bbref,Automatic match via bbref_id to Ben Rortvedt +6175,Kean Wong,6,wongke01,2190,tier1_bbref,Automatic match via bbref_id to Kean Wong +6176,Kaai Tom,6,tomka01,1995,tier1_bbref,Automatic match via bbref_id to Kaai Tom +6177,Pablo Sandoval,6,sandopa01,1753,tier1_bbref,Automatic match via bbref_id to Pablo Sandoval +6178,Jahmai Jones,6,jonesja08,993,tier1_bbref,Automatic match via bbref_id to Jahmai Jones +6179,Jonathan Davis,6,davisjo05,470,tier1_bbref,Automatic match via bbref_id to Jonathan Davis +6180,Ryan OHearn,6,ohearry01,1453,tier1_bbref,Automatic match via bbref_id to Ryan OHearn +6181,Mike Moustakas,6,moustmi01,1378,tier1_bbref,Automatic match via bbref_id to Mike Moustakas +6182,Taylor Trammell,6,trammta01,2008,tier1_bbref,Automatic match via bbref_id to Taylor Trammell +6183,Kevan Smith,6,smithke04,1847,tier1_bbref,Automatic match via bbref_id to Kevan Smith +6184,Andrew Romine,6,rominan01,1703,tier1_bbref,Automatic match via bbref_id to Andrew Romine +6185,Mike Tauchman,6,tauchmi01,1961,tier1_bbref,Automatic match via bbref_id to Mike Tauchman +6186,Brian Goodwin,6,goodwbr01,749,tier1_bbref,Automatic match via bbref_id to Brian Goodwin +6187,Justin Williams,6,williju02,2162,tier1_bbref,Automatic match via bbref_id to Justin Williams +6188,Jake Cave,6,caveja01,354,tier1_bbref,Automatic match via bbref_id to Jake Cave +6189,Robel Garcia,6,garciro02,682,tier1_bbref,Automatic match via bbref_id to Robel Garcia +6190,Joe Panik,6,panikjo01,1493,tier1_bbref,Automatic match via bbref_id to Joe Panik +6191,JaCoby Jones,6,jonesja07,991,tier1_bbref,Automatic match via bbref_id to JaCoby Jones +6192,Max Schrock,6,schroma01,1781,tier1_bbref,Automatic match via bbref_id to Max Schrock +6193,Jason Martin,6,martija03,1217,tier1_bbref,Automatic match via bbref_id to Jason Martin +6194,Luke Raley,6,raleylu01,1602,tier1_bbref,Automatic match via bbref_id to Luke Raley +6195,Ildemaro Vargas,6,vargail01,2054,tier1_bbref,Automatic match via bbref_id to Ildemaro Vargas +6196,Nomar Mazara,6,mazarno01,1254,tier1_bbref,Automatic match via bbref_id to Nomar Mazara +6197,Matt Carpenter,6,carpema01,329,tier1_bbref,Automatic match via bbref_id to Matt Carpenter +6198,Andrew Knizner,6,kniznan01,1065,tier1_bbref,Automatic match via bbref_id to Andrew Knizner +6199,Mike Ford,6,fordmi01,635,tier1_bbref,Automatic match via bbref_id to Mike Ford +6200,Jose Marmolejos,6,marmojo01,1203,tier1_bbref,Automatic match via bbref_id to Jose Marmolejos +6201,Stevie Wilkerson,6,wilkest01,2153,tier1_bbref,Automatic match via bbref_id to Stevie Wilkerson +6202,Alex Jackson,6,jacksal02,961,tier1_bbref,Automatic match via bbref_id to Alex Jackson +6204,Chance Sisco,6,siscoch01,1831,tier1_bbref,Automatic match via bbref_id to Chance Sisco +6206,Andrew Knapp,6,knappan01,1062,tier1_bbref,Automatic match via bbref_id to Andrew Knapp +6207,Drew Ellis,6,ellisdr01,569,tier1_bbref,Automatic match via bbref_id to Drew Ellis +6208,Byron Buxton,7,buxtoby01,295,tier1_bbref,Automatic match via bbref_id to Byron Buxton +6209,Shohei Ohtani,7,ohtansh01,1455,tier1_bbref,Automatic match via bbref_id to Shohei Ohtani +6210,Jacob deGrom,7,degroja01,484,tier1_bbref,Automatic match via bbref_id to Jacob deGrom +6211,Ranger Suarez,7,suarera01,1936,tier1_bbref,Automatic match via bbref_id to Ranger Suarez +6212,Zack Wheeler,7,wheelza01,2139,tier1_bbref,Automatic match via bbref_id to Zack Wheeler +6213,Mike Trout,7,troutmi01,2019,tier1_bbref,Automatic match via bbref_id to Mike Trout +6214,Luis Robert,7,roberlu01,1660,tier1_bbref,Automatic match via bbref_id to Luis Robert +6215,Fernando Tatis Jr,7,tatisfe02,1960,tier1_bbref,Automatic match via bbref_id to Fernando Tatis Jr +6216,Tyler ONeill,7,oneilty01,1463,tier1_bbref,Automatic match via bbref_id to Tyler ONeill +6217,Adam Engel,7,engelad01,574,tier1_bbref,Automatic match via bbref_id to Adam Engel +6218,Wander Franco,7,francwa01,646,tier1_bbref,Automatic match via bbref_id to Wander Franco +6219,Carlos Correa,7,correca01,420,tier1_bbref,Automatic match via bbref_id to Carlos Correa +6220,Brandon Crawford,7,crawfbr01,430,tier1_bbref,Automatic match via bbref_id to Brandon Crawford +6221,Juan Soto,7,sotoju01,1879,tier1_bbref,Automatic match via bbref_id to Juan Soto +6222,Robbie Ray,7,rayro02,1620,tier1_bbref,Automatic match via bbref_id to Robbie Ray +6223,Wade Miley,7,mileywa01,1318,tier1_bbref,Automatic match via bbref_id to Wade Miley +6224,Jose Ramirez,7,ramirjo01,1608,tier1_bbref,Automatic match via bbref_id to Jose Ramirez +6225,Chris Ellis,7,ellisch01,568,tier1_bbref,Automatic match via bbref_id to Chris Ellis +6226,Corbin Burnes,7,burneco01,286,tier1_bbref,Automatic match via bbref_id to Corbin Burnes +6227,Max Scherzer,7,scherma01,1773,tier1_bbref,Automatic match via bbref_id to Max Scherzer +6228,Santiago Espinal,7,espinsa01,582,tier1_bbref,Automatic match via bbref_id to Santiago Espinal +6229,Mike Zunino,7,zuninmi01,2234,tier1_bbref,Automatic match via bbref_id to Mike Zunino +6230,Marcus Semien,7,semiema01,1799,tier1_bbref,Automatic match via bbref_id to Marcus Semien +6231,Trea Turner,7,turnetr01,1,tier1_bbref,Automatic match via bbref_id to Trea Turner +6232,Kyle Tucker,7,tuckeky01,2023,tier1_bbref,Automatic match via bbref_id to Kyle Tucker +6233,Ronald Acuna Jr,7,acunaro01,12,tier1_bbref,Automatic match via bbref_id to Ronald Acuna Jr +6234,Walker Buehler,7,buehlwa01,277,tier1_bbref,Automatic match via bbref_id to Walker Buehler +6235,Bryce Harper,7,harpebr03,823,tier1_bbref,Automatic match via bbref_id to Bryce Harper +6236,Yasmani Grandal,7,grandya01,761,tier1_bbref,Automatic match via bbref_id to Yasmani Grandal +6237,Brandon Woodruff,7,woodrbr01,2196,tier1_bbref,Automatic match via bbref_id to Brandon Woodruff +6238,Vladimir Guerrero Jr,7,guerrvl02,789,tier1_bbref,Automatic match via bbref_id to Vladimir Guerrero Jr +6239,Harrison Bader,7,baderha01,110,tier1_bbref,Automatic match via bbref_id to Harrison Bader +6240,Carlos Rodon,7,rodonca01,1670,tier1_bbref,Automatic match via bbref_id to Carlos Rodon +6241,Gerrit Cole,7,colege01,398,tier1_bbref,Automatic match via bbref_id to Gerrit Cole +6242,Aaron Judge,7,judgeaa01,3,tier1_bbref,Automatic match via bbref_id to Aaron Judge +6243,Brandon Nimmo,7,nimmobr01,1425,tier1_bbref,Automatic match via bbref_id to Brandon Nimmo +6244,Josh Hader,7,haderjo01,802,tier1_bbref,Automatic match via bbref_id to Josh Hader +6245,Bryan Reynolds,7,reynobr01,1641,tier1_bbref,Automatic match via bbref_id to Bryan Reynolds +6246,Darin Ruf,7,rufda01,1722,tier1_bbref,Automatic match via bbref_id to Darin Ruf +6247,Austin Riley,7,rileyau01,1649,tier1_bbref,Automatic match via bbref_id to Austin Riley +6248,Corey Seager,7,seageco01,1794,tier1_bbref,Automatic match via bbref_id to Corey Seager +6249,Tejay Antone,7,antonte01,79,tier1_bbref,Automatic match via bbref_id to Tejay Antone +6250,Paul Goldschmidt,7,goldspa01,729,tier1_bbref,Automatic match via bbref_id to Paul Goldschmidt +6251,Starling Marte,7,martest01,1208,tier1_bbref,Automatic match via bbref_id to Starling Marte +6252,Lance Lynn,7,lynnla01,1173,tier1_bbref,Automatic match via bbref_id to Lance Lynn +6253,Max Fried,7,friedma01,659,tier1_bbref,Automatic match via bbref_id to Max Fried +6254,Tim Anderson,7,anderti01,73,tier1_bbref,Automatic match via bbref_id to Tim Anderson +6255,Shane Bieber,7,biebesh01,194,tier1_bbref,Automatic match via bbref_id to Shane Bieber +6256,Matt Olson,7,olsonma02,1461,tier1_bbref,Automatic match via bbref_id to Matt Olson +6257,Mitch Garver,7,garvemi01,702,tier1_bbref,Automatic match via bbref_id to Mitch Garver +6258,Trevor Bauer,7,bauertr01,150,tier1_bbref,Automatic match via bbref_id to Trevor Bauer +6259,Tony Kemp,7,kempto01,1027,tier1_bbref,Automatic match via bbref_id to Tony Kemp +6260,Bo Bichette,7,bichebo01,190,tier1_bbref,Automatic match via bbref_id to Bo Bichette +6261,Willson Contreras,7,contrwi01,410,tier1_bbref,Automatic match via bbref_id to Willson Contreras +6262,Cedric Mullins,7,mullice01,1381,tier1_bbref,Automatic match via bbref_id to Cedric Mullins +6263,John Means,7,meansjo01,2,tier1_bbref,Automatic match via bbref_id to John Means +6264,Casey Sadler,7,sadleca02,1736,tier1_bbref,Automatic match via bbref_id to Casey Sadler +6265,Kevin Gausman,7,gausmke01,706,tier1_bbref,Automatic match via bbref_id to Kevin Gausman +6266,Max Muncy,7,muncyma01,1382,tier1_bbref,Automatic match via bbref_id to Max Muncy +6267,Art Warren,7,warrear01,2119,tier1_bbref,Automatic match via bbref_id to Art Warren +6268,Javier Baez,7,baezja01,112,tier1_bbref,Automatic match via bbref_id to Javier Baez +6269,Brett Phillips,7,phillbr02,1555,tier1_bbref,Automatic match via bbref_id to Brett Phillips +6270,Xander Bogaerts,7,bogaexa01,216,tier1_bbref,Automatic match via bbref_id to Xander Bogaerts +6271,Tyler Glasnow,7,glasnty01,726,tier1_bbref,Automatic match via bbref_id to Tyler Glasnow +6272,Cal Quantrill,7,quantca01,1593,tier1_bbref,Automatic match via bbref_id to Cal Quantrill +6273,Salvador Perez,7,perezsa02,1534,tier1_bbref,Automatic match via bbref_id to Salvador Perez +6274,Aaron Loup,7,loupaa01,1152,tier1_bbref,Automatic match via bbref_id to Aaron Loup +6275,Chris Bassitt,7,bassich01,146,tier1_bbref,Automatic match via bbref_id to Chris Bassitt +6276,Manny Machado,7,machama01,1175,tier1_bbref,Automatic match via bbref_id to Manny Machado +6277,Nestor Cortes Jr,7,cortene01,421,tier1_bbref,Automatic match via bbref_id to Nestor Cortes Jr +6278,Alek Manoah,7,manoaal01,1192,tier1_bbref,Automatic match via bbref_id to Alek Manoah +6396,JP Crawford,7,crawfjp01,432,tier1_bbref,Automatic match via bbref_id to JP Crawford +6279,Tyler Gilbert,7,gilbety01,717,tier1_bbref,Automatic match via bbref_id to Tyler Gilbert +6280,Luis Castillo,7,castilu02,344,tier1_bbref,Automatic match via bbref_id to Luis Castillo +6281,Buster Posey,7,poseybu01,1578,tier1_bbref,Automatic match via bbref_id to Buster Posey +6282,Logan Webb,7,webblo01,2127,tier1_bbref,Automatic match via bbref_id to Logan Webb +6283,Mookie Betts,7,bettsmo01,187,tier1_bbref,Automatic match via bbref_id to Mookie Betts +6284,Brandon Lowe,7,lowebr01,1156,tier1_bbref,Automatic match via bbref_id to Brandon Lowe +6285,Joey Gallo,7,gallojo01,674,tier1_bbref,Automatic match via bbref_id to Joey Gallo +6286,Jorge Polanco,7,polanjo01,1570,tier1_bbref,Automatic match via bbref_id to Jorge Polanco +6287,Nicky Lopez,7,lopezni01,1149,tier1_bbref,Automatic match via bbref_id to Nicky Lopez +6288,Connor Joe,7,joeco01,983,tier1_bbref,Automatic match via bbref_id to Connor Joe +6289,Willy Adames,7,adamewi01,14,tier1_bbref,Automatic match via bbref_id to Willy Adames +6290,Joey Wendle,7,wendljo01,2135,tier1_bbref,Automatic match via bbref_id to Joey Wendle +6291,Jake Cronenworth,7,croneja01,442,tier1_bbref,Automatic match via bbref_id to Jake Cronenworth +6292,Lucas Giolito,7,giolilu01,724,tier1_bbref,Automatic match via bbref_id to Lucas Giolito +6293,Dustin Garneau,7,garnedu01,697,tier1_bbref,Automatic match via bbref_id to Dustin Garneau +6294,AJ Pollock,7,polloaj01,1571,tier1_bbref,Automatic match via bbref_id to AJ Pollock +6295,Julio Urias,7,uriasju01,2038,tier1_bbref,Automatic match via bbref_id to Julio Urias +6296,Chad Green,7,greench03,768,tier1_bbref,Automatic match via bbref_id to Chad Green +6297,Chas McCormick,7,mccorch01,1269,tier1_bbref,Automatic match via bbref_id to Chas McCormick +6298,Freddy Peralta,7,peralfr01,1525,tier1_bbref,Automatic match via bbref_id to Freddy Peralta +6299,Brandon Belt,7,beltbr01,173,tier1_bbref,Automatic match via bbref_id to Brandon Belt +6300,Luis Arraez,7,arraelu01,93,tier1_bbref,Automatic match via bbref_id to Luis Arraez +6301,Jonathan Loaisiga,7,loaisjo01,1132,tier1_bbref,Automatic match via bbref_id to Jonathan Loaisiga +6302,Trevor Story,7,storytr01,1914,tier1_bbref,Automatic match via bbref_id to Trevor Story +6303,Nico Hoerner,7,hoernni01,909,tier1_bbref,Automatic match via bbref_id to Nico Hoerner +6304,George Springer,7,springe01,1888,tier1_bbref,Automatic match via bbref_id to George Springer +6305,Jacob Stallings,7,stallja01,1890,tier1_bbref,Automatic match via bbref_id to Jacob Stallings +6306,Luis Gil,7,gillu01,716,tier1_bbref,Automatic match via bbref_id to Luis Gil +6307,Pablo Lopez,7,lopezpa01,1146,tier1_bbref,Automatic match via bbref_id to Pablo Lopez +6308,Michael Fulmer,7,fulmemi01,666,tier1_bbref,Automatic match via bbref_id to Michael Fulmer +6309,Will D Smith,7,smithwi05,1841,tier1_bbref,Automatic match via bbref_id to Will Smith +6310,Charlie Morton,7,mortoch02,1375,tier1_bbref,Automatic match via bbref_id to Charlie Morton +6311,Juan Minaya,7,minayju01,1334,tier1_bbref,Automatic match via bbref_id to Juan Minaya +6312,Ramon Laureano,7,laurera01,1097,tier1_bbref,Automatic match via bbref_id to Ramon Laureano +6313,Randy Arozarena,7,arozara01,92,tier1_bbref,Automatic match via bbref_id to Randy Arozarena +6314,Kyle Schwarber,7,schwaky01,1784,tier1_bbref,Automatic match via bbref_id to Kyle Schwarber +6315,Andrew Chafin,7,chafian01,363,tier1_bbref,Automatic match via bbref_id to Andrew Chafin +6316,Freddie Freeman,7,freemfr01,652,tier1_bbref,Automatic match via bbref_id to Freddie Freeman +6317,Craig Kimbrel,7,kimbrcr01,1043,tier1_bbref,Automatic match via bbref_id to Craig Kimbrel +6397,Casey Mize,7,mizeca01,1342,tier1_bbref,Automatic match via bbref_id to Casey Mize +6318,Kolten Wong,7,wongko01,2188,tier1_bbref,Automatic match via bbref_id to Kolten Wong +6319,Ryan McMahon,7,mcmahry01,1286,tier1_bbref,Automatic match via bbref_id to Ryan McMahon +6320,Spencer Turnbull,7,turnbsp01,2028,tier1_bbref,Automatic match via bbref_id to Spencer Turnbull +6321,Lance McCullers Jr,7,mcculla02,1271,tier1_bbref,Automatic match via bbref_id to Lance McCullers Jr +6322,Yan Gomes,7,gomesya01,731,tier1_bbref,Automatic match via bbref_id to Yan Gomes +6323,Andy Ibanez,7,ibanean01,948,tier1_bbref,Automatic match via bbref_id to Andy Ibanez +6324,Ty France,7,francty01,642,tier1_bbref,Automatic match via bbref_id to Ty France +6325,Pete Alonso,7,alonspe01,53,tier1_bbref,Automatic match via bbref_id to Pete Alonso +6326,Trevor Rogers,7,rogertr01,1693,tier1_bbref,Automatic match via bbref_id to Trevor Rogers +6327,Frank Schwindel,7,schwifr01,1786,tier1_bbref,Automatic match via bbref_id to Frank Schwindel +6328,Joey Votto,7,vottojo01,2092,tier1_bbref,Automatic match via bbref_id to Joey Votto +6329,Teoscar Hernandez,7,hernate01,873,tier1_bbref,Automatic match via bbref_id to Teoscar Hernandez +6330,Jean Segura,7,segurje01,1796,tier1_bbref,Automatic match via bbref_id to Jean Segura +6331,JT Realmuto,7,realmjt01,1622,tier1_bbref,Automatic match via bbref_id to JT Realmuto +6332,Nathan Eovaldi,7,eovalna01,576,tier1_bbref,Automatic match via bbref_id to Nathan Eovaldi +6333,Jose Altuve,7,altuvjo01,56,tier1_bbref,Automatic match via bbref_id to Jose Altuve +6334,Yoan Moncada,7,moncayo01,1348,tier1_bbref,Automatic match via bbref_id to Yoan Moncada +6335,Sonny Gray,7,grayso01,765,tier1_bbref,Automatic match via bbref_id to Sonny Gray +6336,Emmanuel Clase,7,claseem01,385,tier1_bbref,Automatic match via bbref_id to Emmanuel Clase +6337,Ramon Urias,7,uriasra01,2037,tier1_bbref,Automatic match via bbref_id to Ramon Urias +6338,Raisel Iglesias,7,iglesra01,950,tier1_bbref,Automatic match via bbref_id to Raisel Iglesias +6339,Danny Jansen,7,janseda01,969,tier1_bbref,Automatic match via bbref_id to Danny Jansen +6340,Anthony DeSclafani,7,desclan01,493,tier1_bbref,Automatic match via bbref_id to Anthony DeSclafani +6341,Collin McHugh,7,mchugco01,1278,tier1_bbref,Automatic match via bbref_id to Collin McHugh +6342,Nolan Arenado,7,arenano01,88,tier1_bbref,Automatic match via bbref_id to Nolan Arenado +6343,Adam Frazier,7,fraziad01,648,tier1_bbref,Automatic match via bbref_id to Adam Frazier +6344,Trent Grisham,7,grishtr01,776,tier1_bbref,Automatic match via bbref_id to Trent Grisham +6345,CJ Cron,7,croncj01,441,tier1_bbref,Automatic match via bbref_id to CJ Cron +6346,Patrick Sandoval,7,sandopa02,1754,tier1_bbref,Automatic match via bbref_id to Patrick Sandoval +6347,Evan Longoria,7,longoev01,1140,tier1_bbref,Automatic match via bbref_id to Evan Longoria +6348,Jonathan India,7,indiajo01,953,tier1_bbref,Automatic match via bbref_id to Jonathan India +6349,Sandy Alcantara,7,alcansa01,35,tier1_bbref,Automatic match via bbref_id to Sandy Alcantara +6350,Frankie Montas,7,montafr02,1351,tier1_bbref,Automatic match via bbref_id to Frankie Montas +6351,Jose Siri,7,sirijo01,1830,tier1_bbref,Automatic match via bbref_id to Jose Siri +6352,Yuli Gurriel,7,gourryu01,793,tier1_bbref,Automatic match via bbref_id to Yuli Gurriel +6353,Adolis Garcia,7,garciad02,690,tier1_bbref,Automatic match via bbref_id to Adolis Garcia +6354,Kyle Gibson,7,gibsoky01,715,tier1_bbref,Automatic match via bbref_id to Kyle Gibson +6355,Cole Sulser,7,sulseco01,1942,tier1_bbref,Automatic match via bbref_id to Cole Sulser +6398,Aaron Civale,7,civalaa01,383,tier1_bbref,Automatic match via bbref_id to Aaron Civale +6356,Jeimer Candelario,7,candeje01,315,tier1_bbref,Automatic match via bbref_id to Jeimer Candelario +6357,Justin Turner,7,turneju01,2029,tier1_bbref,Automatic match via bbref_id to Justin Turner +6358,Rafael Ortega,7,ortegra01,1465,tier1_bbref,Automatic match via bbref_id to Rafael Ortega +6359,Chris Sale,7,salech01,1739,tier1_bbref,Automatic match via bbref_id to Chris Sale +6360,Garrett Crochet,7,crochga01,439,tier1_bbref,Automatic match via bbref_id to Garrett Crochet +6361,Kyle Isbel,7,isbelky01,956,tier1_bbref,Automatic match via bbref_id to Kyle Isbel +6362,Sean Murphy,7,murphse01,1390,tier1_bbref,Automatic match via bbref_id to Sean Murphy +6363,Jake Fraley,7,fraleja01,641,tier1_bbref,Automatic match via bbref_id to Jake Fraley +6364,Chris Flexen,7,flexech01,626,tier1_bbref,Automatic match via bbref_id to Chris Flexen +6365,Kendall Graveman,7,graveke01,764,tier1_bbref,Automatic match via bbref_id to Kendall Graveman +6366,Garrett Whitlock,7,whitlga01,2146,tier1_bbref,Automatic match via bbref_id to Garrett Whitlock +6367,Tanner Houck,7,houckta01,927,tier1_bbref,Automatic match via bbref_id to Tanner Houck +6368,Elias Diaz,7,diazel01,502,tier1_bbref,Automatic match via bbref_id to Elias Diaz +6369,Drew Steckenrider,7,steckdr01,1898,tier1_bbref,Automatic match via bbref_id to Drew Steckenrider +6370,Francisco Lindor,7,lindofr01,1124,tier1_bbref,Automatic match via bbref_id to Francisco Lindor +6371,Edmundo Sosa,7,sosaed01,1876,tier1_bbref,Automatic match via bbref_id to Edmundo Sosa +6372,Josh Donaldson,7,donaljo02,526,tier1_bbref,Automatic match via bbref_id to Josh Donaldson +6373,Marcus Stroman,7,stromma01,1928,tier1_bbref,Automatic match via bbref_id to Marcus Stroman +6374,Jarlin Garcia,7,garcija04,684,tier1_bbref,Automatic match via bbref_id to Jarlin Garcia +6375,Carson Kelly,7,kellyca02,1023,tier1_bbref,Automatic match via bbref_id to Carson Kelly +6376,Patrick Wisdom,7,wisdopa01,2181,tier1_bbref,Automatic match via bbref_id to Patrick Wisdom +6377,Aaron Sanchez,7,sanchaa01,1745,tier1_bbref,Automatic match via bbref_id to Aaron Sanchez +6378,Jordan Romano,7,romanjo03,1699,tier1_bbref,Automatic match via bbref_id to Jordan Romano +6379,Liam Hendriks,7,hendrli01,857,tier1_bbref,Automatic match via bbref_id to Liam Hendriks +6380,Ian Anderson,7,anderia01,74,tier1_bbref,Automatic match via bbref_id to Ian Anderson +6381,Francisco Mejia,7,mejiafr01,3239,manual_new,Manual assignment to new SbaPlayer: Francisco Mejia +6382,Framber Valdez,7,valdefr01,2048,tier1_bbref,Automatic match via bbref_id to Framber Valdez +6383,Jake Rogers,7,rogerja03,1692,tier1_bbref,Automatic match via bbref_id to Jake Rogers +6384,Lars Nootbaar,7,nootbla01,1436,tier1_bbref,Automatic match via bbref_id to Lars Nootbaar +6385,Kris Bryant,7,bryankr01,273,tier1_bbref,Automatic match via bbref_id to Kris Bryant +6386,Avisail Garcia,7,garciav01,678,tier1_bbref,Automatic match via bbref_id to Avisail Garcia +6387,Matt Chapman,7,chapmma01,367,tier1_bbref,Automatic match via bbref_id to Matt Chapman +6388,Max Stassi,7,stassma01,1896,tier1_bbref,Automatic match via bbref_id to Max Stassi +6389,Steven Okert,7,okertst01,1456,tier1_bbref,Automatic match via bbref_id to Steven Okert +6390,Jason Castro,7,castrja01,347,tier1_bbref,Automatic match via bbref_id to Jason Castro +6391,Nick Madrigal,7,madrini01,1178,tier1_bbref,Automatic match via bbref_id to Nick Madrigal +6392,Adam Duvall,7,duvalad01,553,tier1_bbref,Automatic match via bbref_id to Adam Duvall +6393,Jesse Winker,7,winkeje01,2177,tier1_bbref,Automatic match via bbref_id to Jesse Winker +6394,Tony Gonsolin,7,gonsoto01,734,tier1_bbref,Automatic match via bbref_id to Tony Gonsolin +6395,David Bednar,7,bednada01,162,tier1_bbref,Automatic match via bbref_id to David Bednar +6399,Nicholas Castellanos,7,casteni01,340,tier1_bbref,Automatic match via bbref_id to Nicholas Castellanos +6400,Josh Bell,7,belljo02,168,tier1_bbref,Automatic match via bbref_id to Josh Bell +6401,Luis Urias,7,uriaslu01,2039,tier1_bbref,Automatic match via bbref_id to Luis Urias +6402,Drew Rasmussen,7,rasmudr01,1618,tier1_bbref,Automatic match via bbref_id to Drew Rasmussen +6403,Daulton Varsho,7,varshda01,2058,tier1_bbref,Automatic match via bbref_id to Daulton Varsho +6404,Dominic Leone,7,leonedo01,1116,tier1_bbref,Automatic match via bbref_id to Dominic Leone +6405,Tony Santillan,7,santito01,1766,tier1_bbref,Automatic match via bbref_id to Tony Santillan +6406,Zac Gallen,7,galleza01,673,tier1_bbref,Automatic match via bbref_id to Zac Gallen +6407,Kenley Jansen,7,janseke01,968,tier1_bbref,Automatic match via bbref_id to Kenley Jansen +6408,Tommy Edman,7,edmanto01,558,tier1_bbref,Automatic match via bbref_id to Tommy Edman +6409,Giancarlo Stanton,7,stantmi03,1893,tier1_bbref,Automatic match via bbref_id to Giancarlo Stanton +6410,Clayton Kershaw,7,kershcl01,1034,tier1_bbref,Automatic match via bbref_id to Clayton Kershaw +6411,Blake Treinen,7,treinbl01,2011,tier1_bbref,Automatic match via bbref_id to Blake Treinen +6412,Thairo Estrada,7,estrath01,587,tier1_bbref,Automatic match via bbref_id to Thairo Estrada +6413,Danny Duffy,7,duffyda01,541,tier1_bbref,Automatic match via bbref_id to Danny Duffy +6414,Jose Berrios,7,berrijo01,182,tier1_bbref,Automatic match via bbref_id to Jose Berrios +6415,Rafael Devers,7,deverra01,499,tier1_bbref,Automatic match via bbref_id to Rafael Devers +6416,Alex Bregman,7,bregmal01,248,tier1_bbref,Automatic match via bbref_id to Alex Bregman +6417,Kevin Kiermaier,7,kiermke01,1039,tier1_bbref,Automatic match via bbref_id to Kevin Kiermaier +6418,Adam Wainwright,7,wainwad01,2099,tier1_bbref,Automatic match via bbref_id to Adam Wainwright +6419,Jesse Chavez,7,chaveje01,370,tier1_bbref,Automatic match via bbref_id to Jesse Chavez +6420,Domingo Tapia,7,tapiado01,1956,tier1_bbref,Automatic match via bbref_id to Domingo Tapia +6421,Lucas Luetge,7,luetglu01,1164,tier1_bbref,Automatic match via bbref_id to Lucas Luetge +6422,Mark Melancon,7,melanma01,1298,tier1_bbref,Automatic match via bbref_id to Mark Melancon +6423,Keibert Ruiz,7,ruizke01,1725,tier1_bbref,Automatic match via bbref_id to Keibert Ruiz +6424,Jesus Sanchez,7,sanchje02,1749,tier1_bbref,Automatic match via bbref_id to Jesus Sanchez +6425,Dylan Carlson,7,carlsdy01,327,tier1_bbref,Automatic match via bbref_id to Dylan Carlson +6426,Andrew Kittredge,7,kittran01,1057,tier1_bbref,Automatic match via bbref_id to Andrew Kittredge +6427,Taylor Walls,7,wallsta01,2110,tier1_bbref,Automatic match via bbref_id to Taylor Walls +6428,Justin Dunn,7,dunnju01,546,tier1_bbref,Automatic match via bbref_id to Justin Dunn +6429,Tyler Matzek,7,matzety01,1244,tier1_bbref,Automatic match via bbref_id to Tyler Matzek +6430,Jose Urquidy,7,urquijo01,2041,tier1_bbref,Automatic match via bbref_id to Jose Urquidy +6431,Enrique Hernandez,7,hernaen02,871,tier1_bbref,Automatic match via bbref_id to Enrique Hernandez +6432,Yordan Alvarez,7,alvaryo01,61,tier1_bbref,Automatic match via bbref_id to Yordan Alvarez +6433,Myles Straw,7,strawmy01,1924,tier1_bbref,Automatic match via bbref_id to Myles Straw +6434,Whit Merrifield,7,merriwh01,1309,tier1_bbref,Automatic match via bbref_id to Whit Merrifield +6435,Christian Arroyo,7,arroych01,96,tier1_bbref,Automatic match via bbref_id to Christian Arroyo +6436,Joe Musgrove,7,musgrjo01,1394,tier1_bbref,Automatic match via bbref_id to Joe Musgrove +6437,Richard Rodriguez,7,rodriri05,1674,tier1_bbref,Automatic match via bbref_id to Richard Rodriguez +6438,Jimmy Nelson,7,nelsoji02,1409,tier1_bbref,Automatic match via bbref_id to Jimmy Nelson +6439,Matt Duffy,7,duffyma01,542,tier1_bbref,Automatic match via bbref_id to Matt Duffy +6440,Ozzie Albies,7,albieoz01,31,tier1_bbref,Automatic match via bbref_id to Ozzie Albies +6441,Jazz Chisholm,7,chishja01,375,tier1_bbref,Automatic match via bbref_id to Jazz Chisholm +6442,Luis Cessa,7,cessalu01,361,tier1_bbref,Automatic match via bbref_id to Luis Cessa +6443,Michael Brantley,7,brantmi02,240,tier1_bbref,Automatic match via bbref_id to Michael Brantley +6444,Drew Smith,7,smithdr01,1848,tier1_bbref,Automatic match via bbref_id to Drew Smith +6445,Tyler Alexander,7,alexaty01,37,tier1_bbref,Automatic match via bbref_id to Tyler Alexander +6446,Michael Kopech,7,kopecmi01,1071,tier1_bbref,Automatic match via bbref_id to Michael Kopech +6447,Dillon Maples,7,mapledi01,1195,tier1_bbref,Automatic match via bbref_id to Dillon Maples +6448,Miguel Rojas,7,rojasmi02,1694,tier1_bbref,Automatic match via bbref_id to Miguel Rojas +6449,Ketel Marte,7,marteke01,1210,tier1_bbref,Automatic match via bbref_id to Ketel Marte +6450,Jared Walsh,7,walshja01,2111,tier1_bbref,Automatic match via bbref_id to Jared Walsh +6451,Ryan Pressly,7,pressry01,1584,tier1_bbref,Automatic match via bbref_id to Ryan Pressly +6452,Devin Williams,7,willide03,2158,tier1_bbref,Automatic match via bbref_id to Devin Williams +6453,Marco Gonzales,7,gonzama02,735,tier1_bbref,Automatic match via bbref_id to Marco Gonzales +6454,JD Martinez,7,martijd02,1229,tier1_bbref,Automatic match via bbref_id to JD Martinez +6455,Tyler Rogers,7,rogerty01,1691,tier1_bbref,Automatic match via bbref_id to Tyler Rogers +6456,Tyler Stephenson,7,stephty01,1905,tier1_bbref,Automatic match via bbref_id to Tyler Stephenson +6457,Alex Cobb,7,cobbal01,394,tier1_bbref,Automatic match via bbref_id to Alex Cobb +6458,Ryan Tepera,7,teperry01,1974,tier1_bbref,Automatic match via bbref_id to Ryan Tepera +6459,Mike Yastrzemski,7,yastrmi01,2210,tier1_bbref,Automatic match via bbref_id to Mike Yastrzemski +6460,Jose Alvarez,7,alvarjo02,59,tier1_bbref,Automatic match via bbref_id to Jose Alvarez +6461,Austin Nola,7,nolaau01,1432,tier1_bbref,Automatic match via bbref_id to Austin Nola +6462,Lorenzo Cain,7,cainlo01,305,tier1_bbref,Automatic match via bbref_id to Lorenzo Cain +6463,Sean Manaea,7,manaese01,1189,tier1_bbref,Automatic match via bbref_id to Sean Manaea +6464,Bryan De La Cruz,7,delacbr01,479,tier1_bbref,Automatic match via bbref_id to Bryan De La Cruz +6465,Alcides Escobar,7,escobal02,580,tier1_bbref,Automatic match via bbref_id to Alcides Escobar +6466,Eric Lauer,7,lauerer01,1096,tier1_bbref,Automatic match via bbref_id to Eric Lauer +6467,Jose Abreu,7,abreujo02,7,tier1_bbref,Automatic match via bbref_id to Jose Abreu +6468,Akil Baddoo,7,baddoak01,109,tier1_bbref,Automatic match via bbref_id to Akil Baddoo +6469,Rhys Hoskins,7,hoskirh01,925,tier1_bbref,Automatic match via bbref_id to Rhys Hoskins +6470,Joel Payamps,7,payamjo01,1507,tier1_bbref,Automatic match via bbref_id to Joel Payamps +6471,Mitch Haniger,7,hanigmi01,818,tier1_bbref,Automatic match via bbref_id to Mitch Haniger +6472,Tyler Mahle,7,mahlety01,1183,tier1_bbref,Automatic match via bbref_id to Tyler Mahle +6473,Andrew Benintendi,7,beninan01,177,tier1_bbref,Automatic match via bbref_id to Andrew Benintendi +6474,Chris Taylor,7,tayloch03,1964,tier1_bbref,Automatic match via bbref_id to Chris Taylor +6475,Steven Duggar,7,duggast01,543,tier1_bbref,Automatic match via bbref_id to Steven Duggar +6476,Jake Meyers,7,meyerja02,1315,tier1_bbref,Automatic match via bbref_id to Jake Meyers +6477,Leury Garcia,7,garcile02,679,tier1_bbref,Automatic match via bbref_id to Leury Garcia +6478,Joe Barlow,7,barlojo01,129,tier1_bbref,Automatic match via bbref_id to Joe Barlow +6479,Ryan Zimmerman,7,zimmery01,2229,tier1_bbref,Automatic match via bbref_id to Ryan Zimmerman +6480,Garrett Cooper,7,coopega03,415,tier1_bbref,Automatic match via bbref_id to Garrett Cooper +6481,Corey Knebel,7,knebeco01,1063,tier1_bbref,Automatic match via bbref_id to Corey Knebel +6482,Connor Brogdon,7,brogdco01,261,tier1_bbref,Automatic match via bbref_id to Connor Brogdon +6483,Dylan Cease,7,ceasedy01,355,tier1_bbref,Automatic match via bbref_id to Dylan Cease +6484,Nick Pivetta,7,pivetni01,1564,tier1_bbref,Automatic match via bbref_id to Nick Pivetta +6485,Luis H Garcia,7,garcilu05,3244,manual_new,Manual assignment to new SbaPlayer: Luis H Garcia +6486,Robbie Grossman,7,grossro01,779,tier1_bbref,Automatic match via bbref_id to Robbie Grossman +6487,German Marquez,7,marquge01,1204,tier1_bbref,Automatic match via bbref_id to German Marquez +6488,Nelson Cruz,7,cruzne02,447,tier1_bbref,Automatic match via bbref_id to Nelson Cruz +6489,Aroldis Chapman,7,chapmar01,366,tier1_bbref,Automatic match via bbref_id to Aroldis Chapman +6490,Ha Seong Kim,7,kimha01,1042,tier1_bbref,Automatic match via bbref_id to Ha Seong Kim +6491,Huascar Ynoa,7,ynoahu01,2215,tier1_bbref,Automatic match via bbref_id to Huascar Ynoa +6492,Kyle Muller,7,mulleky01,1380,tier1_bbref,Automatic match via bbref_id to Kyle Muller +6493,Riley Adams,7,adamsri03,17,tier1_bbref,Automatic match via bbref_id to Riley Adams +6494,Pablo Reyes,7,reyespa01,1637,tier1_bbref,Automatic match via bbref_id to Pablo Reyes +6495,Hector Neris,7,nerishe01,1413,tier1_bbref,Automatic match via bbref_id to Hector Neris +6496,Hunter Renfroe,7,renfrhu01,1631,tier1_bbref,Automatic match via bbref_id to Hunter Renfroe +6497,Reynaldo Lopez,7,lopezre01,1145,tier1_bbref,Automatic match via bbref_id to Reynaldo Lopez +6498,Will Smith,7,smithwi04,1843,tier1_bbref,Automatic match via bbref_id to Will Smith +6499,Eduardo Escobar,7,escobed01,581,tier1_bbref,Automatic match via bbref_id to Eduardo Escobar +6500,Mark Canha,7,canhama01,316,tier1_bbref,Automatic match via bbref_id to Mark Canha +6501,Ian Kennedy,7,kenneia01,1029,tier1_bbref,Automatic match via bbref_id to Ian Kennedy +6502,Kodi Whitley,7,whitlko01,2145,tier1_bbref,Automatic match via bbref_id to Kodi Whitley +6503,Tyler Wells,7,wellsty01,2132,tier1_bbref,Automatic match via bbref_id to Tyler Wells +6504,Paul Sewald,7,sewalpa01,1806,tier1_bbref,Automatic match via bbref_id to Paul Sewald +6505,Jameson Taillon,7,taillja01,1954,tier1_bbref,Automatic match via bbref_id to Jameson Taillon +6506,Matt Vierling,7,vierlma01,2077,tier1_bbref,Automatic match via bbref_id to Matt Vierling +6507,Wilmer Flores,7,florewi01,627,tier1_bbref,Automatic match via bbref_id to Wilmer Flores +6508,Joe Ryan,7,ryanjo04,1732,tier1_bbref,Automatic match via bbref_id to Joe Ryan +6509,Alex Avila,7,avilaal01,104,tier1_bbref,Automatic match via bbref_id to Alex Avila +6510,Adrian Houser,7,housead01,928,tier1_bbref,Automatic match via bbref_id to Adrian Houser +6511,Adam Cimber,7,cimbead01,380,tier1_bbref,Automatic match via bbref_id to Adam Cimber +6512,Lane Thomas,7,thomala02,1978,tier1_bbref,Automatic match via bbref_id to Lane Thomas +6513,Yadier Molina,7,molinya01,1344,tier1_bbref,Automatic match via bbref_id to Yadier Molina +6514,JD Davis,7,davisjd01,474,tier1_bbref,Automatic match via bbref_id to JD Davis +6515,Ryan Thompson,7,thompry02,1983,tier1_bbref,Automatic match via bbref_id to Ryan Thompson +6516,Josh Harrison,7,harrijo05,829,tier1_bbref,Automatic match via bbref_id to Josh Harrison +6517,Manny Pina,7,pinama01,1558,tier1_bbref,Automatic match via bbref_id to Manny Pina +6518,Lewin Diaz,7,diazle01,506,tier1_bbref,Automatic match via bbref_id to Lewin Diaz +6519,Scott Barlow,7,barlosc01,128,tier1_bbref,Automatic match via bbref_id to Scott Barlow +6520,Dylan Floro,7,florody01,629,tier1_bbref,Automatic match via bbref_id to Dylan Floro +6521,Ashton Goudeau,7,goudeas01,759,tier1_bbref,Automatic match via bbref_id to Ashton Goudeau +6522,Jake Cousins,7,cousija01,424,tier1_bbref,Automatic match via bbref_id to Jake Cousins +6523,Nathaniel Lowe,7,lowena01,1155,tier1_bbref,Automatic match via bbref_id to Nathaniel Lowe +6524,Zach Eflin,7,eflinza01,562,tier1_bbref,Automatic match via bbref_id to Zach Eflin +6525,Charlie Culberson,7,culbech01,453,tier1_bbref,Automatic match via bbref_id to Charlie Culberson +6526,Josh Staumont,7,staumjo01,1897,tier1_bbref,Automatic match via bbref_id to Josh Staumont +6527,Josh Rogers,7,rogerjo01,1690,tier1_bbref,Automatic match via bbref_id to Josh Rogers +6528,KeBryan Hayes,7,hayeske01,838,tier1_bbref,Automatic match via bbref_id to KeBryan Hayes +6529,Manuel Margot,7,margoma01,1198,tier1_bbref,Automatic match via bbref_id to Manuel Margot +6530,Alex Verdugo,7,verdual01,2069,tier1_bbref,Automatic match via bbref_id to Alex Verdugo +6531,Tyrone Taylor,7,tayloty01,1965,tier1_bbref,Automatic match via bbref_id to Tyrone Taylor +6532,Mike Brosseau,7,brossmi01,263,tier1_bbref,Automatic match via bbref_id to Mike Brosseau +6533,Cristian Javier,7,javiecr01,971,tier1_bbref,Automatic match via bbref_id to Cristian Javier +6534,Camilo Doval,7,dovalca01,529,tier1_bbref,Automatic match via bbref_id to Camilo Doval +6535,Noe Ramirez,7,ramirno01,1606,tier1_bbref,Automatic match via bbref_id to Noe Ramirez +6536,Austin Hays,7,haysau01,839,tier1_bbref,Automatic match via bbref_id to Austin Hays +6537,Gregory Soto,7,sotogr01,1878,tier1_bbref,Automatic match via bbref_id to Gregory Soto +6538,Matt Barnes,7,barnema01,131,tier1_bbref,Automatic match via bbref_id to Matt Barnes +6539,Adrian Sampson,7,sampsad01,1742,tier1_bbref,Automatic match via bbref_id to Adrian Sampson +6540,Chris Stratton,7,stratch01,1922,tier1_bbref,Automatic match via bbref_id to Chris Stratton +6541,Luke Jackson,7,jackslu01,960,tier1_bbref,Automatic match via bbref_id to Luke Jackson +6542,Chris Rodriguez,7,rodrich01,1681,tier1_bbref,Automatic match via bbref_id to Chris Rodriguez +6543,Bradley Zimmer,7,zimmebr01,2227,tier1_bbref,Automatic match via bbref_id to Bradley Zimmer +6544,Giovanny Gallegos,7,gallegi01,672,tier1_bbref,Automatic match via bbref_id to Giovanny Gallegos +6545,Phil Bickford,7,bickfph01,191,tier1_bbref,Automatic match via bbref_id to Phil Bickford +6546,Franmil Reyes,7,reyesfr01,1634,tier1_bbref,Automatic match via bbref_id to Franmil Reyes +6547,Steven Matz,7,matzst01,1243,tier1_bbref,Automatic match via bbref_id to Steven Matz +6548,Kyle Lewis,7,lewisky01,1118,tier1_bbref,Automatic match via bbref_id to Kyle Lewis +6549,Lucas Gilbreath,7,gilbrlu01,719,tier1_bbref,Automatic match via bbref_id to Lucas Gilbreath +6550,Brendan Rodgers,7,rodgebr02,1668,tier1_bbref,Automatic match via bbref_id to Brendan Rodgers +6551,Jonathan Villar,7,villajo01,2079,tier1_bbref,Automatic match via bbref_id to Jonathan Villar +6552,Austin Meadows,7,meadoau01,1290,tier1_bbref,Automatic match via bbref_id to Austin Meadows +6553,Omar Narvaez,7,narvaom01,1401,tier1_bbref,Automatic match via bbref_id to Omar Narvaez +6554,Dillon Tate,7,tatedi01,1959,tier1_bbref,Automatic match via bbref_id to Dillon Tate +6555,Jordan Montgomery,7,montgjo01,1356,tier1_bbref,Automatic match via bbref_id to Jordan Montgomery +6556,Richard Bleier,7,bleieri01,212,tier1_bbref,Automatic match via bbref_id to Richard Bleier +6557,Andrelton Simmons,7,simmoan01,1825,tier1_bbref,Automatic match via bbref_id to Andrelton Simmons +6558,Wily Peralta,7,peralwi01,1523,tier1_bbref,Automatic match via bbref_id to Wily Peralta +6559,Isiah Kiner Falefa,7,kineris01,1044,tier1_bbref,Automatic match via bbref_id to Isiah Kiner Falefa +6560,Aaron Nola,7,nolaaa01,1433,tier1_bbref,Automatic match via bbref_id to Aaron Nola +6561,Jordan Sheffield,7,sheffjo01,1812,tier1_bbref,Automatic match via bbref_id to Jordan Sheffield +6562,Jeff McNeil,7,mcneije01,1287,tier1_bbref,Automatic match via bbref_id to Jeff McNeil +6563,Yonny Hernandez,7,hernayo02,878,tier1_bbref,Automatic match via bbref_id to Yonny Hernandez +6564,Carlos Hernandez,7,hernaca04,880,tier1_bbref,Automatic match via bbref_id to Carlos Hernandez +6565,Chasen Shreve,7,shrevch01,1819,tier1_bbref,Automatic match via bbref_id to Chasen Shreve +6566,Donovan Solano,7,solando01,1868,tier1_bbref,Automatic match via bbref_id to Donovan Solano +6567,Madison Bumgarner,7,bumgama01,278,tier1_bbref,Automatic match via bbref_id to Madison Bumgarner +6568,Starlin Castro,7,castrst01,348,tier1_bbref,Automatic match via bbref_id to Starlin Castro +6569,Anthony Bender,7,bendean01,176,tier1_bbref,Automatic match via bbref_id to Anthony Bender +6570,LaMonte Wade Jr,7,wadela01,2095,tier1_bbref,Automatic match via bbref_id to LaMonte Wade Jr +6571,TJ McFarland,7,mcfartj01,1273,tier1_bbref,Automatic match via bbref_id to TJ McFarland +6572,Shane McClanahan,7,mcclash01,1268,tier1_bbref,Automatic match via bbref_id to Shane McClanahan +6573,Trevor Richards,7,richatr01,1646,tier1_bbref,Automatic match via bbref_id to Trevor Richards +6574,Eduardo Rodriguez,7,rodried05,1675,tier1_bbref,Automatic match via bbref_id to Eduardo Rodriguez +6575,Zach Thompson,7,thompza01,1981,tier1_bbref,Automatic match via bbref_id to Zach Thompson +6576,Tyler Duffey,7,duffety01,540,tier1_bbref,Automatic match via bbref_id to Tyler Duffey +6577,Freddy Galvis,7,galvifr01,675,tier1_bbref,Automatic match via bbref_id to Freddy Galvis +6578,Aledmys Diaz,7,diazal02,505,tier1_bbref,Automatic match via bbref_id to Aledmys Diaz +6579,Diego Castillo,7,castidi01,345,tier1_bbref,Automatic match via bbref_id to Diego Castillo +6580,Eric Haase,7,haaseer01,801,tier1_bbref,Automatic match via bbref_id to Eric Haase +6581,Lourdes Gurriel Jr,7,gurrilo01,794,tier1_bbref,Automatic match via bbref_id to Lourdes Gurriel Jr +6582,Caleb Thielbar,7,thielca01,1977,tier1_bbref,Automatic match via bbref_id to Caleb Thielbar +6583,Ian Happ,7,happia01,820,tier1_bbref,Automatic match via bbref_id to Ian Happ +6584,Jose Suarez,7,suarejo01,1937,tier1_bbref,Automatic match via bbref_id to Jose Suarez +6585,Alex Wood,7,woodal02,2193,tier1_bbref,Automatic match via bbref_id to Alex Wood +6586,Clay Holmes,7,holmecl01,919,tier1_bbref,Automatic match via bbref_id to Clay Holmes +6587,Jonathan Schoop,7,schoojo01,1779,tier1_bbref,Automatic match via bbref_id to Jonathan Schoop +6588,Billy Hamilton,7,hamilbi02,810,tier1_bbref,Automatic match via bbref_id to Billy Hamilton +6589,Yandy Diaz,7,diazya01,507,tier1_bbref,Automatic match via bbref_id to Yandy Diaz +6590,Brian Anderson,7,anderbr06,69,tier1_bbref,Automatic match via bbref_id to Brian Anderson +6591,Merrill Kelly,7,kellyme01,1020,tier1_bbref,Automatic match via bbref_id to Merrill Kelly +6592,Adalberto Mondesi,7,mondera02,1349,tier1_bbref,Automatic match via bbref_id to Adalberto Mondesi +6593,Anthony Rizzo,7,rizzoan01,1658,tier1_bbref,Automatic match via bbref_id to Anthony Rizzo +6594,Ji Man Choi,7,choiji01,377,tier1_bbref,Automatic match via bbref_id to Ji Man Choi +6595,Tarik Skubal,7,skubata01,1836,tier1_bbref,Automatic match via bbref_id to Tarik Skubal +6596,Dansby Swanson,7,swansda01,1947,tier1_bbref,Automatic match via bbref_id to Dansby Swanson +6597,Dillon Peters,7,peterdi01,1544,tier1_bbref,Automatic match via bbref_id to Dillon Peters +6598,Ryan Burr,7,burrry01,287,tier1_bbref,Automatic match via bbref_id to Ryan Burr +6599,James Karinchak,7,karinja01,1009,tier1_bbref,Automatic match via bbref_id to James Karinchak +6600,Alejandro Kirk,7,kirkal01,1056,tier1_bbref,Automatic match via bbref_id to Alejandro Kirk +6601,Michael A Taylor,7,taylomi02,1963,tier1_bbref,Automatic match via bbref_id to Michael Taylor +6602,Kyle Freeland,7,freelky01,650,tier1_bbref,Automatic match via bbref_id to Kyle Freeland +6603,Mychal Givens,7,givenmy01,725,tier1_bbref,Automatic match via bbref_id to Mychal Givens +6604,Tres Barrera,7,barretr01,137,tier1_bbref,Automatic match via bbref_id to Tres Barrera +6605,James Kaprielian,7,kaprija01,1008,tier1_bbref,Automatic match via bbref_id to James Kaprielian +6606,Blake Snell,7,snellbl01,1861,tier1_bbref,Automatic match via bbref_id to Blake Snell +6607,Steve Cishek,7,cishest01,381,tier1_bbref,Automatic match via bbref_id to Steve Cishek +6608,Yusei Kikuchi,7,kikucyu01,1040,tier1_bbref,Automatic match via bbref_id to Yusei Kikuchi +6609,Jon Gray,7,grayjo02,766,tier1_bbref,Automatic match via bbref_id to Jon Gray +6610,Austin Slater,7,slateau01,1838,tier1_bbref,Automatic match via bbref_id to Austin Slater +6611,Seth Brown,7,brownse01,265,tier1_bbref,Automatic match via bbref_id to Seth Brown +6612,Jhoulys Chacin,7,chacijh01,362,tier1_bbref,Automatic match via bbref_id to Jhoulys Chacin +6613,Jesus Aguilar,7,aguilje01,25,tier1_bbref,Automatic match via bbref_id to Jesus Aguilar +6614,Corey Kluber,7,klubeco01,1060,tier1_bbref,Automatic match via bbref_id to Corey Kluber +6615,Justin Steele,7,steelju01,1899,tier1_bbref,Automatic match via bbref_id to Justin Steele +6616,Yohan Ramirez,7,ramiryo01,1611,tier1_bbref,Automatic match via bbref_id to Yohan Ramirez +6617,Brad Boxberger,7,boxbebr01,229,tier1_bbref,Automatic match via bbref_id to Brad Boxberger +6618,Craig Stammen,7,stammcr01,1891,tier1_bbref,Automatic match via bbref_id to Craig Stammen +6619,Tim Mayza,7,mayzati01,1253,tier1_bbref,Automatic match via bbref_id to Tim Mayza +6620,Jose Ruiz,7,ruizjo01,1724,tier1_bbref,Automatic match via bbref_id to Jose Ruiz +6621,David Fletcher,7,fletcda02,624,tier1_bbref,Automatic match via bbref_id to David Fletcher +6622,Anthony Alford,7,alforan01,41,tier1_bbref,Automatic match via bbref_id to Anthony Alford +6623,JT Chargois,7,chargjt01,368,tier1_bbref,Automatic match via bbref_id to JT Chargois +6624,Jake McGee,7,mcgeeja01,1274,tier1_bbref,Automatic match via bbref_id to Jake McGee +6625,Josh Taylor,7,taylojo02,1967,tier1_bbref,Automatic match via bbref_id to Josh Taylor +6626,Drew Pomeranz,7,pomerdr01,1572,tier1_bbref,Automatic match via bbref_id to Drew Pomeranz +6627,Keegan Thompson,7,thompke02,1982,tier1_bbref,Automatic match via bbref_id to Keegan Thompson +6628,Hyun Jin Ryu,7,ryuhy01,1733,tier1_bbref,Automatic match via bbref_id to Hyun Jin Ryu +6629,Lou Trivino,7,trivilo01,2016,tier1_bbref,Automatic match via bbref_id to Lou Trivino +6630,Yu Darvish,7,darviyu01,462,tier1_bbref,Automatic match via bbref_id to Yu Darvish +6631,Zach Plesac,7,plesaza01,1566,tier1_bbref,Automatic match via bbref_id to Zach Plesac +6632,Zack Littell,7,litteza01,1127,tier1_bbref,Automatic match via bbref_id to Zack Littell +6633,Vladimir Gutierrez,7,gutievl01,797,tier1_bbref,Automatic match via bbref_id to Vladimir Gutierrez +6634,Max Kepler,7,keplema01,1031,tier1_bbref,Automatic match via bbref_id to Max Kepler +6635,JP Feyereisen,7,feyerjo01,612,tier1_bbref,Automatic match via bbref_id to JP Feyereisen +6636,Luis Guillorme,7,guilllu01,792,tier1_bbref,Automatic match via bbref_id to Luis Guillorme +6637,Matthew Boyd,7,boydma01,230,tier1_bbref,Automatic match via bbref_id to Matthew Boyd +6638,Abraham Toro,7,toroab01,2001,tier1_bbref,Automatic match via bbref_id to Abraham Toro +6639,Edwin Diaz,7,diazed04,503,tier1_bbref,Automatic match via bbref_id to Edwin Diaz +6640,Joe Kelly,7,kellyjo05,1021,tier1_bbref,Automatic match via bbref_id to Joe Kelly +6641,Taylor Ward,7,wardta01,2116,tier1_bbref,Automatic match via bbref_id to Taylor Ward +6642,Travis Jankowski,7,jankotr01,967,tier1_bbref,Automatic match via bbref_id to Travis Jankowski +6643,Gavin Lux,7,luxga01,1169,tier1_bbref,Automatic match via bbref_id to Gavin Lux +6644,Caleb Baragar,7,baragca01,124,tier1_bbref,Automatic match via bbref_id to Caleb Baragar +6645,Marcos Diplan,7,diplama01,519,tier1_bbref,Automatic match via bbref_id to Marcos Diplan +6646,Christian Yelich,7,yelicch01,2212,tier1_bbref,Automatic match via bbref_id to Christian Yelich +6647,Ralph Garza,7,garzara01,704,tier1_bbref,Automatic match via bbref_id to Ralph Garza +6648,Jaime Barria,7,barrija01,141,tier1_bbref,Automatic match via bbref_id to Jaime Barria +6649,Jharel Cotton,7,cottojh01,423,tier1_bbref,Automatic match via bbref_id to Jharel Cotton +6650,Hunter Strickland,7,strichu01,1925,tier1_bbref,Automatic match via bbref_id to Hunter Strickland +6651,Cam Gallagher,7,gallaca01,670,tier1_bbref,Automatic match via bbref_id to Cam Gallagher +6652,Rich Hill,7,hillri01,898,tier1_bbref,Automatic match via bbref_id to Rich Hill +6653,Andrew McCutchen,7,mccutan01,1272,tier1_bbref,Automatic match via bbref_id to Andrew McCutchen +6654,Kwang Hyun Kim,7,kimkw01,946,tier1_bbref,Automatic match via bbref_id to Kwang Hyun Kim +6655,Alex Vesia,7,vesiaal01,2072,tier1_bbref,Automatic match via bbref_id to Alex Vesia +6656,Paul DeJong,7,dejonpa01,485,tier1_bbref,Automatic match via bbref_id to Paul DeJong +6657,Lucas Sims,7,simslu01,1826,tier1_bbref,Automatic match via bbref_id to Lucas Sims +6658,Jack Flaherty,7,flaheja01,622,tier1_bbref,Automatic match via bbref_id to Jack Flaherty +6659,Triston McKenzie,7,mckentr01,1282,tier1_bbref,Automatic match via bbref_id to Triston McKenzie +6660,Edgar Santana,7,santaed01,1763,tier1_bbref,Automatic match via bbref_id to Edgar Santana +6661,Kyle Funkhouser,7,funkhky01,668,tier1_bbref,Automatic match via bbref_id to Kyle Funkhouser +6662,Jace Peterson,7,peterja01,1547,tier1_bbref,Automatic match via bbref_id to Jace Peterson +6663,Tyler Clippard,7,clippty01,393,tier1_bbref,Automatic match via bbref_id to Tyler Clippard +6664,Andres Gimenez,7,gimenan01,721,tier1_bbref,Automatic match via bbref_id to Andres Gimenez +6665,Louis Head,7,headlo01,840,tier1_bbref,Automatic match via bbref_id to Louis Head +6666,Brandon Drury,7,drurybr01,535,tier1_bbref,Automatic match via bbref_id to Brandon Drury +6667,Oscar Mercado,7,mercaos01,1306,tier1_bbref,Automatic match via bbref_id to Oscar Mercado +6668,Kyle Farmer,7,farmeky01,598,tier1_bbref,Automatic match via bbref_id to Kyle Farmer +6669,Tony Watson,7,watsoto01,2122,tier1_bbref,Automatic match via bbref_id to Tony Watson +6670,Yacksel Rios,7,riosya01,1650,tier1_bbref,Automatic match via bbref_id to Yacksel Rios +6671,Michael King,7,kingmi01,1047,tier1_bbref,Automatic match via bbref_id to Michael King +6672,Odubel Herrera,7,herreod01,882,tier1_bbref,Automatic match via bbref_id to Odubel Herrera +6673,DJ LeMahieu,7,lemahdj01,1114,tier1_bbref,Automatic match via bbref_id to DJ LeMahieu +6674,Darwinzon Hernandez,7,hernada02,877,tier1_bbref,Automatic match via bbref_id to Darwinzon Hernandez +6675,Daniel Hudson,7,hudsoda01,933,tier1_bbref,Automatic match via bbref_id to Daniel Hudson +6676,Zack Greinke,7,greinza01,774,tier1_bbref,Automatic match via bbref_id to Zack Greinke +6677,Brett Gardner,7,gardnbr01,695,tier1_bbref,Automatic match via bbref_id to Brett Gardner +6678,Logan Gilbert,7,gilbelo01,718,tier1_bbref,Automatic match via bbref_id to Logan Gilbert +6679,Jo Adell,7,adelljo01,20,tier1_bbref,Automatic match via bbref_id to Jo Adell +6680,Pedro Severino,7,severpe01,1804,tier1_bbref,Automatic match via bbref_id to Pedro Severino +6681,Antonio Senzatela,7,senzaan01,1801,tier1_bbref,Automatic match via bbref_id to Antonio Senzatela +6682,Michael Pineda,7,pinedmi01,1560,tier1_bbref,Automatic match via bbref_id to Michael Pineda +6683,Jeff Hoffman,7,hoffmje02,910,tier1_bbref,Automatic match via bbref_id to Jeff Hoffman +6684,Luke Weaver,7,weavelu01,2124,tier1_bbref,Automatic match via bbref_id to Luke Weaver +6685,Paolo Espino,7,espinpa01,583,tier1_bbref,Automatic match via bbref_id to Paolo Espino +6686,Ryne Harper,7,harpery01,824,tier1_bbref,Automatic match via bbref_id to Ryne Harper +6687,Alex Reyes,7,reyesal02,1635,tier1_bbref,Automatic match via bbref_id to Alex Reyes +6688,Adbert Alzolay,7,alzolad01,63,tier1_bbref,Automatic match via bbref_id to Adbert Alzolay +6689,Tyler Wade,7,wadety01,2094,tier1_bbref,Automatic match via bbref_id to Tyler Wade +6690,Domingo German,7,germado01,713,tier1_bbref,Automatic match via bbref_id to Domingo German +6691,Christian Vazquez,7,vazquch01,2063,tier1_bbref,Automatic match via bbref_id to Christian Vazquez +6692,Blake Parker,7,parkebl01,1499,tier1_bbref,Automatic match via bbref_id to Blake Parker +6693,Amed Rosario,7,rosaram01,1711,tier1_bbref,Automatic match via bbref_id to Amed Rosario +6694,Mike Mayers,7,mayermi01,1251,tier1_bbref,Automatic match via bbref_id to Mike Mayers +6695,Joe Ross,7,rossjo01,1715,tier1_bbref,Automatic match via bbref_id to Joe Ross +6696,Nick Sandlin,7,sandlni01,1752,tier1_bbref,Automatic match via bbref_id to Nick Sandlin +6697,Jorge Mateo,7,mateojo01,1233,tier1_bbref,Automatic match via bbref_id to Jorge Mateo +6698,Kyle Higashioka,7,higasky01,895,tier1_bbref,Automatic match via bbref_id to Kyle Higashioka +6699,Raimel Tapia,7,tapiara01,1957,tier1_bbref,Automatic match via bbref_id to Raimel Tapia +6700,Jordan Luplow,7,luplojo01,1168,tier1_bbref,Automatic match via bbref_id to Jordan Luplow +6701,Jon Berti,7,bertijo01,183,tier1_bbref,Automatic match via bbref_id to Jon Berti +6702,Bailey Ober,7,oberba01,1447,tier1_bbref,Automatic match via bbref_id to Bailey Ober +6703,Emmanuel Rivera,7,riverem01,1657,tier1_bbref,Automatic match via bbref_id to Emmanuel Rivera +6704,Eloy Jimenez,7,jimenel02,980,tier1_bbref,Automatic match via bbref_id to Eloy Jimenez +6705,Curt Casali,7,casalcu01,334,tier1_bbref,Automatic match via bbref_id to Curt Casali +6706,Miguel Diaz,7,diazmi02,504,tier1_bbref,Automatic match via bbref_id to Miguel Diaz +6707,Robinson Chirinos,7,chiriro01,373,tier1_bbref,Automatic match via bbref_id to Robinson Chirinos +6708,Kyle Seager,7,seageky01,1793,tier1_bbref,Automatic match via bbref_id to Kyle Seager +6709,Austin Gomber,7,gombeau01,730,tier1_bbref,Automatic match via bbref_id to Austin Gomber +6710,Eric Hosmer,7,hosmeer01,926,tier1_bbref,Automatic match via bbref_id to Eric Hosmer +6711,Tyler Naquin,7,naquity01,1399,tier1_bbref,Automatic match via bbref_id to Tyler Naquin +6712,Taylor Widener,7,widenta01,2149,tier1_bbref,Automatic match via bbref_id to Taylor Widener +6713,David Price,7,priceda01,1585,tier1_bbref,Automatic match via bbref_id to David Price +6714,Charlie Blackmon,7,blackch02,205,tier1_bbref,Automatic match via bbref_id to Charlie Blackmon +6715,Bruce Zimmermann,7,zimmebr02,2231,tier1_bbref,Automatic match via bbref_id to Bruce Zimmermann +6716,Wandy Peralta,7,peralwa01,1524,tier1_bbref,Automatic match via bbref_id to Wandy Peralta +6717,Humberto Castellanos,7,castehu01,339,tier1_bbref,Automatic match via bbref_id to Humberto Castellanos +6718,Kyle McGowin,7,mcgowky01,1276,tier1_bbref,Automatic match via bbref_id to Kyle McGowin +6719,Robert Stephenson,7,stephro01,1904,tier1_bbref,Automatic match via bbref_id to Robert Stephenson +6720,Tom Murphy,7,murphto04,1388,tier1_bbref,Automatic match via bbref_id to Tom Murphy +6721,Pierce Johnson,7,johnspi01,985,tier1_bbref,Automatic match via bbref_id to Pierce Johnson +6722,Drew Smyly,7,smylydr01,1858,tier1_bbref,Automatic match via bbref_id to Drew Smyly +6723,Yusmeiro Petit,7,petityu01,1549,tier1_bbref,Automatic match via bbref_id to Yusmeiro Petit +6724,Bryan Shaw,7,shawbr01,1808,tier1_bbref,Automatic match via bbref_id to Bryan Shaw +6725,Luis Torrens,7,torrelu01,2002,tier1_bbref,Automatic match via bbref_id to Luis Torrens +6726,Eddie Rosario,7,rosared01,1710,tier1_bbref,Automatic match via bbref_id to Eddie Rosario +6727,Taylor Rogers,7,rogerta01,1689,tier1_bbref,Automatic match via bbref_id to Taylor Rogers +6728,Wil Myers,7,myerswi01,1395,tier1_bbref,Automatic match via bbref_id to Wil Myers +6729,Gary Sanchez,7,sanchga02,1746,tier1_bbref,Automatic match via bbref_id to Gary Sanchez +6730,Alex Kirilloff,7,kirilal01,1055,tier1_bbref,Automatic match via bbref_id to Alex Kirilloff +6731,Webster Rivas,7,rivaswe01,1652,tier1_bbref,Automatic match via bbref_id to Webster Rivas +6732,Caleb Smith,7,smithca03,1845,tier1_bbref,Automatic match via bbref_id to Caleb Smith +6733,Hanser Alberto,7,alberha01,30,tier1_bbref,Automatic match via bbref_id to Hanser Alberto +6734,Kris Bubic,7,bubickr01,274,tier1_bbref,Automatic match via bbref_id to Kris Bubic +6735,Dane Dunning,7,dunnida01,548,tier1_bbref,Automatic match via bbref_id to Dane Dunning +6736,Ryan Mountcastle,7,mountry01,1377,tier1_bbref,Automatic match via bbref_id to Ryan Mountcastle +6737,Gleyber Torres,7,torregl01,2003,tier1_bbref,Automatic match via bbref_id to Gleyber Torres +6738,Sam Hilliard,7,hillisa01,903,tier1_bbref,Automatic match via bbref_id to Sam Hilliard +6739,Sam Coonrod,7,coonrsa01,414,tier1_bbref,Automatic match via bbref_id to Sam Coonrod +6740,Spencer Patton,7,pattosp01,1505,tier1_bbref,Automatic match via bbref_id to Spencer Patton +6741,Nick Maton,7,matonni01,1239,tier1_bbref,Automatic match via bbref_id to Nick Maton +6742,Elieser Hernandez,7,hernael01,874,tier1_bbref,Automatic match via bbref_id to Elieser Hernandez +6743,Tommy Pham,7,phamth01,1552,tier1_bbref,Automatic match via bbref_id to Tommy Pham +6744,Tyler Anderson,7,anderty01,68,tier1_bbref,Automatic match via bbref_id to Tyler Anderson +6745,Nick Ahmed,7,ahmedni01,26,tier1_bbref,Automatic match via bbref_id to Nick Ahmed +6746,Seth Lugo,7,lugose01,1165,tier1_bbref,Automatic match via bbref_id to Seth Lugo +6747,Hirokazu Sawamura,7,sawamhi01,1769,tier1_bbref,Automatic match via bbref_id to Hirokazu Sawamura +6748,Danny Coulombe,7,couloda01,3246,manual_new,Manual assignment to new SbaPlayer: Danny Coulombe +6749,Josh Rojas,7,rojasjo01,1695,tier1_bbref,Automatic match via bbref_id to Josh Rojas +6750,Dylan Moore,7,mooredy01,1358,tier1_bbref,Automatic match via bbref_id to Dylan Moore +6751,Luis Garcia,7,garcilu03,3237,manual_new,Manual assignment to new SbaPlayer: Luis Garcia +6752,Tyler Kinley,7,kinlety01,1050,tier1_bbref,Automatic match via bbref_id to Tyler Kinley +6753,Aaron Bummer,7,bummeaa01,279,tier1_bbref,Automatic match via bbref_id to Aaron Bummer +6754,Jordan Holloway,7,hollojo01,917,tier1_bbref,Automatic match via bbref_id to Jordan Holloway +6755,Garrett Hampson,7,hampsga01,814,tier1_bbref,Automatic match via bbref_id to Garrett Hampson +6756,Kevin Pillar,7,pillake01,1557,tier1_bbref,Automatic match via bbref_id to Kevin Pillar +6757,Ehire Adrianza,7,adriaeh01,22,tier1_bbref,Automatic match via bbref_id to Ehire Adrianza +6758,Yimi Garcia,7,garciyi01,680,tier1_bbref,Automatic match via bbref_id to Yimi Garcia +6759,Miguel Castro,7,castrmi01,350,tier1_bbref,Automatic match via bbref_id to Miguel Castro +6760,Erik Swanson,7,swanser01,1948,tier1_bbref,Automatic match via bbref_id to Erik Swanson +6761,Gio Urshela,7,urshegi01,2042,tier1_bbref,Automatic match via bbref_id to Gio Urshela +6762,Reese McGuire,7,mcguire01,1277,tier1_bbref,Automatic match via bbref_id to Reese McGuire +6763,Victor Gonzalez,7,gonzavi02,743,tier1_bbref,Automatic match via bbref_id to Victor Gonzalez +6764,Sean Doolittle,7,doolise01,528,tier1_bbref,Automatic match via bbref_id to Sean Doolittle +6765,Cole Irvin,7,irvinco01,954,tier1_bbref,Automatic match via bbref_id to Cole Irvin +6766,Joey Lucchesi,7,lucchjo01,1160,tier1_bbref,Automatic match via bbref_id to Joey Lucchesi +6767,Eddy Alvarez,7,alvared01,60,tier1_bbref,Automatic match via bbref_id to Eddy Alvarez +6768,Archie Bradley,7,bradlar01,236,tier1_bbref,Automatic match via bbref_id to Archie Bradley +6769,Nick Neidert,7,neideni01,1408,tier1_bbref,Automatic match via bbref_id to Nick Neidert +6770,Mike Minor,7,minormi01,1335,tier1_bbref,Automatic match via bbref_id to Mike Minor +6771,Mauricio Dubon,7,dubonma01,538,tier1_bbref,Automatic match via bbref_id to Mauricio Dubon +6772,Trey Mancini,7,mancitr01,1190,tier1_bbref,Automatic match via bbref_id to Trey Mancini +6773,Jake Brentz,7,brentja01,251,tier1_bbref,Automatic match via bbref_id to Jake Brentz +6774,Brent Suter,7,suterbr01,1943,tier1_bbref,Automatic match via bbref_id to Brent Suter +6775,David Peralta,7,peralda01,1522,tier1_bbref,Automatic match via bbref_id to David Peralta +6776,Ryan Jeffers,7,jeffery01,975,tier1_bbref,Automatic match via bbref_id to Ryan Jeffers +6777,Ross Stripling,7,stripro01,1927,tier1_bbref,Automatic match via bbref_id to Ross Stripling +6778,Johnny Cueto,7,cuetojo01,451,tier1_bbref,Automatic match via bbref_id to Johnny Cueto +6779,Adam Ottavino,7,ottavad01,1475,tier1_bbref,Automatic match via bbref_id to Adam Ottavino +6780,Luis V Garcia,7,garcilu04,694,tier1_bbref,Automatic match via bbref_id to Luis Garcia Jr +6781,Trevor Larnach,7,larnatr01,1094,tier1_bbref,Automatic match via bbref_id to Trevor Larnach +6782,Codi Heuer,7,heuerco01,890,tier1_bbref,Automatic match via bbref_id to Codi Heuer +6783,Yonathan Daza,7,dazayo01,476,tier1_bbref,Automatic match via bbref_id to Yonathan Daza +6784,Trevor Stephan,7,stephtr01,1902,tier1_bbref,Automatic match via bbref_id to Trevor Stephan +6785,Ervin Santana,7,santaer01,1758,tier1_bbref,Automatic match via bbref_id to Ervin Santana +6786,Sergio Alcantara,7,alcanse01,34,tier1_bbref,Automatic match via bbref_id to Sergio Alcantara +6787,Nick Solak,7,solakni01,1867,tier1_bbref,Automatic match via bbref_id to Nick Solak +6788,Ryne Stanek,7,stanery01,1892,tier1_bbref,Automatic match via bbref_id to Ryne Stanek +6789,John Gant,7,gantjo01,677,tier1_bbref,Automatic match via bbref_id to John Gant +6790,Sean Nolin,7,nolinse01,1434,tier1_bbref,Automatic match via bbref_id to Sean Nolin +6791,Yermin Mercedes,7,merceye01,1307,tier1_bbref,Automatic match via bbref_id to Yermin Mercedes +6792,Miguel Sano,7,sanomi01,1757,tier1_bbref,Automatic match via bbref_id to Miguel Sano +6793,Kevin Plawecki,7,plaweke01,1565,tier1_bbref,Automatic match via bbref_id to Kevin Plawecki +6794,Tomas Nido,7,nidoto01,1424,tier1_bbref,Automatic match via bbref_id to Tomas Nido +6795,Martin Perez,7,perezma02,1535,tier1_bbref,Automatic match via bbref_id to Martin Perez +6796,Blake Taylor,7,taylobl01,1966,tier1_bbref,Automatic match via bbref_id to Blake Taylor +6797,Jose Rondon,7,rondojo02,1707,tier1_bbref,Automatic match via bbref_id to Jose Rondon +6798,Gavin Sheets,7,sheetga01,1811,tier1_bbref,Automatic match via bbref_id to Gavin Sheets +6799,Austin Barnes,7,barneau01,132,tier1_bbref,Automatic match via bbref_id to Austin Barnes +6800,Justin Garza,7,garzaju01,703,tier1_bbref,Automatic match via bbref_id to Justin Garza +6801,Jake Diekman,7,diekmja01,514,tier1_bbref,Automatic match via bbref_id to Jake Diekman +6802,Brad Miller,7,millebr02,1322,tier1_bbref,Automatic match via bbref_id to Brad Miller +6803,Tylor Megill,7,megilty01,1295,tier1_bbref,Automatic match via bbref_id to Tylor Megill +6804,Jake Odorizzi,7,odorija01,1452,tier1_bbref,Automatic match via bbref_id to Jake Odorizzi +6805,Brett Martin,7,martibr01,1218,tier1_bbref,Automatic match via bbref_id to Brett Martin +6806,Trevor May,7,maytr01,1248,tier1_bbref,Automatic match via bbref_id to Trevor May +6807,Michael Conforto,7,confomi01,407,tier1_bbref,Automatic match via bbref_id to Michael Conforto +6808,Kenta Maeda,7,maedake01,1181,tier1_bbref,Automatic match via bbref_id to Kenta Maeda +6809,Taijuan Walker,7,walketa01,2105,tier1_bbref,Automatic match via bbref_id to Taijuan Walker +6810,Jordy Mercer,7,mercejo03,1308,tier1_bbref,Automatic match via bbref_id to Jordy Mercer +6811,Touki Toussaint,7,toussto01,2005,tier1_bbref,Automatic match via bbref_id to Touki Toussaint +6812,Kyle Hendricks,7,hendrky01,856,tier1_bbref,Automatic match via bbref_id to Kyle Hendricks +6813,AJ Minter,7,minteaj01,1336,tier1_bbref,Automatic match via bbref_id to AJ Minter +6814,Kevin Newman,7,newmake01,1420,tier1_bbref,Automatic match via bbref_id to Kevin Newman +6815,Chris Martin,7,martich02,1214,tier1_bbref,Automatic match via bbref_id to Chris Martin +6816,Randal Grichuk,7,grichra01,775,tier1_bbref,Automatic match via bbref_id to Randal Grichuk +6817,Andres Machado,7,machaan02,1176,tier1_bbref,Automatic match via bbref_id to Andres Machado +6818,Robert Gsellman,7,gsellro01,782,tier1_bbref,Automatic match via bbref_id to Robert Gsellman +6819,Travis dArnaud,7,darnatr01,461,tier1_bbref,Automatic match via bbref_id to Travis dArnaud +6820,Jose Alvarado,7,alvarjo03,58,tier1_bbref,Automatic match via bbref_id to Jose Alvarado +6821,Guillermo Heredia,7,heredgu01,862,tier1_bbref,Automatic match via bbref_id to Guillermo Heredia +6822,Chad Pinder,7,pindech01,1559,tier1_bbref,Automatic match via bbref_id to Chad Pinder +6823,Cavan Biggio,7,biggica01,196,tier1_bbref,Automatic match via bbref_id to Cavan Biggio +6824,Rougned Odor,7,odorro01,1451,tier1_bbref,Automatic match via bbref_id to Rougned Odor +6825,DJ Peters,7,peterdj01,1545,tier1_bbref,Automatic match via bbref_id to DJ Peters +6826,Alex Lange,7,langeal01,1091,tier1_bbref,Automatic match via bbref_id to Alex Lange +6827,Jarrod Dyson,7,dysonja01,555,tier1_bbref,Automatic match via bbref_id to Jarrod Dyson +6828,Josh Sborz,7,sborzjo01,1770,tier1_bbref,Automatic match via bbref_id to Josh Sborz +6829,Jorge Alcala,7,alcaljo01,32,tier1_bbref,Automatic match via bbref_id to Jorge Alcala +6830,Jose Cisnero,7,cisnejo01,382,tier1_bbref,Automatic match via bbref_id to Jose Cisnero +6831,Deolis Guerra,7,guerrde01,787,tier1_bbref,Automatic match via bbref_id to Deolis Guerra +6832,Brandon Marsh,7,marshbr02,1205,tier1_bbref,Automatic match via bbref_id to Brandon Marsh +6833,Luke Voit,7,voitlu01,2087,tier1_bbref,Automatic match via bbref_id to Luke Voit +6834,Tommy La Stella,7,lasteto01,1082,tier1_bbref,Automatic match via bbref_id to Tommy La Stella +6835,JB Wendelken,7,wendejb01,2134,tier1_bbref,Automatic match via bbref_id to JB Wendelken +6836,Yu Chang,7,changyu01,364,tier1_bbref,Automatic match via bbref_id to Yu Chang +6837,Josh Naylor,7,naylojo01,1404,tier1_bbref,Automatic match via bbref_id to Josh Naylor +6838,Jeffrey Springs,7,sprinje01,1889,tier1_bbref,Automatic match via bbref_id to Jeffrey Springs +6839,Jake Woodford,7,woodfja01,2195,tier1_bbref,Automatic match via bbref_id to Jake Woodford +6840,Asdrubal Cabrera,7,cabreas01,299,tier1_bbref,Automatic match via bbref_id to Asdrubal Cabrera +6841,Jason Heyward,7,heywaja01,891,tier1_bbref,Automatic match via bbref_id to Jason Heyward +6842,Albert Abreu,7,abreual01,9,tier1_bbref,Automatic match via bbref_id to Albert Abreu +6843,Christian Walker,7,walkech02,2104,tier1_bbref,Automatic match via bbref_id to Christian Walker +6844,Elvis Andrus,7,andruel01,77,tier1_bbref,Automatic match via bbref_id to Elvis Andrus +6845,Dinelson Lamet,7,lametdi01,1090,tier1_bbref,Automatic match via bbref_id to Dinelson Lamet +6846,Bobby Bradley,7,bradlbo01,237,tier1_bbref,Automatic match via bbref_id to Bobby Bradley +6847,Kyle Crick,7,crickky01,435,tier1_bbref,Automatic match via bbref_id to Kyle Crick +6848,Wade LeBlanc,7,leblawa01,1104,tier1_bbref,Automatic match via bbref_id to Wade LeBlanc +6849,Joshua Fuentes,7,fuentjo01,664,tier1_bbref,Automatic match via bbref_id to Joshua Fuentes +6850,Carlos Estevez,7,estevca01,585,tier1_bbref,Automatic match via bbref_id to Carlos Estevez +6851,Jose Quijada,7,quijajo01,1594,tier1_bbref,Automatic match via bbref_id to Jose Quijada +6852,Tayler Saucedo,7,sauceta01,1768,tier1_bbref,Automatic match via bbref_id to Tayler Saucedo +6853,Cesar Hernandez,7,hernace02,870,tier1_bbref,Automatic match via bbref_id to Cesar Hernandez +6854,Jake Marisnick,7,marisja01,1200,tier1_bbref,Automatic match via bbref_id to Jake Marisnick +6855,Nabil Crismatt,7,crismna01,436,tier1_bbref,Automatic match via bbref_id to Nabil Crismatt +6856,Steven Brault,7,braulst01,243,tier1_bbref,Automatic match via bbref_id to Steven Brault +6857,Kyle Garlick,7,garliky01,696,tier1_bbref,Automatic match via bbref_id to Kyle Garlick +6858,Taylor Jones,7,jonesta01,992,tier1_bbref,Automatic match via bbref_id to Taylor Jones +6859,Luke Williams,7,willilu01,2159,tier1_bbref,Automatic match via bbref_id to Luke Williams +6860,Nick Gordon,7,gordoni01,752,tier1_bbref,Automatic match via bbref_id to Nick Gordon +6861,Matt Peacock,7,peacoma01,1511,tier1_bbref,Automatic match via bbref_id to Matt Peacock +6862,Ronald Torreyes,7,torrero01,2004,tier1_bbref,Automatic match via bbref_id to Ronald Torreyes +6863,Eli Morgan,7,morgael01,1369,tier1_bbref,Automatic match via bbref_id to Eli Morgan +6864,Trevor Williams,7,willitr01,2156,tier1_bbref,Automatic match via bbref_id to Trevor Williams +6865,Tucker Barnhart,7,barnhtu01,135,tier1_bbref,Automatic match via bbref_id to Tucker Barnhart +6866,JT Brubaker,7,brubajt01,269,tier1_bbref,Automatic match via bbref_id to JT Brubaker +6867,Cody Poteet,7,poteeco01,1579,tier1_bbref,Automatic match via bbref_id to Cody Poteet +6868,Corey Dickerson,7,dickeco01,513,tier1_bbref,Automatic match via bbref_id to Corey Dickerson +6869,Joe Smith,7,smithjo05,1842,tier1_bbref,Automatic match via bbref_id to Joe Smith +6870,Sean Newcomb,7,newcose01,1419,tier1_bbref,Automatic match via bbref_id to Sean Newcomb +6871,Anthony Banda,7,bandaan01,121,tier1_bbref,Automatic match via bbref_id to Anthony Banda +6918,Jake Arrieta,7,arrieja01,94,tier1_bbref,Automatic match via bbref_id to Jake Arrieta +6872,Zach Pop,7,popza01,1575,tier1_bbref,Automatic match via bbref_id to Zach Pop +6873,Victor Reyes,7,reyesvi01,1638,tier1_bbref,Automatic match via bbref_id to Victor Reyes +6874,Bobby Dalbec,7,dalbebo01,458,tier1_bbref,Automatic match via bbref_id to Bobby Dalbec +6875,Andrew Vaughn,7,vaughan01,2061,tier1_bbref,Automatic match via bbref_id to Andrew Vaughn +6876,Matt Beaty,7,beatyma01,157,tier1_bbref,Automatic match via bbref_id to Matt Beaty +6877,Bryse Wilson,7,wilsobr02,2171,tier1_bbref,Automatic match via bbref_id to Bryse Wilson +6878,Duane Underwood,7,underdu01,2033,tier1_bbref,Automatic match via bbref_id to Duane Underwood +6879,Jack Mayfield,7,mayfija01,1252,tier1_bbref,Automatic match via bbref_id to Jack Mayfield +6880,Jakob Junis,7,junisja01,1004,tier1_bbref,Automatic match via bbref_id to Jakob Junis +6881,Andrew Heaney,7,heanean01,843,tier1_bbref,Automatic match via bbref_id to Andrew Heaney +6882,Ross Detwiler,7,detwiro01,497,tier1_bbref,Automatic match via bbref_id to Ross Detwiler +6883,John Curtiss,7,curtijo02,455,tier1_bbref,Automatic match via bbref_id to John Curtiss +6884,Genesis Cabrera,7,cabrege01,301,tier1_bbref,Automatic match via bbref_id to Genesis Cabrera +6885,Garrett Richards,7,richaga01,1645,tier1_bbref,Automatic match via bbref_id to Garrett Richards +6886,Anthony Misiewicz,7,misiean01,1338,tier1_bbref,Automatic match via bbref_id to Anthony Misiewicz +6887,Luis Patino,7,patinlu01,1504,tier1_bbref,Automatic match via bbref_id to Luis Patino +6888,Yadiel Hernandez,7,hernaya01,875,tier1_bbref,Automatic match via bbref_id to Yadiel Hernandez +6889,Billy McKinney,7,mckinbi01,1283,tier1_bbref,Automatic match via bbref_id to Billy McKinney +6890,Derek Holland,7,hollade01,914,tier1_bbref,Automatic match via bbref_id to Derek Holland +6891,Austin Adams,7,adamsau02,16,tier1_bbref,Automatic match via bbref_id to Austin Adams +6892,Taylor Hearn,7,hearnta01,844,tier1_bbref,Automatic match via bbref_id to Taylor Hearn +6893,Anthony Santander,7,santaan02,1764,tier1_bbref,Automatic match via bbref_id to Anthony Santander +6894,Magneuris Sierra,7,sierrma01,1823,tier1_bbref,Automatic match via bbref_id to Magneuris Sierra +6895,Andrew Stevenson,7,stevean01,1906,tier1_bbref,Automatic match via bbref_id to Andrew Stevenson +6896,Harold Ramirez,7,ramirha02,1609,tier1_bbref,Automatic match via bbref_id to Harold Ramirez +6897,Anthony Bass,7,bassan01,145,tier1_bbref,Automatic match via bbref_id to Anthony Bass +6898,Sergio Romo,7,romose01,1705,tier1_bbref,Automatic match via bbref_id to Sergio Romo +6899,Griffin Canning,7,cannigr01,317,tier1_bbref,Automatic match via bbref_id to Griffin Canning +6900,Brock Holt,7,holtbr01,921,tier1_bbref,Automatic match via bbref_id to Brock Holt +6901,Jose Trevino,7,trevijo01,2013,tier1_bbref,Automatic match via bbref_id to Jose Trevino +6902,Chad Kuhl,7,kuhlch01,1078,tier1_bbref,Automatic match via bbref_id to Chad Kuhl +6903,Greg Holland,7,hollagr01,915,tier1_bbref,Automatic match via bbref_id to Greg Holland +6904,Brett Anderson,7,anderbr04,66,tier1_bbref,Automatic match via bbref_id to Brett Anderson +6905,Ryan OHearn,7,ohearry01,1453,tier1_bbref,Automatic match via bbref_id to Ryan OHearn +6906,Jorge Lopez,7,lopezjo02,1144,tier1_bbref,Automatic match via bbref_id to Jorge Lopez +6907,Brady Singer,7,singebr01,1827,tier1_bbref,Automatic match via bbref_id to Brady Singer +6908,Jed Lowrie,7,lowrije01,1158,tier1_bbref,Automatic match via bbref_id to Jed Lowrie +6909,Bryan Abreu,7,abreubr01,8,tier1_bbref,Automatic match via bbref_id to Bryan Abreu +6910,Keegan Akin,7,akinke01,27,tier1_bbref,Automatic match via bbref_id to Keegan Akin +6911,Kolby Allard,7,allarko01,42,tier1_bbref,Automatic match via bbref_id to Kolby Allard +6912,Logan Allen,7,allenlo01,45,tier1_bbref,Automatic match via bbref_id to Logan Allen +6913,Yency Almonte,7,almonye01,50,tier1_bbref,Automatic match via bbref_id to Yency Almonte +6914,Chase Anderson,7,anderch01,67,tier1_bbref,Automatic match via bbref_id to Chase Anderson +6915,Matt Andriese,7,andrima01,76,tier1_bbref,Automatic match via bbref_id to Matt Andriese +6916,Kohei Arihara,7,arihako01,90,tier1_bbref,Automatic match via bbref_id to Kohei Arihara +6917,Shawn Armstrong,7,armstsh01,91,tier1_bbref,Automatic match via bbref_id to Shawn Armstrong +6919,Aaron Ashby,7,ashbyaa01,98,tier1_bbref,Automatic match via bbref_id to Aaron Ashby +6920,Daniel Bard,7,bardda01,125,tier1_bbref,Automatic match via bbref_id to Daniel Bard +6921,Charlie Barnes,7,barnech01,134,tier1_bbref,Automatic match via bbref_id to Charlie Barnes +6922,Jacob Barnes,7,barneja01,133,tier1_bbref,Automatic match via bbref_id to Jacob Barnes +6923,Brandon Bielak,7,bielabr01,195,tier1_bbref,Automatic match via bbref_id to Brandon Bielak +6924,Paul Blackburn,7,blackpa01,204,tier1_bbref,Automatic match via bbref_id to Paul Blackburn +6925,Ben Bowden,7,bowdebe01,227,tier1_bbref,Automatic match via bbref_id to Ben Bowden +6926,Brad Brach,7,brachbr01,232,tier1_bbref,Automatic match via bbref_id to Brad Brach +6927,Rex Brothers,7,brothre01,264,tier1_bbref,Automatic match via bbref_id to Rex Brothers +6928,Dylan Bundy,7,bundydy01,280,tier1_bbref,Automatic match via bbref_id to Dylan Bundy +6929,Edward Cabrera,7,cabreed02,302,tier1_bbref,Automatic match via bbref_id to Edward Cabrera +6930,Trevor Cahill,7,cahiltr01,304,tier1_bbref,Automatic match via bbref_id to Trevor Cahill +6931,Paul Campbell,7,campbpa02,313,tier1_bbref,Automatic match via bbref_id to Paul Campbell +6932,Carlos Carrasco,7,carraca01,331,tier1_bbref,Automatic match via bbref_id to Carlos Carrasco +6933,Anthony Castro,7,castran02,351,tier1_bbref,Automatic match via bbref_id to Anthony Castro +6934,Tyler Chatwood,7,chatwty01,369,tier1_bbref,Automatic match via bbref_id to Tyler Chatwood +6935,Taylor Clarke,7,clarkta01,384,tier1_bbref,Automatic match via bbref_id to Taylor Clarke +6936,Alex Claudio,7,claudal01,387,tier1_bbref,Automatic match via bbref_id to Alex Claudio +6937,Sam Clay,7,claysa01,388,tier1_bbref,Automatic match via bbref_id to Sam Clay +6938,Alex Colome,7,colomal01,404,tier1_bbref,Automatic match via bbref_id to Alex Colome +6939,Patrick Corbin,7,corbipa01,416,tier1_bbref,Automatic match via bbref_id to Patrick Corbin +6940,Wil Crowe,7,crowewi01,446,tier1_bbref,Automatic match via bbref_id to Wil Crowe +6941,Zach Davies,7,davieza02,465,tier1_bbref,Automatic match via bbref_id to Zach Davies +6942,Austin Davis,7,davisau01,471,tier1_bbref,Automatic match via bbref_id to Austin Davis +6943,Wade Davis,7,daviswa01,468,tier1_bbref,Automatic match via bbref_id to Wade Davis +6944,Brett de Geus,7,degeubr01,477,tier1_bbref,Automatic match via bbref_id to Brett de Geus +6945,Chase De Jong,7,dejonch01,478,tier1_bbref,Automatic match via bbref_id to Chase De Jong +6946,Enyel De Los Santos,7,delosen01,482,tier1_bbref,Automatic match via bbref_id to Enyel De Los Santos +6947,Randy Dobnak,7,dobnara01,521,tier1_bbref,Automatic match via bbref_id to Randy Dobnak +6948,Rafael Dolis,7,dolisra01,523,tier1_bbref,Automatic match via bbref_id to Rafael Dolis +6949,Thomas Eshelman,7,eshelto01,3241,manual_new,Manual assignment to new SbaPlayer: Tom Eshelman +6950,Demarcus Evans,7,evansde01,590,tier1_bbref,Automatic match via bbref_id to DeMarcus Evans +6951,Pete Fairbanks,7,fairbpe01,592,tier1_bbref,Automatic match via bbref_id to Pete Fairbanks +6952,Bailey Falter,7,falteba01,594,tier1_bbref,Automatic match via bbref_id to Bailey Falter +6953,Jeurys Familia,7,familje01,595,tier1_bbref,Automatic match via bbref_id to Jeurys Familia +6954,Jake Faria,7,fariaja01,596,tier1_bbref,Automatic match via bbref_id to Jake Faria +6955,Buck Farmer,7,farmebu01,597,tier1_bbref,Automatic match via bbref_id to Buck Farmer +6956,Erick Fedde,7,feddeer01,600,tier1_bbref,Automatic match via bbref_id to Erick Fedde +6957,Kyle Finnegan,7,finneky01,617,tier1_bbref,Automatic match via bbref_id to Kyle Finnegan +6958,Josh Fleming,7,flemijo01,623,tier1_bbref,Automatic match via bbref_id to Josh Fleming +6959,Mike Foltynewicz,7,foltymi01,633,tier1_bbref,Automatic match via bbref_id to Mike Foltynewicz +6960,Matt Foster,7,fostema01,638,tier1_bbref,Automatic match via bbref_id to Matt Foster +6961,Paul Fry,7,frypa01,662,tier1_bbref,Automatic match via bbref_id to Paul Fry +6962,Bryan Garcia,7,garcibr01,685,tier1_bbref,Automatic match via bbref_id to Bryan Garcia +6963,Amir Garrett,7,garream01,698,tier1_bbref,Automatic match via bbref_id to Amir Garrett +6964,Braxton Garrett,7,garrebr01,701,tier1_bbref,Automatic match via bbref_id to Braxton Garrett +6965,Kevin Ginkel,7,ginkeke01,722,tier1_bbref,Automatic match via bbref_id to Kevin Ginkel +6966,Chi Chi Gonzalez,7,gonzach01,737,tier1_bbref,Automatic match via bbref_id to Chi Chi Gonzalez +6967,Brusdar Graterol,7,gratebr01,763,tier1_bbref,Automatic match via bbref_id to Brusdar Graterol +6968,Josiah Gray,7,grayjo03,767,tier1_bbref,Automatic match via bbref_id to Josiah Gray +6969,Junior Guerra,7,guerrju02,785,tier1_bbref,Automatic match via bbref_id to Junior Guerra +6970,David Hale,7,haleda02,805,tier1_bbref,Automatic match via bbref_id to David Hale +6971,Brad Hand,7,handbr01,816,tier1_bbref,Automatic match via bbref_id to Brad Hand +6972,JA Happ,7,happja01,821,tier1_bbref,Automatic match via bbref_id to JA Happ +6973,Matt Harvey,7,harvema01,835,tier1_bbref,Automatic match via bbref_id to Matt Harvey +6974,Ryan Helsley,7,helslry01,853,tier1_bbref,Automatic match via bbref_id to Ryan Helsley +6975,Heath Hembree,7,hembrhe01,854,tier1_bbref,Automatic match via bbref_id to Heath Hembree +6976,Ryan Hendrix,7,hendrry01,858,tier1_bbref,Automatic match via bbref_id to Ryan Hendrix +6977,Sam Hentges,7,hentgsa01,861,tier1_bbref,Automatic match via bbref_id to Sam Hentges +6978,Tim Hill,7,hillti01,900,tier1_bbref,Automatic match via bbref_id to Tim Hill +6979,Spencer Howard,7,howarsp01,930,tier1_bbref,Automatic match via bbref_id to Spencer Howard +6980,Sam Howard,7,howarsa01,929,tier1_bbref,Automatic match via bbref_id to Sam Howard +6981,Griffin Jax,7,jaxgr01,972,tier1_bbref,Automatic match via bbref_id to Griffin Jax +6982,Joe Jimenez,7,jimenjo02,979,tier1_bbref,Automatic match via bbref_id to Joe Jimenez +6983,Anthony Kay,7,kayan01,1012,tier1_bbref,Automatic match via bbref_id to Anthony Kay +6984,Brad Keller,7,kellebr01,1016,tier1_bbref,Automatic match via bbref_id to Brad Keller +6985,Kyle Keller,7,kelleky01,1018,tier1_bbref,Automatic match via bbref_id to Kyle Keller +6986,Mitch Keller,7,kellemi03,1017,tier1_bbref,Automatic match via bbref_id to Mitch Keller +6987,Dallas Keuchel,7,keuchda01,1035,tier1_bbref,Automatic match via bbref_id to Dallas Keuchel +6988,John King,7,kingjo01,1045,tier1_bbref,Automatic match via bbref_id to John King +6989,Brandon Kintzler,7,kintzbr01,1052,tier1_bbref,Automatic match via bbref_id to Brandon Kintzler +6990,Reiss Knehr,7,knehrre01,1064,tier1_bbref,Automatic match via bbref_id to Reiss Knehr +6991,Jackson Kowar,7,kowarja01,1072,tier1_bbref,Automatic match via bbref_id to Jackson Kowar +6992,Max Kranick,7,kranima01,1073,tier1_bbref,Automatic match via bbref_id to Max Kranick +6993,Dean Kremer,7,kremede01,1077,tier1_bbref,Automatic match via bbref_id to Dean Kremer +6994,Travis Lakins,7,lakintr01,1085,tier1_bbref,Automatic match via bbref_id to Travis Lakins +6995,Jon Lester,7,lestejo01,1117,tier1_bbref,Automatic match via bbref_id to Jon Lester +6996,Sammy Long,7,longsa01,1139,tier1_bbref,Automatic match via bbref_id to Sam Long +6997,Michael Lorenzen,7,lorenmi01,1151,tier1_bbref,Automatic match via bbref_id to Michael Lorenzen +6998,Zac Lowther,7,lowthza01,1159,tier1_bbref,Automatic match via bbref_id to Zac Lowther +6999,Jesus Luzardo,7,luzarje01,1170,tier1_bbref,Automatic match via bbref_id to Jesus Luzardo +7000,Jordan Lyles,7,lylesjo01,1171,tier1_bbref,Automatic match via bbref_id to Jordan Lyles +7001,Daniel Lynch,7,lynchda02,1172,tier1_bbref,Automatic match via bbref_id to Daniel Lynch +7002,Matt Manning,7,mannima02,1191,tier1_bbref,Automatic match via bbref_id to Matt Manning +7003,Joe Mantiply,7,mantijo01,1193,tier1_bbref,Automatic match via bbref_id to Joe Mantiply +7004,Evan Marshall,7,marshev01,1207,tier1_bbref,Automatic match via bbref_id to Evan Marshall +7005,Carlos Martinez,7,martica04,1223,tier1_bbref,Automatic match via bbref_id to Carlos Martinez +7006,Phil Maton,7,matonph01,1238,tier1_bbref,Automatic match via bbref_id to Phil Maton +7007,Chris Mazza,7,mazzach01,1257,tier1_bbref,Automatic match via bbref_id to Chris Mazza +7008,Nick Mears,7,mearsni01,1292,tier1_bbref,Automatic match via bbref_id to Nick Mears +7009,JC Mejia,7,mejiaje02,3247,manual_new,Manual assignment to new SbaPlayer: JC Mejia +7010,Keynan Middleton,7,middlke01,1316,tier1_bbref,Automatic match via bbref_id to Keynan Middleton +7011,Miles Mikolas,7,mikolmi01,1317,tier1_bbref,Automatic match via bbref_id to Miles Mikolas +7012,Andrew Miller,7,millean01,1320,tier1_bbref,Automatic match via bbref_id to Andrew Miller +7013,Alec Mills,7,millsal02,1330,tier1_bbref,Automatic match via bbref_id to Alec Mills +7014,Rafael Montero,7,montera01,1352,tier1_bbref,Automatic match via bbref_id to Rafael Montero +7015,Matt Moore,7,moorema02,1357,tier1_bbref,Automatic match via bbref_id to Matt Moore +7016,Adam Morgan,7,morgaad01,1368,tier1_bbref,Automatic match via bbref_id to Adam Morgan +7017,Patrick Murphy,7,murphpa02,1389,tier1_bbref,Automatic match via bbref_id to Patrick Murphy +7018,Tommy Nance,7,nanceto01,1398,tier1_bbref,Automatic match via bbref_id to Tommy Nance +7019,Daniel Norris,7,norrida01,1439,tier1_bbref,Automatic match via bbref_id to Daniel Norris +7020,Johan Oviedo,7,oviedjo01,1479,tier1_bbref,Automatic match via bbref_id to Johan Oviedo +7021,Chris Paddack,7,paddach01,1483,tier1_bbref,Automatic match via bbref_id to Chris Paddack +7022,Emilio Pagan,7,paganem01,1484,tier1_bbref,Automatic match via bbref_id to Emilio Pagan +7023,David Peterson,7,peterda01,1548,tier1_bbref,Automatic match via bbref_id to David Peterson +7024,Adam Plutko,7,plutkad01,1567,tier1_bbref,Automatic match via bbref_id to Adam Plutko +7025,Daniel Ponce de Leon,7,ponceda01,1574,tier1_bbref,Automatic match via bbref_id to Daniel Ponce de Leon +7026,Cody Ponce,7,ponceco01,1573,tier1_bbref,Automatic match via bbref_id to Cody Ponce +7027,Jose Quintana,7,quintjo01,1596,tier1_bbref,Automatic match via bbref_id to Jose Quintana +7028,Tanner Rainey,7,raineta01,1599,tier1_bbref,Automatic match via bbref_id to Tanner Rainey +7029,Brooks Raley,7,raleybr01,1601,tier1_bbref,Automatic match via bbref_id to Brooks Raley +7030,Erasmo Ramirez,7,ramirer02,1604,tier1_bbref,Automatic match via bbref_id to Erasmo Ramirez +7031,Hansel Robles,7,robleha01,1665,tier1_bbref,Automatic match via bbref_id to Hansel Robles +7032,Joely Rodriguez,7,rodrijo06,1673,tier1_bbref,Automatic match via bbref_id to Joely Rodriguez +7033,Michael Rucker,7,ruckemi01,1721,tier1_bbref,Automatic match via bbref_id to Michael Rucker +7034,Miguel Sanchez,7,sanchmi01,1750,tier1_bbref,Automatic match via bbref_id to Miguel Sanchez +7035,Dennis Santana,7,santade01,1762,tier1_bbref,Automatic match via bbref_id to Dennis Santana +7036,Tanner Scott,7,scottta01,1788,tier1_bbref,Automatic match via bbref_id to Tanner Scott +7037,Justus Sheffield,7,sheffju01,1813,tier1_bbref,Automatic match via bbref_id to Justus Sheffield +7038,Matt Shoemaker,7,shoemma01,1817,tier1_bbref,Automatic match via bbref_id to Matt Shoemaker +7039,Aaron Slegers,7,slegeaa01,1839,tier1_bbref,Automatic match via bbref_id to Aaron Slegers +7040,Burch Smith,7,smithbu03,1844,tier1_bbref,Automatic match via bbref_id to Burch Smith +7041,Riley Smith,7,smithri01,1850,tier1_bbref,Automatic match via bbref_id to Riley Smith +7042,Joakim Soria,7,soriajo01,1872,tier1_bbref,Automatic match via bbref_id to Joakim Soria +7043,Wander Suero,7,suerowa01,1940,tier1_bbref,Automatic match via bbref_id to Wander Suero +7044,Mason Thompson,7,thompma02,1984,tier1_bbref,Automatic match via bbref_id to Mason Thompson +7045,Trent Thornton,7,thorntr01,1988,tier1_bbref,Automatic match via bbref_id to Trent Thornton +7046,Josh Tomlin,7,tomlijo01,1996,tier1_bbref,Automatic match via bbref_id to Josh Tomlin +7047,Jose Urena,7,urenajo01,2035,tier1_bbref,Automatic match via bbref_id to Jose Urena +7048,Cesar Valdez,7,valdece01,2046,tier1_bbref,Automatic match via bbref_id to Cesar Valdez +7049,Phillips Valdez,7,valdeph01,2047,tier1_bbref,Automatic match via bbref_id to Phillips Valdez +7050,Vince Velasquez,7,velasvi01,2065,tier1_bbref,Automatic match via bbref_id to Vince Velasquez +7051,Will Vest,7,vestwi01,2074,tier1_bbref,Automatic match via bbref_id to Will Vest +7052,Austin Voth,7,vothau01,2091,tier1_bbref,Automatic match via bbref_id to Austin Voth +7053,Michael Wacha,7,wachami01,2093,tier1_bbref,Automatic match via bbref_id to Michael Wacha +7054,Andrew Wantz,7,wantzan01,2115,tier1_bbref,Automatic match via bbref_id to Andrew Wantz +7055,Spenser Watkins,7,watkisp01,2121,tier1_bbref,Automatic match via bbref_id to Spenser Watkins +7056,Ryan Weathers,7,weathry01,2123,tier1_bbref,Automatic match via bbref_id to Ryan Weathers +7057,Jacob Webb,7,webbja01,2126,tier1_bbref,Automatic match via bbref_id to Jacob Webb +7058,Alexander Wells,7,wellsal01,2133,tier1_bbref,Automatic match via bbref_id to Alexander Wells +7059,Mitch White,7,whitemi03,2143,tier1_bbref,Automatic match via bbref_id to Mitch White +7060,Rowan Wick,7,wickro01,2147,tier1_bbref,Automatic match via bbref_id to Rowan Wick +7061,Justin Wilson,7,wilsoju10,2167,tier1_bbref,Automatic match via bbref_id to Justin Wilson +7062,Dan Winkler,7,winklda01,2178,tier1_bbref,Automatic match via bbref_id to Dan Winkler +7063,Matt Wisler,7,wislema01,2183,tier1_bbref,Automatic match via bbref_id to Matt Wisler +7064,Nick Wittgren,7,wittgni01,2185,tier1_bbref,Automatic match via bbref_id to Nick Wittgren +7065,Brandon Workman,7,workmbr01,2198,tier1_bbref,Automatic match via bbref_id to Brandon Workman +7066,Hyeon jong Yang,7,yanghy01,2207,tier1_bbref,Automatic match via bbref_id to Hyeon jong Yang +7067,Ryan Yarbrough,7,yarbrry01,2208,tier1_bbref,Automatic match via bbref_id to Ryan Yarbrough +7068,Alex Young,7,youngal01,2217,tier1_bbref,Automatic match via bbref_id to Alex Young +7069,Kyle Zimmer,7,zimmeky01,2228,tier1_bbref,Automatic match via bbref_id to Kyle Zimmer +7070,Tyler Zuber,7,zuberty01,2233,tier1_bbref,Automatic match via bbref_id to Tyler Zuber +7071,Andy Young,7,youngan02,2220,tier1_bbref,Automatic match via bbref_id to Andy Young +7072,Derek Hill,7,hillde01,899,tier1_bbref,Automatic match via bbref_id to Derek Hill +7073,Albert Pujols,7,pujolal01,1591,tier1_bbref,Automatic match via bbref_id to Albert Pujols +7074,Austin Romine,7,rominau01,1704,tier1_bbref,Automatic match via bbref_id to Austin Romine +7075,Nick Senzel,7,senzeni01,1802,tier1_bbref,Automatic match via bbref_id to Nick Senzel +7076,Willi Castro,7,castrwi01,352,tier1_bbref,Automatic match via bbref_id to Willi Castro +7077,Juan Lagares,7,lagarju01,1083,tier1_bbref,Automatic match via bbref_id to Juan Lagares +7078,Jorge Alfaro,7,alfarjo01,40,tier1_bbref,Automatic match via bbref_id to Jorge Alfaro +7079,Ben Gamel,7,gamelbe01,676,tier1_bbref,Automatic match via bbref_id to Ben Gamel +7080,Rob Refsnyder,7,refsnro01,1626,tier1_bbref,Automatic match via bbref_id to Rob Refsnyder +7081,Khris Davis,7,daviskh01,469,tier1_bbref,Automatic match via bbref_id to Khris Davis +7082,Rodolfo Castro,7,castrro01,353,tier1_bbref,Automatic match via bbref_id to Rodolfo Castro +7083,Jose Iglesias,7,iglesjo01,949,tier1_bbref,Automatic match via bbref_id to Jose Iglesias +7084,Yoshi Tsutsugo,7,tsutsyo01,2021,tier1_bbref,Automatic match via bbref_id to Yoshi Tsutsugo +7085,Cristian Pache,7,pachecr01,1482,tier1_bbref,Automatic match via bbref_id to Cristian Pache +7086,Yohel Pozo,7,pozoyo01,1581,tier1_bbref,Automatic match via bbref_id to Yohel Pozo +7087,Jorge Soler,7,solerjo01,1870,tier1_bbref,Automatic match via bbref_id to Jorge Soler +7088,Victor Caratini,7,caratvi01,325,tier1_bbref,Automatic match via bbref_id to Victor Caratini +7089,Willie Calhoun,7,calhowi01,307,tier1_bbref,Automatic match via bbref_id to Willie Calhoun +7090,Lewis Brinson,7,brinsle01,258,tier1_bbref,Automatic match via bbref_id to Lewis Brinson +7091,Marwin Gonzalez,7,gonzama01,741,tier1_bbref,Automatic match via bbref_id to Marwin Gonzalez +7092,Breyvic Valera,7,valerbr01,2051,tier1_bbref,Automatic match via bbref_id to Breyvic Valera +7093,Erik Gonzalez,7,gonzaer01,742,tier1_bbref,Automatic match via bbref_id to Erik Gonzalez +7094,Michael Chavis,7,chavimi01,371,tier1_bbref,Automatic match via bbref_id to Michael Chavis +7095,Cal Raleigh,7,raleica01,1600,tier1_bbref,Automatic match via bbref_id to Cal Raleigh +7096,Alec Bohm,7,bohmal01,217,tier1_bbref,Automatic match via bbref_id to Alec Bohm +7097,Maikel Franco,7,francma02,645,tier1_bbref,Automatic match via bbref_id to Maikel Franco +7098,Phil Gosselin,7,gosseph01,757,tier1_bbref,Automatic match via bbref_id to Phil Gosselin +7099,Kelvin Gutierrez,7,gutieke01,796,tier1_bbref,Automatic match via bbref_id to Kelvin Gutierrez +7100,Dominic Smith,7,smithdo02,1849,tier1_bbref,Automatic match via bbref_id to Dominic Smith +7101,Rene Rivera,7,riverre01,1655,tier1_bbref,Automatic match via bbref_id to Rene Rivera +7102,Jonah Heim,7,heimjo01,849,tier1_bbref,Automatic match via bbref_id to Jonah Heim +7103,Willians Astudillo,7,astudwi01,101,tier1_bbref,Automatic match via bbref_id to Willians Astudillo +7104,John Nogowski,7,nogowjo01,1431,tier1_bbref,Automatic match via bbref_id to John Nogowski +7105,Stephen Piscotty,7,piscost01,1563,tier1_bbref,Automatic match via bbref_id to Stephen Piscotty +7106,Joc Pederson,7,pederjo01,1514,tier1_bbref,Automatic match via bbref_id to Joc Pederson +7107,Edward Olivares,7,olivaed02,1458,tier1_bbref,Automatic match via bbref_id to Edward Olivares +7108,Rowdy Tellez,7,tellero01,1972,tier1_bbref,Automatic match via bbref_id to Rowdy Tellez +7109,James McCann,7,mccanja02,1261,tier1_bbref,Automatic match via bbref_id to James McCann +7110,Josh Reddick,7,reddijo01,1623,tier1_bbref,Automatic match via bbref_id to Josh Reddick +7111,Kurt Suzuki,7,suzukku01,1945,tier1_bbref,Automatic match via bbref_id to Kurt Suzuki +7112,Leody Taveras,7,taverle01,1962,tier1_bbref,Automatic match via bbref_id to Leody Taveras +7113,Zach McKinstry,7,mckinza01,1284,tier1_bbref,Automatic match via bbref_id to Zach McKinstry +7114,Richie Martin,7,martiri01,1216,tier1_bbref,Automatic match via bbref_id to Richie Martin +7115,Orlando Arcia,7,arciaor01,86,tier1_bbref,Automatic match via bbref_id to Orlando Arcia +7116,Ernie Clement,7,clemeer01,391,tier1_bbref,Automatic match via bbref_id to Ernie Clement +7117,Jose Peraza,7,perazjo01,1527,tier1_bbref,Automatic match via bbref_id to Jose Peraza +7118,Aaron Hicks,7,hicksaa01,892,tier1_bbref,Automatic match via bbref_id to Aaron Hicks +7119,Justin Upton,7,uptonju01,2034,tier1_bbref,Automatic match via bbref_id to Justin Upton +7120,Luis Rengifo,7,rengilu01,1632,tier1_bbref,Automatic match via bbref_id to Luis Rengifo +7121,Pavin Smith,7,smithpa04,1851,tier1_bbref,Automatic match via bbref_id to Pavin Smith +7122,Phillip Evans,7,evansph01,589,tier1_bbref,Automatic match via bbref_id to Phillip Evans +7123,Jose Rojas,7,rojasjo02,1696,tier1_bbref,Automatic match via bbref_id to Jose Rojas +7124,Carlos Santana,7,santaca01,1759,tier1_bbref,Automatic match via bbref_id to Carlos Santana +7125,Niko Goodrum,7,goodrni01,748,tier1_bbref,Automatic match via bbref_id to Niko Goodrum +7126,Roberto Perez,7,perezro02,1538,tier1_bbref,Automatic match via bbref_id to Roberto Perez +7127,Wilmer Difo,7,difowi01,516,tier1_bbref,Automatic match via bbref_id to Wilmer Difo +7128,Jarren Duran,7,duranja01,552,tier1_bbref,Automatic match via bbref_id to Jarren Duran +7129,Austin Wynns,7,wynnsau01,2202,tier1_bbref,Automatic match via bbref_id to Austin Wynns +7130,David Bote,7,boteda01,224,tier1_bbref,Automatic match via bbref_id to David Bote +7131,Brent Rooker,7,rookebr01,1708,tier1_bbref,Automatic match via bbref_id to Brent Rooker +7132,Pat Valaika,7,valaipa01,2044,tier1_bbref,Automatic match via bbref_id to Pat Valaika +7133,Sheldon Neuse,7,neusesh01,1415,tier1_bbref,Automatic match via bbref_id to Sheldon Neuse +7134,Josh VanMeter,7,vanmejo01,2052,tier1_bbref,Automatic match via bbref_id to Josh VanMeter +7135,Shed Long,7,longsh01,1138,tier1_bbref,Automatic match via bbref_id to Shed Long +7136,Aristides Aquino,7,aquinar01,81,tier1_bbref,Automatic match via bbref_id to Aristides Aquino +7137,Miguel Andujar,7,andujmi01,78,tier1_bbref,Automatic match via bbref_id to Miguel Andujar +7138,Jake Bauers,7,bauerja01,151,tier1_bbref,Automatic match via bbref_id to Jake Bauers +7139,Miguel Cabrera,7,cabremi01,298,tier1_bbref,Automatic match via bbref_id to Miguel Cabrera +7140,Danny Mendick,7,mendida01,1302,tier1_bbref,Automatic match via bbref_id to Danny Mendick +7141,Jarred Kelenic,7,kelenja01,1015,tier1_bbref,Automatic match via bbref_id to Jarred Kelenic +7142,Martin Maldonado,7,maldoma01,1187,tier1_bbref,Automatic match via bbref_id to Martin Maldonado +7143,Daz Cameron,7,camerda01,310,tier1_bbref,Automatic match via bbref_id to Daz Cameron +7144,Ryan McKenna,7,mckenry01,1281,tier1_bbref,Automatic match via bbref_id to Ryan McKenna +7145,Hoy Park,7,parkho01,1498,tier1_bbref,Automatic match via bbref_id to Hoy Park +7146,Jake Lamb,7,lambja01,1087,tier1_bbref,Automatic match via bbref_id to Jake Lamb +7147,Will Craig,7,craigwi01,429,tier1_bbref,Automatic match via bbref_id to Will Craig +7148,Isaac Paredes,7,paredis01,1497,tier1_bbref,Automatic match via bbref_id to Isaac Paredes +7149,Aramis Garcia,7,garciar01,683,tier1_bbref,Automatic match via bbref_id to Aramis Garcia +7150,Ender Inciarte,7,inciaen01,952,tier1_bbref,Automatic match via bbref_id to Ender Inciarte +7151,Donovan Walton,7,waltodo01,2113,tier1_bbref,Automatic match via bbref_id to Donovan Walton +7152,Harold Castro,7,castrha01,349,tier1_bbref,Automatic match via bbref_id to Harold Castro +7153,William Contreras,7,contrwi02,411,tier1_bbref,Automatic match via bbref_id to William Contreras +7154,Owen Miller,7,milleow01,1327,tier1_bbref,Automatic match via bbref_id to Owen Miller +7155,Zack Collins,7,colliza01,403,tier1_bbref,Automatic match via bbref_id to Zack Collins +7156,Eugenio Suarez,7,suareeu01,1934,tier1_bbref,Automatic match via bbref_id to Eugenio Suarez +7157,Patrick Mazeika,7,mazeipa01,1255,tier1_bbref,Automatic match via bbref_id to Patrick Mazeika +7158,Andrew Velazquez,7,velazan01,2067,tier1_bbref,Automatic match via bbref_id to Andrew Velazquez +7159,Eric Sogard,7,sogarer01,1865,tier1_bbref,Automatic match via bbref_id to Eric Sogard +7160,Wilson Ramos,7,ramoswi01,1612,tier1_bbref,Automatic match via bbref_id to Wilson Ramos +7161,Anthony Rendon,7,rendoan01,1630,tier1_bbref,Automatic match via bbref_id to Anthony Rendon +7162,Stephen Vogt,7,vogtst01,2086,tier1_bbref,Automatic match via bbref_id to Stephen Vogt +7163,Marcell Ozuna,7,ozunama01,1481,tier1_bbref,Automatic match via bbref_id to Marcell Ozuna +7164,Hunter Dozier,7,doziehu01,533,tier1_bbref,Automatic match via bbref_id to Hunter Dozier +7165,Abraham Almonte,7,almonab01,49,tier1_bbref,Automatic match via bbref_id to Abraham Almonte +7166,Austin Hedges,7,hedgeau01,848,tier1_bbref,Automatic match via bbref_id to Austin Hedges +7167,Carter Kieboom,7,kieboca01,1038,tier1_bbref,Automatic match via bbref_id to Carter Kieboom +7168,Shogo Akiyama,7,akiyash01,28,tier1_bbref,Automatic match via bbref_id to Shogo Akiyama +7169,Jonathan Arauz,7,arauzjo01,84,tier1_bbref,Automatic match via bbref_id to Jonathan Arauz +7170,Grayson Greiner,7,greingr01,773,tier1_bbref,Automatic match via bbref_id to Grayson Greiner +7171,Didi Gregorius,7,gregodi01,772,tier1_bbref,Automatic match via bbref_id to Didi Gregorius +7172,Keston Hiura,7,hiurake01,905,tier1_bbref,Automatic match via bbref_id to Keston Hiura +7173,Chad Wallach,7,wallach01,2108,tier1_bbref,Automatic match via bbref_id to Chad Wallach +7174,Adam Eaton,7,eatonad02,556,tier1_bbref,Automatic match via bbref_id to Adam Eaton +7175,Mitch Moreland,7,morelmi01,1365,tier1_bbref,Automatic match via bbref_id to Mitch Moreland +7176,Kole Calhoun,7,calhoko01,306,tier1_bbref,Automatic match via bbref_id to Kole Calhoun +7177,DJ Stewart,7,stewadj01,1909,tier1_bbref,Automatic match via bbref_id to DJ Stewart +7178,Clint Frazier,7,frazicl01,649,tier1_bbref,Automatic match via bbref_id to Clint Frazier +7179,Sandy Leon,7,leonsa01,1115,tier1_bbref,Automatic match via bbref_id to Sandy Leon +7180,Victor Robles,7,roblevi01,1666,tier1_bbref,Automatic match via bbref_id to Victor Robles +7181,Seby Zavala,7,zavalse01,2223,tier1_bbref,Automatic match via bbref_id to Seby Zavala +7182,Alex Blandino,7,blandal01,210,tier1_bbref,Automatic match via bbref_id to Alex Blandino +7183,Colin Moran,7,moranco01,1360,tier1_bbref,Automatic match via bbref_id to Colin Moran +7184,Jurickson Profar,7,profaju01,1587,tier1_bbref,Automatic match via bbref_id to Jurickson Profar +7185,Gregory Polanco,7,polangr01,1569,tier1_bbref,Automatic match via bbref_id to Gregory Polanco +7186,Isan Diaz,7,diazis01,508,tier1_bbref,Automatic match via bbref_id to Isan Diaz +7187,Rio Ruiz,7,ruizri01,1723,tier1_bbref,Automatic match via bbref_id to Rio Ruiz +7188,Zack Short,7,shortza01,1818,tier1_bbref,Automatic match via bbref_id to Zack Short +7189,Franchy Cordero,7,cordefr02,418,tier1_bbref,Automatic match via bbref_id to Franchy Cordero +7190,Tim Locastro,7,locasti01,1133,tier1_bbref,Automatic match via bbref_id to Tim Locastro +7191,Jackie Bradley Jr,7,bradlja02,239,tier1_bbref,Automatic match via bbref_id to Jackie Bradley Jr +7192,Daniel Vogelbach,7,vogelda01,2085,tier1_bbref,Automatic match via bbref_id to Daniel Vogelbach +7193,Daniel Johnson,7,johnsda07,988,tier1_bbref,Automatic match via bbref_id to Daniel Johnson +7194,Jason Vosler,7,vosleja01,2090,tier1_bbref,Automatic match via bbref_id to Jason Vosler +7195,Danny Santana,7,santada01,1760,tier1_bbref,Automatic match via bbref_id to Danny Santana +7196,Alex Dickerson,7,dickeal01,512,tier1_bbref,Automatic match via bbref_id to Alex Dickerson +7197,Travis Shaw,7,shawtr01,1809,tier1_bbref,Automatic match via bbref_id to Travis Shaw +7198,Eli White,7,whiteel04,2140,tier1_bbref,Automatic match via bbref_id to Eli White +7199,Cody Bellinger,7,bellico01,170,tier1_bbref,Automatic match via bbref_id to Cody Bellinger +7200,Dom Nunez,7,nunezdo01,1444,tier1_bbref,Automatic match via bbref_id to Dom Nunez +7201,Michael Perez,7,perezmi03,1539,tier1_bbref,Automatic match via bbref_id to Michael Perez +7202,Daniel Robertson,7,roberda10,1663,tier1_bbref,Automatic match via bbref_id to Daniel Robertson +7203,Sam Haggerty,7,haggesa01,803,tier1_bbref,Automatic match via bbref_id to Sam Haggerty +7204,Evan White,7,whiteev01,2142,tier1_bbref,Automatic match via bbref_id to Evan White +7205,Cole Tucker,7,tuckeco01,2022,tier1_bbref,Automatic match via bbref_id to Cole Tucker +7206,Gerardo Parra,7,parrage01,1501,tier1_bbref,Automatic match via bbref_id to Gerardo Parra +7207,David Dahl,7,dahlda01,457,tier1_bbref,Automatic match via bbref_id to David Dahl +7208,Ben Rortvedt,7,rortvbe01,1709,tier1_bbref,Automatic match via bbref_id to Ben Rortvedt +7209,Kean Wong,7,wongke01,2190,tier1_bbref,Automatic match via bbref_id to Kean Wong +7210,Kaai Tom,7,tomka01,1995,tier1_bbref,Automatic match via bbref_id to Kaai Tom +7211,Pablo Sandoval,7,sandopa01,1753,tier1_bbref,Automatic match via bbref_id to Pablo Sandoval +7212,Jahmai Jones,7,jonesja08,993,tier1_bbref,Automatic match via bbref_id to Jahmai Jones +7213,Jonathan Davis,7,davisjo05,470,tier1_bbref,Automatic match via bbref_id to Jonathan Davis +7214,Mike Moustakas,7,moustmi01,1378,tier1_bbref,Automatic match via bbref_id to Mike Moustakas +7215,Taylor Trammell,7,trammta01,2008,tier1_bbref,Automatic match via bbref_id to Taylor Trammell +7216,Kevan Smith,7,smithke04,1847,tier1_bbref,Automatic match via bbref_id to Kevan Smith +7217,Andrew Romine,7,rominan01,1703,tier1_bbref,Automatic match via bbref_id to Andrew Romine +7218,Mike Tauchman,7,tauchmi01,1961,tier1_bbref,Automatic match via bbref_id to Mike Tauchman +7219,Brian Goodwin,7,goodwbr01,749,tier1_bbref,Automatic match via bbref_id to Brian Goodwin +7220,Justin Williams,7,williju02,2162,tier1_bbref,Automatic match via bbref_id to Justin Williams +7221,Jake Cave,7,caveja01,354,tier1_bbref,Automatic match via bbref_id to Jake Cave +7222,Robel Garcia,7,garciro02,682,tier1_bbref,Automatic match via bbref_id to Robel Garcia +7223,Joe Panik,7,panikjo01,1493,tier1_bbref,Automatic match via bbref_id to Joe Panik +7224,JaCoby Jones,7,jonesja07,991,tier1_bbref,Automatic match via bbref_id to JaCoby Jones +7225,Max Schrock,7,schroma01,1781,tier1_bbref,Automatic match via bbref_id to Max Schrock +7226,Jason Martin,7,martija03,1217,tier1_bbref,Automatic match via bbref_id to Jason Martin +7227,Luke Raley,7,raleylu01,1602,tier1_bbref,Automatic match via bbref_id to Luke Raley +7228,Ildemaro Vargas,7,vargail01,2054,tier1_bbref,Automatic match via bbref_id to Ildemaro Vargas +7229,Nomar Mazara,7,mazarno01,1254,tier1_bbref,Automatic match via bbref_id to Nomar Mazara +7230,Matt Carpenter,7,carpema01,329,tier1_bbref,Automatic match via bbref_id to Matt Carpenter +7231,Andrew Knizner,7,kniznan01,1065,tier1_bbref,Automatic match via bbref_id to Andrew Knizner +7232,Mike Ford,7,fordmi01,635,tier1_bbref,Automatic match via bbref_id to Mike Ford +7233,Jose Marmolejos,7,marmojo01,1203,tier1_bbref,Automatic match via bbref_id to Jose Marmolejos +7234,Stevie Wilkerson,7,wilkest01,2153,tier1_bbref,Automatic match via bbref_id to Stevie Wilkerson +7235,Alex Jackson,7,jacksal02,961,tier1_bbref,Automatic match via bbref_id to Alex Jackson +7236,Domingo Leyba,7,leybado01,1120,tier1_bbref,Automatic match via bbref_id to Domingo Leyba +7237,Chance Sisco,7,siscoch01,1831,tier1_bbref,Automatic match via bbref_id to Chance Sisco +7238,Andrew Knapp,7,knappan01,1062,tier1_bbref,Automatic match via bbref_id to Andrew Knapp +7239,Drew Ellis,7,ellisdr01,569,tier1_bbref,Automatic match via bbref_id to Drew Ellis +7240,Aaron Ashby,8,ashbyaa01,98,tier1_bbref,Automatic match via bbref_id to Aaron Ashby +7241,Aaron Bummer,8,bummeaa01,279,tier1_bbref,Automatic match via bbref_id to Aaron Bummer +7242,Aaron Civale,8,civalaa01,383,tier1_bbref,Automatic match via bbref_id to Aaron Civale +7243,Aaron Hicks,8,hicksaa01,892,tier1_bbref,Automatic match via bbref_id to Aaron Hicks +7244,Aaron Judge,8,judgeaa01,3,tier1_bbref,Automatic match via bbref_id to Aaron Judge +7245,Aaron Loup,8,loupaa01,1152,tier1_bbref,Automatic match via bbref_id to Aaron Loup +7246,Aaron Nola,8,nolaaa01,1433,tier1_bbref,Automatic match via bbref_id to Aaron Nola +7247,Aaron Sanchez,8,sanchaa01,1745,tier1_bbref,Automatic match via bbref_id to Aaron Sanchez +7248,Abraham Toro,8,toroab01,2001,tier1_bbref,Automatic match via bbref_id to Abraham Toro +7249,Adam Cimber,8,cimbead01,380,tier1_bbref,Automatic match via bbref_id to Adam Cimber +7250,Adam Duvall,8,duvalad01,553,tier1_bbref,Automatic match via bbref_id to Adam Duvall +7251,Adam Engel,8,engelad01,574,tier1_bbref,Automatic match via bbref_id to Adam Engel +7252,Adam Frazier,8,fraziad01,648,tier1_bbref,Automatic match via bbref_id to Adam Frazier +7253,Adam Oller,8,ollerad01,1459,tier1_bbref,Automatic match via bbref_id to Adam Oller +7254,Adam Ottavino,8,ottavad01,1475,tier1_bbref,Automatic match via bbref_id to Adam Ottavino +7255,Adam Wainwright,8,wainwad01,2099,tier1_bbref,Automatic match via bbref_id to Adam Wainwright +7256,Adley Rutschman,8,rutscad01,1729,tier1_bbref,Automatic match via bbref_id to Adley Rutschman +7257,Adolis Garcia,8,garciad02,690,tier1_bbref,Automatic match via bbref_id to Adolis Garcia +7258,Adrian Houser,8,housead01,928,tier1_bbref,Automatic match via bbref_id to Adrian Houser +7259,Adrian Martinez,8,martiad01,1225,tier1_bbref,Automatic match via bbref_id to Adrian Martinez +7260,Adrian Morejon,8,morejad01,1363,tier1_bbref,Automatic match via bbref_id to Adrian Morejon +7261,Adrian Sampson,8,sampsad01,1742,tier1_bbref,Automatic match via bbref_id to Adrian Sampson +7262,AJ Minter,8,minteaj01,1336,tier1_bbref,Automatic match via bbref_id to AJ Minter +7263,AJ Pollock,8,polloaj01,1571,tier1_bbref,Automatic match via bbref_id to AJ Pollock +7264,AJ Puk,8,pukaj01,1592,tier1_bbref,Automatic match via bbref_id to AJ Puk +7265,Akil Baddoo,8,baddoak01,109,tier1_bbref,Automatic match via bbref_id to Akil Baddoo +7266,Alan Trejo,8,trejoal01,2012,tier1_bbref,Automatic match via bbref_id to Alan Trejo +7267,Albert Abreu,8,abreual01,9,tier1_bbref,Automatic match via bbref_id to Albert Abreu +7268,Albert Almora Jr,8,almoral01,51,tier1_bbref,Automatic match via bbref_id to Albert Almora Jr +7269,Albert Pujols,8,pujolal01,1591,tier1_bbref,Automatic match via bbref_id to Albert Pujols +7270,Alcides Escobar,8,escobal02,580,tier1_bbref,Automatic match via bbref_id to Alcides Escobar +7271,Alec Bohm,8,bohmal01,217,tier1_bbref,Automatic match via bbref_id to Alec Bohm +7272,Aledmys Diaz,8,diazal02,505,tier1_bbref,Automatic match via bbref_id to Aledmys Diaz +7273,Alejandro Kirk,8,kirkal01,1056,tier1_bbref,Automatic match via bbref_id to Alejandro Kirk +7274,Alejo Lopez,8,lopezal03,1148,tier1_bbref,Automatic match via bbref_id to Alejo Lopez +7275,Alek Manoah,8,manoaal01,1192,tier1_bbref,Automatic match via bbref_id to Alek Manoah +7276,Alek Thomas,8,thomaal01,1979,tier1_bbref,Automatic match via bbref_id to Alek Thomas +7277,Alex Bregman,8,bregmal01,248,tier1_bbref,Automatic match via bbref_id to Alex Bregman +7278,Alex Call,8,callal02,308,tier1_bbref,Automatic match via bbref_id to Alex Call +7279,Alex Cobb,8,cobbal01,394,tier1_bbref,Automatic match via bbref_id to Alex Cobb +7280,Alex Colome,8,colomal01,404,tier1_bbref,Automatic match via bbref_id to Alex Colome +7281,Alex Faedo,8,faedoal01,591,tier1_bbref,Automatic match via bbref_id to Alex Faedo +7282,Alex Kirilloff,8,kirilal01,1055,tier1_bbref,Automatic match via bbref_id to Alex Kirilloff +7283,Alex Lange,8,langeal01,1091,tier1_bbref,Automatic match via bbref_id to Alex Lange +7284,Alex Verdugo,8,verdual01,2069,tier1_bbref,Automatic match via bbref_id to Alex Verdugo +7285,Alex Vesia,8,vesiaal01,2072,tier1_bbref,Automatic match via bbref_id to Alex Vesia +7286,Alex Wood,8,woodal02,2193,tier1_bbref,Automatic match via bbref_id to Alex Wood +7287,Alex Young,8,youngal01,2217,tier1_bbref,Automatic match via bbref_id to Alex Young +7288,Alexis Diaz,8,diazal03,509,tier1_bbref,Automatic match via bbref_id to Alexis Diaz +7289,Alfonso Rivas,8,rivasal01,1654,tier1_bbref,Automatic match via bbref_id to Alfonso Rivas +7290,Amed Rosario,8,rosaram01,1711,tier1_bbref,Automatic match via bbref_id to Amed Rosario +7291,Amir Garrett,8,garream01,698,tier1_bbref,Automatic match via bbref_id to Amir Garrett +7292,Andre Pallante,8,pallaan01,1492,tier1_bbref,Automatic match via bbref_id to Andre Pallante +7293,Andrelton Simmons,8,simmoan01,1825,tier1_bbref,Automatic match via bbref_id to Andrelton Simmons +7294,Andres Gimenez,8,gimenan01,721,tier1_bbref,Automatic match via bbref_id to Andres Gimenez +7295,Andres Machado,8,machaan02,1176,tier1_bbref,Automatic match via bbref_id to Andres Machado +7296,Andres Munoz,8,munozan01,1384,tier1_bbref,Automatic match via bbref_id to Andres Munoz +7297,Andrew Bellatti,8,bellaan01,169,tier1_bbref,Automatic match via bbref_id to Andrew Bellatti +7298,Andrew Benintendi,8,beninan01,177,tier1_bbref,Automatic match via bbref_id to Andrew Benintendi +7299,Andrew Chafin,8,chafian01,363,tier1_bbref,Automatic match via bbref_id to Andrew Chafin +7300,Andrew Heaney,8,heanean01,843,tier1_bbref,Automatic match via bbref_id to Andrew Heaney +7301,Andrew Kittredge,8,kittran01,1057,tier1_bbref,Automatic match via bbref_id to Andrew Kittredge +7302,Andrew Knizner,8,kniznan01,1065,tier1_bbref,Automatic match via bbref_id to Andrew Knizner +7303,Andrew McCutchen,8,mccutan01,1272,tier1_bbref,Automatic match via bbref_id to Andrew McCutchen +7304,Andrew Vaughn,8,vaughan01,2061,tier1_bbref,Automatic match via bbref_id to Andrew Vaughn +7305,Andrew Velazquez,8,velazan01,2067,tier1_bbref,Automatic match via bbref_id to Andrew Velazquez +7306,Andrew Wantz,8,wantzan01,2115,tier1_bbref,Automatic match via bbref_id to Andrew Wantz +7307,Andy Ibanez,8,ibanean01,948,tier1_bbref,Automatic match via bbref_id to Andy Ibanez +7308,Anibal Sanchez,8,sanchan01,1743,tier1_bbref,Automatic match via bbref_id to Anibal Sanchez +7309,Anthony Banda,8,bandaan01,121,tier1_bbref,Automatic match via bbref_id to Anthony Banda +7310,Anthony Bass,8,bassan01,145,tier1_bbref,Automatic match via bbref_id to Anthony Bass +7311,Anthony Bender,8,bendean01,176,tier1_bbref,Automatic match via bbref_id to Anthony Bender +7312,Anthony Gose,8,gosean01,756,tier1_bbref,Automatic match via bbref_id to Anthony Gose +7313,Anthony Misiewicz,8,misiean01,1338,tier1_bbref,Automatic match via bbref_id to Anthony Misiewicz +7314,Anthony Rendon,8,rendoan01,1630,tier1_bbref,Automatic match via bbref_id to Anthony Rendon +7315,Anthony Rizzo,8,rizzoan01,1658,tier1_bbref,Automatic match via bbref_id to Anthony Rizzo +7316,Anthony Santander,8,santaan02,1764,tier1_bbref,Automatic match via bbref_id to Anthony Santander +7317,Antonio Senzatela,8,senzaan01,1801,tier1_bbref,Automatic match via bbref_id to Antonio Senzatela +7318,Aramis Garcia,8,garciar01,683,tier1_bbref,Automatic match via bbref_id to Aramis Garcia +7319,Aristides Aquino,8,aquinar01,81,tier1_bbref,Automatic match via bbref_id to Aristides Aquino +7320,Aroldis Chapman,8,chapmar01,366,tier1_bbref,Automatic match via bbref_id to Aroldis Chapman +7321,Art Warren,8,warrear01,2119,tier1_bbref,Automatic match via bbref_id to Art Warren +7322,Austin Barnes,8,barneau01,132,tier1_bbref,Automatic match via bbref_id to Austin Barnes +7323,Austin Davis,8,davisau01,471,tier1_bbref,Automatic match via bbref_id to Austin Davis +7324,Austin Gomber,8,gombeau01,730,tier1_bbref,Automatic match via bbref_id to Austin Gomber +7325,Austin Hays,8,haysau01,839,tier1_bbref,Automatic match via bbref_id to Austin Hays +7326,Austin Hedges,8,hedgeau01,848,tier1_bbref,Automatic match via bbref_id to Austin Hedges +7327,Austin Meadows,8,meadoau01,1290,tier1_bbref,Automatic match via bbref_id to Austin Meadows +7328,Austin Nola,8,nolaau01,1432,tier1_bbref,Automatic match via bbref_id to Austin Nola +7329,Austin Pruitt,8,pruitau01,1588,tier1_bbref,Automatic match via bbref_id to Austin Pruitt +7330,Austin Riley,8,rileyau01,1649,tier1_bbref,Automatic match via bbref_id to Austin Riley +7331,Austin Romine,8,rominau01,1704,tier1_bbref,Automatic match via bbref_id to Austin Romine +7332,Austin Slater,8,slateau01,1838,tier1_bbref,Automatic match via bbref_id to Austin Slater +7333,Austin Voth,8,vothau01,2091,tier1_bbref,Automatic match via bbref_id to Austin Voth +7334,Austin Wynns,8,wynnsau01,2202,tier1_bbref,Automatic match via bbref_id to Austin Wynns +7335,Avisail Garcia,8,garciav01,678,tier1_bbref,Automatic match via bbref_id to Avisail Garcia +7336,Bailey Falter,8,falteba01,594,tier1_bbref,Automatic match via bbref_id to Bailey Falter +7337,Bailey Ober,8,oberba01,1447,tier1_bbref,Automatic match via bbref_id to Bailey Ober +7338,Beau Brieske,8,briesbe01,256,tier1_bbref,Automatic match via bbref_id to Beau Brieske +7339,Ben Gamel,8,gamelbe01,676,tier1_bbref,Automatic match via bbref_id to Ben Gamel +7340,Bennett Sousa,8,sousabe01,1880,tier1_bbref,Automatic match via bbref_id to Bennett Sousa +7341,Blake Snell,8,snellbl01,1861,tier1_bbref,Automatic match via bbref_id to Blake Snell +7342,Bligh Madris,8,madribl01,1179,tier1_bbref,Automatic match via bbref_id to Bligh Madris +7343,Bo Bichette,8,bichebo01,190,tier1_bbref,Automatic match via bbref_id to Bo Bichette +7344,Bobby Dalbec,8,dalbebo01,458,tier1_bbref,Automatic match via bbref_id to Bobby Dalbec +7345,Bobby Witt Jr,8,wittbo02,2184,tier1_bbref,Automatic match via bbref_id to Bobby Witt Jr +7346,Brad Boxberger,8,boxbebr01,229,tier1_bbref,Automatic match via bbref_id to Brad Boxberger +7347,Brad Hand,8,handbr01,816,tier1_bbref,Automatic match via bbref_id to Brad Hand +7348,Brad Keller,8,kellebr01,1016,tier1_bbref,Automatic match via bbref_id to Brad Keller +7349,Brad Miller,8,millebr02,1322,tier1_bbref,Automatic match via bbref_id to Brad Miller +7350,Bradley Zimmer,8,zimmebr01,2227,tier1_bbref,Automatic match via bbref_id to Bradley Zimmer +7351,Brady Singer,8,singebr01,1827,tier1_bbref,Automatic match via bbref_id to Brady Singer +7352,Brandon Belt,8,beltbr01,173,tier1_bbref,Automatic match via bbref_id to Brandon Belt +7353,Brandon Crawford,8,crawfbr01,430,tier1_bbref,Automatic match via bbref_id to Brandon Crawford +7354,Brandon Drury,8,drurybr01,535,tier1_bbref,Automatic match via bbref_id to Brandon Drury +7355,Brandon Hughes,8,hughebr01,938,tier1_bbref,Automatic match via bbref_id to Brandon Hughes +7356,Brandon Lowe,8,lowebr01,1156,tier1_bbref,Automatic match via bbref_id to Brandon Lowe +7357,Brandon Marsh,8,marshbr02,1205,tier1_bbref,Automatic match via bbref_id to Brandon Marsh +7358,Brandon Nimmo,8,nimmobr01,1425,tier1_bbref,Automatic match via bbref_id to Brandon Nimmo +7359,Brandon Woodruff,8,woodrbr01,2196,tier1_bbref,Automatic match via bbref_id to Brandon Woodruff +7360,Braxton Garrett,8,garrebr01,701,tier1_bbref,Automatic match via bbref_id to Braxton Garrett +7361,Brayan Bello,8,bellobr01,171,tier1_bbref,Automatic match via bbref_id to Brayan Bello +7362,Brendan Donovan,8,donovbr01,527,tier1_bbref,Automatic match via bbref_id to Brendan Donovan +7363,Brendan Rodgers,8,rodgebr02,1668,tier1_bbref,Automatic match via bbref_id to Brendan Rodgers +7364,Brent Suter,8,suterbr01,1943,tier1_bbref,Automatic match via bbref_id to Brent Suter +7365,Brett Martin,8,martibr01,1218,tier1_bbref,Automatic match via bbref_id to Brett Martin +7366,Brett Phillips,8,phillbr02,1555,tier1_bbref,Automatic match via bbref_id to Brett Phillips +7367,Brian Anderson,8,anderbr06,69,tier1_bbref,Automatic match via bbref_id to Brian Anderson +7368,Brian Serven,8,servebr01,1803,tier1_bbref,Automatic match via bbref_id to Brian Serven +7369,Brock Burke,8,burkebr01,284,tier1_bbref,Automatic match via bbref_id to Brock Burke +7370,Brooks Raley,8,raleybr01,1601,tier1_bbref,Automatic match via bbref_id to Brooks Raley +7371,Bruce Zimmermann,8,zimmebr02,2231,tier1_bbref,Automatic match via bbref_id to Bruce Zimmermann +7372,Brusdar Graterol,8,gratebr01,763,tier1_bbref,Automatic match via bbref_id to Brusdar Graterol +7373,Bryan Abreu,8,abreubr01,8,tier1_bbref,Automatic match via bbref_id to Bryan Abreu +7374,Bryan Baker,8,bakerbr01,117,tier1_bbref,Automatic match via bbref_id to Bryan Baker +7375,Bryan De La Cruz,8,delacbr01,479,tier1_bbref,Automatic match via bbref_id to Bryan De La Cruz +7376,Bryan Reynolds,8,reynobr01,1641,tier1_bbref,Automatic match via bbref_id to Bryan Reynolds +7377,Bryan Shaw,8,shawbr01,1808,tier1_bbref,Automatic match via bbref_id to Bryan Shaw +7378,Bryce Elder,8,elderbr01,564,tier1_bbref,Automatic match via bbref_id to Bryce Elder +7379,Bryce Harper,8,harpebr03,823,tier1_bbref,Automatic match via bbref_id to Bryce Harper +7380,Bryse Wilson,8,wilsobr02,2171,tier1_bbref,Automatic match via bbref_id to Bryse Wilson +7381,Bryson Stott,8,stottbr01,1915,tier1_bbref,Automatic match via bbref_id to Bryson Stott +7382,Bubba Thompson,8,thompbu01,1986,tier1_bbref,Automatic match via bbref_id to Bubba Thompson +7383,Buck Farmer,8,farmebu01,597,tier1_bbref,Automatic match via bbref_id to Buck Farmer +7384,Buddy Kennedy,8,kennebu01,1030,tier1_bbref,Automatic match via bbref_id to Buddy Kennedy +7385,Byron Buxton,8,buxtoby01,295,tier1_bbref,Automatic match via bbref_id to Byron Buxton +7386,Cal Quantrill,8,quantca01,1593,tier1_bbref,Automatic match via bbref_id to Cal Quantrill +7387,Cal Raleigh,8,raleica01,1600,tier1_bbref,Automatic match via bbref_id to Cal Raleigh +7388,Cal Stevenson,8,steveca01,1907,tier1_bbref,Automatic match via bbref_id to Cal Stevenson +7389,Caleb Ferguson,8,ferguca01,605,tier1_bbref,Automatic match via bbref_id to Caleb Ferguson +7390,Caleb Smith,8,smithca03,1845,tier1_bbref,Automatic match via bbref_id to Caleb Smith +7391,Caleb Thielbar,8,thielca01,1977,tier1_bbref,Automatic match via bbref_id to Caleb Thielbar +7392,Calvin Faucher,8,fauchca01,599,tier1_bbref,Automatic match via bbref_id to Calvin Faucher +7393,Calvin Mitchell,8,mitchca01,1341,tier1_bbref,Automatic match via bbref_id to Calvin Mitchell +7394,Camilo Doval,8,dovalca01,529,tier1_bbref,Automatic match via bbref_id to Camilo Doval +7395,Carl Edwards Jr,8,edwarca01,560,tier1_bbref,Automatic match via bbref_id to Carl Edwards Jr +7396,Carlos Carrasco,8,carraca01,331,tier1_bbref,Automatic match via bbref_id to Carlos Carrasco +7397,Carlos Correa,8,correca01,420,tier1_bbref,Automatic match via bbref_id to Carlos Correa +7398,Carlos Estevez,8,estevca01,585,tier1_bbref,Automatic match via bbref_id to Carlos Estevez +7399,Carlos Hernandez,8,hernaca04,880,tier1_bbref,Automatic match via bbref_id to Carlos Hernandez +7400,Carlos Rodon,8,rodonca01,1670,tier1_bbref,Automatic match via bbref_id to Carlos Rodon +7401,Carlos Santana,8,santaca01,1759,tier1_bbref,Automatic match via bbref_id to Carlos Santana +7402,Carson Kelly,8,kellyca02,1023,tier1_bbref,Automatic match via bbref_id to Carson Kelly +7403,Cavan Biggio,8,biggica01,196,tier1_bbref,Automatic match via bbref_id to Cavan Biggio +7404,Cedric Mullins,8,mullice01,1381,tier1_bbref,Automatic match via bbref_id to Cedric Mullins +7405,Cesar Hernandez,8,hernace02,870,tier1_bbref,Automatic match via bbref_id to Cesar Hernandez +7406,Chad Kuhl,8,kuhlch01,1078,tier1_bbref,Automatic match via bbref_id to Chad Kuhl +7407,Chad Pinder,8,pindech01,1559,tier1_bbref,Automatic match via bbref_id to Chad Pinder +7408,Charles Leblanc,8,leblach01,1105,tier1_bbref,Automatic match via bbref_id to Charles Leblanc +7409,Charlie Blackmon,8,blackch02,205,tier1_bbref,Automatic match via bbref_id to Charlie Blackmon +7410,Charlie Culberson,8,culbech01,453,tier1_bbref,Automatic match via bbref_id to Charlie Culberson +7411,Charlie Morton,8,mortoch02,1375,tier1_bbref,Automatic match via bbref_id to Charlie Morton +7412,Chas McCormick,8,mccorch01,1269,tier1_bbref,Automatic match via bbref_id to Chas McCormick +7413,Chase Anderson,8,anderch01,67,tier1_bbref,Automatic match via bbref_id to Chase Anderson +7414,Chase De Jong,8,dejonch01,478,tier1_bbref,Automatic match via bbref_id to Chase De Jong +7415,Chase Silseth,8,silsech01,1824,tier1_bbref,Automatic match via bbref_id to Chase Silseth +7416,Chasen Shreve,8,shrevch01,1819,tier1_bbref,Automatic match via bbref_id to Chasen Shreve +7417,Chris Archer,8,archech01,85,tier1_bbref,Automatic match via bbref_id to Chris Archer +7418,Chris Bassitt,8,bassich01,146,tier1_bbref,Automatic match via bbref_id to Chris Bassitt +7419,Chris Flexen,8,flexech01,626,tier1_bbref,Automatic match via bbref_id to Chris Flexen +7420,Chris Martin,8,martich02,1214,tier1_bbref,Automatic match via bbref_id to Chris Martin +7421,Chris Stratton,8,stratch01,1922,tier1_bbref,Automatic match via bbref_id to Chris Stratton +7422,Chris Taylor,8,tayloch03,1964,tier1_bbref,Automatic match via bbref_id to Chris Taylor +7423,Christian Arroyo,8,arroych01,96,tier1_bbref,Automatic match via bbref_id to Christian Arroyo +7424,Christian Bethancourt,8,bethach01,185,tier1_bbref,Automatic match via bbref_id to Christian Bethancourt +7425,Christian Vazquez,8,vazquch01,2063,tier1_bbref,Automatic match via bbref_id to Christian Vazquez +7426,Christian Walker,8,walkech02,2104,tier1_bbref,Automatic match via bbref_id to Christian Walker +7427,Christian Yelich,8,yelicch01,2212,tier1_bbref,Automatic match via bbref_id to Christian Yelich +7428,Christopher Morel,8,morelch01,1364,tier1_bbref,Automatic match via bbref_id to Christopher Morel +7429,Chuckie Robinson,8,robinch04,1664,tier1_bbref,Automatic match via bbref_id to Chuckie Robinson +7430,Cionel Perez,8,perezci01,1540,tier1_bbref,Automatic match via bbref_id to Cionel Perez +7431,CJ Abrams,8,abramcj01,6,tier1_bbref,Automatic match via bbref_id to CJ Abrams +7432,CJ Cron,8,croncj01,441,tier1_bbref,Automatic match via bbref_id to CJ Cron +7433,Clarke Schmidt,8,schmicl01,1774,tier1_bbref,Automatic match via bbref_id to Clarke Schmidt +7434,Clay Holmes,8,holmecl01,919,tier1_bbref,Automatic match via bbref_id to Clay Holmes +7435,Clayton Kershaw,8,kershcl01,1034,tier1_bbref,Automatic match via bbref_id to Clayton Kershaw +7436,Cody Bellinger,8,bellico01,170,tier1_bbref,Automatic match via bbref_id to Cody Bellinger +7437,Cody Morris,8,morrico01,1372,tier1_bbref,Automatic match via bbref_id to Cody Morris +7438,Cody Poteet,8,poteeco01,1579,tier1_bbref,Automatic match via bbref_id to Cody Poteet +7439,Cole Irvin,8,irvinco01,954,tier1_bbref,Automatic match via bbref_id to Cole Irvin +7440,Cole Ragans,8,raganco01,1598,tier1_bbref,Automatic match via bbref_id to Cole Ragans +7441,Cole Sands,8,sandsco01,1755,tier1_bbref,Automatic match via bbref_id to Cole Sands +7442,Cole Sulser,8,sulseco01,1942,tier1_bbref,Automatic match via bbref_id to Cole Sulser +7443,Cole Tucker,8,tuckeco01,2022,tier1_bbref,Automatic match via bbref_id to Cole Tucker +7444,Colin Holderman,8,holdeco01,913,tier1_bbref,Automatic match via bbref_id to Colin Holderman +7445,Colin Moran,8,moranco01,1360,tier1_bbref,Automatic match via bbref_id to Colin Moran +7446,Colin Poche,8,pocheco01,1568,tier1_bbref,Automatic match via bbref_id to Colin Poche +7447,Collin McHugh,8,mchugco01,1278,tier1_bbref,Automatic match via bbref_id to Collin McHugh +7448,Collin Snider,8,snideco01,1862,tier1_bbref,Automatic match via bbref_id to Collin Snider +7449,Connor Brogdon,8,brogdco01,261,tier1_bbref,Automatic match via bbref_id to Connor Brogdon +7450,Connor Joe,8,joeco01,983,tier1_bbref,Automatic match via bbref_id to Connor Joe +7451,Connor Overton,8,overtco01,1478,tier1_bbref,Automatic match via bbref_id to Connor Overton +7452,Connor Wong,8,wongco01,2189,tier1_bbref,Automatic match via bbref_id to Connor Wong +7453,Cooper Hummel,8,hummeco01,939,tier1_bbref,Automatic match via bbref_id to Cooper Hummel +7454,Corbin Burnes,8,burneco01,286,tier1_bbref,Automatic match via bbref_id to Corbin Burnes +7455,Corbin Carroll,8,carroco02,332,tier1_bbref,Automatic match via bbref_id to Corbin Carroll +7456,Corey Dickerson,8,dickeco01,513,tier1_bbref,Automatic match via bbref_id to Corey Dickerson +7457,Corey Kluber,8,klubeco01,1060,tier1_bbref,Automatic match via bbref_id to Corey Kluber +7458,Corey Knebel,8,knebeco01,1063,tier1_bbref,Automatic match via bbref_id to Corey Knebel +7459,Corey Seager,8,seageco01,1794,tier1_bbref,Automatic match via bbref_id to Corey Seager +7460,Cory Abbott,8,abbotco01,5,tier1_bbref,Automatic match via bbref_id to Cory Abbott +7461,Craig Kimbrel,8,kimbrcr01,1043,tier1_bbref,Automatic match via bbref_id to Craig Kimbrel +7462,Craig Stammen,8,stammcr01,1891,tier1_bbref,Automatic match via bbref_id to Craig Stammen +7463,Cristian Javier,8,javiecr01,971,tier1_bbref,Automatic match via bbref_id to Cristian Javier +7464,Cristian Pache,8,pachecr01,1482,tier1_bbref,Automatic match via bbref_id to Cristian Pache +7465,Cristopher Sanchez,8,sanchcr01,1748,tier1_bbref,Automatic match via bbref_id to Cristopher Sanchez +7466,Curt Casali,8,casalcu01,334,tier1_bbref,Automatic match via bbref_id to Curt Casali +7467,Dakota Hudson,8,hudsoda02,934,tier1_bbref,Automatic match via bbref_id to Dakota Hudson +7468,Dallas Keuchel,8,keuchda01,1035,tier1_bbref,Automatic match via bbref_id to Dallas Keuchel +7469,Daniel Vogelbach,8,vogelda01,2085,tier1_bbref,Automatic match via bbref_id to Daniel Vogelbach +7470,Dane Dunning,8,dunnida01,548,tier1_bbref,Automatic match via bbref_id to Dane Dunning +7471,Daniel Bard,8,bardda01,125,tier1_bbref,Automatic match via bbref_id to Daniel Bard +7472,Daniel Castano,8,castada01,337,tier1_bbref,Automatic match via bbref_id to Daniel Castano +7473,Daniel Hudson,8,hudsoda01,933,tier1_bbref,Automatic match via bbref_id to Daniel Hudson +7474,Daniel Lynch,8,lynchda02,1172,tier1_bbref,Automatic match via bbref_id to Daniel Lynch +7475,Daniel Norris,8,norrida01,1439,tier1_bbref,Automatic match via bbref_id to Daniel Norris +7476,Danny Jansen,8,janseda01,969,tier1_bbref,Automatic match via bbref_id to Danny Jansen +7477,Danny Mendick,8,mendida01,1302,tier1_bbref,Automatic match via bbref_id to Danny Mendick +7478,Dansby Swanson,8,swansda01,1947,tier1_bbref,Automatic match via bbref_id to Dansby Swanson +7479,Dany Jimenez,8,jimenda01,981,tier1_bbref,Automatic match via bbref_id to Dany Jimenez +7480,Darick Hall,8,hallda02,808,tier1_bbref,Automatic match via bbref_id to Darick Hall +7481,Darin Ruf,8,rufda01,1722,tier1_bbref,Automatic match via bbref_id to Darin Ruf +7482,Darren ODay,8,odayda01,1449,tier1_bbref,Automatic match via bbref_id to Darren ODay +7483,Daulton Jefferies,8,jeffeda01,974,tier1_bbref,Automatic match via bbref_id to Daulton Jefferies +7484,Daulton Varsho,8,varshda01,2058,tier1_bbref,Automatic match via bbref_id to Daulton Varsho +7485,Dauri Moreta,8,moretda01,1367,tier1_bbref,Automatic match via bbref_id to Dauri Moreta +7486,David Bednar,8,bednada01,162,tier1_bbref,Automatic match via bbref_id to David Bednar +7487,David Bote,8,boteda01,224,tier1_bbref,Automatic match via bbref_id to David Bote +7488,David Fletcher,8,fletcda02,624,tier1_bbref,Automatic match via bbref_id to David Fletcher +7490,David Peralta,8,peralda01,1522,tier1_bbref,Automatic match via bbref_id to David Peralta +7491,David Peterson,8,peterda01,1548,tier1_bbref,Automatic match via bbref_id to David Peterson +7492,David Phelps,8,phelpda01,1554,tier1_bbref,Automatic match via bbref_id to David Phelps +7493,David Price,8,priceda01,1585,tier1_bbref,Automatic match via bbref_id to David Price +7494,David Robertson,8,roberda08,1662,tier1_bbref,Automatic match via bbref_id to David Robertson +7495,David Villar,8,villada01,2080,tier1_bbref,Automatic match via bbref_id to David Villar +7496,Davis Martin,8,martida03,1219,tier1_bbref,Automatic match via bbref_id to Davis Martin +7497,Daz Cameron,8,camerda01,310,tier1_bbref,Automatic match via bbref_id to Daz Cameron +7498,Dean Kremer,8,kremede01,1077,tier1_bbref,Automatic match via bbref_id to Dean Kremer +7499,Dee Strange Gordon,8,gordode01,1920,tier1_bbref,Automatic match via bbref_id to Dee Strange Gordon +7500,Dennis Santana,8,santade01,1762,tier1_bbref,Automatic match via bbref_id to Dennis Santana +7501,Derek Hill,8,hillde01,899,tier1_bbref,Automatic match via bbref_id to Derek Hill +7502,Dermis Garcia,8,garcide02,687,tier1_bbref,Automatic match via bbref_id to Dermis Garcia +7503,Devin Smeltzer,8,smeltde01,1840,tier1_bbref,Automatic match via bbref_id to Devin Smeltzer +7504,Devin Williams,8,willide03,2158,tier1_bbref,Automatic match via bbref_id to Devin Williams +7505,Didi Gregorius,8,gregodi01,772,tier1_bbref,Automatic match via bbref_id to Didi Gregorius +7506,Diego Castillo,8,castidi01,345,tier1_bbref,Automatic match via bbref_id to Diego Castillo +7507,Dillon Peters,8,peterdi01,1544,tier1_bbref,Automatic match via bbref_id to Dillon Peters +7508,Dillon Tate,8,tatedi01,1959,tier1_bbref,Automatic match via bbref_id to Dillon Tate +7509,Dinelson Lamet,8,lametdi01,1090,tier1_bbref,Automatic match via bbref_id to Dinelson Lamet +7510,DJ LeMahieu,8,lemahdj01,1114,tier1_bbref,Automatic match via bbref_id to DJ LeMahieu +7511,Domingo Acevedo,8,acevedo01,11,tier1_bbref,Automatic match via bbref_id to Domingo Acevedo +7512,Domingo German,8,germado01,713,tier1_bbref,Automatic match via bbref_id to Domingo German +7513,Dominic Leone,8,leonedo01,1116,tier1_bbref,Automatic match via bbref_id to Dominic Leone +7514,Dominic Smith,8,smithdo02,1849,tier1_bbref,Automatic match via bbref_id to Dominic Smith +7515,Donovan Solano,8,solando01,1868,tier1_bbref,Automatic match via bbref_id to Donovan Solano +7516,Donovan Walton,8,waltodo01,2113,tier1_bbref,Automatic match via bbref_id to Donovan Walton +7517,Drew Hutchison,8,hutchdr01,944,tier1_bbref,Automatic match via bbref_id to Drew Hutchison +7518,Drew Rasmussen,8,rasmudr01,1618,tier1_bbref,Automatic match via bbref_id to Drew Rasmussen +7519,Drew Smith,8,smithdr01,1848,tier1_bbref,Automatic match via bbref_id to Drew Smith +7520,Drew Smyly,8,smylydr01,1858,tier1_bbref,Automatic match via bbref_id to Drew Smyly +7521,Drew Waters,8,waterdr01,2120,tier1_bbref,Automatic match via bbref_id to Drew Waters +7522,Duane Underwood,8,underdu01,2033,tier1_bbref,Automatic match via bbref_id to Duane Underwood +7523,Dustin May,8,maydu01,1249,tier1_bbref,Automatic match via bbref_id to Dustin May +7524,Dylan Bundy,8,bundydy01,280,tier1_bbref,Automatic match via bbref_id to Dylan Bundy +7525,Dylan Carlson,8,carlsdy01,327,tier1_bbref,Automatic match via bbref_id to Dylan Carlson +7526,Dylan Cease,8,ceasedy01,355,tier1_bbref,Automatic match via bbref_id to Dylan Cease +7527,Dylan Coleman,8,colemdy01,401,tier1_bbref,Automatic match via bbref_id to Dylan Coleman +7528,Dylan Floro,8,florody01,629,tier1_bbref,Automatic match via bbref_id to Dylan Floro +7529,Dylan Lee,8,leedy01,1108,tier1_bbref,Automatic match via bbref_id to Dylan Lee +7530,Dylan Moore,8,mooredy01,1358,tier1_bbref,Automatic match via bbref_id to Dylan Moore +7531,Eddie Rosario,8,rosared01,1710,tier1_bbref,Automatic match via bbref_id to Eddie Rosario +7532,Edmundo Sosa,8,sosaed01,1876,tier1_bbref,Automatic match via bbref_id to Edmundo Sosa +7533,Eduardo Escobar,8,escobed01,581,tier1_bbref,Automatic match via bbref_id to Eduardo Escobar +7534,Eduardo Rodriguez,8,rodried05,1675,tier1_bbref,Automatic match via bbref_id to Eduardo Rodriguez +7535,Edward Cabrera,8,cabreed02,302,tier1_bbref,Automatic match via bbref_id to Edward Cabrera +7536,Edward Olivares,8,olivaed02,1458,tier1_bbref,Automatic match via bbref_id to Edward Olivares +7537,Edwin Diaz,8,diazed04,503,tier1_bbref,Automatic match via bbref_id to Edwin Diaz +7538,Edwin Rios,8,riosed01,1651,tier1_bbref,Automatic match via bbref_id to Edwin Rios +7539,Ehire Adrianza,8,adriaeh01,22,tier1_bbref,Automatic match via bbref_id to Ehire Adrianza +7540,Elehuris Montero,8,monteel01,1353,tier1_bbref,Automatic match via bbref_id to Elehuris Montero +7541,Eli Morgan,8,morgael01,1369,tier1_bbref,Automatic match via bbref_id to Eli Morgan +7542,Eli White,8,whiteel04,2140,tier1_bbref,Automatic match via bbref_id to Eli White +7543,Elias Diaz,8,diazel01,502,tier1_bbref,Automatic match via bbref_id to Elias Diaz +7544,Elieser Hernandez,8,hernael01,874,tier1_bbref,Automatic match via bbref_id to Elieser Hernandez +7545,Eloy Jimenez,8,jimenel02,980,tier1_bbref,Automatic match via bbref_id to Eloy Jimenez +7546,Elvin Rodriguez,8,rodriel02,1679,tier1_bbref,Automatic match via bbref_id to Elvin Rodriguez +7547,Elvis Andrus,8,andruel01,77,tier1_bbref,Automatic match via bbref_id to Elvis Andrus +7548,Emilio Pagan,8,paganem01,1484,tier1_bbref,Automatic match via bbref_id to Emilio Pagan +7549,Emmanuel Clase,8,claseem01,385,tier1_bbref,Automatic match via bbref_id to Emmanuel Clase +7550,Emmanuel Rivera,8,riverem01,1657,tier1_bbref,Automatic match via bbref_id to Emmanuel Rivera +7551,Enrique Hernandez,8,hernaen02,871,tier1_bbref,Automatic match via bbref_id to Enrique Hernandez +7552,Enyel De Los Santos,8,delosen01,482,tier1_bbref,Automatic match via bbref_id to Enyel De Los Santos +7553,Erasmo Ramirez,8,ramirer02,1604,tier1_bbref,Automatic match via bbref_id to Erasmo Ramirez +7554,Eric Haase,8,haaseer01,801,tier1_bbref,Automatic match via bbref_id to Eric Haase +7555,Eric Hosmer,8,hosmeer01,926,tier1_bbref,Automatic match via bbref_id to Eric Hosmer +7556,Eric Lauer,8,lauerer01,1096,tier1_bbref,Automatic match via bbref_id to Eric Lauer +7557,Eric Stout,8,stouter01,1916,tier1_bbref,Automatic match via bbref_id to Eric Stout +7558,Erich Uelmen,8,uelmeer01,2032,tier1_bbref,Automatic match via bbref_id to Erich Uelmen +7559,Erick Fedde,8,feddeer01,600,tier1_bbref,Automatic match via bbref_id to Erick Fedde +7560,Erik Swanson,8,swanser01,1948,tier1_bbref,Automatic match via bbref_id to Erik Swanson +7561,Ernie Clement,8,clemeer01,391,tier1_bbref,Automatic match via bbref_id to Ernie Clement +7562,Eugenio Suarez,8,suareeu01,1934,tier1_bbref,Automatic match via bbref_id to Eugenio Suarez +7563,Evan Longoria,8,longoev01,1140,tier1_bbref,Automatic match via bbref_id to Evan Longoria +7564,Evan Phillips,8,phillev01,3238,manual_new,Manual assignment to new SbaPlayer: Evan Phillips +7565,Ezequiel Duran,8,duranez01,551,tier1_bbref,Automatic match via bbref_id to Ezequiel Duran +7566,Felix Bautista,8,bautife01,154,tier1_bbref,Automatic match via bbref_id to Felix Bautista +7567,Framber Valdez,8,valdefr01,2048,tier1_bbref,Automatic match via bbref_id to Framber Valdez +7568,Franchy Cordero,8,cordefr02,418,tier1_bbref,Automatic match via bbref_id to Franchy Cordero +7569,Francisco Lindor,8,lindofr01,1124,tier1_bbref,Automatic match via bbref_id to Francisco Lindor +7570,Francisco Mejia,8,mejiafr01,3239,manual_new,Manual assignment to new SbaPlayer: Francisco Mejia +7571,Frank Schwindel,8,schwifr01,1786,tier1_bbref,Automatic match via bbref_id to Frank Schwindel +7572,Frankie Montas,8,montafr02,1351,tier1_bbref,Automatic match via bbref_id to Frankie Montas +7573,Franmil Reyes,8,reyesfr01,1634,tier1_bbref,Automatic match via bbref_id to Franmil Reyes +7574,Freddie Freeman,8,freemfr01,652,tier1_bbref,Automatic match via bbref_id to Freddie Freeman +7575,Freddy Peralta,8,peralfr01,1525,tier1_bbref,Automatic match via bbref_id to Freddy Peralta +7576,Gabriel Arias,8,ariasga01,89,tier1_bbref,Automatic match via bbref_id to Gabriel Arias +7577,Gabriel Moreno,8,morenga01,1366,tier1_bbref,Automatic match via bbref_id to Gabriel Moreno +7579,Garrett Cooper,8,coopega03,415,tier1_bbref,Automatic match via bbref_id to Garrett Cooper +7580,Garrett Hampson,8,hampsga01,814,tier1_bbref,Automatic match via bbref_id to Garrett Hampson +7581,Garrett Hill,8,hillga02,901,tier1_bbref,Automatic match via bbref_id to Garrett Hill +7582,Garrett Mitchell,8,mitchga01,1340,tier1_bbref,Automatic match via bbref_id to Garrett Mitchell +7583,Garrett Richards,8,richaga01,1645,tier1_bbref,Automatic match via bbref_id to Garrett Richards +7584,Garrett Stubbs,8,stubbga01,1931,tier1_bbref,Automatic match via bbref_id to Garrett Stubbs +7585,Garrett Whitlock,8,whitlga01,2146,tier1_bbref,Automatic match via bbref_id to Garrett Whitlock +7586,Gary Sanchez,8,sanchga02,1746,tier1_bbref,Automatic match via bbref_id to Gary Sanchez +7587,Gavin Lux,8,luxga01,1169,tier1_bbref,Automatic match via bbref_id to Gavin Lux +7588,Gavin Sheets,8,sheetga01,1811,tier1_bbref,Automatic match via bbref_id to Gavin Sheets +7589,Genesis Cabrera,8,cabrege01,301,tier1_bbref,Automatic match via bbref_id to Genesis Cabrera +7590,George Kirby,8,kirbyge01,1054,tier1_bbref,Automatic match via bbref_id to George Kirby +7591,George Springer,8,springe01,1888,tier1_bbref,Automatic match via bbref_id to George Springer +7592,Geraldo Perdomo,8,perdoge01,1531,tier1_bbref,Automatic match via bbref_id to Geraldo Perdomo +7593,German Marquez,8,marquge01,1204,tier1_bbref,Automatic match via bbref_id to German Marquez +7594,Gerrit Cole,8,colege01,398,tier1_bbref,Automatic match via bbref_id to Gerrit Cole +7595,Giancarlo Stanton,8,stantmi03,1893,tier1_bbref,Automatic match via bbref_id to Giancarlo Stanton +7596,Gilberto Celestino,8,celesgi01,358,tier1_bbref,Automatic match via bbref_id to Gilberto Celestino +7597,Gio Urshela,8,urshegi01,2042,tier1_bbref,Automatic match via bbref_id to Gio Urshela +7598,Giovanny Gallegos,8,gallegi01,672,tier1_bbref,Automatic match via bbref_id to Giovanny Gallegos +7599,Glenn Otto,8,ottogl01,1476,tier1_bbref,Automatic match via bbref_id to Glenn Otto +7600,Gleyber Torres,8,torregl01,2003,tier1_bbref,Automatic match via bbref_id to Gleyber Torres +7601,Graham Ashcraft,8,ashcrgr01,99,tier1_bbref,Automatic match via bbref_id to Graham Ashcraft +7602,Greg Allen,8,allengr01,44,tier1_bbref,Automatic match via bbref_id to Greg Allen +7603,Gregory Soto,8,sotogr01,1878,tier1_bbref,Automatic match via bbref_id to Gregory Soto +7604,Griffin Jax,8,jaxgr01,972,tier1_bbref,Automatic match via bbref_id to Griffin Jax +7605,Guillermo Heredia,8,heredgu01,862,tier1_bbref,Automatic match via bbref_id to Guillermo Heredia +7606,Gunnar Henderson,8,hendegu01,855,tier1_bbref,Automatic match via bbref_id to Gunnar Henderson +7607,Ha Seong Kim,8,kimha01,1042,tier1_bbref,Automatic match via bbref_id to Ha Seong Kim +7608,Hansel Robles,8,robleha01,1665,tier1_bbref,Automatic match via bbref_id to Hansel Robles +7609,Hanser Alberto,8,alberha01,30,tier1_bbref,Automatic match via bbref_id to Hanser Alberto +7610,Harold Castro,8,castrha01,349,tier1_bbref,Automatic match via bbref_id to Harold Castro +7611,Harold Ramirez,8,ramirha02,1609,tier1_bbref,Automatic match via bbref_id to Harold Ramirez +7612,Harrison Bader,8,baderha01,110,tier1_bbref,Automatic match via bbref_id to Harrison Bader +7613,Hayden Wesneski,8,wesneha01,2137,tier1_bbref,Automatic match via bbref_id to Hayden Wesneski +7614,Heath Hembree,8,hembrhe01,854,tier1_bbref,Automatic match via bbref_id to Heath Hembree +7615,Hector Neris,8,nerishe01,1413,tier1_bbref,Automatic match via bbref_id to Hector Neris +7616,Hirokazu Sawamura,8,sawamhi01,1769,tier1_bbref,Automatic match via bbref_id to Hirokazu Sawamura +7617,Hoby Milner,8,milneho01,1332,tier1_bbref,Automatic match via bbref_id to Hoby Milner +7618,Huascar Brazoban,8,brazohu01,246,tier1_bbref,Automatic match via bbref_id to Huascar Brazoban +7619,Humberto Castellanos,8,castehu01,339,tier1_bbref,Automatic match via bbref_id to Humberto Castellanos +7620,Hunter Brown,8,brownhu01,267,tier1_bbref,Automatic match via bbref_id to Hunter Brown +7621,Hunter Dozier,8,doziehu01,533,tier1_bbref,Automatic match via bbref_id to Hunter Dozier +7622,Hunter Greene,8,greenhu01,770,tier1_bbref,Automatic match via bbref_id to Hunter Greene +7623,Hunter Harvey,8,harvehu01,836,tier1_bbref,Automatic match via bbref_id to Hunter Harvey +7624,Hunter Renfroe,8,renfrhu01,1631,tier1_bbref,Automatic match via bbref_id to Hunter Renfroe +7625,Hunter Strickland,8,strichu01,1925,tier1_bbref,Automatic match via bbref_id to Hunter Strickland +7626,Hyun Jin Ryu,8,ryuhy01,1733,tier1_bbref,Automatic match via bbref_id to Hyun Jin Ryu +7627,Ian Anderson,8,anderia01,74,tier1_bbref,Automatic match via bbref_id to Ian Anderson +7628,Ian Gibaut,8,gibauia01,714,tier1_bbref,Automatic match via bbref_id to Ian Gibaut +7629,Ian Happ,8,happia01,820,tier1_bbref,Automatic match via bbref_id to Ian Happ +7630,Ian Kennedy,8,kenneia01,1029,tier1_bbref,Automatic match via bbref_id to Ian Kennedy +7631,Ildemaro Vargas,8,vargail01,2054,tier1_bbref,Automatic match via bbref_id to Ildemaro Vargas +7632,Isaac Paredes,8,paredis01,1497,tier1_bbref,Automatic match via bbref_id to Isaac Paredes +7633,Isiah Kiner Falefa,8,kineris01,1044,tier1_bbref,Automatic match via bbref_id to Isiah Kiner Falefa +7634,Jace Peterson,8,peterja01,1547,tier1_bbref,Automatic match via bbref_id to Jace Peterson +7635,Jack Flaherty,8,flaheja01,622,tier1_bbref,Automatic match via bbref_id to Jack Flaherty +7636,Jack Mayfield,8,mayfija01,1252,tier1_bbref,Automatic match via bbref_id to Jack Mayfield +7637,Jack Suwinski,8,suwinja01,1944,tier1_bbref,Automatic match via bbref_id to Jack Suwinski +7638,Jackie Bradley Jr,8,bradlja02,239,tier1_bbref,Automatic match via bbref_id to Jackie Bradley Jr +7639,Jackson Stephens,8,stephja01,1903,tier1_bbref,Automatic match via bbref_id to Jackson Stephens +7640,Jacob deGrom,8,degroja01,484,tier1_bbref,Automatic match via bbref_id to Jacob deGrom +7641,Jacob Stallings,8,stallja01,1890,tier1_bbref,Automatic match via bbref_id to Jacob Stallings +7642,Jaime Barria,8,barrija01,141,tier1_bbref,Automatic match via bbref_id to Jaime Barria +7643,Jake Bird,8,birdja01,198,tier1_bbref,Automatic match via bbref_id to Jake Bird +7644,Jake Burger,8,burgeja01,283,tier1_bbref,Automatic match via bbref_id to Jake Burger +7645,Jake Cave,8,caveja01,354,tier1_bbref,Automatic match via bbref_id to Jake Cave +7646,Jake Cronenworth,8,croneja01,442,tier1_bbref,Automatic match via bbref_id to Jake Cronenworth +7647,Jake Diekman,8,diekmja01,514,tier1_bbref,Automatic match via bbref_id to Jake Diekman +7648,Jake Fraley,8,fraleja01,641,tier1_bbref,Automatic match via bbref_id to Jake Fraley +7649,Jake Junis,8,junisja01,1004,tier1_bbref,Automatic match via bbref_id to Jakob Junis +7650,Jake Lamb,8,lambja01,1087,tier1_bbref,Automatic match via bbref_id to Jake Lamb +7651,Jake Marisnick,8,marisja01,1200,tier1_bbref,Automatic match via bbref_id to Jake Marisnick +7652,Jake McCarthy,8,mccarja02,1265,tier1_bbref,Automatic match via bbref_id to Jake McCarthy +7653,Jake McGee,8,mcgeeja01,1274,tier1_bbref,Automatic match via bbref_id to Jake McGee +7654,Jake Meyers,8,meyerja02,1315,tier1_bbref,Automatic match via bbref_id to Jake Meyers +7655,Jake Odorizzi,8,odorija01,1452,tier1_bbref,Automatic match via bbref_id to Jake Odorizzi +7656,Jake Woodford,8,woodfja01,2195,tier1_bbref,Automatic match via bbref_id to Jake Woodford +7657,Jalen Beeks,8,beeksja02,165,tier1_bbref,Automatic match via bbref_id to Jalen Beeks +7658,James Kaprielian,8,kaprija01,1008,tier1_bbref,Automatic match via bbref_id to James Kaprielian +7659,James Karinchak,8,karinja01,1009,tier1_bbref,Automatic match via bbref_id to James Karinchak +7660,James McCann,8,mccanja02,1261,tier1_bbref,Automatic match via bbref_id to James McCann +7661,Jameson Taillon,8,taillja01,1954,tier1_bbref,Automatic match via bbref_id to Jameson Taillon +7662,Jandel Gustave,8,gustaja01,795,tier1_bbref,Automatic match via bbref_id to Jandel Gustave +7663,Jared Koenig,8,koenija01,1068,tier1_bbref,Automatic match via bbref_id to Jared Koenig +7664,Jared Walsh,8,walshja01,2111,tier1_bbref,Automatic match via bbref_id to Jared Walsh +7665,Jarlin Garcia,8,garcija04,684,tier1_bbref,Automatic match via bbref_id to Jarlin Garcia +7666,Jarred Kelenic,8,kelenja01,1015,tier1_bbref,Automatic match via bbref_id to Jarred Kelenic +7667,Jarren Duran,8,duranja01,552,tier1_bbref,Automatic match via bbref_id to Jarren Duran +7668,Jason Adam,8,adamja01,13,tier1_bbref,Automatic match via bbref_id to Jason Adam +7669,Jason Alexander,8,alexaja01,38,tier1_bbref,Automatic match via bbref_id to Jason Alexander +7670,Jason Castro,8,castrja01,347,tier1_bbref,Automatic match via bbref_id to Jason Castro +7671,Jason Delay,8,delayja01,487,tier1_bbref,Automatic match via bbref_id to Jason Delay +7672,Jason Foley,8,foleyja01,632,tier1_bbref,Automatic match via bbref_id to Jason Foley +7673,Jason Heyward,8,heywaja01,891,tier1_bbref,Automatic match via bbref_id to Jason Heyward +7674,Jason Vosler,8,vosleja01,2090,tier1_bbref,Automatic match via bbref_id to Jason Vosler +7675,Javier Assad,8,assadja01,100,tier1_bbref,Automatic match via bbref_id to Javier Assad +7676,Javier Baez,8,baezja01,112,tier1_bbref,Automatic match via bbref_id to Javier Baez +7677,Jazz Chisholm,8,chishja01,375,tier1_bbref,Automatic match via bbref_id to Jazz Chisholm +7678,JB Wendelken,8,wendejb01,2134,tier1_bbref,Automatic match via bbref_id to JB Wendelken +7679,JD Davis,8,davisjd01,474,tier1_bbref,Automatic match via bbref_id to JD Davis +7680,JD Martinez,8,martijd02,1229,tier1_bbref,Automatic match via bbref_id to JD Martinez +7681,Jean Segura,8,segurje01,1796,tier1_bbref,Automatic match via bbref_id to Jean Segura +7682,Jed Lowrie,8,lowrije01,1158,tier1_bbref,Automatic match via bbref_id to Jed Lowrie +7683,Jeff Hoffman,8,hoffmje02,910,tier1_bbref,Automatic match via bbref_id to Jeff Hoffman +7684,Jeff McNeil,8,mcneije01,1287,tier1_bbref,Automatic match via bbref_id to Jeff McNeil +7685,Jeffrey Springs,8,sprinje01,1889,tier1_bbref,Automatic match via bbref_id to Jeffrey Springs +7686,Jeimer Candelario,8,candeje01,315,tier1_bbref,Automatic match via bbref_id to Jeimer Candelario +7687,Jerar Encarnacion,8,encarje01,572,tier1_bbref,Automatic match via bbref_id to Jerar Encarnacion +7688,Jeremy Pena,8,penaje02,1519,tier1_bbref,Automatic match via bbref_id to Jeremy Pena +7689,Jermaine Palacios,8,palacje01,1487,tier1_bbref,Automatic match via bbref_id to Jermaine Palacios +7690,Jesse Chavez,8,chaveje01,370,tier1_bbref,Automatic match via bbref_id to Jesse Chavez +7691,Jesse Winker,8,winkeje01,2177,tier1_bbref,Automatic match via bbref_id to Jesse Winker +7692,Jesus Aguilar,8,aguilje01,25,tier1_bbref,Automatic match via bbref_id to Jesus Aguilar +7693,Jesus Luzardo,8,luzarje01,1170,tier1_bbref,Automatic match via bbref_id to Jesus Luzardo +7694,Jesus Sanchez,8,sanchje02,1749,tier1_bbref,Automatic match via bbref_id to Jesus Sanchez +7695,Jeurys Familia,8,familje01,595,tier1_bbref,Automatic match via bbref_id to Jeurys Familia +7696,Jharel Cotton,8,cottojh01,423,tier1_bbref,Automatic match via bbref_id to Jharel Cotton +7697,Jhoan Duran,8,duranjh01,550,tier1_bbref,Automatic match via bbref_id to Jhoan Duran +7698,Jhoulys Chacin,8,chacijh01,362,tier1_bbref,Automatic match via bbref_id to Jhoulys Chacin +7699,Ji Man Choi,8,choiji01,377,tier1_bbref,Automatic match via bbref_id to Ji Man Choi +7700,Jimmy Herget,8,hergeji01,863,tier1_bbref,Automatic match via bbref_id to Jimmy Herget +7701,Jimmy Lambert,8,lambeji01,1089,tier1_bbref,Automatic match via bbref_id to Jimmy Lambert +7702,JJ Bleday,8,bledajj01,211,tier1_bbref,Automatic match via bbref_id to JJ Bleday +7703,JJ Matijevic,8,matijjj01,1237,tier1_bbref,Automatic match via bbref_id to JJ Matijevic +7704,Jo Adell,8,adelljo01,20,tier1_bbref,Automatic match via bbref_id to Jo Adell +7705,Joan Adon,8,adonjo01,21,tier1_bbref,Automatic match via bbref_id to Joan Adon +7706,Joc Pederson,8,pederjo01,1514,tier1_bbref,Automatic match via bbref_id to Joc Pederson +7707,Joe Barlow,8,barlojo01,129,tier1_bbref,Automatic match via bbref_id to Joe Barlow +7708,Joe Jimenez,8,jimenjo02,979,tier1_bbref,Automatic match via bbref_id to Joe Jimenez +7709,Joe Kelly,8,kellyjo05,1021,tier1_bbref,Automatic match via bbref_id to Joe Kelly +7710,Joe Mantiply,8,mantijo01,1193,tier1_bbref,Automatic match via bbref_id to Joe Mantiply +7711,Joe Musgrove,8,musgrjo01,1394,tier1_bbref,Automatic match via bbref_id to Joe Musgrove +7712,Joe Ryan,8,ryanjo04,1732,tier1_bbref,Automatic match via bbref_id to Joe Ryan +7713,Joe Smith,8,smithjo05,1842,tier1_bbref,Automatic match via bbref_id to Joe Smith +7714,Joel Kuhnel,8,kuhnejo01,1079,tier1_bbref,Automatic match via bbref_id to Joel Kuhnel +7715,Joel Payamps,8,payamjo01,1507,tier1_bbref,Automatic match via bbref_id to Joel Payamps +7716,Joely Rodriguez,8,rodrijo06,1673,tier1_bbref,Automatic match via bbref_id to Joely Rodriguez +7717,Joey Bart,8,bartjo01,142,tier1_bbref,Automatic match via bbref_id to Joey Bart +7718,Joey Gallo,8,gallojo01,674,tier1_bbref,Automatic match via bbref_id to Joey Gallo +7719,Joey Krehbiel,8,krehbjo01,1075,tier1_bbref,Automatic match via bbref_id to Joey Krehbiel +7720,Joey Meneses,8,menesjo01,1303,tier1_bbref,Automatic match via bbref_id to Joey Meneses +7721,Joey Votto,8,vottojo01,2092,tier1_bbref,Automatic match via bbref_id to Joey Votto +7722,Joey Wendle,8,wendljo01,2135,tier1_bbref,Automatic match via bbref_id to Joey Wendle +7723,Joey Wentz,8,wentzjo01,2136,tier1_bbref,Automatic match via bbref_id to Joey Wentz +7724,Johan Camargo,8,camarjo01,309,tier1_bbref,Automatic match via bbref_id to Johan Camargo +7725,Johan Oviedo,8,oviedjo01,1479,tier1_bbref,Automatic match via bbref_id to Johan Oviedo +7726,John Brebbia,8,brebbjo01,247,tier1_bbref,Automatic match via bbref_id to John Brebbia +7727,John King,8,kingjo01,1045,tier1_bbref,Automatic match via bbref_id to John King +7728,John Schreiber,8,schrejo01,1780,tier1_bbref,Automatic match via bbref_id to John Schreiber +7729,Johnny Cueto,8,cuetojo01,451,tier1_bbref,Automatic match via bbref_id to Johnny Cueto +7730,Jon Berti,8,bertijo01,183,tier1_bbref,Automatic match via bbref_id to Jon Berti +7731,Jon Gray,8,grayjo02,766,tier1_bbref,Automatic match via bbref_id to Jon Gray +7732,Jon Heasley,8,heasljo01,845,tier1_bbref,Automatic match via bbref_id to Jon Heasley +7733,Jonah Bride,8,bridejo01,255,tier1_bbref,Automatic match via bbref_id to Jonah Bride +7734,Jonah Heim,8,heimjo01,849,tier1_bbref,Automatic match via bbref_id to Jonah Heim +7735,Jonathan Aranda,8,arandjo01,82,tier1_bbref,Automatic match via bbref_id to Jonathan Aranda +7736,Jonathan Davis,8,davisjo05,470,tier1_bbref,Automatic match via bbref_id to Jonathan Davis +7737,Jonathan Hernandez,8,hernajo02,876,tier1_bbref,Automatic match via bbref_id to Jonathan Hernandez +7738,Jonathan India,8,indiajo01,953,tier1_bbref,Automatic match via bbref_id to Jonathan India +7739,Jonathan Loaisiga,8,loaisjo01,1132,tier1_bbref,Automatic match via bbref_id to Jonathan Loaisiga +7740,Jonathan Schoop,8,schoojo01,1779,tier1_bbref,Automatic match via bbref_id to Jonathan Schoop +7741,Jonathan Villar,8,villajo01,2079,tier1_bbref,Automatic match via bbref_id to Jonathan Villar +7742,Jordan Groshans,8,groshjo01,778,tier1_bbref,Automatic match via bbref_id to Jordan Groshans +7743,Jordan Hicks,8,hicksjo03,894,tier1_bbref,Automatic match via bbref_id to Jordan Hicks +7744,Jordan Luplow,8,luplojo01,1168,tier1_bbref,Automatic match via bbref_id to Jordan Luplow +7745,Jordan Lyles,8,lylesjo01,1171,tier1_bbref,Automatic match via bbref_id to Jordan Lyles +7746,Jordan Montgomery,8,montgjo01,1356,tier1_bbref,Automatic match via bbref_id to Jordan Montgomery +7747,Jordan Romano,8,romanjo03,1699,tier1_bbref,Automatic match via bbref_id to Jordan Romano +7748,Jordan Weems,8,weemsjo01,2129,tier1_bbref,Automatic match via bbref_id to Jordan Weems +7749,Jorge Alfaro,8,alfarjo01,40,tier1_bbref,Automatic match via bbref_id to Jorge Alfaro +7750,Jorge Lopez,8,lopezjo02,1144,tier1_bbref,Automatic match via bbref_id to Jorge Lopez +7751,Jorge Mateo,8,mateojo01,1233,tier1_bbref,Automatic match via bbref_id to Jorge Mateo +7752,Jorge Polanco,8,polanjo01,1570,tier1_bbref,Automatic match via bbref_id to Jorge Polanco +7753,Jorge Soler,8,solerjo01,1870,tier1_bbref,Automatic match via bbref_id to Jorge Soler +7754,Jose Abreu,8,abreujo02,7,tier1_bbref,Automatic match via bbref_id to Jose Abreu +7755,Jose Altuve,8,altuvjo01,56,tier1_bbref,Automatic match via bbref_id to Jose Altuve +7756,Jose Alvarado,8,alvarjo03,58,tier1_bbref,Automatic match via bbref_id to Jose Alvarado +7757,Jose Azocar,8,azocajo01,107,tier1_bbref,Automatic match via bbref_id to Jose Azocar +7758,Jose Barrero,8,garcijo02,139,tier1_bbref,Automatic match via bbref_id to Jose Barrero +7759,Jose Berrios,8,berrijo01,182,tier1_bbref,Automatic match via bbref_id to Jose Berrios +7760,Jose Cisnero,8,cisnejo01,382,tier1_bbref,Automatic match via bbref_id to Jose Cisnero +7761,Jose Cuas,8,cuasjo01,450,tier1_bbref,Automatic match via bbref_id to Jose Cuas +7762,Jose Herrera,8,herrejo04,884,tier1_bbref,Automatic match via bbref_id to Jose Herrera +7763,Jose Iglesias,8,iglesjo01,949,tier1_bbref,Automatic match via bbref_id to Jose Iglesias +7764,Jose Leclerc,8,leclejo01,1106,tier1_bbref,Automatic match via bbref_id to Jose Leclerc +7765,Jose Miranda,8,miranjo01,1337,tier1_bbref,Automatic match via bbref_id to Jose Miranda +7766,Jose Quijada,8,quijajo01,1594,tier1_bbref,Automatic match via bbref_id to Jose Quijada +7767,Jose Quintana,8,quintjo01,1596,tier1_bbref,Automatic match via bbref_id to Jose Quintana +7768,Jose Ramirez,8,ramirjo01,1608,tier1_bbref,Automatic match via bbref_id to Jose Ramirez +7769,Jose Ruiz,8,ruizjo01,1724,tier1_bbref,Automatic match via bbref_id to Jose Ruiz +7770,Jose Siri,8,sirijo01,1830,tier1_bbref,Automatic match via bbref_id to Jose Siri +7771,Jose Suarez,8,suarejo01,1937,tier1_bbref,Automatic match via bbref_id to Jose Suarez +7772,Jose Trevino,8,trevijo01,2013,tier1_bbref,Automatic match via bbref_id to Jose Trevino +7773,Jose Urena,8,urenajo01,2035,tier1_bbref,Automatic match via bbref_id to Jose Urena +7774,Jose Urquidy,8,urquijo01,2041,tier1_bbref,Automatic match via bbref_id to Jose Urquidy +7775,Josh Bell,8,belljo02,168,tier1_bbref,Automatic match via bbref_id to Josh Bell +7776,Josh Donaldson,8,donaljo02,526,tier1_bbref,Automatic match via bbref_id to Josh Donaldson +7777,Josh Fleming,8,flemijo01,623,tier1_bbref,Automatic match via bbref_id to Josh Fleming +7778,Josh Hader,8,haderjo01,802,tier1_bbref,Automatic match via bbref_id to Josh Hader +7779,Josh Harrison,8,harrijo05,829,tier1_bbref,Automatic match via bbref_id to Josh Harrison +7780,Josh Jung,8,jungjo01,1002,tier1_bbref,Automatic match via bbref_id to Josh Jung +7781,Josh Lowe,8,lowejo01,1157,tier1_bbref,Automatic match via bbref_id to Josh Lowe +7782,Josh Naylor,8,naylojo01,1404,tier1_bbref,Automatic match via bbref_id to Josh Naylor +7783,Josh Rogers,8,rogerjo01,1690,tier1_bbref,Automatic match via bbref_id to Josh Rogers +7784,Josh Rojas,8,rojasjo01,1695,tier1_bbref,Automatic match via bbref_id to Josh Rojas +7785,Josh Smith,8,smithjo11,1852,tier1_bbref,Automatic match via bbref_id to Josh Smith +7786,Josh Staumont,8,staumjo01,1897,tier1_bbref,Automatic match via bbref_id to Josh Staumont +7787,Josh VanMeter,8,vanmejo01,2052,tier1_bbref,Automatic match via bbref_id to Josh VanMeter +7788,Josh Winckowski,8,winckjo01,2174,tier1_bbref,Automatic match via bbref_id to Josh Winckowski +7789,Josh Winder,8,windejo01,2175,tier1_bbref,Automatic match via bbref_id to Josh Winder +7790,Josiah Gray,8,grayjo03,767,tier1_bbref,Automatic match via bbref_id to Josiah Gray +7791,Jovani Moran,8,moranjo01,1361,tier1_bbref,Automatic match via bbref_id to Jovani Moran +7792,JP Crawford,8,crawfjp01,432,tier1_bbref,Automatic match via bbref_id to JP Crawford +7793,JP Feyereisen,8,feyerjo01,612,tier1_bbref,Automatic match via bbref_id to JP Feyereisen +7794,JP Sears,8,searsjp01,1795,tier1_bbref,Automatic match via bbref_id to JP Sears +7795,JT Brubaker,8,brubajt01,269,tier1_bbref,Automatic match via bbref_id to JT Brubaker +7796,JT Chargois,8,chargjt01,368,tier1_bbref,Automatic match via bbref_id to JT Chargois +7797,JT Realmuto,8,realmjt01,1622,tier1_bbref,Automatic match via bbref_id to JT Realmuto +7798,Juan Lagares,8,lagarju01,1083,tier1_bbref,Automatic match via bbref_id to Juan Lagares +7799,Juan Soto,8,sotoju01,1879,tier1_bbref,Automatic match via bbref_id to Juan Soto +7800,Juan Yepez,8,yepezju01,2213,tier1_bbref,Automatic match via bbref_id to Juan Yepez +7801,Julian Merryweather,8,merryju01,1311,tier1_bbref,Automatic match via bbref_id to Julian Merryweather +7802,Julio Rodriguez,8,rodriju01,1682,tier1_bbref,Automatic match via bbref_id to Julio Rodriguez +7803,Julio Urias,8,uriasju01,2038,tier1_bbref,Automatic match via bbref_id to Julio Urias +7804,Jurickson Profar,8,profaju01,1587,tier1_bbref,Automatic match via bbref_id to Jurickson Profar +7805,Justin Bruihl,8,bruihju01,271,tier1_bbref,Automatic match via bbref_id to Justin Bruihl +7806,Justin Dunn,8,dunnju01,546,tier1_bbref,Automatic match via bbref_id to Justin Dunn +7807,Justin Lawrence,8,lawreju01,1100,tier1_bbref,Automatic match via bbref_id to Justin Lawrence +7808,Justin Steele,8,steelju01,1899,tier1_bbref,Automatic match via bbref_id to Justin Steele +7809,Justin Turner,8,turneju01,2029,tier1_bbref,Automatic match via bbref_id to Justin Turner +7810,Justin Verlander,8,verlaju01,2071,tier1_bbref,Automatic match via bbref_id to Justin Verlander +7811,Kaleb Ort,8,ortka01,1464,tier1_bbref,Automatic match via bbref_id to Kaleb Ort +7812,KeBryan Hayes,8,hayeske01,838,tier1_bbref,Automatic match via bbref_id to KeBryan Hayes +7813,Keegan Akin,8,akinke01,27,tier1_bbref,Automatic match via bbref_id to Keegan Akin +7814,Keegan Thompson,8,thompke02,1982,tier1_bbref,Automatic match via bbref_id to Keegan Thompson +7815,Keibert Ruiz,8,ruizke01,1725,tier1_bbref,Automatic match via bbref_id to Keibert Ruiz +7816,Ken Waldichuk,8,waldike01,2101,tier1_bbref,Automatic match via bbref_id to Ken Waldichuk +7817,Kendall Graveman,8,graveke01,764,tier1_bbref,Automatic match via bbref_id to Kendall Graveman +7818,Kenley Jansen,8,janseke01,968,tier1_bbref,Automatic match via bbref_id to Kenley Jansen +7819,Kerry Carpenter,8,carpeke01,330,tier1_bbref,Automatic match via bbref_id to Kerry Carpenter +7820,Keston Hiura,8,hiurake01,905,tier1_bbref,Automatic match via bbref_id to Keston Hiura +7821,Ketel Marte,8,marteke01,1210,tier1_bbref,Automatic match via bbref_id to Ketel Marte +7822,Kevin Gausman,8,gausmke01,706,tier1_bbref,Automatic match via bbref_id to Kevin Gausman +7823,Kevin Ginkel,8,ginkeke01,722,tier1_bbref,Automatic match via bbref_id to Kevin Ginkel +7824,Kevin Kiermaier,8,kiermke01,1039,tier1_bbref,Automatic match via bbref_id to Kevin Kiermaier +7825,Kevin Newman,8,newmake01,1420,tier1_bbref,Automatic match via bbref_id to Kevin Newman +7826,Kevin Plawecki,8,plaweke01,1565,tier1_bbref,Automatic match via bbref_id to Kevin Plawecki +7827,Kevin Smith,8,smithke05,1854,tier1_bbref,Automatic match via bbref_id to Kevin Smith +7828,Kirby Snead,8,sneadki01,1859,tier1_bbref,Automatic match via bbref_id to Kirby Snead +7829,Kirk McCarty,8,mccarki01,1266,tier1_bbref,Automatic match via bbref_id to Kirk McCarty +7830,Kody Clemens,8,clemeko01,390,tier1_bbref,Automatic match via bbref_id to Kody Clemens +7831,Kole Calhoun,8,calhoko01,306,tier1_bbref,Automatic match via bbref_id to Kole Calhoun +7832,Kolten Wong,8,wongko01,2188,tier1_bbref,Automatic match via bbref_id to Kolten Wong +7833,Konnor Pilkington,8,pilkiko01,1556,tier1_bbref,Automatic match via bbref_id to Konnor Pilkington +7834,Kris Bryant,8,bryankr01,273,tier1_bbref,Automatic match via bbref_id to Kris Bryant +7835,Kris Bubic,8,bubickr01,274,tier1_bbref,Automatic match via bbref_id to Kris Bubic +7836,Kurt Suzuki,8,suzukku01,1945,tier1_bbref,Automatic match via bbref_id to Kurt Suzuki +7837,Kutter Crawford,8,crawfku01,431,tier1_bbref,Automatic match via bbref_id to Kutter Crawford +7838,Kyle Bradish,8,bradiky01,235,tier1_bbref,Automatic match via bbref_id to Kyle Bradish +7839,Kyle Farmer,8,farmeky01,598,tier1_bbref,Automatic match via bbref_id to Kyle Farmer +7840,Kyle Finnegan,8,finneky01,617,tier1_bbref,Automatic match via bbref_id to Kyle Finnegan +7841,Kyle Freeland,8,freelky01,650,tier1_bbref,Automatic match via bbref_id to Kyle Freeland +7842,Kyle Garlick,8,garliky01,696,tier1_bbref,Automatic match via bbref_id to Kyle Garlick +7843,Kyle Gibson,8,gibsoky01,715,tier1_bbref,Automatic match via bbref_id to Kyle Gibson +7844,Kyle Hendricks,8,hendrky01,856,tier1_bbref,Automatic match via bbref_id to Kyle Hendricks +7845,Kyle Higashioka,8,higasky01,895,tier1_bbref,Automatic match via bbref_id to Kyle Higashioka +7846,Kyle Isbel,8,isbelky01,956,tier1_bbref,Automatic match via bbref_id to Kyle Isbel +7847,Kyle Nelson,8,nelsoky01,1412,tier1_bbref,Automatic match via bbref_id to Kyle Nelson +7848,Kyle Schwarber,8,schwaky01,1784,tier1_bbref,Automatic match via bbref_id to Kyle Schwarber +7849,Kyle Stowers,8,stoweky01,1917,tier1_bbref,Automatic match via bbref_id to Kyle Stowers +7850,Kyle Tucker,8,tuckeky01,2023,tier1_bbref,Automatic match via bbref_id to Kyle Tucker +7851,Kyle Wright,8,wrighky01,2200,tier1_bbref,Automatic match via bbref_id to Kyle Wright +7852,LaMonte Wade Jr,8,wadela01,2095,tier1_bbref,Automatic match via bbref_id to LaMonte Wade Jr +7853,Lance Lynn,8,lynnla01,1173,tier1_bbref,Automatic match via bbref_id to Lance Lynn +7854,Lance McCullers Jr,8,mcculla02,1271,tier1_bbref,Automatic match via bbref_id to Lance McCullers Jr +7855,Lane Thomas,8,thomala02,1978,tier1_bbref,Automatic match via bbref_id to Lane Thomas +7856,Lars Nootbaar,8,nootbla01,1436,tier1_bbref,Automatic match via bbref_id to Lars Nootbaar +7857,Leody Taveras,8,taverle01,1962,tier1_bbref,Automatic match via bbref_id to Leody Taveras +7858,Leury Garcia,8,garcile02,679,tier1_bbref,Automatic match via bbref_id to Leury Garcia +7859,Lewin Diaz,8,diazle01,506,tier1_bbref,Automatic match via bbref_id to Lewin Diaz +7860,Liam Hendriks,8,hendrli01,857,tier1_bbref,Automatic match via bbref_id to Liam Hendriks +7861,Logan Gilbert,8,gilbelo01,718,tier1_bbref,Automatic match via bbref_id to Logan Gilbert +7862,Logan Webb,8,webblo01,2127,tier1_bbref,Automatic match via bbref_id to Logan Webb +7863,Lorenzo Cain,8,cainlo01,305,tier1_bbref,Automatic match via bbref_id to Lorenzo Cain +7864,Lou Trivino,8,trivilo01,2016,tier1_bbref,Automatic match via bbref_id to Lou Trivino +7865,Louie Varland,8,varlalo01,2057,tier1_bbref,Automatic match via bbref_id to Louie Varland +7866,Louis Head,8,headlo01,840,tier1_bbref,Automatic match via bbref_id to Louis Head +7867,Lourdes Gurriel Jr,8,gurrilo01,794,tier1_bbref,Automatic match via bbref_id to Lourdes Gurriel Jr +7868,Lucas Gilbreath,8,gilbrlu01,719,tier1_bbref,Automatic match via bbref_id to Lucas Gilbreath +7869,Lucas Giolito,8,giolilu01,724,tier1_bbref,Automatic match via bbref_id to Lucas Giolito +7870,Lucas Luetge,8,luetglu01,1164,tier1_bbref,Automatic match via bbref_id to Lucas Luetge +7871,Luis Arraez,8,arraelu01,93,tier1_bbref,Automatic match via bbref_id to Luis Arraez +7872,Luis Barrera,8,barrelu01,138,tier1_bbref,Automatic match via bbref_id to Luis Barrera +7873,Luis Castillo,8,castilu02,344,tier1_bbref,Automatic match via bbref_id to Luis Castillo +7874,Luis Cessa,8,cessalu01,361,tier1_bbref,Automatic match via bbref_id to Luis Cessa +7875,Luis V Garcia,8,garcilu04,694,tier1_bbref,Automatic match via bbref_id to Luis Garcia Jr +7876,Luis Garcia,8,garcilu03,3237,manual_new,Manual assignment to new SbaPlayer: Luis Garcia +7877,Luis H Garcia,8,garcilu05,3244,manual_new,Manual assignment to new SbaPlayer: Luis H Garcia +7878,Luis Gonzalez,8,gonzalu03,746,tier1_bbref,Automatic match via bbref_id to Luis Gonzalez +7879,Luis Guillorme,8,guilllu01,792,tier1_bbref,Automatic match via bbref_id to Luis Guillorme +7881,Luis Rengifo,8,rengilu01,1632,tier1_bbref,Automatic match via bbref_id to Luis Rengifo +7882,Luis Robert,8,roberlu01,1660,tier1_bbref,Automatic match via bbref_id to Luis Robert +7883,Luis Severino,8,severlu01,1805,tier1_bbref,Automatic match via bbref_id to Luis Severino +7884,Luis Torrens,8,torrelu01,2002,tier1_bbref,Automatic match via bbref_id to Luis Torrens +7885,Luis Urias,8,uriaslu01,2039,tier1_bbref,Automatic match via bbref_id to Luis Urias +7886,Luke Maile,8,mailelu01,1185,tier1_bbref,Automatic match via bbref_id to Luke Maile +7887,Luke Raley,8,raleylu01,1602,tier1_bbref,Automatic match via bbref_id to Luke Raley +7888,Luke Voit,8,voitlu01,2087,tier1_bbref,Automatic match via bbref_id to Luke Voit +7889,Luke Weaver,8,weavelu01,2124,tier1_bbref,Automatic match via bbref_id to Luke Weaver +7890,Luke Williams,8,willilu01,2159,tier1_bbref,Automatic match via bbref_id to Luke Williams +7891,MacKenzie Gore,8,gorema01,754,tier1_bbref,Automatic match via bbref_id to MacKenzie Gore +7892,Madison Bumgarner,8,bumgama01,278,tier1_bbref,Automatic match via bbref_id to Madison Bumgarner +7893,Magneuris Sierra,8,sierrma01,1823,tier1_bbref,Automatic match via bbref_id to Magneuris Sierra +7894,Maikel Franco,8,francma02,645,tier1_bbref,Automatic match via bbref_id to Maikel Franco +7895,Manny Banuelos,8,banuema01,123,tier1_bbref,Automatic match via bbref_id to Manny Banuelos +7896,Manny Machado,8,machama01,1175,tier1_bbref,Automatic match via bbref_id to Manny Machado +7897,Manuel Margot,8,margoma01,1198,tier1_bbref,Automatic match via bbref_id to Manuel Margot +7898,Manuel Rodriguez,8,rodrima01,1678,tier1_bbref,Automatic match via bbref_id to Manuel Rodriguez +7899,Marcell Ozuna,8,ozunama01,1481,tier1_bbref,Automatic match via bbref_id to Marcell Ozuna +7900,Marco Gonzales,8,gonzama02,735,tier1_bbref,Automatic match via bbref_id to Marco Gonzales +7901,Marcus Semien,8,semiema01,1799,tier1_bbref,Automatic match via bbref_id to Marcus Semien +7902,Marcus Stroman,8,stromma01,1928,tier1_bbref,Automatic match via bbref_id to Marcus Stroman +7903,Mark Canha,8,canhama01,316,tier1_bbref,Automatic match via bbref_id to Mark Canha +7904,Mark Contreras,8,contrma01,413,tier1_bbref,Automatic match via bbref_id to Mark Contreras +7905,Mark Leiter,8,leitema02,1112,tier1_bbref,Automatic match via bbref_id to Mark Leiter +7906,Mark Mathias,8,mathima01,1234,tier1_bbref,Automatic match via bbref_id to Mark Mathias +7907,Mark Melancon,8,melanma01,1298,tier1_bbref,Automatic match via bbref_id to Mark Melancon +7908,Martin Maldonado,8,maldoma01,1187,tier1_bbref,Automatic match via bbref_id to Martin Maldonado +7909,Martin Perez,8,perezma02,1535,tier1_bbref,Automatic match via bbref_id to Martin Perez +7910,Marwin Gonzalez,8,gonzama01,741,tier1_bbref,Automatic match via bbref_id to Marwin Gonzalez +7911,Mason Thompson,8,thompma02,1984,tier1_bbref,Automatic match via bbref_id to Mason Thompson +7912,Matt Barnes,8,barnema01,131,tier1_bbref,Automatic match via bbref_id to Matt Barnes +7914,Matt Brash,8,brashma01,241,tier1_bbref,Automatic match via bbref_id to Matt Brash +7915,Matt Bush,8,bushma01,289,tier1_bbref,Automatic match via bbref_id to Matt Bush +7916,Matt Carpenter,8,carpema01,329,tier1_bbref,Automatic match via bbref_id to Matt Carpenter +7917,Matt Chapman,8,chapmma01,367,tier1_bbref,Automatic match via bbref_id to Matt Chapman +7918,Matt Duffy,8,duffyma01,542,tier1_bbref,Automatic match via bbref_id to Matt Duffy +7919,Matt Festa,8,festama01,610,tier1_bbref,Automatic match via bbref_id to Matt Festa +7920,Matt Foster,8,fostema01,638,tier1_bbref,Automatic match via bbref_id to Matt Foster +7921,Matt Manning,8,mannima02,1191,tier1_bbref,Automatic match via bbref_id to Matt Manning +7922,Matt Moore,8,moorema02,1357,tier1_bbref,Automatic match via bbref_id to Matt Moore +7923,Matt Olson,8,olsonma02,1461,tier1_bbref,Automatic match via bbref_id to Matt Olson +7924,Matt Reynolds,8,reynoma03,1640,tier1_bbref,Automatic match via bbref_id to Matt Reynolds +7925,Matt Strahm,8,strahma01,1918,tier1_bbref,Automatic match via bbref_id to Matt Strahm +7926,Matt Swarmer,8,swarmma01,1949,tier1_bbref,Automatic match via bbref_id to Matt Swarmer +7927,Matt Thaiss,8,thaisma01,1975,tier1_bbref,Automatic match via bbref_id to Matt Thaiss +7928,Matt Vierling,8,vierlma01,2077,tier1_bbref,Automatic match via bbref_id to Matt Vierling +7929,Matt Wallner,8,wallnma01,2109,tier1_bbref,Automatic match via bbref_id to Matt Wallner +7930,Matt Wisler,8,wislema01,2183,tier1_bbref,Automatic match via bbref_id to Matt Wisler +7931,Matthew Liberatore,8,liberma01,1121,tier1_bbref,Automatic match via bbref_id to Matthew Liberatore +7932,Mauricio Dubon,8,dubonma01,538,tier1_bbref,Automatic match via bbref_id to Mauricio Dubon +7933,Max Castillo,8,castima03,346,tier1_bbref,Automatic match via bbref_id to Max Castillo +7934,Max Fried,8,friedma01,659,tier1_bbref,Automatic match via bbref_id to Max Fried +7935,Max Kepler,8,keplema01,1031,tier1_bbref,Automatic match via bbref_id to Max Kepler +7936,Max Muncy,8,muncyma01,1382,tier1_bbref,Automatic match via bbref_id to Max Muncy +7937,Max Scherzer,8,scherma01,1773,tier1_bbref,Automatic match via bbref_id to Max Scherzer +7938,Max Stassi,8,stassma01,1896,tier1_bbref,Automatic match via bbref_id to Max Stassi +7939,Meibrys Viloria,8,vilorme01,2081,tier1_bbref,Automatic match via bbref_id to Meibrys Viloria +7940,Merrill Kelly,8,kellyme01,1020,tier1_bbref,Automatic match via bbref_id to Merrill Kelly +7941,Michael Brantley,8,brantmi02,240,tier1_bbref,Automatic match via bbref_id to Michael Brantley +7942,Michael Chavis,8,chavimi01,371,tier1_bbref,Automatic match via bbref_id to Michael Chavis +7943,Michael Fulmer,8,fulmemi01,666,tier1_bbref,Automatic match via bbref_id to Michael Fulmer +7944,Michael Grove,8,grovemi01,781,tier1_bbref,Automatic match via bbref_id to Michael Grove +7945,Michael Harris,8,harrimi04,827,tier1_bbref,Automatic match via bbref_id to Michael Harris +7946,Michael Hermosillo,8,hermomi01,865,tier1_bbref,Automatic match via bbref_id to Michael Hermosillo +7947,Michael King,8,kingmi01,1047,tier1_bbref,Automatic match via bbref_id to Michael King +7948,Michael Kopech,8,kopecmi01,1071,tier1_bbref,Automatic match via bbref_id to Michael Kopech +7949,Michael Lorenzen,8,lorenmi01,1151,tier1_bbref,Automatic match via bbref_id to Michael Lorenzen +7950,Michael Massey,8,massemi02,1231,tier1_bbref,Automatic match via bbref_id to Michael Massey +7951,Michael Papierski,8,papiemi01,1495,tier1_bbref,Automatic match via bbref_id to Michael Papierski +7952,Michael Perez,8,perezmi03,1539,tier1_bbref,Automatic match via bbref_id to Michael Perez +7953,Michael Pineda,8,pinedmi01,1560,tier1_bbref,Automatic match via bbref_id to Michael Pineda +7954,Michael Rucker,8,ruckemi01,1721,tier1_bbref,Automatic match via bbref_id to Michael Rucker +7955,Michael Stefanic,8,stefami01,1901,tier1_bbref,Automatic match via bbref_id to Michael Stefanic +7956,Michael A Taylor,8,taylomi01,1963,manual_existing,Manual match to existing SbaPlayer: Michael Taylor +7957,Michael Toglia,8,toglimi01,1994,tier1_bbref,Automatic match via bbref_id to Michael Toglia +7958,Michael Wacha,8,wachami01,2093,tier1_bbref,Automatic match via bbref_id to Michael Wacha +7959,Mickey Moniak,8,moniami01,1350,tier1_bbref,Automatic match via bbref_id to Mickey Moniak +7960,Miguel Andujar,8,andujmi01,78,tier1_bbref,Automatic match via bbref_id to Miguel Andujar +7961,Miguel Cabrera,8,cabremi01,298,tier1_bbref,Automatic match via bbref_id to Miguel Cabrera +7962,Miguel Castro,8,castrmi01,350,tier1_bbref,Automatic match via bbref_id to Miguel Castro +7963,Miguel Rojas,8,rojasmi02,1694,tier1_bbref,Automatic match via bbref_id to Miguel Rojas +7964,Miguel Sano,8,sanomi01,1757,tier1_bbref,Automatic match via bbref_id to Miguel Sano +7965,Mike Baumann,8,baumami01,152,tier1_bbref,Automatic match via bbref_id to Mike Baumann +7966,Mike Brosseau,8,brossmi01,263,tier1_bbref,Automatic match via bbref_id to Mike Brosseau +7967,Mike Clevinger,8,clevimi01,392,tier1_bbref,Automatic match via bbref_id to Mike Clevinger +7968,Mike Ford,8,fordmi01,635,tier1_bbref,Automatic match via bbref_id to Mike Ford +7969,Mike Mayers,8,mayermi01,1251,tier1_bbref,Automatic match via bbref_id to Mike Mayers +7970,Mike Minor,8,minormi01,1335,tier1_bbref,Automatic match via bbref_id to Mike Minor +7971,Mike Moustakas,8,moustmi01,1378,tier1_bbref,Automatic match via bbref_id to Mike Moustakas +7972,Mike Trout,8,troutmi01,2019,tier1_bbref,Automatic match via bbref_id to Mike Trout +7973,Mike Yastrzemski,8,yastrmi01,2210,tier1_bbref,Automatic match via bbref_id to Mike Yastrzemski +7974,Mike Zunino,8,zuninmi01,2234,tier1_bbref,Automatic match via bbref_id to Mike Zunino +8064,Reynaldo Lopez,8,lopezre01,1145,tier1_bbref,Automatic match via bbref_id to Reynaldo Lopez +7975,Miles Mikolas,8,mikolmi01,1317,tier1_bbref,Automatic match via bbref_id to Miles Mikolas +7976,Mitch Garver,8,garvemi01,702,tier1_bbref,Automatic match via bbref_id to Mitch Garver +7977,Mitch Haniger,8,hanigmi01,818,tier1_bbref,Automatic match via bbref_id to Mitch Haniger +7978,Mitch Keller,8,kellemi03,1017,tier1_bbref,Automatic match via bbref_id to Mitch Keller +7979,Mitch White,8,whitemi03,2143,tier1_bbref,Automatic match via bbref_id to Mitch White +7980,MJ Melendez,8,melenmj01,1299,tier1_bbref,Automatic match via bbref_id to MJ Melendez +7981,Mookie Betts,8,bettsmo01,187,tier1_bbref,Automatic match via bbref_id to Mookie Betts +7982,Mychal Givens,8,givenmy01,725,tier1_bbref,Automatic match via bbref_id to Mychal Givens +7983,Myles Straw,8,strawmy01,1924,tier1_bbref,Automatic match via bbref_id to Myles Straw +7984,Nabil Crismatt,8,crismna01,436,tier1_bbref,Automatic match via bbref_id to Nabil Crismatt +7985,Nate Eaton,8,eatonna01,557,tier1_bbref,Automatic match via bbref_id to Nate Eaton +7986,Nathan Eovaldi,8,eovalna01,576,tier1_bbref,Automatic match via bbref_id to Nathan Eovaldi +7987,Nathaniel Lowe,8,lowena01,1155,tier1_bbref,Automatic match via bbref_id to Nathaniel Lowe +7988,Nelson Cruz,8,cruzne02,447,tier1_bbref,Automatic match via bbref_id to Nelson Cruz +7989,Nelson Velazquez,8,velazne01,2068,tier1_bbref,Automatic match via bbref_id to Nelson Velazquez +7990,Nestor Cortes Jr,8,cortene01,421,tier1_bbref,Automatic match via bbref_id to Nestor Cortes Jr +7991,Nicholas Castellanos,8,casteni01,340,tier1_bbref,Automatic match via bbref_id to Nicholas Castellanos +7992,Nick Allen,8,allenni02,46,tier1_bbref,Automatic match via bbref_id to Nick Allen +7993,Nick Fortes,8,forteni01,637,tier1_bbref,Automatic match via bbref_id to Nick Fortes +7994,Nick Gordon,8,gordoni01,752,tier1_bbref,Automatic match via bbref_id to Nick Gordon +7995,Nick Lodolo,8,lodolni01,1135,tier1_bbref,Automatic match via bbref_id to Nick Lodolo +7996,Nick Madrigal,8,madrini01,1178,tier1_bbref,Automatic match via bbref_id to Nick Madrigal +7997,Nick Martinez,8,martini01,1224,tier1_bbref,Automatic match via bbref_id to Nick Martinez +7998,Nick Maton,8,matonni01,1239,tier1_bbref,Automatic match via bbref_id to Nick Maton +7999,Nick Nelson,8,nelsoni01,1410,tier1_bbref,Automatic match via bbref_id to Nick Nelson +8000,Nick Pivetta,8,pivetni01,1564,tier1_bbref,Automatic match via bbref_id to Nick Pivetta +8001,Nick Pratto,8,prattni01,1583,tier1_bbref,Automatic match via bbref_id to Nick Pratto +8002,Nick Sandlin,8,sandlni01,1752,tier1_bbref,Automatic match via bbref_id to Nick Sandlin +8003,Nick Senzel,8,senzeni01,1802,tier1_bbref,Automatic match via bbref_id to Nick Senzel +8004,Nick Solak,8,solakni01,1867,tier1_bbref,Automatic match via bbref_id to Nick Solak +8005,Nick Vespi,8,vespini01,2073,tier1_bbref,Automatic match via bbref_id to Nick Vespi +8006,Nick Wittgren,8,wittgni01,2185,tier1_bbref,Automatic match via bbref_id to Nick Wittgren +8007,Nicky Lopez,8,lopezni01,1149,tier1_bbref,Automatic match via bbref_id to Nicky Lopez +8008,Nico Hoerner,8,hoernni01,909,tier1_bbref,Automatic match via bbref_id to Nico Hoerner +8009,Noah Syndergaard,8,syndeno01,1953,tier1_bbref,Automatic match via bbref_id to Noah Syndergaard +8010,Noe Ramirez,8,ramirno01,1606,tier1_bbref,Automatic match via bbref_id to Noe Ramirez +8011,Nolan Arenado,8,arenano01,88,tier1_bbref,Automatic match via bbref_id to Nolan Arenado +8012,Nolan Gorman,8,gormano01,755,tier1_bbref,Automatic match via bbref_id to Nolan Gorman +8013,Nolan Jones,8,jonesno01,994,tier1_bbref,Automatic match via bbref_id to Nolan Jones +8014,Nomar Mazara,8,mazarno01,1254,tier1_bbref,Automatic match via bbref_id to Nomar Mazara +8015,Odubel Herrera,8,herreod01,882,tier1_bbref,Automatic match via bbref_id to Odubel Herrera +8016,Oliver Ortega,8,ortegol01,1466,tier1_bbref,Automatic match via bbref_id to Oliver Ortega +8017,Omar Narvaez,8,narvaom01,1401,tier1_bbref,Automatic match via bbref_id to Omar Narvaez +8018,Oneil Cruz,8,cruzon01,449,tier1_bbref,Automatic match via bbref_id to Oneil Cruz +8019,Orlando Arcia,8,arciaor01,86,tier1_bbref,Automatic match via bbref_id to Orlando Arcia +8020,Oscar Gonzalez,8,gonzaos01,744,tier1_bbref,Automatic match via bbref_id to Oscar Gonzalez +8021,Oscar Mercado,8,mercaos01,1306,tier1_bbref,Automatic match via bbref_id to Oscar Mercado +8022,Oswald Peraza,8,perazos02,1528,tier1_bbref,Automatic match via bbref_id to Oswald Peraza +8023,Oswaldo Cabrera,8,cabreos01,303,tier1_bbref,Automatic match via bbref_id to Oswaldo Cabrera +8024,Owen Miller,8,milleow01,1327,tier1_bbref,Automatic match via bbref_id to Owen Miller +8025,Ozzie Albies,8,albieoz01,31,tier1_bbref,Automatic match via bbref_id to Ozzie Albies +8026,Pablo Lopez,8,lopezpa01,1146,tier1_bbref,Automatic match via bbref_id to Pablo Lopez +8027,Packy Naughton,8,naughpa01,1403,tier1_bbref,Automatic match via bbref_id to Packy Naughton +8028,Paolo Espino,8,espinpa01,583,tier1_bbref,Automatic match via bbref_id to Paolo Espino +8029,Patrick Corbin,8,corbipa01,416,tier1_bbref,Automatic match via bbref_id to Patrick Corbin +8030,Patrick Mazeika,8,mazeipa01,1255,tier1_bbref,Automatic match via bbref_id to Patrick Mazeika +8031,Patrick Sandoval,8,sandopa02,1754,tier1_bbref,Automatic match via bbref_id to Patrick Sandoval +8032,Patrick Wisdom,8,wisdopa01,2181,tier1_bbref,Automatic match via bbref_id to Patrick Wisdom +8033,Paul Blackburn,8,blackpa01,204,tier1_bbref,Automatic match via bbref_id to Paul Blackburn +8034,Paul DeJong,8,dejonpa01,485,tier1_bbref,Automatic match via bbref_id to Paul DeJong +8035,Paul Goldschmidt,8,goldspa01,729,tier1_bbref,Automatic match via bbref_id to Paul Goldschmidt +8036,Paul Sewald,8,sewalpa01,1806,tier1_bbref,Automatic match via bbref_id to Paul Sewald +8037,Pavin Smith,8,smithpa04,1851,tier1_bbref,Automatic match via bbref_id to Pavin Smith +8038,Penn Murfee,8,murfepe01,1386,tier1_bbref,Automatic match via bbref_id to Penn Murfee +8039,Pete Alonso,8,alonspe01,53,tier1_bbref,Automatic match via bbref_id to Pete Alonso +8040,Pete Fairbanks,8,fairbpe01,592,tier1_bbref,Automatic match via bbref_id to Pete Fairbanks +8041,Peter Strzelecki,8,strzepe01,1930,tier1_bbref,Automatic match via bbref_id to Peter Strzelecki +8042,Peyton Burdick,8,burdipe01,282,tier1_bbref,Automatic match via bbref_id to Peyton Burdick +8043,Phil Bickford,8,bickfph01,191,tier1_bbref,Automatic match via bbref_id to Phil Bickford +8044,Phil Gosselin,8,gosseph01,757,tier1_bbref,Automatic match via bbref_id to Phil Gosselin +8045,Phil Maton,8,matonph01,1238,tier1_bbref,Automatic match via bbref_id to Phil Maton +8046,Pierce Johnson,8,johnspi01,985,tier1_bbref,Automatic match via bbref_id to Pierce Johnson +8047,PJ Higgins,8,higgipj01,896,tier1_bbref,Automatic match via bbref_id to PJ Higgins +8048,Rafael Devers,8,deverra01,499,tier1_bbref,Automatic match via bbref_id to Rafael Devers +8049,Rafael Montero,8,montera01,1352,tier1_bbref,Automatic match via bbref_id to Rafael Montero +8050,Rafael Ortega,8,ortegra01,1465,tier1_bbref,Automatic match via bbref_id to Rafael Ortega +8051,Raimel Tapia,8,tapiara01,1957,tier1_bbref,Automatic match via bbref_id to Raimel Tapia +8052,Raisel Iglesias,8,iglesra01,950,tier1_bbref,Automatic match via bbref_id to Raisel Iglesias +8053,Ralph Garza,8,garzara01,704,tier1_bbref,Automatic match via bbref_id to Ralph Garza +8054,Ramon Laureano,8,laurera01,1097,tier1_bbref,Automatic match via bbref_id to Ramon Laureano +8055,Ramon Urias,8,uriasra01,2037,tier1_bbref,Automatic match via bbref_id to Ramon Urias +8056,Randal Grichuk,8,grichra01,775,tier1_bbref,Automatic match via bbref_id to Randal Grichuk +8057,Randy Arozarena,8,arozara01,92,tier1_bbref,Automatic match via bbref_id to Randy Arozarena +8058,Ranger Suarez,8,suarera01,1936,tier1_bbref,Automatic match via bbref_id to Ranger Suarez +8059,Reese McGuire,8,mcguire01,1277,tier1_bbref,Automatic match via bbref_id to Reese McGuire +8060,Reid Detmers,8,detmere01,496,tier1_bbref,Automatic match via bbref_id to Reid Detmers +8061,Reiver Sanmartin,8,sanmare01,1756,tier1_bbref,Automatic match via bbref_id to Reiver Sanmartin +8062,Rene Pinto,8,pintore02,1561,tier1_bbref,Automatic match via bbref_id to Rene Pinto +8063,Reyes Moronta,8,moronre01,1371,tier1_bbref,Automatic match via bbref_id to Reyes Moronta +8065,Rhys Hoskins,8,hoskirh01,925,tier1_bbref,Automatic match via bbref_id to Rhys Hoskins +8066,Rich Hill,8,hillri01,898,tier1_bbref,Automatic match via bbref_id to Rich Hill +8067,Richard Bleier,8,bleieri01,212,tier1_bbref,Automatic match via bbref_id to Richard Bleier +8068,Richie Palacios,8,palacri01,1488,tier1_bbref,Automatic match via bbref_id to Richie Palacios +8069,Riley Adams,8,adamsri03,17,tier1_bbref,Automatic match via bbref_id to Riley Adams +8070,Riley Greene,8,greenri03,771,tier1_bbref,Automatic match via bbref_id to Riley Greene +8071,Roansy Contreras,8,contrro01,412,tier1_bbref,Automatic match via bbref_id to Roansy Contreras +8072,Rob Refsnyder,8,refsnro01,1626,tier1_bbref,Automatic match via bbref_id to Rob Refsnyder +8073,Robbie Grossman,8,grossro01,779,tier1_bbref,Automatic match via bbref_id to Robbie Grossman +8074,Robbie Ray,8,rayro02,1620,tier1_bbref,Automatic match via bbref_id to Robbie Ray +8075,Robert Stephenson,8,stephro01,1904,tier1_bbref,Automatic match via bbref_id to Robert Stephenson +8076,Robert Suarez,8,suarero01,1938,tier1_bbref,Automatic match via bbref_id to Robert Suarez +8077,Roberto Perez,8,perezro02,1538,tier1_bbref,Automatic match via bbref_id to Roberto Perez +8078,Robinson Cano,8,canoro01,319,tier1_bbref,Automatic match via bbref_id to Robinson Cano +8079,Robinson Chirinos,8,chiriro01,373,tier1_bbref,Automatic match via bbref_id to Robinson Chirinos +8080,Rodolfo Castro,8,castrro01,353,tier1_bbref,Automatic match via bbref_id to Rodolfo Castro +8081,Roman Quinn,8,quinnro01,1595,tier1_bbref,Automatic match via bbref_id to Roman Quinn +8082,Romy Gonzalez,8,gonzaro01,745,tier1_bbref,Automatic match via bbref_id to Romy Gonzalez +8083,Ron Marinaccio,8,marinro01,1199,tier1_bbref,Automatic match via bbref_id to Ron Marinaccio +8084,Ronald Acuna Jr,8,acunaro01,12,tier1_bbref,Automatic match via bbref_id to Ronald Acuna Jr +8085,Rony Garcia,8,garciro03,689,tier1_bbref,Automatic match via bbref_id to Rony Garcia +8086,Ross Detwiler,8,detwiro01,497,tier1_bbref,Automatic match via bbref_id to Ross Detwiler +8087,Ross Stripling,8,stripro01,1927,tier1_bbref,Automatic match via bbref_id to Ross Stripling +8088,Rougned Odor,8,odorro01,1451,tier1_bbref,Automatic match via bbref_id to Rougned Odor +8089,Rowan Wick,8,wickro01,2147,tier1_bbref,Automatic match via bbref_id to Rowan Wick +8090,Rowdy Tellez,8,tellero01,1972,tier1_bbref,Automatic match via bbref_id to Rowdy Tellez +8091,Ryan Borucki,8,borucry01,222,tier1_bbref,Automatic match via bbref_id to Ryan Borucki +8092,Ryan Brasier,8,brasiry01,242,tier1_bbref,Automatic match via bbref_id to Ryan Brasier +8093,Ryan Feltner,8,feltnry01,603,tier1_bbref,Automatic match via bbref_id to Ryan Feltner +8094,Ryan Helsley,8,helslry01,853,tier1_bbref,Automatic match via bbref_id to Ryan Helsley +8095,Ryan Jeffers,8,jeffery01,975,tier1_bbref,Automatic match via bbref_id to Ryan Jeffers +8096,Ryan Kreidler,8,kreidry01,1076,tier1_bbref,Automatic match via bbref_id to Ryan Kreidler +8097,Ryan McKenna,8,mckenry01,1281,tier1_bbref,Automatic match via bbref_id to Ryan McKenna +8098,Ryan McMahon,8,mcmahry01,1286,tier1_bbref,Automatic match via bbref_id to Ryan McMahon +8099,Ryan Mountcastle,8,mountry01,1377,tier1_bbref,Automatic match via bbref_id to Ryan Mountcastle +8100,Ryan OHearn,8,ohearry01,1453,tier1_bbref,Automatic match via bbref_id to Ryan OHearn +8101,Ryan Pepiot,8,pepiory01,1521,tier1_bbref,Automatic match via bbref_id to Ryan Pepiot +8102,Ryan Pressly,8,pressry01,1584,tier1_bbref,Automatic match via bbref_id to Ryan Pressly +8103,Ryan Tepera,8,teperry01,1974,tier1_bbref,Automatic match via bbref_id to Ryan Tepera +8104,Ryan Thompson,8,thompry02,1983,tier1_bbref,Automatic match via bbref_id to Ryan Thompson +8105,Ryan Yarbrough,8,yarbrry01,2208,tier1_bbref,Automatic match via bbref_id to Ryan Yarbrough +8106,Ryne Stanek,8,stanery01,1892,tier1_bbref,Automatic match via bbref_id to Ryne Stanek +8107,Salvador Perez,8,perezsa02,1534,tier1_bbref,Automatic match via bbref_id to Salvador Perez +8108,Sam Haggerty,8,haggesa01,803,tier1_bbref,Automatic match via bbref_id to Sam Haggerty +8109,Sam Hentges,8,hentgsa01,861,tier1_bbref,Automatic match via bbref_id to Sam Hentges +8110,Sam Hilliard,8,hillisa01,903,tier1_bbref,Automatic match via bbref_id to Sam Hilliard +8111,Sam Huff,8,huffsa01,936,tier1_bbref,Automatic match via bbref_id to Sam Huff +8112,Sam Long,8,longsa01,1139,tier1_bbref,Automatic match via bbref_id to Sam Long +8113,Sam Moll,8,mollsa01,1346,tier1_bbref,Automatic match via bbref_id to Sam Moll +8114,Sandy Alcantara,8,alcansa01,35,tier1_bbref,Automatic match via bbref_id to Sandy Alcantara +8115,Sandy Leon,8,leonsa01,1115,tier1_bbref,Automatic match via bbref_id to Sandy Leon +8116,Santiago Espinal,8,espinsa01,582,tier1_bbref,Automatic match via bbref_id to Santiago Espinal +8117,Scott Barlow,8,barlosc01,128,tier1_bbref,Automatic match via bbref_id to Scott Barlow +8118,Scott Effross,8,effrosc01,561,tier1_bbref,Automatic match via bbref_id to Scott Effross +8119,Sean Bouchard,8,bouchse01,225,tier1_bbref,Automatic match via bbref_id to Sean Bouchard +8120,Sean Hjelle,8,hjellse01,906,tier1_bbref,Automatic match via bbref_id to Sean Hjelle +8121,Sean Manaea,8,manaese01,1189,tier1_bbref,Automatic match via bbref_id to Sean Manaea +8122,Sean Murphy,8,murphse01,1390,tier1_bbref,Automatic match via bbref_id to Sean Murphy +8123,Sean Poppen,8,poppese01,1576,tier1_bbref,Automatic match via bbref_id to Sean Poppen +8124,Seby Zavala,8,zavalse01,2223,tier1_bbref,Automatic match via bbref_id to Seby Zavala +8125,Seiya Suzuki,8,suzukse01,1946,tier1_bbref,Automatic match via bbref_id to Seiya Suzuki +8126,Seranthony Dominguez,8,dominse01,524,tier1_bbref,Automatic match via bbref_id to Seranthony Dominguez +8127,Sergio Alcantara,8,alcanse01,34,tier1_bbref,Automatic match via bbref_id to Sergio Alcantara +8128,Seth Beer,8,beerse01,166,tier1_bbref,Automatic match via bbref_id to Seth Beer +8129,Seth Brown,8,brownse01,265,tier1_bbref,Automatic match via bbref_id to Seth Brown +8130,Seth Lugo,8,lugose01,1165,tier1_bbref,Automatic match via bbref_id to Seth Lugo +8131,Seth Martinez,8,martise01,1226,tier1_bbref,Automatic match via bbref_id to Seth Martinez +8132,Shane Baz,8,bazsh01,155,tier1_bbref,Automatic match via bbref_id to Shane Baz +8133,Shane Bieber,8,biebesh01,194,tier1_bbref,Automatic match via bbref_id to Shane Bieber +8134,Shane McClanahan,8,mcclash01,1268,tier1_bbref,Automatic match via bbref_id to Shane McClanahan +8135,Shawn Armstrong,8,armstsh01,91,tier1_bbref,Automatic match via bbref_id to Shawn Armstrong +8136,Shea Langeliers,8,langesh01,1092,tier1_bbref,Automatic match via bbref_id to Shea Langeliers +8137,Sheldon Neuse,8,neusesh01,1415,tier1_bbref,Automatic match via bbref_id to Sheldon Neuse +8138,Shohei Ohtani,8,ohtansh01,1455,tier1_bbref,Automatic match via bbref_id to Shohei Ohtani +8139,Skye Bolt,8,boltsk01,218,tier1_bbref,Automatic match via bbref_id to Skye Bolt +8140,Sonny Gray,8,grayso01,765,tier1_bbref,Automatic match via bbref_id to Sonny Gray +8141,Spencer Howard,8,howarsp01,930,tier1_bbref,Automatic match via bbref_id to Spencer Howard +8142,Spencer Steer,8,steersp01,1900,tier1_bbref,Automatic match via bbref_id to Spencer Steer +8143,Spencer Strider,8,stridsp01,1926,tier1_bbref,Automatic match via bbref_id to Spencer Strider +8144,Spencer Torkelson,8,torkesp01,2000,tier1_bbref,Automatic match via bbref_id to Spencer Torkelson +8145,Spenser Watkins,8,watkisp01,2121,tier1_bbref,Automatic match via bbref_id to Spenser Watkins +8146,Starling Marte,8,martest01,1208,tier1_bbref,Automatic match via bbref_id to Starling Marte +8147,Stephen Piscotty,8,piscost01,1563,tier1_bbref,Automatic match via bbref_id to Stephen Piscotty +8148,Stephen Vogt,8,vogtst01,2086,tier1_bbref,Automatic match via bbref_id to Stephen Vogt +8149,Steve Cishek,8,cishest01,381,tier1_bbref,Automatic match via bbref_id to Steve Cishek +8150,Steven Duggar,8,duggast01,543,tier1_bbref,Automatic match via bbref_id to Steven Duggar +8151,Steven Kwan,8,kwanst01,1080,tier1_bbref,Automatic match via bbref_id to Steven Kwan +8152,Steven Matz,8,matzst01,1243,tier1_bbref,Automatic match via bbref_id to Steven Matz +8153,Steven Okert,8,okertst01,1456,tier1_bbref,Automatic match via bbref_id to Steven Okert +8154,Steven Wilson,8,wilsost02,2169,tier1_bbref,Automatic match via bbref_id to Steven Wilson +8155,Stone Garrett,8,garrest01,699,tier1_bbref,Automatic match via bbref_id to Stone Garrett +8156,Stuart Fairchild,8,faircst01,593,tier1_bbref,Automatic match via bbref_id to Stuart Fairchild +8157,Taijuan Walker,8,walketa01,2105,tier1_bbref,Automatic match via bbref_id to Taijuan Walker +8158,Tanner Banks,8,banksta01,122,tier1_bbref,Automatic match via bbref_id to Tanner Banks +8159,Tanner Houck,8,houckta01,927,tier1_bbref,Automatic match via bbref_id to Tanner Houck +8160,Tanner Rainey,8,raineta01,1599,tier1_bbref,Automatic match via bbref_id to Tanner Rainey +8161,Tanner Scott,8,scottta01,1788,tier1_bbref,Automatic match via bbref_id to Tanner Scott +8162,Tarik Skubal,8,skubata01,1836,tier1_bbref,Automatic match via bbref_id to Tarik Skubal +8163,Taylor Clarke,8,clarkta01,384,tier1_bbref,Automatic match via bbref_id to Taylor Clarke +8164,Taylor Hearn,8,hearnta01,844,tier1_bbref,Automatic match via bbref_id to Taylor Hearn +8165,Taylor Rogers,8,rogerta01,1689,tier1_bbref,Automatic match via bbref_id to Taylor Rogers +8166,Taylor Trammell,8,trammta01,2008,tier1_bbref,Automatic match via bbref_id to Taylor Trammell +8167,Taylor Walls,8,wallsta01,2110,tier1_bbref,Automatic match via bbref_id to Taylor Walls +8168,Taylor Ward,8,wardta01,2116,tier1_bbref,Automatic match via bbref_id to Taylor Ward +8169,Teoscar Hernandez,8,hernate01,873,tier1_bbref,Automatic match via bbref_id to Teoscar Hernandez +8170,Terrin Vavra,8,vavrate01,2062,tier1_bbref,Automatic match via bbref_id to Terrin Vavra +8171,Thairo Estrada,8,estrath01,587,tier1_bbref,Automatic match via bbref_id to Thairo Estrada +8172,Tim Anderson,8,anderti01,73,tier1_bbref,Automatic match via bbref_id to Tim Anderson +8173,Tim Hill,8,hillti01,900,tier1_bbref,Automatic match via bbref_id to Tim Hill +8174,Tim Locastro,8,locasti01,1133,tier1_bbref,Automatic match via bbref_id to Tim Locastro +8175,Tim Mayza,8,mayzati01,1253,tier1_bbref,Automatic match via bbref_id to Tim Mayza +8176,TJ Friedl,8,friedtj01,660,tier1_bbref,Automatic match via bbref_id to TJ Friedl +8177,TJ McFarland,8,mcfartj01,1273,tier1_bbref,Automatic match via bbref_id to TJ McFarland +8178,Tomas Nido,8,nidoto01,1424,tier1_bbref,Automatic match via bbref_id to Tomas Nido +8179,Tommy Edman,8,edmanto01,558,tier1_bbref,Automatic match via bbref_id to Tommy Edman +8180,Tommy Henry,8,henryto01,859,tier1_bbref,Automatic match via bbref_id to Tommy Henry +8181,Tommy La Stella,8,lasteto01,1082,tier1_bbref,Automatic match via bbref_id to Tommy La Stella +8182,Tommy Nance,8,nanceto01,1398,tier1_bbref,Automatic match via bbref_id to Tommy Nance +8183,Tommy Pham,8,phamth01,1552,tier1_bbref,Automatic match via bbref_id to Tommy Pham +8184,Tony Gonsolin,8,gonsoto01,734,tier1_bbref,Automatic match via bbref_id to Tony Gonsolin +8185,Tony Kemp,8,kempto01,1027,tier1_bbref,Automatic match via bbref_id to Tony Kemp +8186,Travis dArnaud,8,darnatr01,461,tier1_bbref,Automatic match via bbref_id to Travis dArnaud +8187,Travis Demeritte,8,demertr01,491,tier1_bbref,Automatic match via bbref_id to Travis Demeritte +8188,Trayce Thompson,8,thomptr01,1980,tier1_bbref,Automatic match via bbref_id to Trayce Thompson +8189,Trea Turner,8,turnetr01,1,tier1_bbref,Automatic match via bbref_id to Trea Turner +8190,Trent Grisham,8,grishtr01,776,tier1_bbref,Automatic match via bbref_id to Trent Grisham +8191,Trent Thornton,8,thorntr01,1988,tier1_bbref,Automatic match via bbref_id to Trent Thornton +8192,Trevor Gott,8,gotttr01,758,tier1_bbref,Automatic match via bbref_id to Trevor Gott +8193,Trevor Larnach,8,larnatr01,1094,tier1_bbref,Automatic match via bbref_id to Trevor Larnach +8194,Trevor May,8,maytr01,1248,tier1_bbref,Automatic match via bbref_id to Trevor May +8195,Trevor Megill,8,megiltr01,1294,tier1_bbref,Automatic match via bbref_id to Trevor Megill +8196,Trevor Richards,8,richatr01,1646,tier1_bbref,Automatic match via bbref_id to Trevor Richards +8197,Trevor Rogers,8,rogertr01,1693,tier1_bbref,Automatic match via bbref_id to Trevor Rogers +8198,Trevor Stephan,8,stephtr01,1902,tier1_bbref,Automatic match via bbref_id to Trevor Stephan +8199,Trevor Story,8,storytr01,1914,tier1_bbref,Automatic match via bbref_id to Trevor Story +8200,Trevor Williams,8,willitr01,2156,tier1_bbref,Automatic match via bbref_id to Trevor Williams +8201,Trey Mancini,8,mancitr01,1190,tier1_bbref,Automatic match via bbref_id to Trey Mancini +8202,Triston Casas,8,casastr01,335,tier1_bbref,Automatic match via bbref_id to Triston Casas +8203,Triston McKenzie,8,mckentr01,1282,tier1_bbref,Automatic match via bbref_id to Triston McKenzie +8204,Tucker Barnhart,8,barnhtu01,135,tier1_bbref,Automatic match via bbref_id to Tucker Barnhart +8205,Tucker Davidson,8,davidtu01,464,tier1_bbref,Automatic match via bbref_id to Tucker Davidson +8206,Tucupita Marcano,8,marcatu01,1196,tier1_bbref,Automatic match via bbref_id to Tucupita Marcano +8207,Ty Blach,8,blachty01,202,tier1_bbref,Automatic match via bbref_id to Ty Blach +8208,Ty France,8,francty01,642,tier1_bbref,Automatic match via bbref_id to Ty France +8209,Tyler Alexander,8,alexaty01,37,tier1_bbref,Automatic match via bbref_id to Tyler Alexander +8210,Tyler Anderson,8,anderty01,68,tier1_bbref,Automatic match via bbref_id to Tyler Anderson +8211,Tyler Beede,8,beedety01,164,tier1_bbref,Automatic match via bbref_id to Tyler Beede +8212,Tyler Danish,8,danisty01,460,tier1_bbref,Automatic match via bbref_id to Tyler Danish +8213,Tyler Duffey,8,duffety01,540,tier1_bbref,Automatic match via bbref_id to Tyler Duffey +8214,Tyler Freeman,8,freemty01,654,tier1_bbref,Automatic match via bbref_id to Tyler Freeman +8215,Tyler Gilbert,8,gilbety01,717,tier1_bbref,Automatic match via bbref_id to Tyler Gilbert +8216,Tyler Heineman,8,heinety01,851,tier1_bbref,Automatic match via bbref_id to Tyler Heineman +8217,Tyler Kinley,8,kinlety01,1050,tier1_bbref,Automatic match via bbref_id to Tyler Kinley +8218,Tyler Mahle,8,mahlety01,1183,tier1_bbref,Automatic match via bbref_id to Tyler Mahle +8219,Tyler Matzek,8,matzety01,1244,tier1_bbref,Automatic match via bbref_id to Tyler Matzek +8220,Tylor Megill,8,megilty01,1295,tier1_bbref,Automatic match via bbref_id to Tylor Megill +8221,Tyler Naquin,8,naquity01,1399,tier1_bbref,Automatic match via bbref_id to Tyler Naquin +8222,Tyler Nevin,8,nevinty01,1417,tier1_bbref,Automatic match via bbref_id to Tyler Nevin +8223,Tyler ONeill,8,oneilty01,1463,tier1_bbref,Automatic match via bbref_id to Tyler ONeill +8224,Tyler Rogers,8,rogerty01,1691,tier1_bbref,Automatic match via bbref_id to Tyler Rogers +8225,Tyler Stephenson,8,stephty01,1905,tier1_bbref,Automatic match via bbref_id to Tyler Stephenson +8226,Tyler Wade,8,wadety01,2094,tier1_bbref,Automatic match via bbref_id to Tyler Wade +8227,Tyler Wells,8,wellsty01,2132,tier1_bbref,Automatic match via bbref_id to Tyler Wells +8228,Tyrone Taylor,8,tayloty01,1965,tier1_bbref,Automatic match via bbref_id to Tyrone Taylor +8229,Vaughn Grissom,8,grissva01,777,tier1_bbref,Automatic match via bbref_id to Vaughn Grissom +8230,Victor Arano,8,aranovi01,83,tier1_bbref,Automatic match via bbref_id to Victor Arano +8231,Victor Caratini,8,caratvi01,325,tier1_bbref,Automatic match via bbref_id to Victor Caratini +8232,Victor Reyes,8,reyesvi01,1638,tier1_bbref,Automatic match via bbref_id to Victor Reyes +8233,Victor Robles,8,roblevi01,1666,tier1_bbref,Automatic match via bbref_id to Victor Robles +8234,Vidal Brujan,8,brujavi01,272,tier1_bbref,Automatic match via bbref_id to Vidal Brujan +8235,Vimael Machin,8,machivi01,1177,tier1_bbref,Automatic match via bbref_id to Vimael Machin +8236,Vince Velasquez,8,velasvi01,2065,tier1_bbref,Automatic match via bbref_id to Vince Velasquez +8237,Vinnie Pasquantino,8,pasquvi01,1503,tier1_bbref,Automatic match via bbref_id to Vinnie Pasquantino +8238,Vladimir Guerrero Jr,8,guerrvl02,789,tier1_bbref,Automatic match via bbref_id to Vladimir Guerrero Jr +8239,Vladimir Gutierrez,8,gutievl01,797,tier1_bbref,Automatic match via bbref_id to Vladimir Gutierrez +8240,Wade Miley,8,mileywa01,1318,tier1_bbref,Automatic match via bbref_id to Wade Miley +8241,Walker Buehler,8,buehlwa01,277,tier1_bbref,Automatic match via bbref_id to Walker Buehler +8242,Wander Franco,8,francwa01,646,tier1_bbref,Automatic match via bbref_id to Wander Franco +8243,Wandy Peralta,8,peralwa01,1524,tier1_bbref,Automatic match via bbref_id to Wandy Peralta +8244,Whit Merrifield,8,merriwh01,1309,tier1_bbref,Automatic match via bbref_id to Whit Merrifield +8245,Wil Crowe,8,crowewi01,446,tier1_bbref,Automatic match via bbref_id to Wil Crowe +8246,Wil Myers,8,myerswi01,1395,tier1_bbref,Automatic match via bbref_id to Wil Myers +8247,Will Benson,8,bensowi01,179,tier1_bbref,Automatic match via bbref_id to Will Benson +8248,Will Brennan,8,brennwi02,250,tier1_bbref,Automatic match via bbref_id to Will Brennan +8249,Will D Smith,8,smithwi05,1841,tier1_bbref,Automatic match via bbref_id to Will Smith +8250,Will Smith,8,smithwi04,1843,tier1_bbref,Automatic match via bbref_id to Will Smith +8251,Will Vest,8,vestwi01,2074,tier1_bbref,Automatic match via bbref_id to Will Vest +8252,Willi Castro,8,castrwi01,352,tier1_bbref,Automatic match via bbref_id to Willi Castro +8253,Willson Contreras,8,contrwi02,411,tier1_bbref,Automatic match via bbref_id to William Contreras +8254,William Contreras,8,contrwi01,410,tier1_bbref,Automatic match via bbref_id to Willson Contreras +8255,Willy Adames,8,adamewi01,14,tier1_bbref,Automatic match via bbref_id to Willy Adames +8256,Wilmer Flores,8,florewi01,627,tier1_bbref,Automatic match via bbref_id to Wilmer Flores +8257,Wily Peralta,8,peralwi01,1523,tier1_bbref,Automatic match via bbref_id to Wily Peralta +8258,Wyatt Mills,8,millswy01,1331,tier1_bbref,Automatic match via bbref_id to Wyatt Mills +8259,Xander Bogaerts,8,bogaexa01,216,tier1_bbref,Automatic match via bbref_id to Xander Bogaerts +8260,Yadiel Hernandez,8,hernaya01,875,tier1_bbref,Automatic match via bbref_id to Yadiel Hernandez +8261,Yadier Molina,8,molinya01,1344,tier1_bbref,Automatic match via bbref_id to Yadier Molina +8262,Yairo Munoz,8,munozya01,1383,tier1_bbref,Automatic match via bbref_id to Yairo Munoz +8263,Yan Gomes,8,gomesya01,731,tier1_bbref,Automatic match via bbref_id to Yan Gomes +8264,Yandy Diaz,8,diazya01,507,tier1_bbref,Automatic match via bbref_id to Yandy Diaz +8265,Yasmani Grandal,8,grandya01,761,tier1_bbref,Automatic match via bbref_id to Yasmani Grandal +8266,Yency Almonte,8,almonye01,50,tier1_bbref,Automatic match via bbref_id to Yency Almonte +8267,Yermin Mercedes,8,merceye01,1307,tier1_bbref,Automatic match via bbref_id to Yermin Mercedes +8268,Yerry De Los Santos,8,delosye01,481,tier1_bbref,Automatic match via bbref_id to Yerry De Los Santos +8269,Yimi Garcia,8,garciyi01,680,tier1_bbref,Automatic match via bbref_id to Yimi Garcia +8270,Yoan Moncada,8,moncayo01,1348,tier1_bbref,Automatic match via bbref_id to Yoan Moncada +8271,Yohan Ramirez,8,ramiryo01,1611,tier1_bbref,Automatic match via bbref_id to Yohan Ramirez +8272,Yonathan Daza,8,dazayo01,476,tier1_bbref,Automatic match via bbref_id to Yonathan Daza +8273,Yordan Alvarez,8,alvaryo01,61,tier1_bbref,Automatic match via bbref_id to Yordan Alvarez +8274,Yoshi Tsutsugo,8,tsutsyo01,2021,tier1_bbref,Automatic match via bbref_id to Yoshi Tsutsugo +8275,Yu Chang,8,changyu01,364,tier1_bbref,Automatic match via bbref_id to Yu Chang +8276,Yu Darvish,8,darviyu01,462,tier1_bbref,Automatic match via bbref_id to Yu Darvish +8277,Yuli Gurriel,8,gourryu01,793,tier1_bbref,Automatic match via bbref_id to Yuli Gurriel +8278,Yunior Marte,8,marteyu01,1211,tier1_bbref,Automatic match via bbref_id to Yunior Marte +8279,Yusei Kikuchi,8,kikucyu01,1040,tier1_bbref,Automatic match via bbref_id to Yusei Kikuchi +8280,Zac Gallen,8,galleza01,673,tier1_bbref,Automatic match via bbref_id to Zac Gallen +8281,Zach Davies,8,davieza02,465,tier1_bbref,Automatic match via bbref_id to Zach Davies +8282,Zach Eflin,8,eflinza01,562,tier1_bbref,Automatic match via bbref_id to Zach Eflin +8283,Zach Jackson,8,jacksza02,963,tier1_bbref,Automatic match via bbref_id to Zach Jackson +8284,Zach Logue,8,logueza01,1137,tier1_bbref,Automatic match via bbref_id to Zach Logue +8285,Zach McKinstry,8,mckinza01,1284,tier1_bbref,Automatic match via bbref_id to Zach McKinstry +8286,Zach Plesac,8,plesaza01,1566,tier1_bbref,Automatic match via bbref_id to Zach Plesac +8287,Zach Pop,8,popza01,1575,tier1_bbref,Automatic match via bbref_id to Zach Pop +8288,Zach Thompson,8,thompza01,1981,tier1_bbref,Automatic match via bbref_id to Zach Thompson +8289,Zack Collins,8,colliza01,403,tier1_bbref,Automatic match via bbref_id to Zack Collins +8290,Zack Greinke,8,greinza01,774,tier1_bbref,Automatic match via bbref_id to Zack Greinke +8291,Zack Littell,8,litteza01,1127,tier1_bbref,Automatic match via bbref_id to Zack Littell +8292,Zack Thompson,8,thompza02,1985,tier1_bbref,Automatic match via bbref_id to Zack Thompson +8293,Zack Wheeler,8,wheelza01,2139,tier1_bbref,Automatic match via bbref_id to Zack Wheeler +8294,Diego A Castillo,8,castidi02,341,tier1_bbref,Automatic match via bbref_id to Diego Castillo +8295,Aaron Ashby,9,ashbyaa01,98,tier1_bbref,Automatic match via bbref_id to Aaron Ashby +8296,Aaron Bummer,9,bummeaa01,279,tier1_bbref,Automatic match via bbref_id to Aaron Bummer +8297,Aaron Civale,9,civalaa01,383,tier1_bbref,Automatic match via bbref_id to Aaron Civale +8298,Aaron Hicks,9,hicksaa01,892,tier1_bbref,Automatic match via bbref_id to Aaron Hicks +8299,Aaron Judge,9,judgeaa01,3,tier1_bbref,Automatic match via bbref_id to Aaron Judge +8300,Aaron Loup,9,loupaa01,1152,tier1_bbref,Automatic match via bbref_id to Aaron Loup +8301,Aaron Nola,9,nolaaa01,1433,tier1_bbref,Automatic match via bbref_id to Aaron Nola +8302,Aaron Sanchez,9,sanchaa01,1745,tier1_bbref,Automatic match via bbref_id to Aaron Sanchez +8303,Abraham Toro,9,toroab01,2001,tier1_bbref,Automatic match via bbref_id to Abraham Toro +8304,Adam Cimber,9,cimbead01,380,tier1_bbref,Automatic match via bbref_id to Adam Cimber +8305,Adam Duvall,9,duvalad01,553,tier1_bbref,Automatic match via bbref_id to Adam Duvall +8306,Adam Engel,9,engelad01,574,tier1_bbref,Automatic match via bbref_id to Adam Engel +8307,Adam Frazier,9,fraziad01,648,tier1_bbref,Automatic match via bbref_id to Adam Frazier +8308,Adam Oller,9,ollerad01,1459,tier1_bbref,Automatic match via bbref_id to Adam Oller +8309,Adam Ottavino,9,ottavad01,1475,tier1_bbref,Automatic match via bbref_id to Adam Ottavino +8310,Adam Wainwright,9,wainwad01,2099,tier1_bbref,Automatic match via bbref_id to Adam Wainwright +8311,Adley Rutschman,9,rutscad01,1729,tier1_bbref,Automatic match via bbref_id to Adley Rutschman +8312,Adolis Garcia,9,garciad02,690,tier1_bbref,Automatic match via bbref_id to Adolis Garcia +8313,Adrian Houser,9,housead01,928,tier1_bbref,Automatic match via bbref_id to Adrian Houser +8314,Adrian Martinez,9,martiad01,1225,tier1_bbref,Automatic match via bbref_id to Adrian Martinez +8315,Adrian Morejon,9,morejad01,1363,tier1_bbref,Automatic match via bbref_id to Adrian Morejon +8316,Adrian Sampson,9,sampsad01,1742,tier1_bbref,Automatic match via bbref_id to Adrian Sampson +8317,AJ Minter,9,minteaj01,1336,tier1_bbref,Automatic match via bbref_id to AJ Minter +8318,AJ Pollock,9,polloaj01,1571,tier1_bbref,Automatic match via bbref_id to AJ Pollock +8319,AJ Puk,9,pukaj01,1592,tier1_bbref,Automatic match via bbref_id to AJ Puk +8320,Akil Baddoo,9,baddoak01,109,tier1_bbref,Automatic match via bbref_id to Akil Baddoo +8321,Alan Trejo,9,trejoal01,2012,tier1_bbref,Automatic match via bbref_id to Alan Trejo +8322,Albert Abreu,9,abreual01,9,tier1_bbref,Automatic match via bbref_id to Albert Abreu +8323,Albert Almora Jr,9,almoral01,51,tier1_bbref,Automatic match via bbref_id to Albert Almora Jr +8324,Albert Pujols,9,pujolal01,1591,tier1_bbref,Automatic match via bbref_id to Albert Pujols +8325,Alcides Escobar,9,escobal02,580,tier1_bbref,Automatic match via bbref_id to Alcides Escobar +8326,Alec Bohm,9,bohmal01,217,tier1_bbref,Automatic match via bbref_id to Alec Bohm +8327,Aledmys Diaz,9,diazal02,505,tier1_bbref,Automatic match via bbref_id to Aledmys Diaz +8328,Alejandro Kirk,9,kirkal01,1056,tier1_bbref,Automatic match via bbref_id to Alejandro Kirk +8329,Alejo Lopez,9,lopezal03,1148,tier1_bbref,Automatic match via bbref_id to Alejo Lopez +8330,Alek Manoah,9,manoaal01,1192,tier1_bbref,Automatic match via bbref_id to Alek Manoah +8331,Alek Thomas,9,thomaal01,1979,tier1_bbref,Automatic match via bbref_id to Alek Thomas +8332,Alex Bregman,9,bregmal01,248,tier1_bbref,Automatic match via bbref_id to Alex Bregman +8333,Alex Call,9,callal02,308,tier1_bbref,Automatic match via bbref_id to Alex Call +8334,Alex Cobb,9,cobbal01,394,tier1_bbref,Automatic match via bbref_id to Alex Cobb +8335,Alex Colome,9,colomal01,404,tier1_bbref,Automatic match via bbref_id to Alex Colome +8336,Alex Faedo,9,faedoal01,591,tier1_bbref,Automatic match via bbref_id to Alex Faedo +8337,Alex Kirilloff,9,kirilal01,1055,tier1_bbref,Automatic match via bbref_id to Alex Kirilloff +8338,Alex Lange,9,langeal01,1091,tier1_bbref,Automatic match via bbref_id to Alex Lange +8339,Alex Verdugo,9,verdual01,2069,tier1_bbref,Automatic match via bbref_id to Alex Verdugo +8340,Alex Vesia,9,vesiaal01,2072,tier1_bbref,Automatic match via bbref_id to Alex Vesia +8341,Alex Wood,9,woodal02,2193,tier1_bbref,Automatic match via bbref_id to Alex Wood +8342,Alex Young,9,youngal01,2217,tier1_bbref,Automatic match via bbref_id to Alex Young +8343,Alexis Diaz,9,diazal03,509,tier1_bbref,Automatic match via bbref_id to Alexis Diaz +8344,Alfonso Rivas,9,rivasal01,1654,tier1_bbref,Automatic match via bbref_id to Alfonso Rivas +8345,Amed Rosario,9,rosaram01,1711,tier1_bbref,Automatic match via bbref_id to Amed Rosario +8346,Amir Garrett,9,garream01,698,tier1_bbref,Automatic match via bbref_id to Amir Garrett +8347,Andre Pallante,9,pallaan01,1492,tier1_bbref,Automatic match via bbref_id to Andre Pallante +8348,Andrelton Simmons,9,simmoan01,1825,tier1_bbref,Automatic match via bbref_id to Andrelton Simmons +8349,Andres Gimenez,9,gimenan01,721,tier1_bbref,Automatic match via bbref_id to Andres Gimenez +8350,Andres Machado,9,machaan02,1176,tier1_bbref,Automatic match via bbref_id to Andres Machado +8351,Andres Munoz,9,munozan01,1384,tier1_bbref,Automatic match via bbref_id to Andres Munoz +8352,Andrew Bellatti,9,bellaan01,169,tier1_bbref,Automatic match via bbref_id to Andrew Bellatti +8353,Andrew Benintendi,9,beninan01,177,tier1_bbref,Automatic match via bbref_id to Andrew Benintendi +8354,Andrew Chafin,9,chafian01,363,tier1_bbref,Automatic match via bbref_id to Andrew Chafin +8355,Andrew Heaney,9,heanean01,843,tier1_bbref,Automatic match via bbref_id to Andrew Heaney +8356,Andrew Kittredge,9,kittran01,1057,tier1_bbref,Automatic match via bbref_id to Andrew Kittredge +8357,Andrew Knizner,9,kniznan01,1065,tier1_bbref,Automatic match via bbref_id to Andrew Knizner +8358,Andrew McCutchen,9,mccutan01,1272,tier1_bbref,Automatic match via bbref_id to Andrew McCutchen +8359,Andrew Vaughn,9,vaughan01,2061,tier1_bbref,Automatic match via bbref_id to Andrew Vaughn +8360,Andrew Velazquez,9,velazan01,2067,tier1_bbref,Automatic match via bbref_id to Andrew Velazquez +8361,Andrew Wantz,9,wantzan01,2115,tier1_bbref,Automatic match via bbref_id to Andrew Wantz +8362,Andy Ibanez,9,ibanean01,948,tier1_bbref,Automatic match via bbref_id to Andy Ibanez +8363,Anibal Sanchez,9,sanchan01,1743,tier1_bbref,Automatic match via bbref_id to Anibal Sanchez +8364,Anthony Banda,9,bandaan01,121,tier1_bbref,Automatic match via bbref_id to Anthony Banda +8365,Anthony Bass,9,bassan01,145,tier1_bbref,Automatic match via bbref_id to Anthony Bass +8366,Anthony Bender,9,bendean01,176,tier1_bbref,Automatic match via bbref_id to Anthony Bender +8367,Anthony Gose,9,gosean01,756,tier1_bbref,Automatic match via bbref_id to Anthony Gose +8368,Anthony Misiewicz,9,misiean01,1338,tier1_bbref,Automatic match via bbref_id to Anthony Misiewicz +8369,Anthony Rendon,9,rendoan01,1630,tier1_bbref,Automatic match via bbref_id to Anthony Rendon +8370,Anthony Rizzo,9,rizzoan01,1658,tier1_bbref,Automatic match via bbref_id to Anthony Rizzo +8371,Anthony Santander,9,santaan02,1764,tier1_bbref,Automatic match via bbref_id to Anthony Santander +8372,Antonio Senzatela,9,senzaan01,1801,tier1_bbref,Automatic match via bbref_id to Antonio Senzatela +8373,Aramis Garcia,9,garciar01,683,tier1_bbref,Automatic match via bbref_id to Aramis Garcia +8374,Aristides Aquino,9,aquinar01,81,tier1_bbref,Automatic match via bbref_id to Aristides Aquino +8375,Aroldis Chapman,9,chapmar01,366,tier1_bbref,Automatic match via bbref_id to Aroldis Chapman +8376,Art Warren,9,warrear01,2119,tier1_bbref,Automatic match via bbref_id to Art Warren +8377,Austin Barnes,9,barneau01,132,tier1_bbref,Automatic match via bbref_id to Austin Barnes +8378,Austin Davis,9,davisau01,471,tier1_bbref,Automatic match via bbref_id to Austin Davis +8379,Austin Gomber,9,gombeau01,730,tier1_bbref,Automatic match via bbref_id to Austin Gomber +8380,Austin Hays,9,haysau01,839,tier1_bbref,Automatic match via bbref_id to Austin Hays +8381,Austin Hedges,9,hedgeau01,848,tier1_bbref,Automatic match via bbref_id to Austin Hedges +8382,Austin Meadows,9,meadoau01,1290,tier1_bbref,Automatic match via bbref_id to Austin Meadows +8383,Austin Nola,9,nolaau01,1432,tier1_bbref,Automatic match via bbref_id to Austin Nola +8384,Austin Pruitt,9,pruitau01,1588,tier1_bbref,Automatic match via bbref_id to Austin Pruitt +8385,Austin Riley,9,rileyau01,1649,tier1_bbref,Automatic match via bbref_id to Austin Riley +8386,Austin Romine,9,rominau01,1704,tier1_bbref,Automatic match via bbref_id to Austin Romine +8387,Austin Slater,9,slateau01,1838,tier1_bbref,Automatic match via bbref_id to Austin Slater +8388,Austin Voth,9,vothau01,2091,tier1_bbref,Automatic match via bbref_id to Austin Voth +8389,Austin Wynns,9,wynnsau01,2202,tier1_bbref,Automatic match via bbref_id to Austin Wynns +8390,Avisail Garcia,9,garciav01,678,tier1_bbref,Automatic match via bbref_id to Avisail Garcia +8391,Bailey Falter,9,falteba01,594,tier1_bbref,Automatic match via bbref_id to Bailey Falter +8392,Bailey Ober,9,oberba01,1447,tier1_bbref,Automatic match via bbref_id to Bailey Ober +8393,Beau Brieske,9,briesbe01,256,tier1_bbref,Automatic match via bbref_id to Beau Brieske +8394,Ben Gamel,9,gamelbe01,676,tier1_bbref,Automatic match via bbref_id to Ben Gamel +8395,Bennett Sousa,9,sousabe01,1880,tier1_bbref,Automatic match via bbref_id to Bennett Sousa +8396,Blake Snell,9,snellbl01,1861,tier1_bbref,Automatic match via bbref_id to Blake Snell +8397,Bligh Madris,9,madribl01,1179,tier1_bbref,Automatic match via bbref_id to Bligh Madris +8398,Bo Bichette,9,bichebo01,190,tier1_bbref,Automatic match via bbref_id to Bo Bichette +8399,Bobby Dalbec,9,dalbebo01,458,tier1_bbref,Automatic match via bbref_id to Bobby Dalbec +8400,Bobby Witt Jr,9,wittbo02,2184,tier1_bbref,Automatic match via bbref_id to Bobby Witt Jr +8401,Brad Boxberger,9,boxbebr01,229,tier1_bbref,Automatic match via bbref_id to Brad Boxberger +8402,Brad Hand,9,handbr01,816,tier1_bbref,Automatic match via bbref_id to Brad Hand +8403,Brad Keller,9,kellebr01,1016,tier1_bbref,Automatic match via bbref_id to Brad Keller +8404,Brad Miller,9,millebr02,1322,tier1_bbref,Automatic match via bbref_id to Brad Miller +8405,Bradley Zimmer,9,zimmebr01,2227,tier1_bbref,Automatic match via bbref_id to Bradley Zimmer +8406,Brady Singer,9,singebr01,1827,tier1_bbref,Automatic match via bbref_id to Brady Singer +8407,Brandon Belt,9,beltbr01,173,tier1_bbref,Automatic match via bbref_id to Brandon Belt +8408,Brandon Crawford,9,crawfbr01,430,tier1_bbref,Automatic match via bbref_id to Brandon Crawford +8409,Brandon Drury,9,drurybr01,535,tier1_bbref,Automatic match via bbref_id to Brandon Drury +8410,Brandon Hughes,9,hughebr01,938,tier1_bbref,Automatic match via bbref_id to Brandon Hughes +8411,Brandon Lowe,9,lowebr01,1156,tier1_bbref,Automatic match via bbref_id to Brandon Lowe +8412,Brandon Marsh,9,marshbr02,1205,tier1_bbref,Automatic match via bbref_id to Brandon Marsh +8413,Brandon Nimmo,9,nimmobr01,1425,tier1_bbref,Automatic match via bbref_id to Brandon Nimmo +8414,Brandon Woodruff,9,woodrbr01,2196,tier1_bbref,Automatic match via bbref_id to Brandon Woodruff +8489,Clay Holmes,9,holmecl01,919,tier1_bbref,Automatic match via bbref_id to Clay Holmes +8415,Braxton Garrett,9,garrebr01,701,tier1_bbref,Automatic match via bbref_id to Braxton Garrett +8416,Brayan Bello,9,bellobr01,171,tier1_bbref,Automatic match via bbref_id to Brayan Bello +8417,Brendan Donovan,9,donovbr01,527,tier1_bbref,Automatic match via bbref_id to Brendan Donovan +8418,Brendan Rodgers,9,rodgebr02,1668,tier1_bbref,Automatic match via bbref_id to Brendan Rodgers +8419,Brent Suter,9,suterbr01,1943,tier1_bbref,Automatic match via bbref_id to Brent Suter +8420,Brett Martin,9,martibr01,1218,tier1_bbref,Automatic match via bbref_id to Brett Martin +8421,Brett Phillips,9,phillbr02,1555,tier1_bbref,Automatic match via bbref_id to Brett Phillips +8422,Brian Anderson,9,anderbr06,69,tier1_bbref,Automatic match via bbref_id to Brian Anderson +8423,Brian Serven,9,servebr01,1803,tier1_bbref,Automatic match via bbref_id to Brian Serven +8424,Brock Burke,9,burkebr01,284,tier1_bbref,Automatic match via bbref_id to Brock Burke +8425,Brooks Raley,9,raleybr01,1601,tier1_bbref,Automatic match via bbref_id to Brooks Raley +8426,Bruce Zimmermann,9,zimmebr02,2231,tier1_bbref,Automatic match via bbref_id to Bruce Zimmermann +8427,Brusdar Graterol,9,gratebr01,763,tier1_bbref,Automatic match via bbref_id to Brusdar Graterol +8428,Bryan Abreu,9,abreubr01,8,tier1_bbref,Automatic match via bbref_id to Bryan Abreu +8429,Bryan Baker,9,bakerbr01,117,tier1_bbref,Automatic match via bbref_id to Bryan Baker +8430,Bryan De La Cruz,9,delacbr01,479,tier1_bbref,Automatic match via bbref_id to Bryan De La Cruz +8431,Bryan Reynolds,9,reynobr01,1641,tier1_bbref,Automatic match via bbref_id to Bryan Reynolds +8432,Bryan Shaw,9,shawbr01,1808,tier1_bbref,Automatic match via bbref_id to Bryan Shaw +8433,Bryce Elder,9,elderbr01,564,tier1_bbref,Automatic match via bbref_id to Bryce Elder +8434,Bryce Harper,9,harpebr03,823,tier1_bbref,Automatic match via bbref_id to Bryce Harper +8435,Bryse Wilson,9,wilsobr02,2171,tier1_bbref,Automatic match via bbref_id to Bryse Wilson +8436,Bryson Stott,9,stottbr01,1915,tier1_bbref,Automatic match via bbref_id to Bryson Stott +8437,Bubba Thompson,9,thompbu01,1986,tier1_bbref,Automatic match via bbref_id to Bubba Thompson +8438,Buck Farmer,9,farmebu01,597,tier1_bbref,Automatic match via bbref_id to Buck Farmer +8439,Buddy Kennedy,9,kennebu01,1030,tier1_bbref,Automatic match via bbref_id to Buddy Kennedy +8440,Byron Buxton,9,buxtoby01,295,tier1_bbref,Automatic match via bbref_id to Byron Buxton +8441,Cal Quantrill,9,quantca01,1593,tier1_bbref,Automatic match via bbref_id to Cal Quantrill +8442,Cal Raleigh,9,raleica01,1600,tier1_bbref,Automatic match via bbref_id to Cal Raleigh +8443,Cal Stevenson,9,steveca01,1907,tier1_bbref,Automatic match via bbref_id to Cal Stevenson +8444,Caleb Ferguson,9,ferguca01,605,tier1_bbref,Automatic match via bbref_id to Caleb Ferguson +8445,Caleb Smith,9,smithca03,1845,tier1_bbref,Automatic match via bbref_id to Caleb Smith +8446,Caleb Thielbar,9,thielca01,1977,tier1_bbref,Automatic match via bbref_id to Caleb Thielbar +8447,Calvin Faucher,9,fauchca01,599,tier1_bbref,Automatic match via bbref_id to Calvin Faucher +8448,Calvin Mitchell,9,mitchca01,1341,tier1_bbref,Automatic match via bbref_id to Calvin Mitchell +8449,Camilo Doval,9,dovalca01,529,tier1_bbref,Automatic match via bbref_id to Camilo Doval +8488,Clarke Schmidt,9,schmicl01,1774,tier1_bbref,Automatic match via bbref_id to Clarke Schmidt +8450,Carl Edwards Jr,9,edwarca01,560,tier1_bbref,Automatic match via bbref_id to Carl Edwards Jr +8451,Carlos Carrasco,9,carraca01,331,tier1_bbref,Automatic match via bbref_id to Carlos Carrasco +8452,Carlos Correa,9,correca01,420,tier1_bbref,Automatic match via bbref_id to Carlos Correa +8453,Carlos Estevez,9,estevca01,585,tier1_bbref,Automatic match via bbref_id to Carlos Estevez +8454,Carlos Hernandez,9,hernaca04,880,tier1_bbref,Automatic match via bbref_id to Carlos Hernandez +8455,Carlos Rodon,9,rodonca01,1670,tier1_bbref,Automatic match via bbref_id to Carlos Rodon +8456,Carlos Santana,9,santaca01,1759,tier1_bbref,Automatic match via bbref_id to Carlos Santana +8457,Carson Kelly,9,kellyca02,1023,tier1_bbref,Automatic match via bbref_id to Carson Kelly +8458,Cavan Biggio,9,biggica01,196,tier1_bbref,Automatic match via bbref_id to Cavan Biggio +8459,Cedric Mullins,9,mullice01,1381,tier1_bbref,Automatic match via bbref_id to Cedric Mullins +8460,Cesar Hernandez,9,hernace02,870,tier1_bbref,Automatic match via bbref_id to Cesar Hernandez +8461,Chad Kuhl,9,kuhlch01,1078,tier1_bbref,Automatic match via bbref_id to Chad Kuhl +8462,Chad Pinder,9,pindech01,1559,tier1_bbref,Automatic match via bbref_id to Chad Pinder +8463,Charles Leblanc,9,leblach01,1105,tier1_bbref,Automatic match via bbref_id to Charles Leblanc +8464,Charlie Blackmon,9,blackch02,205,tier1_bbref,Automatic match via bbref_id to Charlie Blackmon +8465,Charlie Culberson,9,culbech01,453,tier1_bbref,Automatic match via bbref_id to Charlie Culberson +8466,Charlie Morton,9,mortoch02,1375,tier1_bbref,Automatic match via bbref_id to Charlie Morton +8467,Chas McCormick,9,mccorch01,1269,tier1_bbref,Automatic match via bbref_id to Chas McCormick +8468,Chase Anderson,9,anderch01,67,tier1_bbref,Automatic match via bbref_id to Chase Anderson +8469,Chase De Jong,9,dejonch01,478,tier1_bbref,Automatic match via bbref_id to Chase De Jong +8470,Chase Silseth,9,silsech01,1824,tier1_bbref,Automatic match via bbref_id to Chase Silseth +8471,Chasen Shreve,9,shrevch01,1819,tier1_bbref,Automatic match via bbref_id to Chasen Shreve +8472,Chris Archer,9,archech01,85,tier1_bbref,Automatic match via bbref_id to Chris Archer +8473,Chris Bassitt,9,bassich01,146,tier1_bbref,Automatic match via bbref_id to Chris Bassitt +8474,Chris Flexen,9,flexech01,626,tier1_bbref,Automatic match via bbref_id to Chris Flexen +8475,Chris Martin,9,martich02,1214,tier1_bbref,Automatic match via bbref_id to Chris Martin +8476,Chris Stratton,9,stratch01,1922,tier1_bbref,Automatic match via bbref_id to Chris Stratton +8477,Chris Taylor,9,tayloch03,1964,tier1_bbref,Automatic match via bbref_id to Chris Taylor +8478,Christian Arroyo,9,arroych01,96,tier1_bbref,Automatic match via bbref_id to Christian Arroyo +8479,Christian Bethancourt,9,bethach01,185,tier1_bbref,Automatic match via bbref_id to Christian Bethancourt +8480,Christian Vazquez,9,vazquch01,2063,tier1_bbref,Automatic match via bbref_id to Christian Vazquez +8481,Christian Walker,9,walkech02,2104,tier1_bbref,Automatic match via bbref_id to Christian Walker +8482,Christian Yelich,9,yelicch01,2212,tier1_bbref,Automatic match via bbref_id to Christian Yelich +8483,Christopher Morel,9,morelch01,1364,tier1_bbref,Automatic match via bbref_id to Christopher Morel +8484,Chuckie Robinson,9,robinch04,1664,tier1_bbref,Automatic match via bbref_id to Chuckie Robinson +8485,Cionel Perez,9,perezci01,1540,tier1_bbref,Automatic match via bbref_id to Cionel Perez +8486,CJ Abrams,9,abramcj01,6,tier1_bbref,Automatic match via bbref_id to CJ Abrams +8487,CJ Cron,9,croncj01,441,tier1_bbref,Automatic match via bbref_id to CJ Cron +8490,Clayton Kershaw,9,kershcl01,1034,tier1_bbref,Automatic match via bbref_id to Clayton Kershaw +8491,Cody Bellinger,9,bellico01,170,tier1_bbref,Automatic match via bbref_id to Cody Bellinger +8492,Cody Morris,9,morrico01,1372,tier1_bbref,Automatic match via bbref_id to Cody Morris +8493,Cody Poteet,9,poteeco01,1579,tier1_bbref,Automatic match via bbref_id to Cody Poteet +8494,Cole Irvin,9,irvinco01,954,tier1_bbref,Automatic match via bbref_id to Cole Irvin +8495,Cole Ragans,9,raganco01,1598,tier1_bbref,Automatic match via bbref_id to Cole Ragans +8496,Cole Sands,9,sandsco01,1755,tier1_bbref,Automatic match via bbref_id to Cole Sands +8497,Cole Sulser,9,sulseco01,1942,tier1_bbref,Automatic match via bbref_id to Cole Sulser +8498,Cole Tucker,9,tuckeco01,2022,tier1_bbref,Automatic match via bbref_id to Cole Tucker +8499,Colin Holderman,9,holdeco01,913,tier1_bbref,Automatic match via bbref_id to Colin Holderman +8500,Colin Moran,9,moranco01,1360,tier1_bbref,Automatic match via bbref_id to Colin Moran +8501,Colin Poche,9,pocheco01,1568,tier1_bbref,Automatic match via bbref_id to Colin Poche +8502,Collin McHugh,9,mchugco01,1278,tier1_bbref,Automatic match via bbref_id to Collin McHugh +8503,Collin Snider,9,snideco01,1862,tier1_bbref,Automatic match via bbref_id to Collin Snider +8504,Connor Brogdon,9,brogdco01,261,tier1_bbref,Automatic match via bbref_id to Connor Brogdon +8505,Connor Joe,9,joeco01,983,tier1_bbref,Automatic match via bbref_id to Connor Joe +8506,Connor Overton,9,overtco01,1478,tier1_bbref,Automatic match via bbref_id to Connor Overton +8507,Connor Wong,9,wongco01,2189,tier1_bbref,Automatic match via bbref_id to Connor Wong +8508,Cooper Hummel,9,hummeco01,939,tier1_bbref,Automatic match via bbref_id to Cooper Hummel +8509,Corbin Burnes,9,burneco01,286,tier1_bbref,Automatic match via bbref_id to Corbin Burnes +8510,Corbin Carroll,9,carroco02,332,tier1_bbref,Automatic match via bbref_id to Corbin Carroll +8511,Corey Dickerson,9,dickeco01,513,tier1_bbref,Automatic match via bbref_id to Corey Dickerson +8512,Corey Kluber,9,klubeco01,1060,tier1_bbref,Automatic match via bbref_id to Corey Kluber +8513,Corey Knebel,9,knebeco01,1063,tier1_bbref,Automatic match via bbref_id to Corey Knebel +8514,Corey Seager,9,seageco01,1794,tier1_bbref,Automatic match via bbref_id to Corey Seager +8515,Cory Abbott,9,abbotco01,5,tier1_bbref,Automatic match via bbref_id to Cory Abbott +8516,Craig Kimbrel,9,kimbrcr01,1043,tier1_bbref,Automatic match via bbref_id to Craig Kimbrel +8517,Craig Stammen,9,stammcr01,1891,tier1_bbref,Automatic match via bbref_id to Craig Stammen +8518,Cristian Javier,9,javiecr01,971,tier1_bbref,Automatic match via bbref_id to Cristian Javier +8519,Cristian Pache,9,pachecr01,1482,tier1_bbref,Automatic match via bbref_id to Cristian Pache +8520,Cristopher Sanchez,9,sanchcr01,1748,tier1_bbref,Automatic match via bbref_id to Cristopher Sanchez +8521,Curt Casali,9,casalcu01,334,tier1_bbref,Automatic match via bbref_id to Curt Casali +8522,Dakota Hudson,9,hudsoda02,934,tier1_bbref,Automatic match via bbref_id to Dakota Hudson +8523,Dallas Keuchel,9,keuchda01,1035,tier1_bbref,Automatic match via bbref_id to Dallas Keuchel +8524,Daniel Vogelbach,9,vogelda01,2085,tier1_bbref,Automatic match via bbref_id to Daniel Vogelbach +8525,Dane Dunning,9,dunnida01,548,tier1_bbref,Automatic match via bbref_id to Dane Dunning +8526,Daniel Bard,9,bardda01,125,tier1_bbref,Automatic match via bbref_id to Daniel Bard +8527,Daniel Castano,9,castada01,337,tier1_bbref,Automatic match via bbref_id to Daniel Castano +8528,Daniel Hudson,9,hudsoda01,933,tier1_bbref,Automatic match via bbref_id to Daniel Hudson +8529,Daniel Lynch,9,lynchda02,1172,tier1_bbref,Automatic match via bbref_id to Daniel Lynch +8530,Daniel Norris,9,norrida01,1439,tier1_bbref,Automatic match via bbref_id to Daniel Norris +8531,Danny Jansen,9,janseda01,969,tier1_bbref,Automatic match via bbref_id to Danny Jansen +8532,Danny Mendick,9,mendida01,1302,tier1_bbref,Automatic match via bbref_id to Danny Mendick +8533,Dansby Swanson,9,swansda01,1947,tier1_bbref,Automatic match via bbref_id to Dansby Swanson +8534,Dany Jimenez,9,jimenda01,981,tier1_bbref,Automatic match via bbref_id to Dany Jimenez +8535,Darick Hall,9,hallda02,808,tier1_bbref,Automatic match via bbref_id to Darick Hall +8536,Darin Ruf,9,rufda01,1722,tier1_bbref,Automatic match via bbref_id to Darin Ruf +8537,Darren ODay,9,odayda01,1449,tier1_bbref,Automatic match via bbref_id to Darren ODay +8538,Daulton Jefferies,9,jeffeda01,974,tier1_bbref,Automatic match via bbref_id to Daulton Jefferies +8539,Daulton Varsho,9,varshda01,2058,tier1_bbref,Automatic match via bbref_id to Daulton Varsho +8540,Dauri Moreta,9,moretda01,1367,tier1_bbref,Automatic match via bbref_id to Dauri Moreta +8541,David Bednar,9,bednada01,162,tier1_bbref,Automatic match via bbref_id to David Bednar +8542,David Bote,9,boteda01,224,tier1_bbref,Automatic match via bbref_id to David Bote +8543,David Fletcher,9,fletcda02,624,tier1_bbref,Automatic match via bbref_id to David Fletcher +8544,David Peralta,9,peralda01,1522,tier1_bbref,Automatic match via bbref_id to David Peralta +8545,David Peterson,9,peterda01,1548,tier1_bbref,Automatic match via bbref_id to David Peterson +8546,David Phelps,9,phelpda01,1554,tier1_bbref,Automatic match via bbref_id to David Phelps +8547,David Price,9,priceda01,1585,tier1_bbref,Automatic match via bbref_id to David Price +8548,David Robertson,9,roberda08,1662,tier1_bbref,Automatic match via bbref_id to David Robertson +8549,David Villar,9,villada01,2080,tier1_bbref,Automatic match via bbref_id to David Villar +8550,Davis Martin,9,martida03,1219,tier1_bbref,Automatic match via bbref_id to Davis Martin +8551,Daz Cameron,9,camerda01,310,tier1_bbref,Automatic match via bbref_id to Daz Cameron +8552,Dean Kremer,9,kremede01,1077,tier1_bbref,Automatic match via bbref_id to Dean Kremer +8553,Dee Strange Gordon,9,gordode01,1920,tier1_bbref,Automatic match via bbref_id to Dee Strange Gordon +8554,Dennis Santana,9,santade01,1762,tier1_bbref,Automatic match via bbref_id to Dennis Santana +8555,Derek Hill,9,hillde01,899,tier1_bbref,Automatic match via bbref_id to Derek Hill +8556,Dermis Garcia,9,garcide02,687,tier1_bbref,Automatic match via bbref_id to Dermis Garcia +8557,Devin Smeltzer,9,smeltde01,1840,tier1_bbref,Automatic match via bbref_id to Devin Smeltzer +8558,Devin Williams,9,willide03,2158,tier1_bbref,Automatic match via bbref_id to Devin Williams +8559,Didi Gregorius,9,gregodi01,772,tier1_bbref,Automatic match via bbref_id to Didi Gregorius +8560,Diego Castillo,9,castidi01,345,tier1_bbref,Automatic match via bbref_id to Diego Castillo +8561,Dillon Peters,9,peterdi01,1544,tier1_bbref,Automatic match via bbref_id to Dillon Peters +8562,Dillon Tate,9,tatedi01,1959,tier1_bbref,Automatic match via bbref_id to Dillon Tate +8563,Dinelson Lamet,9,lametdi01,1090,tier1_bbref,Automatic match via bbref_id to Dinelson Lamet +8564,DJ LeMahieu,9,lemahdj01,1114,tier1_bbref,Automatic match via bbref_id to DJ LeMahieu +8565,Domingo Acevedo,9,acevedo01,11,tier1_bbref,Automatic match via bbref_id to Domingo Acevedo +8566,Domingo German,9,germado01,713,tier1_bbref,Automatic match via bbref_id to Domingo German +8567,Dominic Leone,9,leonedo01,1116,tier1_bbref,Automatic match via bbref_id to Dominic Leone +8568,Dominic Smith,9,smithdo02,1849,tier1_bbref,Automatic match via bbref_id to Dominic Smith +8569,Donovan Solano,9,solando01,1868,tier1_bbref,Automatic match via bbref_id to Donovan Solano +8570,Donovan Walton,9,waltodo01,2113,tier1_bbref,Automatic match via bbref_id to Donovan Walton +8571,Drew Hutchison,9,hutchdr01,944,tier1_bbref,Automatic match via bbref_id to Drew Hutchison +8572,Drew Rasmussen,9,rasmudr01,1618,tier1_bbref,Automatic match via bbref_id to Drew Rasmussen +8573,Drew Smith,9,smithdr01,1848,tier1_bbref,Automatic match via bbref_id to Drew Smith +8574,Drew Smyly,9,smylydr01,1858,tier1_bbref,Automatic match via bbref_id to Drew Smyly +8575,Drew Waters,9,waterdr01,2120,tier1_bbref,Automatic match via bbref_id to Drew Waters +8576,Duane Underwood,9,underdu01,2033,tier1_bbref,Automatic match via bbref_id to Duane Underwood +8577,Dustin May,9,maydu01,1249,tier1_bbref,Automatic match via bbref_id to Dustin May +8578,Dylan Bundy,9,bundydy01,280,tier1_bbref,Automatic match via bbref_id to Dylan Bundy +8579,Dylan Carlson,9,carlsdy01,327,tier1_bbref,Automatic match via bbref_id to Dylan Carlson +8580,Dylan Cease,9,ceasedy01,355,tier1_bbref,Automatic match via bbref_id to Dylan Cease +8581,Dylan Coleman,9,colemdy01,401,tier1_bbref,Automatic match via bbref_id to Dylan Coleman +8582,Dylan Floro,9,florody01,629,tier1_bbref,Automatic match via bbref_id to Dylan Floro +8583,Dylan Lee,9,leedy01,1108,tier1_bbref,Automatic match via bbref_id to Dylan Lee +8584,Dylan Moore,9,mooredy01,1358,tier1_bbref,Automatic match via bbref_id to Dylan Moore +8585,Eddie Rosario,9,rosared01,1710,tier1_bbref,Automatic match via bbref_id to Eddie Rosario +8586,Edmundo Sosa,9,sosaed01,1876,tier1_bbref,Automatic match via bbref_id to Edmundo Sosa +8587,Eduardo Escobar,9,escobed01,581,tier1_bbref,Automatic match via bbref_id to Eduardo Escobar +8588,Eduardo Rodriguez,9,rodried05,1675,tier1_bbref,Automatic match via bbref_id to Eduardo Rodriguez +8589,Edward Cabrera,9,cabreed02,302,tier1_bbref,Automatic match via bbref_id to Edward Cabrera +8590,Edward Olivares,9,olivaed02,1458,tier1_bbref,Automatic match via bbref_id to Edward Olivares +8591,Edwin Diaz,9,diazed04,503,tier1_bbref,Automatic match via bbref_id to Edwin Diaz +8592,Edwin Rios,9,riosed01,1651,tier1_bbref,Automatic match via bbref_id to Edwin Rios +8593,Ehire Adrianza,9,adriaeh01,22,tier1_bbref,Automatic match via bbref_id to Ehire Adrianza +8594,Elehuris Montero,9,monteel01,1353,tier1_bbref,Automatic match via bbref_id to Elehuris Montero +8595,Eli Morgan,9,morgael01,1369,tier1_bbref,Automatic match via bbref_id to Eli Morgan +8596,Eli White,9,whiteel04,2140,tier1_bbref,Automatic match via bbref_id to Eli White +8597,Elias Diaz,9,diazel01,502,tier1_bbref,Automatic match via bbref_id to Elias Diaz +8598,Elieser Hernandez,9,hernael01,874,tier1_bbref,Automatic match via bbref_id to Elieser Hernandez +8599,Eloy Jimenez,9,jimenel02,980,tier1_bbref,Automatic match via bbref_id to Eloy Jimenez +8600,Elvin Rodriguez,9,rodriel02,1679,tier1_bbref,Automatic match via bbref_id to Elvin Rodriguez +8601,Elvis Andrus,9,andruel01,77,tier1_bbref,Automatic match via bbref_id to Elvis Andrus +8602,Emilio Pagan,9,paganem01,1484,tier1_bbref,Automatic match via bbref_id to Emilio Pagan +8603,Emmanuel Clase,9,claseem01,385,tier1_bbref,Automatic match via bbref_id to Emmanuel Clase +8604,Emmanuel Rivera,9,riverem01,1657,tier1_bbref,Automatic match via bbref_id to Emmanuel Rivera +8605,Enrique Hernandez,9,hernaen02,871,tier1_bbref,Automatic match via bbref_id to Enrique Hernandez +8606,Enyel De Los Santos,9,delosen01,482,tier1_bbref,Automatic match via bbref_id to Enyel De Los Santos +8607,Erasmo Ramirez,9,ramirer02,1604,tier1_bbref,Automatic match via bbref_id to Erasmo Ramirez +8608,Eric Haase,9,haaseer01,801,tier1_bbref,Automatic match via bbref_id to Eric Haase +8609,Eric Hosmer,9,hosmeer01,926,tier1_bbref,Automatic match via bbref_id to Eric Hosmer +8610,Eric Lauer,9,lauerer01,1096,tier1_bbref,Automatic match via bbref_id to Eric Lauer +8611,Eric Stout,9,stouter01,1916,tier1_bbref,Automatic match via bbref_id to Eric Stout +8612,Erich Uelmen,9,uelmeer01,2032,tier1_bbref,Automatic match via bbref_id to Erich Uelmen +8613,Erick Fedde,9,feddeer01,600,tier1_bbref,Automatic match via bbref_id to Erick Fedde +8650,Gio Urshela,9,urshegi01,2042,tier1_bbref,Automatic match via bbref_id to Gio Urshela +8614,Erik Swanson,9,swanser01,1948,tier1_bbref,Automatic match via bbref_id to Erik Swanson +8615,Ernie Clement,9,clemeer01,391,tier1_bbref,Automatic match via bbref_id to Ernie Clement +8616,Eugenio Suarez,9,suareeu01,1934,tier1_bbref,Automatic match via bbref_id to Eugenio Suarez +8617,Evan Longoria,9,longoev01,1140,tier1_bbref,Automatic match via bbref_id to Evan Longoria +8618,Evan Phillips,9,phillev01,3238,manual_new,Manual assignment to new SbaPlayer: Evan Phillips +8619,Ezequiel Duran,9,duranez01,551,tier1_bbref,Automatic match via bbref_id to Ezequiel Duran +8620,Felix Bautista,9,bautife01,154,tier1_bbref,Automatic match via bbref_id to Felix Bautista +8621,Framber Valdez,9,valdefr01,2048,tier1_bbref,Automatic match via bbref_id to Framber Valdez +8622,Franchy Cordero,9,cordefr02,418,tier1_bbref,Automatic match via bbref_id to Franchy Cordero +8623,Francisco Lindor,9,lindofr01,1124,tier1_bbref,Automatic match via bbref_id to Francisco Lindor +8624,Francisco Mejia,9,mejiafr01,3239,manual_new,Manual assignment to new SbaPlayer: Francisco Mejia +8625,Frank Schwindel,9,schwifr01,1786,tier1_bbref,Automatic match via bbref_id to Frank Schwindel +8626,Frankie Montas,9,montafr02,1351,tier1_bbref,Automatic match via bbref_id to Frankie Montas +8627,Franmil Reyes,9,reyesfr01,1634,tier1_bbref,Automatic match via bbref_id to Franmil Reyes +8628,Freddie Freeman,9,freemfr01,652,tier1_bbref,Automatic match via bbref_id to Freddie Freeman +8629,Freddy Peralta,9,peralfr01,1525,tier1_bbref,Automatic match via bbref_id to Freddy Peralta +8630,Gabriel Arias,9,ariasga01,89,tier1_bbref,Automatic match via bbref_id to Gabriel Arias +8631,Gabriel Moreno,9,morenga01,1366,tier1_bbref,Automatic match via bbref_id to Gabriel Moreno +8632,Garrett Cooper,9,coopega03,415,tier1_bbref,Automatic match via bbref_id to Garrett Cooper +8633,Garrett Hampson,9,hampsga01,814,tier1_bbref,Automatic match via bbref_id to Garrett Hampson +8634,Garrett Hill,9,hillga02,901,tier1_bbref,Automatic match via bbref_id to Garrett Hill +8635,Garrett Mitchell,9,mitchga01,1340,tier1_bbref,Automatic match via bbref_id to Garrett Mitchell +8636,Garrett Richards,9,richaga01,1645,tier1_bbref,Automatic match via bbref_id to Garrett Richards +8637,Garrett Stubbs,9,stubbga01,1931,tier1_bbref,Automatic match via bbref_id to Garrett Stubbs +8638,Garrett Whitlock,9,whitlga01,2146,tier1_bbref,Automatic match via bbref_id to Garrett Whitlock +8639,Gary Sanchez,9,sanchga02,1746,tier1_bbref,Automatic match via bbref_id to Gary Sanchez +8640,Gavin Lux,9,luxga01,1169,tier1_bbref,Automatic match via bbref_id to Gavin Lux +8641,Gavin Sheets,9,sheetga01,1811,tier1_bbref,Automatic match via bbref_id to Gavin Sheets +8642,Genesis Cabrera,9,cabrege01,301,tier1_bbref,Automatic match via bbref_id to Genesis Cabrera +8643,George Kirby,9,kirbyge01,1054,tier1_bbref,Automatic match via bbref_id to George Kirby +8644,George Springer,9,springe01,1888,tier1_bbref,Automatic match via bbref_id to George Springer +8645,Geraldo Perdomo,9,perdoge01,1531,tier1_bbref,Automatic match via bbref_id to Geraldo Perdomo +8646,German Marquez,9,marquge01,1204,tier1_bbref,Automatic match via bbref_id to German Marquez +8647,Gerrit Cole,9,colege01,398,tier1_bbref,Automatic match via bbref_id to Gerrit Cole +8648,Giancarlo Stanton,9,stantmi03,1893,tier1_bbref,Automatic match via bbref_id to Giancarlo Stanton +8649,Gilberto Celestino,9,celesgi01,358,tier1_bbref,Automatic match via bbref_id to Gilberto Celestino +8651,Giovanny Gallegos,9,gallegi01,672,tier1_bbref,Automatic match via bbref_id to Giovanny Gallegos +8652,Glenn Otto,9,ottogl01,1476,tier1_bbref,Automatic match via bbref_id to Glenn Otto +8653,Gleyber Torres,9,torregl01,2003,tier1_bbref,Automatic match via bbref_id to Gleyber Torres +8654,Graham Ashcraft,9,ashcrgr01,99,tier1_bbref,Automatic match via bbref_id to Graham Ashcraft +8655,Greg Allen,9,allengr01,44,tier1_bbref,Automatic match via bbref_id to Greg Allen +8656,Gregory Soto,9,sotogr01,1878,tier1_bbref,Automatic match via bbref_id to Gregory Soto +8657,Griffin Jax,9,jaxgr01,972,tier1_bbref,Automatic match via bbref_id to Griffin Jax +8658,Guillermo Heredia,9,heredgu01,862,tier1_bbref,Automatic match via bbref_id to Guillermo Heredia +8659,Gunnar Henderson,9,hendegu01,855,tier1_bbref,Automatic match via bbref_id to Gunnar Henderson +8660,Ha Seong Kim,9,kimha01,1042,tier1_bbref,Automatic match via bbref_id to Ha Seong Kim +8661,Hansel Robles,9,robleha01,1665,tier1_bbref,Automatic match via bbref_id to Hansel Robles +8662,Hanser Alberto,9,alberha01,30,tier1_bbref,Automatic match via bbref_id to Hanser Alberto +8663,Harold Castro,9,castrha01,349,tier1_bbref,Automatic match via bbref_id to Harold Castro +8664,Harold Ramirez,9,ramirha02,1609,tier1_bbref,Automatic match via bbref_id to Harold Ramirez +8665,Harrison Bader,9,baderha01,110,tier1_bbref,Automatic match via bbref_id to Harrison Bader +8666,Hayden Wesneski,9,wesneha01,2137,tier1_bbref,Automatic match via bbref_id to Hayden Wesneski +8667,Heath Hembree,9,hembrhe01,854,tier1_bbref,Automatic match via bbref_id to Heath Hembree +8668,Hector Neris,9,nerishe01,1413,tier1_bbref,Automatic match via bbref_id to Hector Neris +8669,Hirokazu Sawamura,9,sawamhi01,1769,tier1_bbref,Automatic match via bbref_id to Hirokazu Sawamura +8670,Hoby Milner,9,milneho01,1332,tier1_bbref,Automatic match via bbref_id to Hoby Milner +8671,Huascar Brazoban,9,brazohu01,246,tier1_bbref,Automatic match via bbref_id to Huascar Brazoban +8672,Humberto Castellanos,9,castehu01,339,tier1_bbref,Automatic match via bbref_id to Humberto Castellanos +8673,Hunter Brown,9,brownhu01,267,tier1_bbref,Automatic match via bbref_id to Hunter Brown +8674,Hunter Dozier,9,doziehu01,533,tier1_bbref,Automatic match via bbref_id to Hunter Dozier +8675,Hunter Greene,9,greenhu01,770,tier1_bbref,Automatic match via bbref_id to Hunter Greene +8676,Hunter Harvey,9,harvehu01,836,tier1_bbref,Automatic match via bbref_id to Hunter Harvey +8677,Hunter Renfroe,9,renfrhu01,1631,tier1_bbref,Automatic match via bbref_id to Hunter Renfroe +8678,Hunter Strickland,9,strichu01,1925,tier1_bbref,Automatic match via bbref_id to Hunter Strickland +8679,Hyun Jin Ryu,9,ryuhy01,1733,tier1_bbref,Automatic match via bbref_id to Hyun Jin Ryu +8680,Ian Anderson,9,anderia01,74,tier1_bbref,Automatic match via bbref_id to Ian Anderson +8681,Ian Gibaut,9,gibauia01,714,tier1_bbref,Automatic match via bbref_id to Ian Gibaut +8682,Ian Happ,9,happia01,820,tier1_bbref,Automatic match via bbref_id to Ian Happ +8683,Ian Kennedy,9,kenneia01,1029,tier1_bbref,Automatic match via bbref_id to Ian Kennedy +8684,Ildemaro Vargas,9,vargail01,2054,tier1_bbref,Automatic match via bbref_id to Ildemaro Vargas +8685,Isaac Paredes,9,paredis01,1497,tier1_bbref,Automatic match via bbref_id to Isaac Paredes +8686,Isiah Kiner Falefa,9,kineris01,1044,tier1_bbref,Automatic match via bbref_id to Isiah Kiner Falefa +8687,Jace Peterson,9,peterja01,1547,tier1_bbref,Automatic match via bbref_id to Jace Peterson +8688,Jack Flaherty,9,flaheja01,622,tier1_bbref,Automatic match via bbref_id to Jack Flaherty +8689,Jack Mayfield,9,mayfija01,1252,tier1_bbref,Automatic match via bbref_id to Jack Mayfield +8690,Jack Suwinski,9,suwinja01,1944,tier1_bbref,Automatic match via bbref_id to Jack Suwinski +8691,Jackie Bradley Jr,9,bradlja02,239,tier1_bbref,Automatic match via bbref_id to Jackie Bradley Jr +8692,Jackson Stephens,9,stephja01,1903,tier1_bbref,Automatic match via bbref_id to Jackson Stephens +8736,Jeff Hoffman,9,hoffmje02,910,tier1_bbref,Automatic match via bbref_id to Jeff Hoffman +8693,Jacob deGrom,9,degroja01,484,tier1_bbref,Automatic match via bbref_id to Jacob deGrom +8694,Jacob Stallings,9,stallja01,1890,tier1_bbref,Automatic match via bbref_id to Jacob Stallings +8695,Jaime Barria,9,barrija01,141,tier1_bbref,Automatic match via bbref_id to Jaime Barria +8696,Jake Bird,9,birdja01,198,tier1_bbref,Automatic match via bbref_id to Jake Bird +8697,Jake Burger,9,burgeja01,283,tier1_bbref,Automatic match via bbref_id to Jake Burger +8698,Jake Cave,9,caveja01,354,tier1_bbref,Automatic match via bbref_id to Jake Cave +8699,Jake Cronenworth,9,croneja01,442,tier1_bbref,Automatic match via bbref_id to Jake Cronenworth +8700,Jake Diekman,9,diekmja01,514,tier1_bbref,Automatic match via bbref_id to Jake Diekman +8701,Jake Fraley,9,fraleja01,641,tier1_bbref,Automatic match via bbref_id to Jake Fraley +8702,Jake Junis,9,junisja01,1004,tier1_bbref,Automatic match via bbref_id to Jakob Junis +8703,Jake Lamb,9,lambja01,1087,tier1_bbref,Automatic match via bbref_id to Jake Lamb +8704,Jake Marisnick,9,marisja01,1200,tier1_bbref,Automatic match via bbref_id to Jake Marisnick +8705,Jake McCarthy,9,mccarja02,1265,tier1_bbref,Automatic match via bbref_id to Jake McCarthy +8706,Jake McGee,9,mcgeeja01,1274,tier1_bbref,Automatic match via bbref_id to Jake McGee +8707,Jake Meyers,9,meyerja02,1315,tier1_bbref,Automatic match via bbref_id to Jake Meyers +8708,Jake Odorizzi,9,odorija01,1452,tier1_bbref,Automatic match via bbref_id to Jake Odorizzi +8709,Jake Woodford,9,woodfja01,2195,tier1_bbref,Automatic match via bbref_id to Jake Woodford +8710,Jalen Beeks,9,beeksja02,165,tier1_bbref,Automatic match via bbref_id to Jalen Beeks +8711,James Kaprielian,9,kaprija01,1008,tier1_bbref,Automatic match via bbref_id to James Kaprielian +8712,James Karinchak,9,karinja01,1009,tier1_bbref,Automatic match via bbref_id to James Karinchak +8713,James McCann,9,mccanja02,1261,tier1_bbref,Automatic match via bbref_id to James McCann +8714,Jameson Taillon,9,taillja01,1954,tier1_bbref,Automatic match via bbref_id to Jameson Taillon +8715,Jandel Gustave,9,gustaja01,795,tier1_bbref,Automatic match via bbref_id to Jandel Gustave +8716,Jared Koenig,9,koenija01,1068,tier1_bbref,Automatic match via bbref_id to Jared Koenig +8717,Jared Walsh,9,walshja01,2111,tier1_bbref,Automatic match via bbref_id to Jared Walsh +8718,Jarlin Garcia,9,garcija04,684,tier1_bbref,Automatic match via bbref_id to Jarlin Garcia +8719,Jarred Kelenic,9,kelenja01,1015,tier1_bbref,Automatic match via bbref_id to Jarred Kelenic +8720,Jarren Duran,9,duranja01,552,tier1_bbref,Automatic match via bbref_id to Jarren Duran +8721,Jason Adam,9,adamja01,13,tier1_bbref,Automatic match via bbref_id to Jason Adam +8722,Jason Alexander,9,alexaja01,38,tier1_bbref,Automatic match via bbref_id to Jason Alexander +8723,Jason Castro,9,castrja01,347,tier1_bbref,Automatic match via bbref_id to Jason Castro +8724,Jason Delay,9,delayja01,487,tier1_bbref,Automatic match via bbref_id to Jason Delay +8725,Jason Foley,9,foleyja01,632,tier1_bbref,Automatic match via bbref_id to Jason Foley +8726,Jason Heyward,9,heywaja01,891,tier1_bbref,Automatic match via bbref_id to Jason Heyward +8727,Jason Vosler,9,vosleja01,2090,tier1_bbref,Automatic match via bbref_id to Jason Vosler +8728,Javier Assad,9,assadja01,100,tier1_bbref,Automatic match via bbref_id to Javier Assad +8729,Javier Baez,9,baezja01,112,tier1_bbref,Automatic match via bbref_id to Javier Baez +8730,Jazz Chisholm,9,chishja01,375,tier1_bbref,Automatic match via bbref_id to Jazz Chisholm +8731,JB Wendelken,9,wendejb01,2134,tier1_bbref,Automatic match via bbref_id to JB Wendelken +8732,JD Davis,9,davisjd01,474,tier1_bbref,Automatic match via bbref_id to JD Davis +8733,JD Martinez,9,martijd02,1229,tier1_bbref,Automatic match via bbref_id to JD Martinez +8734,Jean Segura,9,segurje01,1796,tier1_bbref,Automatic match via bbref_id to Jean Segura +8735,Jed Lowrie,9,lowrije01,1158,tier1_bbref,Automatic match via bbref_id to Jed Lowrie +8737,Jeff McNeil,9,mcneije01,1287,tier1_bbref,Automatic match via bbref_id to Jeff McNeil +8738,Jeffrey Springs,9,sprinje01,1889,tier1_bbref,Automatic match via bbref_id to Jeffrey Springs +8739,Jeimer Candelario,9,candeje01,315,tier1_bbref,Automatic match via bbref_id to Jeimer Candelario +8740,Jerar Encarnacion,9,encarje01,572,tier1_bbref,Automatic match via bbref_id to Jerar Encarnacion +8741,Jeremy Pena,9,penaje02,1519,tier1_bbref,Automatic match via bbref_id to Jeremy Pena +8742,Jermaine Palacios,9,palacje01,1487,tier1_bbref,Automatic match via bbref_id to Jermaine Palacios +8743,Jesse Chavez,9,chaveje01,370,tier1_bbref,Automatic match via bbref_id to Jesse Chavez +8744,Jesse Winker,9,winkeje01,2177,tier1_bbref,Automatic match via bbref_id to Jesse Winker +8745,Jesus Aguilar,9,aguilje01,25,tier1_bbref,Automatic match via bbref_id to Jesus Aguilar +8746,Jesus Luzardo,9,luzarje01,1170,tier1_bbref,Automatic match via bbref_id to Jesus Luzardo +8747,Jesus Sanchez,9,sanchje02,1749,tier1_bbref,Automatic match via bbref_id to Jesus Sanchez +8748,Jeurys Familia,9,familje01,595,tier1_bbref,Automatic match via bbref_id to Jeurys Familia +8749,Jharel Cotton,9,cottojh01,423,tier1_bbref,Automatic match via bbref_id to Jharel Cotton +8750,Jhoan Duran,9,duranjh01,550,tier1_bbref,Automatic match via bbref_id to Jhoan Duran +8751,Jhoulys Chacin,9,chacijh01,362,tier1_bbref,Automatic match via bbref_id to Jhoulys Chacin +8752,Ji Man Choi,9,choiji01,377,tier1_bbref,Automatic match via bbref_id to Ji Man Choi +8753,Jimmy Herget,9,hergeji01,863,tier1_bbref,Automatic match via bbref_id to Jimmy Herget +8754,Jimmy Lambert,9,lambeji01,1089,tier1_bbref,Automatic match via bbref_id to Jimmy Lambert +8755,JJ Bleday,9,bledajj01,211,tier1_bbref,Automatic match via bbref_id to JJ Bleday +8756,JJ Matijevic,9,matijjj01,1237,tier1_bbref,Automatic match via bbref_id to JJ Matijevic +8757,Jo Adell,9,adelljo01,20,tier1_bbref,Automatic match via bbref_id to Jo Adell +8758,Joan Adon,9,adonjo01,21,tier1_bbref,Automatic match via bbref_id to Joan Adon +8759,Joc Pederson,9,pederjo01,1514,tier1_bbref,Automatic match via bbref_id to Joc Pederson +8760,Joe Barlow,9,barlojo01,129,tier1_bbref,Automatic match via bbref_id to Joe Barlow +8761,Joe Jimenez,9,jimenjo02,979,tier1_bbref,Automatic match via bbref_id to Joe Jimenez +8762,Joe Kelly,9,kellyjo05,1021,tier1_bbref,Automatic match via bbref_id to Joe Kelly +8763,Joe Mantiply,9,mantijo01,1193,tier1_bbref,Automatic match via bbref_id to Joe Mantiply +8764,Joe Musgrove,9,musgrjo01,1394,tier1_bbref,Automatic match via bbref_id to Joe Musgrove +8765,Joe Ryan,9,ryanjo04,1732,tier1_bbref,Automatic match via bbref_id to Joe Ryan +8766,Joe Smith,9,smithjo05,1842,tier1_bbref,Automatic match via bbref_id to Joe Smith +8767,Joel Kuhnel,9,kuhnejo01,1079,tier1_bbref,Automatic match via bbref_id to Joel Kuhnel +8768,Joel Payamps,9,payamjo01,1507,tier1_bbref,Automatic match via bbref_id to Joel Payamps +8769,Joely Rodriguez,9,rodrijo06,1673,tier1_bbref,Automatic match via bbref_id to Joely Rodriguez +8770,Joey Bart,9,bartjo01,142,tier1_bbref,Automatic match via bbref_id to Joey Bart +8771,Joey Gallo,9,gallojo01,674,tier1_bbref,Automatic match via bbref_id to Joey Gallo +8772,Joey Krehbiel,9,krehbjo01,1075,tier1_bbref,Automatic match via bbref_id to Joey Krehbiel +8773,Joey Meneses,9,menesjo01,1303,tier1_bbref,Automatic match via bbref_id to Joey Meneses +8774,Joey Votto,9,vottojo01,2092,tier1_bbref,Automatic match via bbref_id to Joey Votto +8775,Joey Wendle,9,wendljo01,2135,tier1_bbref,Automatic match via bbref_id to Joey Wendle +8776,Joey Wentz,9,wentzjo01,2136,tier1_bbref,Automatic match via bbref_id to Joey Wentz +8777,Johan Camargo,9,camarjo01,309,tier1_bbref,Automatic match via bbref_id to Johan Camargo +8778,Johan Oviedo,9,oviedjo01,1479,tier1_bbref,Automatic match via bbref_id to Johan Oviedo +8779,John Brebbia,9,brebbjo01,247,tier1_bbref,Automatic match via bbref_id to John Brebbia +8780,John King,9,kingjo01,1045,tier1_bbref,Automatic match via bbref_id to John King +8824,Jose Suarez,9,suarejo01,1937,tier1_bbref,Automatic match via bbref_id to Jose Suarez +8781,John Schreiber,9,schrejo01,1780,tier1_bbref,Automatic match via bbref_id to John Schreiber +8782,Johnny Cueto,9,cuetojo01,451,tier1_bbref,Automatic match via bbref_id to Johnny Cueto +8783,Jon Berti,9,bertijo01,183,tier1_bbref,Automatic match via bbref_id to Jon Berti +8784,Jon Gray,9,grayjo02,766,tier1_bbref,Automatic match via bbref_id to Jon Gray +8785,Jon Heasley,9,heasljo01,845,tier1_bbref,Automatic match via bbref_id to Jon Heasley +8786,Jonah Bride,9,bridejo01,255,tier1_bbref,Automatic match via bbref_id to Jonah Bride +8787,Jonah Heim,9,heimjo01,849,tier1_bbref,Automatic match via bbref_id to Jonah Heim +8788,Jonathan Aranda,9,arandjo01,82,tier1_bbref,Automatic match via bbref_id to Jonathan Aranda +8789,Jonathan Davis,9,davisjo05,470,tier1_bbref,Automatic match via bbref_id to Jonathan Davis +8790,Jonathan Hernandez,9,hernajo02,876,tier1_bbref,Automatic match via bbref_id to Jonathan Hernandez +8791,Jonathan India,9,indiajo01,953,tier1_bbref,Automatic match via bbref_id to Jonathan India +8792,Jonathan Loaisiga,9,loaisjo01,1132,tier1_bbref,Automatic match via bbref_id to Jonathan Loaisiga +8793,Jonathan Schoop,9,schoojo01,1779,tier1_bbref,Automatic match via bbref_id to Jonathan Schoop +8794,Jonathan Villar,9,villajo01,2079,tier1_bbref,Automatic match via bbref_id to Jonathan Villar +8795,Jordan Groshans,9,groshjo01,778,tier1_bbref,Automatic match via bbref_id to Jordan Groshans +8796,Jordan Hicks,9,hicksjo03,894,tier1_bbref,Automatic match via bbref_id to Jordan Hicks +8797,Jordan Luplow,9,luplojo01,1168,tier1_bbref,Automatic match via bbref_id to Jordan Luplow +8798,Jordan Lyles,9,lylesjo01,1171,tier1_bbref,Automatic match via bbref_id to Jordan Lyles +8799,Jordan Montgomery,9,montgjo01,1356,tier1_bbref,Automatic match via bbref_id to Jordan Montgomery +8800,Jordan Romano,9,romanjo03,1699,tier1_bbref,Automatic match via bbref_id to Jordan Romano +8801,Jordan Weems,9,weemsjo01,2129,tier1_bbref,Automatic match via bbref_id to Jordan Weems +8802,Jorge Alfaro,9,alfarjo01,40,tier1_bbref,Automatic match via bbref_id to Jorge Alfaro +8803,Jorge Lopez,9,lopezjo02,1144,tier1_bbref,Automatic match via bbref_id to Jorge Lopez +8804,Jorge Mateo,9,mateojo01,1233,tier1_bbref,Automatic match via bbref_id to Jorge Mateo +8805,Jorge Polanco,9,polanjo01,1570,tier1_bbref,Automatic match via bbref_id to Jorge Polanco +8806,Jorge Soler,9,solerjo01,1870,tier1_bbref,Automatic match via bbref_id to Jorge Soler +8807,Jose Abreu,9,abreujo02,7,tier1_bbref,Automatic match via bbref_id to Jose Abreu +8808,Jose Altuve,9,altuvjo01,56,tier1_bbref,Automatic match via bbref_id to Jose Altuve +8809,Jose Alvarado,9,alvarjo03,58,tier1_bbref,Automatic match via bbref_id to Jose Alvarado +8810,Jose Azocar,9,azocajo01,107,tier1_bbref,Automatic match via bbref_id to Jose Azocar +8811,Jose Barrero,9,garcijo02,139,tier1_bbref,Automatic match via bbref_id to Jose Barrero +8812,Jose Berrios,9,berrijo01,182,tier1_bbref,Automatic match via bbref_id to Jose Berrios +8813,Jose Cisnero,9,cisnejo01,382,tier1_bbref,Automatic match via bbref_id to Jose Cisnero +8814,Jose Cuas,9,cuasjo01,450,tier1_bbref,Automatic match via bbref_id to Jose Cuas +8815,Jose Herrera,9,herrejo04,884,tier1_bbref,Automatic match via bbref_id to Jose Herrera +8816,Jose Iglesias,9,iglesjo01,949,tier1_bbref,Automatic match via bbref_id to Jose Iglesias +8817,Jose Leclerc,9,leclejo01,1106,tier1_bbref,Automatic match via bbref_id to Jose Leclerc +8818,Jose Miranda,9,miranjo01,1337,tier1_bbref,Automatic match via bbref_id to Jose Miranda +8819,Jose Quijada,9,quijajo01,1594,tier1_bbref,Automatic match via bbref_id to Jose Quijada +8820,Jose Quintana,9,quintjo01,1596,tier1_bbref,Automatic match via bbref_id to Jose Quintana +8821,Jose Ramirez,9,ramirjo01,1608,tier1_bbref,Automatic match via bbref_id to Jose Ramirez +8822,Jose Ruiz,9,ruizjo01,1724,tier1_bbref,Automatic match via bbref_id to Jose Ruiz +8823,Jose Siri,9,sirijo01,1830,tier1_bbref,Automatic match via bbref_id to Jose Siri +8825,Jose Trevino,9,trevijo01,2013,tier1_bbref,Automatic match via bbref_id to Jose Trevino +8826,Jose Urena,9,urenajo01,2035,tier1_bbref,Automatic match via bbref_id to Jose Urena +8827,Jose Urquidy,9,urquijo01,2041,tier1_bbref,Automatic match via bbref_id to Jose Urquidy +8828,Josh Bell,9,belljo02,168,tier1_bbref,Automatic match via bbref_id to Josh Bell +8829,Josh Donaldson,9,donaljo02,526,tier1_bbref,Automatic match via bbref_id to Josh Donaldson +8830,Josh Fleming,9,flemijo01,623,tier1_bbref,Automatic match via bbref_id to Josh Fleming +8831,Josh Hader,9,haderjo01,802,tier1_bbref,Automatic match via bbref_id to Josh Hader +8832,Josh Harrison,9,harrijo05,829,tier1_bbref,Automatic match via bbref_id to Josh Harrison +8833,Josh Jung,9,jungjo01,1002,tier1_bbref,Automatic match via bbref_id to Josh Jung +8834,Josh Lowe,9,lowejo01,1157,tier1_bbref,Automatic match via bbref_id to Josh Lowe +8835,Josh Naylor,9,naylojo01,1404,tier1_bbref,Automatic match via bbref_id to Josh Naylor +8836,Josh Rogers,9,rogerjo01,1690,tier1_bbref,Automatic match via bbref_id to Josh Rogers +8837,Josh Rojas,9,rojasjo01,1695,tier1_bbref,Automatic match via bbref_id to Josh Rojas +8838,Josh Smith,9,smithjo11,1852,tier1_bbref,Automatic match via bbref_id to Josh Smith +8839,Josh Staumont,9,staumjo01,1897,tier1_bbref,Automatic match via bbref_id to Josh Staumont +8840,Josh VanMeter,9,vanmejo01,2052,tier1_bbref,Automatic match via bbref_id to Josh VanMeter +8841,Josh Winckowski,9,winckjo01,2174,tier1_bbref,Automatic match via bbref_id to Josh Winckowski +8842,Josh Winder,9,windejo01,2175,tier1_bbref,Automatic match via bbref_id to Josh Winder +8843,Josiah Gray,9,grayjo03,767,tier1_bbref,Automatic match via bbref_id to Josiah Gray +8844,Jovani Moran,9,moranjo01,1361,tier1_bbref,Automatic match via bbref_id to Jovani Moran +8845,JP Crawford,9,crawfjp01,432,tier1_bbref,Automatic match via bbref_id to JP Crawford +8846,JP Feyereisen,9,feyerjo01,612,tier1_bbref,Automatic match via bbref_id to JP Feyereisen +8847,JP Sears,9,searsjp01,1795,tier1_bbref,Automatic match via bbref_id to JP Sears +8848,JT Brubaker,9,brubajt01,269,tier1_bbref,Automatic match via bbref_id to JT Brubaker +8849,JT Chargois,9,chargjt01,368,tier1_bbref,Automatic match via bbref_id to JT Chargois +8850,JT Realmuto,9,realmjt01,1622,tier1_bbref,Automatic match via bbref_id to JT Realmuto +8851,Juan Lagares,9,lagarju01,1083,tier1_bbref,Automatic match via bbref_id to Juan Lagares +8852,Juan Soto,9,sotoju01,1879,tier1_bbref,Automatic match via bbref_id to Juan Soto +8853,Juan Yepez,9,yepezju01,2213,tier1_bbref,Automatic match via bbref_id to Juan Yepez +8854,Julian Merryweather,9,merryju01,1311,tier1_bbref,Automatic match via bbref_id to Julian Merryweather +8855,Julio Rodriguez,9,rodriju01,1682,tier1_bbref,Automatic match via bbref_id to Julio Rodriguez +8856,Julio Urias,9,uriasju01,2038,tier1_bbref,Automatic match via bbref_id to Julio Urias +8857,Jurickson Profar,9,profaju01,1587,tier1_bbref,Automatic match via bbref_id to Jurickson Profar +8858,Justin Bruihl,9,bruihju01,271,tier1_bbref,Automatic match via bbref_id to Justin Bruihl +8859,Justin Dunn,9,dunnju01,546,tier1_bbref,Automatic match via bbref_id to Justin Dunn +8860,Justin Lawrence,9,lawreju01,1100,tier1_bbref,Automatic match via bbref_id to Justin Lawrence +8861,Justin Steele,9,steelju01,1899,tier1_bbref,Automatic match via bbref_id to Justin Steele +8902,Kyle Stowers,9,stoweky01,1917,tier1_bbref,Automatic match via bbref_id to Kyle Stowers +8862,Justin Turner,9,turneju01,2029,tier1_bbref,Automatic match via bbref_id to Justin Turner +8863,Justin Verlander,9,verlaju01,2071,tier1_bbref,Automatic match via bbref_id to Justin Verlander +8864,Kaleb Ort,9,ortka01,1464,tier1_bbref,Automatic match via bbref_id to Kaleb Ort +8865,KeBryan Hayes,9,hayeske01,838,tier1_bbref,Automatic match via bbref_id to KeBryan Hayes +8866,Keegan Akin,9,akinke01,27,tier1_bbref,Automatic match via bbref_id to Keegan Akin +8867,Keegan Thompson,9,thompke02,1982,tier1_bbref,Automatic match via bbref_id to Keegan Thompson +8868,Keibert Ruiz,9,ruizke01,1725,tier1_bbref,Automatic match via bbref_id to Keibert Ruiz +8869,Ken Waldichuk,9,waldike01,2101,tier1_bbref,Automatic match via bbref_id to Ken Waldichuk +8870,Kendall Graveman,9,graveke01,764,tier1_bbref,Automatic match via bbref_id to Kendall Graveman +8871,Kenley Jansen,9,janseke01,968,tier1_bbref,Automatic match via bbref_id to Kenley Jansen +8872,Kerry Carpenter,9,carpeke01,330,tier1_bbref,Automatic match via bbref_id to Kerry Carpenter +8873,Keston Hiura,9,hiurake01,905,tier1_bbref,Automatic match via bbref_id to Keston Hiura +8874,Ketel Marte,9,marteke01,1210,tier1_bbref,Automatic match via bbref_id to Ketel Marte +8875,Kevin Gausman,9,gausmke01,706,tier1_bbref,Automatic match via bbref_id to Kevin Gausman +8876,Kevin Ginkel,9,ginkeke01,722,tier1_bbref,Automatic match via bbref_id to Kevin Ginkel +8877,Kevin Kiermaier,9,kiermke01,1039,tier1_bbref,Automatic match via bbref_id to Kevin Kiermaier +8878,Kevin Newman,9,newmake01,1420,tier1_bbref,Automatic match via bbref_id to Kevin Newman +8879,Kevin Plawecki,9,plaweke01,1565,tier1_bbref,Automatic match via bbref_id to Kevin Plawecki +8880,Kevin Smith,9,smithke05,1854,tier1_bbref,Automatic match via bbref_id to Kevin Smith +8881,Kirby Snead,9,sneadki01,1859,tier1_bbref,Automatic match via bbref_id to Kirby Snead +8882,Kirk McCarty,9,mccarki01,1266,tier1_bbref,Automatic match via bbref_id to Kirk McCarty +8883,Kody Clemens,9,clemeko01,390,tier1_bbref,Automatic match via bbref_id to Kody Clemens +8884,Kole Calhoun,9,calhoko01,306,tier1_bbref,Automatic match via bbref_id to Kole Calhoun +8885,Kolten Wong,9,wongko01,2188,tier1_bbref,Automatic match via bbref_id to Kolten Wong +8886,Konnor Pilkington,9,pilkiko01,1556,tier1_bbref,Automatic match via bbref_id to Konnor Pilkington +8887,Kris Bryant,9,bryankr01,273,tier1_bbref,Automatic match via bbref_id to Kris Bryant +8888,Kris Bubic,9,bubickr01,274,tier1_bbref,Automatic match via bbref_id to Kris Bubic +8889,Kurt Suzuki,9,suzukku01,1945,tier1_bbref,Automatic match via bbref_id to Kurt Suzuki +8890,Kutter Crawford,9,crawfku01,431,tier1_bbref,Automatic match via bbref_id to Kutter Crawford +8891,Kyle Bradish,9,bradiky01,235,tier1_bbref,Automatic match via bbref_id to Kyle Bradish +8892,Kyle Farmer,9,farmeky01,598,tier1_bbref,Automatic match via bbref_id to Kyle Farmer +8893,Kyle Finnegan,9,finneky01,617,tier1_bbref,Automatic match via bbref_id to Kyle Finnegan +8894,Kyle Freeland,9,freelky01,650,tier1_bbref,Automatic match via bbref_id to Kyle Freeland +8895,Kyle Garlick,9,garliky01,696,tier1_bbref,Automatic match via bbref_id to Kyle Garlick +8896,Kyle Gibson,9,gibsoky01,715,tier1_bbref,Automatic match via bbref_id to Kyle Gibson +8897,Kyle Hendricks,9,hendrky01,856,tier1_bbref,Automatic match via bbref_id to Kyle Hendricks +8898,Kyle Higashioka,9,higasky01,895,tier1_bbref,Automatic match via bbref_id to Kyle Higashioka +8899,Kyle Isbel,9,isbelky01,956,tier1_bbref,Automatic match via bbref_id to Kyle Isbel +8900,Kyle Nelson,9,nelsoky01,1412,tier1_bbref,Automatic match via bbref_id to Kyle Nelson +8901,Kyle Schwarber,9,schwaky01,1784,tier1_bbref,Automatic match via bbref_id to Kyle Schwarber +8903,Kyle Tucker,9,tuckeky01,2023,tier1_bbref,Automatic match via bbref_id to Kyle Tucker +8904,Kyle Wright,9,wrighky01,2200,tier1_bbref,Automatic match via bbref_id to Kyle Wright +8905,LaMonte Wade Jr,9,wadela01,2095,tier1_bbref,Automatic match via bbref_id to LaMonte Wade Jr +8906,Lance Lynn,9,lynnla01,1173,tier1_bbref,Automatic match via bbref_id to Lance Lynn +8907,Lance McCullers Jr,9,mcculla02,1271,tier1_bbref,Automatic match via bbref_id to Lance McCullers Jr +8908,Lane Thomas,9,thomala02,1978,tier1_bbref,Automatic match via bbref_id to Lane Thomas +8909,Lars Nootbaar,9,nootbla01,1436,tier1_bbref,Automatic match via bbref_id to Lars Nootbaar +8910,Leody Taveras,9,taverle01,1962,tier1_bbref,Automatic match via bbref_id to Leody Taveras +8911,Leury Garcia,9,garcile02,679,tier1_bbref,Automatic match via bbref_id to Leury Garcia +8912,Lewin Diaz,9,diazle01,506,tier1_bbref,Automatic match via bbref_id to Lewin Diaz +8913,Liam Hendriks,9,hendrli01,857,tier1_bbref,Automatic match via bbref_id to Liam Hendriks +8914,Logan Gilbert,9,gilbelo01,718,tier1_bbref,Automatic match via bbref_id to Logan Gilbert +8915,Logan Webb,9,webblo01,2127,tier1_bbref,Automatic match via bbref_id to Logan Webb +8916,Lorenzo Cain,9,cainlo01,305,tier1_bbref,Automatic match via bbref_id to Lorenzo Cain +8917,Lou Trivino,9,trivilo01,2016,tier1_bbref,Automatic match via bbref_id to Lou Trivino +8918,Louie Varland,9,varlalo01,2057,tier1_bbref,Automatic match via bbref_id to Louie Varland +8919,Louis Head,9,headlo01,840,tier1_bbref,Automatic match via bbref_id to Louis Head +8920,Lourdes Gurriel Jr,9,gurrilo01,794,tier1_bbref,Automatic match via bbref_id to Lourdes Gurriel Jr +8921,Lucas Gilbreath,9,gilbrlu01,719,tier1_bbref,Automatic match via bbref_id to Lucas Gilbreath +8922,Lucas Giolito,9,giolilu01,724,tier1_bbref,Automatic match via bbref_id to Lucas Giolito +8923,Lucas Luetge,9,luetglu01,1164,tier1_bbref,Automatic match via bbref_id to Lucas Luetge +8924,Luis Arraez,9,arraelu01,93,tier1_bbref,Automatic match via bbref_id to Luis Arraez +8925,Luis Barrera,9,barrelu01,138,tier1_bbref,Automatic match via bbref_id to Luis Barrera +8926,Luis Castillo,9,castilu02,344,tier1_bbref,Automatic match via bbref_id to Luis Castillo +8927,Luis Cessa,9,cessalu01,361,tier1_bbref,Automatic match via bbref_id to Luis Cessa +8928,Luis V Garcia,9,garcilu04,694,tier1_bbref,Automatic match via bbref_id to Luis Garcia Jr +8929,Luis Garcia,9,garcilu03,3237,manual_new,Manual assignment to new SbaPlayer: Luis Garcia +8930,Luis H Garcia,9,garcilu05,3244,manual_new,Manual assignment to new SbaPlayer: Luis H Garcia +8931,Luis Gonzalez,9,gonzalu03,746,tier1_bbref,Automatic match via bbref_id to Luis Gonzalez +8932,Luis Guillorme,9,guilllu01,792,tier1_bbref,Automatic match via bbref_id to Luis Guillorme +8933,Luis Rengifo,9,rengilu01,1632,tier1_bbref,Automatic match via bbref_id to Luis Rengifo +8934,Luis Robert,9,roberlu01,1660,tier1_bbref,Automatic match via bbref_id to Luis Robert +8935,Luis Severino,9,severlu01,1805,tier1_bbref,Automatic match via bbref_id to Luis Severino +8936,Luis Torrens,9,torrelu01,2002,tier1_bbref,Automatic match via bbref_id to Luis Torrens +8937,Luis Urias,9,uriaslu01,2039,tier1_bbref,Automatic match via bbref_id to Luis Urias +8938,Luke Maile,9,mailelu01,1185,tier1_bbref,Automatic match via bbref_id to Luke Maile +8939,Luke Raley,9,raleylu01,1602,tier1_bbref,Automatic match via bbref_id to Luke Raley +8940,Luke Voit,9,voitlu01,2087,tier1_bbref,Automatic match via bbref_id to Luke Voit +8941,Luke Weaver,9,weavelu01,2124,tier1_bbref,Automatic match via bbref_id to Luke Weaver +8942,Luke Williams,9,willilu01,2159,tier1_bbref,Automatic match via bbref_id to Luke Williams +8943,MacKenzie Gore,9,gorema01,754,tier1_bbref,Automatic match via bbref_id to MacKenzie Gore +8944,Madison Bumgarner,9,bumgama01,278,tier1_bbref,Automatic match via bbref_id to Madison Bumgarner +8945,Magneuris Sierra,9,sierrma01,1823,tier1_bbref,Automatic match via bbref_id to Magneuris Sierra +8946,Maikel Franco,9,francma02,645,tier1_bbref,Automatic match via bbref_id to Maikel Franco +8947,Manny Banuelos,9,banuema01,123,tier1_bbref,Automatic match via bbref_id to Manny Banuelos +9102,Raimel Tapia,9,tapiara01,1957,tier1_bbref,Automatic match via bbref_id to Raimel Tapia +8948,Manny Machado,9,machama01,1175,tier1_bbref,Automatic match via bbref_id to Manny Machado +8949,Manuel Margot,9,margoma01,1198,tier1_bbref,Automatic match via bbref_id to Manuel Margot +8950,Manuel Rodriguez,9,rodrima01,1678,tier1_bbref,Automatic match via bbref_id to Manuel Rodriguez +8951,Marcell Ozuna,9,ozunama01,1481,tier1_bbref,Automatic match via bbref_id to Marcell Ozuna +8952,Marco Gonzales,9,gonzama02,735,tier1_bbref,Automatic match via bbref_id to Marco Gonzales +8953,Marcus Semien,9,semiema01,1799,tier1_bbref,Automatic match via bbref_id to Marcus Semien +8954,Marcus Stroman,9,stromma01,1928,tier1_bbref,Automatic match via bbref_id to Marcus Stroman +8955,Mark Canha,9,canhama01,316,tier1_bbref,Automatic match via bbref_id to Mark Canha +8956,Mark Contreras,9,contrma01,413,tier1_bbref,Automatic match via bbref_id to Mark Contreras +8957,Mark Leiter,9,leitema02,1112,tier1_bbref,Automatic match via bbref_id to Mark Leiter +8958,Mark Mathias,9,mathima01,1234,tier1_bbref,Automatic match via bbref_id to Mark Mathias +8959,Mark Melancon,9,melanma01,1298,tier1_bbref,Automatic match via bbref_id to Mark Melancon +8960,Martin Maldonado,9,maldoma01,1187,tier1_bbref,Automatic match via bbref_id to Martin Maldonado +8961,Martin Perez,9,perezma02,1535,tier1_bbref,Automatic match via bbref_id to Martin Perez +8962,Marwin Gonzalez,9,gonzama01,741,tier1_bbref,Automatic match via bbref_id to Marwin Gonzalez +8963,Mason Thompson,9,thompma02,1984,tier1_bbref,Automatic match via bbref_id to Mason Thompson +8964,Matt Barnes,9,barnema01,131,tier1_bbref,Automatic match via bbref_id to Matt Barnes +8965,Matt Brash,9,brashma01,241,tier1_bbref,Automatic match via bbref_id to Matt Brash +8966,Matt Bush,9,bushma01,289,tier1_bbref,Automatic match via bbref_id to Matt Bush +8967,Matt Carpenter,9,carpema01,329,tier1_bbref,Automatic match via bbref_id to Matt Carpenter +8968,Matt Chapman,9,chapmma01,367,tier1_bbref,Automatic match via bbref_id to Matt Chapman +8969,Matt Duffy,9,duffyma01,542,tier1_bbref,Automatic match via bbref_id to Matt Duffy +8970,Matt Festa,9,festama01,610,tier1_bbref,Automatic match via bbref_id to Matt Festa +8971,Matt Foster,9,fostema01,638,tier1_bbref,Automatic match via bbref_id to Matt Foster +8972,Matt Manning,9,mannima02,1191,tier1_bbref,Automatic match via bbref_id to Matt Manning +8973,Matt Moore,9,moorema02,1357,tier1_bbref,Automatic match via bbref_id to Matt Moore +8974,Matt Olson,9,olsonma02,1461,tier1_bbref,Automatic match via bbref_id to Matt Olson +8975,Matt Reynolds,9,reynoma03,1640,tier1_bbref,Automatic match via bbref_id to Matt Reynolds +8976,Matt Strahm,9,strahma01,1918,tier1_bbref,Automatic match via bbref_id to Matt Strahm +8977,Matt Swarmer,9,swarmma01,1949,tier1_bbref,Automatic match via bbref_id to Matt Swarmer +8978,Matt Thaiss,9,thaisma01,1975,tier1_bbref,Automatic match via bbref_id to Matt Thaiss +8979,Matt Vierling,9,vierlma01,2077,tier1_bbref,Automatic match via bbref_id to Matt Vierling +8980,Matt Wallner,9,wallnma01,2109,tier1_bbref,Automatic match via bbref_id to Matt Wallner +8981,Matt Wisler,9,wislema01,2183,tier1_bbref,Automatic match via bbref_id to Matt Wisler +8982,Matthew Liberatore,9,liberma01,1121,tier1_bbref,Automatic match via bbref_id to Matthew Liberatore +8983,Mauricio Dubon,9,dubonma01,538,tier1_bbref,Automatic match via bbref_id to Mauricio Dubon +8984,Max Castillo,9,castima03,346,tier1_bbref,Automatic match via bbref_id to Max Castillo +8985,Max Fried,9,friedma01,659,tier1_bbref,Automatic match via bbref_id to Max Fried +8986,Max Kepler,9,keplema01,1031,tier1_bbref,Automatic match via bbref_id to Max Kepler +8987,Max Muncy,9,muncyma01,1382,tier1_bbref,Automatic match via bbref_id to Max Muncy +8988,Max Scherzer,9,scherma01,1773,tier1_bbref,Automatic match via bbref_id to Max Scherzer +8989,Max Stassi,9,stassma01,1896,tier1_bbref,Automatic match via bbref_id to Max Stassi +8990,Meibrys Viloria,9,vilorme01,2081,tier1_bbref,Automatic match via bbref_id to Meibrys Viloria +8991,Merrill Kelly,9,kellyme01,1020,tier1_bbref,Automatic match via bbref_id to Merrill Kelly +8992,Michael Brantley,9,brantmi02,240,tier1_bbref,Automatic match via bbref_id to Michael Brantley +8993,Michael Chavis,9,chavimi01,371,tier1_bbref,Automatic match via bbref_id to Michael Chavis +8994,Michael Fulmer,9,fulmemi01,666,tier1_bbref,Automatic match via bbref_id to Michael Fulmer +8995,Michael Grove,9,grovemi01,781,tier1_bbref,Automatic match via bbref_id to Michael Grove +8996,Michael Harris,9,harrimi04,827,tier1_bbref,Automatic match via bbref_id to Michael Harris +8997,Michael Hermosillo,9,hermomi01,865,tier1_bbref,Automatic match via bbref_id to Michael Hermosillo +8998,Michael King,9,kingmi01,1047,tier1_bbref,Automatic match via bbref_id to Michael King +8999,Michael Kopech,9,kopecmi01,1071,tier1_bbref,Automatic match via bbref_id to Michael Kopech +9000,Michael Lorenzen,9,lorenmi01,1151,tier1_bbref,Automatic match via bbref_id to Michael Lorenzen +9001,Michael Massey,9,massemi02,1231,tier1_bbref,Automatic match via bbref_id to Michael Massey +9002,Michael Papierski,9,papiemi01,1495,tier1_bbref,Automatic match via bbref_id to Michael Papierski +9003,Michael Perez,9,perezmi03,1539,tier1_bbref,Automatic match via bbref_id to Michael Perez +9004,Michael Pineda,9,pinedmi01,1560,tier1_bbref,Automatic match via bbref_id to Michael Pineda +9005,Michael Rucker,9,ruckemi01,1721,tier1_bbref,Automatic match via bbref_id to Michael Rucker +9006,Michael Stefanic,9,stefami01,1901,tier1_bbref,Automatic match via bbref_id to Michael Stefanic +9007,Michael A Taylor,9,taylomi01,1963,manual_existing,Manual match to existing SbaPlayer: Michael Taylor +9008,Michael Toglia,9,toglimi01,1994,tier1_bbref,Automatic match via bbref_id to Michael Toglia +9009,Michael Wacha,9,wachami01,2093,tier1_bbref,Automatic match via bbref_id to Michael Wacha +9010,Mickey Moniak,9,moniami01,1350,tier1_bbref,Automatic match via bbref_id to Mickey Moniak +9011,Miguel Andujar,9,andujmi01,78,tier1_bbref,Automatic match via bbref_id to Miguel Andujar +9012,Miguel Cabrera,9,cabremi01,298,tier1_bbref,Automatic match via bbref_id to Miguel Cabrera +9013,Miguel Castro,9,castrmi01,350,tier1_bbref,Automatic match via bbref_id to Miguel Castro +9014,Miguel Rojas,9,rojasmi02,1694,tier1_bbref,Automatic match via bbref_id to Miguel Rojas +9015,Miguel Sano,9,sanomi01,1757,tier1_bbref,Automatic match via bbref_id to Miguel Sano +9016,Mike Baumann,9,baumami01,152,tier1_bbref,Automatic match via bbref_id to Mike Baumann +9017,Mike Brosseau,9,brossmi01,263,tier1_bbref,Automatic match via bbref_id to Mike Brosseau +9018,Mike Clevinger,9,clevimi01,392,tier1_bbref,Automatic match via bbref_id to Mike Clevinger +9019,Mike Ford,9,fordmi01,635,tier1_bbref,Automatic match via bbref_id to Mike Ford +9020,Mike Mayers,9,mayermi01,1251,tier1_bbref,Automatic match via bbref_id to Mike Mayers +9021,Mike Minor,9,minormi01,1335,tier1_bbref,Automatic match via bbref_id to Mike Minor +9022,Mike Moustakas,9,moustmi01,1378,tier1_bbref,Automatic match via bbref_id to Mike Moustakas +9023,Mike Trout,9,troutmi01,2019,tier1_bbref,Automatic match via bbref_id to Mike Trout +9024,Mike Yastrzemski,9,yastrmi01,2210,tier1_bbref,Automatic match via bbref_id to Mike Yastrzemski +9025,Mike Zunino,9,zuninmi01,2234,tier1_bbref,Automatic match via bbref_id to Mike Zunino +9026,Miles Mikolas,9,mikolmi01,1317,tier1_bbref,Automatic match via bbref_id to Miles Mikolas +9027,Mitch Garver,9,garvemi01,702,tier1_bbref,Automatic match via bbref_id to Mitch Garver +9103,Raisel Iglesias,9,iglesra01,950,tier1_bbref,Automatic match via bbref_id to Raisel Iglesias +9028,Mitch Haniger,9,hanigmi01,818,tier1_bbref,Automatic match via bbref_id to Mitch Haniger +9029,Mitch Keller,9,kellemi03,1017,tier1_bbref,Automatic match via bbref_id to Mitch Keller +9030,Mitch White,9,whitemi03,2143,tier1_bbref,Automatic match via bbref_id to Mitch White +9031,MJ Melendez,9,melenmj01,1299,tier1_bbref,Automatic match via bbref_id to MJ Melendez +9032,Mookie Betts,9,bettsmo01,187,tier1_bbref,Automatic match via bbref_id to Mookie Betts +9033,Mychal Givens,9,givenmy01,725,tier1_bbref,Automatic match via bbref_id to Mychal Givens +9034,Myles Straw,9,strawmy01,1924,tier1_bbref,Automatic match via bbref_id to Myles Straw +9035,Nabil Crismatt,9,crismna01,436,tier1_bbref,Automatic match via bbref_id to Nabil Crismatt +9036,Nate Eaton,9,eatonna01,557,tier1_bbref,Automatic match via bbref_id to Nate Eaton +9037,Nathan Eovaldi,9,eovalna01,576,tier1_bbref,Automatic match via bbref_id to Nathan Eovaldi +9038,Nathaniel Lowe,9,lowena01,1155,tier1_bbref,Automatic match via bbref_id to Nathaniel Lowe +9039,Nelson Cruz,9,cruzne02,447,tier1_bbref,Automatic match via bbref_id to Nelson Cruz +9040,Nelson Velazquez,9,velazne01,2068,tier1_bbref,Automatic match via bbref_id to Nelson Velazquez +9041,Nestor Cortes Jr,9,cortene01,421,tier1_bbref,Automatic match via bbref_id to Nestor Cortes Jr +9042,Nicholas Castellanos,9,casteni01,340,tier1_bbref,Automatic match via bbref_id to Nicholas Castellanos +9043,Nick Allen,9,allenni02,46,tier1_bbref,Automatic match via bbref_id to Nick Allen +9044,Nick Fortes,9,forteni01,637,tier1_bbref,Automatic match via bbref_id to Nick Fortes +9045,Nick Gordon,9,gordoni01,752,tier1_bbref,Automatic match via bbref_id to Nick Gordon +9046,Nick Lodolo,9,lodolni01,1135,tier1_bbref,Automatic match via bbref_id to Nick Lodolo +9047,Nick Madrigal,9,madrini01,1178,tier1_bbref,Automatic match via bbref_id to Nick Madrigal +9048,Nick Martinez,9,martini01,1224,tier1_bbref,Automatic match via bbref_id to Nick Martinez +9049,Nick Maton,9,matonni01,1239,tier1_bbref,Automatic match via bbref_id to Nick Maton +9050,Nick Nelson,9,nelsoni01,1410,tier1_bbref,Automatic match via bbref_id to Nick Nelson +9051,Nick Pivetta,9,pivetni01,1564,tier1_bbref,Automatic match via bbref_id to Nick Pivetta +9052,Nick Pratto,9,prattni01,1583,tier1_bbref,Automatic match via bbref_id to Nick Pratto +9053,Nick Sandlin,9,sandlni01,1752,tier1_bbref,Automatic match via bbref_id to Nick Sandlin +9054,Nick Senzel,9,senzeni01,1802,tier1_bbref,Automatic match via bbref_id to Nick Senzel +9055,Nick Solak,9,solakni01,1867,tier1_bbref,Automatic match via bbref_id to Nick Solak +9056,Nick Vespi,9,vespini01,2073,tier1_bbref,Automatic match via bbref_id to Nick Vespi +9057,Nick Wittgren,9,wittgni01,2185,tier1_bbref,Automatic match via bbref_id to Nick Wittgren +9058,Nicky Lopez,9,lopezni01,1149,tier1_bbref,Automatic match via bbref_id to Nicky Lopez +9059,Nico Hoerner,9,hoernni01,909,tier1_bbref,Automatic match via bbref_id to Nico Hoerner +9060,Noah Syndergaard,9,syndeno01,1953,tier1_bbref,Automatic match via bbref_id to Noah Syndergaard +9061,Noe Ramirez,9,ramirno01,1606,tier1_bbref,Automatic match via bbref_id to Noe Ramirez +9062,Nolan Arenado,9,arenano01,88,tier1_bbref,Automatic match via bbref_id to Nolan Arenado +9063,Nolan Gorman,9,gormano01,755,tier1_bbref,Automatic match via bbref_id to Nolan Gorman +9104,Ralph Garza,9,garzara01,704,tier1_bbref,Automatic match via bbref_id to Ralph Garza +9064,Nolan Jones,9,jonesno01,994,tier1_bbref,Automatic match via bbref_id to Nolan Jones +9065,Nomar Mazara,9,mazarno01,1254,tier1_bbref,Automatic match via bbref_id to Nomar Mazara +9066,Odubel Herrera,9,herreod01,882,tier1_bbref,Automatic match via bbref_id to Odubel Herrera +9067,Oliver Ortega,9,ortegol01,1466,tier1_bbref,Automatic match via bbref_id to Oliver Ortega +9068,Omar Narvaez,9,narvaom01,1401,tier1_bbref,Automatic match via bbref_id to Omar Narvaez +9069,Oneil Cruz,9,cruzon01,449,tier1_bbref,Automatic match via bbref_id to Oneil Cruz +9070,Orlando Arcia,9,arciaor01,86,tier1_bbref,Automatic match via bbref_id to Orlando Arcia +9071,Oscar Gonzalez,9,gonzaos01,744,tier1_bbref,Automatic match via bbref_id to Oscar Gonzalez +9072,Oscar Mercado,9,mercaos01,1306,tier1_bbref,Automatic match via bbref_id to Oscar Mercado +9073,Oswald Peraza,9,perazos02,1528,tier1_bbref,Automatic match via bbref_id to Oswald Peraza +9074,Oswaldo Cabrera,9,cabreos01,303,tier1_bbref,Automatic match via bbref_id to Oswaldo Cabrera +9075,Owen Miller,9,milleow01,1327,tier1_bbref,Automatic match via bbref_id to Owen Miller +9076,Ozzie Albies,9,albieoz01,31,tier1_bbref,Automatic match via bbref_id to Ozzie Albies +9077,Pablo Lopez,9,lopezpa01,1146,tier1_bbref,Automatic match via bbref_id to Pablo Lopez +9078,Packy Naughton,9,naughpa01,1403,tier1_bbref,Automatic match via bbref_id to Packy Naughton +9079,Paolo Espino,9,espinpa01,583,tier1_bbref,Automatic match via bbref_id to Paolo Espino +9080,Patrick Corbin,9,corbipa01,416,tier1_bbref,Automatic match via bbref_id to Patrick Corbin +9081,Patrick Mazeika,9,mazeipa01,1255,tier1_bbref,Automatic match via bbref_id to Patrick Mazeika +9082,Patrick Sandoval,9,sandopa02,1754,tier1_bbref,Automatic match via bbref_id to Patrick Sandoval +9083,Patrick Wisdom,9,wisdopa01,2181,tier1_bbref,Automatic match via bbref_id to Patrick Wisdom +9084,Paul Blackburn,9,blackpa01,204,tier1_bbref,Automatic match via bbref_id to Paul Blackburn +9085,Paul DeJong,9,dejonpa01,485,tier1_bbref,Automatic match via bbref_id to Paul DeJong +9086,Paul Goldschmidt,9,goldspa01,729,tier1_bbref,Automatic match via bbref_id to Paul Goldschmidt +9087,Paul Sewald,9,sewalpa01,1806,tier1_bbref,Automatic match via bbref_id to Paul Sewald +9088,Pavin Smith,9,smithpa04,1851,tier1_bbref,Automatic match via bbref_id to Pavin Smith +9089,Penn Murfee,9,murfepe01,1386,tier1_bbref,Automatic match via bbref_id to Penn Murfee +9090,Pete Alonso,9,alonspe01,53,tier1_bbref,Automatic match via bbref_id to Pete Alonso +9091,Pete Fairbanks,9,fairbpe01,592,tier1_bbref,Automatic match via bbref_id to Pete Fairbanks +9092,Peter Strzelecki,9,strzepe01,1930,tier1_bbref,Automatic match via bbref_id to Peter Strzelecki +9093,Peyton Burdick,9,burdipe01,282,tier1_bbref,Automatic match via bbref_id to Peyton Burdick +9094,Phil Bickford,9,bickfph01,191,tier1_bbref,Automatic match via bbref_id to Phil Bickford +9095,Phil Gosselin,9,gosseph01,757,tier1_bbref,Automatic match via bbref_id to Phil Gosselin +9096,Phil Maton,9,matonph01,1238,tier1_bbref,Automatic match via bbref_id to Phil Maton +9097,Pierce Johnson,9,johnspi01,985,tier1_bbref,Automatic match via bbref_id to Pierce Johnson +9098,PJ Higgins,9,higgipj01,896,tier1_bbref,Automatic match via bbref_id to PJ Higgins +9099,Rafael Devers,9,deverra01,499,tier1_bbref,Automatic match via bbref_id to Rafael Devers +9100,Rafael Montero,9,montera01,1352,tier1_bbref,Automatic match via bbref_id to Rafael Montero +9101,Rafael Ortega,9,ortegra01,1465,tier1_bbref,Automatic match via bbref_id to Rafael Ortega +9105,Ramon Laureano,9,laurera01,1097,tier1_bbref,Automatic match via bbref_id to Ramon Laureano +9106,Ramon Urias,9,uriasra01,2037,tier1_bbref,Automatic match via bbref_id to Ramon Urias +9107,Randal Grichuk,9,grichra01,775,tier1_bbref,Automatic match via bbref_id to Randal Grichuk +9108,Randy Arozarena,9,arozara01,92,tier1_bbref,Automatic match via bbref_id to Randy Arozarena +9109,Ranger Suarez,9,suarera01,1936,tier1_bbref,Automatic match via bbref_id to Ranger Suarez +9110,Reese McGuire,9,mcguire01,1277,tier1_bbref,Automatic match via bbref_id to Reese McGuire +9111,Reid Detmers,9,detmere01,496,tier1_bbref,Automatic match via bbref_id to Reid Detmers +9112,Reiver Sanmartin,9,sanmare01,1756,tier1_bbref,Automatic match via bbref_id to Reiver Sanmartin +9113,Rene Pinto,9,pintore02,1561,tier1_bbref,Automatic match via bbref_id to Rene Pinto +9114,Reyes Moronta,9,moronre01,1371,tier1_bbref,Automatic match via bbref_id to Reyes Moronta +9115,Reynaldo Lopez,9,lopezre01,1145,tier1_bbref,Automatic match via bbref_id to Reynaldo Lopez +9116,Rhys Hoskins,9,hoskirh01,925,tier1_bbref,Automatic match via bbref_id to Rhys Hoskins +9117,Rich Hill,9,hillri01,898,tier1_bbref,Automatic match via bbref_id to Rich Hill +9118,Richard Bleier,9,bleieri01,212,tier1_bbref,Automatic match via bbref_id to Richard Bleier +9119,Richie Palacios,9,palacri01,1488,tier1_bbref,Automatic match via bbref_id to Richie Palacios +9120,Riley Adams,9,adamsri03,17,tier1_bbref,Automatic match via bbref_id to Riley Adams +9121,Riley Greene,9,greenri03,771,tier1_bbref,Automatic match via bbref_id to Riley Greene +9122,Roansy Contreras,9,contrro01,412,tier1_bbref,Automatic match via bbref_id to Roansy Contreras +9123,Rob Refsnyder,9,refsnro01,1626,tier1_bbref,Automatic match via bbref_id to Rob Refsnyder +9124,Robbie Grossman,9,grossro01,779,tier1_bbref,Automatic match via bbref_id to Robbie Grossman +9125,Robbie Ray,9,rayro02,1620,tier1_bbref,Automatic match via bbref_id to Robbie Ray +9126,Robert Stephenson,9,stephro01,1904,tier1_bbref,Automatic match via bbref_id to Robert Stephenson +9127,Robert Suarez,9,suarero01,1938,tier1_bbref,Automatic match via bbref_id to Robert Suarez +9128,Roberto Perez,9,perezro02,1538,tier1_bbref,Automatic match via bbref_id to Roberto Perez +9129,Robinson Cano,9,canoro01,319,tier1_bbref,Automatic match via bbref_id to Robinson Cano +9130,Robinson Chirinos,9,chiriro01,373,tier1_bbref,Automatic match via bbref_id to Robinson Chirinos +9131,Rodolfo Castro,9,castrro01,353,tier1_bbref,Automatic match via bbref_id to Rodolfo Castro +9132,Roman Quinn,9,quinnro01,1595,tier1_bbref,Automatic match via bbref_id to Roman Quinn +9133,Romy Gonzalez,9,gonzaro01,745,tier1_bbref,Automatic match via bbref_id to Romy Gonzalez +9134,Ron Marinaccio,9,marinro01,1199,tier1_bbref,Automatic match via bbref_id to Ron Marinaccio +9135,Ronald Acuna Jr,9,acunaro01,12,tier1_bbref,Automatic match via bbref_id to Ronald Acuna Jr +9136,Rony Garcia,9,garciro03,689,tier1_bbref,Automatic match via bbref_id to Rony Garcia +9137,Ross Detwiler,9,detwiro01,497,tier1_bbref,Automatic match via bbref_id to Ross Detwiler +9138,Ross Stripling,9,stripro01,1927,tier1_bbref,Automatic match via bbref_id to Ross Stripling +9139,Rougned Odor,9,odorro01,1451,tier1_bbref,Automatic match via bbref_id to Rougned Odor +9140,Rowan Wick,9,wickro01,2147,tier1_bbref,Automatic match via bbref_id to Rowan Wick +9141,Rowdy Tellez,9,tellero01,1972,tier1_bbref,Automatic match via bbref_id to Rowdy Tellez +9142,Ryan Borucki,9,borucry01,222,tier1_bbref,Automatic match via bbref_id to Ryan Borucki +9143,Ryan Brasier,9,brasiry01,242,tier1_bbref,Automatic match via bbref_id to Ryan Brasier +9144,Ryan Feltner,9,feltnry01,603,tier1_bbref,Automatic match via bbref_id to Ryan Feltner +9145,Ryan Helsley,9,helslry01,853,tier1_bbref,Automatic match via bbref_id to Ryan Helsley +9146,Ryan Jeffers,9,jeffery01,975,tier1_bbref,Automatic match via bbref_id to Ryan Jeffers +9147,Ryan Kreidler,9,kreidry01,1076,tier1_bbref,Automatic match via bbref_id to Ryan Kreidler +9148,Ryan McKenna,9,mckenry01,1281,tier1_bbref,Automatic match via bbref_id to Ryan McKenna +9149,Ryan McMahon,9,mcmahry01,1286,tier1_bbref,Automatic match via bbref_id to Ryan McMahon +9150,Ryan Mountcastle,9,mountry01,1377,tier1_bbref,Automatic match via bbref_id to Ryan Mountcastle +9151,Ryan OHearn,9,ohearry01,1453,tier1_bbref,Automatic match via bbref_id to Ryan OHearn +9152,Ryan Pepiot,9,pepiory01,1521,tier1_bbref,Automatic match via bbref_id to Ryan Pepiot +9153,Ryan Pressly,9,pressry01,1584,tier1_bbref,Automatic match via bbref_id to Ryan Pressly +9154,Ryan Tepera,9,teperry01,1974,tier1_bbref,Automatic match via bbref_id to Ryan Tepera +9155,Ryan Thompson,9,thompry02,1983,tier1_bbref,Automatic match via bbref_id to Ryan Thompson +9156,Ryan Yarbrough,9,yarbrry01,2208,tier1_bbref,Automatic match via bbref_id to Ryan Yarbrough +9157,Ryne Stanek,9,stanery01,1892,tier1_bbref,Automatic match via bbref_id to Ryne Stanek +9158,Salvador Perez,9,perezsa02,1534,tier1_bbref,Automatic match via bbref_id to Salvador Perez +9159,Sam Haggerty,9,haggesa01,803,tier1_bbref,Automatic match via bbref_id to Sam Haggerty +9160,Sam Hentges,9,hentgsa01,861,tier1_bbref,Automatic match via bbref_id to Sam Hentges +9161,Sam Hilliard,9,hillisa01,903,tier1_bbref,Automatic match via bbref_id to Sam Hilliard +9162,Sam Huff,9,huffsa01,936,tier1_bbref,Automatic match via bbref_id to Sam Huff +9163,Sam Long,9,longsa01,1139,tier1_bbref,Automatic match via bbref_id to Sam Long +9164,Sam Moll,9,mollsa01,1346,tier1_bbref,Automatic match via bbref_id to Sam Moll +9165,Sandy Alcantara,9,alcansa01,35,tier1_bbref,Automatic match via bbref_id to Sandy Alcantara +9166,Sandy Leon,9,leonsa01,1115,tier1_bbref,Automatic match via bbref_id to Sandy Leon +9167,Santiago Espinal,9,espinsa01,582,tier1_bbref,Automatic match via bbref_id to Santiago Espinal +9168,Scott Barlow,9,barlosc01,128,tier1_bbref,Automatic match via bbref_id to Scott Barlow +9169,Scott Effross,9,effrosc01,561,tier1_bbref,Automatic match via bbref_id to Scott Effross +9170,Sean Bouchard,9,bouchse01,225,tier1_bbref,Automatic match via bbref_id to Sean Bouchard +9171,Sean Hjelle,9,hjellse01,906,tier1_bbref,Automatic match via bbref_id to Sean Hjelle +9172,Sean Manaea,9,manaese01,1189,tier1_bbref,Automatic match via bbref_id to Sean Manaea +9173,Sean Murphy,9,murphse01,1390,tier1_bbref,Automatic match via bbref_id to Sean Murphy +9174,Sean Poppen,9,poppese01,1576,tier1_bbref,Automatic match via bbref_id to Sean Poppen +9175,Seby Zavala,9,zavalse01,2223,tier1_bbref,Automatic match via bbref_id to Seby Zavala +9176,Seiya Suzuki,9,suzukse01,1946,tier1_bbref,Automatic match via bbref_id to Seiya Suzuki +9177,Seranthony Dominguez,9,dominse01,524,tier1_bbref,Automatic match via bbref_id to Seranthony Dominguez +9178,Sergio Alcantara,9,alcanse01,34,tier1_bbref,Automatic match via bbref_id to Sergio Alcantara +9179,Seth Beer,9,beerse01,166,tier1_bbref,Automatic match via bbref_id to Seth Beer +9180,Seth Brown,9,brownse01,265,tier1_bbref,Automatic match via bbref_id to Seth Brown +9181,Seth Lugo,9,lugose01,1165,tier1_bbref,Automatic match via bbref_id to Seth Lugo +9182,Seth Martinez,9,martise01,1226,tier1_bbref,Automatic match via bbref_id to Seth Martinez +9183,Shane Baz,9,bazsh01,155,tier1_bbref,Automatic match via bbref_id to Shane Baz +9184,Shane Bieber,9,biebesh01,194,tier1_bbref,Automatic match via bbref_id to Shane Bieber +9185,Shane McClanahan,9,mcclash01,1268,tier1_bbref,Automatic match via bbref_id to Shane McClanahan +9186,Shawn Armstrong,9,armstsh01,91,tier1_bbref,Automatic match via bbref_id to Shawn Armstrong +9187,Shea Langeliers,9,langesh01,1092,tier1_bbref,Automatic match via bbref_id to Shea Langeliers +9188,Sheldon Neuse,9,neusesh01,1415,tier1_bbref,Automatic match via bbref_id to Sheldon Neuse +9189,Shohei Ohtani,9,ohtansh01,1455,tier1_bbref,Automatic match via bbref_id to Shohei Ohtani +9190,Skye Bolt,9,boltsk01,218,tier1_bbref,Automatic match via bbref_id to Skye Bolt +9191,Sonny Gray,9,grayso01,765,tier1_bbref,Automatic match via bbref_id to Sonny Gray +9192,Spencer Howard,9,howarsp01,930,tier1_bbref,Automatic match via bbref_id to Spencer Howard +9193,Spencer Steer,9,steersp01,1900,tier1_bbref,Automatic match via bbref_id to Spencer Steer +9194,Spencer Strider,9,stridsp01,1926,tier1_bbref,Automatic match via bbref_id to Spencer Strider +9195,Spencer Torkelson,9,torkesp01,2000,tier1_bbref,Automatic match via bbref_id to Spencer Torkelson +9196,Spenser Watkins,9,watkisp01,2121,tier1_bbref,Automatic match via bbref_id to Spenser Watkins +9197,Starling Marte,9,martest01,1208,tier1_bbref,Automatic match via bbref_id to Starling Marte +9198,Stephen Piscotty,9,piscost01,1563,tier1_bbref,Automatic match via bbref_id to Stephen Piscotty +9199,Stephen Vogt,9,vogtst01,2086,tier1_bbref,Automatic match via bbref_id to Stephen Vogt +9200,Steve Cishek,9,cishest01,381,tier1_bbref,Automatic match via bbref_id to Steve Cishek +9201,Steven Duggar,9,duggast01,543,tier1_bbref,Automatic match via bbref_id to Steven Duggar +9202,Steven Kwan,9,kwanst01,1080,tier1_bbref,Automatic match via bbref_id to Steven Kwan +9203,Steven Matz,9,matzst01,1243,tier1_bbref,Automatic match via bbref_id to Steven Matz +9204,Steven Okert,9,okertst01,1456,tier1_bbref,Automatic match via bbref_id to Steven Okert +9205,Steven Wilson,9,wilsost02,2169,tier1_bbref,Automatic match via bbref_id to Steven Wilson +9206,Stone Garrett,9,garrest01,699,tier1_bbref,Automatic match via bbref_id to Stone Garrett +9207,Stuart Fairchild,9,faircst01,593,tier1_bbref,Automatic match via bbref_id to Stuart Fairchild +9208,Taijuan Walker,9,walketa01,2105,tier1_bbref,Automatic match via bbref_id to Taijuan Walker +9209,Tanner Banks,9,banksta01,122,tier1_bbref,Automatic match via bbref_id to Tanner Banks +9210,Tanner Houck,9,houckta01,927,tier1_bbref,Automatic match via bbref_id to Tanner Houck +9211,Tanner Rainey,9,raineta01,1599,tier1_bbref,Automatic match via bbref_id to Tanner Rainey +9212,Tanner Scott,9,scottta01,1788,tier1_bbref,Automatic match via bbref_id to Tanner Scott +9213,Tarik Skubal,9,skubata01,1836,tier1_bbref,Automatic match via bbref_id to Tarik Skubal +9214,Taylor Clarke,9,clarkta01,384,tier1_bbref,Automatic match via bbref_id to Taylor Clarke +9215,Taylor Hearn,9,hearnta01,844,tier1_bbref,Automatic match via bbref_id to Taylor Hearn +9216,Taylor Rogers,9,rogerta01,1689,tier1_bbref,Automatic match via bbref_id to Taylor Rogers +9217,Taylor Trammell,9,trammta01,2008,tier1_bbref,Automatic match via bbref_id to Taylor Trammell +9218,Taylor Walls,9,wallsta01,2110,tier1_bbref,Automatic match via bbref_id to Taylor Walls +9219,Taylor Ward,9,wardta01,2116,tier1_bbref,Automatic match via bbref_id to Taylor Ward +9220,Teoscar Hernandez,9,hernate01,873,tier1_bbref,Automatic match via bbref_id to Teoscar Hernandez +9221,Terrin Vavra,9,vavrate01,2062,tier1_bbref,Automatic match via bbref_id to Terrin Vavra +9222,Thairo Estrada,9,estrath01,587,tier1_bbref,Automatic match via bbref_id to Thairo Estrada +9223,Tim Anderson,9,anderti01,73,tier1_bbref,Automatic match via bbref_id to Tim Anderson +9224,Tim Hill,9,hillti01,900,tier1_bbref,Automatic match via bbref_id to Tim Hill +9225,Tim Locastro,9,locasti01,1133,tier1_bbref,Automatic match via bbref_id to Tim Locastro +9226,Tim Mayza,9,mayzati01,1253,tier1_bbref,Automatic match via bbref_id to Tim Mayza +9227,TJ Friedl,9,friedtj01,660,tier1_bbref,Automatic match via bbref_id to TJ Friedl +9228,TJ McFarland,9,mcfartj01,1273,tier1_bbref,Automatic match via bbref_id to TJ McFarland +9229,Tomas Nido,9,nidoto01,1424,tier1_bbref,Automatic match via bbref_id to Tomas Nido +9230,Tommy Edman,9,edmanto01,558,tier1_bbref,Automatic match via bbref_id to Tommy Edman +9231,Tommy Henry,9,henryto01,859,tier1_bbref,Automatic match via bbref_id to Tommy Henry +9232,Tommy La Stella,9,lasteto01,1082,tier1_bbref,Automatic match via bbref_id to Tommy La Stella +9233,Tommy Nance,9,nanceto01,1398,tier1_bbref,Automatic match via bbref_id to Tommy Nance +9234,Tommy Pham,9,phamth01,1552,tier1_bbref,Automatic match via bbref_id to Tommy Pham +9235,Tony Gonsolin,9,gonsoto01,734,tier1_bbref,Automatic match via bbref_id to Tony Gonsolin +9236,Tony Kemp,9,kempto01,1027,tier1_bbref,Automatic match via bbref_id to Tony Kemp +9237,Travis dArnaud,9,darnatr01,461,tier1_bbref,Automatic match via bbref_id to Travis dArnaud +9238,Travis Demeritte,9,demertr01,491,tier1_bbref,Automatic match via bbref_id to Travis Demeritte +9239,Trayce Thompson,9,thomptr01,1980,tier1_bbref,Automatic match via bbref_id to Trayce Thompson +9240,Trea Turner,9,turnetr01,1,tier1_bbref,Automatic match via bbref_id to Trea Turner +9241,Trent Grisham,9,grishtr01,776,tier1_bbref,Automatic match via bbref_id to Trent Grisham +9242,Trent Thornton,9,thorntr01,1988,tier1_bbref,Automatic match via bbref_id to Trent Thornton +9243,Trevor Gott,9,gotttr01,758,tier1_bbref,Automatic match via bbref_id to Trevor Gott +9244,Trevor Larnach,9,larnatr01,1094,tier1_bbref,Automatic match via bbref_id to Trevor Larnach +9245,Trevor May,9,maytr01,1248,tier1_bbref,Automatic match via bbref_id to Trevor May +9246,Trevor Megill,9,megiltr01,1294,tier1_bbref,Automatic match via bbref_id to Trevor Megill +9247,Trevor Richards,9,richatr01,1646,tier1_bbref,Automatic match via bbref_id to Trevor Richards +9248,Trevor Rogers,9,rogertr01,1693,tier1_bbref,Automatic match via bbref_id to Trevor Rogers +9249,Trevor Stephan,9,stephtr01,1902,tier1_bbref,Automatic match via bbref_id to Trevor Stephan +9250,Trevor Story,9,storytr01,1914,tier1_bbref,Automatic match via bbref_id to Trevor Story +9251,Trevor Williams,9,willitr01,2156,tier1_bbref,Automatic match via bbref_id to Trevor Williams +9252,Trey Mancini,9,mancitr01,1190,tier1_bbref,Automatic match via bbref_id to Trey Mancini +9253,Triston Casas,9,casastr01,335,tier1_bbref,Automatic match via bbref_id to Triston Casas +9254,Triston McKenzie,9,mckentr01,1282,tier1_bbref,Automatic match via bbref_id to Triston McKenzie +9255,Tucker Barnhart,9,barnhtu01,135,tier1_bbref,Automatic match via bbref_id to Tucker Barnhart +9256,Tucker Davidson,9,davidtu01,464,tier1_bbref,Automatic match via bbref_id to Tucker Davidson +9257,Tucupita Marcano,9,marcatu01,1196,tier1_bbref,Automatic match via bbref_id to Tucupita Marcano +9258,Ty Blach,9,blachty01,202,tier1_bbref,Automatic match via bbref_id to Ty Blach +9259,Ty France,9,francty01,642,tier1_bbref,Automatic match via bbref_id to Ty France +9260,Tyler Alexander,9,alexaty01,37,tier1_bbref,Automatic match via bbref_id to Tyler Alexander +9261,Tyler Anderson,9,anderty01,68,tier1_bbref,Automatic match via bbref_id to Tyler Anderson +9262,Tyler Beede,9,beedety01,164,tier1_bbref,Automatic match via bbref_id to Tyler Beede +9263,Tyler Danish,9,danisty01,460,tier1_bbref,Automatic match via bbref_id to Tyler Danish +9264,Tyler Duffey,9,duffety01,540,tier1_bbref,Automatic match via bbref_id to Tyler Duffey +9265,Tyler Freeman,9,freemty01,654,tier1_bbref,Automatic match via bbref_id to Tyler Freeman +9266,Tyler Gilbert,9,gilbety01,717,tier1_bbref,Automatic match via bbref_id to Tyler Gilbert +9267,Tyler Heineman,9,heinety01,851,tier1_bbref,Automatic match via bbref_id to Tyler Heineman +9268,Tyler Kinley,9,kinlety01,1050,tier1_bbref,Automatic match via bbref_id to Tyler Kinley +9269,Tyler Mahle,9,mahlety01,1183,tier1_bbref,Automatic match via bbref_id to Tyler Mahle +9270,Tyler Matzek,9,matzety01,1244,tier1_bbref,Automatic match via bbref_id to Tyler Matzek +9271,Tylor Megill,9,megilty01,1295,tier1_bbref,Automatic match via bbref_id to Tylor Megill +9272,Tyler Naquin,9,naquity01,1399,tier1_bbref,Automatic match via bbref_id to Tyler Naquin +9273,Tyler Nevin,9,nevinty01,1417,tier1_bbref,Automatic match via bbref_id to Tyler Nevin +9274,Tyler ONeill,9,oneilty01,1463,tier1_bbref,Automatic match via bbref_id to Tyler ONeill +9275,Tyler Rogers,9,rogerty01,1691,tier1_bbref,Automatic match via bbref_id to Tyler Rogers +9276,Tyler Stephenson,9,stephty01,1905,tier1_bbref,Automatic match via bbref_id to Tyler Stephenson +9277,Tyler Wade,9,wadety01,2094,tier1_bbref,Automatic match via bbref_id to Tyler Wade +9278,Tyler Wells,9,wellsty01,2132,tier1_bbref,Automatic match via bbref_id to Tyler Wells +9279,Tyrone Taylor,9,tayloty01,1965,tier1_bbref,Automatic match via bbref_id to Tyrone Taylor +9280,Vaughn Grissom,9,grissva01,777,tier1_bbref,Automatic match via bbref_id to Vaughn Grissom +9281,Victor Arano,9,aranovi01,83,tier1_bbref,Automatic match via bbref_id to Victor Arano +9282,Victor Caratini,9,caratvi01,325,tier1_bbref,Automatic match via bbref_id to Victor Caratini +9283,Victor Reyes,9,reyesvi01,1638,tier1_bbref,Automatic match via bbref_id to Victor Reyes +9284,Victor Robles,9,roblevi01,1666,tier1_bbref,Automatic match via bbref_id to Victor Robles +9285,Vidal Brujan,9,brujavi01,272,tier1_bbref,Automatic match via bbref_id to Vidal Brujan +9286,Vimael Machin,9,machivi01,1177,tier1_bbref,Automatic match via bbref_id to Vimael Machin +9287,Vince Velasquez,9,velasvi01,2065,tier1_bbref,Automatic match via bbref_id to Vince Velasquez +9288,Vinnie Pasquantino,9,pasquvi01,1503,tier1_bbref,Automatic match via bbref_id to Vinnie Pasquantino +9289,Vladimir Guerrero Jr,9,guerrvl02,789,tier1_bbref,Automatic match via bbref_id to Vladimir Guerrero Jr +9290,Vladimir Gutierrez,9,gutievl01,797,tier1_bbref,Automatic match via bbref_id to Vladimir Gutierrez +9291,Wade Miley,9,mileywa01,1318,tier1_bbref,Automatic match via bbref_id to Wade Miley +9292,Walker Buehler,9,buehlwa01,277,tier1_bbref,Automatic match via bbref_id to Walker Buehler +9293,Wander Franco,9,francwa01,646,tier1_bbref,Automatic match via bbref_id to Wander Franco +9294,Wandy Peralta,9,peralwa01,1524,tier1_bbref,Automatic match via bbref_id to Wandy Peralta +9295,Whit Merrifield,9,merriwh01,1309,tier1_bbref,Automatic match via bbref_id to Whit Merrifield +9296,Wil Crowe,9,crowewi01,446,tier1_bbref,Automatic match via bbref_id to Wil Crowe +9297,Wil Myers,9,myerswi01,1395,tier1_bbref,Automatic match via bbref_id to Wil Myers +9298,Will Benson,9,bensowi01,179,tier1_bbref,Automatic match via bbref_id to Will Benson +9299,Will Brennan,9,brennwi02,250,tier1_bbref,Automatic match via bbref_id to Will Brennan +9300,Will D Smith,9,smithwi05,1841,tier1_bbref,Automatic match via bbref_id to Will Smith +9301,Will Smith,9,smithwi04,1843,tier1_bbref,Automatic match via bbref_id to Will Smith +9302,Will Vest,9,vestwi01,2074,tier1_bbref,Automatic match via bbref_id to Will Vest +9303,Willi Castro,9,castrwi01,352,tier1_bbref,Automatic match via bbref_id to Willi Castro +9304,Willson Contreras,9,contrwi02,411,tier1_bbref,Automatic match via bbref_id to William Contreras +9305,William Contreras,9,contrwi01,410,tier1_bbref,Automatic match via bbref_id to Willson Contreras +9306,Willy Adames,9,adamewi01,14,tier1_bbref,Automatic match via bbref_id to Willy Adames +9307,Wilmer Flores,9,florewi01,627,tier1_bbref,Automatic match via bbref_id to Wilmer Flores +9308,Wily Peralta,9,peralwi01,1523,tier1_bbref,Automatic match via bbref_id to Wily Peralta +9309,Wyatt Mills,9,millswy01,1331,tier1_bbref,Automatic match via bbref_id to Wyatt Mills +9310,Xander Bogaerts,9,bogaexa01,216,tier1_bbref,Automatic match via bbref_id to Xander Bogaerts +9311,Yadiel Hernandez,9,hernaya01,875,tier1_bbref,Automatic match via bbref_id to Yadiel Hernandez +9312,Yadier Molina,9,molinya01,1344,tier1_bbref,Automatic match via bbref_id to Yadier Molina +9313,Yairo Munoz,9,munozya01,1383,tier1_bbref,Automatic match via bbref_id to Yairo Munoz +9314,Yan Gomes,9,gomesya01,731,tier1_bbref,Automatic match via bbref_id to Yan Gomes +9315,Yandy Diaz,9,diazya01,507,tier1_bbref,Automatic match via bbref_id to Yandy Diaz +9316,Yasmani Grandal,9,grandya01,761,tier1_bbref,Automatic match via bbref_id to Yasmani Grandal +9317,Yency Almonte,9,almonye01,50,tier1_bbref,Automatic match via bbref_id to Yency Almonte +9318,Yermin Mercedes,9,merceye01,1307,tier1_bbref,Automatic match via bbref_id to Yermin Mercedes +9319,Yerry De Los Santos,9,delosye01,481,tier1_bbref,Automatic match via bbref_id to Yerry De Los Santos +9320,Yimi Garcia,9,garciyi01,680,tier1_bbref,Automatic match via bbref_id to Yimi Garcia +9321,Yoan Moncada,9,moncayo01,1348,tier1_bbref,Automatic match via bbref_id to Yoan Moncada +9322,Yohan Ramirez,9,ramiryo01,1611,tier1_bbref,Automatic match via bbref_id to Yohan Ramirez +9323,Yonathan Daza,9,dazayo01,476,tier1_bbref,Automatic match via bbref_id to Yonathan Daza +9324,Yordan Alvarez,9,alvaryo01,61,tier1_bbref,Automatic match via bbref_id to Yordan Alvarez +9325,Yoshi Tsutsugo,9,tsutsyo01,2021,tier1_bbref,Automatic match via bbref_id to Yoshi Tsutsugo +9326,Yu Chang,9,changyu01,364,tier1_bbref,Automatic match via bbref_id to Yu Chang +9327,Yu Darvish,9,darviyu01,462,tier1_bbref,Automatic match via bbref_id to Yu Darvish +9328,Yuli Gurriel,9,gourryu01,793,tier1_bbref,Automatic match via bbref_id to Yuli Gurriel +9329,Yunior Marte,9,marteyu01,1211,tier1_bbref,Automatic match via bbref_id to Yunior Marte +9330,Yusei Kikuchi,9,kikucyu01,1040,tier1_bbref,Automatic match via bbref_id to Yusei Kikuchi +9331,Zac Gallen,9,galleza01,673,tier1_bbref,Automatic match via bbref_id to Zac Gallen +9332,Zach Davies,9,davieza02,465,tier1_bbref,Automatic match via bbref_id to Zach Davies +9333,Zach Eflin,9,eflinza01,562,tier1_bbref,Automatic match via bbref_id to Zach Eflin +9334,Zach Jackson,9,jacksza02,963,tier1_bbref,Automatic match via bbref_id to Zach Jackson +9335,Zach Logue,9,logueza01,1137,tier1_bbref,Automatic match via bbref_id to Zach Logue +9336,Zach McKinstry,9,mckinza01,1284,tier1_bbref,Automatic match via bbref_id to Zach McKinstry +9337,Zach Plesac,9,plesaza01,1566,tier1_bbref,Automatic match via bbref_id to Zach Plesac +9338,Zach Pop,9,popza01,1575,tier1_bbref,Automatic match via bbref_id to Zach Pop +9339,Zach Thompson,9,thompza01,1981,tier1_bbref,Automatic match via bbref_id to Zach Thompson +9340,Zack Collins,9,colliza01,403,tier1_bbref,Automatic match via bbref_id to Zack Collins +9341,Zack Greinke,9,greinza01,774,tier1_bbref,Automatic match via bbref_id to Zack Greinke +9342,Zack Littell,9,litteza01,1127,tier1_bbref,Automatic match via bbref_id to Zack Littell +9343,Zack Thompson,9,thompza02,1985,tier1_bbref,Automatic match via bbref_id to Zack Thompson +9344,Zack Wheeler,9,wheelza01,2139,tier1_bbref,Automatic match via bbref_id to Zack Wheeler +9345,Diego A Castillo,9,castidi02,341,tier1_bbref,Automatic match via bbref_id to Diego Castillo +9348,Aaron Hicks,10,hicksaa01,892,tier1_bbref,Automatic match via bbref_id to Aaron Hicks +9346,Aaron Bummer,10,bummeaa01,279,tier1_bbref,Automatic match via bbref_id to Aaron Bummer +9347,Aaron Civale,10,civalaa01,383,tier1_bbref,Automatic match via bbref_id to Aaron Civale +9349,Aaron Judge,10,judgeaa01,3,tier1_bbref,Automatic match via bbref_id to Aaron Judge +9350,Aaron Loup,10,HALP,1152,tier2_name,Automatic match via exact name to Aaron Loup +9351,Aaron Nola,10,nolaaa01,1433,tier1_bbref,Automatic match via bbref_id to Aaron Nola +9352,Abner Uribe,10,uribeab01,2040,tier1_bbref,Automatic match via bbref_id to Abner Uribe +9353,Adam Duvall,10,duvalad01,553,tier1_bbref,Automatic match via bbref_id to Adam Duvall +9354,Adam Frazier,10,fraziad01,648,tier1_bbref,Automatic match via bbref_id to Adam Frazier +9355,Adam Ottavino,10,ottavad01,1475,tier1_bbref,Automatic match via bbref_id to Adam Ottavino +9356,Adam Wainwright,10,HALP,2099,tier2_name,Automatic match via exact name to Adam Wainwright +9357,Adbert Alzolay,10,alzolad01,63,tier1_bbref,Automatic match via bbref_id to Adbert Alzolay +9358,Adley Rutschman,10,rutscad01,1729,tier1_bbref,Automatic match via bbref_id to Adley Rutschman +9359,Adolis Garcia,10,garciad02,690,tier1_bbref,Automatic match via bbref_id to Adolis Garcia +9360,Adrian Houser,10,housead01,928,tier1_bbref,Automatic match via bbref_id to Adrian Houser +9361,Adrian Martinez,10,HALP,1225,tier2_name,Automatic match via exact name to Adrian Martinez +9362,AJ Minter,10,minteaj01,1336,tier1_bbref,Automatic match via bbref_id to AJ Minter +9363,AJ Puk,10,pukaj01,1592,tier1_bbref,Automatic match via bbref_id to AJ Puk +9364,Akil Baddoo,10,baddoak01,109,tier1_bbref,Automatic match via bbref_id to Akil Baddoo +9365,Alan Trejo,10,trejoal01,2012,tier1_bbref,Automatic match via bbref_id to Alan Trejo +9366,Albert Abreu,10,HALP,9,tier2_name,Automatic match via exact name to Albert Abreu +9367,Alec Bohm,10,bohmal01,217,tier1_bbref,Automatic match via bbref_id to Alec Bohm +9368,Alec Burleson,10,burleal01,285,tier1_bbref,Automatic match via bbref_id to Alec Burleson +9369,Alec Marsh,10,marshal01,1206,tier1_bbref,Automatic match via bbref_id to Alec Marsh +9370,Aledmys Diaz,10,HALP,505,tier2_name,Automatic match via exact name to Aledmys Diaz +9371,Alejandro Kirk,10,kirkal01,1056,tier1_bbref,Automatic match via bbref_id to Alejandro Kirk +9372,Alek Manoah,10,manoaal01,1192,tier1_bbref,Automatic match via bbref_id to Alek Manoah +9373,Alek Thomas,10,thomaal01,1979,tier1_bbref,Automatic match via bbref_id to Alek Thomas +9374,Alex Bregman,10,bregmal01,248,tier1_bbref,Automatic match via bbref_id to Alex Bregman +9375,Alex Call,10,callal02,308,tier1_bbref,Automatic match via bbref_id to Alex Call +9376,Alex Cobb,10,HALP,394,tier2_name,Automatic match via exact name to Alex Cobb +9377,Alex Faedo,10,faedoal01,591,tier1_bbref,Automatic match via bbref_id to Alex Faedo +9378,Alex Kirilloff,10,kirilal01,1055,tier1_bbref,Automatic match via bbref_id to Alex Kirilloff +9379,Alex Lange,10,langeal01,1091,tier1_bbref,Automatic match via bbref_id to Alex Lange +9380,Alex Verdugo,10,verdual01,2069,tier1_bbref,Automatic match via bbref_id to Alex Verdugo +9381,Alex Vesia,10,vesiaal01,2072,tier1_bbref,Automatic match via bbref_id to Alex Vesia +9382,Alex Wood,10,woodal02,2193,tier1_bbref,Automatic match via bbref_id to Alex Wood +9383,Alex Young,10,HALP,2217,tier2_name,Automatic match via exact name to Alex Young +9384,Alexis Diaz,10,diazal03,509,tier1_bbref,Automatic match via bbref_id to Alexis Diaz +9385,Allan Winans,10,winanal01,2173,tier1_bbref,Automatic match via bbref_id to Allan Winans +9386,Amed Rosario,10,rosaram01,1711,tier1_bbref,Automatic match via bbref_id to Amed Rosario +9387,Andre Jackson,10,HALP,962,tier2_name,Automatic match via exact name to Andre Jackson +9388,Andre Pallante,10,pallaan01,1492,tier1_bbref,Automatic match via bbref_id to Andre Pallante +9389,Andres Gimenez,10,gimenan01,721,tier1_bbref,Automatic match via bbref_id to Andres Gimenez +9390,Andres Machado,10,HALP,1176,tier2_name,Automatic match via exact name to Andres Machado +9391,Andres Munoz,10,munozan01,1384,tier1_bbref,Automatic match via bbref_id to Andres Munoz +9392,Andrew Abbott,10,abbotan01,4,tier1_bbref,Automatic match via bbref_id to Andrew Abbott +9393,Andrew Benintendi,10,beninan01,177,tier1_bbref,Automatic match via bbref_id to Andrew Benintendi +9394,Andrew Chafin,10,chafian01,363,tier1_bbref,Automatic match via bbref_id to Andrew Chafin +9395,Andrew Heaney,10,heanean01,843,tier1_bbref,Automatic match via bbref_id to Andrew Heaney +9396,Andrew Knizner,10,kniznan01,1065,tier1_bbref,Automatic match via bbref_id to Andrew Knizner +9397,Andrew McCutchen,10,mccutan01,1272,tier1_bbref,Automatic match via bbref_id to Andrew McCutchen +9398,Andrew Nardi,10,nardian01,1400,tier1_bbref,Automatic match via bbref_id to Andrew Nardi +9400,Andrew Vaughn,10,vaughan01,2061,tier1_bbref,Automatic match via bbref_id to Andrew Vaughn +9401,Andrew Wantz,10,HALP,2115,tier2_name,Automatic match via exact name to Andrew Wantz +9402,Andruw Monasterio,10,monasan01,1347,tier1_bbref,Automatic match via bbref_id to Andruw Monasterio +9403,Andy Ibanez,10,ibanean01,948,tier1_bbref,Automatic match via bbref_id to Andy Ibanez +9404,Angel Perdomo,10,HALP,1530,tier2_name,Automatic match via exact name to Angel Perdomo +9405,Angel Zerpa,10,zerpaan01,2224,tier1_bbref,Automatic match via bbref_id to Angel Zerpa +9406,Anthony Bass,10,HALP,145,tier2_name,Automatic match via exact name to Anthony Bass +9407,Anthony DeSclafani,10,HALP,493,tier2_name,Automatic match via exact name to Anthony DeSclafani +9408,Anthony Rizzo,10,rizzoan01,1658,tier1_bbref,Automatic match via bbref_id to Anthony Rizzo +9409,Anthony Santander,10,santaan02,1764,tier1_bbref,Automatic match via bbref_id to Anthony Santander +9410,Anthony Volpe,10,volpean01,2088,tier1_bbref,Automatic match via bbref_id to Anthony Volpe +9411,Aroldis Chapman,10,chapmar01,366,tier1_bbref,Automatic match via bbref_id to Aroldis Chapman +9412,Austin Adams,10,adamsau02,16,tier1_bbref,Automatic match via bbref_id to Austin Adams +9413,Austin Barnes,10,barneau01,132,tier1_bbref,Automatic match via bbref_id to Austin Barnes +9414,Austin Cox,10,HALP,427,tier2_name,Automatic match via exact name to Austin Cox +9415,Austin Gomber,10,gombeau01,730,tier1_bbref,Automatic match via bbref_id to Austin Gomber +9416,Austin Hays,10,haysau01,839,tier1_bbref,Automatic match via bbref_id to Austin Hays +9417,Austin Pruitt,10,pruitau01,1588,tier1_bbref,Automatic match via bbref_id to Austin Pruitt +9418,Austin Riley,10,rileyau01,1649,tier1_bbref,Automatic match via bbref_id to Austin Riley +9419,Austin Slater,10,slateau01,1838,tier1_bbref,Automatic match via bbref_id to Austin Slater +9420,Austin Voth,10,vothau01,2091,tier1_bbref,Automatic match via bbref_id to Austin Voth +9421,Austin Wells,10,wellsau01,2131,tier1_bbref,Automatic match via bbref_id to Austin Wells +9422,Austin Wynns,10,HALP,2202,tier2_name,Automatic match via exact name to Austin Wynns +9423,Bailey Falter,10,falteba01,594,tier1_bbref,Automatic match via bbref_id to Bailey Falter +9424,Bailey Ober,10,oberba01,1447,tier1_bbref,Automatic match via bbref_id to Bailey Ober +9425,Beau Brieske,10,briesbe01,256,tier1_bbref,Automatic match via bbref_id to Beau Brieske +9426,Ben Lively,10,livelbe01,1130,tier1_bbref,Automatic match via bbref_id to Ben Lively +9427,Blake Sabol,10,sabolbl01,1735,tier1_bbref,Automatic match via bbref_id to Blake Sabol +9428,Blake Snell,10,snellbl01,1861,tier1_bbref,Automatic match via bbref_id to Blake Snell +9429,Bo Bichette,10,bichebo01,190,tier1_bbref,Automatic match via bbref_id to Bo Bichette +9430,Bo Naylor,10,naylobo01,1405,tier1_bbref,Automatic match via bbref_id to Bo Naylor +9431,Bobby Miller,10,millebo06,1326,tier1_bbref,Automatic match via bbref_id to Bobby Miller +9432,Bobby Witt Jr,10,wittbo02,2184,tier1_bbref,Automatic match via bbref_id to Bobby Witt Jr +9433,Brad Hand,10,HALP,816,tier2_name,Automatic match via exact name to Brad Hand +9434,Brad Keller,10,kellebr01,1016,tier1_bbref,Automatic match via bbref_id to Brad Keller +9435,Brady Singer,10,singebr01,1827,tier1_bbref,Automatic match via bbref_id to Brady Singer +9436,Brandon Belt,10,HALP,173,tier2_name,Automatic match via exact name to Brandon Belt +9437,Brandon Bielak,10,bielabr01,195,tier1_bbref,Automatic match via bbref_id to Brandon Bielak +9438,Brandon Crawford,10,crawfbr01,430,tier1_bbref,Automatic match via bbref_id to Brandon Crawford +9439,Brandon Dixon,10,HALP,520,tier2_name,Automatic match via exact name to Brandon Dixon +9440,Brandon Drury,10,drurybr01,535,tier1_bbref,Automatic match via bbref_id to Brandon Drury +9441,Brandon Lowe,10,lowebr01,1156,tier1_bbref,Automatic match via bbref_id to Brandon Lowe +9442,Brandon Marsh,10,marshbr02,1205,tier1_bbref,Automatic match via bbref_id to Brandon Marsh +9443,Brandon Nimmo,10,nimmobr01,1425,tier1_bbref,Automatic match via bbref_id to Brandon Nimmo +9444,Brandon Pfaadt,10,pfaadbr01,1551,tier1_bbref,Automatic match via bbref_id to Brandon Pfaadt +9445,Brandon Williamson,10,HALP,2164,tier2_name,Automatic match via exact name to Brandon Williamson +9446,Brandon Woodruff,10,HALP,2196,tier2_name,Automatic match via exact name to Brandon Woodruff +9447,Braxton Garrett,10,garrebr01,701,tier1_bbref,Automatic match via bbref_id to Braxton Garrett +9448,Brayan Bello,10,bellobr01,171,tier1_bbref,Automatic match via bbref_id to Brayan Bello +9449,Brendan Donovan,10,donovbr01,527,tier1_bbref,Automatic match via bbref_id to Brendan Donovan +9450,Brendan Rodgers,10,rodgebr02,1668,tier1_bbref,Automatic match via bbref_id to Brendan Rodgers +9451,Brendan White,10,HALP,2144,tier2_name,Automatic match via exact name to Brendan White +9452,Brennan Bernardino,10,bernabr01,181,tier1_bbref,Automatic match via bbref_id to Brennan Bernardino +9453,Brent Headrick,10,HALP,841,tier2_name,Automatic match via exact name to Brent Headrick +9454,Brent Rooker,10,rookebr01,1708,tier1_bbref,Automatic match via bbref_id to Brent Rooker +9455,Brent Suter,10,suterbr01,1943,tier1_bbref,Automatic match via bbref_id to Brent Suter +9456,Brenton Doyle,10,doylebr02,531,tier1_bbref,Automatic match via bbref_id to Brenton Doyle +9457,Brett Baty,10,batybr01,149,tier1_bbref,Automatic match via bbref_id to Brett Baty +9458,Brian Anderson,10,HALP,69,tier2_name,Automatic match via exact name to Brian Anderson +9459,Brice Turang,10,turanbr02,2026,tier1_bbref,Automatic match via bbref_id to Brice Turang +9460,Brock Burke,10,burkebr01,284,tier1_bbref,Automatic match via bbref_id to Brock Burke +9461,Brock Stewart,10,stewabr01,1908,tier1_bbref,Automatic match via bbref_id to Brock Stewart +9462,Brooks Raley,10,raleybr01,1601,tier1_bbref,Automatic match via bbref_id to Brooks Raley +9463,Brusdar Graterol,10,HALP,763,tier2_name,Automatic match via exact name to Brusdar Graterol +9464,Bryan Abreu,10,abreubr01,8,tier1_bbref,Automatic match via bbref_id to Bryan Abreu +9465,Bryan Baker,10,HALP,117,tier2_name,Automatic match via exact name to Bryan Baker +9466,Bryan De La Cruz,10,delacbr01,479,tier1_bbref,Automatic match via bbref_id to Bryan De La Cruz +9467,Bryan Hoeing,10,hoeinbr01,908,tier1_bbref,Automatic match via bbref_id to Bryan Hoeing +9468,Bryan Reynolds,10,reynobr01,1641,tier1_bbref,Automatic match via bbref_id to Bryan Reynolds +9469,Bryan Shaw,10,shawbr01,1808,tier1_bbref,Automatic match via bbref_id to Bryan Shaw +9470,Bryan Woo,10,woobr01,2191,tier1_bbref,Automatic match via bbref_id to Bryan Woo +9471,Bryce Elder,10,elderbr01,564,tier1_bbref,Automatic match via bbref_id to Bryce Elder +9472,Bryce Harper,10,harpebr03,823,tier1_bbref,Automatic match via bbref_id to Bryce Harper +9473,Bryce Miller,10,millebr04,1328,tier1_bbref,Automatic match via bbref_id to Bryce Miller +9474,Bryse Wilson,10,wilsobr02,2171,tier1_bbref,Automatic match via bbref_id to Bryse Wilson +9475,Bryson Stott,10,stottbr01,1915,tier1_bbref,Automatic match via bbref_id to Bryson Stott +9476,Buck Farmer,10,farmebu01,597,tier1_bbref,Automatic match via bbref_id to Buck Farmer +9477,Byron Buxton,10,buxtoby01,295,tier1_bbref,Automatic match via bbref_id to Byron Buxton +9478,Cade Marlowe,10,HALP,1202,tier2_name,Automatic match via exact name to Cade Marlowe +9479,Cal Quantrill,10,quantca01,1593,tier1_bbref,Automatic match via bbref_id to Cal Quantrill +9480,Cal Raleigh,10,raleica01,1600,tier1_bbref,Automatic match via bbref_id to Cal Raleigh +9481,Caleb Ferguson,10,ferguca01,605,tier1_bbref,Automatic match via bbref_id to Caleb Ferguson +9482,Caleb Thielbar,10,thielca01,1977,tier1_bbref,Automatic match via bbref_id to Caleb Thielbar +9483,Cam Gallagher,10,HALP,670,tier2_name,Automatic match via exact name to Cam Gallagher +9484,Camilo Doval,10,dovalca01,529,tier1_bbref,Automatic match via bbref_id to Camilo Doval +9485,Carl Edwards Jr,10,HALP,560,tier2_name,Automatic match via exact name to Carl Edwards Jr +9486,Carlos Carrasco,10,carraca01,331,tier1_bbref,Automatic match via bbref_id to Carlos Carrasco +9487,Carlos Correa,10,correca01,420,tier1_bbref,Automatic match via bbref_id to Carlos Correa +9488,Carlos Estevez,10,estevca01,585,tier1_bbref,Automatic match via bbref_id to Carlos Estevez +9489,Carlos Hernandez,10,hernaca04,880,tier1_bbref,Automatic match via bbref_id to Carlos Hernandez +9490,Carlos Perez,10,HALP,1537,tier2_name,Automatic match via exact name to Carlos Perez +9491,Carlos Rodon,10,rodonca01,1670,tier1_bbref,Automatic match via bbref_id to Carlos Rodon +9492,Carlos Santana,10,santaca01,1759,tier1_bbref,Automatic match via bbref_id to Carlos Santana +9493,Carmen Mlodzinski,10,mlodzca01,1343,tier1_bbref,Automatic match via bbref_id to Carmen Mlodzinski +9494,Carson Kelly,10,kellyca02,1023,tier1_bbref,Automatic match via bbref_id to Carson Kelly +9495,Casey Schmitt,10,schmica01,1775,tier1_bbref,Automatic match via bbref_id to Casey Schmitt +9496,Cavan Biggio,10,biggica01,196,tier1_bbref,Automatic match via bbref_id to Cavan Biggio +9497,Ceddanne Rafaela,10,rafaece01,1597,tier1_bbref,Automatic match via bbref_id to Ceddanne Rafaela +9498,Cedric Mullins,10,mullice01,1381,tier1_bbref,Automatic match via bbref_id to Cedric Mullins +9499,Chad Kuhl,10,HALP,1078,tier2_name,Automatic match via exact name to Chad Kuhl +9500,Chad Wallach,10,HALP,2108,tier2_name,Automatic match via exact name to Chad Wallach +9501,Charlie Blackmon,10,blackch02,205,tier1_bbref,Automatic match via bbref_id to Charlie Blackmon +9502,Charlie Morton,10,mortoch02,1375,tier1_bbref,Automatic match via bbref_id to Charlie Morton +9503,Chas McCormick,10,mccorch01,1269,tier1_bbref,Automatic match via bbref_id to Chas McCormick +9504,Chase Anderson,10,anderch01,67,tier1_bbref,Automatic match via bbref_id to Chase Anderson +9505,Chase Silseth,10,silsech01,1824,tier1_bbref,Automatic match via bbref_id to Chase Silseth +9506,Chris Bassitt,10,bassich01,146,tier1_bbref,Automatic match via bbref_id to Chris Bassitt +9507,Chris Flexen,10,flexech01,626,tier1_bbref,Automatic match via bbref_id to Chris Flexen +9508,Chris Martin,10,martich02,1214,tier1_bbref,Automatic match via bbref_id to Chris Martin +9509,Chris Murphy,10,HALP,1391,tier2_name,Automatic match via exact name to Chris Murphy +9510,Chris Sale,10,salech01,1739,tier1_bbref,Automatic match via bbref_id to Chris Sale +9511,Chris Stratton,10,stratch01,1922,tier1_bbref,Automatic match via bbref_id to Chris Stratton +9512,Chris Taylor,10,tayloch03,1964,tier1_bbref,Automatic match via bbref_id to Chris Taylor +9513,Christian Bethancourt,10,bethach01,185,tier1_bbref,Automatic match via bbref_id to Christian Bethancourt +9514,Christian Encarnacion Strand,10,HALP,573,tier2_name,Automatic match via exact name to Christian Encarnacion Strand +9515,Christian Vazquez,10,vazquch01,2063,tier1_bbref,Automatic match via bbref_id to Christian Vazquez +9516,Christian Walker,10,walkech02,2104,tier1_bbref,Automatic match via bbref_id to Christian Walker +9517,Christian Yelich,10,yelicch01,2212,tier1_bbref,Automatic match via bbref_id to Christian Yelich +9518,Christopher Morel,10,morelch01,1364,tier1_bbref,Automatic match via bbref_id to Christopher Morel +9519,Cionel Perez,10,perezci01,1540,tier1_bbref,Automatic match via bbref_id to Cionel Perez +9520,CJ Abrams,10,abramcj01,6,tier1_bbref,Automatic match via bbref_id to CJ Abrams +9521,CJ Cron,10,HALP,441,tier2_name,Automatic match via exact name to CJ Cron +9522,Clarke Schmidt,10,schmicl01,1774,tier1_bbref,Automatic match via bbref_id to Clarke Schmidt +9523,Clay Holmes,10,holmecl01,919,tier1_bbref,Automatic match via bbref_id to Clay Holmes +9524,Clayton Kershaw,10,HALP,1034,tier2_name,Automatic match via exact name to Clayton Kershaw +9525,Cody Bellinger,10,bellico01,170,tier1_bbref,Automatic match via bbref_id to Cody Bellinger +9526,Cody Bolton,10,boltoco01,219,tier1_bbref,Automatic match via bbref_id to Cody Bolton +9527,Cole Irvin,10,irvinco01,954,tier1_bbref,Automatic match via bbref_id to Cole Irvin +9528,Cole Ragans,10,raganco01,1598,tier1_bbref,Automatic match via bbref_id to Cole Ragans +9529,Cole Sands,10,sandsco01,1755,tier1_bbref,Automatic match via bbref_id to Cole Sands +9530,Colin Holderman,10,holdeco01,913,tier1_bbref,Automatic match via bbref_id to Colin Holderman +9531,Colin Poche,10,pocheco01,1568,tier1_bbref,Automatic match via bbref_id to Colin Poche +9532,Colin Rea,10,reaco01,1621,tier1_bbref,Automatic match via bbref_id to Colin Rea +9533,Collin McHugh,10,HALP,1278,tier2_name,Automatic match via exact name to Collin McHugh +9534,Colton Cowser,10,cowseco01,426,tier1_bbref,Automatic match via bbref_id to Colton Cowser +9535,Connor Joe,10,joeco01,983,tier1_bbref,Automatic match via bbref_id to Connor Joe +9536,Connor Seabold,10,HALP,1792,tier2_name,Automatic match via exact name to Connor Seabold +9537,Connor Wong,10,wongco01,2189,tier1_bbref,Automatic match via bbref_id to Connor Wong +9538,Corbin Burnes,10,burneco01,286,tier1_bbref,Automatic match via bbref_id to Corbin Burnes +9539,Corbin Carroll,10,carroco02,332,tier1_bbref,Automatic match via bbref_id to Corbin Carroll +9540,Corey Julks,10,julksco01,1001,tier1_bbref,Automatic match via bbref_id to Corey Julks +9541,Corey Seager,10,seageco01,1794,tier1_bbref,Automatic match via bbref_id to Corey Seager +9542,Cory Abbott,10,HALP,5,tier2_name,Automatic match via exact name to Cory Abbott +9543,Craig Kimbrel,10,kimbrcr01,1043,tier1_bbref,Automatic match via bbref_id to Craig Kimbrel +9544,Cristian Javier,10,javiecr01,971,tier1_bbref,Automatic match via bbref_id to Cristian Javier +9545,Cristian Pache,10,pachecr01,1482,tier1_bbref,Automatic match via bbref_id to Cristian Pache +9546,Cristopher Sanchez,10,sanchcr01,1748,tier1_bbref,Automatic match via bbref_id to Cristopher Sanchez +9547,Curt Casali,10,casalcu01,334,tier1_bbref,Automatic match via bbref_id to Curt Casali +9548,Dairon Blanco,10,blancda02,209,tier1_bbref,Automatic match via bbref_id to Dairon Blanco +9549,Dakota Hudson,10,hudsoda02,934,tier1_bbref,Automatic match via bbref_id to Dakota Hudson +9550,Dane Dunning,10,dunnida01,548,tier1_bbref,Automatic match via bbref_id to Dane Dunning +9551,Daniel Bard,10,HALP,125,tier2_name,Automatic match via exact name to Daniel Bard +9552,Daniel Coulombe,10,couloda01,10008552,emergency_new,"EMERGENCY: Unassigned player, needs new SbaPlayer record" +9553,Daniel Duarte,10,duartda01,536,tier1_bbref,Automatic match via bbref_id to Daniel Duarte +9554,Daniel Lynch,10,HALP,1172,tier2_name,Automatic match via exact name to Daniel Lynch +9555,Daniel Palencia,10,palenda01,1490,tier1_bbref,Automatic match via bbref_id to Daniel Palencia +9556,Daniel Vogelbach,10,vogelda01,2085,tier1_bbref,Automatic match via bbref_id to Daniel Vogelbach +9557,Danny Jansen,10,janseda01,969,tier1_bbref,Automatic match via bbref_id to Danny Jansen +9558,Dansby Swanson,10,swansda01,1947,tier1_bbref,Automatic match via bbref_id to Dansby Swanson +9559,Dany Jimenez,10,jimenda01,981,tier1_bbref,Automatic match via bbref_id to Dany Jimenez +9560,Daulton Varsho,10,varshda01,2058,tier1_bbref,Automatic match via bbref_id to Daulton Varsho +9561,Dauri Moreta,10,HALP,1367,tier2_name,Automatic match via exact name to Dauri Moreta +9562,David Bednar,10,bednada01,162,tier1_bbref,Automatic match via bbref_id to David Bednar +9563,David Fletcher,10,fletcda02,624,tier1_bbref,Automatic match via bbref_id to David Fletcher +9564,David Fry,10,fryda01,663,tier1_bbref,Automatic match via bbref_id to David Fry +9565,David Hensley,10,HALP,860,tier2_name,Automatic match via exact name to David Hensley +9566,David Peralta,10,peralda01,1522,tier1_bbref,Automatic match via bbref_id to David Peralta +9567,David Peterson,10,HALP,1548,tier2_name,Automatic match via exact name to David Peterson +9568,David Robertson,10,roberda08,1662,tier1_bbref,Automatic match via bbref_id to David Robertson +9569,Davis Schneider,10,schneda03,1777,tier1_bbref,Automatic match via bbref_id to Davis Schneider +9570,Dean Kremer,10,kremede01,1077,tier1_bbref,Automatic match via bbref_id to Dean Kremer +9571,Derek Law,10,lawde01,1098,tier1_bbref,Automatic match via bbref_id to Derek Law +9572,Devin Williams,10,HALP,2158,tier2_name,Automatic match via exact name to Devin Williams +9573,DJ LeMahieu,10,HALP,1114,tier2_name,Automatic match via exact name to DJ LeMahieu +9574,DJ Stewart,10,stewadj01,1909,tier1_bbref,Automatic match via bbref_id to DJ Stewart +9575,Domingo German,10,HALP,713,tier2_name,Automatic match via exact name to Domingo German +9576,Dominic Fletcher,10,fletcdo01,625,tier1_bbref,Automatic match via bbref_id to Dominic Fletcher +9577,Dominic Smith,10,smithdo02,1849,tier1_bbref,Automatic match via bbref_id to Dominic Smith +9578,Donovan Solano,10,solando01,1868,tier1_bbref,Automatic match via bbref_id to Donovan Solano +9579,Drew Rom,10,HALP,1698,tier2_name,Automatic match via exact name to Drew Rom +9580,Drew Smith,10,smithdr01,1848,tier1_bbref,Automatic match via bbref_id to Drew Smith +9581,Drew Smyly,10,smylydr01,1858,tier1_bbref,Automatic match via bbref_id to Drew Smyly +9582,Drew VerHagen,10,HALP,2070,tier2_name,Automatic match via exact name to Drew VerHagen +9583,Drew Waters,10,HALP,2120,tier2_name,Automatic match via exact name to Drew Waters +9584,Drey Jameson,10,HALP,966,tier2_name,Automatic match via exact name to Drey Jameson +9585,Dustin May,10,HALP,1249,tier2_name,Automatic match via exact name to Dustin May +9586,Dylan Carlson,10,carlsdy01,327,tier1_bbref,Automatic match via bbref_id to Dylan Carlson +9587,Dylan Cease,10,ceasedy01,355,tier1_bbref,Automatic match via bbref_id to Dylan Cease +9588,Dylan Covey,10,HALP,425,tier2_name,Automatic match via exact name to Dylan Covey +9589,Dylan Floro,10,florody01,629,tier1_bbref,Automatic match via bbref_id to Dylan Floro +9590,Dylan Lee,10,leedy01,1108,tier1_bbref,Automatic match via bbref_id to Dylan Lee +9591,Dylan Moore,10,mooredy01,1358,tier1_bbref,Automatic match via bbref_id to Dylan Moore +9592,Eddie Rosario,10,rosared01,1710,tier1_bbref,Automatic match via bbref_id to Eddie Rosario +9593,Edmundo Sosa,10,sosaed01,1876,tier1_bbref,Automatic match via bbref_id to Edmundo Sosa +9594,Edouard Julien,10,julieed01,1000,tier1_bbref,Automatic match via bbref_id to Edouard Julien +9595,Eduardo Escobar,10,HALP,581,tier2_name,Automatic match via exact name to Eduardo Escobar +9596,Eduardo Rodriguez,10,HALP,1675,tier2_name,Automatic match via exact name to Eduardo Rodriguez +9597,Edward Cabrera,10,cabreed02,302,tier1_bbref,Automatic match via bbref_id to Edward Cabrera +9598,Edward Olivares,10,olivaed02,1458,tier1_bbref,Automatic match via bbref_id to Edward Olivares +9599,Elehuris Montero,10,monteel01,1353,tier1_bbref,Automatic match via bbref_id to Elehuris Montero +9600,Eli Morgan,10,morgael01,1369,tier1_bbref,Automatic match via bbref_id to Eli Morgan +9601,Elias Diaz,10,diazel01,502,tier1_bbref,Automatic match via bbref_id to Elias Diaz +9602,Elly De La Cruz,10,delacel01,480,tier1_bbref,Automatic match via bbref_id to Elly De La Cruz +9603,Eloy Jimenez,10,jimenel02,980,tier1_bbref,Automatic match via bbref_id to Eloy Jimenez +9604,Elvis Andrus,10,HALP,77,tier2_name,Automatic match via exact name to Elvis Andrus +9605,Elvis Peguero,10,pegueel01,1515,tier1_bbref,Automatic match via bbref_id to Elvis Peguero +9606,Emilio Pagan,10,paganem01,1484,tier1_bbref,Automatic match via bbref_id to Emilio Pagan +9607,Emmanuel Clase,10,claseem01,385,tier1_bbref,Automatic match via bbref_id to Emmanuel Clase +9608,Emmanuel Rivera,10,riverem01,1657,tier1_bbref,Automatic match via bbref_id to Emmanuel Rivera +9609,Emmet Sheehan,10,HALP,1810,tier2_name,Automatic match via exact name to Emmet Sheehan +9610,Endy Rodriguez,10,HALP,1685,tier2_name,Automatic match via exact name to Endy Rodriguez +9611,Enmanuel Valdez,10,valdeen01,2049,tier1_bbref,Automatic match via bbref_id to Enmanuel Valdez +9612,Enrique Hernandez,10,hernaen02,871,tier1_bbref,Automatic match via bbref_id to Enrique Hernandez +9613,Enyel De Los Santos,10,delosen01,482,tier1_bbref,Automatic match via bbref_id to Enyel De Los Santos +9614,Eric Haase,10,HALP,801,tier2_name,Automatic match via exact name to Eric Haase +9615,Erik Swanson,10,swanser01,1948,tier1_bbref,Automatic match via bbref_id to Erik Swanson +9616,Esteury Ruiz,10,ruizes01,1726,tier1_bbref,Automatic match via bbref_id to Esteury Ruiz +9617,Estevan Florial,10,flories01,628,tier1_bbref,Automatic match via bbref_id to Estevan Florial +9618,Eugenio Suarez,10,suareeu01,1934,tier1_bbref,Automatic match via bbref_id to Eugenio Suarez +9619,Eury Perez,10,HALP,1542,tier2_name,Automatic match via exact name to Eury Perez +9620,Evan Carter,10,carteev01,333,tier1_bbref,Automatic match via bbref_id to Evan Carter +9621,Evan Longoria,10,HALP,1140,tier2_name,Automatic match via exact name to Evan Longoria +9622,Evan Phillips,10,phillev01,3238,manual_new,Manual assignment to new SbaPlayer: Evan Phillips +9623,Everson Pereira,10,HALP,1532,tier2_name,Automatic match via exact name to Everson Pereira +9624,Ezequiel Duran,10,duranez01,551,tier1_bbref,Automatic match via bbref_id to Ezequiel Duran +9625,Ezequiel Tovar,10,tovarez01,2007,tier1_bbref,Automatic match via bbref_id to Ezequiel Tovar +9626,Felix Bautista,10,HALP,154,tier2_name,Automatic match via exact name to Felix Bautista +9627,Fernando Cruz,10,cruzfe01,448,tier1_bbref,Automatic match via bbref_id to Fernando Cruz +9628,Fernando Tatis Jr,10,tatisfe02,1960,tier1_bbref,Automatic match via bbref_id to Fernando Tatis Jr +9629,Framber Valdez,10,valdefr01,2048,tier1_bbref,Automatic match via bbref_id to Framber Valdez +9630,Francisco Alvarez,10,alvarfr01,62,tier1_bbref,Automatic match via bbref_id to Francisco Alvarez +9631,Francisco Lindor,10,lindofr01,1124,tier1_bbref,Automatic match via bbref_id to Francisco Lindor +9632,Francisco Mejia,10,HALP,3239,manual_new,Manual assignment to new SbaPlayer: Francisco Mejia +9633,Freddie Freeman,10,freemfr01,652,tier1_bbref,Automatic match via bbref_id to Freddie Freeman +9634,Freddy Fermin,10,fermifr01,606,tier1_bbref,Automatic match via bbref_id to Freddy Fermin +9635,Freddy Peralta,10,peralfr01,1525,tier1_bbref,Automatic match via bbref_id to Freddy Peralta +9636,Gabe Speier,10,speiega01,1885,tier1_bbref,Automatic match via bbref_id to Gabe Speier +9637,Gabriel Arias,10,ariasga01,89,tier1_bbref,Automatic match via bbref_id to Gabriel Arias +9638,Gabriel Moreno,10,morenga01,1366,tier1_bbref,Automatic match via bbref_id to Gabriel Moreno +9639,Garrett Cooper,10,coopega03,415,tier1_bbref,Automatic match via bbref_id to Garrett Cooper +9640,Garrett Hampson,10,hampsga01,814,tier1_bbref,Automatic match via bbref_id to Garrett Hampson +9641,Garrett Stubbs,10,stubbga01,1931,tier1_bbref,Automatic match via bbref_id to Garrett Stubbs +9642,Garrett Whitlock,10,whitlga01,2146,tier1_bbref,Automatic match via bbref_id to Garrett Whitlock +9643,Gary Sanchez,10,sanchga02,1746,tier1_bbref,Automatic match via bbref_id to Gary Sanchez +9644,Gavin Hollowell,10,HALP,918,tier2_name,Automatic match via exact name to Gavin Hollowell +9645,Gavin Sheets,10,sheetga01,1811,tier1_bbref,Automatic match via bbref_id to Gavin Sheets +9646,Gavin Stone,10,stonega01,1913,tier1_bbref,Automatic match via bbref_id to Gavin Stone +9647,Gavin Williams,10,HALP,2160,tier2_name,Automatic match via exact name to Gavin Williams +9648,Genesis Cabrera,10,cabrege01,301,tier1_bbref,Automatic match via bbref_id to Genesis Cabrera +9649,George Kirby,10,kirbyge01,1054,tier1_bbref,Automatic match via bbref_id to George Kirby +9650,George Soriano,10,soriage01,1873,tier1_bbref,Automatic match via bbref_id to George Soriano +9651,George Springer,10,springe01,1888,tier1_bbref,Automatic match via bbref_id to George Springer +9652,Geraldo Perdomo,10,perdoge01,1531,tier1_bbref,Automatic match via bbref_id to Geraldo Perdomo +9653,Gerrit Cole,10,HALP,398,tier2_name,Automatic match via exact name to Gerrit Cole +9654,Giancarlo Stanton,10,stantmi03,1893,tier1_bbref,Automatic match via bbref_id to Giancarlo Stanton +9655,Gio Urshela,10,urshegi01,2042,tier1_bbref,Automatic match via bbref_id to Gio Urshela +9656,Giovanny Gallegos,10,gallegi01,672,tier1_bbref,Automatic match via bbref_id to Giovanny Gallegos +9657,Gleyber Torres,10,torregl01,2003,tier1_bbref,Automatic match via bbref_id to Gleyber Torres +9658,Graham Ashcraft,10,ashcrgr01,99,tier1_bbref,Automatic match via bbref_id to Graham Ashcraft +9659,Grant Hartwig,10,hartwgr01,834,tier1_bbref,Automatic match via bbref_id to Grant Hartwig +9660,Grayson Rodriguez,10,rodrigr01,1684,tier1_bbref,Automatic match via bbref_id to Grayson Rodriguez +9661,Gregory Santos,10,HALP,1767,tier2_name,Automatic match via exact name to Gregory Santos +9662,Gregory Soto,10,sotogr01,1878,tier1_bbref,Automatic match via bbref_id to Gregory Soto +9663,Griffin Canning,10,cannigr01,317,tier1_bbref,Automatic match via bbref_id to Griffin Canning +9664,Griffin Jax,10,jaxgr01,972,tier1_bbref,Automatic match via bbref_id to Griffin Jax +9665,Gunnar Henderson,10,hendegu01,855,tier1_bbref,Automatic match via bbref_id to Gunnar Henderson +9666,Ha Seong Kim,10,HALP,1042,tier2_name,Automatic match via exact name to Ha Seong Kim +9667,Harold Castro,10,HALP,349,tier2_name,Automatic match via exact name to Harold Castro +9668,Harold Ramirez,10,ramirha02,1609,tier1_bbref,Automatic match via bbref_id to Harold Ramirez +9669,Harrison Bader,10,baderha01,110,tier1_bbref,Automatic match via bbref_id to Harrison Bader +9670,Hayden Wesneski,10,wesneha01,2137,tier1_bbref,Automatic match via bbref_id to Hayden Wesneski +9671,Hector Neris,10,nerishe01,1413,tier1_bbref,Automatic match via bbref_id to Hector Neris +9672,Henry Davis,10,davishe01,473,tier1_bbref,Automatic match via bbref_id to Henry Davis +9673,Henry Ramos,10,HALP,1614,tier2_name,Automatic match via exact name to Henry Ramos +9674,Hoby Milner,10,milneho01,1332,tier1_bbref,Automatic match via bbref_id to Hoby Milner +9675,Hogan Harris,10,harriho03,826,tier1_bbref,Automatic match via bbref_id to Hogan Harris +9676,Huascar Brazoban,10,HALP,246,tier2_name,Automatic match via exact name to Huascar Brazoban +9677,Hunter Brown,10,brownhu01,267,tier1_bbref,Automatic match via bbref_id to Hunter Brown +9678,Hunter Greene,10,greenhu01,770,tier1_bbref,Automatic match via bbref_id to Hunter Greene +9679,Hunter Harvey,10,harvehu01,836,tier1_bbref,Automatic match via bbref_id to Hunter Harvey +9680,Hunter Renfroe,10,renfrhu01,1631,tier1_bbref,Automatic match via bbref_id to Hunter Renfroe +9681,Hyun Jin Ryu,10,HALP,1733,tier2_name,Automatic match via exact name to Hyun Jin Ryu +9682,Ian Gibaut,10,HALP,714,tier2_name,Automatic match via exact name to Ian Gibaut +9683,Ian Hamilton,10,hamilia01,811,tier1_bbref,Automatic match via bbref_id to Ian Hamilton +9684,Ian Happ,10,happia01,820,tier1_bbref,Automatic match via bbref_id to Ian Happ +9685,Ildemaro Vargas,10,vargail01,2054,tier1_bbref,Automatic match via bbref_id to Ildemaro Vargas +9686,Isaac Paredes,10,paredis01,1497,tier1_bbref,Automatic match via bbref_id to Isaac Paredes +9687,Isaiah Campbell,10,campbis01,312,tier1_bbref,Automatic match via bbref_id to Isaiah Campbell +9688,Isiah Kiner Falefa,10,HALP,1044,tier2_name,Automatic match via exact name to Isiah Kiner Falefa +9689,Jace Peterson,10,peterja01,1547,tier1_bbref,Automatic match via bbref_id to Jace Peterson +9690,Jack Flaherty,10,flaheja01,622,tier1_bbref,Automatic match via bbref_id to Jack Flaherty +9691,Jack Suwinski,10,suwinja01,1944,tier1_bbref,Automatic match via bbref_id to Jack Suwinski +9692,Jackson Kowar,10,HALP,1072,tier2_name,Automatic match via exact name to Jackson Kowar +9693,Jacob Stallings,10,stallja01,1890,tier1_bbref,Automatic match via bbref_id to Jacob Stallings +9694,Jacob Webb,10,webbja01,2126,tier1_bbref,Automatic match via bbref_id to Jacob Webb +9695,Jacob Young,10,youngja03,2219,tier1_bbref,Automatic match via bbref_id to Jacob Young +9696,Jaime Barria,10,HALP,141,tier2_name,Automatic match via exact name to Jaime Barria +9697,Jake Alu,10,HALP,57,tier2_name,Automatic match via exact name to Jake Alu +9698,Jake Bauers,10,bauerja01,151,tier1_bbref,Automatic match via bbref_id to Jake Bauers +9699,Jake Bird,10,birdja01,198,tier1_bbref,Automatic match via bbref_id to Jake Bird +9700,Jake Burger,10,burgeja01,283,tier1_bbref,Automatic match via bbref_id to Jake Burger +9701,Jake Cave,10,caveja01,354,tier1_bbref,Automatic match via bbref_id to Jake Cave +9702,Jake Cronenworth,10,croneja01,442,tier1_bbref,Automatic match via bbref_id to Jake Cronenworth +9703,Jake Diekman,10,diekmja01,514,tier1_bbref,Automatic match via bbref_id to Jake Diekman +9704,Jake Fraley,10,fraleja01,641,tier1_bbref,Automatic match via bbref_id to Jake Fraley +9705,Jake Irvin,10,irvinja01,955,tier1_bbref,Automatic match via bbref_id to Jake Irvin +9706,Jake Junis,10,junisja01,1004,tier1_bbref,Automatic match via bbref_id to Jakob Junis +9707,Jake McCarthy,10,mccarja02,1265,tier1_bbref,Automatic match via bbref_id to Jake McCarthy +9708,Jake Meyers,10,meyerja02,1315,tier1_bbref,Automatic match via bbref_id to Jake Meyers +9709,Jake Rogers,10,rogerja03,1692,tier1_bbref,Automatic match via bbref_id to Jake Rogers +9710,Jake Woodford,10,HALP,2195,tier2_name,Automatic match via exact name to Jake Woodford +9711,Jalen Beeks,10,beeksja02,165,tier1_bbref,Automatic match via bbref_id to Jalen Beeks +9712,James Kaprielian,10,HALP,1008,tier2_name,Automatic match via exact name to James Kaprielian +9713,James Karinchak,10,HALP,1009,tier2_name,Automatic match via exact name to James Karinchak +9714,James Mcarthur,10,mcartja01,1258,tier1_bbref,Automatic match via bbref_id to James McArthur +9715,James McCann,10,mccanja02,1261,tier1_bbref,Automatic match via bbref_id to James McCann +9716,James Outman,10,outmaja01,1477,tier1_bbref,Automatic match via bbref_id to James Outman +9717,James Paxton,10,paxtoja01,1506,tier1_bbref,Automatic match via bbref_id to James Paxton +9718,Jameson Taillon,10,taillja01,1954,tier1_bbref,Automatic match via bbref_id to Jameson Taillon +9719,Jared Shuster,10,shustja01,1821,tier1_bbref,Automatic match via bbref_id to Jared Shuster +9720,Jared Triolo,10,triolja01,2015,tier1_bbref,Automatic match via bbref_id to Jared Triolo +9721,Jarred Kelenic,10,kelenja01,1015,tier1_bbref,Automatic match via bbref_id to Jarred Kelenic +9722,Jarren Duran,10,duranja01,552,tier1_bbref,Automatic match via bbref_id to Jarren Duran +9723,Jason Adam,10,adamja01,13,tier1_bbref,Automatic match via bbref_id to Jason Adam +9724,Jason Delay,10,delayja01,487,tier1_bbref,Automatic match via bbref_id to Jason Delay +9725,Jason Foley,10,foleyja01,632,tier1_bbref,Automatic match via bbref_id to Jason Foley +9726,Jason Heyward,10,heywaja01,891,tier1_bbref,Automatic match via bbref_id to Jason Heyward +9727,Jason Vosler,10,HALP,2090,tier2_name,Automatic match via exact name to Jason Vosler +9728,Javier Assad,10,assadja01,100,tier1_bbref,Automatic match via bbref_id to Javier Assad +9729,Javier Baez,10,baezja01,112,tier1_bbref,Automatic match via bbref_id to Javier Baez +9730,Jazz Chisholm,10,chishja01,375,tier1_bbref,Automatic match via bbref_id to Jazz Chisholm +9731,JD Davis,10,davisjd01,474,tier1_bbref,Automatic match via bbref_id to JD Davis +9732,JD Martinez,10,martijd02,1229,tier1_bbref,Automatic match via bbref_id to JD Martinez +9733,Jean Segura,10,HALP,1796,tier2_name,Automatic match via exact name to Jean Segura +9734,Jeff Brigham,10,HALP,257,tier2_name,Automatic match via exact name to Jeff Brigham +9735,Jeff Hoffman,10,hoffmje02,910,tier1_bbref,Automatic match via bbref_id to Jeff Hoffman +9736,Jeff McNeil,10,mcneije01,1287,tier1_bbref,Automatic match via bbref_id to Jeff McNeil +9737,Jeimer Candelario,10,candeje01,315,tier1_bbref,Automatic match via bbref_id to Jeimer Candelario +9738,Jeremy Pena,10,penaje02,1519,tier1_bbref,Automatic match via bbref_id to Jeremy Pena +9739,Jesse Scholtens,10,HALP,1778,tier2_name,Automatic match via exact name to Jesse Scholtens +9740,Jesse Winker,10,winkeje01,2177,tier1_bbref,Automatic match via bbref_id to Jesse Winker +9741,Jesus Luzardo,10,luzarje01,1170,tier1_bbref,Automatic match via bbref_id to Jesus Luzardo +9742,Jesus Sanchez,10,sanchje02,1749,tier1_bbref,Automatic match via bbref_id to Jesus Sanchez +9743,Jhony Brito,10,britojh01,259,tier1_bbref,Automatic match via bbref_id to Jhony Brito +9744,Ji Hwan Bae,10,baeji01,945,tier1_bbref,Automatic match via bbref_id to Ji Hwan Bae +9745,Ji Man Choi,10,HALP,377,tier2_name,Automatic match via exact name to Ji Man Choi +9746,Jimmy Herget,10,hergeji01,863,tier1_bbref,Automatic match via bbref_id to Jimmy Herget +9747,Jimmy Lambert,10,HALP,1089,tier2_name,Automatic match via exact name to Jimmy Lambert +9748,JJ Bleday,10,bledajj01,211,tier1_bbref,Automatic match via bbref_id to JJ Bleday +9749,Joan Adon,10,adonjo01,21,tier1_bbref,Automatic match via bbref_id to Joan Adon +9750,Joc Pederson,10,pederjo01,1514,tier1_bbref,Automatic match via bbref_id to Joc Pederson +9751,Joe Jacques,10,jacqujo01,964,tier1_bbref,Automatic match via bbref_id to Joe Jacques +9752,Joe Jimenez,10,jimenjo02,979,tier1_bbref,Automatic match via bbref_id to Joe Jimenez +9753,Joe Kelly,10,kellyjo05,1021,tier1_bbref,Automatic match via bbref_id to Joe Kelly +9754,Joe Mantiply,10,mantijo01,1193,tier1_bbref,Automatic match via bbref_id to Joe Mantiply +9755,Joe Musgrove,10,musgrjo01,1394,tier1_bbref,Automatic match via bbref_id to Joe Musgrove +9756,Joe Ryan,10,ryanjo04,1732,tier1_bbref,Automatic match via bbref_id to Joe Ryan +9757,Joel Payamps,10,payamjo01,1507,tier1_bbref,Automatic match via bbref_id to Joel Payamps +9758,Joey Gallo,10,gallojo01,674,tier1_bbref,Automatic match via bbref_id to Joey Gallo +9759,Joey Lucchesi,10,lucchjo01,1160,tier1_bbref,Automatic match via bbref_id to Joey Lucchesi +9760,Joey Meneses,10,menesjo01,1303,tier1_bbref,Automatic match via bbref_id to Joey Meneses +9761,Joey Votto,10,HALP,2092,tier2_name,Automatic match via exact name to Joey Votto +9762,Joey Wendle,10,wendljo01,2135,tier1_bbref,Automatic match via bbref_id to Joey Wendle +9763,Joey Wentz,10,wentzjo01,2136,tier1_bbref,Automatic match via bbref_id to Joey Wentz +9764,Joey Wiemer,10,wiemejo01,2151,tier1_bbref,Automatic match via bbref_id to Joey Wiemer +9765,Johan Oviedo,10,HALP,1479,tier2_name,Automatic match via exact name to Johan Oviedo +9766,Johan Rojas,10,rojasjo03,1697,tier1_bbref,Automatic match via bbref_id to Johan Rojas +9767,John Brebbia,10,brebbjo01,247,tier1_bbref,Automatic match via bbref_id to John Brebbia +9768,John King,10,kingjo01,1045,tier1_bbref,Automatic match via bbref_id to John King +9769,John Schreiber,10,schrejo01,1780,tier1_bbref,Automatic match via bbref_id to John Schreiber +9770,JoJo Romero,10,romerjo01,1702,tier1_bbref,Automatic match via bbref_id to JoJo Romero +9771,Jon Berti,10,bertijo01,183,tier1_bbref,Automatic match via bbref_id to Jon Berti +9772,Jon Gray,10,grayjo02,766,tier1_bbref,Automatic match via bbref_id to Jon Gray +9773,Jonah Bride,10,bridejo01,255,tier1_bbref,Automatic match via bbref_id to Jonah Bride +9774,Jonah Heim,10,heimjo01,849,tier1_bbref,Automatic match via bbref_id to Jonah Heim +9775,Jonathan Hernandez,10,hernajo02,876,tier1_bbref,Automatic match via bbref_id to Jonathan Hernandez +9776,Jonathan India,10,indiajo01,953,tier1_bbref,Automatic match via bbref_id to Jonathan India +9777,Jordan Balazovic,10,HALP,119,tier2_name,Automatic match via exact name to Jordan Balazovic +9778,Jordan Diaz,10,HALP,510,tier2_name,Automatic match via exact name to Jordan Diaz +9779,Jordan Hicks,10,hicksjo03,894,tier1_bbref,Automatic match via bbref_id to Jordan Hicks +9780,Jordan Lyles,10,lylesjo01,1171,tier1_bbref,Automatic match via bbref_id to Jordan Lyles +9781,Jordan Montgomery,10,montgjo01,1356,tier1_bbref,Automatic match via bbref_id to Jordan Montgomery +9782,Jordan Romano,10,romanjo03,1699,tier1_bbref,Automatic match via bbref_id to Jordan Romano +9783,Jordan Walker,10,walkejo02,2107,tier1_bbref,Automatic match via bbref_id to Jordan Walker +9784,Jordan Weems,10,weemsjo01,2129,tier1_bbref,Automatic match via bbref_id to Jordan Weems +9785,Jordan Westburg,10,westbjo01,2138,tier1_bbref,Automatic match via bbref_id to Jordan Westburg +9786,Jordan Wicks,10,wicksjo01,2148,tier1_bbref,Automatic match via bbref_id to Jordan Wicks +9787,Jorge Mateo,10,mateojo01,1233,tier1_bbref,Automatic match via bbref_id to Jorge Mateo +9788,Jorge Soler,10,solerjo01,1870,tier1_bbref,Automatic match via bbref_id to Jorge Soler +9789,Jose Abreu,10,abreujo02,7,tier1_bbref,Automatic match via bbref_id to Jose Abreu +9790,Jose Altuve,10,altuvjo01,56,tier1_bbref,Automatic match via bbref_id to Jose Altuve +9791,Jose Alvarado,10,alvarjo03,58,tier1_bbref,Automatic match via bbref_id to Jose Alvarado +9792,Jose Azocar,10,azocajo01,107,tier1_bbref,Automatic match via bbref_id to Jose Azocar +9793,Jose Barrero,10,HALP,139,tier2_name,Automatic match via exact name to Jose Barrero +9794,Jose Berrios,10,berrijo01,182,tier1_bbref,Automatic match via bbref_id to Jose Berrios +9795,Jose Butto,10,buttojo01,293,tier1_bbref,Automatic match via bbref_id to Jose Butto +9796,Jose Caballero,10,cabaljo01,296,tier1_bbref,Automatic match via bbref_id to Jose Caballero +9797,Jose Cisnero,10,cisnejo01,382,tier1_bbref,Automatic match via bbref_id to Jose Cisnero +9798,Jose Cuas,10,cuasjo01,450,tier1_bbref,Automatic match via bbref_id to Jose Cuas +9799,Jose Ferrer,10,HALP,609,tier2_name,Automatic match via exact name to Jose Ferrer +9800,Jose Hernandez,10,hernajo03,879,tier1_bbref,Automatic match via bbref_id to Jose Hernandez +9801,Jose Herrera,10,HALP,884,tier2_name,Automatic match via exact name to Jose Herrera +9802,Jose Leclerc,10,leclejo01,1106,tier1_bbref,Automatic match via bbref_id to Jose Leclerc +9803,Jose Quintana,10,quintjo01,1596,tier1_bbref,Automatic match via bbref_id to Jose Quintana +9804,Jose Ramirez,10,ramirjo01,1608,tier1_bbref,Automatic match via bbref_id to Jose Ramirez +9805,Jose Ruiz,10,ruizjo01,1724,tier1_bbref,Automatic match via bbref_id to Jose Ruiz +9806,Jose Siri,10,sirijo01,1830,tier1_bbref,Automatic match via bbref_id to Jose Siri +9807,Jose Soriano,10,soriajo02,1874,tier1_bbref,Automatic match via bbref_id to Jose Soriano +9808,Jose Suarez,10,suarejo01,1937,tier1_bbref,Automatic match via bbref_id to Jose Suarez +9809,Jose Trevino,10,trevijo01,2013,tier1_bbref,Automatic match via bbref_id to Jose Trevino +9810,Jose Urena,10,urenajo01,2035,tier1_bbref,Automatic match via bbref_id to Jose Urena +9811,Jose Urquidy,10,HALP,2041,tier2_name,Automatic match via exact name to Jose Urquidy +9812,Josh Bell,10,belljo02,168,tier1_bbref,Automatic match via bbref_id to Josh Bell +9813,Josh Hader,10,haderjo01,802,tier1_bbref,Automatic match via bbref_id to Josh Hader +9814,Josh Jung,10,jungjo01,1002,tier1_bbref,Automatic match via bbref_id to Josh Jung +9815,Josh Lowe,10,lowejo01,1157,tier1_bbref,Automatic match via bbref_id to Josh Lowe +9816,Josh Naylor,10,naylojo01,1404,tier1_bbref,Automatic match via bbref_id to Josh Naylor +9817,Josh Palacios,10,HALP,1489,tier2_name,Automatic match via exact name to Josh Palacios +9818,Josh Rojas,10,rojasjo01,1695,tier1_bbref,Automatic match via bbref_id to Josh Rojas +9819,Josh Sborz,10,sborzjo01,1770,tier1_bbref,Automatic match via bbref_id to Josh Sborz +9820,Josh Smith,10,smithjo11,1852,tier1_bbref,Automatic match via bbref_id to Josh Smith +9821,Josh Winckowski,10,winckjo01,2174,tier1_bbref,Automatic match via bbref_id to Josh Winckowski +9822,Josh Winder,10,HALP,2175,tier2_name,Automatic match via exact name to Josh Winder +9823,Josiah Gray,10,grayjo03,767,tier1_bbref,Automatic match via bbref_id to Josiah Gray +9824,Jovani Moran,10,HALP,1361,tier2_name,Automatic match via exact name to Jovani Moran +9825,JP Crawford,10,crawfjp01,432,tier1_bbref,Automatic match via bbref_id to JP Crawford +9826,JP France,10,francjp01,643,tier1_bbref,Automatic match via bbref_id to JP France +9827,JP Sears,10,searsjp01,1795,tier1_bbref,Automatic match via bbref_id to JP Sears +9828,JT Chargois,10,HALP,368,tier2_name,Automatic match via exact name to JT Chargois +9829,JT Realmuto,10,realmjt01,1622,tier1_bbref,Automatic match via bbref_id to JT Realmuto +9830,Juan Soto,10,sotoju01,1879,tier1_bbref,Automatic match via bbref_id to Juan Soto +9831,Julian Merryweather,10,merryju01,1311,tier1_bbref,Automatic match via bbref_id to Julian Merryweather +9832,Julio Rodriguez,10,rodriju01,1682,tier1_bbref,Automatic match via bbref_id to Julio Rodriguez +9833,Julio Teheran,10,teherju01,1970,tier1_bbref,Automatic match via bbref_id to Julio Teheran +9834,Julio Urias,10,HALP,2038,tier2_name,Automatic match via exact name to Julio Urias +9835,Jurickson Profar,10,profaju01,1587,tier1_bbref,Automatic match via bbref_id to Jurickson Profar +9836,Justin Lawrence,10,lawreju01,1100,tier1_bbref,Automatic match via bbref_id to Justin Lawrence +9837,Justin Steele,10,steelju01,1899,tier1_bbref,Automatic match via bbref_id to Justin Steele +9838,Justin Topa,10,HALP,1999,tier2_name,Automatic match via exact name to Justin Topa +9839,Justin Turner,10,turneju01,2029,tier1_bbref,Automatic match via bbref_id to Justin Turner +9840,Justin Verlander,10,verlaju01,2071,tier1_bbref,Automatic match via bbref_id to Justin Verlander +9841,KeBryan Hayes,10,HALP,838,tier2_name,Automatic match via exact name to KeBryan Hayes +9842,Keibert Ruiz,10,ruizke01,1725,tier1_bbref,Automatic match via bbref_id to Keibert Ruiz +9843,Ken Waldichuk,10,HALP,2101,tier2_name,Automatic match via exact name to Ken Waldichuk +9844,Kendall Graveman,10,HALP,764,tier2_name,Automatic match via exact name to Kendall Graveman +9845,Kenley Jansen,10,janseke01,968,tier1_bbref,Automatic match via bbref_id to Kenley Jansen +9846,Kenta Maeda,10,maedake01,1181,tier1_bbref,Automatic match via bbref_id to Kenta Maeda +9847,Kerry Carpenter,10,carpeke01,330,tier1_bbref,Automatic match via bbref_id to Kerry Carpenter +9848,Ketel Marte,10,marteke01,1210,tier1_bbref,Automatic match via bbref_id to Ketel Marte +9849,Kevin Gausman,10,gausmke01,706,tier1_bbref,Automatic match via bbref_id to Kevin Gausman +9850,Kevin Ginkel,10,ginkeke01,722,tier1_bbref,Automatic match via bbref_id to Kevin Ginkel +9851,Kevin Kelly,10,kellyke02,1025,tier1_bbref,Automatic match via bbref_id to Kevin Kelly +9852,Kevin Kiermaier,10,kiermke01,1039,tier1_bbref,Automatic match via bbref_id to Kevin Kiermaier +9853,Kevin Newman,10,newmake01,1420,tier1_bbref,Automatic match via bbref_id to Kevin Newman +9854,Kevin Pillar,10,pillake01,1557,tier1_bbref,Automatic match via bbref_id to Kevin Pillar +9855,Kirby Yates,10,yateski01,2211,tier1_bbref,Automatic match via bbref_id to Kirby Yates +9856,Kodai Senga,10,HALP,1800,tier2_name,Automatic match via exact name to Kodai Senga +9857,Kole Calhoun,10,HALP,306,tier2_name,Automatic match via exact name to Kole Calhoun +9858,Kolten Wong,10,HALP,2188,tier2_name,Automatic match via exact name to Kolten Wong +9859,Korey Lee,10,leeko01,1109,tier1_bbref,Automatic match via bbref_id to Korey Lee +9860,Kris Bryant,10,bryankr01,273,tier1_bbref,Automatic match via bbref_id to Kris Bryant +10097,Sam Hentges,10,hentgsa01,861,tier1_bbref,Automatic match via bbref_id to Sam Hentges +9861,Kutter Crawford,10,crawfku01,431,tier1_bbref,Automatic match via bbref_id to Kutter Crawford +9862,Kyle Bradish,10,bradiky01,235,tier1_bbref,Automatic match via bbref_id to Kyle Bradish +9863,Kyle Finnegan,10,finneky01,617,tier1_bbref,Automatic match via bbref_id to Kyle Finnegan +9864,Kyle Freeland,10,freelky01,650,tier1_bbref,Automatic match via bbref_id to Kyle Freeland +9865,Kyle Gibson,10,gibsoky01,715,tier1_bbref,Automatic match via bbref_id to Kyle Gibson +9866,Kyle Hendricks,10,hendrky01,856,tier1_bbref,Automatic match via bbref_id to Kyle Hendricks +9867,Kyle Higashioka,10,higasky01,895,tier1_bbref,Automatic match via bbref_id to Kyle Higashioka +9868,Kyle Isbel,10,isbelky01,956,tier1_bbref,Automatic match via bbref_id to Kyle Isbel +9869,Kyle Muller,10,mulleky01,1380,tier1_bbref,Automatic match via bbref_id to Kyle Muller +9870,Kyle Nelson,10,nelsoky01,1412,tier1_bbref,Automatic match via bbref_id to Kyle Nelson +9871,Kyle Schwarber,10,schwaky01,1784,tier1_bbref,Automatic match via bbref_id to Kyle Schwarber +9872,Kyle Tucker,10,tuckeky01,2023,tier1_bbref,Automatic match via bbref_id to Kyle Tucker +9873,Kyle Wright,10,HALP,2200,tier2_name,Automatic match via exact name to Kyle Wright +9874,LaMonte Wade Jr,10,wadela01,2095,tier1_bbref,Automatic match via bbref_id to LaMonte Wade Jr +9875,Lance Lynn,10,lynnla01,1173,tier1_bbref,Automatic match via bbref_id to Lance Lynn +9876,Lane Ramsey,10,HALP,1617,tier2_name,Automatic match via exact name to Lane Ramsey +9877,Lane Thomas,10,thomala02,1978,tier1_bbref,Automatic match via bbref_id to Lane Thomas +9878,Lars Nootbaar,10,nootbla01,1436,tier1_bbref,Automatic match via bbref_id to Lars Nootbaar +9879,Lawrence Butler,10,butlela01,292,tier1_bbref,Automatic match via bbref_id to Lawrence Butler +9880,Lenyn Sosa,10,sosale01,1877,tier1_bbref,Automatic match via bbref_id to Lenyn Sosa +9881,Leody Taveras,10,taverle01,1962,tier1_bbref,Automatic match via bbref_id to Leody Taveras +9882,Liover Peguero,10,HALP,1516,tier2_name,Automatic match via exact name to Liover Peguero +9883,Logan Allen,10,allenlo01,45,tier1_bbref,Automatic match via bbref_id to Logan Allen +9884,Logan Gilbert,10,gilbelo01,718,tier1_bbref,Automatic match via bbref_id to Logan Gilbert +9885,Logan OHoppe,10,HALP,1454,tier2_name,Automatic match via exact name to Logan OHoppe +9886,Logan Webb,10,webblo01,2127,tier1_bbref,Automatic match via bbref_id to Logan Webb +9887,Louie Varland,10,varlalo01,2057,tier1_bbref,Automatic match via bbref_id to Louie Varland +9888,Lourdes Gurriel Jr,10,gurrilo01,794,tier1_bbref,Automatic match via bbref_id to Lourdes Gurriel Jr +9889,Lucas Erceg,10,erceglu01,577,tier1_bbref,Automatic match via bbref_id to Lucas Erceg +9890,Lucas Giolito,10,HALP,724,tier2_name,Automatic match via exact name to Lucas Giolito +9891,Lucas Sims,10,simslu01,1826,tier1_bbref,Automatic match via bbref_id to Lucas Sims +9892,Luis Arraez,10,arraelu01,93,tier1_bbref,Automatic match via bbref_id to Luis Arraez +9893,Luis Campusano,10,campulu01,314,tier1_bbref,Automatic match via bbref_id to Luis Campusano +9894,Luis Castillo,10,castilu02,344,tier1_bbref,Automatic match via bbref_id to Luis Castillo +9895,Luis Cessa,10,HALP,361,tier2_name,Automatic match via exact name to Luis Cessa +9896,Luis Frias,10,friaslu01,658,tier1_bbref,Automatic match via bbref_id to Luis Frias +9897,Luis Garcia,10,garcilu03,3237,manual_new,Manual assignment to new SbaPlayer: Luis Garcia +9898,Luis Guillorme,10,guilllu01,792,tier1_bbref,Automatic match via bbref_id to Luis Guillorme +9899,Luis Matos,10,matoslu02,1240,tier1_bbref,Automatic match via bbref_id to Luis Matos +9900,Luis Medina,10,HALP,1293,tier2_name,Automatic match via exact name to Luis Medina +9901,Luis Ortiz,10,ortizlu02,10008901,emergency_new,"EMERGENCY: Unassigned player, needs new SbaPlayer record" +9902,Luis Patino,10,HALP,1504,tier2_name,Automatic match via exact name to Luis Patino +9903,Luis Rengifo,10,rengilu01,1632,tier1_bbref,Automatic match via bbref_id to Luis Rengifo +9904,Luis Robert,10,HALP,1660,tier2_name,Automatic match via exact name to Luis Robert +9905,Luis Severino,10,severlu01,1805,tier1_bbref,Automatic match via bbref_id to Luis Severino +9906,Luis Urias,10,uriaslu01,2039,tier1_bbref,Automatic match via bbref_id to Luis Urias +9907,Luis V Garcia,10,HALP,694,manual_existing,Manual match to existing SbaPlayer: Luis Garcia Jr +9908,Luke Maile,10,mailelu01,1185,tier1_bbref,Automatic match via bbref_id to Luke Maile +9909,Luke Raley,10,raleylu01,1602,tier1_bbref,Automatic match via bbref_id to Luke Raley +9910,Luke Weaver,10,weavelu01,2124,tier1_bbref,Automatic match via bbref_id to Luke Weaver +9911,Luken Baker,10,HALP,118,tier2_name,Automatic match via exact name to Luken Baker +9912,MacKenzie Gore,10,gorema01,754,tier1_bbref,Automatic match via bbref_id to MacKenzie Gore +9913,Maikel Garcia,10,garcima01,691,tier1_bbref,Automatic match via bbref_id to Maikel Garcia +9914,Manny Machado,10,machama01,1175,tier1_bbref,Automatic match via bbref_id to Manny Machado +9915,Manuel Margot,10,margoma01,1198,tier1_bbref,Automatic match via bbref_id to Manuel Margot +9916,Marcell Ozuna,10,ozunama01,1481,tier1_bbref,Automatic match via bbref_id to Marcell Ozuna +9917,Marco Gonzales,10,gonzama02,735,tier1_bbref,Automatic match via bbref_id to Marco Gonzales +9918,Marcus Semien,10,semiema01,1799,tier1_bbref,Automatic match via bbref_id to Marcus Semien +9919,Marcus Stroman,10,stromma01,1928,tier1_bbref,Automatic match via bbref_id to Marcus Stroman +9920,Mark Canha,10,canhama01,316,tier1_bbref,Automatic match via bbref_id to Mark Canha +9921,Mark Leiter,10,HALP,1112,tier2_name,Automatic match via exact name to Mark Leiter +9922,Mark Mathias,10,HALP,1234,tier2_name,Automatic match via exact name to Mark Mathias +9923,Mark Vientos,10,vientma01,2076,tier1_bbref,Automatic match via bbref_id to Mark Vientos +9924,Martin Maldonado,10,maldoma01,1187,tier1_bbref,Automatic match via bbref_id to Martin Maldonado +9925,Martin Perez,10,perezma02,1535,tier1_bbref,Automatic match via bbref_id to Martin Perez +9926,Masataka Yoshida,10,yoshima02,2216,tier1_bbref,Automatic match via bbref_id to Masataka Yoshida +9927,Mason Englert,10,englema01,575,tier1_bbref,Automatic match via bbref_id to Mason Englert +9928,Mason Miller,10,millema03,1329,tier1_bbref,Automatic match via bbref_id to Mason Miller +9929,Mason Thompson,10,HALP,1984,tier2_name,Automatic match via exact name to Mason Thompson +9930,Masyn Winn,10,winnma01,2180,tier1_bbref,Automatic match via bbref_id to Masyn Winn +9931,Matt Beaty,10,HALP,157,tier2_name,Automatic match via exact name to Matt Beaty +9932,Matt Boyd,10,HALP,230,tier2_name,Automatic match via exact name to Matthew Boyd +9933,Matt Brash,10,HALP,241,tier2_name,Automatic match via exact name to Matt Brash +9934,Matt Carpenter,10,carpema01,329,tier1_bbref,Automatic match via bbref_id to Matt Carpenter +9935,Matt Chapman,10,chapmma01,367,tier1_bbref,Automatic match via bbref_id to Matt Chapman +9936,Matt Duffy,10,HALP,542,tier2_name,Automatic match via exact name to Matt Duffy +9937,Matt Koch,10,kochma01,1066,tier1_bbref,Automatic match via bbref_id to Matt Koch +9938,Matt Manning,10,mannima02,1191,tier1_bbref,Automatic match via bbref_id to Matt Manning +9939,Matt McLain,10,HALP,1285,tier2_name,Automatic match via exact name to Matt McLain +9940,Matt Olson,10,olsonma02,1461,tier1_bbref,Automatic match via bbref_id to Matt Olson +9941,Matt Strahm,10,strahma01,1918,tier1_bbref,Automatic match via bbref_id to Matt Strahm +9942,Matt Thaiss,10,thaisma01,1975,tier1_bbref,Automatic match via bbref_id to Matt Thaiss +9943,Matt Vierling,10,vierlma01,2077,tier1_bbref,Automatic match via bbref_id to Matt Vierling +9944,Matt Wallner,10,wallnma01,2109,tier1_bbref,Automatic match via bbref_id to Matt Wallner +9945,Matthew Batten,10,battema01,147,tier1_bbref,Automatic match via bbref_id to Matthew Batten +9946,Matthew Liberatore,10,liberma01,1121,tier1_bbref,Automatic match via bbref_id to Matthew Liberatore +9947,Mauricio Dubon,10,dubonma01,538,tier1_bbref,Automatic match via bbref_id to Mauricio Dubon +9948,Mauricio Llovera,10,HALP,1131,tier2_name,Automatic match via exact name to Mauricio Llovera +9949,Max Fried,10,friedma01,659,tier1_bbref,Automatic match via bbref_id to Max Fried +9950,Max Kepler,10,keplema01,1031,tier1_bbref,Automatic match via bbref_id to Max Kepler +9951,Max Muncy,10,muncyma01,1382,tier1_bbref,Automatic match via bbref_id to Max Muncy +9952,Max Scherzer,10,HALP,1773,tier2_name,Automatic match via exact name to Max Scherzer +9953,Merrill Kelly,10,kellyme01,1020,tier1_bbref,Automatic match via bbref_id to Merrill Kelly +9954,Michael Chavis,10,HALP,371,tier2_name,Automatic match via exact name to Michael Chavis +9955,Michael Conforto,10,confomi01,407,tier1_bbref,Automatic match via bbref_id to Michael Conforto +9956,Michael Fulmer,10,HALP,666,tier2_name,Automatic match via exact name to Michael Fulmer +9957,Michael Grove,10,grovemi01,781,tier1_bbref,Automatic match via bbref_id to Michael Grove +9958,Michael Harris,10,HALP,827,tier2_name,Automatic match via exact name to Michael Harris +9959,Michael King,10,kingmi01,1047,tier1_bbref,Automatic match via bbref_id to Michael King +9960,Michael Kopech,10,kopecmi01,1071,tier1_bbref,Automatic match via bbref_id to Michael Kopech +9961,Michael Lorenzen,10,lorenmi01,1151,tier1_bbref,Automatic match via bbref_id to Michael Lorenzen +9962,Michael Massey,10,massemi02,1231,tier1_bbref,Automatic match via bbref_id to Michael Massey +9963,Michael Soroka,10,sorokmi01,1875,tier1_bbref,Automatic match via bbref_id to Michael Soroka +9964,Michael A Taylor,10,taylomi02,1963,tier1_bbref,Automatic match via bbref_id to Michael Taylor +9965,Michael Toglia,10,toglimi01,1994,tier1_bbref,Automatic match via bbref_id to Michael Toglia +9966,Michael Tonkin,10,tonkimi01,1998,tier1_bbref,Automatic match via bbref_id to Michael Tonkin +9967,Michael Wacha,10,wachami01,2093,tier1_bbref,Automatic match via bbref_id to Michael Wacha +9968,Mickey Moniak,10,moniami01,1350,tier1_bbref,Automatic match via bbref_id to Mickey Moniak +9969,Miguel Amaya,10,amayami01,64,tier1_bbref,Automatic match via bbref_id to Miguel Amaya +9970,Miguel Cabrera,10,HALP,298,tier2_name,Automatic match via exact name to Miguel Cabrera +9971,Miguel Castro,10,castrmi01,350,tier1_bbref,Automatic match via bbref_id to Miguel Castro +9972,Miguel Rojas,10,rojasmi02,1694,tier1_bbref,Automatic match via bbref_id to Miguel Rojas +9973,Miguel Vargas,10,vargami01,2055,tier1_bbref,Automatic match via bbref_id to Miguel Vargas +9974,Mike Baumann,10,baumami01,152,tier1_bbref,Automatic match via bbref_id to Mike Baumann +9975,Mike Brosseau,10,HALP,263,tier2_name,Automatic match via exact name to Mike Brosseau +9976,Mike Clevinger,10,clevimi01,392,tier1_bbref,Automatic match via bbref_id to Mike Clevinger +9977,Mike Ford,10,fordmi01,635,tier1_bbref,Automatic match via bbref_id to Mike Ford +9978,Mike Mayers,10,HALP,1251,tier2_name,Automatic match via exact name to Mike Mayers +9979,Mike Moustakas,10,HALP,1378,tier2_name,Automatic match via exact name to Mike Moustakas +9980,Mike Tauchman,10,tauchmi01,1961,tier1_bbref,Automatic match via bbref_id to Mike Tauchman +9981,Mike Trout,10,troutmi01,2019,tier1_bbref,Automatic match via bbref_id to Mike Trout +9982,Mike Yastrzemski,10,yastrmi01,2210,tier1_bbref,Automatic match via bbref_id to Mike Yastrzemski +9983,Miles Mikolas,10,mikolmi01,1317,tier1_bbref,Automatic match via bbref_id to Miles Mikolas +9984,Mitch Garver,10,garvemi01,702,tier1_bbref,Automatic match via bbref_id to Mitch Garver +9985,Mitch Haniger,10,hanigmi01,818,tier1_bbref,Automatic match via bbref_id to Mitch Haniger +9986,Mitch Keller,10,kellemi03,1017,tier1_bbref,Automatic match via bbref_id to Mitch Keller +9987,MJ Melendez,10,melenmj01,1299,tier1_bbref,Automatic match via bbref_id to MJ Melendez +9988,Mookie Betts,10,bettsmo01,187,tier1_bbref,Automatic match via bbref_id to Mookie Betts +9989,Myles Straw,10,HALP,1924,tier2_name,Automatic match via exact name to Myles Straw +9990,Nate Pearson,10,pearsna01,1513,tier1_bbref,Automatic match via bbref_id to Nate Pearson +9991,Nathan Eovaldi,10,eovalna01,576,tier1_bbref,Automatic match via bbref_id to Nathan Eovaldi +9992,Nathaniel Lowe,10,lowena01,1155,tier1_bbref,Automatic match via bbref_id to Nathaniel Lowe +9993,Nelson Velazquez,10,velazne01,2068,tier1_bbref,Automatic match via bbref_id to Nelson Velazquez +9994,Nick Ahmed,10,ahmedni01,26,tier1_bbref,Automatic match via bbref_id to Nick Ahmed +9995,Nick Allen,10,allenni02,46,tier1_bbref,Automatic match via bbref_id to Nick Allen +9996,Nick Anderson,10,anderni01,71,tier1_bbref,Automatic match via bbref_id to Nick Anderson +9997,Nicholas Castellanos,10,casteni01,340,tier1_bbref,Automatic match via bbref_id to Nicholas Castellanos +9998,Nick Fortes,10,forteni01,637,tier1_bbref,Automatic match via bbref_id to Nick Fortes +9999,Nick Lodolo,10,lodolni01,1135,tier1_bbref,Automatic match via bbref_id to Nick Lodolo +10000,Nick Madrigal,10,madrini01,1178,tier1_bbref,Automatic match via bbref_id to Nick Madrigal +10001,Nick Martinez,10,martini01,1224,tier1_bbref,Automatic match via bbref_id to Nick Martinez +10002,Nick Maton,10,HALP,1239,tier2_name,Automatic match via exact name to Nick Maton +10003,Nick Pivetta,10,pivetni01,1564,tier1_bbref,Automatic match via bbref_id to Nick Pivetta +10004,Nick Pratto,10,HALP,1583,tier2_name,Automatic match via exact name to Nick Pratto +10005,Nick Ramirez,10,ramirni01,1605,tier1_bbref,Automatic match via bbref_id to Nick Ramirez +10006,Nick Sandlin,10,sandlni01,1752,tier1_bbref,Automatic match via bbref_id to Nick Sandlin +10007,Nick Senzel,10,senzeni01,1802,tier1_bbref,Automatic match via bbref_id to Nick Senzel +10008,Nick Wittgren,10,HALP,2185,tier2_name,Automatic match via exact name to Nick Wittgren +10009,Nicky Lopez,10,lopezni01,1149,tier1_bbref,Automatic match via bbref_id to Nicky Lopez +10010,Nico Hoerner,10,hoernni01,909,tier1_bbref,Automatic match via bbref_id to Nico Hoerner +10011,Noah Syndergaard,10,HALP,1953,tier2_name,Automatic match via exact name to Noah Syndergaard +10012,Nolan Arenado,10,arenano01,88,tier1_bbref,Automatic match via bbref_id to Nolan Arenado +10013,Nolan Gorman,10,gormano01,755,tier1_bbref,Automatic match via bbref_id to Nolan Gorman +10014,Nolan Jones,10,jonesno01,994,tier1_bbref,Automatic match via bbref_id to Nolan Jones +10015,Nolan Schanuel,10,schanno01,1771,tier1_bbref,Automatic match via bbref_id to Nolan Schanuel +10016,Omar Narvaez,10,narvaom01,1401,tier1_bbref,Automatic match via bbref_id to Omar Narvaez +10017,Orlando Arcia,10,arciaor01,86,tier1_bbref,Automatic match via bbref_id to Orlando Arcia +10018,Oscar Colas,10,colasos01,396,tier1_bbref,Automatic match via bbref_id to Oscar Colas +10019,Osvaldo Bido,10,bidoos01,193,tier1_bbref,Automatic match via bbref_id to Osvaldo Bido +10020,Oswald Peraza,10,HALP,1528,tier2_name,Automatic match via exact name to Oswald Peraza +10021,Oswaldo Cabrera,10,cabreos01,303,tier1_bbref,Automatic match via bbref_id to Oswaldo Cabrera +10022,Owen Miller,10,milleow01,1327,tier1_bbref,Automatic match via bbref_id to Owen Miller +10023,Ozzie Albies,10,albieoz01,31,tier1_bbref,Automatic match via bbref_id to Ozzie Albies +10024,Pablo Lopez,10,lopezpa01,1146,tier1_bbref,Automatic match via bbref_id to Pablo Lopez +10025,Pablo Reyes,10,reyespa01,1637,tier1_bbref,Automatic match via bbref_id to Pablo Reyes +10026,Parker Meadows,10,meadopa01,1291,tier1_bbref,Automatic match via bbref_id to Parker Meadows +10027,Patrick Bailey,10,bailepa01,115,tier1_bbref,Automatic match via bbref_id to Patrick Bailey +10028,Patrick Corbin,10,corbipa01,416,tier1_bbref,Automatic match via bbref_id to Patrick Corbin +10029,Patrick Sandoval,10,sandopa02,1754,tier1_bbref,Automatic match via bbref_id to Patrick Sandoval +10030,Patrick Wisdom,10,wisdopa01,2181,tier1_bbref,Automatic match via bbref_id to Patrick Wisdom +10031,Paul Blackburn,10,blackpa01,204,tier1_bbref,Automatic match via bbref_id to Paul Blackburn +10032,Paul Goldschmidt,10,goldspa01,729,tier1_bbref,Automatic match via bbref_id to Paul Goldschmidt +10033,Paul Sewald,10,sewalpa01,1806,tier1_bbref,Automatic match via bbref_id to Paul Sewald +10034,Pavin Smith,10,smithpa04,1851,tier1_bbref,Automatic match via bbref_id to Pavin Smith +10035,Pedro Avila,10,avilape01,105,tier1_bbref,Automatic match via bbref_id to Pedro Avila +10036,Pete Alonso,10,alonspe01,53,tier1_bbref,Automatic match via bbref_id to Pete Alonso +10037,Pete Fairbanks,10,fairbpe01,592,tier1_bbref,Automatic match via bbref_id to Pete Fairbanks +10038,Peter Lambert,10,lambepe01,1088,tier1_bbref,Automatic match via bbref_id to Peter Lambert +10039,Peyton Battenfield,10,HALP,148,tier2_name,Automatic match via exact name to Peyton Battenfield +10040,Phil Bickford,10,HALP,191,tier2_name,Automatic match via exact name to Phil Bickford +10041,Phil Maton,10,matonph01,1238,tier1_bbref,Automatic match via bbref_id to Phil Maton +10042,Pierce Johnson,10,johnspi01,985,tier1_bbref,Automatic match via bbref_id to Pierce Johnson +10043,Quinn Priester,10,priesqu01,1586,tier1_bbref,Automatic match via bbref_id to Quinn Priester +10044,Rafael Devers,10,deverra01,499,tier1_bbref,Automatic match via bbref_id to Rafael Devers +10045,Rafael Montero,10,montera01,1352,tier1_bbref,Automatic match via bbref_id to Rafael Montero +10046,Rafael Ortega,10,ortegra01,1465,tier1_bbref,Automatic match via bbref_id to Rafael Ortega +10047,Raisel Iglesias,10,iglesra01,950,tier1_bbref,Automatic match via bbref_id to Raisel Iglesias +10048,Ramon Laureano,10,laurera01,1097,tier1_bbref,Automatic match via bbref_id to Ramon Laureano +10049,Ramon Urias,10,uriasra01,2037,tier1_bbref,Automatic match via bbref_id to Ramon Urias +10050,Randal Grichuk,10,grichra01,775,tier1_bbref,Automatic match via bbref_id to Randal Grichuk +10051,Randy Arozarena,10,arozara01,92,tier1_bbref,Automatic match via bbref_id to Randy Arozarena +10052,Ranger Suarez,10,suarera01,1936,tier1_bbref,Automatic match via bbref_id to Ranger Suarez +10053,Ray Kerr,10,kerrra01,1033,tier1_bbref,Automatic match via bbref_id to Ray Kerr +10054,Reese McGuire,10,mcguire01,1277,tier1_bbref,Automatic match via bbref_id to Reese McGuire +10055,Reese Olson,10,olsonre01,1462,tier1_bbref,Automatic match via bbref_id to Reese Olson +10056,Reid Detmers,10,detmere01,496,tier1_bbref,Automatic match via bbref_id to Reid Detmers +10057,Reynaldo Lopez,10,lopezre01,1145,tier1_bbref,Automatic match via bbref_id to Reynaldo Lopez +10058,Rich Hill,10,HALP,898,tier2_name,Automatic match via exact name to Rich Hill +10059,Richard Bleier,10,HALP,212,tier2_name,Automatic match via exact name to Richard Bleier +10060,Richard Lovelady,10,lovelri01,1153,tier1_bbref,Automatic match via bbref_id to Richard Lovelady +10061,Richie Palacios,10,palacri01,1488,tier1_bbref,Automatic match via bbref_id to Richie Palacios +10062,Riley Adams,10,adamsri03,17,tier1_bbref,Automatic match via bbref_id to Riley Adams +10063,Riley Greene,10,greenri03,771,tier1_bbref,Automatic match via bbref_id to Riley Greene +10064,Roansy Contreras,10,contrro01,412,tier1_bbref,Automatic match via bbref_id to Roansy Contreras +10065,Rob Refsnyder,10,refsnro01,1626,tier1_bbref,Automatic match via bbref_id to Rob Refsnyder +10066,Rob Zastryzny,10,HALP,2222,tier2_name,Automatic match via exact name to Rob Zastryzny +10067,Robbie Grossman,10,grossro01,779,tier1_bbref,Automatic match via bbref_id to Robbie Grossman +10068,Robert Garcia,10,garciro04,692,tier1_bbref,Automatic match via bbref_id to Robert Garcia +10069,Robert Stephenson,10,HALP,1904,tier2_name,Automatic match via exact name to Robert Stephenson +10070,Robert Suarez,10,suarero01,1938,tier1_bbref,Automatic match via bbref_id to Robert Suarez +10071,Rodolfo Castro,10,HALP,353,tier2_name,Automatic match via exact name to Rodolfo Castro +10072,Ron Marinaccio,10,marinro01,1199,tier1_bbref,Automatic match via bbref_id to Ron Marinaccio +10073,Ronald Acuna Jr,10,acunaro01,12,tier1_bbref,Automatic match via bbref_id to Ronald Acuna Jr +10074,Ronny Mauricio,10,HALP,1247,tier2_name,Automatic match via exact name to Ronny Mauricio +10075,Ross Stripling,10,stripro01,1927,tier1_bbref,Automatic match via bbref_id to Ross Stripling +10076,Rowdy Tellez,10,tellero01,1972,tier1_bbref,Automatic match via bbref_id to Rowdy Tellez +10077,Royce Lewis,10,lewisro02,1119,tier1_bbref,Automatic match via bbref_id to Royce Lewis +10078,Ryan Borucki,10,borucry01,222,tier1_bbref,Automatic match via bbref_id to Ryan Borucki +10079,Ryan Brasier,10,brasiry01,242,tier1_bbref,Automatic match via bbref_id to Ryan Brasier +10080,Ryan Feltner,10,feltnry01,603,tier1_bbref,Automatic match via bbref_id to Ryan Feltner +10081,Ryan Helsley,10,helslry01,853,tier1_bbref,Automatic match via bbref_id to Ryan Helsley +10082,Ryan Jeffers,10,jeffery01,975,tier1_bbref,Automatic match via bbref_id to Ryan Jeffers +10083,Ryan McKenna,10,mckenry01,1281,tier1_bbref,Automatic match via bbref_id to Ryan McKenna +10084,Ryan McMahon,10,mcmahry01,1286,tier1_bbref,Automatic match via bbref_id to Ryan McMahon +10085,Ryan Mountcastle,10,mountry01,1377,tier1_bbref,Automatic match via bbref_id to Ryan Mountcastle +10086,Ryan Noda,10,nodary01,1427,tier1_bbref,Automatic match via bbref_id to Ryan Noda +10087,Ryan OHearn,10,HALP,1453,tier2_name,Automatic match via exact name to Ryan OHearn +10088,Ryan Pepiot,10,pepiory01,1521,tier1_bbref,Automatic match via bbref_id to Ryan Pepiot +10089,Ryan Pressly,10,pressry01,1584,tier1_bbref,Automatic match via bbref_id to Ryan Pressly +10090,Ryan Walker,10,walkery01,2106,tier1_bbref,Automatic match via bbref_id to Ryan Walker +10091,Ryan Yarbrough,10,yarbrry01,2208,tier1_bbref,Automatic match via bbref_id to Ryan Yarbrough +10092,Ryne Nelson,10,nelsory01,1411,tier1_bbref,Automatic match via bbref_id to Ryne Nelson +10093,Ryne Stanek,10,stanery01,1892,tier1_bbref,Automatic match via bbref_id to Ryne Stanek +10094,Sal Frelick,10,frelisa01,657,tier1_bbref,Automatic match via bbref_id to Sal Frelick +10095,Salvador Perez,10,perezsa02,1534,tier1_bbref,Automatic match via bbref_id to Salvador Perez +10096,Sam Haggerty,10,haggesa01,803,tier1_bbref,Automatic match via bbref_id to Sam Haggerty +10098,Sam Hilliard,10,HALP,903,tier2_name,Automatic match via exact name to Sam Hilliard +10099,Sam Long,10,longsa01,1139,tier1_bbref,Automatic match via bbref_id to Sam Long +10100,Sam Moll,10,mollsa01,1346,tier1_bbref,Automatic match via bbref_id to Sam Moll +10101,Sammy Peralta,10,HALP,1526,tier2_name,Automatic match via exact name to Sammy Peralta +10102,Sandy Alcantara,10,HALP,35,tier2_name,Automatic match via exact name to Sandy Alcantara +10103,Santiago Espinal,10,espinsa01,582,tier1_bbref,Automatic match via bbref_id to Santiago Espinal +10104,Scott Alexander,10,alexasc02,36,tier1_bbref,Automatic match via bbref_id to Scott Alexander +10105,Scott Barlow,10,barlosc01,128,tier1_bbref,Automatic match via bbref_id to Scott Barlow +10106,Scott McGough,10,mcgousc01,1275,tier1_bbref,Automatic match via bbref_id to Scott McGough +10107,Sean Manaea,10,manaese01,1189,tier1_bbref,Automatic match via bbref_id to Sean Manaea +10108,Sean Murphy,10,murphse01,1390,tier1_bbref,Automatic match via bbref_id to Sean Murphy +10109,Seby Zavala,10,zavalse01,2223,tier1_bbref,Automatic match via bbref_id to Seby Zavala +10110,Seiya Suzuki,10,suzukse01,1946,tier1_bbref,Automatic match via bbref_id to Seiya Suzuki +10111,Seranthony Dominguez,10,dominse01,524,tier1_bbref,Automatic match via bbref_id to Seranthony Dominguez +10112,Seth Brown,10,brownse01,265,tier1_bbref,Automatic match via bbref_id to Seth Brown +10113,Seth Lugo,10,lugose01,1165,tier1_bbref,Automatic match via bbref_id to Seth Lugo +10114,Seth Martinez,10,martise01,1226,tier1_bbref,Automatic match via bbref_id to Seth Martinez +10115,Shane Bieber,10,biebesh01,194,tier1_bbref,Automatic match via bbref_id to Shane Bieber +10116,Shane McClanahan,10,HALP,1268,tier2_name,Automatic match via exact name to Shane McClanahan +10117,Shawn Armstrong,10,armstsh01,91,tier1_bbref,Automatic match via bbref_id to Shawn Armstrong +10118,Shea Langeliers,10,langesh01,1092,tier1_bbref,Automatic match via bbref_id to Shea Langeliers +10119,Shelby Miller,10,millesh01,1323,tier1_bbref,Automatic match via bbref_id to Shelby Miller +10120,Shintaro Fujinami,10,HALP,665,tier2_name,Automatic match via exact name to Shintaro Fujinami +10121,Shohei Ohtani,10,ohtansh01,1455,tier1_bbref,Automatic match via bbref_id to Shohei Ohtani +10122,Slade Cecconi,10,ceccosl01,356,tier1_bbref,Automatic match via bbref_id to Slade Cecconi +10123,Spencer Steer,10,steersp01,1900,tier1_bbref,Automatic match via bbref_id to Spencer Steer +10124,Spencer Strider,10,stridsp01,1926,tier1_bbref,Automatic match via bbref_id to Spencer Strider +10125,Spencer Torkelson,10,torkesp01,2000,tier1_bbref,Automatic match via bbref_id to Spencer Torkelson +10126,Starling Marte,10,martest01,1208,tier1_bbref,Automatic match via bbref_id to Starling Marte +10127,Stephen Nogosek,10,HALP,1430,tier2_name,Automatic match via exact name to Stephen Nogosek +10128,Steven Kwan,10,kwanst01,1080,tier1_bbref,Automatic match via bbref_id to Steven Kwan +10129,Steven Matz,10,matzst01,1243,tier1_bbref,Automatic match via bbref_id to Steven Matz +10130,Steven Okert,10,okertst01,1456,tier1_bbref,Automatic match via bbref_id to Steven Okert +10131,Steven Wilson,10,wilsost02,2169,tier1_bbref,Automatic match via bbref_id to Steven Wilson +10132,Stone Garrett,10,HALP,699,tier2_name,Automatic match via exact name to Stone Garrett +10133,Stuart Fairchild,10,faircst01,593,tier1_bbref,Automatic match via bbref_id to Stuart Fairchild +10134,Taijuan Walker,10,walketa01,2105,tier1_bbref,Automatic match via bbref_id to Taijuan Walker +10135,Taj Bradley,10,bradlta01,238,tier1_bbref,Automatic match via bbref_id to Taj Bradley +10136,Tanner Banks,10,banksta01,122,tier1_bbref,Automatic match via bbref_id to Tanner Banks +10137,Tanner Bibee,10,bibeeta01,189,tier1_bbref,Automatic match via bbref_id to Tanner Bibee +10138,Tanner Houck,10,houckta01,927,tier1_bbref,Automatic match via bbref_id to Tanner Houck +10139,Tanner Scott,10,scottta01,1788,tier1_bbref,Automatic match via bbref_id to Tanner Scott +10140,Tarik Skubal,10,skubata01,1836,tier1_bbref,Automatic match via bbref_id to Tarik Skubal +10141,Tayler Saucedo,10,sauceta01,1768,tier1_bbref,Automatic match via bbref_id to Tayler Saucedo +10142,Taylor Clarke,10,HALP,384,tier2_name,Automatic match via exact name to Taylor Clarke +10143,Taylor Rogers,10,rogerta01,1689,tier1_bbref,Automatic match via bbref_id to Taylor Rogers +10144,Taylor Walls,10,HALP,2110,tier2_name,Automatic match via exact name to Taylor Walls +10145,Taylor Ward,10,wardta01,2116,tier1_bbref,Automatic match via bbref_id to Taylor Ward +10146,Teoscar Hernandez,10,hernate01,873,tier1_bbref,Automatic match via bbref_id to Teoscar Hernandez +10147,Thaddeus Ward,10,HALP,2117,tier2_name,Automatic match via exact name to Thaddeus Ward +10148,Thairo Estrada,10,estrath01,587,tier1_bbref,Automatic match via bbref_id to Thairo Estrada +10149,Tim Anderson,10,anderti01,73,tier1_bbref,Automatic match via bbref_id to Tim Anderson +10150,Tim Hill,10,hillti01,900,tier1_bbref,Automatic match via bbref_id to Tim Hill +10151,Tim Mayza,10,mayzati01,1253,tier1_bbref,Automatic match via bbref_id to Tim Mayza +10152,TJ Friedl,10,friedtj01,660,tier1_bbref,Automatic match via bbref_id to TJ Friedl +10153,Tom Cosgrove,10,cosgrto01,422,tier1_bbref,Automatic match via bbref_id to Tom Cosgrove +10154,Tom Murphy,10,murphto04,1388,tier1_bbref,Automatic match via bbref_id to Tom Murphy +10155,Tommy Edman,10,HALP,558,tier2_name,Automatic match via exact name to Tommy Edman +10156,Tommy Henry,10,henryto01,859,tier1_bbref,Automatic match via bbref_id to Tommy Henry +10157,Tommy Hunter,10,HALP,941,tier2_name,Automatic match via exact name to Tommy Hunter +10158,Tommy Kahnle,10,kahnlto01,1006,tier1_bbref,Automatic match via bbref_id to Tommy Kahnle +10159,Tommy Pham,10,phamth01,1552,tier1_bbref,Automatic match via bbref_id to Tommy Pham +10160,Tony Gonsolin,10,HALP,734,tier2_name,Automatic match via exact name to Tony Gonsolin +10161,Tony Kemp,10,kempto01,1027,tier1_bbref,Automatic match via bbref_id to Tony Kemp +10162,Touki Toussaint,10,HALP,2005,tier2_name,Automatic match via exact name to Touki Toussaint +10163,Travis dArnaud,10,HALP,461,tier2_name,Automatic match via exact name to Travis dArnaud +10164,Travis Jankowski,10,jankotr01,967,tier1_bbref,Automatic match via bbref_id to Travis Jankowski +10165,Trea Turner,10,turnetr01,1,tier1_bbref,Automatic match via bbref_id to Trea Turner +10166,Trent Grisham,10,grishtr01,776,tier1_bbref,Automatic match via bbref_id to Trent Grisham +10167,Trent Thornton,10,thorntr01,1988,tier1_bbref,Automatic match via bbref_id to Trent Thornton +10168,Trevor Stephan,10,HALP,1902,tier2_name,Automatic match via exact name to Trevor Stephan +10169,Trevor Gott,10,HALP,758,tier2_name,Automatic match via exact name to Trevor Gott +10170,Trevor May,10,HALP,1248,tier2_name,Automatic match via exact name to Trevor May +10171,Trevor Megill,10,megiltr01,1294,tier1_bbref,Automatic match via bbref_id to Trevor Megill +10172,Trevor Richards,10,richatr01,1646,tier1_bbref,Automatic match via bbref_id to Trevor Richards +10173,Trevor Story,10,storytr01,1914,tier1_bbref,Automatic match via bbref_id to Trevor Story +10174,Trevor Williams,10,willitr01,2156,tier1_bbref,Automatic match via bbref_id to Trevor Williams +10175,Trey Mancini,10,HALP,1190,tier2_name,Automatic match via exact name to Trey Mancini +10176,Tristan Beck,10,HALP,158,tier2_name,Automatic match via exact name to Tristan Beck +10177,Triston Casas,10,casastr01,335,tier1_bbref,Automatic match via bbref_id to Triston Casas +10178,Tucker Davidson,10,HALP,464,tier2_name,Automatic match via exact name to Tucker Davidson +10179,Tucupita Marcano,10,HALP,1196,tier2_name,Automatic match via exact name to Tucupita Marcano +10180,Ty Blach,10,blachty01,202,tier1_bbref,Automatic match via bbref_id to Ty Blach +10181,Ty France,10,francty01,642,tier1_bbref,Automatic match via bbref_id to Ty France +10182,Tyler Alexander,10,alexaty01,37,tier1_bbref,Automatic match via bbref_id to Tyler Alexander +10183,Tyler Anderson,10,anderty01,68,tier1_bbref,Automatic match via bbref_id to Tyler Anderson +10184,Tyler Freeman,10,freemty01,654,tier1_bbref,Automatic match via bbref_id to Tyler Freeman +10185,Tyler Glasnow,10,glasnty01,726,tier1_bbref,Automatic match via bbref_id to Tyler Glasnow +10186,Tyler Holton,10,holtoty01,922,tier1_bbref,Automatic match via bbref_id to Tyler Holton +10187,Tyler Nevin,10,nevinty01,1417,tier1_bbref,Automatic match via bbref_id to Tyler Nevin +10188,Tyler ONeill,10,HALP,1463,tier2_name,Automatic match via exact name to Tyler ONeill +10189,Tyler Rogers,10,rogerty01,1691,tier1_bbref,Automatic match via bbref_id to Tyler Rogers +10190,Tyler Soderstrom,10,soderty01,1864,tier1_bbref,Automatic match via bbref_id to Tyler Soderstrom +10191,Tyler Stephenson,10,stephty01,1905,tier1_bbref,Automatic match via bbref_id to Tyler Stephenson +10192,Tyler Wells,10,wellsty01,2132,tier1_bbref,Automatic match via bbref_id to Tyler Wells +10193,Tylor Megill,10,megilty01,1295,tier1_bbref,Automatic match via bbref_id to Tylor Megill +10194,Tyrone Taylor,10,tayloty01,1965,tier1_bbref,Automatic match via bbref_id to Tyrone Taylor +10195,Vaughn Grissom,10,grissva01,777,tier1_bbref,Automatic match via bbref_id to Vaughn Grissom +10196,Victor Caratini,10,caratvi01,325,tier1_bbref,Automatic match via bbref_id to Victor Caratini +10197,Vince Velasquez,10,HALP,2065,tier2_name,Automatic match via exact name to Vince Velasquez +10198,Vinnie Pasquantino,10,pasquvi01,1503,tier1_bbref,Automatic match via bbref_id to Vinnie Pasquantino +10199,Vladimir Guerrero Jr,10,guerrvl02,789,tier1_bbref,Automatic match via bbref_id to Vladimir Guerrero Jr +10200,Wade Miley,10,mileywa01,1318,tier1_bbref,Automatic match via bbref_id to Wade Miley +10201,Wander Franco,10,HALP,646,tier2_name,Automatic match via exact name to Wander Franco +10202,Wandy Peralta,10,peralwa01,1524,tier1_bbref,Automatic match via bbref_id to Wandy Peralta +10203,Whit Merrifield,10,merriwh01,1309,tier1_bbref,Automatic match via bbref_id to Whit Merrifield +10204,Will Benson,10,bensowi01,179,tier1_bbref,Automatic match via bbref_id to Will Benson +10205,Will Brennan,10,brennwi02,250,tier1_bbref,Automatic match via bbref_id to Will Brennan +10206,Will D Smith,10,HALP,1841,manual_existing,Manual match to existing SbaPlayer: Will Smith +10207,Will Smith,10,smithwi05,1841,tier1_bbref,Automatic match via bbref_id to Will Smith +10208,Will Vest,10,vestwi01,2074,tier1_bbref,Automatic match via bbref_id to Will Vest +10209,Willi Castro,10,castrwi01,352,tier1_bbref,Automatic match via bbref_id to Willi Castro +10210,William Contreras,10,contrwi02,411,tier1_bbref,Automatic match via bbref_id to William Contreras +10211,Willson Contreras,10,contrwi01,410,tier1_bbref,Automatic match via bbref_id to Willson Contreras +10212,Willy Adames,10,adamewi01,14,tier1_bbref,Automatic match via bbref_id to Willy Adames +10213,Wilmer Flores,10,florewi01,627,tier1_bbref,Automatic match via bbref_id to Wilmer Flores +10214,Wilyer Abreu,10,abreuwi02,10,tier1_bbref,Automatic match via bbref_id to Wilyer Abreu +10215,Xander Bogaerts,10,bogaexa01,216,tier1_bbref,Automatic match via bbref_id to Xander Bogaerts +10216,Xavier Edwards,10,HALP,559,tier2_name,Automatic match via exact name to Xavier Edwards +10217,Xzavion Curry,10,curryxz01,454,tier1_bbref,Automatic match via bbref_id to Xzavion Curry +10218,Yainer Diaz,10,diazya02,511,tier1_bbref,Automatic match via bbref_id to Yainer Diaz +10219,Yan Gomes,10,gomesya01,731,tier1_bbref,Automatic match via bbref_id to Yan Gomes +10220,Yandy Diaz,10,diazya01,507,tier1_bbref,Automatic match via bbref_id to Yandy Diaz +10221,Yasmani Grandal,10,grandya01,761,tier1_bbref,Automatic match via bbref_id to Yasmani Grandal +10222,Yency Almonte,10,almonye01,50,tier1_bbref,Automatic match via bbref_id to Yency Almonte +10223,Yennier Cano,10,canoye01,320,tier1_bbref,Automatic match via bbref_id to Yennier Cano +10224,Yimi Garcia,10,garciyi01,680,tier1_bbref,Automatic match via bbref_id to Yimi Garcia +10225,Yoan Moncada,10,moncayo01,1348,tier1_bbref,Automatic match via bbref_id to Yoan Moncada +10226,Yordan Alvarez,10,alvaryo01,61,tier1_bbref,Automatic match via bbref_id to Yordan Alvarez +10227,Yu Chang,10,HALP,364,tier2_name,Automatic match via exact name to Yu Chang +10228,Yu Darvish,10,darviyu01,462,tier1_bbref,Automatic match via bbref_id to Yu Darvish +10229,Yuli Gurriel,10,HALP,793,tier2_name,Automatic match via exact name to Yuli Gurriel +10230,Yunior Marte,10,marteyu01,1211,tier1_bbref,Automatic match via bbref_id to Yunior Marte +10231,Yusei Kikuchi,10,kikucyu01,1040,tier1_bbref,Automatic match via bbref_id to Yusei Kikuchi +10232,Zac Gallen,10,galleza01,673,tier1_bbref,Automatic match via bbref_id to Zac Gallen +10233,Zach Davies,10,HALP,465,tier2_name,Automatic match via exact name to Zach Davies +10234,Zach Eflin,10,eflinza01,562,tier1_bbref,Automatic match via bbref_id to Zach Eflin +10235,Zach McKinstry,10,mckinza01,1284,tier1_bbref,Automatic match via bbref_id to Zach McKinstry +10236,Zach Neal,10,HALP,1406,tier2_name,Automatic match via exact name to Zach Neal +10237,Zach Neto,10,netoza01,1414,tier1_bbref,Automatic match via bbref_id to Zach Neto +10238,Zach Plesac,10,HALP,1566,tier2_name,Automatic match via exact name to Zach Plesac +10239,Zach Remillard,10,remilza01,1629,tier1_bbref,Automatic match via bbref_id to Zach Remillard +10240,Zack Gelof,10,gelofza01,709,tier1_bbref,Automatic match via bbref_id to Zack Gelof +10241,Zack Greinke,10,HALP,774,tier2_name,Automatic match via exact name to Zack Greinke +10242,Zack Littell,10,litteza01,1127,tier1_bbref,Automatic match via bbref_id to Zack Littell +10243,Zack Short,10,shortza01,1818,tier1_bbref,Automatic match via bbref_id to Zack Short +10244,Zack Thompson,10,thompza02,1985,tier1_bbref,Automatic match via bbref_id to Zack Thompson +10245,Zack Wheeler,10,wheelza01,2139,tier1_bbref,Automatic match via bbref_id to Zack Wheeler +10246,Yonny Chirinos,10,HALP,374,tier2_name,Automatic match via exact name to Yonny Chirinos +10247,AJ Pollock,10,HALP,1571,tier2_name,Automatic match via exact name to AJ Pollock +10248,AJ Smith Shawver,10,HALP,1856,tier2_name,Automatic match via exact name to AJ Smith Shawver +10249,Alfonso Rivas,10,HALP,1654,tier2_name,Automatic match via exact name to Alfonso Rivas +10250,Alika Williams,10,willial04,2161,tier1_bbref,Automatic match via bbref_id to Alika Williams +10251,Amir Garrett,10,garream01,698,tier1_bbref,Automatic match via bbref_id to Amir Garrett +10252,Amos Willingham,10,HALP,2165,tier2_name,Automatic match via exact name to Amos Willingham +10253,Andrew Bellatti,10,HALP,169,tier2_name,Automatic match via exact name to Andrew Bellatti +10254,Andrew Suarez,10,HALP,1935,tier2_name,Automatic match via exact name to Andrew Suarez +10255,Andrew Vasquez,10,HALP,2059,tier2_name,Automatic match via exact name to Andrew Vasquez +10256,Andrew Velazquez,10,HALP,2067,tier2_name,Automatic match via exact name to Andrew Velazquez +10257,Anthony Rendon,10,rendoan01,1630,tier1_bbref,Automatic match via bbref_id to Anthony Rendon +10258,Austin Hedges,10,hedgeau01,848,tier1_bbref,Automatic match via bbref_id to Austin Hedges +10259,Austin Nola,10,HALP,1432,tier2_name,Automatic match via exact name to Austin Nola +10260,Avisail Garcia,10,garciav01,678,tier1_bbref,Automatic match via bbref_id to Avisail Garcia +10261,Ben Rortvedt,10,rortvbe01,1709,tier1_bbref,Automatic match via bbref_id to Ben Rortvedt +10262,Billy McKinney,10,HALP,1283,tier2_name,Automatic match via exact name to Billy McKinney +10263,Blake Perkins,10,perkibl01,1543,tier1_bbref,Automatic match via bbref_id to Blake Perkins +10264,Bowden Francis,10,francbo01,644,tier1_bbref,Automatic match via bbref_id to Bowden Francis +10265,Brad Boxberger,10,HALP,229,tier2_name,Automatic match via exact name to Brad Boxberger +10266,Brad Miller,10,HALP,1322,tier2_name,Automatic match via exact name to Brad Miller +10267,Brandon Walter,10,HALP,2112,tier2_name,Automatic match via exact name to Brandon Walter +10268,Brayan Rocchio,10,rocchbr01,1667,tier1_bbref,Automatic match via bbref_id to Brayan Rocchio +10269,Brent Honeywell,10,HALP,923,tier2_name,Automatic match via exact name to Brent Honeywell +10270,Brett Phillips,10,HALP,1555,tier2_name,Automatic match via exact name to Brett Phillips +10271,Brett Sullivan,10,sullibr01,1941,tier1_bbref,Automatic match via bbref_id to Brett Sullivan +10272,Brett Wisely,10,wiselbr01,2182,tier1_bbref,Automatic match via bbref_id to Brett Wisely +10273,Bryce Jarvis,10,jarvibr01,970,tier1_bbref,Automatic match via bbref_id to Bryce Jarvis +10274,Bubba Thompson,10,thompbu01,1986,tier1_bbref,Automatic match via bbref_id to Bubba Thompson +10275,Calvin Faucher,10,fauchca01,599,tier1_bbref,Automatic match via bbref_id to Calvin Faucher +10276,Carter Kieboom,10,HALP,1038,tier2_name,Automatic match via exact name to Carter Kieboom +10277,Casey Lawrence,10,HALP,1099,tier2_name,Automatic match via exact name to Casey Lawrence +10278,Chasen Shreve,10,HALP,1819,tier2_name,Automatic match via exact name to Chasen Shreve +10279,Chris Devenski,10,devench02,498,tier1_bbref,Automatic match via bbref_id to Chris Devenski +10280,Christian Arroyo,10,HALP,96,tier2_name,Automatic match via exact name to Christian Arroyo +10281,Clint Frazier,10,HALP,649,tier2_name,Automatic match via exact name to Clint Frazier +10282,Cody Bradford,10,bradfco01,233,tier1_bbref,Automatic match via bbref_id to Cody Bradford +10283,Colin Selby,10,selbyco01,1797,tier1_bbref,Automatic match via bbref_id to Colin Selby +10284,Collin Snider,10,snideco01,1862,tier1_bbref,Automatic match via bbref_id to Collin Snider +10285,Conner Capel,10,capelco01,323,tier1_bbref,Automatic match via bbref_id to Conner Capel +10286,Connor Brogdon,10,brogdco01,261,tier1_bbref,Automatic match via bbref_id to Connor Brogdon +10287,Cooper Criswell,10,criswco01,438,tier1_bbref,Automatic match via bbref_id to Cooper Criswell +10288,Corey Dickerson,10,HALP,513,tier2_name,Automatic match via exact name to Corey Dickerson +10289,Corey Kluber,10,HALP,1060,tier2_name,Automatic match via exact name to Corey Kluber +10290,Curtis Mead,10,meadcu01,1289,tier1_bbref,Automatic match via bbref_id to Curtis Mead +10291,Dallas Keuchel,10,HALP,1035,tier2_name,Automatic match via exact name to Dallas Keuchel +10292,Dane Myers,10,myersda01,1396,tier1_bbref,Automatic match via bbref_id to Dane Myers +10293,Danny Mendick,10,mendida01,1302,tier1_bbref,Automatic match via bbref_id to Danny Mendick +10294,David Villar,10,HALP,2080,tier2_name,Automatic match via exact name to David Villar +10295,Dinelson Lamet,10,lametdi01,1090,tier1_bbref,Automatic match via bbref_id to Dinelson Lamet +10296,Dominic Canzone,10,canzodo01,322,tier1_bbref,Automatic match via bbref_id to Dominic Canzone +10297,Dominic Leone,10,leonedo01,1116,tier1_bbref,Automatic match via bbref_id to Dominic Leone +10298,Drew Rasmussen,10,HALP,1618,tier2_name,Automatic match via exact name to Drew Rasmussen +10299,Duane Underwood,10,HALP,2033,tier2_name,Automatic match via exact name to Duane Underwood +10300,Dylan Dodd,10,HALP,522,tier2_name,Automatic match via exact name to Dylan Dodd +10301,Erasmo Ramirez,10,ramirer02,1604,tier1_bbref,Automatic match via bbref_id to Erasmo Ramirez +10302,Eric Hosmer,10,HALP,926,tier2_name,Automatic match via exact name to Eric Hosmer +10303,Eric Lauer,10,HALP,1096,tier2_name,Automatic match via exact name to Eric Lauer +10305,Franchy Cordero,10,HALP,418,tier2_name,Automatic match via exact name to Franchy Cordero +10306,Garrett Mitchell,10,HALP,1340,tier2_name,Automatic match via exact name to Garrett Mitchell +10307,Grant Anderson,10,andergr01,75,tier1_bbref,Automatic match via bbref_id to Grant Anderson +10308,Hanser Alberto,10,HALP,30,tier2_name,Automatic match via exact name to Hanser Alberto +10309,Hunter Dozier,10,HALP,533,tier2_name,Automatic match via exact name to Hunter Dozier +10310,Hunter Gaddis,10,gaddihu01,669,tier1_bbref,Automatic match via bbref_id to Hunter Gaddis +10311,Hunter Goodman,10,goodmhu01,747,tier1_bbref,Automatic match via bbref_id to Hunter Goodman +10312,Jackie Bradley Jr,10,HALP,239,tier2_name,Automatic match via exact name to Jackie Bradley Jr +10313,Jacob deGrom,10,HALP,484,tier2_name,Automatic match via exact name to Jacob deGrom +10314,Jake Marisnick,10,HALP,1200,tier2_name,Automatic match via exact name to Jake Marisnick +10315,Jared Walsh,10,walshja01,2111,tier1_bbref,Automatic match via bbref_id to Jared Walsh +10316,Jay Jackson,10,jacksja01,959,tier1_bbref,Automatic match via bbref_id to Jay Jackson +10317,Jesse Chavez,10,chaveje01,370,tier1_bbref,Automatic match via bbref_id to Jesse Chavez +10318,Jesus Aguilar,10,HALP,25,tier2_name,Automatic match via exact name to Jesus Aguilar +10319,Jhoan Duran,10,duranjh01,550,tier1_bbref,Automatic match via bbref_id to Jhoan Duran +10320,Jimmy Cordero,10,HALP,419,tier2_name,Automatic match via exact name to Jimmy Cordero +10321,Joe La Sorsa,10,HALP,1081,tier2_name,Automatic match via exact name to Joe La Sorsa +10322,Joey Bart,10,bartjo01,142,tier1_bbref,Automatic match via bbref_id to Joey Bart +10323,Johnny Cueto,10,HALP,451,tier2_name,Automatic match via exact name to Johnny Cueto +10324,Jon Singleton,10,singljo02,1828,tier1_bbref,Automatic match via bbref_id to Jon Singleton +10325,Jonathan Aranda,10,arandjo01,82,tier1_bbref,Automatic match via bbref_id to Jonathan Aranda +10326,Jonathan Davis,10,HALP,470,tier2_name,Automatic match via exact name to Jonathan Davis +10327,Jonathan Schoop,10,HALP,1779,tier2_name,Automatic match via exact name to Jonathan Schoop +10328,Jordan Luplow,10,HALP,1168,tier2_name,Automatic match via exact name to Jordan Luplow +10329,Jorge Lopez,10,lopezjo02,1144,tier1_bbref,Automatic match via bbref_id to Jorge Lopez +10330,Jorge Polanco,10,polanjo01,1570,tier1_bbref,Automatic match via bbref_id to Jorge Polanco +10331,Jose Miranda,10,miranjo01,1337,tier1_bbref,Automatic match via bbref_id to Jose Miranda +10332,Josh Donaldson,10,HALP,526,tier2_name,Automatic match via exact name to Josh Donaldson +10333,Josh Fleming,10,flemijo01,623,tier1_bbref,Automatic match via bbref_id to Josh Fleming +10334,Josh Harrison,10,HALP,829,tier2_name,Automatic match via exact name to Josh Harrison +10335,Juan Yepez,10,HALP,2213,tier2_name,Automatic match via exact name to Juan Yepez +10336,Justin Bruihl,10,HALP,271,tier2_name,Automatic match via exact name to Justin Bruihl +10337,Kaleb Ort,10,HALP,1464,tier2_name,Automatic match via exact name to Kaleb Ort +10338,Karl Kauffmann,10,HALP,1010,tier2_name,Automatic match via exact name to Karl Kauffmann +10339,Keaton Winn,10,winnke01,2179,tier1_bbref,Automatic match via bbref_id to Keaton Winn +10340,Keegan Akin,10,akinke01,27,tier1_bbref,Automatic match via bbref_id to Keegan Akin +10341,Keegan Thompson,10,thompke02,1982,tier1_bbref,Automatic match via bbref_id to Keegan Thompson +10342,Kenny Rosenberg,10,HALP,1712,tier2_name,Automatic match via exact name to Kenny Rosenberg +10343,Keynan Middleton,10,HALP,1316,tier2_name,Automatic match via exact name to Keynan Middleton +10344,Kevin Herget,10,hergeke01,864,tier1_bbref,Automatic match via bbref_id to Kevin Herget +10345,Kevin Smith,10,smithke05,1854,tier1_bbref,Automatic match via bbref_id to Kevin Smith +10346,Kody Clemens,10,clemeko01,390,tier1_bbref,Automatic match via bbref_id to Kody Clemens +10347,Kyle Farmer,10,farmeky01,598,tier1_bbref,Automatic match via bbref_id to Kyle Farmer +10348,Kyle Harrison,10,harriky01,830,tier1_bbref,Automatic match via bbref_id to Kyle Harrison +10349,Luis H Garcia,10,HALP,3244,manual_new,Manual assignment to new SbaPlayer: Luis H Garcia +10350,Luke Jackson,10,jackslu01,960,tier1_bbref,Automatic match via bbref_id to Luke Jackson +10351,Luke Voit,10,HALP,2087,tier2_name,Automatic match via exact name to Luke Voit +10352,Matt Barnes,10,barnema01,131,tier1_bbref,Automatic match via bbref_id to Matt Barnes +10353,Matt Carasiti,10,carasma01,324,tier1_bbref,Automatic match via bbref_id to Matt Carasiti +10354,Matt Mervis,10,mervima01,1312,tier1_bbref,Automatic match via bbref_id to Matt Mervis +10355,Matt Moore,10,moorema02,1357,tier1_bbref,Automatic match via bbref_id to Matt Moore +10356,Matt Waldron,10,waldrma01,2102,tier1_bbref,Automatic match via bbref_id to Matt Waldron +10357,Michael Brantley,10,HALP,240,tier2_name,Automatic match via exact name to Michael Brantley +10358,Michael Busch,10,buschmi02,288,tier1_bbref,Automatic match via bbref_id to Michael Busch +10359,Michael Rucker,10,HALP,1721,tier2_name,Automatic match via exact name to Michael Rucker +10360,Michael Stefanic,10,HALP,1901,tier2_name,Automatic match via exact name to Michael Stefanic +10361,Miguel Andujar,10,andujmi01,78,tier1_bbref,Automatic match via bbref_id to Miguel Andujar +10362,Mike Zunino,10,HALP,2234,tier2_name,Automatic match via exact name to Mike Zunino +10363,Miles Mastrobuoni,10,mastrmi01,1232,tier1_bbref,Automatic match via bbref_id to Miles Mastrobuoni +10364,Nelson Cruz,10,HALP,447,tier2_name,Automatic match via exact name to Nelson Cruz +10365,Nestor Cortes Jr,10,cortene01,421,tier1_bbref,Automatic match via bbref_id to Nestor Cortes Jr +10366,Nick Gonzales,10,gonzani01,736,tier1_bbref,Automatic match via bbref_id to Nick Gonzales +10367,Nick Gordon,10,gordoni01,752,tier1_bbref,Automatic match via bbref_id to Nick Gordon +10368,Nick Loftin,10,loftini01,1136,tier1_bbref,Automatic match via bbref_id to Nick Loftin +10369,Noah Davis,10,davisno01,472,tier1_bbref,Automatic match via bbref_id to Noah Davis +10370,Noelvi Marte,10,HALP,1212,tier2_name,Automatic match via exact name to Noelvi Marte +10371,Oscar Gonzalez,10,HALP,744,tier2_name,Automatic match via exact name to Oscar Gonzalez +10372,Osleivis Basabe,10,HALP,143,tier2_name,Automatic match via exact name to Osleivis Basabe +10373,Paul DeJong,10,dejonpa01,485,tier1_bbref,Automatic match via bbref_id to Paul DeJong +10374,Peter Strzelecki,10,strzepe01,1930,tier1_bbref,Automatic match via bbref_id to Peter Strzelecki +10375,Raimel Tapia,10,HALP,1957,tier2_name,Automatic match via exact name to Raimel Tapia +10376,Randy Vasquez,10,vasqura02,2060,tier1_bbref,Automatic match via bbref_id to Randy Vasquez +10377,Rene Pinto,10,pintore02,1561,tier1_bbref,Automatic match via bbref_id to Rene Pinto +10378,Romy Gonzalez,10,gonzaro01,745,tier1_bbref,Automatic match via bbref_id to Romy Gonzalez +10379,Ronel Blanco,10,blancro01,208,tier1_bbref,Automatic match via bbref_id to Ronel Blanco +10380,Rougned Odor,10,HALP,1451,tier2_name,Automatic match via exact name to Rougned Odor +10381,Ryan Thompson,10,thompry02,1983,tier1_bbref,Automatic match via bbref_id to Ryan Thompson +10382,Ryan Weathers,10,weathry01,2123,tier1_bbref,Automatic match via bbref_id to Ryan Weathers +10383,Samad Taylor,10,taylosa04,1969,tier1_bbref,Automatic match via bbref_id to Samad Taylor +10384,Sean Hjelle,10,hjellse01,906,tier1_bbref,Automatic match via bbref_id to Sean Hjelle +10385,Sonny Gray,10,grayso01,765,tier1_bbref,Automatic match via bbref_id to Sonny Gray +10386,Spencer Turnbull,10,turnbsp01,2028,tier1_bbref,Automatic match via bbref_id to Spencer Turnbull +10387,Taylor Motter,10,HALP,1376,tier2_name,Automatic match via exact name to Taylor Motter +10388,Thomas Hatch,10,HALP,10009388,emergency_new,"EMERGENCY: Unassigned player, needs new SbaPlayer record" +10389,Tim Herrin,10,herriti01,886,tier1_bbref,Automatic match via bbref_id to Tim Herrin +10390,Tommy Doyle,10,HALP,530,tier2_name,Automatic match via exact name to Tommy Doyle +10391,Trayce Thompson,10,HALP,1980,tier2_name,Automatic match via exact name to Trayce Thompson +10392,Trevor Larnach,10,larnatr01,1094,tier1_bbref,Automatic match via bbref_id to Trevor Larnach +10393,Tucker Barnhart,10,barnhtu01,135,tier1_bbref,Automatic match via bbref_id to Tucker Barnhart +10394,Tyler Mahle,10,HALP,1183,tier2_name,Automatic match via exact name to Tyler Mahle +10395,Victor Gonzalez,10,gonzavi02,743,tier1_bbref,Automatic match via bbref_id to Victor Gonzalez +10396,Victor Robles,10,roblevi01,1666,tier1_bbref,Automatic match via bbref_id to Victor Robles +10397,Vidal Brujan,10,brujavi01,272,tier1_bbref,Automatic match via bbref_id to Vidal Brujan +10398,Wil Myers,10,HALP,1395,tier2_name,Automatic match via exact name to Wil Myers +10399,Willie Calhoun,10,calhowi01,307,tier1_bbref,Automatic match via bbref_id to Willie Calhoun +10400,Yerry De Los Santos,10,HALP,481,tier2_name,Automatic match via exact name to Yerry De Los Santos +10401,Yohan Ramirez,10,ramiryo01,1611,tier1_bbref,Automatic match via bbref_id to Yohan Ramirez +10402,Yonathan Daza,10,HALP,476,tier2_name,Automatic match via exact name to Yonathan Daza +10403,Aaron Bummer,11,bummeaa01,279,tier1_bbref,Automatic match via bbref_id to Aaron Bummer +10404,Aaron Civale,11,civalaa01,383,tier1_bbref,Automatic match via bbref_id to Aaron Civale +10405,Aaron Hicks,11,hicksaa01,892,tier1_bbref,Automatic match via bbref_id to Aaron Hicks +10406,Aaron Judge,11,judgeaa01,3,tier1_bbref,Automatic match via bbref_id to Aaron Judge +10407,Aaron Loup,11,HALP,1152,tier2_name,Automatic match via exact name to Aaron Loup +10408,Aaron Nola,11,nolaaa01,1433,tier1_bbref,Automatic match via bbref_id to Aaron Nola +10409,Abner Uribe,11,uribeab01,2040,tier1_bbref,Automatic match via bbref_id to Abner Uribe +10410,Adam Duvall,11,duvalad01,553,tier1_bbref,Automatic match via bbref_id to Adam Duvall +10411,Adam Frazier,11,fraziad01,648,tier1_bbref,Automatic match via bbref_id to Adam Frazier +10412,Adam Ottavino,11,ottavad01,1475,tier1_bbref,Automatic match via bbref_id to Adam Ottavino +10413,Adam Wainwright,11,HALP,2099,tier2_name,Automatic match via exact name to Adam Wainwright +10414,Adbert Alzolay,11,alzolad01,63,tier1_bbref,Automatic match via bbref_id to Adbert Alzolay +10415,Adley Rutschman,11,rutscad01,1729,tier1_bbref,Automatic match via bbref_id to Adley Rutschman +10416,Adolis Garcia,11,garciad02,690,tier1_bbref,Automatic match via bbref_id to Adolis Garcia +10417,Adrian Houser,11,housead01,928,tier1_bbref,Automatic match via bbref_id to Adrian Houser +10418,Adrian Martinez,11,HALP,1225,tier2_name,Automatic match via exact name to Adrian Martinez +10419,AJ Minter,11,minteaj01,1336,tier1_bbref,Automatic match via bbref_id to AJ Minter +10420,AJ Puk,11,pukaj01,1592,tier1_bbref,Automatic match via bbref_id to AJ Puk +10421,Akil Baddoo,11,baddoak01,109,tier1_bbref,Automatic match via bbref_id to Akil Baddoo +10422,Alan Trejo,11,trejoal01,2012,tier1_bbref,Automatic match via bbref_id to Alan Trejo +10423,Albert Abreu,11,HALP,9,tier2_name,Automatic match via exact name to Albert Abreu +10424,Alec Bohm,11,bohmal01,217,tier1_bbref,Automatic match via bbref_id to Alec Bohm +10425,Alec Burleson,11,burleal01,285,tier1_bbref,Automatic match via bbref_id to Alec Burleson +10426,Alec Marsh,11,marshal01,1206,tier1_bbref,Automatic match via bbref_id to Alec Marsh +10427,Aledmys Diaz,11,HALP,505,tier2_name,Automatic match via exact name to Aledmys Diaz +10428,Alejandro Kirk,11,kirkal01,1056,tier1_bbref,Automatic match via bbref_id to Alejandro Kirk +10429,Alek Manoah,11,manoaal01,1192,tier1_bbref,Automatic match via bbref_id to Alek Manoah +10430,Alek Thomas,11,thomaal01,1979,tier1_bbref,Automatic match via bbref_id to Alek Thomas +10431,Alex Bregman,11,bregmal01,248,tier1_bbref,Automatic match via bbref_id to Alex Bregman +10432,Alex Call,11,callal02,308,tier1_bbref,Automatic match via bbref_id to Alex Call +10433,Alex Cobb,11,HALP,394,tier2_name,Automatic match via exact name to Alex Cobb +10434,Alex Faedo,11,faedoal01,591,tier1_bbref,Automatic match via bbref_id to Alex Faedo +10435,Alex Kirilloff,11,kirilal01,1055,tier1_bbref,Automatic match via bbref_id to Alex Kirilloff +10436,Alex Lange,11,langeal01,1091,tier1_bbref,Automatic match via bbref_id to Alex Lange +10437,Alex Verdugo,11,verdual01,2069,tier1_bbref,Automatic match via bbref_id to Alex Verdugo +10438,Alex Vesia,11,vesiaal01,2072,tier1_bbref,Automatic match via bbref_id to Alex Vesia +10439,Alex Wood,11,woodal02,2193,tier1_bbref,Automatic match via bbref_id to Alex Wood +10440,Alex Young,11,HALP,2217,tier2_name,Automatic match via exact name to Alex Young +10441,Alexis Diaz,11,diazal03,509,tier1_bbref,Automatic match via bbref_id to Alexis Diaz +10442,Allan Winans,11,winanal01,2173,tier1_bbref,Automatic match via bbref_id to Allan Winans +10443,Amed Rosario,11,rosaram01,1711,tier1_bbref,Automatic match via bbref_id to Amed Rosario +10444,Andre Jackson,11,HALP,962,tier2_name,Automatic match via exact name to Andre Jackson +10445,Andre Pallante,11,pallaan01,1492,tier1_bbref,Automatic match via bbref_id to Andre Pallante +10446,Andres Gimenez,11,gimenan01,721,tier1_bbref,Automatic match via bbref_id to Andres Gimenez +10447,Andres Machado,11,HALP,1176,tier2_name,Automatic match via exact name to Andres Machado +10448,Andres Munoz,11,munozan01,1384,tier1_bbref,Automatic match via bbref_id to Andres Munoz +10449,Andrew Abbott,11,abbotan01,4,tier1_bbref,Automatic match via bbref_id to Andrew Abbott +10450,Andrew Benintendi,11,beninan01,177,tier1_bbref,Automatic match via bbref_id to Andrew Benintendi +10451,Andrew Chafin,11,chafian01,363,tier1_bbref,Automatic match via bbref_id to Andrew Chafin +10452,Andrew Heaney,11,heanean01,843,tier1_bbref,Automatic match via bbref_id to Andrew Heaney +10453,Andrew Knizner,11,kniznan01,1065,tier1_bbref,Automatic match via bbref_id to Andrew Knizner +10454,Andrew McCutchen,11,mccutan01,1272,tier1_bbref,Automatic match via bbref_id to Andrew McCutchen +10455,Andrew Nardi,11,nardian01,1400,tier1_bbref,Automatic match via bbref_id to Andrew Nardi +10456,Andrew Vaughn,11,vaughan01,2061,tier1_bbref,Automatic match via bbref_id to Andrew Vaughn +10457,Andrew Wantz,11,HALP,2115,tier2_name,Automatic match via exact name to Andrew Wantz +10458,Andruw Monasterio,11,monasan01,1347,tier1_bbref,Automatic match via bbref_id to Andruw Monasterio +10459,Andy Ibanez,11,ibanean01,948,tier1_bbref,Automatic match via bbref_id to Andy Ibanez +10460,Angel Perdomo,11,HALP,1530,tier2_name,Automatic match via exact name to Angel Perdomo +10461,Angel Zerpa,11,zerpaan01,2224,tier1_bbref,Automatic match via bbref_id to Angel Zerpa +10462,Anthony Bass,11,HALP,145,tier2_name,Automatic match via exact name to Anthony Bass +10463,Anthony DeSclafani,11,HALP,493,tier2_name,Automatic match via exact name to Anthony DeSclafani +10464,Anthony Rizzo,11,rizzoan01,1658,tier1_bbref,Automatic match via bbref_id to Anthony Rizzo +10465,Anthony Santander,11,santaan02,1764,tier1_bbref,Automatic match via bbref_id to Anthony Santander +10466,Anthony Volpe,11,volpean01,2088,tier1_bbref,Automatic match via bbref_id to Anthony Volpe +10467,Aroldis Chapman,11,chapmar01,366,tier1_bbref,Automatic match via bbref_id to Aroldis Chapman +10468,Austin Adams,11,adamsau02,16,tier1_bbref,Automatic match via bbref_id to Austin Adams +10469,Austin Barnes,11,barneau01,132,tier1_bbref,Automatic match via bbref_id to Austin Barnes +10470,Austin Cox,11,HALP,427,tier2_name,Automatic match via exact name to Austin Cox +10471,Austin Gomber,11,gombeau01,730,tier1_bbref,Automatic match via bbref_id to Austin Gomber +10472,Austin Hays,11,haysau01,839,tier1_bbref,Automatic match via bbref_id to Austin Hays +10473,Austin Pruitt,11,pruitau01,1588,tier1_bbref,Automatic match via bbref_id to Austin Pruitt +10474,Austin Riley,11,rileyau01,1649,tier1_bbref,Automatic match via bbref_id to Austin Riley +10475,Austin Slater,11,slateau01,1838,tier1_bbref,Automatic match via bbref_id to Austin Slater +10476,Austin Voth,11,vothau01,2091,tier1_bbref,Automatic match via bbref_id to Austin Voth +10477,Austin Wells,11,wellsau01,2131,tier1_bbref,Automatic match via bbref_id to Austin Wells +10478,Austin Wynns,11,HALP,2202,tier2_name,Automatic match via exact name to Austin Wynns +10479,Bailey Falter,11,falteba01,594,tier1_bbref,Automatic match via bbref_id to Bailey Falter +10480,Bailey Ober,11,oberba01,1447,tier1_bbref,Automatic match via bbref_id to Bailey Ober +10481,Beau Brieske,11,briesbe01,256,tier1_bbref,Automatic match via bbref_id to Beau Brieske +10482,Ben Lively,11,livelbe01,1130,tier1_bbref,Automatic match via bbref_id to Ben Lively +10483,Blake Sabol,11,sabolbl01,1735,tier1_bbref,Automatic match via bbref_id to Blake Sabol +10484,Blake Snell,11,snellbl01,1861,tier1_bbref,Automatic match via bbref_id to Blake Snell +10485,Bo Bichette,11,bichebo01,190,tier1_bbref,Automatic match via bbref_id to Bo Bichette +10486,Bo Naylor,11,naylobo01,1405,tier1_bbref,Automatic match via bbref_id to Bo Naylor +10487,Bobby Miller,11,millebo06,1326,tier1_bbref,Automatic match via bbref_id to Bobby Miller +10488,Bobby Witt Jr,11,wittbo02,2184,tier1_bbref,Automatic match via bbref_id to Bobby Witt Jr +10489,Brad Hand,11,HALP,816,tier2_name,Automatic match via exact name to Brad Hand +10490,Brad Keller,11,kellebr01,1016,tier1_bbref,Automatic match via bbref_id to Brad Keller +10491,Brady Singer,11,singebr01,1827,tier1_bbref,Automatic match via bbref_id to Brady Singer +10492,Brandon Belt,11,HALP,173,tier2_name,Automatic match via exact name to Brandon Belt +10493,Brandon Bielak,11,bielabr01,195,tier1_bbref,Automatic match via bbref_id to Brandon Bielak +10494,Brandon Crawford,11,crawfbr01,430,tier1_bbref,Automatic match via bbref_id to Brandon Crawford +10495,Brandon Dixon,11,HALP,520,tier2_name,Automatic match via exact name to Brandon Dixon +10496,Brandon Drury,11,drurybr01,535,tier1_bbref,Automatic match via bbref_id to Brandon Drury +10497,Brandon Lowe,11,lowebr01,1156,tier1_bbref,Automatic match via bbref_id to Brandon Lowe +10498,Brandon Marsh,11,marshbr02,1205,tier1_bbref,Automatic match via bbref_id to Brandon Marsh +10499,Brandon Nimmo,11,nimmobr01,1425,tier1_bbref,Automatic match via bbref_id to Brandon Nimmo +10500,Brandon Pfaadt,11,pfaadbr01,1551,tier1_bbref,Automatic match via bbref_id to Brandon Pfaadt +10501,Brandon Williamson,11,HALP,2164,tier2_name,Automatic match via exact name to Brandon Williamson +10502,Brandon Woodruff,11,HALP,2196,tier2_name,Automatic match via exact name to Brandon Woodruff +10503,Braxton Garrett,11,garrebr01,701,tier1_bbref,Automatic match via bbref_id to Braxton Garrett +10504,Brayan Bello,11,bellobr01,171,tier1_bbref,Automatic match via bbref_id to Brayan Bello +10505,Brendan Donovan,11,donovbr01,527,tier1_bbref,Automatic match via bbref_id to Brendan Donovan +10506,Brendan Rodgers,11,rodgebr02,1668,tier1_bbref,Automatic match via bbref_id to Brendan Rodgers +10507,Brendan White,11,HALP,2144,tier2_name,Automatic match via exact name to Brendan White +10508,Brennan Bernardino,11,bernabr01,181,tier1_bbref,Automatic match via bbref_id to Brennan Bernardino +10509,Brent Headrick,11,HALP,841,tier2_name,Automatic match via exact name to Brent Headrick +10510,Brent Rooker,11,rookebr01,1708,tier1_bbref,Automatic match via bbref_id to Brent Rooker +10511,Brent Suter,11,suterbr01,1943,tier1_bbref,Automatic match via bbref_id to Brent Suter +10512,Brenton Doyle,11,doylebr02,531,tier1_bbref,Automatic match via bbref_id to Brenton Doyle +10513,Brett Baty,11,batybr01,149,tier1_bbref,Automatic match via bbref_id to Brett Baty +10514,Brian Anderson,11,HALP,69,tier2_name,Automatic match via exact name to Brian Anderson +10515,Brice Turang,11,turanbr02,2026,tier1_bbref,Automatic match via bbref_id to Brice Turang +10516,Brock Burke,11,burkebr01,284,tier1_bbref,Automatic match via bbref_id to Brock Burke +10517,Brock Stewart,11,stewabr01,1908,tier1_bbref,Automatic match via bbref_id to Brock Stewart +10518,Brooks Raley,11,raleybr01,1601,tier1_bbref,Automatic match via bbref_id to Brooks Raley +10519,Brusdar Graterol,11,HALP,763,tier2_name,Automatic match via exact name to Brusdar Graterol +10520,Bryan Abreu,11,abreubr01,8,tier1_bbref,Automatic match via bbref_id to Bryan Abreu +10521,Bryan Baker,11,HALP,117,tier2_name,Automatic match via exact name to Bryan Baker +10522,Bryan De La Cruz,11,delacbr01,479,tier1_bbref,Automatic match via bbref_id to Bryan De La Cruz +10523,Bryan Hoeing,11,hoeinbr01,908,tier1_bbref,Automatic match via bbref_id to Bryan Hoeing +10524,Bryan Reynolds,11,reynobr01,1641,tier1_bbref,Automatic match via bbref_id to Bryan Reynolds +10525,Bryan Shaw,11,shawbr01,1808,tier1_bbref,Automatic match via bbref_id to Bryan Shaw +10526,Bryan Woo,11,woobr01,2191,tier1_bbref,Automatic match via bbref_id to Bryan Woo +10527,Bryce Elder,11,elderbr01,564,tier1_bbref,Automatic match via bbref_id to Bryce Elder +10528,Bryce Harper,11,harpebr03,823,tier1_bbref,Automatic match via bbref_id to Bryce Harper +10529,Bryce Miller,11,millebr04,1328,tier1_bbref,Automatic match via bbref_id to Bryce Miller +10530,Bryse Wilson,11,wilsobr02,2171,tier1_bbref,Automatic match via bbref_id to Bryse Wilson +10531,Bryson Stott,11,stottbr01,1915,tier1_bbref,Automatic match via bbref_id to Bryson Stott +10532,Buck Farmer,11,farmebu01,597,tier1_bbref,Automatic match via bbref_id to Buck Farmer +10533,Byron Buxton,11,buxtoby01,295,tier1_bbref,Automatic match via bbref_id to Byron Buxton +10534,Cade Marlowe,11,HALP,1202,tier2_name,Automatic match via exact name to Cade Marlowe +10535,Cal Quantrill,11,quantca01,1593,tier1_bbref,Automatic match via bbref_id to Cal Quantrill +10536,Cal Raleigh,11,raleica01,1600,tier1_bbref,Automatic match via bbref_id to Cal Raleigh +10537,Caleb Ferguson,11,ferguca01,605,tier1_bbref,Automatic match via bbref_id to Caleb Ferguson +10538,Caleb Thielbar,11,thielca01,1977,tier1_bbref,Automatic match via bbref_id to Caleb Thielbar +10539,Cam Gallagher,11,HALP,670,tier2_name,Automatic match via exact name to Cam Gallagher +10540,Camilo Doval,11,dovalca01,529,tier1_bbref,Automatic match via bbref_id to Camilo Doval +10541,Carl Edwards Jr,11,HALP,560,tier2_name,Automatic match via exact name to Carl Edwards Jr +10542,Carlos Carrasco,11,carraca01,331,tier1_bbref,Automatic match via bbref_id to Carlos Carrasco +10543,Carlos Correa,11,correca01,420,tier1_bbref,Automatic match via bbref_id to Carlos Correa +10544,Carlos Estevez,11,estevca01,585,tier1_bbref,Automatic match via bbref_id to Carlos Estevez +10545,Carlos Hernandez,11,hernaca04,880,tier1_bbref,Automatic match via bbref_id to Carlos Hernandez +10546,Carlos Perez,11,HALP,1537,tier2_name,Automatic match via exact name to Carlos Perez +10547,Carlos Rodon,11,rodonca01,1670,tier1_bbref,Automatic match via bbref_id to Carlos Rodon +10548,Carlos Santana,11,santaca01,1759,tier1_bbref,Automatic match via bbref_id to Carlos Santana +10549,Carmen Mlodzinski,11,mlodzca01,1343,tier1_bbref,Automatic match via bbref_id to Carmen Mlodzinski +10550,Carson Kelly,11,kellyca02,1023,tier1_bbref,Automatic match via bbref_id to Carson Kelly +10551,Casey Schmitt,11,schmica01,1775,tier1_bbref,Automatic match via bbref_id to Casey Schmitt +10552,Cavan Biggio,11,biggica01,196,tier1_bbref,Automatic match via bbref_id to Cavan Biggio +10553,Ceddanne Rafaela,11,rafaece01,1597,tier1_bbref,Automatic match via bbref_id to Ceddanne Rafaela +10554,Cedric Mullins,11,mullice01,1381,tier1_bbref,Automatic match via bbref_id to Cedric Mullins +10555,Chad Kuhl,11,HALP,1078,tier2_name,Automatic match via exact name to Chad Kuhl +10556,Chad Wallach,11,HALP,2108,tier2_name,Automatic match via exact name to Chad Wallach +10557,Charlie Blackmon,11,blackch02,205,tier1_bbref,Automatic match via bbref_id to Charlie Blackmon +10558,Charlie Morton,11,mortoch02,1375,tier1_bbref,Automatic match via bbref_id to Charlie Morton +10559,Chas McCormick,11,mccorch01,1269,tier1_bbref,Automatic match via bbref_id to Chas McCormick +10560,Chase Anderson,11,anderch01,67,tier1_bbref,Automatic match via bbref_id to Chase Anderson +10561,Chase Silseth,11,silsech01,1824,tier1_bbref,Automatic match via bbref_id to Chase Silseth +10562,Chris Bassitt,11,bassich01,146,tier1_bbref,Automatic match via bbref_id to Chris Bassitt +10563,Chris Flexen,11,flexech01,626,tier1_bbref,Automatic match via bbref_id to Chris Flexen +10564,Chris Martin,11,martich02,1214,tier1_bbref,Automatic match via bbref_id to Chris Martin +10565,Chris Murphy,11,HALP,1391,tier2_name,Automatic match via exact name to Chris Murphy +10566,Chris Sale,11,salech01,1739,tier1_bbref,Automatic match via bbref_id to Chris Sale +10567,Chris Stratton,11,stratch01,1922,tier1_bbref,Automatic match via bbref_id to Chris Stratton +10568,Chris Taylor,11,tayloch03,1964,tier1_bbref,Automatic match via bbref_id to Chris Taylor +10569,Christian Bethancourt,11,bethach01,185,tier1_bbref,Automatic match via bbref_id to Christian Bethancourt +10570,Christian Encarnacion Strand,11,HALP,573,tier2_name,Automatic match via exact name to Christian Encarnacion Strand +10571,Christian Vazquez,11,vazquch01,2063,tier1_bbref,Automatic match via bbref_id to Christian Vazquez +10572,Christian Walker,11,walkech02,2104,tier1_bbref,Automatic match via bbref_id to Christian Walker +10573,Christian Yelich,11,yelicch01,2212,tier1_bbref,Automatic match via bbref_id to Christian Yelich +10574,Christopher Morel,11,morelch01,1364,tier1_bbref,Automatic match via bbref_id to Christopher Morel +10575,Cionel Perez,11,perezci01,1540,tier1_bbref,Automatic match via bbref_id to Cionel Perez +10576,CJ Abrams,11,abramcj01,6,tier1_bbref,Automatic match via bbref_id to CJ Abrams +10577,CJ Cron,11,HALP,441,tier2_name,Automatic match via exact name to CJ Cron +10578,Clarke Schmidt,11,schmicl01,1774,tier1_bbref,Automatic match via bbref_id to Clarke Schmidt +10579,Clay Holmes,11,holmecl01,919,tier1_bbref,Automatic match via bbref_id to Clay Holmes +10580,Clayton Kershaw,11,HALP,1034,tier2_name,Automatic match via exact name to Clayton Kershaw +10581,Cody Bellinger,11,bellico01,170,tier1_bbref,Automatic match via bbref_id to Cody Bellinger +10582,Cody Bolton,11,boltoco01,219,tier1_bbref,Automatic match via bbref_id to Cody Bolton +10583,Cole Irvin,11,irvinco01,954,tier1_bbref,Automatic match via bbref_id to Cole Irvin +10584,Cole Ragans,11,raganco01,1598,tier1_bbref,Automatic match via bbref_id to Cole Ragans +10585,Cole Sands,11,sandsco01,1755,tier1_bbref,Automatic match via bbref_id to Cole Sands +10586,Colin Holderman,11,holdeco01,913,tier1_bbref,Automatic match via bbref_id to Colin Holderman +10587,Colin Poche,11,pocheco01,1568,tier1_bbref,Automatic match via bbref_id to Colin Poche +10588,Colin Rea,11,reaco01,1621,tier1_bbref,Automatic match via bbref_id to Colin Rea +10589,Collin McHugh,11,HALP,1278,tier2_name,Automatic match via exact name to Collin McHugh +10590,Colton Cowser,11,cowseco01,426,tier1_bbref,Automatic match via bbref_id to Colton Cowser +10591,Connor Joe,11,joeco01,983,tier1_bbref,Automatic match via bbref_id to Connor Joe +10592,Connor Seabold,11,HALP,1792,tier2_name,Automatic match via exact name to Connor Seabold +10593,Connor Wong,11,wongco01,2189,tier1_bbref,Automatic match via bbref_id to Connor Wong +10594,Corbin Burnes,11,burneco01,286,tier1_bbref,Automatic match via bbref_id to Corbin Burnes +10595,Corbin Carroll,11,carroco02,332,tier1_bbref,Automatic match via bbref_id to Corbin Carroll +10596,Corey Julks,11,julksco01,1001,tier1_bbref,Automatic match via bbref_id to Corey Julks +10597,Corey Seager,11,seageco01,1794,tier1_bbref,Automatic match via bbref_id to Corey Seager +10598,Cory Abbott,11,HALP,5,tier2_name,Automatic match via exact name to Cory Abbott +10599,Craig Kimbrel,11,kimbrcr01,1043,tier1_bbref,Automatic match via bbref_id to Craig Kimbrel +10600,Cristian Javier,11,javiecr01,971,tier1_bbref,Automatic match via bbref_id to Cristian Javier +10601,Cristian Pache,11,pachecr01,1482,tier1_bbref,Automatic match via bbref_id to Cristian Pache +10602,Cristopher Sanchez,11,sanchcr01,1748,tier1_bbref,Automatic match via bbref_id to Cristopher Sanchez +10603,Curt Casali,11,casalcu01,334,tier1_bbref,Automatic match via bbref_id to Curt Casali +10604,Dairon Blanco,11,blancda02,209,tier1_bbref,Automatic match via bbref_id to Dairon Blanco +10605,Dakota Hudson,11,hudsoda02,934,tier1_bbref,Automatic match via bbref_id to Dakota Hudson +10606,Dane Dunning,11,dunnida01,548,tier1_bbref,Automatic match via bbref_id to Dane Dunning +10607,Daniel Bard,11,HALP,125,tier2_name,Automatic match via exact name to Daniel Bard +10608,Daniel Coulombe,11,couloda01,10009608,emergency_new,"EMERGENCY: Unassigned player, needs new SbaPlayer record" +10609,Daniel Duarte,11,duartda01,536,tier1_bbref,Automatic match via bbref_id to Daniel Duarte +10610,Daniel Lynch,11,HALP,1172,tier2_name,Automatic match via exact name to Daniel Lynch +10611,Daniel Palencia,11,palenda01,1490,tier1_bbref,Automatic match via bbref_id to Daniel Palencia +10612,Daniel Vogelbach,11,vogelda01,2085,tier1_bbref,Automatic match via bbref_id to Daniel Vogelbach +10613,Danny Jansen,11,janseda01,969,tier1_bbref,Automatic match via bbref_id to Danny Jansen +10614,Dansby Swanson,11,swansda01,1947,tier1_bbref,Automatic match via bbref_id to Dansby Swanson +10615,Dany Jimenez,11,jimenda01,981,tier1_bbref,Automatic match via bbref_id to Dany Jimenez +10616,Daulton Varsho,11,varshda01,2058,tier1_bbref,Automatic match via bbref_id to Daulton Varsho +10617,Dauri Moreta,11,HALP,1367,tier2_name,Automatic match via exact name to Dauri Moreta +10618,David Bednar,11,bednada01,162,tier1_bbref,Automatic match via bbref_id to David Bednar +10619,David Fletcher,11,fletcda02,624,tier1_bbref,Automatic match via bbref_id to David Fletcher +10620,David Fry,11,fryda01,663,tier1_bbref,Automatic match via bbref_id to David Fry +10621,David Hensley,11,HALP,860,tier2_name,Automatic match via exact name to David Hensley +10622,David Peralta,11,peralda01,1522,tier1_bbref,Automatic match via bbref_id to David Peralta +10623,David Peterson,11,HALP,1548,tier2_name,Automatic match via exact name to David Peterson +10624,David Robertson,11,roberda08,1662,tier1_bbref,Automatic match via bbref_id to David Robertson +10625,Davis Schneider,11,schneda03,1777,tier1_bbref,Automatic match via bbref_id to Davis Schneider +10626,Dean Kremer,11,kremede01,1077,tier1_bbref,Automatic match via bbref_id to Dean Kremer +10627,Derek Law,11,lawde01,1098,tier1_bbref,Automatic match via bbref_id to Derek Law +10628,Devin Williams,11,HALP,2158,tier2_name,Automatic match via exact name to Devin Williams +10629,DJ LeMahieu,11,HALP,1114,tier2_name,Automatic match via exact name to DJ LeMahieu +10630,DJ Stewart,11,stewadj01,1909,tier1_bbref,Automatic match via bbref_id to DJ Stewart +10631,Domingo German,11,HALP,713,tier2_name,Automatic match via exact name to Domingo German +10632,Dominic Fletcher,11,fletcdo01,625,tier1_bbref,Automatic match via bbref_id to Dominic Fletcher +10633,Dominic Smith,11,smithdo02,1849,tier1_bbref,Automatic match via bbref_id to Dominic Smith +10634,Donovan Solano,11,solando01,1868,tier1_bbref,Automatic match via bbref_id to Donovan Solano +10635,Drew Rom,11,HALP,1698,tier2_name,Automatic match via exact name to Drew Rom +10636,Drew Smith,11,smithdr01,1848,tier1_bbref,Automatic match via bbref_id to Drew Smith +10637,Drew Smyly,11,smylydr01,1858,tier1_bbref,Automatic match via bbref_id to Drew Smyly +10638,Drew VerHagen,11,HALP,2070,tier2_name,Automatic match via exact name to Drew VerHagen +10639,Drew Waters,11,HALP,2120,tier2_name,Automatic match via exact name to Drew Waters +10640,Drey Jameson,11,HALP,966,tier2_name,Automatic match via exact name to Drey Jameson +10641,Dustin May,11,HALP,1249,tier2_name,Automatic match via exact name to Dustin May +10642,Dylan Carlson,11,carlsdy01,327,tier1_bbref,Automatic match via bbref_id to Dylan Carlson +10643,Dylan Cease,11,ceasedy01,355,tier1_bbref,Automatic match via bbref_id to Dylan Cease +10644,Dylan Covey,11,HALP,425,tier2_name,Automatic match via exact name to Dylan Covey +10645,Dylan Floro,11,florody01,629,tier1_bbref,Automatic match via bbref_id to Dylan Floro +10646,Dylan Lee,11,leedy01,1108,tier1_bbref,Automatic match via bbref_id to Dylan Lee +10647,Dylan Moore,11,mooredy01,1358,tier1_bbref,Automatic match via bbref_id to Dylan Moore +10648,Eddie Rosario,11,rosared01,1710,tier1_bbref,Automatic match via bbref_id to Eddie Rosario +10649,Edmundo Sosa,11,sosaed01,1876,tier1_bbref,Automatic match via bbref_id to Edmundo Sosa +10650,Edouard Julien,11,julieed01,1000,tier1_bbref,Automatic match via bbref_id to Edouard Julien +10651,Eduardo Escobar,11,HALP,581,tier2_name,Automatic match via exact name to Eduardo Escobar +10652,Eduardo Rodriguez,11,HALP,1675,tier2_name,Automatic match via exact name to Eduardo Rodriguez +10653,Edward Cabrera,11,cabreed02,302,tier1_bbref,Automatic match via bbref_id to Edward Cabrera +10654,Edward Olivares,11,olivaed02,1458,tier1_bbref,Automatic match via bbref_id to Edward Olivares +10655,Elehuris Montero,11,monteel01,1353,tier1_bbref,Automatic match via bbref_id to Elehuris Montero +10656,Eli Morgan,11,morgael01,1369,tier1_bbref,Automatic match via bbref_id to Eli Morgan +10657,Elias Diaz,11,diazel01,502,tier1_bbref,Automatic match via bbref_id to Elias Diaz +10658,Elly De La Cruz,11,delacel01,480,tier1_bbref,Automatic match via bbref_id to Elly De La Cruz +10659,Eloy Jimenez,11,jimenel02,980,tier1_bbref,Automatic match via bbref_id to Eloy Jimenez +10660,Elvis Andrus,11,HALP,77,tier2_name,Automatic match via exact name to Elvis Andrus +10661,Elvis Peguero,11,pegueel01,1515,tier1_bbref,Automatic match via bbref_id to Elvis Peguero +10662,Emilio Pagan,11,paganem01,1484,tier1_bbref,Automatic match via bbref_id to Emilio Pagan +10663,Emmanuel Clase,11,claseem01,385,tier1_bbref,Automatic match via bbref_id to Emmanuel Clase +10664,Emmanuel Rivera,11,riverem01,1657,tier1_bbref,Automatic match via bbref_id to Emmanuel Rivera +10665,Emmet Sheehan,11,HALP,1810,tier2_name,Automatic match via exact name to Emmet Sheehan +10666,Endy Rodriguez,11,HALP,1685,tier2_name,Automatic match via exact name to Endy Rodriguez +10667,Enmanuel Valdez,11,valdeen01,2049,tier1_bbref,Automatic match via bbref_id to Enmanuel Valdez +10668,Enrique Hernandez,11,hernaen02,871,tier1_bbref,Automatic match via bbref_id to Enrique Hernandez +10669,Enyel De Los Santos,11,delosen01,482,tier1_bbref,Automatic match via bbref_id to Enyel De Los Santos +10670,Eric Haase,11,HALP,801,tier2_name,Automatic match via exact name to Eric Haase +10671,Erik Swanson,11,swanser01,1948,tier1_bbref,Automatic match via bbref_id to Erik Swanson +10672,Esteury Ruiz,11,ruizes01,1726,tier1_bbref,Automatic match via bbref_id to Esteury Ruiz +10673,Estevan Florial,11,flories01,628,tier1_bbref,Automatic match via bbref_id to Estevan Florial +10674,Eugenio Suarez,11,suareeu01,1934,tier1_bbref,Automatic match via bbref_id to Eugenio Suarez +10675,Eury Perez,11,HALP,1542,tier2_name,Automatic match via exact name to Eury Perez +10676,Evan Carter,11,carteev01,333,tier1_bbref,Automatic match via bbref_id to Evan Carter +10677,Evan Longoria,11,HALP,1140,tier2_name,Automatic match via exact name to Evan Longoria +10678,Evan Phillips,11,phillev01,3238,manual_new,Manual assignment to new SbaPlayer: Evan Phillips +10679,Everson Pereira,11,HALP,1532,tier2_name,Automatic match via exact name to Everson Pereira +10680,Ezequiel Duran,11,duranez01,551,tier1_bbref,Automatic match via bbref_id to Ezequiel Duran +10681,Ezequiel Tovar,11,tovarez01,2007,tier1_bbref,Automatic match via bbref_id to Ezequiel Tovar +10682,Felix Bautista,11,HALP,154,tier2_name,Automatic match via exact name to Felix Bautista +10683,Fernando Cruz,11,cruzfe01,448,tier1_bbref,Automatic match via bbref_id to Fernando Cruz +10684,Fernando Tatis Jr,11,tatisfe02,1960,tier1_bbref,Automatic match via bbref_id to Fernando Tatis Jr +10685,Framber Valdez,11,valdefr01,2048,tier1_bbref,Automatic match via bbref_id to Framber Valdez +10686,Francisco Alvarez,11,alvarfr01,62,tier1_bbref,Automatic match via bbref_id to Francisco Alvarez +10687,Francisco Lindor,11,lindofr01,1124,tier1_bbref,Automatic match via bbref_id to Francisco Lindor +10688,Francisco Mejia,11,HALP,3239,manual_new,Manual assignment to new SbaPlayer: Francisco Mejia +10689,Freddie Freeman,11,freemfr01,652,tier1_bbref,Automatic match via bbref_id to Freddie Freeman +10690,Freddy Fermin,11,fermifr01,606,tier1_bbref,Automatic match via bbref_id to Freddy Fermin +10691,Freddy Peralta,11,peralfr01,1525,tier1_bbref,Automatic match via bbref_id to Freddy Peralta +10692,Gabe Speier,11,speiega01,1885,tier1_bbref,Automatic match via bbref_id to Gabe Speier +10693,Gabriel Arias,11,ariasga01,89,tier1_bbref,Automatic match via bbref_id to Gabriel Arias +10694,Gabriel Moreno,11,morenga01,1366,tier1_bbref,Automatic match via bbref_id to Gabriel Moreno +10695,Garrett Cooper,11,coopega03,415,tier1_bbref,Automatic match via bbref_id to Garrett Cooper +10696,Garrett Hampson,11,hampsga01,814,tier1_bbref,Automatic match via bbref_id to Garrett Hampson +10697,Garrett Stubbs,11,stubbga01,1931,tier1_bbref,Automatic match via bbref_id to Garrett Stubbs +10698,Garrett Whitlock,11,whitlga01,2146,tier1_bbref,Automatic match via bbref_id to Garrett Whitlock +10699,Gary Sanchez,11,sanchga02,1746,tier1_bbref,Automatic match via bbref_id to Gary Sanchez +10700,Gavin Hollowell,11,HALP,918,tier2_name,Automatic match via exact name to Gavin Hollowell +10701,Gavin Sheets,11,sheetga01,1811,tier1_bbref,Automatic match via bbref_id to Gavin Sheets +10702,Gavin Stone,11,stonega01,1913,tier1_bbref,Automatic match via bbref_id to Gavin Stone +10703,Gavin Williams,11,HALP,2160,tier2_name,Automatic match via exact name to Gavin Williams +10704,Genesis Cabrera,11,cabrege01,301,tier1_bbref,Automatic match via bbref_id to Genesis Cabrera +10705,George Kirby,11,kirbyge01,1054,tier1_bbref,Automatic match via bbref_id to George Kirby +10706,George Soriano,11,soriage01,1873,tier1_bbref,Automatic match via bbref_id to George Soriano +10707,George Springer,11,springe01,1888,tier1_bbref,Automatic match via bbref_id to George Springer +10708,Geraldo Perdomo,11,perdoge01,1531,tier1_bbref,Automatic match via bbref_id to Geraldo Perdomo +10709,Gerrit Cole,11,HALP,398,tier2_name,Automatic match via exact name to Gerrit Cole +10710,Giancarlo Stanton,11,stantmi03,1893,tier1_bbref,Automatic match via bbref_id to Giancarlo Stanton +10711,Gio Urshela,11,urshegi01,2042,tier1_bbref,Automatic match via bbref_id to Gio Urshela +10712,Giovanny Gallegos,11,gallegi01,672,tier1_bbref,Automatic match via bbref_id to Giovanny Gallegos +10713,Gleyber Torres,11,torregl01,2003,tier1_bbref,Automatic match via bbref_id to Gleyber Torres +10714,Graham Ashcraft,11,ashcrgr01,99,tier1_bbref,Automatic match via bbref_id to Graham Ashcraft +10715,Grant Hartwig,11,hartwgr01,834,tier1_bbref,Automatic match via bbref_id to Grant Hartwig +10716,Grayson Rodriguez,11,rodrigr01,1684,tier1_bbref,Automatic match via bbref_id to Grayson Rodriguez +10717,Gregory Santos,11,HALP,1767,tier2_name,Automatic match via exact name to Gregory Santos +10718,Gregory Soto,11,sotogr01,1878,tier1_bbref,Automatic match via bbref_id to Gregory Soto +10719,Griffin Canning,11,cannigr01,317,tier1_bbref,Automatic match via bbref_id to Griffin Canning +10720,Griffin Jax,11,jaxgr01,972,tier1_bbref,Automatic match via bbref_id to Griffin Jax +10721,Gunnar Henderson,11,hendegu01,855,tier1_bbref,Automatic match via bbref_id to Gunnar Henderson +10722,Ha Seong Kim,11,HALP,1042,tier2_name,Automatic match via exact name to Ha Seong Kim +10723,Harold Castro,11,HALP,349,tier2_name,Automatic match via exact name to Harold Castro +10724,Harold Ramirez,11,ramirha02,1609,tier1_bbref,Automatic match via bbref_id to Harold Ramirez +10725,Harrison Bader,11,baderha01,110,tier1_bbref,Automatic match via bbref_id to Harrison Bader +10726,Hayden Wesneski,11,wesneha01,2137,tier1_bbref,Automatic match via bbref_id to Hayden Wesneski +10727,Hector Neris,11,nerishe01,1413,tier1_bbref,Automatic match via bbref_id to Hector Neris +10728,Henry Davis,11,davishe01,473,tier1_bbref,Automatic match via bbref_id to Henry Davis +10729,Henry Ramos,11,HALP,1614,tier2_name,Automatic match via exact name to Henry Ramos +10730,Hoby Milner,11,milneho01,1332,tier1_bbref,Automatic match via bbref_id to Hoby Milner +10731,Hogan Harris,11,harriho03,826,tier1_bbref,Automatic match via bbref_id to Hogan Harris +10732,Huascar Brazoban,11,HALP,246,tier2_name,Automatic match via exact name to Huascar Brazoban +10733,Hunter Brown,11,brownhu01,267,tier1_bbref,Automatic match via bbref_id to Hunter Brown +10734,Hunter Greene,11,greenhu01,770,tier1_bbref,Automatic match via bbref_id to Hunter Greene +10735,Hunter Harvey,11,harvehu01,836,tier1_bbref,Automatic match via bbref_id to Hunter Harvey +10736,Hunter Renfroe,11,renfrhu01,1631,tier1_bbref,Automatic match via bbref_id to Hunter Renfroe +10737,Hyun Jin Ryu,11,HALP,1733,tier2_name,Automatic match via exact name to Hyun Jin Ryu +10738,Ian Gibaut,11,HALP,714,tier2_name,Automatic match via exact name to Ian Gibaut +10739,Ian Hamilton,11,hamilia01,811,tier1_bbref,Automatic match via bbref_id to Ian Hamilton +10740,Ian Happ,11,happia01,820,tier1_bbref,Automatic match via bbref_id to Ian Happ +10741,Ildemaro Vargas,11,vargail01,2054,tier1_bbref,Automatic match via bbref_id to Ildemaro Vargas +10742,Isaac Paredes,11,paredis01,1497,tier1_bbref,Automatic match via bbref_id to Isaac Paredes +10743,Isaiah Campbell,11,campbis01,312,tier1_bbref,Automatic match via bbref_id to Isaiah Campbell +10744,Isiah Kiner Falefa,11,HALP,1044,tier2_name,Automatic match via exact name to Isiah Kiner Falefa +10745,Jace Peterson,11,peterja01,1547,tier1_bbref,Automatic match via bbref_id to Jace Peterson +10746,Jack Flaherty,11,flaheja01,622,tier1_bbref,Automatic match via bbref_id to Jack Flaherty +10747,Jack Suwinski,11,suwinja01,1944,tier1_bbref,Automatic match via bbref_id to Jack Suwinski +10748,Jackson Kowar,11,HALP,1072,tier2_name,Automatic match via exact name to Jackson Kowar +10749,Jacob Stallings,11,stallja01,1890,tier1_bbref,Automatic match via bbref_id to Jacob Stallings +10750,Jacob Webb,11,webbja01,2126,tier1_bbref,Automatic match via bbref_id to Jacob Webb +10751,Jacob Young,11,youngja03,2219,tier1_bbref,Automatic match via bbref_id to Jacob Young +10752,Jaime Barria,11,HALP,141,tier2_name,Automatic match via exact name to Jaime Barria +10753,Jake Alu,11,HALP,57,tier2_name,Automatic match via exact name to Jake Alu +10754,Jake Bauers,11,bauerja01,151,tier1_bbref,Automatic match via bbref_id to Jake Bauers +10755,Jake Bird,11,birdja01,198,tier1_bbref,Automatic match via bbref_id to Jake Bird +10756,Jake Burger,11,burgeja01,283,tier1_bbref,Automatic match via bbref_id to Jake Burger +10757,Jake Cave,11,caveja01,354,tier1_bbref,Automatic match via bbref_id to Jake Cave +10758,Jake Cronenworth,11,croneja01,442,tier1_bbref,Automatic match via bbref_id to Jake Cronenworth +10759,Jake Diekman,11,diekmja01,514,tier1_bbref,Automatic match via bbref_id to Jake Diekman +10760,Jake Fraley,11,fraleja01,641,tier1_bbref,Automatic match via bbref_id to Jake Fraley +10761,Jake Irvin,11,irvinja01,955,tier1_bbref,Automatic match via bbref_id to Jake Irvin +10762,Jake Junis,11,junisja01,1004,tier1_bbref,Automatic match via bbref_id to Jakob Junis +10763,Jake McCarthy,11,mccarja02,1265,tier1_bbref,Automatic match via bbref_id to Jake McCarthy +10764,Jake Meyers,11,meyerja02,1315,tier1_bbref,Automatic match via bbref_id to Jake Meyers +10765,Jake Rogers,11,rogerja03,1692,tier1_bbref,Automatic match via bbref_id to Jake Rogers +10766,Jake Woodford,11,HALP,2195,tier2_name,Automatic match via exact name to Jake Woodford +10767,Jalen Beeks,11,beeksja02,165,tier1_bbref,Automatic match via bbref_id to Jalen Beeks +10768,James Kaprielian,11,HALP,1008,tier2_name,Automatic match via exact name to James Kaprielian +10769,James Karinchak,11,HALP,1009,tier2_name,Automatic match via exact name to James Karinchak +10770,James Mcarthur,11,mcartja01,1258,tier1_bbref,Automatic match via bbref_id to James McArthur +10771,James McCann,11,mccanja02,1261,tier1_bbref,Automatic match via bbref_id to James McCann +10772,James Outman,11,outmaja01,1477,tier1_bbref,Automatic match via bbref_id to James Outman +10773,James Paxton,11,paxtoja01,1506,tier1_bbref,Automatic match via bbref_id to James Paxton +10774,Jameson Taillon,11,taillja01,1954,tier1_bbref,Automatic match via bbref_id to Jameson Taillon +10775,Jared Shuster,11,shustja01,1821,tier1_bbref,Automatic match via bbref_id to Jared Shuster +10776,Jared Triolo,11,triolja01,2015,tier1_bbref,Automatic match via bbref_id to Jared Triolo +10777,Jarred Kelenic,11,kelenja01,1015,tier1_bbref,Automatic match via bbref_id to Jarred Kelenic +10778,Jarren Duran,11,duranja01,552,tier1_bbref,Automatic match via bbref_id to Jarren Duran +10779,Jason Adam,11,adamja01,13,tier1_bbref,Automatic match via bbref_id to Jason Adam +10780,Jason Delay,11,delayja01,487,tier1_bbref,Automatic match via bbref_id to Jason Delay +10781,Jason Foley,11,foleyja01,632,tier1_bbref,Automatic match via bbref_id to Jason Foley +10782,Jason Heyward,11,heywaja01,891,tier1_bbref,Automatic match via bbref_id to Jason Heyward +10783,Jason Vosler,11,HALP,2090,tier2_name,Automatic match via exact name to Jason Vosler +10784,Javier Assad,11,assadja01,100,tier1_bbref,Automatic match via bbref_id to Javier Assad +10785,Javier Baez,11,baezja01,112,tier1_bbref,Automatic match via bbref_id to Javier Baez +10786,Jazz Chisholm,11,chishja01,375,tier1_bbref,Automatic match via bbref_id to Jazz Chisholm +10787,JD Davis,11,davisjd01,474,tier1_bbref,Automatic match via bbref_id to JD Davis +10788,JD Martinez,11,martijd02,1229,tier1_bbref,Automatic match via bbref_id to JD Martinez +10789,Jean Segura,11,HALP,1796,tier2_name,Automatic match via exact name to Jean Segura +10790,Jeff Brigham,11,HALP,257,tier2_name,Automatic match via exact name to Jeff Brigham +10791,Jeff Hoffman,11,hoffmje02,910,tier1_bbref,Automatic match via bbref_id to Jeff Hoffman +10792,Jeff McNeil,11,mcneije01,1287,tier1_bbref,Automatic match via bbref_id to Jeff McNeil +10793,Jeimer Candelario,11,candeje01,315,tier1_bbref,Automatic match via bbref_id to Jeimer Candelario +10794,Jeremy Pena,11,penaje02,1519,tier1_bbref,Automatic match via bbref_id to Jeremy Pena +10795,Jesse Scholtens,11,HALP,1778,tier2_name,Automatic match via exact name to Jesse Scholtens +10796,Jesse Winker,11,winkeje01,2177,tier1_bbref,Automatic match via bbref_id to Jesse Winker +10797,Jesus Luzardo,11,luzarje01,1170,tier1_bbref,Automatic match via bbref_id to Jesus Luzardo +10798,Jesus Sanchez,11,sanchje02,1749,tier1_bbref,Automatic match via bbref_id to Jesus Sanchez +10799,Jhony Brito,11,britojh01,259,tier1_bbref,Automatic match via bbref_id to Jhony Brito +10800,Ji Hwan Bae,11,baeji01,945,tier1_bbref,Automatic match via bbref_id to Ji Hwan Bae +10801,Ji Man Choi,11,HALP,377,tier2_name,Automatic match via exact name to Ji Man Choi +10802,Jimmy Herget,11,hergeji01,863,tier1_bbref,Automatic match via bbref_id to Jimmy Herget +10803,Jimmy Lambert,11,HALP,1089,tier2_name,Automatic match via exact name to Jimmy Lambert +10804,JJ Bleday,11,bledajj01,211,tier1_bbref,Automatic match via bbref_id to JJ Bleday +10805,Joan Adon,11,adonjo01,21,tier1_bbref,Automatic match via bbref_id to Joan Adon +10806,Joc Pederson,11,pederjo01,1514,tier1_bbref,Automatic match via bbref_id to Joc Pederson +10807,Joe Jacques,11,jacqujo01,964,tier1_bbref,Automatic match via bbref_id to Joe Jacques +10808,Joe Jimenez,11,jimenjo02,979,tier1_bbref,Automatic match via bbref_id to Joe Jimenez +10809,Joe Kelly,11,kellyjo05,1021,tier1_bbref,Automatic match via bbref_id to Joe Kelly +10810,Joe Mantiply,11,mantijo01,1193,tier1_bbref,Automatic match via bbref_id to Joe Mantiply +10811,Joe Musgrove,11,musgrjo01,1394,tier1_bbref,Automatic match via bbref_id to Joe Musgrove +10812,Joe Ryan,11,ryanjo04,1732,tier1_bbref,Automatic match via bbref_id to Joe Ryan +10813,Joel Payamps,11,payamjo01,1507,tier1_bbref,Automatic match via bbref_id to Joel Payamps +10814,Joey Gallo,11,gallojo01,674,tier1_bbref,Automatic match via bbref_id to Joey Gallo +10815,Joey Lucchesi,11,lucchjo01,1160,tier1_bbref,Automatic match via bbref_id to Joey Lucchesi +10816,Joey Meneses,11,menesjo01,1303,tier1_bbref,Automatic match via bbref_id to Joey Meneses +10817,Joey Votto,11,HALP,2092,tier2_name,Automatic match via exact name to Joey Votto +10818,Joey Wendle,11,wendljo01,2135,tier1_bbref,Automatic match via bbref_id to Joey Wendle +10819,Joey Wentz,11,wentzjo01,2136,tier1_bbref,Automatic match via bbref_id to Joey Wentz +10820,Joey Wiemer,11,wiemejo01,2151,tier1_bbref,Automatic match via bbref_id to Joey Wiemer +10821,Johan Oviedo,11,HALP,1479,tier2_name,Automatic match via exact name to Johan Oviedo +10822,Johan Rojas,11,rojasjo03,1697,tier1_bbref,Automatic match via bbref_id to Johan Rojas +10823,John Brebbia,11,brebbjo01,247,tier1_bbref,Automatic match via bbref_id to John Brebbia +10824,John King,11,kingjo01,1045,tier1_bbref,Automatic match via bbref_id to John King +10825,John Schreiber,11,schrejo01,1780,tier1_bbref,Automatic match via bbref_id to John Schreiber +10826,JoJo Romero,11,romerjo01,1702,tier1_bbref,Automatic match via bbref_id to JoJo Romero +10827,Jon Berti,11,bertijo01,183,tier1_bbref,Automatic match via bbref_id to Jon Berti +10828,Jon Gray,11,grayjo02,766,tier1_bbref,Automatic match via bbref_id to Jon Gray +10829,Jonah Bride,11,bridejo01,255,tier1_bbref,Automatic match via bbref_id to Jonah Bride +10830,Jonah Heim,11,heimjo01,849,tier1_bbref,Automatic match via bbref_id to Jonah Heim +10831,Jonathan Hernandez,11,hernajo02,876,tier1_bbref,Automatic match via bbref_id to Jonathan Hernandez +10832,Jonathan India,11,indiajo01,953,tier1_bbref,Automatic match via bbref_id to Jonathan India +10833,Jordan Balazovic,11,HALP,119,tier2_name,Automatic match via exact name to Jordan Balazovic +10834,Jordan Diaz,11,HALP,510,tier2_name,Automatic match via exact name to Jordan Diaz +10835,Jordan Hicks,11,hicksjo03,894,tier1_bbref,Automatic match via bbref_id to Jordan Hicks +10836,Jordan Lyles,11,lylesjo01,1171,tier1_bbref,Automatic match via bbref_id to Jordan Lyles +10837,Jordan Montgomery,11,montgjo01,1356,tier1_bbref,Automatic match via bbref_id to Jordan Montgomery +10838,Jordan Romano,11,romanjo03,1699,tier1_bbref,Automatic match via bbref_id to Jordan Romano +10839,Jordan Walker,11,walkejo02,2107,tier1_bbref,Automatic match via bbref_id to Jordan Walker +10840,Jordan Weems,11,weemsjo01,2129,tier1_bbref,Automatic match via bbref_id to Jordan Weems +10841,Jordan Westburg,11,westbjo01,2138,tier1_bbref,Automatic match via bbref_id to Jordan Westburg +10842,Jordan Wicks,11,wicksjo01,2148,tier1_bbref,Automatic match via bbref_id to Jordan Wicks +10843,Jorge Mateo,11,mateojo01,1233,tier1_bbref,Automatic match via bbref_id to Jorge Mateo +10844,Jorge Soler,11,solerjo01,1870,tier1_bbref,Automatic match via bbref_id to Jorge Soler +10845,Jose Abreu,11,abreujo02,7,tier1_bbref,Automatic match via bbref_id to Jose Abreu +10846,Jose Altuve,11,altuvjo01,56,tier1_bbref,Automatic match via bbref_id to Jose Altuve +10847,Jose Alvarado,11,alvarjo03,58,tier1_bbref,Automatic match via bbref_id to Jose Alvarado +10848,Jose Azocar,11,azocajo01,107,tier1_bbref,Automatic match via bbref_id to Jose Azocar +10849,Jose Barrero,11,HALP,139,tier2_name,Automatic match via exact name to Jose Barrero +10850,Jose Berrios,11,berrijo01,182,tier1_bbref,Automatic match via bbref_id to Jose Berrios +10851,Jose Butto,11,buttojo01,293,tier1_bbref,Automatic match via bbref_id to Jose Butto +10852,Jose Caballero,11,cabaljo01,296,tier1_bbref,Automatic match via bbref_id to Jose Caballero +10853,Jose Cisnero,11,cisnejo01,382,tier1_bbref,Automatic match via bbref_id to Jose Cisnero +10854,Jose Cuas,11,cuasjo01,450,tier1_bbref,Automatic match via bbref_id to Jose Cuas +10855,Jose Ferrer,11,HALP,609,tier2_name,Automatic match via exact name to Jose Ferrer +10856,Jose Hernandez,11,hernajo03,879,tier1_bbref,Automatic match via bbref_id to Jose Hernandez +10857,Jose Herrera,11,HALP,884,tier2_name,Automatic match via exact name to Jose Herrera +10858,Jose Leclerc,11,leclejo01,1106,tier1_bbref,Automatic match via bbref_id to Jose Leclerc +10859,Jose Quintana,11,quintjo01,1596,tier1_bbref,Automatic match via bbref_id to Jose Quintana +10860,Jose Ramirez,11,ramirjo01,1608,tier1_bbref,Automatic match via bbref_id to Jose Ramirez +10861,Jose Ruiz,11,ruizjo01,1724,tier1_bbref,Automatic match via bbref_id to Jose Ruiz +10862,Jose Siri,11,sirijo01,1830,tier1_bbref,Automatic match via bbref_id to Jose Siri +10863,Jose Soriano,11,soriajo02,1874,tier1_bbref,Automatic match via bbref_id to Jose Soriano +10864,Jose Suarez,11,suarejo01,1937,tier1_bbref,Automatic match via bbref_id to Jose Suarez +10865,Jose Trevino,11,trevijo01,2013,tier1_bbref,Automatic match via bbref_id to Jose Trevino +10866,Jose Urena,11,urenajo01,2035,tier1_bbref,Automatic match via bbref_id to Jose Urena +10867,Jose Urquidy,11,HALP,2041,tier2_name,Automatic match via exact name to Jose Urquidy +10868,Josh Bell,11,belljo02,168,tier1_bbref,Automatic match via bbref_id to Josh Bell +10869,Josh Hader,11,haderjo01,802,tier1_bbref,Automatic match via bbref_id to Josh Hader +10870,Josh Jung,11,jungjo01,1002,tier1_bbref,Automatic match via bbref_id to Josh Jung +10871,Josh Lowe,11,lowejo01,1157,tier1_bbref,Automatic match via bbref_id to Josh Lowe +10872,Josh Naylor,11,naylojo01,1404,tier1_bbref,Automatic match via bbref_id to Josh Naylor +10873,Josh Palacios,11,HALP,1489,tier2_name,Automatic match via exact name to Josh Palacios +10874,Josh Rojas,11,rojasjo01,1695,tier1_bbref,Automatic match via bbref_id to Josh Rojas +10875,Josh Sborz,11,sborzjo01,1770,tier1_bbref,Automatic match via bbref_id to Josh Sborz +10876,Josh Smith,11,smithjo11,1852,tier1_bbref,Automatic match via bbref_id to Josh Smith +10877,Josh Winckowski,11,winckjo01,2174,tier1_bbref,Automatic match via bbref_id to Josh Winckowski +10878,Josh Winder,11,HALP,2175,tier2_name,Automatic match via exact name to Josh Winder +10879,Josiah Gray,11,grayjo03,767,tier1_bbref,Automatic match via bbref_id to Josiah Gray +10880,Jovani Moran,11,HALP,1361,tier2_name,Automatic match via exact name to Jovani Moran +10881,JP Crawford,11,crawfjp01,432,tier1_bbref,Automatic match via bbref_id to JP Crawford +10882,JP France,11,francjp01,643,tier1_bbref,Automatic match via bbref_id to JP France +10883,JP Sears,11,searsjp01,1795,tier1_bbref,Automatic match via bbref_id to JP Sears +10884,JT Chargois,11,HALP,368,tier2_name,Automatic match via exact name to JT Chargois +10885,JT Realmuto,11,realmjt01,1622,tier1_bbref,Automatic match via bbref_id to JT Realmuto +10886,Juan Soto,11,sotoju01,1879,tier1_bbref,Automatic match via bbref_id to Juan Soto +10887,Julian Merryweather,11,merryju01,1311,tier1_bbref,Automatic match via bbref_id to Julian Merryweather +10888,Julio Rodriguez,11,rodriju01,1682,tier1_bbref,Automatic match via bbref_id to Julio Rodriguez +10889,Julio Teheran,11,teherju01,1970,tier1_bbref,Automatic match via bbref_id to Julio Teheran +10890,Julio Urias,11,HALP,2038,tier2_name,Automatic match via exact name to Julio Urias +10891,Jurickson Profar,11,profaju01,1587,tier1_bbref,Automatic match via bbref_id to Jurickson Profar +10892,Justin Lawrence,11,lawreju01,1100,tier1_bbref,Automatic match via bbref_id to Justin Lawrence +10893,Justin Steele,11,steelju01,1899,tier1_bbref,Automatic match via bbref_id to Justin Steele +10894,Justin Topa,11,HALP,1999,tier2_name,Automatic match via exact name to Justin Topa +10895,Justin Turner,11,turneju01,2029,tier1_bbref,Automatic match via bbref_id to Justin Turner +10896,Justin Verlander,11,verlaju01,2071,tier1_bbref,Automatic match via bbref_id to Justin Verlander +10897,KeBryan Hayes,11,HALP,838,tier2_name,Automatic match via exact name to KeBryan Hayes +10898,Keibert Ruiz,11,ruizke01,1725,tier1_bbref,Automatic match via bbref_id to Keibert Ruiz +10899,Ken Waldichuk,11,HALP,2101,tier2_name,Automatic match via exact name to Ken Waldichuk +10900,Kendall Graveman,11,HALP,764,tier2_name,Automatic match via exact name to Kendall Graveman +10901,Kenley Jansen,11,janseke01,968,tier1_bbref,Automatic match via bbref_id to Kenley Jansen +10902,Kenta Maeda,11,maedake01,1181,tier1_bbref,Automatic match via bbref_id to Kenta Maeda +10903,Kerry Carpenter,11,carpeke01,330,tier1_bbref,Automatic match via bbref_id to Kerry Carpenter +10904,Ketel Marte,11,marteke01,1210,tier1_bbref,Automatic match via bbref_id to Ketel Marte +10905,Kevin Gausman,11,gausmke01,706,tier1_bbref,Automatic match via bbref_id to Kevin Gausman +10906,Kevin Ginkel,11,ginkeke01,722,tier1_bbref,Automatic match via bbref_id to Kevin Ginkel +10907,Kevin Kelly,11,kellyke02,1025,tier1_bbref,Automatic match via bbref_id to Kevin Kelly +10908,Kevin Kiermaier,11,kiermke01,1039,tier1_bbref,Automatic match via bbref_id to Kevin Kiermaier +10909,Kevin Newman,11,newmake01,1420,tier1_bbref,Automatic match via bbref_id to Kevin Newman +10910,Kevin Pillar,11,pillake01,1557,tier1_bbref,Automatic match via bbref_id to Kevin Pillar +10911,Kirby Yates,11,yateski01,2211,tier1_bbref,Automatic match via bbref_id to Kirby Yates +10912,Kodai Senga,11,HALP,1800,tier2_name,Automatic match via exact name to Kodai Senga +10913,Kole Calhoun,11,HALP,306,tier2_name,Automatic match via exact name to Kole Calhoun +10914,Kolten Wong,11,HALP,2188,tier2_name,Automatic match via exact name to Kolten Wong +10915,Korey Lee,11,leeko01,1109,tier1_bbref,Automatic match via bbref_id to Korey Lee +10916,Kris Bryant,11,bryankr01,273,tier1_bbref,Automatic match via bbref_id to Kris Bryant +10917,Kutter Crawford,11,crawfku01,431,tier1_bbref,Automatic match via bbref_id to Kutter Crawford +10918,Kyle Bradish,11,bradiky01,235,tier1_bbref,Automatic match via bbref_id to Kyle Bradish +10919,Kyle Finnegan,11,finneky01,617,tier1_bbref,Automatic match via bbref_id to Kyle Finnegan +10920,Kyle Freeland,11,freelky01,650,tier1_bbref,Automatic match via bbref_id to Kyle Freeland +10921,Kyle Gibson,11,gibsoky01,715,tier1_bbref,Automatic match via bbref_id to Kyle Gibson +10922,Kyle Hendricks,11,hendrky01,856,tier1_bbref,Automatic match via bbref_id to Kyle Hendricks +10923,Kyle Higashioka,11,higasky01,895,tier1_bbref,Automatic match via bbref_id to Kyle Higashioka +10924,Kyle Isbel,11,isbelky01,956,tier1_bbref,Automatic match via bbref_id to Kyle Isbel +10925,Kyle Muller,11,mulleky01,1380,tier1_bbref,Automatic match via bbref_id to Kyle Muller +10926,Kyle Nelson,11,nelsoky01,1412,tier1_bbref,Automatic match via bbref_id to Kyle Nelson +10927,Kyle Schwarber,11,schwaky01,1784,tier1_bbref,Automatic match via bbref_id to Kyle Schwarber +10928,Kyle Tucker,11,tuckeky01,2023,tier1_bbref,Automatic match via bbref_id to Kyle Tucker +10929,Kyle Wright,11,HALP,2200,tier2_name,Automatic match via exact name to Kyle Wright +10930,LaMonte Wade Jr,11,wadela01,2095,tier1_bbref,Automatic match via bbref_id to LaMonte Wade Jr +10931,Lance Lynn,11,lynnla01,1173,tier1_bbref,Automatic match via bbref_id to Lance Lynn +10932,Lane Ramsey,11,HALP,1617,tier2_name,Automatic match via exact name to Lane Ramsey +10933,Lane Thomas,11,thomala02,1978,tier1_bbref,Automatic match via bbref_id to Lane Thomas +10934,Lars Nootbaar,11,nootbla01,1436,tier1_bbref,Automatic match via bbref_id to Lars Nootbaar +10935,Lawrence Butler,11,butlela01,292,tier1_bbref,Automatic match via bbref_id to Lawrence Butler +10936,Lenyn Sosa,11,sosale01,1877,tier1_bbref,Automatic match via bbref_id to Lenyn Sosa +10937,Leody Taveras,11,taverle01,1962,tier1_bbref,Automatic match via bbref_id to Leody Taveras +10938,Liover Peguero,11,HALP,1516,tier2_name,Automatic match via exact name to Liover Peguero +10939,Logan Allen,11,allenlo01,45,tier1_bbref,Automatic match via bbref_id to Logan Allen +10940,Logan Gilbert,11,gilbelo01,718,tier1_bbref,Automatic match via bbref_id to Logan Gilbert +10941,Logan OHoppe,11,HALP,1454,tier2_name,Automatic match via exact name to Logan OHoppe +10942,Logan Webb,11,webblo01,2127,tier1_bbref,Automatic match via bbref_id to Logan Webb +10943,Louie Varland,11,varlalo01,2057,tier1_bbref,Automatic match via bbref_id to Louie Varland +10944,Lourdes Gurriel Jr,11,gurrilo01,794,tier1_bbref,Automatic match via bbref_id to Lourdes Gurriel Jr +10945,Lucas Erceg,11,erceglu01,577,tier1_bbref,Automatic match via bbref_id to Lucas Erceg +10946,Lucas Giolito,11,HALP,724,tier2_name,Automatic match via exact name to Lucas Giolito +10947,Lucas Sims,11,simslu01,1826,tier1_bbref,Automatic match via bbref_id to Lucas Sims +10948,Luis Arraez,11,arraelu01,93,tier1_bbref,Automatic match via bbref_id to Luis Arraez +10949,Luis Campusano,11,campulu01,314,tier1_bbref,Automatic match via bbref_id to Luis Campusano +10950,Luis Castillo,11,castilu02,344,tier1_bbref,Automatic match via bbref_id to Luis Castillo +10951,Luis Cessa,11,HALP,361,tier2_name,Automatic match via exact name to Luis Cessa +10952,Luis Frias,11,friaslu01,658,tier1_bbref,Automatic match via bbref_id to Luis Frias +10953,Luis Garcia,11,garcilu03,3237,manual_new,Manual assignment to new SbaPlayer: Luis Garcia +10954,Luis Guillorme,11,guilllu01,792,tier1_bbref,Automatic match via bbref_id to Luis Guillorme +10955,Luis Matos,11,matoslu02,1240,tier1_bbref,Automatic match via bbref_id to Luis Matos +10956,Luis Medina,11,HALP,1293,tier2_name,Automatic match via exact name to Luis Medina +10957,Luis Ortiz,11,ortizlu02,10009957,emergency_new,"EMERGENCY: Unassigned player, needs new SbaPlayer record" +10958,Luis Patino,11,HALP,1504,tier2_name,Automatic match via exact name to Luis Patino +10959,Luis Rengifo,11,rengilu01,1632,tier1_bbref,Automatic match via bbref_id to Luis Rengifo +10960,Luis Robert,11,HALP,1660,tier2_name,Automatic match via exact name to Luis Robert +10961,Luis Severino,11,severlu01,1805,tier1_bbref,Automatic match via bbref_id to Luis Severino +10962,Luis Urias,11,uriaslu01,2039,tier1_bbref,Automatic match via bbref_id to Luis Urias +10963,Luis V Garcia,11,HALP,694,manual_existing,Manual match to existing SbaPlayer: Luis Garcia Jr +10964,Luke Maile,11,mailelu01,1185,tier1_bbref,Automatic match via bbref_id to Luke Maile +10965,Luke Raley,11,raleylu01,1602,tier1_bbref,Automatic match via bbref_id to Luke Raley +10966,Luke Weaver,11,weavelu01,2124,tier1_bbref,Automatic match via bbref_id to Luke Weaver +10967,Luken Baker,11,HALP,118,tier2_name,Automatic match via exact name to Luken Baker +10968,MacKenzie Gore,11,gorema01,754,tier1_bbref,Automatic match via bbref_id to MacKenzie Gore +10969,Maikel Garcia,11,garcima01,691,tier1_bbref,Automatic match via bbref_id to Maikel Garcia +10970,Manny Machado,11,machama01,1175,tier1_bbref,Automatic match via bbref_id to Manny Machado +10971,Manuel Margot,11,margoma01,1198,tier1_bbref,Automatic match via bbref_id to Manuel Margot +10972,Marcell Ozuna,11,ozunama01,1481,tier1_bbref,Automatic match via bbref_id to Marcell Ozuna +10973,Marco Gonzales,11,gonzama02,735,tier1_bbref,Automatic match via bbref_id to Marco Gonzales +10974,Marcus Semien,11,semiema01,1799,tier1_bbref,Automatic match via bbref_id to Marcus Semien +10975,Marcus Stroman,11,stromma01,1928,tier1_bbref,Automatic match via bbref_id to Marcus Stroman +10976,Mark Canha,11,canhama01,316,tier1_bbref,Automatic match via bbref_id to Mark Canha +10977,Mark Leiter,11,HALP,1112,tier2_name,Automatic match via exact name to Mark Leiter +10978,Mark Mathias,11,HALP,1234,tier2_name,Automatic match via exact name to Mark Mathias +10979,Mark Vientos,11,vientma01,2076,tier1_bbref,Automatic match via bbref_id to Mark Vientos +10980,Martin Maldonado,11,maldoma01,1187,tier1_bbref,Automatic match via bbref_id to Martin Maldonado +10981,Martin Perez,11,perezma02,1535,tier1_bbref,Automatic match via bbref_id to Martin Perez +10982,Masataka Yoshida,11,yoshima02,2216,tier1_bbref,Automatic match via bbref_id to Masataka Yoshida +10983,Mason Englert,11,englema01,575,tier1_bbref,Automatic match via bbref_id to Mason Englert +10984,Mason Miller,11,millema03,1329,tier1_bbref,Automatic match via bbref_id to Mason Miller +10985,Mason Thompson,11,HALP,1984,tier2_name,Automatic match via exact name to Mason Thompson +10986,Masyn Winn,11,winnma01,2180,tier1_bbref,Automatic match via bbref_id to Masyn Winn +10987,Matt Beaty,11,HALP,157,tier2_name,Automatic match via exact name to Matt Beaty +10988,Matt Boyd,11,HALP,230,tier2_name,Automatic match via exact name to Matthew Boyd +10989,Matt Brash,11,HALP,241,tier2_name,Automatic match via exact name to Matt Brash +10990,Matt Carpenter,11,carpema01,329,tier1_bbref,Automatic match via bbref_id to Matt Carpenter +10991,Matt Chapman,11,chapmma01,367,tier1_bbref,Automatic match via bbref_id to Matt Chapman +10992,Matt Duffy,11,HALP,542,tier2_name,Automatic match via exact name to Matt Duffy +10993,Matt Koch,11,kochma01,1066,tier1_bbref,Automatic match via bbref_id to Matt Koch +10994,Matt Manning,11,mannima02,1191,tier1_bbref,Automatic match via bbref_id to Matt Manning +10995,Matt McLain,11,HALP,1285,tier2_name,Automatic match via exact name to Matt McLain +10996,Matt Olson,11,olsonma02,1461,tier1_bbref,Automatic match via bbref_id to Matt Olson +10997,Matt Strahm,11,strahma01,1918,tier1_bbref,Automatic match via bbref_id to Matt Strahm +10998,Matt Thaiss,11,thaisma01,1975,tier1_bbref,Automatic match via bbref_id to Matt Thaiss +10999,Matt Vierling,11,vierlma01,2077,tier1_bbref,Automatic match via bbref_id to Matt Vierling +11000,Matt Wallner,11,wallnma01,2109,tier1_bbref,Automatic match via bbref_id to Matt Wallner +11001,Matthew Batten,11,battema01,147,tier1_bbref,Automatic match via bbref_id to Matthew Batten +11002,Matthew Liberatore,11,liberma01,1121,tier1_bbref,Automatic match via bbref_id to Matthew Liberatore +11003,Mauricio Dubon,11,dubonma01,538,tier1_bbref,Automatic match via bbref_id to Mauricio Dubon +11004,Mauricio Llovera,11,HALP,1131,tier2_name,Automatic match via exact name to Mauricio Llovera +11005,Max Fried,11,friedma01,659,tier1_bbref,Automatic match via bbref_id to Max Fried +11006,Max Kepler,11,keplema01,1031,tier1_bbref,Automatic match via bbref_id to Max Kepler +11007,Max Muncy,11,muncyma01,1382,tier1_bbref,Automatic match via bbref_id to Max Muncy +11008,Max Scherzer,11,HALP,1773,tier2_name,Automatic match via exact name to Max Scherzer +11009,Merrill Kelly,11,kellyme01,1020,tier1_bbref,Automatic match via bbref_id to Merrill Kelly +11010,Michael Chavis,11,HALP,371,tier2_name,Automatic match via exact name to Michael Chavis +11011,Michael Conforto,11,confomi01,407,tier1_bbref,Automatic match via bbref_id to Michael Conforto +11012,Michael Fulmer,11,HALP,666,tier2_name,Automatic match via exact name to Michael Fulmer +11013,Michael Grove,11,grovemi01,781,tier1_bbref,Automatic match via bbref_id to Michael Grove +11014,Michael Harris,11,HALP,827,tier2_name,Automatic match via exact name to Michael Harris +11015,Michael King,11,kingmi01,1047,tier1_bbref,Automatic match via bbref_id to Michael King +11016,Michael Kopech,11,kopecmi01,1071,tier1_bbref,Automatic match via bbref_id to Michael Kopech +11017,Michael Lorenzen,11,lorenmi01,1151,tier1_bbref,Automatic match via bbref_id to Michael Lorenzen +11018,Michael Massey,11,massemi02,1231,tier1_bbref,Automatic match via bbref_id to Michael Massey +11019,Michael Soroka,11,sorokmi01,1875,tier1_bbref,Automatic match via bbref_id to Michael Soroka +11020,Michael A Taylor,11,taylomi02,1963,tier1_bbref,Automatic match via bbref_id to Michael Taylor +11021,Michael Toglia,11,toglimi01,1994,tier1_bbref,Automatic match via bbref_id to Michael Toglia +11022,Michael Tonkin,11,tonkimi01,1998,tier1_bbref,Automatic match via bbref_id to Michael Tonkin +11023,Michael Wacha,11,wachami01,2093,tier1_bbref,Automatic match via bbref_id to Michael Wacha +11024,Mickey Moniak,11,moniami01,1350,tier1_bbref,Automatic match via bbref_id to Mickey Moniak +11025,Miguel Amaya,11,amayami01,64,tier1_bbref,Automatic match via bbref_id to Miguel Amaya +11026,Miguel Cabrera,11,HALP,298,tier2_name,Automatic match via exact name to Miguel Cabrera +11027,Miguel Castro,11,castrmi01,350,tier1_bbref,Automatic match via bbref_id to Miguel Castro +11028,Miguel Rojas,11,rojasmi02,1694,tier1_bbref,Automatic match via bbref_id to Miguel Rojas +11029,Miguel Vargas,11,vargami01,2055,tier1_bbref,Automatic match via bbref_id to Miguel Vargas +11030,Mike Baumann,11,baumami01,152,tier1_bbref,Automatic match via bbref_id to Mike Baumann +11031,Mike Brosseau,11,HALP,263,tier2_name,Automatic match via exact name to Mike Brosseau +11032,Mike Clevinger,11,clevimi01,392,tier1_bbref,Automatic match via bbref_id to Mike Clevinger +11033,Mike Ford,11,fordmi01,635,tier1_bbref,Automatic match via bbref_id to Mike Ford +11034,Mike Mayers,11,HALP,1251,tier2_name,Automatic match via exact name to Mike Mayers +11035,Mike Moustakas,11,HALP,1378,tier2_name,Automatic match via exact name to Mike Moustakas +11036,Mike Tauchman,11,tauchmi01,1961,tier1_bbref,Automatic match via bbref_id to Mike Tauchman +11037,Mike Trout,11,troutmi01,2019,tier1_bbref,Automatic match via bbref_id to Mike Trout +11038,Mike Yastrzemski,11,yastrmi01,2210,tier1_bbref,Automatic match via bbref_id to Mike Yastrzemski +11039,Miles Mikolas,11,mikolmi01,1317,tier1_bbref,Automatic match via bbref_id to Miles Mikolas +11040,Mitch Garver,11,garvemi01,702,tier1_bbref,Automatic match via bbref_id to Mitch Garver +11041,Mitch Haniger,11,hanigmi01,818,tier1_bbref,Automatic match via bbref_id to Mitch Haniger +11042,Mitch Keller,11,kellemi03,1017,tier1_bbref,Automatic match via bbref_id to Mitch Keller +11043,MJ Melendez,11,melenmj01,1299,tier1_bbref,Automatic match via bbref_id to MJ Melendez +11044,Mookie Betts,11,bettsmo01,187,tier1_bbref,Automatic match via bbref_id to Mookie Betts +11045,Myles Straw,11,HALP,1924,tier2_name,Automatic match via exact name to Myles Straw +11046,Nate Pearson,11,pearsna01,1513,tier1_bbref,Automatic match via bbref_id to Nate Pearson +11047,Nathan Eovaldi,11,eovalna01,576,tier1_bbref,Automatic match via bbref_id to Nathan Eovaldi +11048,Nathaniel Lowe,11,lowena01,1155,tier1_bbref,Automatic match via bbref_id to Nathaniel Lowe +11049,Nelson Velazquez,11,velazne01,2068,tier1_bbref,Automatic match via bbref_id to Nelson Velazquez +11050,Nick Ahmed,11,ahmedni01,26,tier1_bbref,Automatic match via bbref_id to Nick Ahmed +11051,Nick Allen,11,allenni02,46,tier1_bbref,Automatic match via bbref_id to Nick Allen +11052,Nick Anderson,11,anderni01,71,tier1_bbref,Automatic match via bbref_id to Nick Anderson +11053,Nicholas Castellanos,11,casteni01,340,tier1_bbref,Automatic match via bbref_id to Nicholas Castellanos +11054,Nick Fortes,11,forteni01,637,tier1_bbref,Automatic match via bbref_id to Nick Fortes +11055,Nick Lodolo,11,lodolni01,1135,tier1_bbref,Automatic match via bbref_id to Nick Lodolo +11056,Nick Madrigal,11,madrini01,1178,tier1_bbref,Automatic match via bbref_id to Nick Madrigal +11057,Nick Martinez,11,martini01,1224,tier1_bbref,Automatic match via bbref_id to Nick Martinez +11058,Nick Maton,11,HALP,1239,tier2_name,Automatic match via exact name to Nick Maton +11059,Nick Pivetta,11,pivetni01,1564,tier1_bbref,Automatic match via bbref_id to Nick Pivetta +11060,Nick Pratto,11,HALP,1583,tier2_name,Automatic match via exact name to Nick Pratto +11061,Nick Ramirez,11,ramirni01,1605,tier1_bbref,Automatic match via bbref_id to Nick Ramirez +11062,Nick Sandlin,11,sandlni01,1752,tier1_bbref,Automatic match via bbref_id to Nick Sandlin +11063,Nick Senzel,11,senzeni01,1802,tier1_bbref,Automatic match via bbref_id to Nick Senzel +11064,Nick Wittgren,11,HALP,2185,tier2_name,Automatic match via exact name to Nick Wittgren +11065,Nicky Lopez,11,lopezni01,1149,tier1_bbref,Automatic match via bbref_id to Nicky Lopez +11066,Nico Hoerner,11,hoernni01,909,tier1_bbref,Automatic match via bbref_id to Nico Hoerner +11067,Noah Syndergaard,11,HALP,1953,tier2_name,Automatic match via exact name to Noah Syndergaard +11068,Nolan Arenado,11,arenano01,88,tier1_bbref,Automatic match via bbref_id to Nolan Arenado +11069,Nolan Gorman,11,gormano01,755,tier1_bbref,Automatic match via bbref_id to Nolan Gorman +11070,Nolan Jones,11,jonesno01,994,tier1_bbref,Automatic match via bbref_id to Nolan Jones +11071,Nolan Schanuel,11,schanno01,1771,tier1_bbref,Automatic match via bbref_id to Nolan Schanuel +11072,Omar Narvaez,11,narvaom01,1401,tier1_bbref,Automatic match via bbref_id to Omar Narvaez +11073,Orlando Arcia,11,arciaor01,86,tier1_bbref,Automatic match via bbref_id to Orlando Arcia +11074,Oscar Colas,11,colasos01,396,tier1_bbref,Automatic match via bbref_id to Oscar Colas +11075,Osvaldo Bido,11,bidoos01,193,tier1_bbref,Automatic match via bbref_id to Osvaldo Bido +11076,Oswald Peraza,11,HALP,1528,tier2_name,Automatic match via exact name to Oswald Peraza +11077,Oswaldo Cabrera,11,cabreos01,303,tier1_bbref,Automatic match via bbref_id to Oswaldo Cabrera +11078,Owen Miller,11,milleow01,1327,tier1_bbref,Automatic match via bbref_id to Owen Miller +11079,Ozzie Albies,11,albieoz01,31,tier1_bbref,Automatic match via bbref_id to Ozzie Albies +11080,Pablo Lopez,11,lopezpa01,1146,tier1_bbref,Automatic match via bbref_id to Pablo Lopez +11081,Pablo Reyes,11,reyespa01,1637,tier1_bbref,Automatic match via bbref_id to Pablo Reyes +11082,Parker Meadows,11,meadopa01,1291,tier1_bbref,Automatic match via bbref_id to Parker Meadows +11083,Patrick Bailey,11,bailepa01,115,tier1_bbref,Automatic match via bbref_id to Patrick Bailey +11084,Patrick Corbin,11,corbipa01,416,tier1_bbref,Automatic match via bbref_id to Patrick Corbin +11085,Patrick Sandoval,11,sandopa02,1754,tier1_bbref,Automatic match via bbref_id to Patrick Sandoval +11086,Patrick Wisdom,11,wisdopa01,2181,tier1_bbref,Automatic match via bbref_id to Patrick Wisdom +11087,Paul Blackburn,11,blackpa01,204,tier1_bbref,Automatic match via bbref_id to Paul Blackburn +11088,Paul Goldschmidt,11,goldspa01,729,tier1_bbref,Automatic match via bbref_id to Paul Goldschmidt +11089,Paul Sewald,11,sewalpa01,1806,tier1_bbref,Automatic match via bbref_id to Paul Sewald +11090,Pavin Smith,11,smithpa04,1851,tier1_bbref,Automatic match via bbref_id to Pavin Smith +11091,Pedro Avila,11,avilape01,105,tier1_bbref,Automatic match via bbref_id to Pedro Avila +11092,Pete Alonso,11,alonspe01,53,tier1_bbref,Automatic match via bbref_id to Pete Alonso +11093,Pete Fairbanks,11,fairbpe01,592,tier1_bbref,Automatic match via bbref_id to Pete Fairbanks +11094,Peter Lambert,11,lambepe01,1088,tier1_bbref,Automatic match via bbref_id to Peter Lambert +11095,Peyton Battenfield,11,HALP,148,tier2_name,Automatic match via exact name to Peyton Battenfield +11096,Phil Bickford,11,HALP,191,tier2_name,Automatic match via exact name to Phil Bickford +11097,Phil Maton,11,matonph01,1238,tier1_bbref,Automatic match via bbref_id to Phil Maton +11098,Pierce Johnson,11,johnspi01,985,tier1_bbref,Automatic match via bbref_id to Pierce Johnson +11099,Quinn Priester,11,priesqu01,1586,tier1_bbref,Automatic match via bbref_id to Quinn Priester +11147,Ryan Yarbrough,11,yarbrry01,2208,tier1_bbref,Automatic match via bbref_id to Ryan Yarbrough +11100,Rafael Devers,11,deverra01,499,tier1_bbref,Automatic match via bbref_id to Rafael Devers +11101,Rafael Montero,11,montera01,1352,tier1_bbref,Automatic match via bbref_id to Rafael Montero +11102,Rafael Ortega,11,ortegra01,1465,tier1_bbref,Automatic match via bbref_id to Rafael Ortega +11103,Raisel Iglesias,11,iglesra01,950,tier1_bbref,Automatic match via bbref_id to Raisel Iglesias +11104,Ramon Laureano,11,laurera01,1097,tier1_bbref,Automatic match via bbref_id to Ramon Laureano +11105,Ramon Urias,11,uriasra01,2037,tier1_bbref,Automatic match via bbref_id to Ramon Urias +11106,Randal Grichuk,11,grichra01,775,tier1_bbref,Automatic match via bbref_id to Randal Grichuk +11107,Randy Arozarena,11,arozara01,92,tier1_bbref,Automatic match via bbref_id to Randy Arozarena +11108,Ranger Suarez,11,suarera01,1936,tier1_bbref,Automatic match via bbref_id to Ranger Suarez +11109,Ray Kerr,11,kerrra01,1033,tier1_bbref,Automatic match via bbref_id to Ray Kerr +11110,Reese McGuire,11,mcguire01,1277,tier1_bbref,Automatic match via bbref_id to Reese McGuire +11111,Reese Olson,11,olsonre01,1462,tier1_bbref,Automatic match via bbref_id to Reese Olson +11112,Reid Detmers,11,detmere01,496,tier1_bbref,Automatic match via bbref_id to Reid Detmers +11113,Reynaldo Lopez,11,lopezre01,1145,tier1_bbref,Automatic match via bbref_id to Reynaldo Lopez +11114,Rich Hill,11,HALP,898,tier2_name,Automatic match via exact name to Rich Hill +11115,Richard Bleier,11,HALP,212,tier2_name,Automatic match via exact name to Richard Bleier +11116,Richard Lovelady,11,lovelri01,1153,tier1_bbref,Automatic match via bbref_id to Richard Lovelady +11117,Richie Palacios,11,palacri01,1488,tier1_bbref,Automatic match via bbref_id to Richie Palacios +11118,Riley Adams,11,adamsri03,17,tier1_bbref,Automatic match via bbref_id to Riley Adams +11119,Riley Greene,11,greenri03,771,tier1_bbref,Automatic match via bbref_id to Riley Greene +11120,Roansy Contreras,11,contrro01,412,tier1_bbref,Automatic match via bbref_id to Roansy Contreras +11121,Rob Refsnyder,11,refsnro01,1626,tier1_bbref,Automatic match via bbref_id to Rob Refsnyder +11122,Rob Zastryzny,11,HALP,2222,tier2_name,Automatic match via exact name to Rob Zastryzny +11123,Robbie Grossman,11,grossro01,779,tier1_bbref,Automatic match via bbref_id to Robbie Grossman +11124,Robert Garcia,11,garciro04,692,tier1_bbref,Automatic match via bbref_id to Robert Garcia +11125,Robert Stephenson,11,HALP,1904,tier2_name,Automatic match via exact name to Robert Stephenson +11126,Robert Suarez,11,suarero01,1938,tier1_bbref,Automatic match via bbref_id to Robert Suarez +11127,Rodolfo Castro,11,HALP,353,tier2_name,Automatic match via exact name to Rodolfo Castro +11128,Ron Marinaccio,11,marinro01,1199,tier1_bbref,Automatic match via bbref_id to Ron Marinaccio +11129,Ronald Acuna Jr,11,acunaro01,12,tier1_bbref,Automatic match via bbref_id to Ronald Acuna Jr +11130,Ronny Mauricio,11,HALP,1247,tier2_name,Automatic match via exact name to Ronny Mauricio +11131,Ross Stripling,11,stripro01,1927,tier1_bbref,Automatic match via bbref_id to Ross Stripling +11132,Rowdy Tellez,11,tellero01,1972,tier1_bbref,Automatic match via bbref_id to Rowdy Tellez +11133,Royce Lewis,11,lewisro02,1119,tier1_bbref,Automatic match via bbref_id to Royce Lewis +11134,Ryan Borucki,11,borucry01,222,tier1_bbref,Automatic match via bbref_id to Ryan Borucki +11135,Ryan Brasier,11,brasiry01,242,tier1_bbref,Automatic match via bbref_id to Ryan Brasier +11136,Ryan Feltner,11,feltnry01,603,tier1_bbref,Automatic match via bbref_id to Ryan Feltner +11137,Ryan Helsley,11,helslry01,853,tier1_bbref,Automatic match via bbref_id to Ryan Helsley +11138,Ryan Jeffers,11,jeffery01,975,tier1_bbref,Automatic match via bbref_id to Ryan Jeffers +11139,Ryan McKenna,11,mckenry01,1281,tier1_bbref,Automatic match via bbref_id to Ryan McKenna +11140,Ryan McMahon,11,mcmahry01,1286,tier1_bbref,Automatic match via bbref_id to Ryan McMahon +11141,Ryan Mountcastle,11,mountry01,1377,tier1_bbref,Automatic match via bbref_id to Ryan Mountcastle +11142,Ryan Noda,11,nodary01,1427,tier1_bbref,Automatic match via bbref_id to Ryan Noda +11143,Ryan OHearn,11,HALP,1453,tier2_name,Automatic match via exact name to Ryan OHearn +11144,Ryan Pepiot,11,pepiory01,1521,tier1_bbref,Automatic match via bbref_id to Ryan Pepiot +11145,Ryan Pressly,11,pressry01,1584,tier1_bbref,Automatic match via bbref_id to Ryan Pressly +11146,Ryan Walker,11,walkery01,2106,tier1_bbref,Automatic match via bbref_id to Ryan Walker +11148,Ryne Nelson,11,nelsory01,1411,tier1_bbref,Automatic match via bbref_id to Ryne Nelson +11149,Ryne Stanek,11,stanery01,1892,tier1_bbref,Automatic match via bbref_id to Ryne Stanek +11150,Sal Frelick,11,frelisa01,657,tier1_bbref,Automatic match via bbref_id to Sal Frelick +11151,Salvador Perez,11,perezsa02,1534,tier1_bbref,Automatic match via bbref_id to Salvador Perez +11152,Sam Haggerty,11,haggesa01,803,tier1_bbref,Automatic match via bbref_id to Sam Haggerty +11153,Sam Hentges,11,hentgsa01,861,tier1_bbref,Automatic match via bbref_id to Sam Hentges +11154,Sam Hilliard,11,HALP,903,tier2_name,Automatic match via exact name to Sam Hilliard +11155,Sam Long,11,longsa01,1139,tier1_bbref,Automatic match via bbref_id to Sam Long +11156,Sam Moll,11,mollsa01,1346,tier1_bbref,Automatic match via bbref_id to Sam Moll +11157,Sammy Peralta,11,HALP,1526,tier2_name,Automatic match via exact name to Sammy Peralta +11158,Sandy Alcantara,11,HALP,35,tier2_name,Automatic match via exact name to Sandy Alcantara +11159,Santiago Espinal,11,espinsa01,582,tier1_bbref,Automatic match via bbref_id to Santiago Espinal +11160,Scott Alexander,11,alexasc02,36,tier1_bbref,Automatic match via bbref_id to Scott Alexander +11161,Scott Barlow,11,barlosc01,128,tier1_bbref,Automatic match via bbref_id to Scott Barlow +11162,Scott McGough,11,mcgousc01,1275,tier1_bbref,Automatic match via bbref_id to Scott McGough +11163,Sean Manaea,11,manaese01,1189,tier1_bbref,Automatic match via bbref_id to Sean Manaea +11164,Sean Murphy,11,murphse01,1390,tier1_bbref,Automatic match via bbref_id to Sean Murphy +11165,Seby Zavala,11,zavalse01,2223,tier1_bbref,Automatic match via bbref_id to Seby Zavala +11166,Seiya Suzuki,11,suzukse01,1946,tier1_bbref,Automatic match via bbref_id to Seiya Suzuki +11167,Seranthony Dominguez,11,dominse01,524,tier1_bbref,Automatic match via bbref_id to Seranthony Dominguez +11168,Seth Brown,11,brownse01,265,tier1_bbref,Automatic match via bbref_id to Seth Brown +11169,Seth Lugo,11,lugose01,1165,tier1_bbref,Automatic match via bbref_id to Seth Lugo +11170,Seth Martinez,11,martise01,1226,tier1_bbref,Automatic match via bbref_id to Seth Martinez +11171,Shane Bieber,11,biebesh01,194,tier1_bbref,Automatic match via bbref_id to Shane Bieber +11172,Shane McClanahan,11,HALP,1268,tier2_name,Automatic match via exact name to Shane McClanahan +11173,Shawn Armstrong,11,armstsh01,91,tier1_bbref,Automatic match via bbref_id to Shawn Armstrong +11174,Shea Langeliers,11,langesh01,1092,tier1_bbref,Automatic match via bbref_id to Shea Langeliers +11175,Shelby Miller,11,millesh01,1323,tier1_bbref,Automatic match via bbref_id to Shelby Miller +11176,Shintaro Fujinami,11,HALP,665,tier2_name,Automatic match via exact name to Shintaro Fujinami +11177,Shohei Ohtani,11,ohtansh01,1455,tier1_bbref,Automatic match via bbref_id to Shohei Ohtani +11178,Slade Cecconi,11,ceccosl01,356,tier1_bbref,Automatic match via bbref_id to Slade Cecconi +11179,Spencer Steer,11,steersp01,1900,tier1_bbref,Automatic match via bbref_id to Spencer Steer +11180,Spencer Strider,11,stridsp01,1926,tier1_bbref,Automatic match via bbref_id to Spencer Strider +11181,Spencer Torkelson,11,torkesp01,2000,tier1_bbref,Automatic match via bbref_id to Spencer Torkelson +11182,Starling Marte,11,martest01,1208,tier1_bbref,Automatic match via bbref_id to Starling Marte +11183,Stephen Nogosek,11,HALP,1430,tier2_name,Automatic match via exact name to Stephen Nogosek +11184,Steven Kwan,11,kwanst01,1080,tier1_bbref,Automatic match via bbref_id to Steven Kwan +11185,Steven Matz,11,matzst01,1243,tier1_bbref,Automatic match via bbref_id to Steven Matz +11186,Steven Okert,11,okertst01,1456,tier1_bbref,Automatic match via bbref_id to Steven Okert +11187,Steven Wilson,11,wilsost02,2169,tier1_bbref,Automatic match via bbref_id to Steven Wilson +11188,Stone Garrett,11,HALP,699,tier2_name,Automatic match via exact name to Stone Garrett +11189,Stuart Fairchild,11,faircst01,593,tier1_bbref,Automatic match via bbref_id to Stuart Fairchild +11190,Taijuan Walker,11,walketa01,2105,tier1_bbref,Automatic match via bbref_id to Taijuan Walker +11191,Taj Bradley,11,bradlta01,238,tier1_bbref,Automatic match via bbref_id to Taj Bradley +11192,Tanner Banks,11,banksta01,122,tier1_bbref,Automatic match via bbref_id to Tanner Banks +11193,Tanner Bibee,11,bibeeta01,189,tier1_bbref,Automatic match via bbref_id to Tanner Bibee +11194,Tanner Houck,11,houckta01,927,tier1_bbref,Automatic match via bbref_id to Tanner Houck +11195,Tanner Scott,11,scottta01,1788,tier1_bbref,Automatic match via bbref_id to Tanner Scott +11196,Tarik Skubal,11,skubata01,1836,tier1_bbref,Automatic match via bbref_id to Tarik Skubal +11197,Tayler Saucedo,11,sauceta01,1768,tier1_bbref,Automatic match via bbref_id to Tayler Saucedo +11198,Taylor Clarke,11,HALP,384,tier2_name,Automatic match via exact name to Taylor Clarke +11199,Taylor Rogers,11,rogerta01,1689,tier1_bbref,Automatic match via bbref_id to Taylor Rogers +11200,Taylor Walls,11,HALP,2110,tier2_name,Automatic match via exact name to Taylor Walls +11201,Taylor Ward,11,wardta01,2116,tier1_bbref,Automatic match via bbref_id to Taylor Ward +11202,Teoscar Hernandez,11,hernate01,873,tier1_bbref,Automatic match via bbref_id to Teoscar Hernandez +11203,Thaddeus Ward,11,HALP,2117,tier2_name,Automatic match via exact name to Thaddeus Ward +11204,Thairo Estrada,11,estrath01,587,tier1_bbref,Automatic match via bbref_id to Thairo Estrada +11205,Tim Anderson,11,anderti01,73,tier1_bbref,Automatic match via bbref_id to Tim Anderson +11206,Tim Hill,11,hillti01,900,tier1_bbref,Automatic match via bbref_id to Tim Hill +11207,Tim Mayza,11,mayzati01,1253,tier1_bbref,Automatic match via bbref_id to Tim Mayza +11208,TJ Friedl,11,friedtj01,660,tier1_bbref,Automatic match via bbref_id to TJ Friedl +11209,Tom Cosgrove,11,cosgrto01,422,tier1_bbref,Automatic match via bbref_id to Tom Cosgrove +11210,Tom Murphy,11,murphto04,1388,tier1_bbref,Automatic match via bbref_id to Tom Murphy +11211,Tommy Edman,11,HALP,558,tier2_name,Automatic match via exact name to Tommy Edman +11212,Tommy Henry,11,henryto01,859,tier1_bbref,Automatic match via bbref_id to Tommy Henry +11213,Tommy Hunter,11,HALP,941,tier2_name,Automatic match via exact name to Tommy Hunter +11214,Tommy Kahnle,11,kahnlto01,1006,tier1_bbref,Automatic match via bbref_id to Tommy Kahnle +11215,Tommy Pham,11,phamth01,1552,tier1_bbref,Automatic match via bbref_id to Tommy Pham +11216,Tony Gonsolin,11,HALP,734,tier2_name,Automatic match via exact name to Tony Gonsolin +11217,Tony Kemp,11,kempto01,1027,tier1_bbref,Automatic match via bbref_id to Tony Kemp +11218,Touki Toussaint,11,HALP,2005,tier2_name,Automatic match via exact name to Touki Toussaint +11219,Travis dArnaud,11,HALP,461,tier2_name,Automatic match via exact name to Travis dArnaud +11220,Travis Jankowski,11,jankotr01,967,tier1_bbref,Automatic match via bbref_id to Travis Jankowski +11221,Trea Turner,11,turnetr01,1,tier1_bbref,Automatic match via bbref_id to Trea Turner +11222,Trent Grisham,11,grishtr01,776,tier1_bbref,Automatic match via bbref_id to Trent Grisham +11223,Trent Thornton,11,thorntr01,1988,tier1_bbref,Automatic match via bbref_id to Trent Thornton +11224,Trevor Stephan,11,HALP,1902,tier2_name,Automatic match via exact name to Trevor Stephan +11225,Trevor Gott,11,HALP,758,tier2_name,Automatic match via exact name to Trevor Gott +11226,Trevor May,11,HALP,1248,tier2_name,Automatic match via exact name to Trevor May +11227,Trevor Megill,11,megiltr01,1294,tier1_bbref,Automatic match via bbref_id to Trevor Megill +11228,Trevor Richards,11,richatr01,1646,tier1_bbref,Automatic match via bbref_id to Trevor Richards +11229,Trevor Story,11,storytr01,1914,tier1_bbref,Automatic match via bbref_id to Trevor Story +11230,Trevor Williams,11,willitr01,2156,tier1_bbref,Automatic match via bbref_id to Trevor Williams +11231,Trey Mancini,11,HALP,1190,tier2_name,Automatic match via exact name to Trey Mancini +11232,Tristan Beck,11,HALP,158,tier2_name,Automatic match via exact name to Tristan Beck +11233,Triston Casas,11,casastr01,335,tier1_bbref,Automatic match via bbref_id to Triston Casas +11234,Tucker Davidson,11,HALP,464,tier2_name,Automatic match via exact name to Tucker Davidson +11235,Tucupita Marcano,11,HALP,1196,tier2_name,Automatic match via exact name to Tucupita Marcano +11236,Ty Blach,11,blachty01,202,tier1_bbref,Automatic match via bbref_id to Ty Blach +11237,Ty France,11,francty01,642,tier1_bbref,Automatic match via bbref_id to Ty France +11238,Tyler Alexander,11,alexaty01,37,tier1_bbref,Automatic match via bbref_id to Tyler Alexander +11239,Tyler Anderson,11,anderty01,68,tier1_bbref,Automatic match via bbref_id to Tyler Anderson +11240,Tyler Freeman,11,freemty01,654,tier1_bbref,Automatic match via bbref_id to Tyler Freeman +11241,Tyler Glasnow,11,glasnty01,726,tier1_bbref,Automatic match via bbref_id to Tyler Glasnow +11242,Tyler Holton,11,holtoty01,922,tier1_bbref,Automatic match via bbref_id to Tyler Holton +11243,Tyler Nevin,11,nevinty01,1417,tier1_bbref,Automatic match via bbref_id to Tyler Nevin +11244,Tyler ONeill,11,HALP,1463,tier2_name,Automatic match via exact name to Tyler ONeill +11245,Tyler Rogers,11,rogerty01,1691,tier1_bbref,Automatic match via bbref_id to Tyler Rogers +11246,Tyler Soderstrom,11,soderty01,1864,tier1_bbref,Automatic match via bbref_id to Tyler Soderstrom +11247,Tyler Stephenson,11,stephty01,1905,tier1_bbref,Automatic match via bbref_id to Tyler Stephenson +11248,Tyler Wells,11,wellsty01,2132,tier1_bbref,Automatic match via bbref_id to Tyler Wells +11249,Tylor Megill,11,megilty01,1295,tier1_bbref,Automatic match via bbref_id to Tylor Megill +11250,Tyrone Taylor,11,tayloty01,1965,tier1_bbref,Automatic match via bbref_id to Tyrone Taylor +11251,Vaughn Grissom,11,grissva01,777,tier1_bbref,Automatic match via bbref_id to Vaughn Grissom +11252,Victor Caratini,11,caratvi01,325,tier1_bbref,Automatic match via bbref_id to Victor Caratini +11253,Vince Velasquez,11,HALP,2065,tier2_name,Automatic match via exact name to Vince Velasquez +11254,Vinnie Pasquantino,11,pasquvi01,1503,tier1_bbref,Automatic match via bbref_id to Vinnie Pasquantino +11255,Vladimir Guerrero Jr,11,guerrvl02,789,tier1_bbref,Automatic match via bbref_id to Vladimir Guerrero Jr +11256,Wade Miley,11,mileywa01,1318,tier1_bbref,Automatic match via bbref_id to Wade Miley +11257,Wander Franco,11,HALP,646,tier2_name,Automatic match via exact name to Wander Franco +11258,Wandy Peralta,11,peralwa01,1524,tier1_bbref,Automatic match via bbref_id to Wandy Peralta +11259,Whit Merrifield,11,merriwh01,1309,tier1_bbref,Automatic match via bbref_id to Whit Merrifield +11260,Will Benson,11,bensowi01,179,tier1_bbref,Automatic match via bbref_id to Will Benson +11261,Will Brennan,11,brennwi02,250,tier1_bbref,Automatic match via bbref_id to Will Brennan +11262,Will D Smith,11,HALP,1841,manual_existing,Manual match to existing SbaPlayer: Will Smith +11263,Will Smith,11,smithwi05,1841,tier1_bbref,Automatic match via bbref_id to Will Smith +11264,Will Vest,11,vestwi01,2074,tier1_bbref,Automatic match via bbref_id to Will Vest +11265,Willi Castro,11,castrwi01,352,tier1_bbref,Automatic match via bbref_id to Willi Castro +11266,William Contreras,11,contrwi02,411,tier1_bbref,Automatic match via bbref_id to William Contreras +11267,Willson Contreras,11,contrwi01,410,tier1_bbref,Automatic match via bbref_id to Willson Contreras +11268,Willy Adames,11,adamewi01,14,tier1_bbref,Automatic match via bbref_id to Willy Adames +11269,Wilmer Flores,11,florewi01,627,tier1_bbref,Automatic match via bbref_id to Wilmer Flores +11270,Wilyer Abreu,11,abreuwi02,10,tier1_bbref,Automatic match via bbref_id to Wilyer Abreu +11271,Xander Bogaerts,11,bogaexa01,216,tier1_bbref,Automatic match via bbref_id to Xander Bogaerts +11272,Xavier Edwards,11,HALP,559,tier2_name,Automatic match via exact name to Xavier Edwards +11273,Xzavion Curry,11,curryxz01,454,tier1_bbref,Automatic match via bbref_id to Xzavion Curry +11274,Yainer Diaz,11,diazya02,511,tier1_bbref,Automatic match via bbref_id to Yainer Diaz +11275,Yan Gomes,11,gomesya01,731,tier1_bbref,Automatic match via bbref_id to Yan Gomes +11276,Yandy Diaz,11,diazya01,507,tier1_bbref,Automatic match via bbref_id to Yandy Diaz +11277,Yasmani Grandal,11,grandya01,761,tier1_bbref,Automatic match via bbref_id to Yasmani Grandal +11278,Yency Almonte,11,almonye01,50,tier1_bbref,Automatic match via bbref_id to Yency Almonte +11279,Yennier Cano,11,canoye01,320,tier1_bbref,Automatic match via bbref_id to Yennier Cano +11280,Yimi Garcia,11,garciyi01,680,tier1_bbref,Automatic match via bbref_id to Yimi Garcia +11281,Yoan Moncada,11,moncayo01,1348,tier1_bbref,Automatic match via bbref_id to Yoan Moncada +11282,Yordan Alvarez,11,alvaryo01,61,tier1_bbref,Automatic match via bbref_id to Yordan Alvarez +11283,Yu Chang,11,HALP,364,tier2_name,Automatic match via exact name to Yu Chang +11284,Yu Darvish,11,darviyu01,462,tier1_bbref,Automatic match via bbref_id to Yu Darvish +11285,Yuli Gurriel,11,HALP,793,tier2_name,Automatic match via exact name to Yuli Gurriel +11286,Yunior Marte,11,marteyu01,1211,tier1_bbref,Automatic match via bbref_id to Yunior Marte +11287,Yusei Kikuchi,11,kikucyu01,1040,tier1_bbref,Automatic match via bbref_id to Yusei Kikuchi +11288,Zac Gallen,11,galleza01,673,tier1_bbref,Automatic match via bbref_id to Zac Gallen +11289,Zach Davies,11,HALP,465,tier2_name,Automatic match via exact name to Zach Davies +11290,Zach Eflin,11,eflinza01,562,tier1_bbref,Automatic match via bbref_id to Zach Eflin +11291,Zach McKinstry,11,mckinza01,1284,tier1_bbref,Automatic match via bbref_id to Zach McKinstry +11292,Zach Neal,11,HALP,1406,tier2_name,Automatic match via exact name to Zach Neal +11293,Zach Neto,11,netoza01,1414,tier1_bbref,Automatic match via bbref_id to Zach Neto +11294,Zach Plesac,11,HALP,1566,tier2_name,Automatic match via exact name to Zach Plesac +11295,Zach Remillard,11,remilza01,1629,tier1_bbref,Automatic match via bbref_id to Zach Remillard +11296,Zack Gelof,11,gelofza01,709,tier1_bbref,Automatic match via bbref_id to Zack Gelof +11297,Zack Greinke,11,HALP,774,tier2_name,Automatic match via exact name to Zack Greinke +11298,Zack Littell,11,litteza01,1127,tier1_bbref,Automatic match via bbref_id to Zack Littell +11299,Zack Short,11,shortza01,1818,tier1_bbref,Automatic match via bbref_id to Zack Short +11300,Zack Thompson,11,thompza02,1985,tier1_bbref,Automatic match via bbref_id to Zack Thompson +11301,Zack Wheeler,11,wheelza01,2139,tier1_bbref,Automatic match via bbref_id to Zack Wheeler +11302,Yonny Chirinos,11,HALP,374,tier2_name,Automatic match via exact name to Yonny Chirinos +11303,AJ Pollock,11,HALP,1571,tier2_name,Automatic match via exact name to AJ Pollock +11304,AJ Smith Shawver,11,HALP,1856,tier2_name,Automatic match via exact name to AJ Smith Shawver +11305,Alfonso Rivas,11,HALP,1654,tier2_name,Automatic match via exact name to Alfonso Rivas +11306,Alika Williams,11,willial04,2161,tier1_bbref,Automatic match via bbref_id to Alika Williams +11307,Amir Garrett,11,garream01,698,tier1_bbref,Automatic match via bbref_id to Amir Garrett +11308,Amos Willingham,11,HALP,2165,tier2_name,Automatic match via exact name to Amos Willingham +11309,Andrew Bellatti,11,HALP,169,tier2_name,Automatic match via exact name to Andrew Bellatti +11310,Andrew Suarez,11,HALP,1935,tier2_name,Automatic match via exact name to Andrew Suarez +11311,Andrew Vasquez,11,HALP,2059,tier2_name,Automatic match via exact name to Andrew Vasquez +11312,Andrew Velazquez,11,HALP,2067,tier2_name,Automatic match via exact name to Andrew Velazquez +11313,Anthony Rendon,11,rendoan01,1630,tier1_bbref,Automatic match via bbref_id to Anthony Rendon +11314,Austin Hedges,11,hedgeau01,848,tier1_bbref,Automatic match via bbref_id to Austin Hedges +11315,Austin Nola,11,HALP,1432,tier2_name,Automatic match via exact name to Austin Nola +11316,Avisail Garcia,11,garciav01,678,tier1_bbref,Automatic match via bbref_id to Avisail Garcia +11317,Ben Rortvedt,11,rortvbe01,1709,tier1_bbref,Automatic match via bbref_id to Ben Rortvedt +11318,Billy McKinney,11,HALP,1283,tier2_name,Automatic match via exact name to Billy McKinney +11319,Blake Perkins,11,perkibl01,1543,tier1_bbref,Automatic match via bbref_id to Blake Perkins +11320,Bowden Francis,11,francbo01,644,tier1_bbref,Automatic match via bbref_id to Bowden Francis +11321,Brad Boxberger,11,HALP,229,tier2_name,Automatic match via exact name to Brad Boxberger +11322,Brad Miller,11,HALP,1322,tier2_name,Automatic match via exact name to Brad Miller +11323,Brandon Walter,11,HALP,2112,tier2_name,Automatic match via exact name to Brandon Walter +11324,Brayan Rocchio,11,rocchbr01,1667,tier1_bbref,Automatic match via bbref_id to Brayan Rocchio +11325,Brent Honeywell,11,HALP,923,tier2_name,Automatic match via exact name to Brent Honeywell +11326,Brett Phillips,11,HALP,1555,tier2_name,Automatic match via exact name to Brett Phillips +11327,Brett Sullivan,11,sullibr01,1941,tier1_bbref,Automatic match via bbref_id to Brett Sullivan +11328,Brett Wisely,11,wiselbr01,2182,tier1_bbref,Automatic match via bbref_id to Brett Wisely +11329,Bryce Jarvis,11,jarvibr01,970,tier1_bbref,Automatic match via bbref_id to Bryce Jarvis +11330,Bubba Thompson,11,thompbu01,1986,tier1_bbref,Automatic match via bbref_id to Bubba Thompson +11331,Calvin Faucher,11,fauchca01,599,tier1_bbref,Automatic match via bbref_id to Calvin Faucher +11332,Carter Kieboom,11,HALP,1038,tier2_name,Automatic match via exact name to Carter Kieboom +11333,Casey Lawrence,11,HALP,1099,tier2_name,Automatic match via exact name to Casey Lawrence +11334,Chasen Shreve,11,HALP,1819,tier2_name,Automatic match via exact name to Chasen Shreve +11335,Chris Devenski,11,devench02,498,tier1_bbref,Automatic match via bbref_id to Chris Devenski +11336,Christian Arroyo,11,HALP,96,tier2_name,Automatic match via exact name to Christian Arroyo +11337,Clint Frazier,11,HALP,649,tier2_name,Automatic match via exact name to Clint Frazier +11338,Cody Bradford,11,bradfco01,233,tier1_bbref,Automatic match via bbref_id to Cody Bradford +11339,Colin Selby,11,selbyco01,1797,tier1_bbref,Automatic match via bbref_id to Colin Selby +11340,Collin Snider,11,snideco01,1862,tier1_bbref,Automatic match via bbref_id to Collin Snider +11341,Conner Capel,11,capelco01,323,tier1_bbref,Automatic match via bbref_id to Conner Capel +11342,Connor Brogdon,11,brogdco01,261,tier1_bbref,Automatic match via bbref_id to Connor Brogdon +11343,Cooper Criswell,11,criswco01,438,tier1_bbref,Automatic match via bbref_id to Cooper Criswell +11344,Corey Dickerson,11,HALP,513,tier2_name,Automatic match via exact name to Corey Dickerson +11345,Corey Kluber,11,HALP,1060,tier2_name,Automatic match via exact name to Corey Kluber +11346,Curtis Mead,11,meadcu01,1289,tier1_bbref,Automatic match via bbref_id to Curtis Mead +11347,Dallas Keuchel,11,HALP,1035,tier2_name,Automatic match via exact name to Dallas Keuchel +11348,Dane Myers,11,myersda01,1396,tier1_bbref,Automatic match via bbref_id to Dane Myers +11349,Danny Mendick,11,mendida01,1302,tier1_bbref,Automatic match via bbref_id to Danny Mendick +11350,David Villar,11,HALP,2080,tier2_name,Automatic match via exact name to David Villar +11351,Dinelson Lamet,11,lametdi01,1090,tier1_bbref,Automatic match via bbref_id to Dinelson Lamet +11352,Dominic Canzone,11,canzodo01,322,tier1_bbref,Automatic match via bbref_id to Dominic Canzone +11353,Dominic Leone,11,leonedo01,1116,tier1_bbref,Automatic match via bbref_id to Dominic Leone +11354,Drew Rasmussen,11,HALP,1618,tier2_name,Automatic match via exact name to Drew Rasmussen +11355,Duane Underwood,11,HALP,2033,tier2_name,Automatic match via exact name to Duane Underwood +11356,Dylan Dodd,11,HALP,522,tier2_name,Automatic match via exact name to Dylan Dodd +11357,Erasmo Ramirez,11,ramirer02,1604,tier1_bbref,Automatic match via bbref_id to Erasmo Ramirez +11358,Eric Hosmer,11,HALP,926,tier2_name,Automatic match via exact name to Eric Hosmer +11359,Eric Lauer,11,HALP,1096,tier2_name,Automatic match via exact name to Eric Lauer +11360,Franchy Cordero,11,HALP,418,tier2_name,Automatic match via exact name to Franchy Cordero +11361,Garrett Mitchell,11,HALP,1340,tier2_name,Automatic match via exact name to Garrett Mitchell +11362,Grant Anderson,11,andergr01,75,tier1_bbref,Automatic match via bbref_id to Grant Anderson +11363,Hanser Alberto,11,HALP,30,tier2_name,Automatic match via exact name to Hanser Alberto +11364,Hunter Dozier,11,HALP,533,tier2_name,Automatic match via exact name to Hunter Dozier +11365,Hunter Gaddis,11,gaddihu01,669,tier1_bbref,Automatic match via bbref_id to Hunter Gaddis +11366,Hunter Goodman,11,goodmhu01,747,tier1_bbref,Automatic match via bbref_id to Hunter Goodman +11367,Jackie Bradley Jr,11,HALP,239,tier2_name,Automatic match via exact name to Jackie Bradley Jr +11368,Jacob deGrom,11,HALP,484,tier2_name,Automatic match via exact name to Jacob deGrom +11369,Jake Marisnick,11,HALP,1200,tier2_name,Automatic match via exact name to Jake Marisnick +11370,Jared Walsh,11,walshja01,2111,tier1_bbref,Automatic match via bbref_id to Jared Walsh +11371,Jay Jackson,11,jacksja01,959,tier1_bbref,Automatic match via bbref_id to Jay Jackson +11372,Jesse Chavez,11,chaveje01,370,tier1_bbref,Automatic match via bbref_id to Jesse Chavez +11373,Jesus Aguilar,11,HALP,25,tier2_name,Automatic match via exact name to Jesus Aguilar +11374,Jhoan Duran,11,duranjh01,550,tier1_bbref,Automatic match via bbref_id to Jhoan Duran +11375,Jimmy Cordero,11,HALP,419,tier2_name,Automatic match via exact name to Jimmy Cordero +11376,Joe La Sorsa,11,HALP,1081,tier2_name,Automatic match via exact name to Joe La Sorsa +11377,Joey Bart,11,bartjo01,142,tier1_bbref,Automatic match via bbref_id to Joey Bart +11378,Johnny Cueto,11,HALP,451,tier2_name,Automatic match via exact name to Johnny Cueto +11379,Jon Singleton,11,singljo02,1828,tier1_bbref,Automatic match via bbref_id to Jon Singleton +11380,Jonathan Aranda,11,arandjo01,82,tier1_bbref,Automatic match via bbref_id to Jonathan Aranda +11381,Jonathan Davis,11,HALP,470,tier2_name,Automatic match via exact name to Jonathan Davis +11382,Jonathan Schoop,11,HALP,1779,tier2_name,Automatic match via exact name to Jonathan Schoop +11383,Jordan Luplow,11,HALP,1168,tier2_name,Automatic match via exact name to Jordan Luplow +11384,Jorge Lopez,11,lopezjo02,1144,tier1_bbref,Automatic match via bbref_id to Jorge Lopez +11385,Jorge Polanco,11,polanjo01,1570,tier1_bbref,Automatic match via bbref_id to Jorge Polanco +11386,Jose Miranda,11,miranjo01,1337,tier1_bbref,Automatic match via bbref_id to Jose Miranda +11387,Josh Donaldson,11,HALP,526,tier2_name,Automatic match via exact name to Josh Donaldson +11388,Josh Fleming,11,flemijo01,623,tier1_bbref,Automatic match via bbref_id to Josh Fleming +11389,Josh Harrison,11,HALP,829,tier2_name,Automatic match via exact name to Josh Harrison +11390,Juan Yepez,11,HALP,2213,tier2_name,Automatic match via exact name to Juan Yepez +11391,Justin Bruihl,11,HALP,271,tier2_name,Automatic match via exact name to Justin Bruihl +11392,Kaleb Ort,11,HALP,1464,tier2_name,Automatic match via exact name to Kaleb Ort +11393,Karl Kauffmann,11,HALP,1010,tier2_name,Automatic match via exact name to Karl Kauffmann +11394,Keaton Winn,11,winnke01,2179,tier1_bbref,Automatic match via bbref_id to Keaton Winn +11395,Keegan Akin,11,akinke01,27,tier1_bbref,Automatic match via bbref_id to Keegan Akin +11396,Keegan Thompson,11,thompke02,1982,tier1_bbref,Automatic match via bbref_id to Keegan Thompson +11397,Kenny Rosenberg,11,HALP,1712,tier2_name,Automatic match via exact name to Kenny Rosenberg +11398,Keynan Middleton,11,HALP,1316,tier2_name,Automatic match via exact name to Keynan Middleton +11399,Kevin Herget,11,hergeke01,864,tier1_bbref,Automatic match via bbref_id to Kevin Herget +11400,Kevin Smith,11,smithke05,1854,tier1_bbref,Automatic match via bbref_id to Kevin Smith +11401,Kody Clemens,11,clemeko01,390,tier1_bbref,Automatic match via bbref_id to Kody Clemens +11402,Kyle Farmer,11,farmeky01,598,tier1_bbref,Automatic match via bbref_id to Kyle Farmer +11403,Kyle Harrison,11,harriky01,830,tier1_bbref,Automatic match via bbref_id to Kyle Harrison +11404,Luis H Garcia,11,HALP,3244,manual_new,Manual assignment to new SbaPlayer: Luis H Garcia +11405,Luke Jackson,11,jackslu01,960,tier1_bbref,Automatic match via bbref_id to Luke Jackson +11406,Luke Voit,11,HALP,2087,tier2_name,Automatic match via exact name to Luke Voit +11407,Matt Barnes,11,barnema01,131,tier1_bbref,Automatic match via bbref_id to Matt Barnes +11408,Matt Carasiti,11,carasma01,324,tier1_bbref,Automatic match via bbref_id to Matt Carasiti +11409,Matt Mervis,11,mervima01,1312,tier1_bbref,Automatic match via bbref_id to Matt Mervis +11410,Matt Moore,11,moorema02,1357,tier1_bbref,Automatic match via bbref_id to Matt Moore +11411,Matt Waldron,11,waldrma01,2102,tier1_bbref,Automatic match via bbref_id to Matt Waldron +11412,Michael Brantley,11,HALP,240,tier2_name,Automatic match via exact name to Michael Brantley +11413,Michael Busch,11,buschmi02,288,tier1_bbref,Automatic match via bbref_id to Michael Busch +11414,Michael Rucker,11,HALP,1721,tier2_name,Automatic match via exact name to Michael Rucker +11415,Michael Stefanic,11,HALP,1901,tier2_name,Automatic match via exact name to Michael Stefanic +11416,Miguel Andujar,11,andujmi01,78,tier1_bbref,Automatic match via bbref_id to Miguel Andujar +11417,Mike Zunino,11,HALP,2234,tier2_name,Automatic match via exact name to Mike Zunino +11418,Miles Mastrobuoni,11,mastrmi01,1232,tier1_bbref,Automatic match via bbref_id to Miles Mastrobuoni +11419,Nelson Cruz,11,HALP,447,tier2_name,Automatic match via exact name to Nelson Cruz +11420,Nestor Cortes Jr,11,cortene01,421,tier1_bbref,Automatic match via bbref_id to Nestor Cortes Jr +11421,Nick Gonzales,11,gonzani01,736,tier1_bbref,Automatic match via bbref_id to Nick Gonzales +11422,Nick Gordon,11,gordoni01,752,tier1_bbref,Automatic match via bbref_id to Nick Gordon +11423,Nick Loftin,11,loftini01,1136,tier1_bbref,Automatic match via bbref_id to Nick Loftin +11424,Noah Davis,11,davisno01,472,tier1_bbref,Automatic match via bbref_id to Noah Davis +11425,Noelvi Marte,11,HALP,1212,tier2_name,Automatic match via exact name to Noelvi Marte +11426,Oscar Gonzalez,11,HALP,744,tier2_name,Automatic match via exact name to Oscar Gonzalez +11427,Osleivis Basabe,11,HALP,143,tier2_name,Automatic match via exact name to Osleivis Basabe +11428,Paul DeJong,11,dejonpa01,485,tier1_bbref,Automatic match via bbref_id to Paul DeJong +11429,Peter Strzelecki,11,strzepe01,1930,tier1_bbref,Automatic match via bbref_id to Peter Strzelecki +11430,Raimel Tapia,11,HALP,1957,tier2_name,Automatic match via exact name to Raimel Tapia +11431,Randy Vasquez,11,vasqura02,2060,tier1_bbref,Automatic match via bbref_id to Randy Vasquez +11432,Rene Pinto,11,pintore02,1561,tier1_bbref,Automatic match via bbref_id to Rene Pinto +11433,Romy Gonzalez,11,gonzaro01,745,tier1_bbref,Automatic match via bbref_id to Romy Gonzalez +11434,Ronel Blanco,11,blancro01,208,tier1_bbref,Automatic match via bbref_id to Ronel Blanco +11435,Rougned Odor,11,HALP,1451,tier2_name,Automatic match via exact name to Rougned Odor +11436,Ryan Thompson,11,thompry02,1983,tier1_bbref,Automatic match via bbref_id to Ryan Thompson +11437,Ryan Weathers,11,weathry01,2123,tier1_bbref,Automatic match via bbref_id to Ryan Weathers +11438,Samad Taylor,11,taylosa04,1969,tier1_bbref,Automatic match via bbref_id to Samad Taylor +11439,Sean Hjelle,11,hjellse01,906,tier1_bbref,Automatic match via bbref_id to Sean Hjelle +11440,Sonny Gray,11,grayso01,765,tier1_bbref,Automatic match via bbref_id to Sonny Gray +11441,Spencer Turnbull,11,turnbsp01,2028,tier1_bbref,Automatic match via bbref_id to Spencer Turnbull +11442,Taylor Motter,11,HALP,1376,tier2_name,Automatic match via exact name to Taylor Motter +11443,Thomas Hatch,11,HALP,10010443,emergency_new,"EMERGENCY: Unassigned player, needs new SbaPlayer record" +11444,Tim Herrin,11,herriti01,886,tier1_bbref,Automatic match via bbref_id to Tim Herrin +11445,Tommy Doyle,11,HALP,530,tier2_name,Automatic match via exact name to Tommy Doyle +11446,Trayce Thompson,11,HALP,1980,tier2_name,Automatic match via exact name to Trayce Thompson +11447,Trevor Larnach,11,larnatr01,1094,tier1_bbref,Automatic match via bbref_id to Trevor Larnach +11448,Tucker Barnhart,11,barnhtu01,135,tier1_bbref,Automatic match via bbref_id to Tucker Barnhart +11449,Tyler Mahle,11,HALP,1183,tier2_name,Automatic match via exact name to Tyler Mahle +11450,Victor Gonzalez,11,gonzavi02,743,tier1_bbref,Automatic match via bbref_id to Victor Gonzalez +11451,Victor Robles,11,roblevi01,1666,tier1_bbref,Automatic match via bbref_id to Victor Robles +11452,Vidal Brujan,11,brujavi01,272,tier1_bbref,Automatic match via bbref_id to Vidal Brujan +11453,Wil Myers,11,HALP,1395,tier2_name,Automatic match via exact name to Wil Myers +11454,Willie Calhoun,11,calhowi01,307,tier1_bbref,Automatic match via bbref_id to Willie Calhoun +11455,Yerry De Los Santos,11,HALP,481,tier2_name,Automatic match via exact name to Yerry De Los Santos +11456,Yohan Ramirez,11,ramiryo01,1611,tier1_bbref,Automatic match via bbref_id to Yohan Ramirez +11457,Yonathan Daza,11,HALP,476,tier2_name,Automatic match via exact name to Yonathan Daza +11458,Aaron Bummer,12,bummeaa01,279,tier1_bbref,Automatic match via bbref_id to Aaron Bummer +11459,Aaron Civale,12,civalaa01,383,tier1_bbref,Automatic match via bbref_id to Aaron Civale +11460,Aaron Hicks,12,hicksaa01,892,tier1_bbref,Automatic match via bbref_id to Aaron Hicks +11461,Aaron Judge,12,judgeaa01,3,tier1_bbref,Automatic match via bbref_id to Aaron Judge +11462,Aaron Nola,12,nolaaa01,1433,tier1_bbref,Automatic match via bbref_id to Aaron Nola +11463,Aaron Schunk,12,schunaa01,1783,tier1_bbref,Automatic match via bbref_id to Aaron Schunk +11464,Abraham Toro,12,toroab01,2001,tier1_bbref,Automatic match via bbref_id to Abraham Toro +11465,Adam Cimber,12,cimbead01,380,tier1_bbref,Automatic match via bbref_id to Adam Cimber +11466,Adam Duvall,12,duvalad01,553,tier1_bbref,Automatic match via bbref_id to Adam Duvall +11467,Adam Frazier,12,fraziad01,648,tier1_bbref,Automatic match via bbref_id to Adam Frazier +11468,Adam Mazur,12,mazurad01,1256,tier1_bbref,Automatic match via bbref_id to Adam Mazur +11469,Adam Oller,12,ollerad01,1459,tier1_bbref,Automatic match via bbref_id to Adam Oller +11470,Adam Ottavino,12,ottavad01,1475,tier1_bbref,Automatic match via bbref_id to Adam Ottavino +11471,Addison Barger,12,bargead01,127,tier1_bbref,Automatic match via bbref_id to Addison Barger +11472,Adley Rutschman,12,rutscad01,1729,tier1_bbref,Automatic match via bbref_id to Adley Rutschman +11473,Adolis Garcia,12,garciad02,690,tier1_bbref,Automatic match via bbref_id to Adolis Garcia +11474,Adrian Del Castillo,12,delcaad01,486,tier1_bbref,Automatic match via bbref_id to Adrian Del Castillo +11475,Adrian Houser,12,housead01,928,tier1_bbref,Automatic match via bbref_id to Adrian Houser +11476,Adrian Morejon,12,morejad01,1363,tier1_bbref,Automatic match via bbref_id to Adrian Morejon +11477,AJ Minter,12,minteaj01,1336,tier1_bbref,Automatic match via bbref_id to AJ Minter +11478,AJ Puk,12,pukaj01,1592,tier1_bbref,Automatic match via bbref_id to AJ Puk +11479,Akil Baddoo,12,baddoak01,109,tier1_bbref,Automatic match via bbref_id to Akil Baddoo +11480,Alan Trejo,12,trejoal01,2012,tier1_bbref,Automatic match via bbref_id to Alan Trejo +11481,Albert Suarez,12,suareal01,1933,tier1_bbref,Automatic match via bbref_id to Albert Suarez +11482,Alec Bohm,12,bohmal01,217,tier1_bbref,Automatic match via bbref_id to Alec Bohm +11483,Alec Burleson,12,burleal01,285,tier1_bbref,Automatic match via bbref_id to Alec Burleson +11484,Alec Marsh,12,marshal01,1206,tier1_bbref,Automatic match via bbref_id to Alec Marsh +11485,Alejandro Kirk,12,kirkal01,1056,tier1_bbref,Automatic match via bbref_id to Alejandro Kirk +11486,Alek Thomas,12,thomaal01,1979,tier1_bbref,Automatic match via bbref_id to Alek Thomas +11487,Alex Bregman,12,bregmal01,248,tier1_bbref,Automatic match via bbref_id to Alex Bregman +11488,Alex Call,12,callal02,308,tier1_bbref,Automatic match via bbref_id to Alex Call +11489,Alex Faedo,12,faedoal01,591,tier1_bbref,Automatic match via bbref_id to Alex Faedo +11490,Alex Jackson,12,jacksal02,961,tier1_bbref,Automatic match via bbref_id to Alex Jackson +11491,Alex Kirilloff,12,kirilal01,1055,tier1_bbref,Automatic match via bbref_id to Alex Kirilloff +11492,Alex Verdugo,12,verdual01,2069,tier1_bbref,Automatic match via bbref_id to Alex Verdugo +11493,Alex Vesia,12,vesiaal01,2072,tier1_bbref,Automatic match via bbref_id to Alex Vesia +11494,Alex Wood,12,woodal02,2193,tier1_bbref,Automatic match via bbref_id to Alex Wood +11495,Alexis Diaz,12,diazal03,509,tier1_bbref,Automatic match via bbref_id to Alexis Diaz +11496,Ali Sanchez,12,sanchal04,1747,tier1_bbref,Automatic match via bbref_id to Ali Sanchez +11497,Alika Williams,12,willial04,2161,tier1_bbref,Automatic match via bbref_id to Alika Williams +11498,Amed Rosario,12,rosaram01,1711,tier1_bbref,Automatic match via bbref_id to Amed Rosario +11499,Andre Pallante,12,pallaan01,1492,tier1_bbref,Automatic match via bbref_id to Andre Pallante +11500,Andres Chaparro,12,chapaan01,365,tier1_bbref,Automatic match via bbref_id to Andres Chaparro +11501,Andres Gimenez,12,gimenan01,721,tier1_bbref,Automatic match via bbref_id to Andres Gimenez +11502,Andres Munoz,12,munozan01,1384,tier1_bbref,Automatic match via bbref_id to Andres Munoz +11503,Andrew Abbott,12,abbotan01,4,tier1_bbref,Automatic match via bbref_id to Andrew Abbott +11504,Andrew Benintendi,12,beninan01,177,tier1_bbref,Automatic match via bbref_id to Andrew Benintendi +11505,Andrew Chafin,12,chafian01,363,tier1_bbref,Automatic match via bbref_id to Andrew Chafin +11506,Andrew Heaney,12,heanean01,843,tier1_bbref,Automatic match via bbref_id to Andrew Heaney +11507,Andrew Kittredge,12,kittran01,1057,tier1_bbref,Automatic match via bbref_id to Andrew Kittredge +11508,Andrew Knizner,12,kniznan01,1065,tier1_bbref,Automatic match via bbref_id to Andrew Knizner +11509,Andrew McCutchen,12,mccutan01,1272,tier1_bbref,Automatic match via bbref_id to Andrew McCutchen +11510,Andrew Nardi,12,nardian01,1400,tier1_bbref,Automatic match via bbref_id to Andrew Nardi +11511,Andrew Vaughn,12,vaughan01,2061,tier1_bbref,Automatic match via bbref_id to Andrew Vaughn +11512,Andruw Monasterio,12,monasan01,1347,tier1_bbref,Automatic match via bbref_id to Andruw Monasterio +11513,Andy Ibanez,12,ibanean01,948,tier1_bbref,Automatic match via bbref_id to Andy Ibanez +11514,Andy Pages,12,pagesan01,1485,tier1_bbref,Automatic match via bbref_id to Andy Pages +11515,Angel Chivilli,12,chivian01,376,tier1_bbref,Automatic match via bbref_id to Angel Chivilli +11516,Angel Martinez,12,martian02,1228,tier1_bbref,Automatic match via bbref_id to Angel Martinez +11517,Angel Zerpa,12,zerpaan01,2224,tier1_bbref,Automatic match via bbref_id to Angel Zerpa +11518,Anthony Banda,12,bandaan01,121,tier1_bbref,Automatic match via bbref_id to Anthony Banda +11519,Anthony Bender,12,bendean01,176,tier1_bbref,Automatic match via bbref_id to Anthony Bender +11520,Anthony Molina,12,molinan01,1345,tier1_bbref,Automatic match via bbref_id to Anthony Molina +11521,Anthony Rendon,12,rendoan01,1630,tier1_bbref,Automatic match via bbref_id to Anthony Rendon +11522,Anthony Rizzo,12,rizzoan01,1658,tier1_bbref,Automatic match via bbref_id to Anthony Rizzo +11523,Anthony Santander,12,santaan02,1764,tier1_bbref,Automatic match via bbref_id to Anthony Santander +11524,Anthony Volpe,12,volpean01,2088,tier1_bbref,Automatic match via bbref_id to Anthony Volpe +11525,Aroldis Chapman,12,chapmar01,366,tier1_bbref,Automatic match via bbref_id to Aroldis Chapman +11526,Austin Adams,12,adamsau02,16,tier1_bbref,Automatic match via bbref_id to Austin Adams +11527,Austin Barnes,12,barneau01,132,tier1_bbref,Automatic match via bbref_id to Austin Barnes +11528,Austin Gomber,12,gombeau01,730,tier1_bbref,Automatic match via bbref_id to Austin Gomber +11529,Austin Hays,12,haysau01,839,tier1_bbref,Automatic match via bbref_id to Austin Hays +11530,Austin Hedges,12,hedgeau01,848,tier1_bbref,Automatic match via bbref_id to Austin Hedges +11531,Austin Martin,12,martiau01,1220,tier1_bbref,Automatic match via bbref_id to Austin Martin +11532,Austin Riley,12,rileyau01,1649,tier1_bbref,Automatic match via bbref_id to Austin Riley +11533,Austin Slater,12,slateau01,1838,tier1_bbref,Automatic match via bbref_id to Austin Slater +11534,Austin Voth,12,vothau01,2091,tier1_bbref,Automatic match via bbref_id to Austin Voth +11535,Austin Wells,12,wellsau01,2131,tier1_bbref,Automatic match via bbref_id to Austin Wells +11536,Bailey Falter,12,falteba01,594,tier1_bbref,Automatic match via bbref_id to Bailey Falter +11537,Bailey Ober,12,oberba01,1447,tier1_bbref,Automatic match via bbref_id to Bailey Ober +11538,Beau Brieske,12,briesbe01,256,tier1_bbref,Automatic match via bbref_id to Beau Brieske +11539,Ben Brown,12,brownbe02,266,tier1_bbref,Automatic match via bbref_id to Ben Brown +11540,Ben Gamel,12,HALP,676,tier2_name,Automatic match via exact name to Ben Gamel +11541,Ben Joyce,12,joycebe01,998,tier1_bbref,Automatic match via bbref_id to Ben Joyce +11542,Ben Lively,12,livelbe01,1130,tier1_bbref,Automatic match via bbref_id to Ben Lively +11543,Ben Rice,12,ricebe01,1643,tier1_bbref,Automatic match via bbref_id to Ben Rice +11544,Ben Rortvedt,12,rortvbe01,1709,tier1_bbref,Automatic match via bbref_id to Ben Rortvedt +11546,Blake Snell,12,snellbl01,1861,tier1_bbref,Automatic match via bbref_id to Blake Snell +11547,Blake Treinen,12,treinbl01,2011,tier1_bbref,Automatic match via bbref_id to Blake Treinen +11548,Blaze Alexander,12,alexabl01,39,tier1_bbref,Automatic match via bbref_id to Blaze Alexander +11549,Bligh Madris,12,madribl01,1179,tier1_bbref,Automatic match via bbref_id to Bligh Madris +11550,Bo Bichette,12,bichebo01,190,tier1_bbref,Automatic match via bbref_id to Bo Bichette +11551,Bo Naylor,12,naylobo01,1405,tier1_bbref,Automatic match via bbref_id to Bo Naylor +11552,Bobby Dalbec,12,dalbebo01,458,tier1_bbref,Automatic match via bbref_id to Bobby Dalbec +11553,Bobby Miller,12,millebo06,1326,tier1_bbref,Automatic match via bbref_id to Bobby Miller +11554,Bobby Witt Jr,12,wittbo02,2184,tier1_bbref,Automatic match via bbref_id to Bobby Witt Jr +11555,Bowden Francis,12,francbo01,644,tier1_bbref,Automatic match via bbref_id to Bowden Francis +11556,Brad Keller,12,kellebr01,1016,tier1_bbref,Automatic match via bbref_id to Brad Keller +11557,Braden Shewmake,12,shewmbr01,1815,tier1_bbref,Automatic match via bbref_id to Braden Shewmake +11558,Bradley Blalock,12,blalobr01,206,tier1_bbref,Automatic match via bbref_id to Bradley Blalock +11559,Brady Singer,12,singebr01,1827,tier1_bbref,Automatic match via bbref_id to Brady Singer +11560,Brandon Bielak,12,bielabr01,195,tier1_bbref,Automatic match via bbref_id to Brandon Bielak +11561,Brandon Crawford,12,crawfbr01,430,tier1_bbref,Automatic match via bbref_id to Brandon Crawford +11562,Brandon Drury,12,drurybr01,535,tier1_bbref,Automatic match via bbref_id to Brandon Drury +11563,Brandon Lowe,12,lowebr01,1156,tier1_bbref,Automatic match via bbref_id to Brandon Lowe +11564,Brandon Marsh,12,marshbr02,1205,tier1_bbref,Automatic match via bbref_id to Brandon Marsh +11565,Brandon Nimmo,12,nimmobr01,1425,tier1_bbref,Automatic match via bbref_id to Brandon Nimmo +11566,Brandon Pfaadt,12,pfaadbr01,1551,tier1_bbref,Automatic match via bbref_id to Brandon Pfaadt +11567,Brant Hurter,12,hurtebr01,942,tier1_bbref,Automatic match via bbref_id to Brant Hurter +11568,Braxton Garrett,12,garrebr01,701,tier1_bbref,Automatic match via bbref_id to Braxton Garrett +11569,Brayan Bello,12,bellobr01,171,tier1_bbref,Automatic match via bbref_id to Brayan Bello +11570,Brayan Rocchio,12,rocchbr01,1667,tier1_bbref,Automatic match via bbref_id to Brayan Rocchio +11571,Brenan Hanifee,12,hanifbr01,817,tier1_bbref,Automatic match via bbref_id to Brenan Hanifee +11572,Brendan Donovan,12,donovbr01,527,tier1_bbref,Automatic match via bbref_id to Brendan Donovan +11573,Brendan Rodgers,12,rodgebr02,1668,tier1_bbref,Automatic match via bbref_id to Brendan Rodgers +11574,Brendon Little,12,littlbr02,1128,tier1_bbref,Automatic match via bbref_id to Brendon Little +11575,Brennan Bernardino,12,bernabr01,181,tier1_bbref,Automatic match via bbref_id to Brennan Bernardino +11576,Brent Honeywell,12,honeybr01,923,tier1_bbref,Automatic match via bbref_id to Brent Honeywell +11577,Brent Rooker,12,rookebr01,1708,tier1_bbref,Automatic match via bbref_id to Brent Rooker +11578,Brent Suter,12,suterbr01,1943,tier1_bbref,Automatic match via bbref_id to Brent Suter +11579,Brenton Doyle,12,doylebr02,531,tier1_bbref,Automatic match via bbref_id to Brenton Doyle +11580,Brett Baty,12,batybr01,149,tier1_bbref,Automatic match via bbref_id to Brett Baty +11581,Brett Harris,12,harribr02,828,tier1_bbref,Automatic match via bbref_id to Brett Harris +11582,Brett Wisely,12,wiselbr01,2182,tier1_bbref,Automatic match via bbref_id to Brett Wisely +11583,Brian Serven,12,servebr01,1803,tier1_bbref,Automatic match via bbref_id to Brian Serven +11584,Brice Turang,12,turanbr02,2026,tier1_bbref,Automatic match via bbref_id to Brice Turang +11585,Brock Burke,12,burkebr01,284,tier1_bbref,Automatic match via bbref_id to Brock Burke +11586,Brooks Baldwin,12,baldwbr01,120,tier1_bbref,Automatic match via bbref_id to Brooks Baldwin +11587,Brooks Lee,12,leebr02,1110,tier1_bbref,Automatic match via bbref_id to Brooks Lee +11588,Bryan Abreu,12,abreubr01,8,tier1_bbref,Automatic match via bbref_id to Bryan Abreu +11589,Bryan Baker,12,bakerbr01,117,tier1_bbref,Automatic match via bbref_id to Bryan Baker +11590,Bryan De La Cruz,12,delacbr01,479,tier1_bbref,Automatic match via bbref_id to Bryan De La Cruz +11591,Bryan Hoeing,12,hoeinbr01,908,tier1_bbref,Automatic match via bbref_id to Bryan Hoeing +11592,Bryan Hudson,12,hudsobr01,935,tier1_bbref,Automatic match via bbref_id to Bryan Hudson +11593,Bryan King,12,kingbr02,1046,tier1_bbref,Automatic match via bbref_id to Bryan King +11594,Bryan Ramos,12,ramosbr01,1616,tier1_bbref,Automatic match via bbref_id to Bryan Ramos +11595,Bryan Reynolds,12,reynobr01,1641,tier1_bbref,Automatic match via bbref_id to Bryan Reynolds +11596,Bryan Sammons,12,sammobr01,1741,tier1_bbref,Automatic match via bbref_id to Bryan Sammons +11598,Bryce Elder,12,elderbr01,564,tier1_bbref,Automatic match via bbref_id to Bryce Elder +11599,Bryce Harper,12,harpebr03,823,tier1_bbref,Automatic match via bbref_id to Bryce Harper +11600,Bryce Jarvis,12,jarvibr01,970,tier1_bbref,Automatic match via bbref_id to Bryce Jarvis +11601,Bryce Johnson,12,johnsbr03,987,tier1_bbref,Automatic match via bbref_id to Bryce Johnson +11602,Bryce Miller,12,millebr04,1328,tier1_bbref,Automatic match via bbref_id to Bryce Miller +11603,Bryse Wilson,12,wilsobr02,2171,tier1_bbref,Automatic match via bbref_id to Bryse Wilson +11604,Bryson Stott,12,stottbr01,1915,tier1_bbref,Automatic match via bbref_id to Bryson Stott +11605,Buck Farmer,12,farmebu01,597,tier1_bbref,Automatic match via bbref_id to Buck Farmer +11606,Burch Smith,12,smithbu03,1844,tier1_bbref,Automatic match via bbref_id to Burch Smith +11607,Byron Buxton,12,buxtoby01,295,tier1_bbref,Automatic match via bbref_id to Byron Buxton +11608,Cade Povich,12,povicca01,1580,tier1_bbref,Automatic match via bbref_id to Cade Povich +11689,Dane Myers,12,myersda01,1396,tier1_bbref,Automatic match via bbref_id to Dane Myers +11609,Cade Smith,12,smithca06,1853,tier1_bbref,Automatic match via bbref_id to Cade Smith +11610,Cal Quantrill,12,quantca01,1593,tier1_bbref,Automatic match via bbref_id to Cal Quantrill +11611,Cal Raleigh,12,raleica01,1600,tier1_bbref,Automatic match via bbref_id to Cal Raleigh +11612,Caleb Ferguson,12,ferguca01,605,tier1_bbref,Automatic match via bbref_id to Caleb Ferguson +11613,Caleb Thielbar,12,thielca01,1977,tier1_bbref,Automatic match via bbref_id to Caleb Thielbar +11614,Calvin Faucher,12,fauchca01,599,tier1_bbref,Automatic match via bbref_id to Calvin Faucher +11615,Cam Booser,12,booseca01,221,tier1_bbref,Automatic match via bbref_id to Cam Booser +11616,Camilo Doval,12,dovalca01,529,tier1_bbref,Automatic match via bbref_id to Camilo Doval +11617,Carlos Carrasco,12,carraca01,331,tier1_bbref,Automatic match via bbref_id to Carlos Carrasco +11618,Carlos Correa,12,correca01,420,tier1_bbref,Automatic match via bbref_id to Carlos Correa +11619,Carlos Estevez,12,estevca01,585,tier1_bbref,Automatic match via bbref_id to Carlos Estevez +11620,Carlos Hernandez,12,hernaca04,880,tier1_bbref,Automatic match via bbref_id to Carlos Hernandez +11621,Carlos Rodon,12,rodonca01,1670,tier1_bbref,Automatic match via bbref_id to Carlos Rodon +11622,Carlos Santana,12,santaca01,1759,tier1_bbref,Automatic match via bbref_id to Carlos Santana +11623,Carmen Mlodzinski,12,mlodzca01,1343,tier1_bbref,Automatic match via bbref_id to Carmen Mlodzinski +11624,Carson Fulmer,12,fulmeca01,667,tier1_bbref,Automatic match via bbref_id to Carson Fulmer +11625,Carson Kelly,12,kellyca02,1023,tier1_bbref,Automatic match via bbref_id to Carson Kelly +11626,Carson Spiers,12,spierca01,1887,tier1_bbref,Automatic match via bbref_id to Carson Spiers +11627,Casey Mize,12,mizeca01,1342,tier1_bbref,Automatic match via bbref_id to Casey Mize +11628,Casey Schmitt,12,schmica01,1775,tier1_bbref,Automatic match via bbref_id to Casey Schmitt +11629,Cavan Biggio,12,biggica01,196,tier1_bbref,Automatic match via bbref_id to Cavan Biggio +11630,Ceddanne Rafaela,12,rafaece01,1597,tier1_bbref,Automatic match via bbref_id to Ceddanne Rafaela +11631,Cedric Mullins,12,mullice01,1381,tier1_bbref,Automatic match via bbref_id to Cedric Mullins +11632,Chad Green,12,greench03,768,tier1_bbref,Automatic match via bbref_id to Chad Green +11633,Chad Kuhl,12,kuhlch01,1078,tier1_bbref,Automatic match via bbref_id to Chad Kuhl +11634,Charlie Blackmon,12,blackch02,205,tier1_bbref,Automatic match via bbref_id to Charlie Blackmon +11635,Charlie Morton,12,mortoch02,1375,tier1_bbref,Automatic match via bbref_id to Charlie Morton +11636,Chas McCormick,12,mccorch01,1269,tier1_bbref,Automatic match via bbref_id to Chas McCormick +11637,Chase Anderson,12,anderch01,67,tier1_bbref,Automatic match via bbref_id to Chase Anderson +11638,Chris Bassitt,12,bassich01,146,tier1_bbref,Automatic match via bbref_id to Chris Bassitt +11639,Chris Devenski,12,devench02,498,tier1_bbref,Automatic match via bbref_id to Chris Devenski +11640,Chris Flexen,12,flexech01,626,tier1_bbref,Automatic match via bbref_id to Chris Flexen +11641,Chris Martin,12,martich02,1214,tier1_bbref,Automatic match via bbref_id to Chris Martin +11642,Chris Paddack,12,paddach01,1483,tier1_bbref,Automatic match via bbref_id to Chris Paddack +11644,Chris Sale,12,salech01,1739,tier1_bbref,Automatic match via bbref_id to Chris Sale +11645,Chris Stratton,12,stratch01,1922,tier1_bbref,Automatic match via bbref_id to Chris Stratton +11646,Chris Taylor,12,tayloch03,1964,tier1_bbref,Automatic match via bbref_id to Chris Taylor +11647,Christian Bethancourt,12,bethach01,185,tier1_bbref,Automatic match via bbref_id to Christian Bethancourt +11648,Christian Encarnacion Strand,12,encarch01,573,tier1_bbref,Automatic match via bbref_id to Christian Encarnacion Strand +11649,Christian Scott,12,scottch01,1789,tier1_bbref,Automatic match via bbref_id to Christian Scott +11650,Christian Vazquez,12,vazquch01,2063,tier1_bbref,Automatic match via bbref_id to Christian Vazquez +11651,Christian Walker,12,walkech02,2104,tier1_bbref,Automatic match via bbref_id to Christian Walker +11652,Christian Yelich,12,yelicch01,2212,tier1_bbref,Automatic match via bbref_id to Christian Yelich +11653,Christopher Morel,12,morelch01,1364,tier1_bbref,Automatic match via bbref_id to Christopher Morel +11654,Chuckie Robinson,12,robinch04,1664,tier1_bbref,Automatic match via bbref_id to Chuckie Robinson +11655,Cionel Perez,12,perezci01,1540,tier1_bbref,Automatic match via bbref_id to Cionel Perez +11656,CJ Abrams,12,abramcj01,6,tier1_bbref,Automatic match via bbref_id to CJ Abrams +11657,Clarke Schmidt,12,schmicl01,1774,tier1_bbref,Automatic match via bbref_id to Clarke Schmidt +11658,Clay Holmes,12,holmecl01,919,tier1_bbref,Automatic match via bbref_id to Clay Holmes +11659,Clayton Kershaw,12,kershcl01,1034,tier1_bbref,Automatic match via bbref_id to Clayton Kershaw +11660,Cody Bellinger,12,bellico01,170,tier1_bbref,Automatic match via bbref_id to Cody Bellinger +11661,Cody Bradford,12,bradfco01,233,tier1_bbref,Automatic match via bbref_id to Cody Bradford +11662,Cole Irvin,12,irvinco01,954,tier1_bbref,Automatic match via bbref_id to Cole Irvin +11663,Cole Ragans,12,raganco01,1598,tier1_bbref,Automatic match via bbref_id to Cole Ragans +11664,Cole Sands,12,sandsco01,1755,tier1_bbref,Automatic match via bbref_id to Cole Sands +11666,Colin Poche,12,pocheco01,1568,tier1_bbref,Automatic match via bbref_id to Colin Poche +11667,Colin Rea,12,reaco01,1621,tier1_bbref,Automatic match via bbref_id to Colin Rea +11668,Collin Snider,12,snideco01,1862,tier1_bbref,Automatic match via bbref_id to Collin Snider +11669,Colt Keith,12,keithco01,1013,tier1_bbref,Automatic match via bbref_id to Colt Keith +11670,Colten Brewer,12,breweco01,252,tier1_bbref,Automatic match via bbref_id to Colten Brewer +11671,Colton Cowser,12,cowseco01,426,tier1_bbref,Automatic match via bbref_id to Colton Cowser +11672,Connor Joe,12,joeco01,983,tier1_bbref,Automatic match via bbref_id to Connor Joe +11673,Connor Norby,12,norbyco01,1437,tier1_bbref,Automatic match via bbref_id to Connor Norby +11674,Connor Wong,12,wongco01,2189,tier1_bbref,Automatic match via bbref_id to Connor Wong +11675,Cooper Criswell,12,criswco01,438,tier1_bbref,Automatic match via bbref_id to Cooper Criswell +11676,Corbin Burnes,12,burneco01,286,tier1_bbref,Automatic match via bbref_id to Corbin Burnes +11677,Corbin Carroll,12,carroco02,332,tier1_bbref,Automatic match via bbref_id to Corbin Carroll +11678,Corey Julks,12,julksco01,1001,tier1_bbref,Automatic match via bbref_id to Corey Julks +11679,Corey Seager,12,seageco01,1794,tier1_bbref,Automatic match via bbref_id to Corey Seager +11680,Craig Kimbrel,12,kimbrcr01,1043,tier1_bbref,Automatic match via bbref_id to Craig Kimbrel +11681,Cristian Javier,12,javiecr01,971,tier1_bbref,Automatic match via bbref_id to Cristian Javier +11682,Cristian Pache,12,pachecr01,1482,tier1_bbref,Automatic match via bbref_id to Cristian Pache +11683,Cristopher Sanchez,12,sanchcr01,1748,tier1_bbref,Automatic match via bbref_id to Cristopher Sanchez +11684,Curt Casali,12,casalcu01,334,tier1_bbref,Automatic match via bbref_id to Curt Casali +11685,Curtis Mead,12,meadcu01,1289,tier1_bbref,Automatic match via bbref_id to Curtis Mead +11686,Dairon Blanco,12,blancda02,209,tier1_bbref,Automatic match via bbref_id to Dairon Blanco +11687,Dakota Hudson,12,hudsoda02,934,tier1_bbref,Automatic match via bbref_id to Dakota Hudson +11688,Dane Dunning,12,dunnida01,548,tier1_bbref,Automatic match via bbref_id to Dane Dunning +11690,Daniel Coulombe,12,couloda01,10010690,emergency_new,"EMERGENCY: Unassigned player, needs new SbaPlayer record" +11691,Daniel Hudson,12,hudsoda01,933,tier1_bbref,Automatic match via bbref_id to Daniel Hudson +11692,Daniel Lynch,12,lynchda02,1172,tier1_bbref,Automatic match via bbref_id to Daniel Lynch +11693,Daniel Schneemann,12,schneda04,1776,tier1_bbref,Automatic match via bbref_id to Daniel Schneemann +11694,Daniel Vogelbach,12,vogelda01,2085,tier1_bbref,Automatic match via bbref_id to Daniel Vogelbach +11695,Danny Jansen,12,janseda01,969,tier1_bbref,Automatic match via bbref_id to Danny Jansen +11696,Danny Mendick,12,mendida01,1302,tier1_bbref,Automatic match via bbref_id to Danny Mendick +11697,Danny Young,12,youngda02,2218,tier1_bbref,Automatic match via bbref_id to Danny Young +11698,Dansby Swanson,12,swansda01,1947,tier1_bbref,Automatic match via bbref_id to Dansby Swanson +11699,Dany Jimenez,12,jimenda01,981,tier1_bbref,Automatic match via bbref_id to Dany Jimenez +11700,Darell Hernaiz,12,hernada04,866,tier1_bbref,Automatic match via bbref_id to Darell Hernaiz +11701,Darren McCaughan,12,mccauda01,1267,tier1_bbref,Automatic match via bbref_id to Darren McCaughan +11702,Daulton Varsho,12,varshda01,2058,tier1_bbref,Automatic match via bbref_id to Daulton Varsho +11703,David Bednar,12,bednada01,162,tier1_bbref,Automatic match via bbref_id to David Bednar +11704,David Dahl,12,dahlda01,457,tier1_bbref,Automatic match via bbref_id to David Dahl +11705,David Festa,12,festada01,611,tier1_bbref,Automatic match via bbref_id to David Festa +11706,David Fry,12,fryda01,663,tier1_bbref,Automatic match via bbref_id to David Fry +11707,David Hamilton,12,hamilda03,812,tier1_bbref,Automatic match via bbref_id to David Hamilton +11708,David Peralta,12,peralda01,1522,tier1_bbref,Automatic match via bbref_id to David Peralta +11709,David Peterson,12,peterda01,1548,tier1_bbref,Automatic match via bbref_id to David Peterson +11710,David Robertson,12,roberda08,1662,tier1_bbref,Automatic match via bbref_id to David Robertson +11711,Davis Daniel,12,danieda01,459,tier1_bbref,Automatic match via bbref_id to Davis Daniel +11712,Davis Martin,12,martida03,1219,tier1_bbref,Automatic match via bbref_id to Davis Martin +11713,Davis Schneider,12,schneda03,1777,tier1_bbref,Automatic match via bbref_id to Davis Schneider +11714,Daz Cameron,12,camerda01,310,tier1_bbref,Automatic match via bbref_id to Daz Cameron +11715,Dean Kremer,12,kremede01,1077,tier1_bbref,Automatic match via bbref_id to Dean Kremer +11716,Declan Cronin,12,cronide01,443,tier1_bbref,Automatic match via bbref_id to Declan Cronin +11717,Dedniel Nunez,12,nunezde01,1445,tier1_bbref,Automatic match via bbref_id to Dedniel Nunez +11718,Dennis Santana,12,santade01,1762,tier1_bbref,Automatic match via bbref_id to Dennis Santana +11719,Derek Hill,12,hillde01,899,tier1_bbref,Automatic match via bbref_id to Derek Hill +11720,Derek Law,12,lawde01,1098,tier1_bbref,Automatic match via bbref_id to Derek Law +11721,Devin Williams,12,willide03,2158,tier1_bbref,Automatic match via bbref_id to Devin Williams +11722,Dillon Dingler,12,dingldi01,517,tier1_bbref,Automatic match via bbref_id to Dillon Dingler +11723,Dillon Tate,12,tatedi01,1959,tier1_bbref,Automatic match via bbref_id to Dillon Tate +11724,DJ Herz,12,herzdj01,888,tier1_bbref,Automatic match via bbref_id to DJ Herz +11725,DJ LeMahieu,12,lemahdj01,1114,tier1_bbref,Automatic match via bbref_id to DJ LeMahieu +11726,DJ Stewart,12,stewadj01,1909,tier1_bbref,Automatic match via bbref_id to DJ Stewart +11727,DL Hall,12,halldl01,807,tier1_bbref,Automatic match via bbref_id to DL Hall +11728,Dominic Canzone,12,canzodo01,322,tier1_bbref,Automatic match via bbref_id to Dominic Canzone +11729,Dominic Fletcher,12,fletcdo01,625,tier1_bbref,Automatic match via bbref_id to Dominic Fletcher +11730,Dominic Smith,12,smithdo02,1849,tier1_bbref,Automatic match via bbref_id to Dominic Smith +11731,Donovan Solano,12,solando01,1868,tier1_bbref,Automatic match via bbref_id to Donovan Solano +11732,Drew Millas,12,milladr01,1319,tier1_bbref,Automatic match via bbref_id to Drew Millas +11733,Drew Rasmussen,12,rasmudr01,1618,tier1_bbref,Automatic match via bbref_id to Drew Rasmussen +11734,Drew Smyly,12,smylydr01,1858,tier1_bbref,Automatic match via bbref_id to Drew Smyly +11735,Drew Thorpe,12,thorpdr01,1990,tier1_bbref,Automatic match via bbref_id to Drew Thorpe +11736,Dylan Carlson,12,carlsdy01,327,tier1_bbref,Automatic match via bbref_id to Dylan Carlson +11737,Dylan Cease,12,ceasedy01,355,tier1_bbref,Automatic match via bbref_id to Dylan Cease +11738,Dylan Crews,12,crewsdy01,433,tier1_bbref,Automatic match via bbref_id to Dylan Crews +11739,Dylan Floro,12,florody01,629,tier1_bbref,Automatic match via bbref_id to Dylan Floro +11740,Dylan Lee,12,leedy01,1108,tier1_bbref,Automatic match via bbref_id to Dylan Lee +11741,Dylan Moore,12,mooredy01,1358,tier1_bbref,Automatic match via bbref_id to Dylan Moore +11742,Eddie Rosario,12,rosared01,1710,tier1_bbref,Automatic match via bbref_id to Eddie Rosario +11743,Edmundo Sosa,12,sosaed01,1876,tier1_bbref,Automatic match via bbref_id to Edmundo Sosa +11744,Edouard Julien,12,julieed01,1000,tier1_bbref,Automatic match via bbref_id to Edouard Julien +11745,Eduard Bazardo,12,bazared01,156,tier1_bbref,Automatic match via bbref_id to Eduard Bazardo +11746,Eduardo Rodriguez,12,rodried05,1675,tier1_bbref,Automatic match via bbref_id to Eduardo Rodriguez +11747,Eduardo Salazar,12,salazed01,1738,tier1_bbref,Automatic match via bbref_id to Eduardo Salazar +11749,Edward Olivares,12,olivaed02,1458,tier1_bbref,Automatic match via bbref_id to Edward Olivares +11750,Edwin Diaz,12,diazed04,503,tier1_bbref,Automatic match via bbref_id to Edwin Diaz +11751,Edwin Uceta,12,ucetaed01,2031,tier1_bbref,Automatic match via bbref_id to Edwin Uceta +11752,Elehuris Montero,12,monteel01,1353,tier1_bbref,Automatic match via bbref_id to Elehuris Montero +11753,Eli Morgan,12,morgael01,1369,tier1_bbref,Automatic match via bbref_id to Eli Morgan +11754,Elias Diaz,12,diazel01,502,tier1_bbref,Automatic match via bbref_id to Elias Diaz +11755,Elly De La Cruz,12,delacel01,480,tier1_bbref,Automatic match via bbref_id to Elly De La Cruz +11756,Eloy Jimenez,12,jimenel02,980,tier1_bbref,Automatic match via bbref_id to Eloy Jimenez +11757,Elvis Peguero,12,pegueel01,1515,tier1_bbref,Automatic match via bbref_id to Elvis Peguero +11758,Emerson Hancock,12,hancoem01,815,tier1_bbref,Automatic match via bbref_id to Emerson Hancock +11759,Emilio Pagan,12,paganem01,1484,tier1_bbref,Automatic match via bbref_id to Emilio Pagan +11760,Emmanuel Clase,12,claseem01,385,tier1_bbref,Automatic match via bbref_id to Emmanuel Clase +11761,Emmanuel Ramirez,12,ramirem01,1610,tier1_bbref,Automatic match via bbref_id to Emmanuel Ramirez +11762,Emmanuel Rivera,12,riverem01,1657,tier1_bbref,Automatic match via bbref_id to Emmanuel Rivera +11763,Enmanuel Valdez,12,valdeen01,2049,tier1_bbref,Automatic match via bbref_id to Enmanuel Valdez +11764,Enoli Paredes,12,pareden01,1496,tier1_bbref,Automatic match via bbref_id to Enoli Paredes +11765,Enrique Hernandez,12,hernaen02,871,tier1_bbref,Automatic match via bbref_id to Enrique Hernandez +11766,Enyel De Los Santos,12,delosen01,482,tier1_bbref,Automatic match via bbref_id to Enyel De Los Santos +11767,Erasmo Ramirez,12,ramirer02,1604,tier1_bbref,Automatic match via bbref_id to Erasmo Ramirez +11768,Eric Haase,12,haaseer01,801,tier1_bbref,Automatic match via bbref_id to Eric Haase +11769,Eric Wagaman,12,wagamer01,2096,tier1_bbref,Automatic match via bbref_id to Eric Wagaman +11770,Erick Fedde,12,feddeer01,600,tier1_bbref,Automatic match via bbref_id to Erick Fedde +11771,Erik Miller,12,milleer01,1325,tier1_bbref,Automatic match via bbref_id to Erik Miller +11772,Erik Swanson,12,swanser01,1948,tier1_bbref,Automatic match via bbref_id to Erik Swanson +11773,Ernie Clement,12,clemeer01,391,tier1_bbref,Automatic match via bbref_id to Ernie Clement +11774,Esteury Ruiz,12,ruizes01,1726,tier1_bbref,Automatic match via bbref_id to Esteury Ruiz +11775,Estevan Florial,12,flories01,628,tier1_bbref,Automatic match via bbref_id to Estevan Florial +11776,Ethan Roberts,12,roberet01,1661,tier1_bbref,Automatic match via bbref_id to Ethan Roberts +11777,Eugenio Suarez,12,suareeu01,1934,tier1_bbref,Automatic match via bbref_id to Eugenio Suarez +11778,Evan Carter,12,carteev01,333,tier1_bbref,Automatic match via bbref_id to Evan Carter +11779,Evan Phillips,12,phillev01,3238,manual_new,Manual assignment to new SbaPlayer: Evan Phillips +11780,Ezequiel Duran,12,duranez01,551,tier1_bbref,Automatic match via bbref_id to Ezequiel Duran +11781,Ezequiel Tovar,12,tovarez01,2007,tier1_bbref,Automatic match via bbref_id to Ezequiel Tovar +11782,Fernando Cruz,12,cruzfe01,448,tier1_bbref,Automatic match via bbref_id to Fernando Cruz +11783,Fernando Tatis Jr,12,tatisfe02,1960,tier1_bbref,Automatic match via bbref_id to Fernando Tatis Jr +11784,Framber Valdez,12,valdefr01,2048,tier1_bbref,Automatic match via bbref_id to Framber Valdez +11785,Francisco Alvarez,12,alvarfr01,62,tier1_bbref,Automatic match via bbref_id to Francisco Alvarez +11786,Francisco Lindor,12,lindofr01,1124,tier1_bbref,Automatic match via bbref_id to Francisco Lindor +11787,Frankie Montas,12,montafr02,1351,tier1_bbref,Automatic match via bbref_id to Frankie Montas +11788,Fraser Ellard,12,ellarfr01,566,tier1_bbref,Automatic match via bbref_id to Fraser Ellard +11789,Freddie Freeman,12,freemfr01,652,tier1_bbref,Automatic match via bbref_id to Freddie Freeman +11790,Freddy Fermin,12,fermifr01,606,tier1_bbref,Automatic match via bbref_id to Freddy Fermin +11791,Freddy Peralta,12,peralfr01,1525,tier1_bbref,Automatic match via bbref_id to Freddy Peralta +11792,Gabe Speier,12,speiega01,1885,tier1_bbref,Automatic match via bbref_id to Gabe Speier +11793,Gabriel Arias,12,ariasga01,89,tier1_bbref,Automatic match via bbref_id to Gabriel Arias +11794,Gabriel Moreno,12,morenga01,1366,tier1_bbref,Automatic match via bbref_id to Gabriel Moreno +11795,Garrett Cleavinger,12,cleavga01,389,tier1_bbref,Automatic match via bbref_id to Garrett Cleavinger +11796,Garrett Cooper,12,coopega03,415,tier1_bbref,Automatic match via bbref_id to Garrett Cooper +11797,Garrett Crochet,12,crochga01,439,tier1_bbref,Automatic match via bbref_id to Garrett Crochet +11798,Garrett Hampson,12,hampsga01,814,tier1_bbref,Automatic match via bbref_id to Garrett Hampson +11799,Garrett Mitchell,12,mitchga01,1340,tier1_bbref,Automatic match via bbref_id to Garrett Mitchell +11800,Garrett Stubbs,12,stubbga01,1931,tier1_bbref,Automatic match via bbref_id to Garrett Stubbs +11801,Gary Sanchez,12,sanchga02,1746,tier1_bbref,Automatic match via bbref_id to Gary Sanchez +11802,Gavin Lux,12,luxga01,1169,tier1_bbref,Automatic match via bbref_id to Gavin Lux +11803,Gavin Sheets,12,sheetga01,1811,tier1_bbref,Automatic match via bbref_id to Gavin Sheets +11804,Gavin Stone,12,stonega01,1913,tier1_bbref,Automatic match via bbref_id to Gavin Stone +11805,Gavin Williams,12,williga01,2160,tier1_bbref,Automatic match via bbref_id to Gavin Williams +11806,Genesis Cabrera,12,cabrege01,301,tier1_bbref,Automatic match via bbref_id to Genesis Cabrera +11807,George Kirby,12,kirbyge01,1054,tier1_bbref,Automatic match via bbref_id to George Kirby +11808,George Soriano,12,soriage01,1873,tier1_bbref,Automatic match via bbref_id to George Soriano +11809,George Springer,12,springe01,1888,tier1_bbref,Automatic match via bbref_id to George Springer +11810,Geraldo Perdomo,12,perdoge01,1531,tier1_bbref,Automatic match via bbref_id to Geraldo Perdomo +11811,Gerrit Cole,12,colege01,398,tier1_bbref,Automatic match via bbref_id to Gerrit Cole +11812,Giancarlo Stanton,12,stantmi03,1893,tier1_bbref,Automatic match via bbref_id to Giancarlo Stanton +11813,Gio Urshela,12,urshegi01,2042,tier1_bbref,Automatic match via bbref_id to Gio Urshela +11814,Giovanny Gallegos,12,gallegi01,672,tier1_bbref,Automatic match via bbref_id to Giovanny Gallegos +11815,Gleyber Torres,12,torregl01,2003,tier1_bbref,Automatic match via bbref_id to Gleyber Torres +11816,Graham Ashcraft,12,ashcrgr01,99,tier1_bbref,Automatic match via bbref_id to Graham Ashcraft +11817,Grant Anderson,12,andergr01,75,tier1_bbref,Automatic match via bbref_id to Grant Anderson +11818,Grant Holmes,12,holmegr01,920,tier1_bbref,Automatic match via bbref_id to Grant Holmes +11819,Grant McCray,12,mccragr01,1270,tier1_bbref,Automatic match via bbref_id to Grant McCray +11820,Grayson Rodriguez,12,rodrigr01,1684,tier1_bbref,Automatic match via bbref_id to Grayson Rodriguez +11821,Greg Weissert,12,weissgr01,2130,tier1_bbref,Automatic match via bbref_id to Greg Weissert +11822,Gregory Soto,12,sotogr01,1878,tier1_bbref,Automatic match via bbref_id to Gregory Soto +11823,Griffin Canning,12,cannigr01,317,tier1_bbref,Automatic match via bbref_id to Griffin Canning +11824,Griffin Conine,12,coningr01,408,tier1_bbref,Automatic match via bbref_id to Griffin Conine +11825,Griffin Jax,12,jaxgr01,972,tier1_bbref,Automatic match via bbref_id to Griffin Jax +11826,Gunnar Henderson,12,hendegu01,855,tier1_bbref,Automatic match via bbref_id to Gunnar Henderson +11827,Gus Varland,12,varlagu01,2056,tier1_bbref,Automatic match via bbref_id to Gus Varland +11828,Ha Seong Kim,12,kimha01,1042,tier1_bbref,Automatic match via bbref_id to Ha Seong Kim +11829,Hans Crouse,12,crousha01,444,tier1_bbref,Automatic match via bbref_id to Hans Crouse +11830,Harold Ramirez,12,ramirha02,1609,tier1_bbref,Automatic match via bbref_id to Harold Ramirez +11831,Harrison Bader,12,baderha01,110,tier1_bbref,Automatic match via bbref_id to Harrison Bader +11832,Hayden Birdsong,12,birdsha01,199,tier1_bbref,Automatic match via bbref_id to Hayden Birdsong +11833,Hayden Wesneski,12,wesneha01,2137,tier1_bbref,Automatic match via bbref_id to Hayden Wesneski +11834,Hector Neris,12,nerishe01,1413,tier1_bbref,Automatic match via bbref_id to Hector Neris +11835,Heliot Ramos,12,ramoshe02,1615,tier1_bbref,Automatic match via bbref_id to Heliot Ramos +11836,Henry Davis,12,davishe01,473,tier1_bbref,Automatic match via bbref_id to Henry Davis +11837,Heston Kjerstad,12,kjershe01,1058,tier1_bbref,Automatic match via bbref_id to Heston Kjerstad +11838,Hoby Milner,12,milneho01,1332,tier1_bbref,Automatic match via bbref_id to Hoby Milner +11840,Huascar Brazoban,12,brazohu01,246,tier1_bbref,Automatic match via bbref_id to Huascar Brazoban +11841,Hunter Brown,12,brownhu01,267,tier1_bbref,Automatic match via bbref_id to Hunter Brown +11842,Hunter Gaddis,12,gaddihu01,669,tier1_bbref,Automatic match via bbref_id to Hunter Gaddis +11843,Hunter Goodman,12,goodmhu01,747,tier1_bbref,Automatic match via bbref_id to Hunter Goodman +11844,Hunter Greene,12,greenhu01,770,tier1_bbref,Automatic match via bbref_id to Hunter Greene +11845,Hunter Harvey,12,harvehu01,836,tier1_bbref,Automatic match via bbref_id to Hunter Harvey +11846,Hunter Renfroe,12,renfrhu01,1631,tier1_bbref,Automatic match via bbref_id to Hunter Renfroe +11847,Hunter Stratton,12,strathu01,1923,tier1_bbref,Automatic match via bbref_id to Hunter Stratton +11848,Hunter Strickland,12,strichu01,1925,tier1_bbref,Automatic match via bbref_id to Hunter Strickland +11849,Ian Hamilton,12,hamilia01,811,tier1_bbref,Automatic match via bbref_id to Ian Hamilton +11850,Ian Happ,12,happia01,820,tier1_bbref,Automatic match via bbref_id to Ian Happ +11851,Ildemaro Vargas,12,vargail01,2054,tier1_bbref,Automatic match via bbref_id to Ildemaro Vargas +11852,Isaac Paredes,12,paredis01,1497,tier1_bbref,Automatic match via bbref_id to Isaac Paredes +11853,Isiah Kiner Falefa,12,kineris01,1044,tier1_bbref,Automatic match via bbref_id to Isiah Kiner Falefa +11854,Ivan Herrera,12,herreiv01,885,tier1_bbref,Automatic match via bbref_id to Ivan Herrera +11855,Jace Jung,12,jungja01,1003,tier1_bbref,Automatic match via bbref_id to Jace Jung +11856,Jack Flaherty,12,flaheja01,622,tier1_bbref,Automatic match via bbref_id to Jack Flaherty +11857,Jack Kochanowicz,12,kochaja01,1067,tier1_bbref,Automatic match via bbref_id to Jack Kochanowicz +11858,Jack Leiter,12,leiteja01,1113,tier1_bbref,Automatic match via bbref_id to Jack Leiter +11859,Jack Lopez,12,lopezja03,1143,tier1_bbref,Automatic match via bbref_id to Jack Lopez +11860,Jack Suwinski,12,suwinja01,1944,tier1_bbref,Automatic match via bbref_id to Jack Suwinski +11861,Jackson Chourio,12,chourja01,379,tier1_bbref,Automatic match via bbref_id to Jackson Chourio +11863,Jackson Merrill,12,merrija01,1310,tier1_bbref,Automatic match via bbref_id to Jackson Merrill +11864,Jacob Amaya,12,amayaja01,65,tier1_bbref,Automatic match via bbref_id to Jacob Amaya +11865,Jacob Barnes,12,barneja01,133,tier1_bbref,Automatic match via bbref_id to Jacob Barnes +11866,Jacob Hurtubise,12,hurtuja01,943,tier1_bbref,Automatic match via bbref_id to Jacob Hurtubise +11867,Jacob Latz,12,latzja01,1095,tier1_bbref,Automatic match via bbref_id to Jacob Latz +11868,Jacob Stallings,12,stallja01,1890,tier1_bbref,Automatic match via bbref_id to Jacob Stallings +11869,Jacob Webb,12,webbja01,2126,tier1_bbref,Automatic match via bbref_id to Jacob Webb +11870,Jacob Wilson,12,wilsoja05,2172,tier1_bbref,Automatic match via bbref_id to Jacob Wilson +11871,Jacob Young,12,youngja03,2219,tier1_bbref,Automatic match via bbref_id to Jacob Young +11872,Jake Bauers,12,bauerja01,151,tier1_bbref,Automatic match via bbref_id to Jake Bauers +11873,Jake Bird,12,birdja01,198,tier1_bbref,Automatic match via bbref_id to Jake Bird +11874,Jake Burger,12,burgeja01,283,tier1_bbref,Automatic match via bbref_id to Jake Burger +11875,Jake Cave,12,caveja01,354,tier1_bbref,Automatic match via bbref_id to Jake Cave +11876,Jake Cousins,12,cousija01,424,tier1_bbref,Automatic match via bbref_id to Jake Cousins +11877,Jake Cronenworth,12,croneja01,442,tier1_bbref,Automatic match via bbref_id to Jake Cronenworth +11878,Jake Diekman,12,diekmja01,514,tier1_bbref,Automatic match via bbref_id to Jake Diekman +11879,Jake Fraley,12,fraleja01,641,tier1_bbref,Automatic match via bbref_id to Jake Fraley +11880,Jake Irvin,12,irvinja01,955,tier1_bbref,Automatic match via bbref_id to Jake Irvin +11882,Jake McCarthy,12,mccarja02,1265,tier1_bbref,Automatic match via bbref_id to Jake McCarthy +11883,Jake Meyers,12,meyerja02,1315,tier1_bbref,Automatic match via bbref_id to Jake Meyers +11884,Jake Rogers,12,rogerja03,1692,tier1_bbref,Automatic match via bbref_id to Jake Rogers +11885,Jake Woodford,12,woodfja01,2195,tier1_bbref,Automatic match via bbref_id to Jake Woodford +11886,Jalen Beeks,12,beeksja02,165,tier1_bbref,Automatic match via bbref_id to Jalen Beeks +11887,James McArthur,12,mcartja01,1258,tier1_bbref,Automatic match via bbref_id to James McArthur +11888,James McCann,12,mccanja02,1261,tier1_bbref,Automatic match via bbref_id to James McCann +11889,James Outman,12,outmaja01,1477,tier1_bbref,Automatic match via bbref_id to James Outman +11890,James Paxton,12,paxtoja01,1506,tier1_bbref,Automatic match via bbref_id to James Paxton +11891,James Wood,12,woodja03,2194,tier1_bbref,Automatic match via bbref_id to James Wood +11893,Jared Jones,12,jonesja09,995,tier1_bbref,Automatic match via bbref_id to Jared Jones +11894,Jared Koenig,12,koenija01,1068,tier1_bbref,Automatic match via bbref_id to Jared Koenig +11895,Jared Shuster,12,shustja01,1821,tier1_bbref,Automatic match via bbref_id to Jared Shuster +11896,Jared Triolo,12,triolja01,2015,tier1_bbref,Automatic match via bbref_id to Jared Triolo +11862,Jackson Holliday,12,hollija01,916,tier1_bbref,Automatic match via bbref_id to Jackson Holliday +11892,Jameson Taillon,12,taillja01,1954,tier1_bbref,Automatic match via bbref_id to Jameson Taillon +11897,Jared Walsh,12,walshja01,2111,tier1_bbref,Automatic match via bbref_id to Jared Walsh +11898,Jarred Kelenic,12,kelenja01,1015,tier1_bbref,Automatic match via bbref_id to Jarred Kelenic +11899,Jarren Duran,12,duranja01,552,tier1_bbref,Automatic match via bbref_id to Jarren Duran +11900,Jason Adam,12,adamja01,13,tier1_bbref,Automatic match via bbref_id to Jason Adam +11901,Jason Foley,12,foleyja01,632,tier1_bbref,Automatic match via bbref_id to Jason Foley +11902,Jason Heyward,12,heywaja01,891,tier1_bbref,Automatic match via bbref_id to Jason Heyward +11903,Jasson Dominguez,12,dominja01,525,tier1_bbref,Automatic match via bbref_id to Jasson Dominguez +11904,Javier Assad,12,assadja01,100,tier1_bbref,Automatic match via bbref_id to Javier Assad +11905,Javier Baez,12,baezja01,112,tier1_bbref,Automatic match via bbref_id to Javier Baez +11906,Jay Jackson,12,jacksja01,959,tier1_bbref,Automatic match via bbref_id to Jay Jackson +11907,Jazz Chisholm,12,chishja01,375,tier1_bbref,Automatic match via bbref_id to Jazz Chisholm +11908,JD Davis,12,davisjd01,474,tier1_bbref,Automatic match via bbref_id to JD Davis +11910,Jeff Criswell,12,criswje01,437,tier1_bbref,Automatic match via bbref_id to Jeff Criswell +11911,Jeff Hoffman,12,hoffmje02,910,tier1_bbref,Automatic match via bbref_id to Jeff Hoffman +11912,Jeff McNeil,12,mcneije01,1287,tier1_bbref,Automatic match via bbref_id to Jeff McNeil +11913,Jeffrey Springs,12,sprinje01,1889,tier1_bbref,Automatic match via bbref_id to Jeffrey Springs +11914,Jeimer Candelario,12,candeje01,315,tier1_bbref,Automatic match via bbref_id to Jeimer Candelario +11915,Jerar Encarnacion,12,encarje01,572,tier1_bbref,Automatic match via bbref_id to Jerar Encarnacion +11916,Jeremiah Estrada,12,estraje01,588,tier1_bbref,Automatic match via bbref_id to Jeremiah Estrada +11917,Jeremy Pena,12,penaje02,1519,tier1_bbref,Automatic match via bbref_id to Jeremy Pena +11918,Jesse Chavez,12,chaveje01,370,tier1_bbref,Automatic match via bbref_id to Jesse Chavez +11919,Jesse Winker,12,winkeje01,2177,tier1_bbref,Automatic match via bbref_id to Jesse Winker +11920,Jesus Luzardo,12,luzarje01,1170,tier1_bbref,Automatic match via bbref_id to Jesus Luzardo +11921,Jesus Sanchez,12,sanchje02,1749,tier1_bbref,Automatic match via bbref_id to Jesus Sanchez +11922,Jesus Tinoco,12,tinocje01,1992,tier1_bbref,Automatic match via bbref_id to Jesus Tinoco +11923,Jhoan Duran,12,duranjh01,550,tier1_bbref,Automatic match via bbref_id to Jhoan Duran +11924,Jhonkensy Noel,12,noeljh01,1428,tier1_bbref,Automatic match via bbref_id to Jhonkensy Noel +11926,Ji Hwan Bae,12,baeji01,945,tier1_bbref,Automatic match via bbref_id to Ji Hwan Bae +11927,JJ Bleday,12,bledajj01,211,tier1_bbref,Automatic match via bbref_id to JJ Bleday +11929,Joc Pederson,12,pederjo01,1514,tier1_bbref,Automatic match via bbref_id to Joc Pederson +11931,Joe Jimenez,12,jimenjo02,979,tier1_bbref,Automatic match via bbref_id to Joe Jimenez +11932,Joe Kelly,12,kellyjo05,1021,tier1_bbref,Automatic match via bbref_id to Joe Kelly +11933,Joe Mantiply,12,mantijo01,1193,tier1_bbref,Automatic match via bbref_id to Joe Mantiply +11934,Joe Musgrove,12,musgrjo01,1394,tier1_bbref,Automatic match via bbref_id to Joe Musgrove +11935,Joe Ross,12,rossjo01,1715,tier1_bbref,Automatic match via bbref_id to Joe Ross +11936,Joe Ryan,12,ryanjo04,1732,tier1_bbref,Automatic match via bbref_id to Joe Ryan +11937,Joel Payamps,12,payamjo01,1507,tier1_bbref,Automatic match via bbref_id to Joel Payamps +11938,Joey Bart,12,bartjo01,142,tier1_bbref,Automatic match via bbref_id to Joey Bart +11939,Joey Cantillo,12,cantijo01,321,tier1_bbref,Automatic match via bbref_id to Joey Cantillo +11930,Joe Boyle,12,boylejo01,231,tier1_bbref,Automatic match via bbref_id to Joe Boyle +11925,Jhony Brito,12,britojh01,259,tier1_bbref,Automatic match via bbref_id to Jhony Brito +11909,JD Martinez,12,martijd02,1229,tier1_bbref,Automatic match via bbref_id to JD Martinez +11940,Joey Estes,12,estesjo01,584,tier1_bbref,Automatic match via bbref_id to Joey Estes +11941,Joey Gallo,12,gallojo01,674,tier1_bbref,Automatic match via bbref_id to Joey Gallo +11942,Joey Loperfido,12,loperjo01,1141,tier1_bbref,Automatic match via bbref_id to Joey Loperfido +11943,Joey Meneses,12,menesjo01,1303,tier1_bbref,Automatic match via bbref_id to Joey Meneses +11944,Joey Ortiz,12,ortizjo06,1468,tier1_bbref,Automatic match via bbref_id to Joey Ortiz +11945,Joey Wentz,12,wentzjo01,2136,tier1_bbref,Automatic match via bbref_id to Joey Wentz +11946,Johan Rojas,12,rojasjo03,1697,tier1_bbref,Automatic match via bbref_id to Johan Rojas +11947,John Brebbia,12,brebbjo01,247,tier1_bbref,Automatic match via bbref_id to John Brebbia +11948,John King,12,kingjo01,1045,tier1_bbref,Automatic match via bbref_id to John King +11949,John Schreiber,12,schrejo01,1780,tier1_bbref,Automatic match via bbref_id to John Schreiber +11950,JoJo Romero,12,romerjo01,1702,tier1_bbref,Automatic match via bbref_id to JoJo Romero +11951,Jon Berti,12,bertijo01,183,tier1_bbref,Automatic match via bbref_id to Jon Berti +11952,Jon Gray,12,grayjo02,766,tier1_bbref,Automatic match via bbref_id to Jon Gray +11953,Jon Singleton,12,singljo02,1828,tier1_bbref,Automatic match via bbref_id to Jon Singleton +11954,Jonah Bride,12,bridejo01,255,tier1_bbref,Automatic match via bbref_id to Jonah Bride +11955,Jonah Heim,12,heimjo01,849,tier1_bbref,Automatic match via bbref_id to Jonah Heim +11956,Jonatan Clase,12,clasejo01,386,tier1_bbref,Automatic match via bbref_id to Jonatan Clase +11957,Jonathan Aranda,12,arandjo01,82,tier1_bbref,Automatic match via bbref_id to Jonathan Aranda +11958,Jonathan Cannon,12,cannojo02,318,tier1_bbref,Automatic match via bbref_id to Jonathan Cannon +11959,Jonathan Hernandez,12,hernajo02,876,tier1_bbref,Automatic match via bbref_id to Jonathan Hernandez +11960,Jonathan India,12,indiajo01,953,tier1_bbref,Automatic match via bbref_id to Jonathan India +11961,Jonny DeLuca,12,delucjo01,490,tier1_bbref,Automatic match via bbref_id to Jonny DeLuca +11962,Jordan Beck,12,beckjo01,159,tier1_bbref,Automatic match via bbref_id to Jordan Beck +11963,Jordan Hicks,12,hicksjo03,894,tier1_bbref,Automatic match via bbref_id to Jordan Hicks +11964,Jordan Leasure,12,leasujo01,1103,tier1_bbref,Automatic match via bbref_id to Jordan Leasure +11965,Jordan Montgomery,12,montgjo01,1356,tier1_bbref,Automatic match via bbref_id to Jordan Montgomery +11966,Jordan Walker,12,walkejo02,2107,tier1_bbref,Automatic match via bbref_id to Jordan Walker +11967,Jordan Weems,12,weemsjo01,2129,tier1_bbref,Automatic match via bbref_id to Jordan Weems +11968,Jordan Westburg,12,westbjo01,2138,tier1_bbref,Automatic match via bbref_id to Jordan Westburg +11969,Jordan Wicks,12,wicksjo01,2148,tier1_bbref,Automatic match via bbref_id to Jordan Wicks +11970,Jorge Alcala,12,alcaljo01,32,tier1_bbref,Automatic match via bbref_id to Jorge Alcala +11971,Jorge Lopez,12,lopezjo02,1144,tier1_bbref,Automatic match via bbref_id to Jorge Lopez +11972,Jorge Mateo,12,mateojo01,1233,tier1_bbref,Automatic match via bbref_id to Jorge Mateo +11973,Jorge Polanco,12,polanjo01,1570,tier1_bbref,Automatic match via bbref_id to Jorge Polanco +11974,Jorge Soler,12,solerjo01,1870,tier1_bbref,Automatic match via bbref_id to Jorge Soler +11975,Jose Ferrer,12,ferrejo01,609,tier1_bbref,Automatic match via bbref_id to Jose Ferrer +11976,Jose Abreu,12,abreujo02,7,tier1_bbref,Automatic match via bbref_id to Jose Abreu +11977,Jose Altuve,12,altuvjo01,56,tier1_bbref,Automatic match via bbref_id to Jose Altuve +11978,Jose Alvarado,12,alvarjo03,58,tier1_bbref,Automatic match via bbref_id to Jose Alvarado +11979,Jose Azocar,12,azocajo01,107,tier1_bbref,Automatic match via bbref_id to Jose Azocar +11980,Jose Berrios,12,berrijo01,182,tier1_bbref,Automatic match via bbref_id to Jose Berrios +11981,Jose Butto,12,buttojo01,293,tier1_bbref,Automatic match via bbref_id to Jose Butto +11983,Jose Fermin,12,fermijo01,607,tier1_bbref,Automatic match via bbref_id to Jose Fermin +11984,Jose Herrera,12,herrejo04,884,tier1_bbref,Automatic match via bbref_id to Jose Herrera +11986,Jose Leclerc,12,leclejo01,1106,tier1_bbref,Automatic match via bbref_id to Jose Leclerc +11987,Jose Miranda,12,miranjo01,1337,tier1_bbref,Automatic match via bbref_id to Jose Miranda +11988,Jose Quintana,12,quintjo01,1596,tier1_bbref,Automatic match via bbref_id to Jose Quintana +11989,Jose Ramirez,12,ramirjo01,1608,tier1_bbref,Automatic match via bbref_id to Jose Ramirez +11990,Jose Ruiz,12,ruizjo01,1724,tier1_bbref,Automatic match via bbref_id to Jose Ruiz +11991,Jose Siri,12,sirijo01,1830,tier1_bbref,Automatic match via bbref_id to Jose Siri +11993,Jose Suarez,12,suarejo01,1937,tier1_bbref,Automatic match via bbref_id to Jose Suarez +11994,Jose Tena,12,tenajo01,1973,tier1_bbref,Automatic match via bbref_id to Jose Tena +11995,Jose Trevino,12,trevijo01,2013,tier1_bbref,Automatic match via bbref_id to Jose Trevino +11996,Jose Urena,12,urenajo01,2035,tier1_bbref,Automatic match via bbref_id to Jose Urena +11997,Josh Bell,12,belljo02,168,tier1_bbref,Automatic match via bbref_id to Josh Bell +11998,Josh Fleming,12,flemijo01,623,tier1_bbref,Automatic match via bbref_id to Josh Fleming +11999,Josh Hader,12,haderjo01,802,tier1_bbref,Automatic match via bbref_id to Josh Hader +12000,Josh Jung,12,jungjo01,1002,tier1_bbref,Automatic match via bbref_id to Josh Jung +12001,Josh Lowe,12,lowejo01,1157,tier1_bbref,Automatic match via bbref_id to Josh Lowe +12002,Josh Naylor,12,naylojo01,1404,tier1_bbref,Automatic match via bbref_id to Josh Naylor +12003,Josh Palacios,12,palacjo01,1489,tier1_bbref,Automatic match via bbref_id to Josh Palacios +12004,Josh Rojas,12,rojasjo01,1695,tier1_bbref,Automatic match via bbref_id to Josh Rojas +12005,Josh Smith,12,smithjo11,1852,tier1_bbref,Automatic match via bbref_id to Josh Smith +12006,Josh Staumont,12,staumjo01,1897,tier1_bbref,Automatic match via bbref_id to Josh Staumont +12007,Josh Winckowski,12,winckjo01,2174,tier1_bbref,Automatic match via bbref_id to Josh Winckowski +12008,JP Crawford,12,crawfjp01,432,tier1_bbref,Automatic match via bbref_id to JP Crawford +12009,JP Sears,12,searsjp01,1795,tier1_bbref,Automatic match via bbref_id to JP Sears +12010,JT Chargois,12,chargjt01,368,tier1_bbref,Automatic match via bbref_id to JT Chargois +12011,JT Ginn,12,ginnjt01,723,tier1_bbref,Automatic match via bbref_id to JT Ginn +12013,Juan Soto,12,sotoju01,1879,tier1_bbref,Automatic match via bbref_id to Juan Soto +12014,Juan Yepez,12,yepezju01,2213,tier1_bbref,Automatic match via bbref_id to Juan Yepez +12015,Julian Aguiar,12,aguiaju01,24,tier1_bbref,Automatic match via bbref_id to Julian Aguiar +12016,Julio Rodriguez,12,rodriju01,1682,tier1_bbref,Automatic match via bbref_id to Julio Rodriguez +12017,Jung Hoo Lee,12,leeju01,1107,tier1_bbref,Automatic match via bbref_id to Jung Hoo Lee +12018,Junior Caminero,12,caminju01,311,tier1_bbref,Automatic match via bbref_id to Junior Caminero +12019,Jurickson Profar,12,profaju01,1587,tier1_bbref,Automatic match via bbref_id to Jurickson Profar +12020,Justin Anderson,12,anderju01,70,tier1_bbref,Automatic match via bbref_id to Justin Anderson +12021,Justin Lawrence,12,lawreju01,1100,tier1_bbref,Automatic match via bbref_id to Justin Lawrence +12022,Justin Martinez,12,martiju01,1227,tier1_bbref,Automatic match via bbref_id to Justin Martinez +11985,Jose Iglesias,12,iglesjo01,949,tier1_bbref,Automatic match via bbref_id to Jose Iglesias +12023,Justin Slaten,12,slateju01,1837,tier1_bbref,Automatic match via bbref_id to Justin Slaten +11992,Jose Soriano,12,soriajo02,1874,tier1_bbref,Automatic match via bbref_id to Jose Soriano +12024,Justin Steele,12,steelju01,1899,tier1_bbref,Automatic match via bbref_id to Justin Steele +12025,Justin Turner,12,turneju01,2029,tier1_bbref,Automatic match via bbref_id to Justin Turner +12026,Justin Verlander,12,verlaju01,2071,tier1_bbref,Automatic match via bbref_id to Justin Verlander +12027,Justin Wilson,12,wilsoju10,2167,tier1_bbref,Automatic match via bbref_id to Justin Wilson +12028,Justin Wrobleski,12,wroblju01,2201,tier1_bbref,Automatic match via bbref_id to Justin Wrobleski +12029,Justyn Henry Malloy,12,malloju02,1188,tier1_bbref,Automatic match via bbref_id to Justyn Henry Malloy +12030,Kaleb Ort,12,ortka01,1464,tier1_bbref,Automatic match via bbref_id to Kaleb Ort +12031,Keaton Winn,12,winnke01,2179,tier1_bbref,Automatic match via bbref_id to Keaton Winn +12032,KeBryan Hayes,12,hayeske01,838,tier1_bbref,Automatic match via bbref_id to KeBryan Hayes +12033,Keegan Akin,12,akinke01,27,tier1_bbref,Automatic match via bbref_id to Keegan Akin +12034,Keegan Thompson,12,thompke02,1982,tier1_bbref,Automatic match via bbref_id to Keegan Thompson +12035,Keibert Ruiz,12,ruizke01,1725,tier1_bbref,Automatic match via bbref_id to Keibert Ruiz +12036,Keider Montero,12,monteke01,1354,tier1_bbref,Automatic match via bbref_id to Keider Montero +12037,Kenley Jansen,12,janseke01,968,tier1_bbref,Automatic match via bbref_id to Kenley Jansen +12038,Kenta Maeda,12,maedake01,1181,tier1_bbref,Automatic match via bbref_id to Kenta Maeda +12039,Kerry Carpenter,12,carpeke01,330,tier1_bbref,Automatic match via bbref_id to Kerry Carpenter +12040,Ketel Marte,12,marteke01,1210,tier1_bbref,Automatic match via bbref_id to Ketel Marte +12041,Kevin Gausman,12,gausmke01,706,tier1_bbref,Automatic match via bbref_id to Kevin Gausman +12042,Kevin Ginkel,12,ginkeke01,722,tier1_bbref,Automatic match via bbref_id to Kevin Ginkel +12043,Kevin Kelly,12,kellyke02,1025,tier1_bbref,Automatic match via bbref_id to Kevin Kelly +12044,Kevin Kiermaier,12,kiermke01,1039,tier1_bbref,Automatic match via bbref_id to Kevin Kiermaier +12045,Kevin Newman,12,newmake01,1420,tier1_bbref,Automatic match via bbref_id to Kevin Newman +12046,Kevin Pillar,12,pillake01,1557,tier1_bbref,Automatic match via bbref_id to Kevin Pillar +12047,Kirby Yates,12,yateski01,2211,tier1_bbref,Automatic match via bbref_id to Kirby Yates +12048,Kody Clemens,12,clemeko01,390,tier1_bbref,Automatic match via bbref_id to Kody Clemens +12049,Kody Funderburk,12,fundeko01,3248,manual_new,Manual assignment to new SbaPlayer: Kody Funderburk +12050,Korey Lee,12,leeko01,1109,tier1_bbref,Automatic match via bbref_id to Korey Lee +12051,Kris Bryant,12,bryankr01,273,tier1_bbref,Automatic match via bbref_id to Kris Bryant +12052,Kris Bubic,12,bubickr01,274,tier1_bbref,Automatic match via bbref_id to Kris Bubic +12053,Kutter Crawford,12,crawfku01,431,tier1_bbref,Automatic match via bbref_id to Kutter Crawford +12055,Kyle Farmer,12,farmeky01,598,tier1_bbref,Automatic match via bbref_id to Kyle Farmer +12056,Kyle Finnegan,12,finneky01,617,tier1_bbref,Automatic match via bbref_id to Kyle Finnegan +12057,Kyle Freeland,12,freelky01,650,tier1_bbref,Automatic match via bbref_id to Kyle Freeland +12058,Kyle Gibson,12,gibsoky01,715,tier1_bbref,Automatic match via bbref_id to Kyle Gibson +12059,Kyle Harrison,12,harriky01,830,tier1_bbref,Automatic match via bbref_id to Kyle Harrison +12060,Kyle Hendricks,12,hendrky01,856,tier1_bbref,Automatic match via bbref_id to Kyle Hendricks +12061,Kyle Higashioka,12,higasky01,895,tier1_bbref,Automatic match via bbref_id to Kyle Higashioka +12062,Kyle Isbel,12,isbelky01,956,tier1_bbref,Automatic match via bbref_id to Kyle Isbel +12063,Kyle Leahy,12,leahyky01,1101,tier1_bbref,Automatic match via bbref_id to Kyle Leahy +12064,Kyle Manzardo,12,manzaky01,1194,tier1_bbref,Automatic match via bbref_id to Kyle Manzardo +12065,Kyle McCann,12,mccanky01,1262,tier1_bbref,Automatic match via bbref_id to Kyle McCann +12066,Kyle Muller,12,mulleky01,1380,tier1_bbref,Automatic match via bbref_id to Kyle Muller +12067,Kyle Nicolas,12,nicolky01,1423,tier1_bbref,Automatic match via bbref_id to Kyle Nicolas +12068,Kyle Schwarber,12,schwaky01,1784,tier1_bbref,Automatic match via bbref_id to Kyle Schwarber +12069,Kyle Stowers,12,stoweky01,1917,tier1_bbref,Automatic match via bbref_id to Kyle Stowers +12070,Kyle Tucker,12,tuckeky01,2023,tier1_bbref,Automatic match via bbref_id to Kyle Tucker +12071,Kyle Tyler,12,tylerky01,2030,tier1_bbref,Automatic match via bbref_id to Kyle Tyler +12072,LaMonte Wade Jr,12,wadela01,2095,tier1_bbref,Automatic match via bbref_id to LaMonte Wade Jr +12073,Lance Lynn,12,lynnla01,1173,tier1_bbref,Automatic match via bbref_id to Lance Lynn +12074,Landen Roupp,12,rouppla01,1717,tier1_bbref,Automatic match via bbref_id to Landen Roupp +12075,Landon Knack,12,knackla01,1061,tier1_bbref,Automatic match via bbref_id to Landon Knack +12076,Lane Thomas,12,thomala02,1978,tier1_bbref,Automatic match via bbref_id to Lane Thomas +12077,Lars Nootbaar,12,nootbla01,1436,tier1_bbref,Automatic match via bbref_id to Lars Nootbaar +12078,Lawrence Butler,12,butlela01,292,tier1_bbref,Automatic match via bbref_id to Lawrence Butler +12079,Lenyn Sosa,12,sosale01,1877,tier1_bbref,Automatic match via bbref_id to Lenyn Sosa +12080,Leo Jimenez,12,jimenle01,982,tier1_bbref,Automatic match via bbref_id to Leo Jimenez +12081,Leo Rivas,12,rivasle01,1653,tier1_bbref,Automatic match via bbref_id to Leo Rivas +12082,Leody Taveras,12,taverle01,1962,tier1_bbref,Automatic match via bbref_id to Leody Taveras +12083,Logan Allen,12,allenlo01,45,tier1_bbref,Automatic match via bbref_id to Logan Allen +12084,Logan Gilbert,12,gilbelo01,718,tier1_bbref,Automatic match via bbref_id to Logan Gilbert +12085,Logan OHoppe,12,ohopplo01,1454,tier1_bbref,Automatic match via bbref_id to Logan OHoppe +12086,Logan T Allen,12,allenlo02,48,tier1_bbref,Automatic match via bbref_id to Logan Allen +12087,Logan Webb,12,webblo01,2127,tier1_bbref,Automatic match via bbref_id to Logan Webb +12088,Louie Varland,12,varlalo01,2057,tier1_bbref,Automatic match via bbref_id to Louie Varland +12089,Lourdes Gurriel Jr,12,gurrilo01,794,tier1_bbref,Automatic match via bbref_id to Lourdes Gurriel Jr +12090,Lucas Erceg,12,erceglu01,577,tier1_bbref,Automatic match via bbref_id to Lucas Erceg +12091,Lucas Sims,12,simslu01,1826,tier1_bbref,Automatic match via bbref_id to Lucas Sims +12092,Luis Arraez,12,arraelu01,93,tier1_bbref,Automatic match via bbref_id to Luis Arraez +12093,Luis Campusano,12,campulu01,314,tier1_bbref,Automatic match via bbref_id to Luis Campusano +12094,Luis Castillo,12,castilu02,344,tier1_bbref,Automatic match via bbref_id to Luis Castillo +12095,Luis Garcia,12,garcilu03,3237,manual_new,Manual assignment to new SbaPlayer: Luis Garcia +12096,Luis Gil,12,gillu01,716,tier1_bbref,Automatic match via bbref_id to Luis Gil +12097,Luis Guillorme,12,guilllu01,792,tier1_bbref,Automatic match via bbref_id to Luis Guillorme +12098,Luis Matos,12,matoslu02,1240,tier1_bbref,Automatic match via bbref_id to Luis Matos +12099,Luis Medina,12,medinlu02,1293,tier1_bbref,Automatic match via bbref_id to Luis Medina +12100,Luis Ortiz,12,ortizlu02,10011100,emergency_new,"EMERGENCY: Unassigned player, needs new SbaPlayer record" +12101,Luis Rengifo,12,rengilu01,1632,tier1_bbref,Automatic match via bbref_id to Luis Rengifo +12102,Luis Robert,12,roberlu01,1660,tier1_bbref,Automatic match via bbref_id to Luis Robert +12103,Luis Severino,12,severlu01,1805,tier1_bbref,Automatic match via bbref_id to Luis Severino +12104,Luis Torrens,12,torrelu01,2002,tier1_bbref,Automatic match via bbref_id to Luis Torrens +12105,Luis Urias,12,uriaslu01,2039,tier1_bbref,Automatic match via bbref_id to Luis Urias +12106,Luis V Garcia,12,garcilu04,694,tier1_bbref,Automatic match via bbref_id to Luis Garcia Jr +12107,Luke Jackson,12,jackslu01,960,tier1_bbref,Automatic match via bbref_id to Luke Jackson +12108,Luke Little,12,littllu01,1129,tier1_bbref,Automatic match via bbref_id to Luke Little +12109,Luke Maile,12,mailelu01,1185,tier1_bbref,Automatic match via bbref_id to Luke Maile +12110,Luke Raley,12,raleylu01,1602,tier1_bbref,Automatic match via bbref_id to Luke Raley +12111,Luke Weaver,12,weavelu01,2124,tier1_bbref,Automatic match via bbref_id to Luke Weaver +12112,MacKenzie Gore,12,gorema01,754,tier1_bbref,Automatic match via bbref_id to MacKenzie Gore +12114,Manny Machado,12,machama01,1175,tier1_bbref,Automatic match via bbref_id to Manny Machado +12115,Manuel Margot,12,margoma01,1198,tier1_bbref,Automatic match via bbref_id to Manuel Margot +12116,Manuel Rodriguez,12,rodrima01,1678,tier1_bbref,Automatic match via bbref_id to Manuel Rodriguez +12117,Marcell Ozuna,12,ozunama01,1481,tier1_bbref,Automatic match via bbref_id to Marcell Ozuna +12118,Marco Gonzales,12,gonzama02,735,tier1_bbref,Automatic match via bbref_id to Marco Gonzales +12119,Marco Luciano,12,luciama01,1162,tier1_bbref,Automatic match via bbref_id to Marco Luciano +12120,Marcus Semien,12,semiema01,1799,tier1_bbref,Automatic match via bbref_id to Marcus Semien +12121,Marcus Stroman,12,stromma01,1928,tier1_bbref,Automatic match via bbref_id to Marcus Stroman +12122,Mark Canha,12,canhama01,316,tier1_bbref,Automatic match via bbref_id to Mark Canha +12123,Mark Leiter,12,leitema02,1112,tier1_bbref,Automatic match via bbref_id to Mark Leiter +12124,Mark Vientos,12,vientma01,2076,tier1_bbref,Automatic match via bbref_id to Mark Vientos +12125,Martin Maldonado,12,maldoma01,1187,tier1_bbref,Automatic match via bbref_id to Martin Maldonado +12126,Martin Perez,12,perezma02,1535,tier1_bbref,Automatic match via bbref_id to Martin Perez +12127,Masataka Yoshida,12,yoshima02,2216,tier1_bbref,Automatic match via bbref_id to Masataka Yoshida +12128,Mason Black,12,blackma01,203,tier1_bbref,Automatic match via bbref_id to Mason Black +12129,Mason Englert,12,englema01,575,tier1_bbref,Automatic match via bbref_id to Mason Englert +12130,Mason Miller,12,millema03,1329,tier1_bbref,Automatic match via bbref_id to Mason Miller +12131,Masyn Winn,12,winnma01,2180,tier1_bbref,Automatic match via bbref_id to Masyn Winn +12133,Matt Boyd,12,boydma01,230,tier1_bbref,Automatic match via bbref_id to Matthew Boyd +12134,Matt Carpenter,12,carpema01,329,tier1_bbref,Automatic match via bbref_id to Matt Carpenter +12135,Matt Chapman,12,chapmma01,367,tier1_bbref,Automatic match via bbref_id to Matt Chapman +12136,Matt Festa,12,festama01,610,tier1_bbref,Automatic match via bbref_id to Matt Festa +12137,Matt Moore,12,moorema02,1357,tier1_bbref,Automatic match via bbref_id to Matt Moore +12138,Matt Olson,12,olsonma02,1461,tier1_bbref,Automatic match via bbref_id to Matt Olson +12139,Matt Strahm,12,strahma01,1918,tier1_bbref,Automatic match via bbref_id to Matt Strahm +12140,Matt Thaiss,12,thaisma01,1975,tier1_bbref,Automatic match via bbref_id to Matt Thaiss +12141,Matt Vierling,12,vierlma01,2077,tier1_bbref,Automatic match via bbref_id to Matt Vierling +12142,Matt Waldron,12,waldrma01,2102,tier1_bbref,Automatic match via bbref_id to Matt Waldron +12143,Matt Wallner,12,wallnma01,2109,tier1_bbref,Automatic match via bbref_id to Matt Wallner +12144,Matthew Liberatore,12,liberma01,1121,tier1_bbref,Automatic match via bbref_id to Matthew Liberatore +12145,Mauricio Dubon,12,dubonma01,538,tier1_bbref,Automatic match via bbref_id to Mauricio Dubon +12147,Max Kepler,12,keplema01,1031,tier1_bbref,Automatic match via bbref_id to Max Kepler +12148,Max Meyer,12,meyerma01,1314,tier1_bbref,Automatic match via bbref_id to Max Meyer +12149,Max Muncy,12,muncyma01,1382,tier1_bbref,Automatic match via bbref_id to Max Muncy +12113,Maikel Garcia,12,garcima01,691,tier1_bbref,Automatic match via bbref_id to Maikel Garcia +12132,Matt Bowman,12,bowmama01,228,tier1_bbref,Automatic match via bbref_id to Matt Bowman +12150,Max Scherzer,12,scherma01,1773,tier1_bbref,Automatic match via bbref_id to Max Scherzer +12151,Max Schuemann,12,schuema01,1782,tier1_bbref,Automatic match via bbref_id to Max Schuemann +12152,Merrill Kelly,12,kellyme01,1020,tier1_bbref,Automatic match via bbref_id to Merrill Kelly +12153,Michael A Taylor,12,taylomi02,1963,tier1_bbref,Automatic match via bbref_id to Michael Taylor +12154,Michael Busch,12,buschmi02,288,tier1_bbref,Automatic match via bbref_id to Michael Busch +12155,Michael Conforto,12,confomi01,407,tier1_bbref,Automatic match via bbref_id to Michael Conforto +12156,Michael Grove,12,grovemi01,781,tier1_bbref,Automatic match via bbref_id to Michael Grove +12157,Michael Harris,12,harrimi04,827,tier1_bbref,Automatic match via bbref_id to Michael Harris +12158,Michael Kelly,12,kellymi03,1022,tier1_bbref,Automatic match via bbref_id to Michael Kelly +12159,Michael King,12,kingmi01,1047,tier1_bbref,Automatic match via bbref_id to Michael King +12161,Michael Lorenzen,12,lorenmi01,1151,tier1_bbref,Automatic match via bbref_id to Michael Lorenzen +12162,Michael Massey,12,massemi02,1231,tier1_bbref,Automatic match via bbref_id to Michael Massey +12163,Michael Petersen,12,petermi01,1546,tier1_bbref,Automatic match via bbref_id to Michael Petersen +12164,Michael Siani,12,sianimi01,1822,tier1_bbref,Automatic match via bbref_id to Michael Siani +12165,Michael Soroka,12,sorokmi01,1875,tier1_bbref,Automatic match via bbref_id to Michael Soroka +12166,Michael Stefanic,12,stefami01,1901,tier1_bbref,Automatic match via bbref_id to Michael Stefanic +12167,Michael Toglia,12,toglimi01,1994,tier1_bbref,Automatic match via bbref_id to Michael Toglia +12168,Michael Tonkin,12,tonkimi01,1998,tier1_bbref,Automatic match via bbref_id to Michael Tonkin +12169,Michael Wacha,12,wachami01,2093,tier1_bbref,Automatic match via bbref_id to Michael Wacha +12170,Michel Otanez,12,otanemi01,1473,tier1_bbref,Automatic match via bbref_id to Michel Otanez +12171,Mickey Moniak,12,moniami01,1350,tier1_bbref,Automatic match via bbref_id to Mickey Moniak +12172,Miguel Amaya,12,amayami01,64,tier1_bbref,Automatic match via bbref_id to Miguel Amaya +12173,Miguel Andujar,12,andujmi01,78,tier1_bbref,Automatic match via bbref_id to Miguel Andujar +12174,Miguel Rojas,12,rojasmi02,1694,tier1_bbref,Automatic match via bbref_id to Miguel Rojas +12175,Miguel Sano,12,sanomi01,1757,tier1_bbref,Automatic match via bbref_id to Miguel Sano +12176,Miguel Vargas,12,vargami01,2055,tier1_bbref,Automatic match via bbref_id to Miguel Vargas +12177,Mike Baumann,12,baumami01,152,tier1_bbref,Automatic match via bbref_id to Mike Baumann +12178,Mike Ford,12,fordmi01,635,tier1_bbref,Automatic match via bbref_id to Mike Ford +12179,Mike Tauchman,12,tauchmi01,1961,tier1_bbref,Automatic match via bbref_id to Mike Tauchman +12180,Mike Trout,12,troutmi01,2019,tier1_bbref,Automatic match via bbref_id to Mike Trout +12181,Mike Yastrzemski,12,yastrmi01,2210,tier1_bbref,Automatic match via bbref_id to Mike Yastrzemski +12182,Miles Mastrobuoni,12,mastrmi01,1232,tier1_bbref,Automatic match via bbref_id to Miles Mastrobuoni +12183,Miles Mikolas,12,mikolmi01,1317,tier1_bbref,Automatic match via bbref_id to Miles Mikolas +12184,Mitch Garver,12,garvemi01,702,tier1_bbref,Automatic match via bbref_id to Mitch Garver +12185,Mitch Haniger,12,hanigmi01,818,tier1_bbref,Automatic match via bbref_id to Mitch Haniger +12186,Mitch Keller,12,kellemi03,1017,tier1_bbref,Automatic match via bbref_id to Mitch Keller +12187,Mitch Spence,12,spencmi01,1886,tier1_bbref,Automatic match via bbref_id to Mitch Spence +12188,Mitch White,12,whitemi03,2143,tier1_bbref,Automatic match via bbref_id to Mitch White +12189,Mitchell Parker,12,parkemi01,1500,tier1_bbref,Automatic match via bbref_id to Mitchell Parker +12190,MJ Melendez,12,melenmj01,1299,tier1_bbref,Automatic match via bbref_id to MJ Melendez +12191,Mookie Betts,12,bettsmo01,187,tier1_bbref,Automatic match via bbref_id to Mookie Betts +12192,Nasim Nunez,12,nunezna01,1446,tier1_bbref,Automatic match via bbref_id to Nasim Nunez +12193,Nate Pearson,12,pearsna01,1513,tier1_bbref,Automatic match via bbref_id to Nate Pearson +12195,Nathan Lukes,12,lukesna01,1167,tier1_bbref,Automatic match via bbref_id to Nathan Lukes +12196,Nathaniel Lowe,12,lowena01,1155,tier1_bbref,Automatic match via bbref_id to Nathaniel Lowe +12197,Nelson Velazquez,12,velazne01,2068,tier1_bbref,Automatic match via bbref_id to Nelson Velazquez +12198,Nestor Cortes Jr,12,cortene01,421,tier1_bbref,Automatic match via bbref_id to Nestor Cortes Jr +12199,Nicholas Castellanos,12,casteni01,340,tier1_bbref,Automatic match via bbref_id to Nicholas Castellanos +12200,Nick Ahmed,12,ahmedni01,26,tier1_bbref,Automatic match via bbref_id to Nick Ahmed +12201,Nick Allen,12,allenni02,46,tier1_bbref,Automatic match via bbref_id to Nick Allen +12202,Nick Anderson,12,anderni01,71,tier1_bbref,Automatic match via bbref_id to Nick Anderson +12203,Nick Fortes,12,forteni01,637,tier1_bbref,Automatic match via bbref_id to Nick Fortes +12204,Nick Gonzales,12,gonzani01,736,tier1_bbref,Automatic match via bbref_id to Nick Gonzales +12205,Nick Gordon,12,gordoni01,752,tier1_bbref,Automatic match via bbref_id to Nick Gordon +12206,Nick Lodolo,12,lodolni01,1135,tier1_bbref,Automatic match via bbref_id to Nick Lodolo +12207,Nick Loftin,12,loftini01,1136,tier1_bbref,Automatic match via bbref_id to Nick Loftin +12208,Nick Madrigal,12,madrini01,1178,tier1_bbref,Automatic match via bbref_id to Nick Madrigal +12209,Nick Martinez,12,martini01,1224,tier1_bbref,Automatic match via bbref_id to Nick Martinez +12210,Nick Martini,12,martini02,1230,tier1_bbref,Automatic match via bbref_id to Nick Martini +12211,Nick Mears,12,mearsni01,1292,tier1_bbref,Automatic match via bbref_id to Nick Mears +12212,Nick Nastrini,12,nastrni01,1402,tier1_bbref,Automatic match via bbref_id to Nick Nastrini +12213,Nick Pivetta,12,pivetni01,1564,tier1_bbref,Automatic match via bbref_id to Nick Pivetta +12214,Nick Sandlin,12,sandlni01,1752,tier1_bbref,Automatic match via bbref_id to Nick Sandlin +12215,Nick Senzel,12,senzeni01,1802,tier1_bbref,Automatic match via bbref_id to Nick Senzel +12216,Nick Sogard,12,sogarni01,1866,tier1_bbref,Automatic match via bbref_id to Nick Sogard +12217,Nicky Lopez,12,lopezni01,1149,tier1_bbref,Automatic match via bbref_id to Nicky Lopez +12218,Nico Hoerner,12,hoernni01,909,tier1_bbref,Automatic match via bbref_id to Nico Hoerner +12219,Niko Kavadas,12,kavadni01,1011,tier1_bbref,Automatic match via bbref_id to Niko Kavadas +12220,Noah Davis,12,davisno01,472,tier1_bbref,Automatic match via bbref_id to Noah Davis +12221,Noelvi Marte,12,marteno01,1212,tier1_bbref,Automatic match via bbref_id to Noelvi Marte +12222,Nolan Arenado,12,arenano01,88,tier1_bbref,Automatic match via bbref_id to Nolan Arenado +12223,Nolan Gorman,12,gormano01,755,tier1_bbref,Automatic match via bbref_id to Nolan Gorman +12224,Nolan Jones,12,jonesno01,994,tier1_bbref,Automatic match via bbref_id to Nolan Jones +12225,Nolan Schanuel,12,schanno01,1771,tier1_bbref,Automatic match via bbref_id to Nolan Schanuel +12226,Oliver Dunn,12,dunnol01,547,tier1_bbref,Automatic match via bbref_id to Oliver Dunn +12227,Omar Narvaez,12,narvaom01,1401,tier1_bbref,Automatic match via bbref_id to Omar Narvaez +12228,Oneil Cruz,12,cruzon01,449,tier1_bbref,Automatic match via bbref_id to Oneil Cruz +12229,Orion Kerkering,12,kerkeor01,1032,tier1_bbref,Automatic match via bbref_id to Orion Kerkering +12230,Orlando Arcia,12,arciaor01,86,tier1_bbref,Automatic match via bbref_id to Orlando Arcia +12231,Osvaldo Bido,12,bidoos01,193,tier1_bbref,Automatic match via bbref_id to Osvaldo Bido +12272,Reynaldo Lopez,12,lopezre01,1145,tier1_bbref,Automatic match via bbref_id to Reynaldo Lopez +12232,Oswaldo Cabrera,12,cabreos01,303,tier1_bbref,Automatic match via bbref_id to Oswaldo Cabrera +12233,Otto Lopez,12,lopezot01,1150,tier1_bbref,Automatic match via bbref_id to Otto Lopez +12234,Ozzie Albies,12,albieoz01,31,tier1_bbref,Automatic match via bbref_id to Ozzie Albies +12235,Pablo Lopez,12,lopezpa01,1146,tier1_bbref,Automatic match via bbref_id to Pablo Lopez +12236,Pablo Reyes,12,reyespa01,1637,tier1_bbref,Automatic match via bbref_id to Pablo Reyes +12237,Parker Meadows,12,meadopa01,1291,tier1_bbref,Automatic match via bbref_id to Parker Meadows +12238,Patrick Bailey,12,bailepa01,115,tier1_bbref,Automatic match via bbref_id to Patrick Bailey +12239,Patrick Corbin,12,corbipa01,416,tier1_bbref,Automatic match via bbref_id to Patrick Corbin +12240,Patrick Sandoval,12,sandopa02,1754,tier1_bbref,Automatic match via bbref_id to Patrick Sandoval +12241,Patrick Wisdom,12,wisdopa01,2181,tier1_bbref,Automatic match via bbref_id to Patrick Wisdom +12242,Paul Blackburn,12,blackpa01,204,tier1_bbref,Automatic match via bbref_id to Paul Blackburn +12243,Paul DeJong,12,dejonpa01,485,tier1_bbref,Automatic match via bbref_id to Paul DeJong +12244,Paul Goldschmidt,12,goldspa01,729,tier1_bbref,Automatic match via bbref_id to Paul Goldschmidt +12245,Paul Sewald,12,sewalpa01,1806,tier1_bbref,Automatic match via bbref_id to Paul Sewald +12246,Paul Skenes,12,skenepa01,1833,tier1_bbref,Automatic match via bbref_id to Paul Skenes +12247,Pavin Smith,12,smithpa04,1851,tier1_bbref,Automatic match via bbref_id to Pavin Smith +12248,Pedro Avila,12,avilape01,105,tier1_bbref,Automatic match via bbref_id to Pedro Avila +12249,Pedro Pages,12,pagespe02,10011249,emergency_new,"EMERGENCY: Unassigned player, needs new SbaPlayer record" +12250,Pete Alonso,12,alonspe01,53,tier1_bbref,Automatic match via bbref_id to Pete Alonso +12251,Pete Crow Armstrong,12,crowape01,445,tier1_bbref,Automatic match via bbref_id to Pete Crow Armstrong +12252,Pete Fairbanks,12,fairbpe01,592,tier1_bbref,Automatic match via bbref_id to Pete Fairbanks +12253,Peter Lambert,12,lambepe01,1088,tier1_bbref,Automatic match via bbref_id to Peter Lambert +12254,Phil Maton,12,matonph01,1238,tier1_bbref,Automatic match via bbref_id to Phil Maton +12256,Porter Hodge,12,hodgepo01,907,tier1_bbref,Automatic match via bbref_id to Porter Hodge +12257,Quinn Priester,12,priesqu01,1586,tier1_bbref,Automatic match via bbref_id to Quinn Priester +12258,Rafael Devers,12,deverra01,499,tier1_bbref,Automatic match via bbref_id to Rafael Devers +12259,Rafael Montero,12,montera01,1352,tier1_bbref,Automatic match via bbref_id to Rafael Montero +12260,Raisel Iglesias,12,iglesra01,950,tier1_bbref,Automatic match via bbref_id to Raisel Iglesias +12261,Ramon Laureano,12,laurera01,1097,tier1_bbref,Automatic match via bbref_id to Ramon Laureano +12263,Randal Grichuk,12,grichra01,775,tier1_bbref,Automatic match via bbref_id to Randal Grichuk +12264,Randy Arozarena,12,arozara01,92,tier1_bbref,Automatic match via bbref_id to Randy Arozarena +12265,Randy Rodriguez,12,rodrira02,1683,tier1_bbref,Automatic match via bbref_id to Randy Rodriguez +12266,Randy Vasquez,12,vasqura02,2060,tier1_bbref,Automatic match via bbref_id to Randy Vasquez +12267,Ranger Suarez,12,suarera01,1936,tier1_bbref,Automatic match via bbref_id to Ranger Suarez +12268,Reed Garrett,12,garrere01,700,tier1_bbref,Automatic match via bbref_id to Reed Garrett +12269,Reese McGuire,12,mcguire01,1277,tier1_bbref,Automatic match via bbref_id to Reese McGuire +12270,Reese Olson,12,olsonre01,1462,tier1_bbref,Automatic match via bbref_id to Reese Olson +12271,Reid Detmers,12,detmere01,496,tier1_bbref,Automatic match via bbref_id to Reid Detmers +12255,Pierce Johnson,12,johnspi01,985,tier1_bbref,Automatic match via bbref_id to Pierce Johnson +12273,Rhett Lowder,12,lowderh01,1154,tier1_bbref,Automatic match via bbref_id to Rhett Lowder +12274,Rhys Hoskins,12,hoskirh01,925,tier1_bbref,Automatic match via bbref_id to Rhys Hoskins +12276,Richie Palacios,12,palacri01,1488,tier1_bbref,Automatic match via bbref_id to Richie Palacios +12277,Riley Adams,12,adamsri03,17,tier1_bbref,Automatic match via bbref_id to Riley Adams +12278,Riley Greene,12,greenri03,771,tier1_bbref,Automatic match via bbref_id to Riley Greene +12279,Roansy Contreras,12,contrro01,412,tier1_bbref,Automatic match via bbref_id to Roansy Contreras +12280,Rob Refsnyder,12,refsnro01,1626,tier1_bbref,Automatic match via bbref_id to Rob Refsnyder +12281,Robbie Grossman,12,grossro01,779,tier1_bbref,Automatic match via bbref_id to Robbie Grossman +12282,Robbie Ray,12,rayro02,1620,tier1_bbref,Automatic match via bbref_id to Robbie Ray +12283,Robert Garcia,12,garciro04,692,tier1_bbref,Automatic match via bbref_id to Robert Garcia +12284,Robert Suarez,12,suarero01,1938,tier1_bbref,Automatic match via bbref_id to Robert Suarez +12285,Roddery Munoz,12,munozro01,1385,tier1_bbref,Automatic match via bbref_id to Roddery Munoz +12286,Romy Gonzalez,12,gonzaro01,745,tier1_bbref,Automatic match via bbref_id to Romy Gonzalez +12287,Ron Marinaccio,12,marinro01,1199,tier1_bbref,Automatic match via bbref_id to Ron Marinaccio +12288,Ronald Acuna Jr,12,acunaro01,12,tier1_bbref,Automatic match via bbref_id to Ronald Acuna Jr +12289,Ronel Blanco,12,blancro01,208,tier1_bbref,Automatic match via bbref_id to Ronel Blanco +12290,Ross Stripling,12,stripro01,1927,tier1_bbref,Automatic match via bbref_id to Ross Stripling +12291,Rowdy Tellez,12,tellero01,1972,tier1_bbref,Automatic match via bbref_id to Rowdy Tellez +12292,Royce Lewis,12,lewisro02,1119,tier1_bbref,Automatic match via bbref_id to Royce Lewis +12293,Ryan Bliss,12,blissry01,215,tier1_bbref,Automatic match via bbref_id to Ryan Bliss +12294,Ryan Brasier,12,brasiry01,242,tier1_bbref,Automatic match via bbref_id to Ryan Brasier +12295,Ryan Burr,12,burrry01,287,tier1_bbref,Automatic match via bbref_id to Ryan Burr +12296,Ryan Feltner,12,feltnry01,603,tier1_bbref,Automatic match via bbref_id to Ryan Feltner +12298,Ryan Helsley,12,helslry01,853,tier1_bbref,Automatic match via bbref_id to Ryan Helsley +12299,Ryan Jeffers,12,jeffery01,975,tier1_bbref,Automatic match via bbref_id to Ryan Jeffers +12300,Ryan Kreidler,12,kreidry01,1076,tier1_bbref,Automatic match via bbref_id to Ryan Kreidler +12301,Ryan McMahon,12,mcmahry01,1286,tier1_bbref,Automatic match via bbref_id to Ryan McMahon +12302,Ryan Mountcastle,12,mountry01,1377,tier1_bbref,Automatic match via bbref_id to Ryan Mountcastle +12303,Ryan Noda,12,nodary01,1427,tier1_bbref,Automatic match via bbref_id to Ryan Noda +12304,Ryan OHearn,12,ohearry01,1453,tier1_bbref,Automatic match via bbref_id to Ryan OHearn +12305,Ryan Pepiot,12,pepiory01,1521,tier1_bbref,Automatic match via bbref_id to Ryan Pepiot +12306,Ryan Pressly,12,pressry01,1584,tier1_bbref,Automatic match via bbref_id to Ryan Pressly +12307,Ryan Thompson,12,thompry02,1983,tier1_bbref,Automatic match via bbref_id to Ryan Thompson +12308,Ryan Walker,12,walkery01,2106,tier1_bbref,Automatic match via bbref_id to Ryan Walker +12309,Ryan Weathers,12,weathry01,2123,tier1_bbref,Automatic match via bbref_id to Ryan Weathers +12310,Ryan Yarbrough,12,yarbrry01,2208,tier1_bbref,Automatic match via bbref_id to Ryan Yarbrough +12312,Ryne Nelson,12,nelsory01,1411,tier1_bbref,Automatic match via bbref_id to Ryne Nelson +12313,Ryne Stanek,12,stanery01,1892,tier1_bbref,Automatic match via bbref_id to Ryne Stanek +12314,Sal Frelick,12,frelisa01,657,tier1_bbref,Automatic match via bbref_id to Sal Frelick +12275,Richard Lovelady,12,lovelri01,1153,tier1_bbref,Automatic match via bbref_id to Richard Lovelady +12311,Ryder Ryan,12,ryanry01,1731,tier1_bbref,Automatic match via bbref_id to Ryder Ryan +12315,Salvador Perez,12,perezsa02,1534,tier1_bbref,Automatic match via bbref_id to Salvador Perez +12316,Sam Hentges,12,hentgsa01,861,tier1_bbref,Automatic match via bbref_id to Sam Hentges +12317,Sam Hilliard,12,hillisa01,903,tier1_bbref,Automatic match via bbref_id to Sam Hilliard +12318,Sam Long,12,longsa01,1139,tier1_bbref,Automatic match via bbref_id to Sam Long +12319,Sam Moll,12,mollsa01,1346,tier1_bbref,Automatic match via bbref_id to Sam Moll +12320,Santiago Espinal,12,espinsa01,582,tier1_bbref,Automatic match via bbref_id to Santiago Espinal +12321,Scott Alexander,12,alexasc02,36,tier1_bbref,Automatic match via bbref_id to Scott Alexander +12322,Scott Barlow,12,barlosc01,128,tier1_bbref,Automatic match via bbref_id to Scott Barlow +12323,Scott Blewett,12,blewesc01,214,tier1_bbref,Automatic match via bbref_id to Scott Blewett +12324,Scott McGough,12,mcgousc01,1275,tier1_bbref,Automatic match via bbref_id to Scott McGough +12325,Sean Bouchard,12,bouchse01,225,tier1_bbref,Automatic match via bbref_id to Sean Bouchard +12326,Sean Guenther,12,guentse01,783,tier1_bbref,Automatic match via bbref_id to Sean Guenther +12327,Sean Hjelle,12,hjellse01,906,tier1_bbref,Automatic match via bbref_id to Sean Hjelle +12329,Sean Murphy,12,murphse01,1390,tier1_bbref,Automatic match via bbref_id to Sean Murphy +12330,Sean Reid-Foley,12,reidfse01,1627,tier1_bbref,Automatic match via bbref_id to Sean Reid Foley +12331,Seiya Suzuki,12,suzukse01,1946,tier1_bbref,Automatic match via bbref_id to Seiya Suzuki +12333,Seth Brown,12,brownse01,265,tier1_bbref,Automatic match via bbref_id to Seth Brown +12334,Seth Lugo,12,lugose01,1165,tier1_bbref,Automatic match via bbref_id to Seth Lugo +12335,Seth Martinez,12,martise01,1226,tier1_bbref,Automatic match via bbref_id to Seth Martinez +12336,Shane Baz,12,bazsh01,155,tier1_bbref,Automatic match via bbref_id to Shane Baz +12337,Shawn Armstrong,12,armstsh01,91,tier1_bbref,Automatic match via bbref_id to Shawn Armstrong +12338,Shawn Dubin,12,dubinsh01,537,tier1_bbref,Automatic match via bbref_id to Shawn Dubin +12339,Shea Langeliers,12,langesh01,1092,tier1_bbref,Automatic match via bbref_id to Shea Langeliers +12340,Shelby Miller,12,millesh01,1323,tier1_bbref,Automatic match via bbref_id to Shelby Miller +12341,Shohei Ohtani,12,ohtansh01,1455,tier1_bbref,Automatic match via bbref_id to Shohei Ohtani +12342,Shota Imanaga,12,imanash01,951,tier1_bbref,Automatic match via bbref_id to Shota Imanaga +12343,Simeon Woods Richardson,12,woodssi01,2197,tier1_bbref,Automatic match via bbref_id to Simeon Woods Richardson +12344,Sixto Sanchez,12,sanchsi01,1751,tier1_bbref,Automatic match via bbref_id to Sixto Sanchez +12345,Slade Cecconi,12,ceccosl01,356,tier1_bbref,Automatic match via bbref_id to Slade Cecconi +12346,Sonny Gray,12,grayso01,765,tier1_bbref,Automatic match via bbref_id to Sonny Gray +12347,Spencer Arrighetti,12,arrigsp01,95,tier1_bbref,Automatic match via bbref_id to Spencer Arrighetti +12348,Spencer Bivens,12,bivensp01,201,tier1_bbref,Automatic match via bbref_id to Spencer Bivens +12349,Spencer Horwitz,12,horwisp01,924,tier1_bbref,Automatic match via bbref_id to Spencer Horwitz +12350,Spencer Schwellenbach,12,schwesp01,1785,tier1_bbref,Automatic match via bbref_id to Spencer Schwellenbach +12351,Spencer Steer,12,steersp01,1900,tier1_bbref,Automatic match via bbref_id to Spencer Steer +12352,Spencer Torkelson,12,torkesp01,2000,tier1_bbref,Automatic match via bbref_id to Spencer Torkelson +12353,Spencer Turnbull,12,turnbsp01,2028,tier1_bbref,Automatic match via bbref_id to Spencer Turnbull +12354,Starling Marte,12,martest01,1208,tier1_bbref,Automatic match via bbref_id to Starling Marte +12355,Stephen Kolek,12,kolekst01,1070,tier1_bbref,Automatic match via bbref_id to Stephen Kolek +12332,Seranthony Dominguez,12,dominse01,524,tier1_bbref,Automatic match via bbref_id to Seranthony Dominguez +12357,Steven Matz,12,matzst01,1243,tier1_bbref,Automatic match via bbref_id to Steven Matz +12358,Steven Okert,12,okertst01,1456,tier1_bbref,Automatic match via bbref_id to Steven Okert +12359,Steven Wilson,12,wilsost02,2169,tier1_bbref,Automatic match via bbref_id to Steven Wilson +12360,Stuart Fairchild,12,faircst01,593,tier1_bbref,Automatic match via bbref_id to Stuart Fairchild +12361,Taijuan Walker,12,walketa01,2105,tier1_bbref,Automatic match via bbref_id to Taijuan Walker +12362,Taj Bradley,12,bradlta01,238,tier1_bbref,Automatic match via bbref_id to Taj Bradley +12363,Tanner Banks,12,banksta01,122,tier1_bbref,Automatic match via bbref_id to Tanner Banks +12364,Tanner Bibee,12,bibeeta01,189,tier1_bbref,Automatic match via bbref_id to Tanner Bibee +12365,Tanner Gordon,12,gordota01,753,tier1_bbref,Automatic match via bbref_id to Tanner Gordon +12366,Tanner Houck,12,houckta01,927,tier1_bbref,Automatic match via bbref_id to Tanner Houck +12367,Tanner Rainey,12,raineta01,1599,tier1_bbref,Automatic match via bbref_id to Tanner Rainey +12368,Tanner Scott,12,scottta01,1788,tier1_bbref,Automatic match via bbref_id to Tanner Scott +12369,Tarik Skubal,12,skubata01,1836,tier1_bbref,Automatic match via bbref_id to Tarik Skubal +12370,Tayler Saucedo,12,sauceta01,1768,tier1_bbref,Automatic match via bbref_id to Tayler Saucedo +12371,Tayler Scott,12,scottta02,1787,tier1_bbref,Automatic match via bbref_id to Tayler Scott +12372,Taylor Rogers,12,rogerta01,1689,tier1_bbref,Automatic match via bbref_id to Taylor Rogers +12373,Taylor Walls,12,wallsta01,2110,tier1_bbref,Automatic match via bbref_id to Taylor Walls +12374,Taylor Ward,12,wardta01,2116,tier1_bbref,Automatic match via bbref_id to Taylor Ward +12375,Teoscar Hernandez,12,hernate01,873,tier1_bbref,Automatic match via bbref_id to Teoscar Hernandez +12376,Thairo Estrada,12,estrath01,587,tier1_bbref,Automatic match via bbref_id to Thairo Estrada +12377,Thyago Vieira,12,vieirth01,2075,tier1_bbref,Automatic match via bbref_id to Thyago Vieira +12378,Tim Anderson,12,anderti01,73,tier1_bbref,Automatic match via bbref_id to Tim Anderson +12379,Tim Herrin,12,herriti01,886,tier1_bbref,Automatic match via bbref_id to Tim Herrin +12380,Tim Hill,12,hillti01,900,tier1_bbref,Automatic match via bbref_id to Tim Hill +12381,Tim Mayza,12,mayzati01,1253,tier1_bbref,Automatic match via bbref_id to Tim Mayza +12382,TJ Friedl,12,friedtj01,660,tier1_bbref,Automatic match via bbref_id to TJ Friedl +12383,TJ McFarland,12,mcfartj01,1273,tier1_bbref,Automatic match via bbref_id to TJ McFarland +12384,Tobias Myers,12,myersto01,1397,tier1_bbref,Automatic match via bbref_id to Tobias Myers +12385,Tomas Nido,12,nidoto01,1424,tier1_bbref,Automatic match via bbref_id to Tomas Nido +12386,Tommy Edman,12,edmanto01,558,tier1_bbref,Automatic match via bbref_id to Tommy Edman +12387,Tommy Henry,12,henryto01,859,tier1_bbref,Automatic match via bbref_id to Tommy Henry +12388,Tommy Kahnle,12,kahnlto01,1006,tier1_bbref,Automatic match via bbref_id to Tommy Kahnle +12389,Tommy Nance,12,nanceto01,1398,tier1_bbref,Automatic match via bbref_id to Tommy Nance +12390,Tommy Pham,12,phamth01,1552,tier1_bbref,Automatic match via bbref_id to Tommy Pham +12391,Tony Santillan,12,santito01,1766,tier1_bbref,Automatic match via bbref_id to Tony Santillan +12392,Touki Toussaint,12,toussto01,2005,tier1_bbref,Automatic match via bbref_id to Touki Toussaint +12393,Travis dArnaud,12,darnatr01,461,tier1_bbref,Automatic match via bbref_id to Travis dArnaud +12394,Travis Jankowski,12,jankotr01,967,tier1_bbref,Automatic match via bbref_id to Travis Jankowski +12395,Trea Turner,12,turnetr01,1,tier1_bbref,Automatic match via bbref_id to Trea Turner +12396,Trent Grisham,12,grishtr01,776,tier1_bbref,Automatic match via bbref_id to Trent Grisham +12397,Trent Thornton,12,thorntr01,1988,tier1_bbref,Automatic match via bbref_id to Trent Thornton +12398,Trevor Larnach,12,larnatr01,1094,tier1_bbref,Automatic match via bbref_id to Trevor Larnach +12399,Trevor Megill,12,megiltr01,1294,tier1_bbref,Automatic match via bbref_id to Trevor Megill +12400,Trevor Richards,12,richatr01,1646,tier1_bbref,Automatic match via bbref_id to Trevor Richards +12401,Trevor Rogers,12,rogertr01,1693,tier1_bbref,Automatic match via bbref_id to Trevor Rogers +12402,Trevor Story,12,storytr01,1914,tier1_bbref,Automatic match via bbref_id to Trevor Story +12403,Trevor Williams,12,willitr01,2156,tier1_bbref,Automatic match via bbref_id to Trevor Williams +12404,Trey Cabbage,12,cabbatr01,297,tier1_bbref,Automatic match via bbref_id to Trey Cabbage +12405,Trey Lipscomb,12,lipsctr01,1125,tier1_bbref,Automatic match via bbref_id to Trey Lipscomb +12406,Trey Sweeney,12,sweentr01,1951,tier1_bbref,Automatic match via bbref_id to Trey Sweeney +12407,Triston Casas,12,casastr01,335,tier1_bbref,Automatic match via bbref_id to Triston Casas +12408,Triston McKenzie,12,mckentr01,1282,tier1_bbref,Automatic match via bbref_id to Triston McKenzie +12409,Tucker Barnhart,12,barnhtu01,135,tier1_bbref,Automatic match via bbref_id to Tucker Barnhart +12410,Ty Blach,12,blachty01,202,tier1_bbref,Automatic match via bbref_id to Ty Blach +12411,Ty France,12,francty01,642,tier1_bbref,Automatic match via bbref_id to Ty France +12412,Tyler Alexander,12,alexaty01,37,tier1_bbref,Automatic match via bbref_id to Tyler Alexander +12413,Tyler Anderson,12,anderty01,68,tier1_bbref,Automatic match via bbref_id to Tyler Anderson +12414,Tyler Ferguson,12,ferguty01,604,tier1_bbref,Automatic match via bbref_id to Tyler Ferguson +12415,Tyler Fitzgerald,12,fitzgty01,620,tier1_bbref,Automatic match via bbref_id to Tyler Fitzgerald +12416,Tyler Freeman,12,freemty01,654,tier1_bbref,Automatic match via bbref_id to Tyler Freeman +12417,Tyler Glasnow,12,glasnty01,726,tier1_bbref,Automatic match via bbref_id to Tyler Glasnow +12418,Tyler Holton,12,holtoty01,922,tier1_bbref,Automatic match via bbref_id to Tyler Holton +12419,Tyler Kinley,12,kinlety01,1050,tier1_bbref,Automatic match via bbref_id to Tyler Kinley +12420,Tyler Nevin,12,nevinty01,1417,tier1_bbref,Automatic match via bbref_id to Tyler Nevin +12421,Tyler ONeill,12,oneilty01,1463,tier1_bbref,Automatic match via bbref_id to Tyler ONeill +12422,Tyler Phillips,12,phillty01,3249,manual_new,Manual assignment to new SbaPlayer: Tyler Phillips +12423,Tyler Rogers,12,rogerty01,1691,tier1_bbref,Automatic match via bbref_id to Tyler Rogers +12424,Tyler Soderstrom,12,soderty01,1864,tier1_bbref,Automatic match via bbref_id to Tyler Soderstrom +12425,Tyler Stephenson,12,stephty01,1905,tier1_bbref,Automatic match via bbref_id to Tyler Stephenson +12426,Tyler Wade,12,wadety01,2094,tier1_bbref,Automatic match via bbref_id to Tyler Wade +12427,Tylor Megill,12,megilty01,1295,tier1_bbref,Automatic match via bbref_id to Tylor Megill +12428,Tyrone Taylor,12,tayloty01,1965,tier1_bbref,Automatic match via bbref_id to Tyrone Taylor +12429,Tyson Miller,12,millety01,1324,tier1_bbref,Automatic match via bbref_id to Tyson Miller +12431,Vaughn Grissom,12,grissva01,777,tier1_bbref,Automatic match via bbref_id to Vaughn Grissom +12432,Victor Caratini,12,caratvi01,325,tier1_bbref,Automatic match via bbref_id to Victor Caratini +12433,Victor Gonzalez,12,gonzavi02,743,tier1_bbref,Automatic match via bbref_id to Victor Gonzalez +12434,Victor Robles,12,roblevi01,1666,tier1_bbref,Automatic match via bbref_id to Victor Robles +12435,Victor Scott,12,scottvi01,1790,tier1_bbref,Automatic match via bbref_id to Victor Scott +12436,Victor Vodnik,12,vodnivi01,2084,tier1_bbref,Automatic match via bbref_id to Victor Vodnik +12437,Vidal Brujan,12,brujavi01,272,tier1_bbref,Automatic match via bbref_id to Vidal Brujan +12438,Vinnie Pasquantino,12,pasquvi01,1503,tier1_bbref,Automatic match via bbref_id to Vinnie Pasquantino +12439,Vladimir Guerrero Jr,12,guerrvl02,789,tier1_bbref,Automatic match via bbref_id to Vladimir Guerrero Jr +12440,Walker Buehler,12,buehlwa01,277,tier1_bbref,Automatic match via bbref_id to Walker Buehler +12441,Wandy Peralta,12,peralwa01,1524,tier1_bbref,Automatic match via bbref_id to Wandy Peralta +12442,Wenceel Perez,12,perezwe01,1541,tier1_bbref,Automatic match via bbref_id to Wenceel Perez +12443,Weston Wilson,12,wilsowe01,2170,tier1_bbref,Automatic match via bbref_id to Weston Wilson +12444,Whit Merrifield,12,merriwh01,1309,tier1_bbref,Automatic match via bbref_id to Whit Merrifield +12445,Will Benson,12,bensowi01,179,tier1_bbref,Automatic match via bbref_id to Will Benson +12446,Will Brennan,12,brennwi02,250,tier1_bbref,Automatic match via bbref_id to Will Brennan +12447,Will D Smith,12,smithwi05,1841,tier1_bbref,Automatic match via bbref_id to Will Smith +12448,Will Smith,12,smithwi04,1843,tier1_bbref,Automatic match via bbref_id to Will Smith +12449,Will Vest,12,vestwi01,2074,tier1_bbref,Automatic match via bbref_id to Will Vest +12450,Will Wagner,12,wagnewi01,2097,tier1_bbref,Automatic match via bbref_id to Will Wagner +12451,Willi Castro,12,castrwi01,352,tier1_bbref,Automatic match via bbref_id to Willi Castro +12452,William Contreras,12,contrwi02,411,tier1_bbref,Automatic match via bbref_id to William Contreras +12453,Willie Calhoun,12,calhowi01,307,tier1_bbref,Automatic match via bbref_id to Willie Calhoun +12454,Willson Contreras,12,contrwi01,410,tier1_bbref,Automatic match via bbref_id to Willson Contreras +12455,Willy Adames,12,adamewi01,14,tier1_bbref,Automatic match via bbref_id to Willy Adames +12456,Wilmer Flores,12,florewi01,627,tier1_bbref,Automatic match via bbref_id to Wilmer Flores +12457,Wilyer Abreu,12,abreuwi02,10,tier1_bbref,Automatic match via bbref_id to Wilyer Abreu +12458,Wyatt Langford,12,langfwy01,1093,tier1_bbref,Automatic match via bbref_id to Wyatt Langford +12459,Xander Bogaerts,12,bogaexa01,216,tier1_bbref,Automatic match via bbref_id to Xander Bogaerts +12460,Xavier Edwards,12,edwarxa01,559,tier1_bbref,Automatic match via bbref_id to Xavier Edwards +12461,Xzavion Curry,12,curryxz01,454,tier1_bbref,Automatic match via bbref_id to Xzavion Curry +12462,Yainer Diaz,12,diazya02,511,tier1_bbref,Automatic match via bbref_id to Yainer Diaz +12463,Yan Gomes,12,gomesya01,731,tier1_bbref,Automatic match via bbref_id to Yan Gomes +12464,Yandy Diaz,12,diazya01,507,tier1_bbref,Automatic match via bbref_id to Yandy Diaz +12465,Yariel Rodriguez,12,rodriya01,1686,tier1_bbref,Automatic match via bbref_id to Yariel Rodriguez +12466,Yasmani Grandal,12,grandya01,761,tier1_bbref,Automatic match via bbref_id to Yasmani Grandal +12467,Yennier Cano,12,canoye01,320,tier1_bbref,Automatic match via bbref_id to Yennier Cano +12468,Yerry Rodriguez,12,rodriye01,1680,tier1_bbref,Automatic match via bbref_id to Yerry Rodriguez +12469,Yimi Garcia,12,garciyi01,680,tier1_bbref,Automatic match via bbref_id to Yimi Garcia +12470,Yohan Ramirez,12,ramiryo01,1611,tier1_bbref,Automatic match via bbref_id to Yohan Ramirez +12471,Yonny Chirinos,12,chiriyo01,374,tier1_bbref,Automatic match via bbref_id to Yonny Chirinos +12472,Yordan Alvarez,12,alvaryo01,61,tier1_bbref,Automatic match via bbref_id to Yordan Alvarez +12473,Yoshinobu Yamamoto,12,yamamyo01,2206,tier1_bbref,Automatic match via bbref_id to Yoshinobu Yamamoto +12474,Yu Darvish,12,darviyu01,462,tier1_bbref,Automatic match via bbref_id to Yu Darvish +12475,Yuki Matsui,12,matsuyu01,1241,tier1_bbref,Automatic match via bbref_id to Yuki Matsui +12476,Yuli Gurriel,12,gourryu01,793,tier1_bbref,Automatic match via bbref_id to Yuli Gurriel +12477,Yunior Marte,12,marteyu01,1211,tier1_bbref,Automatic match via bbref_id to Yunior Marte +12478,Yusei Kikuchi,12,kikucyu01,1040,tier1_bbref,Automatic match via bbref_id to Yusei Kikuchi +12479,Zac Gallen,12,galleza01,673,tier1_bbref,Automatic match via bbref_id to Zac Gallen +12480,Zach DeLoach,12,deloaza01,489,tier1_bbref,Automatic match via bbref_id to Zach DeLoach +12481,Zach Dezenzo,12,dezenza01,500,tier1_bbref,Automatic match via bbref_id to Zach Dezenzo +12482,Zach Eflin,12,eflinza01,562,tier1_bbref,Automatic match via bbref_id to Zach Eflin +12483,Zach McKinstry,12,mckinza01,1284,tier1_bbref,Automatic match via bbref_id to Zach McKinstry +12484,Zach Neto,12,netoza01,1414,tier1_bbref,Automatic match via bbref_id to Zach Neto +12485,Zach Pop,12,popza01,1575,tier1_bbref,Automatic match via bbref_id to Zach Pop +12486,Zack Gelof,12,gelofza01,709,tier1_bbref,Automatic match via bbref_id to Zack Gelof +12487,Zack Kelly,12,kellyza01,1024,tier1_bbref,Automatic match via bbref_id to Zack Kelly +12488,Zack Littell,12,litteza01,1127,tier1_bbref,Automatic match via bbref_id to Zack Littell +12489,Zack Short,12,shortza01,1818,tier1_bbref,Automatic match via bbref_id to Zack Short +12490,Zack Wheeler,12,wheelza01,2139,tier1_bbref,Automatic match via bbref_id to Zack Wheeler +12491,Zebby Matthews,12,matthze01,1242,tier1_bbref,Automatic match via bbref_id to Zebby Matthews +11928,Jo Adell,12,adelljo01,20,tier1_bbref,Automatic match via bbref_id to Jo Adell +11881,Jake Junis,12,junisja01,1004,tier1_bbref,Automatic match via bbref_id to Jakob Junis +11545,Blake Perkins,12,perkibl01,1543,tier1_bbref,Automatic match via bbref_id to Blake Perkins +12297,Ryan Fernandez,12,fernary01,608,tier1_bbref,Automatic match via bbref_id to Ryan Fernandez +12356,Steven Kwan,12,kwanst01,1080,tier1_bbref,Automatic match via bbref_id to Steven Kwan +11839,Hogan Harris,12,harriho03,826,tier1_bbref,Automatic match via bbref_id to Hogan Harris +11597,Bryan Woo,12,woobr01,2191,tier1_bbref,Automatic match via bbref_id to Bryan Woo +12012,JT Realmuto,12,realmjt01,1622,tier1_bbref,Automatic match via bbref_id to JT Realmuto +12146,Max Fried,12,friedma01,659,tier1_bbref,Automatic match via bbref_id to Max Fried +12262,Ramon Urias,12,uriasra01,2037,tier1_bbref,Automatic match via bbref_id to Ramon Urias +11982,Jose Caballero,12,cabaljo01,296,tier1_bbref,Automatic match via bbref_id to Jose Caballero +12194,Nathan Eovaldi,12,eovalna01,576,tier1_bbref,Automatic match via bbref_id to Nathan Eovaldi +11643,Chris Roycroft,12,roycrch01,1718,tier1_bbref,Automatic match via bbref_id to Chris Roycroft +12430,Valente Bellozo,12,bellova01,172,tier1_bbref,Automatic match via bbref_id to Valente Bellozo +12054,Kyle Bradish,12,bradiky01,235,tier1_bbref,Automatic match via bbref_id to Kyle Bradish +12328,Sean Manaea,12,manaese01,1189,tier1_bbref,Automatic match via bbref_id to Sean Manaea +11748,Edward Cabrera,12,cabreed02,302,tier1_bbref,Automatic match via bbref_id to Edward Cabrera +11665,Colin Holderman,12,holdeco01,913,tier1_bbref,Automatic match via bbref_id to Colin Holderman +12160,Michael Kopech,12,kopecmi01,1071,tier1_bbref,Automatic match via bbref_id to Michael Kopech diff --git a/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/player_sbaplayer_updates.sql b/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/player_sbaplayer_updates.sql new file mode 100644 index 0000000..ad29a89 --- /dev/null +++ b/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/player_sbaplayer_updates.sql @@ -0,0 +1,11252 @@ +-- Bulk update player.sbaplayer_id assignments +-- Generated from player-to-sbaplayer matching project +-- Total statements: 2254 +-- +-- IMPORTANT: Run these in a transaction for safety: +-- BEGIN; +-- +-- COMMIT; + +BEGIN; + +-- Statement 1 +UPDATE player +SET sbaplayer_id = 1336 +WHERE id IN (2014,2,1008,3594,4210,5494,6813,7262,8317,9362,10419,11477); + +-- Statement 2 +UPDATE player +SET sbaplayer_id = 570 +WHERE id IN (2013); + +-- Statement 3 +UPDATE player +SET sbaplayer_id = 1571 +WHERE id IN (2015,3,1009,3082,4516,5759,6294,7263,8318,10247,11303); + +-- Statement 4 +UPDATE player +SET sbaplayer_id = 55 +WHERE id IN (2016,4,1010); + +-- Statement 5 +UPDATE player +SET sbaplayer_id = 279 +WHERE id IN (2017,6,1012,3579,4434,5467,6753,7241,8296,9346,10403,11458); + +-- Statement 6 +UPDATE player +SET sbaplayer_id = 892 +WHERE id IN (2018,8,1014,3072,4587,6082,7118,7243,8298,9348,10405,11460); + +-- Statement 7 +UPDATE player +SET sbaplayer_id = 3 +WHERE id IN (2019,9,1015,3073,4207,5719,6242,7244,8299,9349,10406,11461); + +-- Statement 8 +UPDATE player +SET sbaplayer_id = 1433 +WHERE id IN (2020,10,1016,3582,4204,5330,6560,7246,8301,9351,10408,11462); + +-- Statement 9 +UPDATE player +SET sbaplayer_id = 1745 +WHERE id IN (2021,11,1017,5225,6377,7247,8302); + +-- Statement 10 +UPDATE player +SET sbaplayer_id = 49 +WHERE id IN (2022,6130,7165); + +-- Statement 11 +UPDATE player +SET sbaplayer_id = 1349 +WHERE id IN (2023,14,1020,3075,4483,5922,6592); + +-- Statement 12 +UPDATE player +SET sbaplayer_id = 409 +WHERE id IN (2024,16,1022); + +-- Statement 13 +UPDATE player +SET sbaplayer_id = 553 +WHERE id IN (2025,17,1023,3076,4544,5825,6392,7250,8305,9353,10410,11466); + +-- Statement 14 +UPDATE player +SET sbaplayer_id = 556 +WHERE id IN (2026,18,1024,3077,4775,6139,7174); + +-- Statement 15 +UPDATE player +SET sbaplayer_id = 574 +WHERE id IN (2027,19,1025,3078,4448,5702,6217,7251,8306); + +-- Statement 16 +UPDATE player +SET sbaplayer_id = 648 +WHERE id IN (2028,20,1026,3079,4603,5791,6343,7252,8307,9354,10411,11467); + +-- Statement 17 +UPDATE player +SET sbaplayer_id = 989 +WHERE id IN (2029,22,1028); + +-- Statement 18 +UPDATE player +SET sbaplayer_id = 1069 +WHERE id IN (2030,23,1029,3585,4388); + +-- Statement 19 +UPDATE player +SET sbaplayer_id = 1368 +WHERE id IN (2031,24,1030,3586,4717,5642,7016); + +-- Statement 20 +UPDATE player +SET sbaplayer_id = 1475 +WHERE id IN (2032,25,1031,3587,4777,5445,6779,7254,8309,9355,10412,11470); + +-- Statement 21 +UPDATE player +SET sbaplayer_id = 2118 +WHERE id IN (2033,28,1034); + +-- Statement 22 +UPDATE player +SET sbaplayer_id = 1624 +WHERE id IN (2034); + +-- Statement 23 +UPDATE player +SET sbaplayer_id = 1728 +WHERE id IN (2035,29,1035); + +-- Statement 24 +UPDATE player +SET sbaplayer_id = 847 +WHERE id IN (2036,30,1036,3081,4778); + +-- Statement 25 +UPDATE player +SET sbaplayer_id = 174 +WHERE id IN (2037); + +-- Statement 26 +UPDATE player +SET sbaplayer_id = 738 +WHERE id IN (2038); + +-- Statement 27 +UPDATE player +SET sbaplayer_id = 51 +WHERE id IN (2039,33,1039,3083,4781,7268,8323); + +-- Statement 28 +UPDATE player +SET sbaplayer_id = 1591 +WHERE id IN (2040,34,1040,3084,4782,6037,7073,7269,8324); + +-- Statement 29 +UPDATE player +SET sbaplayer_id = 580 +WHERE id IN (2041,5865,6465,7270,8325); + +-- Statement 30 +UPDATE player +SET sbaplayer_id = 505 +WHERE id IN (2042,36,1042,3086,4690,5843,6578,7272,8327,9370,10427); + +-- Statement 31 +UPDATE player +SET sbaplayer_id = 819 +WHERE id IN (2043); + +-- Statement 32 +UPDATE player +SET sbaplayer_id = 104 +WHERE id IN (2044,37,1043,3088,4369,5789,6509); + +-- Statement 33 +UPDATE player +SET sbaplayer_id = 210 +WHERE id IN (2045,6147,7182); + +-- Statement 34 +UPDATE player +SET sbaplayer_id = 248 +WHERE id IN (2046,38,1044,3089,4437,5838,6416,7277,8332,9374,10431,11487); + +-- Statement 35 +UPDATE player +SET sbaplayer_id = 387 +WHERE id IN (2047,39,1045,3596,4742,5562,6936); + +-- Statement 36 +UPDATE player +SET sbaplayer_id = 394 +WHERE id IN (2048,3597,4409,5264,6457,7279,8334,9376,10433); + +-- Statement 37 +UPDATE player +SET sbaplayer_id = 404 +WHERE id IN (2049,40,1046,3598,4296,5564,6938,7280,8335); + +-- Statement 38 +UPDATE player +SET sbaplayer_id = 751 +WHERE id IN (2050,42,1048,3091,4764); + +-- Statement 39 +UPDATE player +SET sbaplayer_id = 2168 +WHERE id IN (2051); + +-- Statement 40 +UPDATE player +SET sbaplayer_id = 2193 +WHERE id IN (2052,45,1051,3600,4784,5348,6585,7286,8341,9382,10439,11494); + +-- Statement 41 +UPDATE player +SET sbaplayer_id = 1711 +WHERE id IN (2053,47,1053,3093,4786,5908,6693,7290,8345,9386,10443,11498); + +-- Statement 42 +UPDATE player +SET sbaplayer_id = 698 +WHERE id IN (2054,48,1054,3602,4488,5589,6963,7291,8346,10251,11307); + +-- Statement 43 +UPDATE player +SET sbaplayer_id = 1825 +WHERE id IN (2055,49,1055,3095,4534,5906,6557,7293,8348); + +-- Statement 44 +UPDATE player +SET sbaplayer_id = 177 +WHERE id IN (2056,50,1056,3097,4787,5871,6473,7298,8353,9393,10450,11504); + +-- Statement 45 +UPDATE player +SET sbaplayer_id = 336 +WHERE id IN (2057,51,1057); + +-- Statement 46 +UPDATE player +SET sbaplayer_id = 363 +WHERE id IN (2058,52,1058,3604,4788,5231,6315,7299,8354,9394,10451,11505); + +-- Statement 47 +UPDATE player +SET sbaplayer_id = 843 +WHERE id IN (2059,53,1059,3605,4395,5521,6881,7300,8355,9395,10452,11506); + +-- Statement 48 +UPDATE player +SET sbaplayer_id = 1062 +WHERE id IN (2060,55,1061,3098,4283,6206,7238); + +-- Statement 49 +UPDATE player +SET sbaplayer_id = 1272 +WHERE id IN (2061,56,1062,3100,4790,5940,6653,7303,8358,9397,10454,11509); + +-- Statement 50 +UPDATE player +SET sbaplayer_id = 1320 +WHERE id IN (2062,57,1063,3607,4631,5638,7012); + +-- Statement 51 +UPDATE player +SET sbaplayer_id = 1703 +WHERE id IN (2063,6184,7217); + +-- Statement 52 +UPDATE player +SET sbaplayer_id = 1906 +WHERE id IN (2064,3101,4128,6025,6895); + +-- Statement 53 +UPDATE player +SET sbaplayer_id = 1935 +WHERE id IN (2065,58,1064,3608,4442,10254,11310); + +-- Statement 54 +UPDATE player +SET sbaplayer_id = 1743 +WHERE id IN (2066,59,1065,3610,4760,7308,8363); + +-- Statement 55 +UPDATE player +SET sbaplayer_id = 493 +WHERE id IN (2067,61,1067,3613,4795,5218,6340,9407,10463); + +-- Statement 56 +UPDATE player +SET sbaplayer_id = 1630 +WHERE id IN (2068,62,1068,3106,4232,6126,7161,7314,8369,10257,11313,11521); + +-- Statement 57 +UPDATE player +SET sbaplayer_id = 1658 +WHERE id IN (2069,63,1069,3107,4525,5923,6593,7315,8370,9408,10464,11522); + +-- Statement 58 +UPDATE player +SET sbaplayer_id = 1950 +WHERE id IN (2070,65,1071); + +-- Statement 59 +UPDATE player +SET sbaplayer_id = 1801 +WHERE id IN (2071,66,1072,3616,4151,5354,6681,7317,8372); + +-- Statement 60 +UPDATE player +SET sbaplayer_id = 236 +WHERE id IN (2072,67,1073,3617,4489,5433,6768); + +-- Statement 61 +UPDATE player +SET sbaplayer_id = 1005 +WHERE id IN (2073,68,1074); + +-- Statement 62 +UPDATE player +SET sbaplayer_id = 2083 +WHERE id IN (2074); + +-- Statement 63 +UPDATE player +SET sbaplayer_id = 366 +WHERE id IN (2075,70,1076,3618,4410,5324,6489,7320,8375,9411,10467,11525); + +-- Statement 64 +UPDATE player +SET sbaplayer_id = 299 +WHERE id IN (2076,71,1077,3110,4739,5995,6840); + +-- Statement 65 +UPDATE player +SET sbaplayer_id = 132 +WHERE id IN (2077,75,1081,3112,4349,5966,6799,7322,8377,9413,10469,11527); + +-- Statement 66 +UPDATE player +SET sbaplayer_id = 730 +WHERE id IN (2078,3623,4389,5434,6709,7324,8379,9415,10471,11528); + +-- Statement 67 +UPDATE player +SET sbaplayer_id = 848 +WHERE id IN (2079,79,1085,3114,4802,6131,7166,7326,8381,10258,11314,11530); + +-- Statement 68 +UPDATE player +SET sbaplayer_id = 958 +WHERE id IN (2080); + +-- Statement 69 +UPDATE player +SET sbaplayer_id = 1588 +WHERE id IN (2081,82,1088,7329,8384,9417,10473); + +-- Statement 70 +UPDATE player +SET sbaplayer_id = 1704 +WHERE id IN (2082,84,1090,3118,4804,6038,7074,7331,8386); + +-- Statement 71 +UPDATE player +SET sbaplayer_id = 1838 +WHERE id IN (2083,85,1091,3119,4208,5864,6610,7332,8387,9419,10475,11533); + +-- Statement 72 +UPDATE player +SET sbaplayer_id = 2202 +WHERE id IN (2084,87,1093,6094,7129,7334,8389,9422,10478); + +-- Statement 73 +UPDATE player +SET sbaplayer_id = 678 +WHERE id IN (2085,88,1094,3120,4805,5820,6386,7335,8390,10260,11316); + +-- Statement 74 +UPDATE player +SET sbaplayer_id = 405 +WHERE id IN (2086); + +-- Statement 75 +UPDATE player +SET sbaplayer_id = 676 +WHERE id IN (2087,89,1095,3122,4807,6043,7079,7339,8394,11540); + +-- Statement 76 +UPDATE player +SET sbaplayer_id = 2232 +WHERE id IN (2088,90,1096); + +-- Statement 77 +UPDATE player +SET sbaplayer_id = 810 +WHERE id IN (2089,91,1097,3123,4808,5919,6588); + +-- Statement 78 +UPDATE player +SET sbaplayer_id = 1283 +WHERE id IN (2090,92,1098,6032,6889,10262,11318); + +-- Statement 79 +UPDATE player +SET sbaplayer_id = 822 +WHERE id IN (2091,93,1099); + +-- Statement 80 +UPDATE player +SET sbaplayer_id = 1499 +WHERE id IN (2092,94,1100,3626,4377,5373,6692); + +-- Statement 81 +UPDATE player +SET sbaplayer_id = 1861 +WHERE id IN (2093,95,1101,3627,4338,5365,6606,7341,8396,9428,10484,11546); + +-- Statement 82 +UPDATE player +SET sbaplayer_id = 1952 +WHERE id IN (2094,96,1102); + +-- Statement 83 +UPDATE player +SET sbaplayer_id = 2011 +WHERE id IN (2095,97,1103,3629,4809,5278,6411,11547); + +-- Statement 84 +UPDATE player +SET sbaplayer_id = 2166 +WHERE id IN (2096); + +-- Statement 85 +UPDATE player +SET sbaplayer_id = 229 +WHERE id IN (2097,99,1105,3630,4548,5396,6617,7346,8401,10265,11321); + +-- Statement 86 +UPDATE player +SET sbaplayer_id = 232 +WHERE id IN (2098,100,1106,3631,4810,5552,6926); + +-- Statement 87 +UPDATE player +SET sbaplayer_id = 816 +WHERE id IN (2099,101,1107,3632,4449,5597,6971,7347,8402,9433,10489); + +-- Statement 88 +UPDATE player +SET sbaplayer_id = 1016 +WHERE id IN (2100,102,1108,3633,4199,5610,6984,7348,8403,9434,10490,11556); + +-- Statement 89 +UPDATE player +SET sbaplayer_id = 1510 +WHERE id IN (2101,104,1110); + +-- Statement 90 +UPDATE player +SET sbaplayer_id = 2226 +WHERE id IN (2102); + +-- Statement 91 +UPDATE player +SET sbaplayer_id = 173 +WHERE id IN (2103,107,1113,3129,4159,5761,6299,7352,8407,9436,10492); + +-- Statement 92 +UPDATE player +SET sbaplayer_id = 430 +WHERE id IN (2104,109,1115,3130,4289,5705,6220,7353,8408,9438,10494,11561); + +-- Statement 93 +UPDATE player +SET sbaplayer_id = 520 +WHERE id IN (2105,110,1116,9439,10495); + +-- Statement 94 +UPDATE player +SET sbaplayer_id = 798 +WHERE id IN (2106); + +-- Statement 95 +UPDATE player +SET sbaplayer_id = 1052 +WHERE id IN (2107,112,1118,3639,4258,5615,6989); + +-- Statement 96 +UPDATE player +SET sbaplayer_id = 1246 +WHERE id IN (2108); + +-- Statement 97 +UPDATE player +SET sbaplayer_id = 1263 +WHERE id IN (2109); + +-- Statement 98 +UPDATE player +SET sbaplayer_id = 1374 +WHERE id IN (2110); + +-- Statement 99 +UPDATE player +SET sbaplayer_id = 1425 +WHERE id IN (2111,114,1120,3133,4273,5721,6243,7358,8413,9443,10499,11565); + +-- Statement 100 +UPDATE player +SET sbaplayer_id = 1943 +WHERE id IN (2112,119,1125,3644,4526,5444,6774,7364,8419,9455,10511,11578); + +-- Statement 101 +UPDATE player +SET sbaplayer_id = 66 +WHERE id IN (2113,120,1126,3645,4532,5530,6904); + +-- Statement 102 +UPDATE player +SET sbaplayer_id = 357 +WHERE id IN (2114); + +-- Statement 103 +UPDATE player +SET sbaplayer_id = 695 +WHERE id IN (2115,121,1127,3136,4506,5946,6677); + +-- Statement 104 +UPDATE player +SET sbaplayer_id = 1555 +WHERE id IN (2116,123,1129,3137,4458,5741,6269,7366,8421,10270,11326); + +-- Statement 105 +UPDATE player +SET sbaplayer_id = 69 +WHERE id IN (2117,124,1130,3138,4239,5852,6590,7367,8422,9458,10514); + +-- Statement 106 +UPDATE player +SET sbaplayer_id = 532 +WHERE id IN (2118,125,1131,3139,4817); + +-- Statement 107 +UPDATE player +SET sbaplayer_id = 631 +WHERE id IN (2119,126,1132); + +-- Statement 108 +UPDATE player +SET sbaplayer_id = 986 +WHERE id IN (2120,128,1134); + +-- Statement 109 +UPDATE player +SET sbaplayer_id = 1260 +WHERE id IN (2121,129,1135); + +-- Statement 110 +UPDATE player +SET sbaplayer_id = 921 +WHERE id IN (2122,131,1137,3141,4820,6029,6900); + +-- Statement 111 +UPDATE player +SET sbaplayer_id = 911 +WHERE id IN (2123,133,1139,3142,4821); + +-- Statement 112 +UPDATE player +SET sbaplayer_id = 1339 +WHERE id IN (2124); + +-- Statement 113 +UPDATE player +SET sbaplayer_id = 1808 +WHERE id IN (2125,135,1141,5400,6724,7377,8432,9469,10525); + +-- Statement 114 +UPDATE player +SET sbaplayer_id = 823 +WHERE id IN (2126,136,1142,3144,4287,5714,6235,7379,8434,9472,10528,11599); + +-- Statement 115 +UPDATE player +SET sbaplayer_id = 597 +WHERE id IN (2127,138,1144,3652,4643,5581,6955,7383,8438,9476,10532,11605); + +-- Statement 116 +UPDATE player +SET sbaplayer_id = 1438 +WHERE id IN (2128); + +-- Statement 117 +UPDATE player +SET sbaplayer_id = 1844 +WHERE id IN (2129,3653,4247,5666,7040,11606); + +-- Statement 118 +UPDATE player +SET sbaplayer_id = 1578 +WHERE id IN (2130,140,1146,5745,6281); + +-- Statement 119 +UPDATE player +SET sbaplayer_id = 441 +WHERE id IN (2131,142,1148,3170,4419,5795,6345,7432,8487,9521,10577); + +-- Statement 120 +UPDATE player +SET sbaplayer_id = 996 +WHERE id IN (2132); + +-- Statement 121 +UPDATE player +SET sbaplayer_id = 1845 +WHERE id IN (2133,145,1151,3657,4310,5449,6732,7390,8445); + +-- Statement 122 +UPDATE player +SET sbaplayer_id = 163 +WHERE id IN (2134,146,1152,3659,4328); + +-- Statement 123 +UPDATE player +SET sbaplayer_id = 670 +WHERE id IN (2135,147,1153,3147,4195,5883,6651,9483,10539); + +-- Statement 124 +UPDATE player +SET sbaplayer_id = 560 +WHERE id IN (2136,7395,8450,9485,10541); + +-- Statement 125 +UPDATE player +SET sbaplayer_id = 102 +WHERE id IN (2137); + +-- Statement 126 +UPDATE player +SET sbaplayer_id = 331 +WHERE id IN (2138,149,1155,3661,4305,5558,6932,7396,8451,9486,10542,11617); + +-- Statement 127 +UPDATE player +SET sbaplayer_id = 420 +WHERE id IN (2139,150,1156,3149,4271,5704,6219,7397,8452,9487,10543,11618); + +-- Statement 128 +UPDATE player +SET sbaplayer_id = 732 +WHERE id IN (2140,152,1158); + +-- Statement 129 +UPDATE player +SET sbaplayer_id = 740 +WHERE id IN (2141,153,1159); + +-- Statement 130 +UPDATE player +SET sbaplayer_id = 1223 +WHERE id IN (2142,154,1160,3664,4827,5631,7005); + +-- Statement 131 +UPDATE player +SET sbaplayer_id = 1670 +WHERE id IN (2143,155,1161,3665,4828,5179,6240,7400,8455,9491,10547,11621); + +-- Statement 132 +UPDATE player +SET sbaplayer_id = 1759 +WHERE id IN (2144,156,1162,3150,4564,6089,7124,7401,8456,9492,10548,11622); + +-- Statement 133 +UPDATE player +SET sbaplayer_id = 1993 +WHERE id IN (2145); + +-- Statement 134 +UPDATE player +SET sbaplayer_id = 1734 +WHERE id IN (2146,161,1167); + +-- Statement 135 +UPDATE player +SET sbaplayer_id = 1381 +WHERE id IN (2147,162,1168,3154,4592,5736,6262,7404,8459,9498,10554,11631); + +-- Statement 136 +UPDATE player +SET sbaplayer_id = 870 +WHERE id IN (2148,163,1169,3155,4342,6020,6853,7405,8460); + +-- Statement 137 +UPDATE player +SET sbaplayer_id = 186 +WHERE id IN (2149,165,1171); + +-- Statement 138 +UPDATE player +SET sbaplayer_id = 768 +WHERE id IN (2150,166,1172,3670,4628,5224,6296,11632); + +-- Statement 139 +UPDATE player +SET sbaplayer_id = 1078 +WHERE id IN (2151,3671,4832,5523,6902,7406,8461,9499,10555,11633); + +-- Statement 140 +UPDATE player +SET sbaplayer_id = 1559 +WHERE id IN (2152,167,1173,3156,4589,6014,6822,7407,8462); + +-- Statement 141 +UPDATE player +SET sbaplayer_id = 1831 +WHERE id IN (2153,169,1175,3159,4693,6204,7237); + +-- Statement 142 +UPDATE player +SET sbaplayer_id = 205 +WHERE id IN (2154,170,1176,3160,4594,5968,6714,7409,8464,9501,10557,11634); + +-- Statement 143 +UPDATE player +SET sbaplayer_id = 453 +WHERE id IN (2155,171,1177,5896,6525,7410,8465); + +-- Statement 144 +UPDATE player +SET sbaplayer_id = 1375 +WHERE id IN (2156,172,1178,3673,4714,5228,6310,7411,8466,9502,10558,11635); + +-- Statement 145 +UPDATE player +SET sbaplayer_id = 1991 +WHERE id IN (2157,173,1179); + +-- Statement 146 +UPDATE player +SET sbaplayer_id = 67 +WHERE id IN (2158,174,1180,3674,4835,5540,6914,7413,8468,9504,10560,11637); + +-- Statement 147 +UPDATE player +SET sbaplayer_id = 2043 +WHERE id IN (2159); + +-- Statement 148 +UPDATE player +SET sbaplayer_id = 234 +WHERE id IN (2160); + +-- Statement 149 +UPDATE player +SET sbaplayer_id = 1688 +WHERE id IN (2161,175,1181,3677,4435); + +-- Statement 150 +UPDATE player +SET sbaplayer_id = 85 +WHERE id IN (2162,178,1184,7417,8472); + +-- Statement 151 +UPDATE player +SET sbaplayer_id = 467 +WHERE id IN (2163,180,1186,3161,4837); + +-- Statement 152 +UPDATE player +SET sbaplayer_id = 498 +WHERE id IN (2164,181,1187,10279,11335,11639); + +-- Statement 153 +UPDATE player +SET sbaplayer_id = 887 +WHERE id IN (2165,182,1188); + +-- Statement 154 +UPDATE player +SET sbaplayer_id = 947 +WHERE id IN (2166,183,1189); + +-- Statement 155 +UPDATE player +SET sbaplayer_id = 1214 +WHERE id IN (2167,184,1190,3680,4171,5463,6815,7420,8475,9508,10564,11641); + +-- Statement 156 +UPDATE player +SET sbaplayer_id = 1480 +WHERE id IN (2168,185,1191,3162,4495); + +-- Statement 157 +UPDATE player +SET sbaplayer_id = 1727 +WHERE id IN (2169); + +-- Statement 158 +UPDATE player +SET sbaplayer_id = 1739 +WHERE id IN (2170,187,1193,5222,6359,9510,10566,11644); + +-- Statement 159 +UPDATE player +SET sbaplayer_id = 1922 +WHERE id IN (2171,188,1194,3683,4838,5358,6540,7421,8476,9511,10567,11645); + +-- Statement 160 +UPDATE player +SET sbaplayer_id = 1964 +WHERE id IN (2172,189,1195,3163,4202,5872,6474,7422,8477,9512,10568,11646); + +-- Statement 161 +UPDATE player +SET sbaplayer_id = 2089 +WHERE id IN (2173); + +-- Statement 162 +UPDATE player +SET sbaplayer_id = 2063 +WHERE id IN (2174,190,1196,3166,4480,5953,6691,7425,8480,9515,10571,11650); + +-- Statement 163 +UPDATE player +SET sbaplayer_id = 2078 +WHERE id IN (2175); + +-- Statement 164 +UPDATE player +SET sbaplayer_id = 2212 +WHERE id IN (2176,192,1198,3168,4665,5938,6646,7427,8482,9517,10573,11652); + +-- Statement 165 +UPDATE player +SET sbaplayer_id = 275 +WHERE id IN (2177,194,1200); + +-- Statement 166 +UPDATE player +SET sbaplayer_id = 1034 +WHERE id IN (2178,196,1202,3685,4228,5276,6410,7435,8490,9524,10580,11659); + +-- Statement 167 +UPDATE player +SET sbaplayer_id = 1644 +WHERE id IN (2179,197,1203); + +-- Statement 168 +UPDATE player +SET sbaplayer_id = 43 +WHERE id IN (2180); + +-- Statement 169 +UPDATE player +SET sbaplayer_id = 170 +WHERE id IN (2181,199,1205,3172,4334,6164,7199,7436,8491,9525,10581,11660); + +-- Statement 170 +UPDATE player +SET sbaplayer_id = 1625 +WHERE id IN (2182,3688,4841); + +-- Statement 171 +UPDATE player +SET sbaplayer_id = 809 +WHERE id IN (2183,201,1207); + +-- Statement 172 +UPDATE player +SET sbaplayer_id = 1360 +WHERE id IN (2184,204,1210,3174,4613,6148,7183,7445,8500); + +-- Statement 173 +UPDATE player +SET sbaplayer_id = 1278 +WHERE id IN (2185,206,1212,5219,6341,7447,8502,9533,10589); + +-- Statement 174 +UPDATE player +SET sbaplayer_id = 286 +WHERE id IN (2186,209,1215,3695,4175,5185,6226,7454,8509,9538,10594,11676); + +-- Statement 175 +UPDATE player +SET sbaplayer_id = 513 +WHERE id IN (2187,210,1216,3175,4740,6015,6868,7456,8511,10288,11344); + +-- Statement 176 +UPDATE player +SET sbaplayer_id = 1060 +WHERE id IN (2188,211,1217,5315,6614,7457,8512,10289,11345); + +-- Statement 177 +UPDATE player +SET sbaplayer_id = 1063 +WHERE id IN (2189,3696,4845,5317,6481,7458,8513); + +-- Statement 178 +UPDATE player +SET sbaplayer_id = 1472 +WHERE id IN (2190,3697,4670); + +-- Statement 179 +UPDATE player +SET sbaplayer_id = 1883 +WHERE id IN (2191,214,1220); + +-- Statement 180 +UPDATE player +SET sbaplayer_id = 711 +WHERE id IN (2192); + +-- Statement 181 +UPDATE player +SET sbaplayer_id = 1043 +WHERE id IN (2193,215,1221,3698,4846,5233,6317,7461,8516,9543,10599,11680); + +-- Statement 182 +UPDATE player +SET sbaplayer_id = 1891 +WHERE id IN (2194,216,1222,3699,4847,5397,6618,7462,8517); + +-- Statement 183 +UPDATE player +SET sbaplayer_id = 334 +WHERE id IN (2195,217,1223,3177,4450,5916,6705,7466,8521,9547,10603,11684); + +-- Statement 184 +UPDATE player +SET sbaplayer_id = 1035 +WHERE id IN (2196,220,1226,3704,4189,5613,6987,7468,8523,10291,11347); + +-- Statement 185 +UPDATE player +SET sbaplayer_id = 977 +WHERE id IN (2197); + +-- Statement 186 +UPDATE player +SET sbaplayer_id = 1474 +WHERE id IN (2198,221,1227); + +-- Statement 187 +UPDATE player +SET sbaplayer_id = 1919 +WHERE id IN (2199,222,1228); + +-- Statement 188 +UPDATE player +SET sbaplayer_id = 2178 +WHERE id IN (2200,3706,4678,5688,7062); + +-- Statement 189 +UPDATE player +SET sbaplayer_id = 492 +WHERE id IN (2201,223,1229); + +-- Statement 190 +UPDATE player +SET sbaplayer_id = 1305 +WHERE id IN (2202,225,1231,3711,4518); + +-- Statement 191 +UPDATE player +SET sbaplayer_id = 1387 +WHERE id IN (2203,226,1232,3178,4852); + +-- Statement 192 +UPDATE player +SET sbaplayer_id = 1439 +WHERE id IN (2204,227,1233,3712,4426,5645,7019,7475,8530); + +-- Statement 193 +UPDATE player +SET sbaplayer_id = 1491 +WHERE id IN (2205,228,1234); + +-- Statement 194 +UPDATE player +SET sbaplayer_id = 1663 +WHERE id IN (2206,230,1236,3179,4854,6167,7202); + +-- Statement 195 +UPDATE player +SET sbaplayer_id = 1932 +WHERE id IN (2207,231,1237); + +-- Statement 196 +UPDATE player +SET sbaplayer_id = 130 +WHERE id IN (2208); + +-- Statement 197 +UPDATE player +SET sbaplayer_id = 541 +WHERE id IN (2209,233,1239,3714,4691,5182,6413); + +-- Statement 198 +UPDATE player +SET sbaplayer_id = 969 +WHERE id IN (2210,234,1240,3181,4528,5788,6339,7476,8531,9557,10613,11695); + +-- Statement 199 +UPDATE player +SET sbaplayer_id = 2050 +WHERE id IN (2211); + +-- Statement 200 +UPDATE player +SET sbaplayer_id = 1947 +WHERE id IN (2212,236,1242,3184,4179,5925,6596,7478,8533,9558,10614,11698); + +-- Statement 201 +UPDATE player +SET sbaplayer_id = 224 +WHERE id IN (2213,239,1245,3187,4758,6095,7130,7487,8542); + +-- Statement 202 +UPDATE player +SET sbaplayer_id = 457 +WHERE id IN (2214,240,1246,3188,4858,6173,7207,11704); + +-- Statement 203 +UPDATE player +SET sbaplayer_id = 624 +WHERE id IN (2215,241,1247,3189,4285,5928,6621,7488,8543,9563,10619); + +-- Statement 204 +UPDATE player +SET sbaplayer_id = 655 +WHERE id IN (2216,242,1248); + +-- Statement 205 +UPDATE player +SET sbaplayer_id = 656 +WHERE id IN (2217); + +-- Statement 206 +UPDATE player +SET sbaplayer_id = 868 +WHERE id IN (2218,244,1250); + +-- Statement 207 +UPDATE player +SET sbaplayer_id = 889 +WHERE id IN (2219,245,1251); + +-- Statement 208 +UPDATE player +SET sbaplayer_id = 1522 +WHERE id IN (2220,247,1253,3190,4624,5951,6775,7490,8544,9566,10622,11708); + +-- Statement 209 +UPDATE player +SET sbaplayer_id = 1585 +WHERE id IN (2221,249,1255,5456,6713,7493,8547); + +-- Statement 210 +UPDATE player +SET sbaplayer_id = 1662 +WHERE id IN (2222,7494,8548,9568,10624,11710); + +-- Statement 211 +UPDATE player +SET sbaplayer_id = 1920 +WHERE id IN (2223,251,1257,3192,4860,7499,8553); + +-- Statement 212 +UPDATE player +SET sbaplayer_id = 494 +WHERE id IN (2224,252,1258,3193,4861); + +-- Statement 213 +UPDATE player +SET sbaplayer_id = 184 +WHERE id IN (2225,3722,4862); + +-- Statement 214 +UPDATE player +SET sbaplayer_id = 1882 +WHERE id IN (2226); + +-- Statement 215 +UPDATE player +SET sbaplayer_id = 1676 +WHERE id IN (2227,253,1259); + +-- Statement 216 +UPDATE player +SET sbaplayer_id = 515 +WHERE id IN (2228,254,1260,3194,4629); + +-- Statement 217 +UPDATE player +SET sbaplayer_id = 914 +WHERE id IN (2229,256,1262,3725,4866,5519,6890); + +-- Statement 218 +UPDATE player +SET sbaplayer_id = 1313 +WHERE id IN (2230); + +-- Statement 219 +UPDATE player +SET sbaplayer_id = 2009 +WHERE id IN (2231); + +-- Statement 220 +UPDATE player +SET sbaplayer_id = 639 +WHERE id IN (2232,259,1265,3196,4868); + +-- Statement 221 +UPDATE player +SET sbaplayer_id = 772 +WHERE id IN (2233,260,1266,3197,4461,6136,7171,7505,8559); + +-- -- Statement 222 +-- UPDATE player +-- SET sbaplayer_id = 3235 +-- WHERE id IN (2234,261,1267,3728,4277); + +-- Statement 223 +UPDATE player +SET sbaplayer_id = 1174 +WHERE id IN (2235); + +-- Statement 224 +UPDATE player +SET sbaplayer_id = 1114 +WHERE id IN (2236,264,1270,3198,4138,5945,6673,7510,8564,9573,10629,11725); + +-- Statement 225 +UPDATE player +SET sbaplayer_id = 713 +WHERE id IN (2237,266,1272,5367,6690,7512,8566,9575,10631); + +-- Statement 226 +UPDATE player +SET sbaplayer_id = 1761 +WHERE id IN (2238,267,1273,3200,4869); + +-- Statement 227 +UPDATE player +SET sbaplayer_id = 1849 +WHERE id IN (2239,269,1275,3201,4211,6064,7100,7514,8568,9577,10633,11730); + +-- Statement 228 +UPDATE player +SET sbaplayer_id = 619 +WHERE id IN (2240); + +-- Statement 229 +UPDATE player +SET sbaplayer_id = 1416 +WHERE id IN (2241,3732,4871); + +-- Statement 230 +UPDATE player +SET sbaplayer_id = 1572 +WHERE id IN (2242,271,1277,3733,4221,5318,6626); + +-- Statement 231 +UPDATE player +SET sbaplayer_id = 1720 +WHERE id IN (2243); + +-- Statement 232 +UPDATE player +SET sbaplayer_id = 1898 +WHERE id IN (2244,5254,6369); + +-- Statement 233 +UPDATE player +SET sbaplayer_id = 2070 +WHERE id IN (2245,273,1279,9582,10638); + +-- Statement 234 +UPDATE player +SET sbaplayer_id = 640 +WHERE id IN (2246); + +-- Statement 235 +UPDATE player +SET sbaplayer_id = 280 +WHERE id IN (2247,277,1283,3739,4242,5554,6928,7524,8578); + +-- Statement 236 +UPDATE player +SET sbaplayer_id = 425 +WHERE id IN (2248,279,1285,3741,4879,9588,10644); + +-- Statement 237 +UPDATE player +SET sbaplayer_id = 629 +WHERE id IN (2249,280,1286,3742,4568,5342,6520,7528,8582,9589,10645,11739); + +-- Statement 238 +UPDATE player +SET sbaplayer_id = 291 +WHERE id IN (2250); + +-- Statement 239 +UPDATE player +SET sbaplayer_id = 1710 +WHERE id IN (2251,282,1288,3208,4481,5931,6726,7531,8585,9592,10648,11742); + +-- Statement 240 +UPDATE player +SET sbaplayer_id = 1763 +WHERE id IN (2252,5424,6660); + +-- Statement 241 +UPDATE player +SET sbaplayer_id = 581 +WHERE id IN (2253,284,1290,3210,4881,5884,6499,7533,8587,9595,10651); + +-- Statement 242 +UPDATE player +SET sbaplayer_id = 1442 +WHERE id IN (2254,285,1291); + +-- Statement 243 +UPDATE player +SET sbaplayer_id = 1675 +WHERE id IN (2255,286,1292,5339,6574,7534,8588,9596,10652,11746); + +-- Statement 244 +UPDATE player +SET sbaplayer_id = 1613 +WHERE id IN (2256); + +-- Statement 245 +UPDATE player +SET sbaplayer_id = 503 +WHERE id IN (2257,287,1293,3743,4243,5409,6639,7537,8591,11750); + +-- Statement 246 +UPDATE player +SET sbaplayer_id = 571 +WHERE id IN (2258,288,1294,3212,4883); + +-- Statement 247 +UPDATE player +SET sbaplayer_id = 957 +WHERE id IN (2259,289,1295); + +-- Statement 248 +UPDATE player +SET sbaplayer_id = 22 +WHERE id IN (2260,290,1296,3214,4735,5982,6757,7539,8593); + +-- Statement 249 +UPDATE player +SET sbaplayer_id = 502 +WHERE id IN (2261,291,1297,3216,4885,5809,6368,7543,8597,9601,10657,11754); + +-- Statement 250 +UPDATE player +SET sbaplayer_id = 874 +WHERE id IN (2262,292,1298,3744,4335,5382,6742,7544,8598); + +-- Statement 251 +UPDATE player +SET sbaplayer_id = 77 +WHERE id IN (2513,294,1300,3218,4886,6000,6844,7547,8601,9604,10660); + +-- Statement 252 +UPDATE player +SET sbaplayer_id = 1484 +WHERE id IN (2514,296,1302,3745,4751,5648,7022,7548,8602,9606,10662,11759); + +-- Statement 253 +UPDATE player +SET sbaplayer_id = 952 +WHERE id IN (2515,297,1303,3219,4887,6115,7150); + +-- Statement 254 +UPDATE player +SET sbaplayer_id = 871 +WHERE id IN (2516,298,1304,3220,4350,5737,6431,7551,8605,9612,10668,11765); + +-- Statement 255 +UPDATE player +SET sbaplayer_id = 926 +WHERE id IN (2517,299,1305,3222,4331,5965,6710,7555,8609,10302,11358); + +-- Statement 256 +UPDATE player +SET sbaplayer_id = 1096 +WHERE id IN (2518,300,1306,3748,4889,5267,6466,7556,8610,10303,11359); + +-- Statement 257 +UPDATE player +SET sbaplayer_id = 1834 +WHERE id IN (2519); + +-- Statement 258 +UPDATE player +SET sbaplayer_id = 1976 +WHERE id IN (2520,302,1308,3224,4891); + +-- Statement 259 +UPDATE player +SET sbaplayer_id = 2221 +WHERE id IN (2521); + +-- Statement 260 +UPDATE player +SET sbaplayer_id = 600 +WHERE id IN (2522,303,1309,3750,4218,5582,6956,7559,8613,11770); + +-- Statement 261 +UPDATE player +SET sbaplayer_id = 742 +WHERE id IN (2523,304,1310,3225,4767,6057,7093); + +-- Statement 262 +UPDATE player +SET sbaplayer_id = 1074 +WHERE id IN (2524,3226,4142); + +-- Statement 263 +UPDATE player +SET sbaplayer_id = 1934 +WHERE id IN (2525,306,1312,3227,4608,6121,7156,7562,8616,9618,10674,11777); + +-- Statement 264 +UPDATE player +SET sbaplayer_id = 705 +WHERE id IN (2526); + +-- Statement 265 +UPDATE player +SET sbaplayer_id = 1140 +WHERE id IN (2527,307,1313,3228,4584,5796,6347,7563,8617,9621,10677); + +-- Statement 266 +UPDATE player +SET sbaplayer_id = 2064 +WHERE id IN (2528,310,1316); + +-- Statement 267 +UPDATE player +SET sbaplayer_id = 867 +WHERE id IN (2529,311,1317); + +-- Statement 268 +UPDATE player +SET sbaplayer_id = 1518 +WHERE id IN (2530,312,1318,3754,4542); + +-- Statement 269 +UPDATE player +SET sbaplayer_id = 1669 +WHERE id IN (2531,313,1319); + +-- Statement 270 +UPDATE player +SET sbaplayer_id = 1701 +WHERE id IN (2532); + +-- Statement 271 +UPDATE player +SET sbaplayer_id = 87 +WHERE id IN (2533); + +-- Statement 272 +UPDATE player +SET sbaplayer_id = 359 +WHERE id IN (2534,316,1322,3232,4169); + +-- Statement 273 +UPDATE player +SET sbaplayer_id = 1124 +WHERE id IN (2535,317,1323,3233,4524,5811,6370,7569,8623,9631,10687,11786); + +-- Statement 274 +UPDATE player +SET sbaplayer_id = 1126 +WHERE id IN (2536,318,1324); + +-- Statement 275 +UPDATE player +SET sbaplayer_id = 1517 +WHERE id IN (2537); + +-- Statement 276 +UPDATE player +SET sbaplayer_id = 1634 +WHERE id IN (2538,321,1327,3236,4695,5900,6546,7573,8627); + +-- Statement 277 +UPDATE player +SET sbaplayer_id = 652 +WHERE id IN (2539,322,1328,3237,4148,5773,6316,7574,8628,9633,10689,11789); + +-- Statement 278 +UPDATE player +SET sbaplayer_id = 675 +WHERE id IN (2540,323,1329,3238,4675,5913,6577); + +-- Statement 279 +UPDATE player +SET sbaplayer_id = 1525 +WHERE id IN (2541,324,1330,3758,4632,5197,6298,7575,8629,9635,10691,11791); + +-- Statement 280 +UPDATE player +SET sbaplayer_id = 1379 +WHERE id IN (2542); + +-- Statement 281 +UPDATE player +SET sbaplayer_id = 1645 +WHERE id IN (2543,3761,4399,5512,6885,7583,8636); + +-- Statement 282 +UPDATE player +SET sbaplayer_id = 1746 +WHERE id IN (2544,328,1334,3241,4900,5971,6729,7586,8639,9643,10699,11801); + +-- Statement 283 +UPDATE player +SET sbaplayer_id = 1888 +WHERE id IN (2545,331,1337,3243,4198,5766,6304,7591,8644,9651,10707,11809); + +-- Statement 284 +UPDATE player +SET sbaplayer_id = 1501 +WHERE id IN (2546,332,1338,6172,7206); + +-- Statement 285 +UPDATE player +SET sbaplayer_id = 1204 +WHERE id IN (2547,334,1340,3764,4360,5323,6487,7593,8646); + +-- Statement 286 +UPDATE player +SET sbaplayer_id = 398 +WHERE id IN (2548,335,1341,3765,4215,5190,6241,7594,8647,9653,10709,11811); + +-- Statement 287 +UPDATE player +SET sbaplayer_id = 1893 +WHERE id IN (2549,336,1342,3244,4452,5835,6409,7595,8648,9654,10710,11812); + +-- Statement 288 +UPDATE player +SET sbaplayer_id = 739 +WHERE id IN (2550,337,1343,3766,4902); + +-- Statement 289 +UPDATE player +SET sbaplayer_id = 2003 +WHERE id IN (2551,341,1347,3246,4904,5975,6737,7600,8653,9657,10713,11815); + +-- Statement 290 +UPDATE player +SET sbaplayer_id = 869 +WHERE id IN (2552); + +-- Statement 291 +UPDATE player +SET sbaplayer_id = 44 +WHERE id IN (2553,344,1350,3248,4601,7602,8655); + +-- Statement 292 +UPDATE player +SET sbaplayer_id = 197 +WHERE id IN (2554); + +-- Statement 293 +UPDATE player +SET sbaplayer_id = 681 +WHERE id IN (2555,345,1351,3249,4906); + +-- Statement 294 +UPDATE player +SET sbaplayer_id = 915 +WHERE id IN (2556,346,1352,3769,4446,5529,6903); + +-- Statement 295 +UPDATE player +SET sbaplayer_id = 207 +WHERE id IN (2557); + +-- Statement 296 +UPDATE player +SET sbaplayer_id = 1569 +WHERE id IN (2558,347,1353,3250,4907,6150,7185); + +-- Statement 297 +UPDATE player +SET sbaplayer_id = 862 +WHERE id IN (2559,350,1356,3251,4176,6013,6821,7605,8658); + +-- Statement 298 +UPDATE player +SET sbaplayer_id = 1665 +WHERE id IN (2560,351,1357,3772,4908,5657,7031,7608,8661); + +-- Statement 299 +UPDATE player +SET sbaplayer_id = 110 +WHERE id IN (2561,355,1361,3254,4274,5718,6239,7612,8665,9669,10725,11831); + +-- Statement 300 +UPDATE player +SET sbaplayer_id = 1393 +WHERE id IN (2562); + +-- Statement 301 +UPDATE player +SET sbaplayer_id = 616 +WHERE id IN (2563); + +-- Statement 302 +UPDATE player +SET sbaplayer_id = 854 +WHERE id IN (2564,356,1362,3773,4909,5601,6975,7614,8667); + +-- Statement 303 +UPDATE player +SET sbaplayer_id = 1413 +WHERE id IN (2565,357,1363,3774,4910,5328,6495,7615,8668,9671,10727,11834); + +-- Statement 304 +UPDATE player +SET sbaplayer_id = 1706 +WHERE id IN (2566,359,1365,3775,4911); + +-- Statement 305 +UPDATE player +SET sbaplayer_id = 1765 +WHERE id IN (2567,360,1366); + +-- Statement 306 +UPDATE player +SET sbaplayer_id = 2066 +WHERE id IN (2568,361,1367); + +-- Statement 307 +UPDATE player +SET sbaplayer_id = 1536 +WHERE id IN (2569,362,1368); + +-- Statement 308 +UPDATE player +SET sbaplayer_id = 114 +WHERE id IN (2570,363,1369,3777,4379); + +-- Statement 309 +UPDATE player +SET sbaplayer_id = 1028 +WHERE id IN (2571,364,1370,3255,4913); + +-- Statement 310 +UPDATE player +SET sbaplayer_id = 533 +WHERE id IN (2572,366,1372,3256,4699,6129,7164,7621,8674,10309,11364); + +-- Statement 311 +UPDATE player +SET sbaplayer_id = 1520 +WHERE id IN (2573,367,1373,3257,4917); + +-- Statement 312 +UPDATE player +SET sbaplayer_id = 1631 +WHERE id IN (2574,368,1374,3258,4918,5882,6496,7624,8677,9680,10736,11846); + +-- Statement 313 +UPDATE player +SET sbaplayer_id = 1925 +WHERE id IN (2575,5417,6650,7625,8678,11848); + +-- Statement 314 +UPDATE player +SET sbaplayer_id = 2192 +WHERE id IN (2576,369,1375); + +-- Statement 315 +UPDATE player +SET sbaplayer_id = 1733 +WHERE id IN (2577,370,1376,3782,4137,5377,6628,7626,8679,9681,10737); + +-- Statement 316 +UPDATE player +SET sbaplayer_id = 495 +WHERE id IN (2578,371,1377); + +-- Statement 317 +UPDATE player +SET sbaplayer_id = 820 +WHERE id IN (2579,372,1378,3259,4406,5917,6583,7629,8682,9684,10740,11850); + +-- Statement 318 +UPDATE player +SET sbaplayer_id = 1029 +WHERE id IN (2580,373,1379,3785,4920,5332,6501,7630,8683); + +-- Statement 319 +UPDATE player +SET sbaplayer_id = 1051 +WHERE id IN (2581,374,1380); + +-- Statement 320 +UPDATE player +SET sbaplayer_id = 1044 +WHERE id IN (2582,377,1383,3263,4238,5830,6559,7633,8686,9688,10744,11853); + +-- Statement 321 +UPDATE player +SET sbaplayer_id = 1441 +WHERE id IN (2583,378,1384,3786,4924); + +-- Statement 322 +UPDATE player +SET sbaplayer_id = 821 +WHERE id IN (2584,379,1385,3787,4291,5598,6972); + +-- Statement 323 +UPDATE player +SET sbaplayer_id = 1229 +WHERE id IN (2585,382,1388,3287,4942,5857,6454,7680,8733,9732,10788,11909); + +-- Statement 324 +UPDATE player +SET sbaplayer_id = 1622 +WHERE id IN (2586,384,1390,3342,4320,5784,6331,7797,8850,9829,10885,12012); + +-- Statement 325 +UPDATE player +SET sbaplayer_id = 661 +WHERE id IN (2587,385,1391,3788,4743); + +-- Statement 326 +UPDATE player +SET sbaplayer_id = 1547 +WHERE id IN (2588,386,1392,3264,4590,5942,6662,7634,8687,9689,10745); + +-- Statement 327 +UPDATE player +SET sbaplayer_id = 622 +WHERE id IN (2589,387,1393,3789,4925,5423,6658,7635,8688,9690,10746,11856); + +-- Statement 328 +UPDATE player +SET sbaplayer_id = 239 +WHERE id IN (2590,389,1395,3266,4206,6156,7191,7638,8691,10312,11367); + +-- Statement 329 +UPDATE player +SET sbaplayer_id = 1903 +WHERE id IN (2591,7639,8692); + +-- Statement 330 +UPDATE player +SET sbaplayer_id = 133 +WHERE id IN (2592,390,1396,3790,4927,5548,6922,11865); + +-- Statement 331 +UPDATE player +SET sbaplayer_id = 484 +WHERE id IN (2593,391,1397,3791,4152,5176,6210,7640,8693,10313,11368); + +-- Statement 332 +UPDATE player +SET sbaplayer_id = 1426 +WHERE id IN (2594); + +-- Statement 333 +UPDATE player +SET sbaplayer_id = 1642 +WHERE id IN (2595); + +-- Statement 334 +UPDATE player +SET sbaplayer_id = 991 +WHERE id IN (2596,395,1401,3269,4439,6191,7224); + +-- Statement 335 +UPDATE player +SET sbaplayer_id = 141 +WHERE id IN (2597,396,1402,3794,4319,5327,6648,7642,8695,9696,10752); + +-- Statement 336 +UPDATE player +SET sbaplayer_id = 94 +WHERE id IN (2598,398,1404,3796,4420,5544,6918); + +-- Statement 337 +UPDATE player +SET sbaplayer_id = 151 +WHERE id IN (2599,399,1405,6103,7138,9698,10754,11872); + +-- Statement 338 +UPDATE player +SET sbaplayer_id = 354 +WHERE id IN (2600,400,1406,3270,4593,6188,7221,7645,8698,9701,10757,11875); + +-- Statement 339 +UPDATE player +SET sbaplayer_id = 596 +WHERE id IN (2601,5580,6954); + +-- Statement 340 +UPDATE player +SET sbaplayer_id = 1087 +WHERE id IN (2602,403,1409,3273,4931,6111,7146,7650,8703); + +-- Statement 341 +UPDATE player +SET sbaplayer_id = 1200 +WHERE id IN (2603,404,1410,3274,4415,6005,6854,7651,8704,10314,11369); + +-- Statement 342 +UPDATE player +SET sbaplayer_id = 1274 +WHERE id IN (2604,405,1411,3798,4585,5401,6624,7653,8706); + +-- Statement 343 +UPDATE player +SET sbaplayer_id = 1452 +WHERE id IN (2605,407,1413,3800,4934,5441,6804,7655,8708); + +-- Statement 344 +UPDATE player +SET sbaplayer_id = 1550 +WHERE id IN (2606); + +-- Statement 345 +UPDATE player +SET sbaplayer_id = 1004 +WHERE id IN (2607,409,1415,3802,4936,5504,6880,7649,8702,9706,10762,11881); + +-- Statement 346 +UPDATE player +SET sbaplayer_id = 165 +WHERE id IN (2608,410,1416,3803,4630,7657,8710,9711,10767,11886); + +-- Statement 347 +UPDATE player +SET sbaplayer_id = 1261 +WHERE id IN (2609,411,1417,3276,4161,6073,7109,7660,8713,9715,10771,11888); + +-- Statement 348 +UPDATE player +SET sbaplayer_id = 1506 +WHERE id IN (2610,412,1418,3806,4937,9717,10773,11890); + +-- Statement 349 +UPDATE player +SET sbaplayer_id = 1509 +WHERE id IN (2611); + +-- Statement 350 +UPDATE player +SET sbaplayer_id = 1816 +WHERE id IN (2612); + +-- Statement 351 +UPDATE player +SET sbaplayer_id = 1954 +WHERE id IN (2613,413,1419,5302,6505,7661,8714,9718,10774,11892); + +-- Statement 352 +UPDATE player +SET sbaplayer_id = 937 +WHERE id IN (2614,415,1421,3807,4938); + +-- Statement 353 +UPDATE player +SET sbaplayer_id = 684 +WHERE id IN (2615,417,1423,3808,4490,5257,6374,7665,8718); + +-- Statement 354 +UPDATE player +SET sbaplayer_id = 555 +WHERE id IN (2616,418,1424,3279,4940,5986,6827); + +-- Statement 355 +UPDATE player +SET sbaplayer_id = 13 +WHERE id IN (2617,3809,4718,7668,8721,9723,10779,11900); + +-- Statement 356 +UPDATE player +SET sbaplayer_id = 813 +WHERE id IN (2618); + +-- Statement 357 +UPDATE player +SET sbaplayer_id = 891 +WHERE id IN (2619,420,1426,3281,4265,5997,6841,7673,8726,9726,10782,11902); + +-- Statement 358 +UPDATE player +SET sbaplayer_id = 1053 +WHERE id IN (2620,421,1427,3282,4455); + +-- Statement 359 +UPDATE player +SET sbaplayer_id = 2053 +WHERE id IN (2621,422,1428); + +-- Statement 360 +UPDATE player +SET sbaplayer_id = 112 +WHERE id IN (2622,423,1429,3283,4545,5740,6268,7676,8729,9729,10785,11905); + +-- -- Statement 361 +-- UPDATE player +-- SET sbaplayer_id = 3236 +-- WHERE id IN (2623,424,1430,3811,4588); + +-- Statement 362 +UPDATE player +SET sbaplayer_id = 270 +WHERE id IN (2624,425,1431,3284,4672); + +-- Statement 363 +UPDATE player +SET sbaplayer_id = 1820 +WHERE id IN (2625); + +-- Statement 364 +UPDATE player +SET sbaplayer_id = 1796 +WHERE id IN (2626,427,1433,3288,4370,5783,6330,7681,8734,9733,10789); + +-- Statement 365 +UPDATE player +SET sbaplayer_id = 733 +WHERE id IN (2627); + +-- Statement 366 +UPDATE player +SET sbaplayer_id = 1158 +WHERE id IN (2628,6034,6908,7682,8735); + +-- Statement 367 +UPDATE player +SET sbaplayer_id = 800 +WHERE id IN (2629,428,1434,3289,4414); + +-- Statement 368 +UPDATE player +SET sbaplayer_id = 1235 +WHERE id IN (2630,431,1437,3290,4312); + +-- Statement 369 +UPDATE player +SET sbaplayer_id = 1287 +WHERE id IN (2631,432,1438,3291,4321,5907,6562,7684,8737,9736,10792,11912); + +-- Statement 370 +UPDATE player +SET sbaplayer_id = 1889 +WHERE id IN (2632,434,1440,3815,4945,5510,6838,7685,8738,11913); + +-- Statement 371 +UPDATE player +SET sbaplayer_id = 1209 +WHERE id IN (2633); + +-- Statement 372 +UPDATE player +SET sbaplayer_id = 1677 +WHERE id IN (2634,435,1441); + +-- Statement 373 +UPDATE player +SET sbaplayer_id = 315 +WHERE id IN (2635,436,1442,3292,4226,5801,6356,7686,8739,9737,10793,11914); + +-- Statement 374 +UPDATE player +SET sbaplayer_id = 852 +WHERE id IN (2636,438,1444); + +-- Statement 375 +UPDATE player +SET sbaplayer_id = 976 +WHERE id IN (2637,439,1445,3816,4240); + +-- Statement 376 +UPDATE player +SET sbaplayer_id = 213 +WHERE id IN (2638,440,1446); + +-- Statement 377 +UPDATE player +SET sbaplayer_id = 192 +WHERE id IN (2639,441,1447); + +-- Statement 378 +UPDATE player +SET sbaplayer_id = 370 +WHERE id IN (2640,442,1448,3817,4946,5284,6419,7690,8743,10317,11372,11918); + +-- Statement 379 +UPDATE player +SET sbaplayer_id = 2177 +WHERE id IN (2641,443,1449,3293,4325,5826,6393,7691,8744,9740,10796,11919); + +-- Statement 380 +UPDATE player +SET sbaplayer_id = 25 +WHERE id IN (2642,444,1450,3294,4595,5927,6613,7692,8745,10318,11373); + +-- Statement 381 +UPDATE player +SET sbaplayer_id = 1939 +WHERE id IN (2643,446,1452); + +-- Statement 382 +UPDATE player +SET sbaplayer_id = 595 +WHERE id IN (2644,448,1454,3821,4596,5579,6953,7695,8748); + +-- Statement 383 +UPDATE player +SET sbaplayer_id = 362 +WHERE id IN (2645,449,1455,5393,6612,7698,8751); + +-- Statement 384 +UPDATE player +SET sbaplayer_id = 377 +WHERE id IN (2646,450,1456,3296,4623,5924,6594,7699,8752,9745,10801); + +-- Statement 385 +UPDATE player +SET sbaplayer_id = 19 +WHERE id IN (2647); + +-- Statement 386 +UPDATE player +SET sbaplayer_id = 984 +WHERE id IN (2648); + +-- Statement 387 +UPDATE player +SET sbaplayer_id = 2203 +WHERE id IN (2649,452,1458); + +-- Statement 388 +UPDATE player +SET sbaplayer_id = 1514 +WHERE id IN (2650,454,1460,3298,4950,6070,7106,7706,8759,9750,10806,11929); + +-- Statement 389 +UPDATE player +SET sbaplayer_id = 188 +WHERE id IN (2651,455,1461); + +-- Statement 390 +UPDATE player +SET sbaplayer_id = 979 +WHERE id IN (2652,456,1462,3825,4952,5608,6982,7708,8761,9752,10808,11931); + +-- Statement 391 +UPDATE player +SET sbaplayer_id = 1021 +WHERE id IN (2653,457,1463,3826,4577,5410,6640,7709,8762,9753,10809,11932); + +-- Statement 392 +UPDATE player +SET sbaplayer_id = 1245 +WHERE id IN (2654); + +-- Statement 393 +UPDATE player +SET sbaplayer_id = 1394 +WHERE id IN (2655,458,1464,3827,4533,5247,6436,7711,8764,9755,10811,11934); + +-- Statement 394 +UPDATE player +SET sbaplayer_id = 1493 +WHERE id IN (2656,459,1465,3300,4953,6190,7223); + +-- Statement 395 +UPDATE player +SET sbaplayer_id = 1842 +WHERE id IN (2657,461,1467,5502,6869,7713,8766); + +-- Statement 396 +UPDATE player +SET sbaplayer_id = 674 +WHERE id IN (2658,462,1468,3302,4392,5749,6285,7718,8771,9758,10814,11941); + +-- Statement 397 +UPDATE player +SET sbaplayer_id = 1160 +WHERE id IN (2659,463,1469,5475,6766,9759,10815); + +-- Statement 398 +UPDATE player +SET sbaplayer_id = 1647 +WHERE id IN (2660,464,1470); + +-- Statement 399 +UPDATE player +SET sbaplayer_id = 2092 +WHERE id IN (2661,465,1471,3303,4770,5781,6328,7721,8774,9761,10817); + +-- Statement 400 +UPDATE player +SET sbaplayer_id = 2135 +WHERE id IN (2662,466,1472,3304,4297,5754,6290,7722,8775,9762,10818); + +-- Statement 401 +UPDATE player +SET sbaplayer_id = 309 +WHERE id IN (2663,467,1473,3305,4646,7724,8777); + +-- Statement 402 +UPDATE player +SET sbaplayer_id = 247 +WHERE id IN (2664,468,1474,7726,8779,9767,10823,11947); + +-- Statement 403 +UPDATE player +SET sbaplayer_id = 677 +WHERE id IN (2665,469,1475,3832,4652,5480,6789); + +-- Statement 404 +UPDATE player +SET sbaplayer_id = 893 +WHERE id IN (2666,470,1476); + +-- Statement 405 +UPDATE player +SET sbaplayer_id = 1392 +WHERE id IN (2667,472,1478,3306,4957); + +-- Statement 406 +UPDATE player +SET sbaplayer_id = 613 +WHERE id IN (2668); + +-- Statement 407 +UPDATE player +SET sbaplayer_id = 766 +WHERE id IN (2669,475,1481,3838,4960,5369,6609,7731,8784,9772,10828,11952); + +-- Statement 408 +UPDATE player +SET sbaplayer_id = 973 +WHERE id IN (2670,476,1482,3308,4961); + +-- Statement 409 +UPDATE player +SET sbaplayer_id = 1117 +WHERE id IN (2671,477,1483,3839,4962,5621,6995); + +-- Statement 410 +UPDATE player +SET sbaplayer_id = 912 +WHERE id IN (2672,479,1485,3841,4724); + +-- Statement 411 +UPDATE player +SET sbaplayer_id = 1163 +WHERE id IN (2673,481,1487); + +-- Statement 412 +UPDATE player +SET sbaplayer_id = 1779 +WHERE id IN (2674,482,1488,3312,4348,5918,6587,7740,8793,10327,11382); + +-- Statement 413 +UPDATE player +SET sbaplayer_id = 2079 +WHERE id IN (2675,483,1489,3313,4964,5903,6551,7741,8794); + +-- Statement 414 +UPDATE player +SET sbaplayer_id = 894 +WHERE id IN (2676,484,1490,7743,8796,9779,10835,11963); + +-- Statement 415 +UPDATE player +SET sbaplayer_id = 2230 +WHERE id IN (2677,488,1494); + +-- Statement 416 +UPDATE player +SET sbaplayer_id = 1308 +WHERE id IN (2678,489,1495,3315,4968,5973,6810); + +-- Statement 417 +UPDATE player +SET sbaplayer_id = 40 +WHERE id IN (2679,490,1496,3316,4969,6042,7078,7749,8802); + +-- Statement 418 +UPDATE player +SET sbaplayer_id = 220 +WHERE id IN (2680,3317,4970); + +-- Statement 419 +UPDATE player +SET sbaplayer_id = 1570 +WHERE id IN (2681,492,1498,3319,4715,5750,6286,7752,8805,10330,11385,11973); + +-- Statement 420 +UPDATE player +SET sbaplayer_id = 1870 +WHERE id IN (2682,493,1499,3320,4687,6051,7087,7753,8806,9788,10844,11974); + +-- Statement 421 +UPDATE player +SET sbaplayer_id = 7 +WHERE id IN (2683,494,1500,3321,4155,5867,6467,7754,8807,9789,10845,11976); + +-- Statement 422 +UPDATE player +SET sbaplayer_id = 56 +WHERE id IN (2684,495,1501,3322,4973,5785,6333,7755,8808,9790,10846,11977); + +-- Statement 423 +UPDATE player +SET sbaplayer_id = 58 +WHERE id IN (2685,496,1502,3850,4974,5498,6820,7756,8809,9791,10847,11978); + +-- Statement 424 +UPDATE player +SET sbaplayer_id = 59 +WHERE id IN (2686,497,1503,3851,4266,5310,6460); + +-- Statement 425 +UPDATE player +SET sbaplayer_id = 153 +WHERE id IN (2687); + +-- Statement 426 +UPDATE player +SET sbaplayer_id = 182 +WHERE id IN (2688,498,1504,3852,4569,5279,6414,7759,8812,9794,10850,11980); + +-- Statement 427 +UPDATE player +SET sbaplayer_id = 254 +WHERE id IN (2689); + +-- Statement 428 +UPDATE player +SET sbaplayer_id = 342 +WHERE id IN (2690); + +-- Statement 429 +UPDATE player +SET sbaplayer_id = 949 +WHERE id IN (2691,500,1506,3324,4244,6047,7083,7763,8816,11985); + +-- Statement 430 +UPDATE player +SET sbaplayer_id = 1106 +WHERE id IN (2692,501,1507,7764,8817,9802,10858,11986); + +-- Statement 431 +UPDATE player +SET sbaplayer_id = 1222 +WHERE id IN (2693,502,1508,3326,4977); + +-- Statement 432 +UPDATE player +SET sbaplayer_id = 1471 +WHERE id IN (2694,503,1509,3327,4978); + +-- Statement 433 +UPDATE player +SET sbaplayer_id = 1527 +WHERE id IN (2695,504,1510,3328,4979,6081,7117); + +-- Statement 434 +UPDATE player +SET sbaplayer_id = 1562 +WHERE id IN (2696); + +-- Statement 435 +UPDATE player +SET sbaplayer_id = 1596 +WHERE id IN (2697,506,1512,3854,4980,5653,7027,7767,8820,9803,10859,11988); + +-- Statement 436 +UPDATE player +SET sbaplayer_id = 1608 +WHERE id IN (2698,507,1513,3329,4217,5707,6224,7768,8821,9804,10860,11989); + +-- Statement 437 +UPDATE player +SET sbaplayer_id = 1633 +WHERE id IN (2699); + +-- Statement 438 +UPDATE player +SET sbaplayer_id = 2035 +WHERE id IN (2700,512,1518,3855,4655,5673,7047,7773,8826,9810,10866,11996); + +-- Statement 439 +UPDATE player +SET sbaplayer_id = 168 +WHERE id IN (2701,514,1520,3332,4982,5829,6400,7775,8828,9812,10868,11997); + +-- Statement 440 +UPDATE player +SET sbaplayer_id = 614 +WHERE id IN (2702); + +-- Statement 441 +UPDATE player +SET sbaplayer_id = 802 +WHERE id IN (2703,516,1522,3858,4565,5193,6244,7778,8831,9813,10869,11999); + +-- Statement 442 +UPDATE player +SET sbaplayer_id = 829 +WHERE id IN (2704,517,1523,3335,4508,5893,6516,7779,8832,10334,11389); + +-- Statement 443 +UPDATE player +SET sbaplayer_id = 1553 +WHERE id IN (2705,521,1527,3337,4986); + +-- Statement 444 +UPDATE player +SET sbaplayer_id = 1623 +WHERE id IN (2706,522,1528,3338,4987,6074,7110); + +-- Statement 445 +UPDATE player +SET sbaplayer_id = 1996 +WHERE id IN (2707,526,1532,3865,4591,5672,7046); + +-- Statement 446 +UPDATE player +SET sbaplayer_id = 1648 +WHERE id IN (2708,528,1534,3343,4992); + +-- Statement 447 +UPDATE player +SET sbaplayer_id = 1334 +WHERE id IN (2709,530,1536,5229,6311); + +-- Statement 448 +UPDATE player +SET sbaplayer_id = 1422 +WHERE id IN (2710,531,1537); + +-- Statement 449 +UPDATE player +SET sbaplayer_id = 1879 +WHERE id IN (2711,532,1538,3344,4160,5706,6221,7799,8852,9830,10886,12013); + +-- Statement 450 +UPDATE player +SET sbaplayer_id = 1970 +WHERE id IN (2712,533,1539,3869,4993,9833,10889); + +-- Statement 451 +UPDATE player +SET sbaplayer_id = 785 +WHERE id IN (2713,536,1542,3871,4511,5595,6969); + +-- Statement 452 +UPDATE player +SET sbaplayer_id = 1587 +WHERE id IN (2714,537,1543,3345,4337,6149,7184,7804,8857,9835,10891,12019); + +-- Statement 453 +UPDATE player +SET sbaplayer_id = 70 +WHERE id IN (2715,538,1544,12020); + +-- Statement 454 +UPDATE player +SET sbaplayer_id = 226 +WHERE id IN (2716,539,1545); + +-- Statement 455 +UPDATE player +SET sbaplayer_id = 1321 +WHERE id IN (2717); + +-- Statement 456 +UPDATE player +SET sbaplayer_id = 1857 +WHERE id IN (2718,541,1547,3346,4994); + +-- Statement 457 +UPDATE player +SET sbaplayer_id = 2029 +WHERE id IN (2719,542,1548,3347,4248,5803,6357,7809,8862,9839,10895,12025); + +-- Statement 458 +UPDATE player +SET sbaplayer_id = 2034 +WHERE id IN (2720,543,1549,3348,4995,6083,7119); + +-- Statement 459 +UPDATE player +SET sbaplayer_id = 2071 +WHERE id IN (2721,544,1550,7810,8863,9840,10896,12026); + +-- Statement 460 +UPDATE player +SET sbaplayer_id = 2167 +WHERE id IN (2722,545,1551,3874,4683,5687,7061,12027); + +-- Statement 461 +UPDATE player +SET sbaplayer_id = 1186 +WHERE id IN (2723); + +-- Statement 462 +UPDATE player +SET sbaplayer_id = 1997 +WHERE id IN (2724); + +-- Statement 463 +UPDATE player +SET sbaplayer_id = 720 +WHERE id IN (2725,549,1555); + +-- Statement 464 +UPDATE player +SET sbaplayer_id = 1359 +WHERE id IN (2726,550,1556); + +-- Statement 465 +UPDATE player +SET sbaplayer_id = 968 +WHERE id IN (2727,551,1557,3878,4663,5275,6407,7818,8871,9845,10901,12037); + +-- Statement 466 +UPDATE player +SET sbaplayer_id = 1181 +WHERE id IN (2728,552,1558,3879,4326,5478,6808,9846,10902,12038); + +-- Statement 467 +UPDATE player +SET sbaplayer_id = 1210 +WHERE id IN (2729,556,1562,3351,4293,5854,6449,7821,8874,9848,10904,12040); + +-- Statement 468 +UPDATE player +SET sbaplayer_id = 1847 +WHERE id IN (2730,557,1563,3352,4279,6183,7216); + +-- Statement 469 +UPDATE player +SET sbaplayer_id = 706 +WHERE id IN (2731,559,1565,3881,4341,5204,6265,7822,8875,9849,10905,12041); + +-- Statement 470 +UPDATE player +SET sbaplayer_id = 1039 +WHERE id IN (2732,560,1566,3354,4185,5729,6417,7824,8877,9852,10908,12044); + +-- Statement 471 +UPDATE player +SET sbaplayer_id = 1264 +WHERE id IN (2733,561,1567); + +-- Statement 472 +UPDATE player +SET sbaplayer_id = 1420 +WHERE id IN (2734,562,1568,3355,5000,6009,6814,7825,8878,9853,10909,12045); + +-- Statement 473 +UPDATE player +SET sbaplayer_id = 1557 +WHERE id IN (2735,563,1569,3356,4503,5981,6756,9854,10910,12046); + +-- Statement 474 +UPDATE player +SET sbaplayer_id = 1565 +WHERE id IN (2736,564,1570,3357,4351,5996,6793,7826,8879); + +-- Statement 475 +UPDATE player +SET sbaplayer_id = 469 +WHERE id IN (2737,565,1571,3358,5002,6045,7081); + +-- Statement 476 +UPDATE player +SET sbaplayer_id = 2211 +WHERE id IN (2738,566,1572,9855,10911,12047); + +-- Statement 477 +UPDATE player +SET sbaplayer_id = 1911 +WHERE id IN (2739); + +-- Statement 478 +UPDATE player +SET sbaplayer_id = 306 +WHERE id IN (2740,568,1574,3359,4422,6141,7176,7831,8884,9857,10913); + +-- Statement 479 +UPDATE player +SET sbaplayer_id = 2188 +WHERE id IN (2741,569,1575,3360,4383,5774,6318,7832,8885,9858,10914); + +-- Statement 480 +UPDATE player +SET sbaplayer_id = 273 +WHERE id IN (2742,570,1576,3361,4626,5819,6385,7834,8887,9860,10916,12051); + +-- Statement 481 +UPDATE player +SET sbaplayer_id = 1945 +WHERE id IN (2743,572,1578,3362,4648,6075,7111,7836,8889); + +-- Statement 482 +UPDATE player +SET sbaplayer_id = 136 +WHERE id IN (2744,573,1579); + +-- Statement 483 +UPDATE player +SET sbaplayer_id = 435 +WHERE id IN (2745,574,1580,3888,5004,5514,6847); + +-- Statement 484 +UPDATE player +SET sbaplayer_id = 650 +WHERE id IN (2746,576,1582,3890,4200,5262,6602,7841,8894,9864,10920,12057); + +-- Statement 485 +UPDATE player +SET sbaplayer_id = 715 +WHERE id IN (2747,577,1583,3892,5007,5245,6354,7843,8896,9865,10921,12058); + +-- Statement 486 +UPDATE player +SET sbaplayer_id = 856 +WHERE id IN (2748,578,1584,3894,4308,5460,6812,7844,8897,9866,10922,12060); + +-- Statement 487 +UPDATE player +SET sbaplayer_id = 1784 +WHERE id IN (2749,581,1587,3367,4771,5772,6314,7848,8901,9871,10927,12068); + +-- Statement 488 +UPDATE player +SET sbaplayer_id = 1793 +WHERE id IN (2750,582,1588,3368,4556,5921,6708); + +-- Statement 489 +UPDATE player +SET sbaplayer_id = 1173 +WHERE id IN (2751,584,1590,3899,4268,5181,6252,7853,8906,9875,10931,12073); + +-- Statement 490 +UPDATE player +SET sbaplayer_id = 1271 +WHERE id IN (2752,3900,4574,5235,6321,7854,8907); + +-- Statement 491 +UPDATE player +SET sbaplayer_id = 1215 +WHERE id IN (2753,585,1591); + +-- Statement 492 +UPDATE player +SET sbaplayer_id = 679 +WHERE id IN (2754,586,1592,3373,4177,5873,6477,7858,8911); + +-- Statement 493 +UPDATE player +SET sbaplayer_id = 258 +WHERE id IN (2755,587,1593,3375,4744,6054,7090); + +-- Statement 494 +UPDATE player +SET sbaplayer_id = 636 +WHERE id IN (2756,590,1596,3376,5013); + +-- Statement 495 +UPDATE player +SET sbaplayer_id = 1373 +WHERE id IN (2757,3377,5014); + +-- Statement 496 +UPDATE player +SET sbaplayer_id = 305 +WHERE id IN (2758,592,1598,3378,4212,5746,6462,7863,8916); + +-- Statement 497 +UPDATE player +SET sbaplayer_id = 2016 +WHERE id IN (2759,593,1599,3906,4709,5403,6629,7864,8917); + +-- Statement 498 +UPDATE player +SET sbaplayer_id = 400 +WHERE id IN (2760); + +-- Statement 499 +UPDATE player +SET sbaplayer_id = 794 +WHERE id IN (2761,594,1600,3379,4451,5847,6581,7867,8920,9888,10944,12089); + +-- Statement 500 +UPDATE player +SET sbaplayer_id = 724 +WHERE id IN (2762,596,1602,3907,4570,5221,6292,7869,8922,9890,10946); + +-- Statement 501 +UPDATE player +SET sbaplayer_id = 344 +WHERE id IN (2763,600,1606,3910,4504,5216,6280,7873,8926,9894,10950,12094); + +-- Statement 502 +UPDATE player +SET sbaplayer_id = 694 +WHERE id IN (2764,602,1608,3386,3912,5016,5017,5990,6780,7875,8928,9907,10963,12106); + +-- Statement 503 +UPDATE player +SET sbaplayer_id = 1529 +WHERE id IN (2765,604,1610,3915,5019); + +-- Statement 504 +UPDATE player +SET sbaplayer_id = 1805 +WHERE id IN (2766,606,1612,7883,8935,9905,10961,12103); + +-- Statement 505 +UPDATE player +SET sbaplayer_id = 2045 +WHERE id IN (2767); + +-- Statement 506 +UPDATE player +SET sbaplayer_id = 960 +WHERE id IN (2768,609,1615,3916,5022,5261,6541,10350,11405,12107); + +-- Statement 507 +UPDATE player +SET sbaplayer_id = 1185 +WHERE id IN (2769,610,1616,7886,8938,9908,10964,12109); + +-- Statement 508 +UPDATE player +SET sbaplayer_id = 2087 +WHERE id IN (2770,611,1617,3387,4317,5989,6833,7888,8940,10351,11406); + +-- Statement 509 +UPDATE player +SET sbaplayer_id = 2124 +WHERE id IN (2771,612,1618,3917,5023,5360,6684,7889,8941,9910,10966,12111); + +-- Statement 510 +UPDATE player +SET sbaplayer_id = 278 +WHERE id IN (2772,614,1620,3918,5024,5376,6567,7892,8944); + +-- Statement 511 +UPDATE player +SET sbaplayer_id = 1823 +WHERE id IN (2773,3388,4301,6024,6894,7893,8945); + +-- Statement 512 +UPDATE player +SET sbaplayer_id = 645 +WHERE id IN (2774,615,1621,3389,4501,6061,7097,7894,8946); + +-- Statement 513 +UPDATE player +SET sbaplayer_id = 1846 +WHERE id IN (2775,616,1622,3390,5025); + +-- Statement 514 +UPDATE player +SET sbaplayer_id = 1175 +WHERE id IN (2776,618,1624,3391,4149,5744,6276,7896,8948,9914,10970,12114); + +-- Statement 515 +UPDATE player +SET sbaplayer_id = 1558 +WHERE id IN (2777,619,1625,3392,4178,5793,6517); + +-- Statement 516 +UPDATE player +SET sbaplayer_id = 1198 +WHERE id IN (2778,620,1626,3393,4380,5806,6529,7897,8949,9915,10971,12115); + +-- Statement 517 +UPDATE player +SET sbaplayer_id = 1481 +WHERE id IN (2779,621,1627,3394,4203,6128,7163,7899,8951,9916,10972,12117); + +-- Statement 518 +UPDATE player +SET sbaplayer_id = 586 +WHERE id IN (2780); + +-- Statement 519 +UPDATE player +SET sbaplayer_id = 735 +WHERE id IN (2781,622,1628,3919,4346,5305,6453,7900,8952,9917,10973,12118); + +-- Statement 520 +UPDATE player +SET sbaplayer_id = 1799 +WHERE id IN (2782,624,1630,3395,4658,5710,6230,7901,8953,9918,10974,12120); + +-- Statement 521 +UPDATE player +SET sbaplayer_id = 1928 +WHERE id IN (2783,625,1631,5256,6373,7902,8954,9919,10975,12121); + +-- Statement 522 +UPDATE player +SET sbaplayer_id = 316 +WHERE id IN (2784,627,1633,3396,4361,5885,6500,7903,8955,9920,10976,12122); + +-- Statement 523 +UPDATE player +SET sbaplayer_id = 1298 +WHERE id IN (2785,628,1634,3921,4298,5288,6422,7907,8959); + +-- Statement 524 +UPDATE player +SET sbaplayer_id = 1639 +WHERE id IN (2786,629,1635); + +-- Statement 525 +UPDATE player +SET sbaplayer_id = 2020 +WHERE id IN (2787); + +-- Statement 526 +UPDATE player +SET sbaplayer_id = 1187 +WHERE id IN (2788,630,1636,3399,4443,6107,7142,7908,8960,9924,10980,12125); + +-- Statement 527 +UPDATE player +SET sbaplayer_id = 1535 +WHERE id IN (2789,631,1637,3922,4436,5471,6795,7909,8961,9925,10981,12126); + +-- Statement 528 +UPDATE player +SET sbaplayer_id = 1582 +WHERE id IN (2790,632,1638); + +-- Statement 529 +UPDATE player +SET sbaplayer_id = 741 +WHERE id IN (2791,633,1639,3400,4736,6055,7091,7910,8962); + +-- Statement 530 +UPDATE player +SET sbaplayer_id = 1955 +WHERE id IN (2792,634,1640,3923,4494); + +-- Statement 531 +UPDATE player +SET sbaplayer_id = 2154 +WHERE id IN (2793,3401,5029); + +-- Statement 532 +UPDATE player +SET sbaplayer_id = 15 +WHERE id IN (2794,635,1641,3402,5030); + +-- Statement 533 +UPDATE player +SET sbaplayer_id = 131 +WHERE id IN (2795,638,1644,3925,4710,5357,6538,7912,8964,10352,11407); + +-- Statement 534 +UPDATE player +SET sbaplayer_id = 167 +WHERE id IN (2796); + +-- Statement 535 +UPDATE player +SET sbaplayer_id = 329 +WHERE id IN (2797,641,1647,3404,4761,6197,7230,7916,8967,9934,10990,12134); + +-- Statement 536 +UPDATE player +SET sbaplayer_id = 367 +WHERE id IN (2798,642,1648,3405,4280,5821,6387,7917,8968,9935,10991,12135); + +-- Statement 537 +UPDATE player +SET sbaplayer_id = 463 +WHERE id IN (2799,3406,5032); + +-- Statement 538 +UPDATE player +SET sbaplayer_id = 542 +WHERE id IN (2800,643,1649,5848,6439,7918,8969,9936,10992); + +-- Statement 539 +UPDATE player +SET sbaplayer_id = 760 +WHERE id IN (2801,644,1650); + +-- Statement 540 +UPDATE player +SET sbaplayer_id = 835 +WHERE id IN (2802,645,1651,3928,5034,5599,6973); + +-- Statement 541 +UPDATE player +SET sbaplayer_id = 1026 +WHERE id IN (2803,646,1652,3407,4753); + +-- Statement 542 +UPDATE player +SET sbaplayer_id = 1066 +WHERE id IN (2804,9937,10993); + +-- Statement 543 +UPDATE player +SET sbaplayer_id = 1182 +WHERE id IN (2805,647,1653,3929,5035); + +-- Statement 544 +UPDATE player +SET sbaplayer_id = 1357 +WHERE id IN (2806,5641,7015,7922,8973,10355,11410,12137); + +-- Statement 545 +UPDATE player +SET sbaplayer_id = 1461 +WHERE id IN (2807,648,1654,3408,4423,5730,6256,7923,8974,9940,10996,12138); + +-- Statement 546 +UPDATE player +SET sbaplayer_id = 1918 +WHERE id IN (2808,651,1657,3931,4469,7925,8976,9941,10997,12139); + +-- Statement 547 +UPDATE player +SET sbaplayer_id = 2152 +WHERE id IN (2809,653,1659,3410,5037); + +-- Statement 548 +UPDATE player +SET sbaplayer_id = 230 +WHERE id IN (2810,655,1661,3933,5038,5289,6637,9932,10988,12133); + +-- Statement 549 +UPDATE player +SET sbaplayer_id = 999 +WHERE id IN (2811,656,1662,3411,5039); + +-- Statement 550 +UPDATE player +SET sbaplayer_id = 1031 +WHERE id IN (2812,659,1665,3413,4457,5878,6634,7935,8986,9950,11006,12147); + +-- Statement 551 +UPDATE player +SET sbaplayer_id = 1382 +WHERE id IN (2813,660,1666,3414,4701,5738,6266,7936,8987,9951,11007,12149); + +-- Statement 552 +UPDATE player +SET sbaplayer_id = 1773 +WHERE id IN (2814,661,1667,3935,4192,5186,6227,7937,8988,9952,11008,12150); + +-- Statement 553 +UPDATE player +SET sbaplayer_id = 1896 +WHERE id IN (2815,662,1668,3416,4165,5822,6388,7938,8989); + +-- Statement 554 +UPDATE player +SET sbaplayer_id = 300 +WHERE id IN (2816,664,1670); + +-- Statement 555 +UPDATE player +SET sbaplayer_id = 1963 +WHERE id IN (2817,666,1672,3418,5042,5858,6601,7956,9007,9964,11020,12153); + +-- Statement 556 +UPDATE player +SET sbaplayer_id = 240 +WHERE id IN (2818,667,1673,3419,4231,5851,6443,7941,8992,10357,11412); + +-- Statement 557 +UPDATE player +SET sbaplayer_id = 407 +WHERE id IN (2819,669,1675,3421,4201,5969,6807,9955,11011,12155); + +-- Statement 558 +UPDATE player +SET sbaplayer_id = 602 +WHERE id IN (2820,670,1676); + +-- Statement 559 +UPDATE player +SET sbaplayer_id = 666 +WHERE id IN (2821,3937,5044,5227,6308,7943,8994,9956,11012); + +-- Statement 560 +UPDATE player +SET sbaplayer_id = 1151 +WHERE id IN (2822,671,1677,3939,4703,5623,6997,7949,9000,9961,11017,12161); + +-- Statement 561 +UPDATE player +SET sbaplayer_id = 1539 +WHERE id IN (2823,3422,5046,6166,7201,7952,9003); + +-- Statement 562 +UPDATE player +SET sbaplayer_id = 2093 +WHERE id IN (2824,673,1679,3941,5047,5679,7053,7958,9009,9967,11023,12169); + +-- Statement 563 +UPDATE player +SET sbaplayer_id = 78 +WHERE id IN (2825,3423,5048,6102,7137,7960,9011,10361,11416,12173); + +-- Statement 564 +UPDATE player +SET sbaplayer_id = 298 +WHERE id IN (2826,675,1681,3424,5049,6104,7139,7961,9012,9970,11026); + +-- Statement 565 +UPDATE player +SET sbaplayer_id = 350 +WHERE id IN (2827,676,1682,3942,4571,5472,6759,7962,9013,9971,11027); + +-- Statement 566 +UPDATE player +SET sbaplayer_id = 1694 +WHERE id IN (2828,677,1683,3425,4154,5853,6448,7963,9014,9972,11028,12174); + +-- Statement 567 +UPDATE player +SET sbaplayer_id = 1757 +WHERE id IN (2829,678,1684,3426,5050,5961,6792,7964,9015,12175); + +-- Statement 568 +UPDATE player +SET sbaplayer_id = 392 +WHERE id IN (2830,680,1686,3943,4259,7967,9018,9976,11032); + +-- Statement 569 +UPDATE player +SET sbaplayer_id = 615 +WHERE id IN (2831,681,1687,3944,4598); + +-- Statement 570 +UPDATE player +SET sbaplayer_id = 633 +WHERE id IN (2832,682,1688,5585,6959); + +-- Statement 571 +UPDATE player +SET sbaplayer_id = 1102 +WHERE id IN (2833,685,1691); + +-- Statement 572 +UPDATE player +SET sbaplayer_id = 1251 +WHERE id IN (2834,3946,4302,5375,6694,7969,9020,9978,11034); + +-- Statement 573 +UPDATE player +SET sbaplayer_id = 1335 +WHERE id IN (2835,686,1692,3947,5054,5438,6770,7970,9021); + +-- Statement 574 +UPDATE player +SET sbaplayer_id = 1355 +WHERE id IN (2836,687,1693); + +-- Statement 575 +UPDATE player +SET sbaplayer_id = 1378 +WHERE id IN (2837,689,1695,3430,4680,6181,7214,7971,9022,9979,11035); + +-- Statement 576 +UPDATE player +SET sbaplayer_id = 2019 +WHERE id IN (2838,692,1698,3432,4281,5698,6213,7972,9023,9981,11037,12180); + +-- Statement 577 +UPDATE player +SET sbaplayer_id = 2199 +WHERE id IN (2839,693,1699); + +-- Statement 578 +UPDATE player +SET sbaplayer_id = 2234 +WHERE id IN (2840,695,1701,3434,5056,5709,6229,7974,9025,10362,11417); + +-- Statement 579 +UPDATE player +SET sbaplayer_id = 1184 +WHERE id IN (2841); + +-- Statement 580 +UPDATE player +SET sbaplayer_id = 1317 +WHERE id IN (2842,696,1702,5637,7011,7975,9026,9983,11039,12183); + +-- Statement 581 +UPDATE player +SET sbaplayer_id = 702 +WHERE id IN (2843,697,1703,3435,5057,5731,6257,7976,9027,9984,11040,12184); + +-- Statement 582 +UPDATE player +SET sbaplayer_id = 818 +WHERE id IN (2844,698,1704,5870,6471,7977,9028,9985,11041,12185); + +-- Statement 583 +UPDATE player +SET sbaplayer_id = 1365 +WHERE id IN (2845,700,1706,3436,4282,6140,7175); + +-- Statement 584 +UPDATE player +SET sbaplayer_id = 187 +WHERE id IN (2846,701,1707,3438,4133,5747,6283,7981,9032,9988,11044,12191); + +-- Statement 585 +UPDATE player +SET sbaplayer_id = 725 +WHERE id IN (2847,702,1708,3950,4605,5309,6603,7982,9033); + +-- Statement 586 +UPDATE player +SET sbaplayer_id = 990 +WHERE id IN (2848,3952,5061); + +-- Statement 587 +UPDATE player +SET sbaplayer_id = 576 +WHERE id IN (2849,705,1711,3954,4253,5211,6332,7986,9037,9991,11047,12194); + +-- Statement 588 +UPDATE player +SET sbaplayer_id = 1603 +WHERE id IN (2850); + +-- Statement 589 +UPDATE player +SET sbaplayer_id = 2103 +WHERE id IN (2851,706,1712,3441,5063); + +-- Statement 590 +UPDATE player +SET sbaplayer_id = 447 +WHERE id IN (2852,707,1713,3442,4260,5877,6488,7988,9039,10364,11419); + +-- Statement 591 +UPDATE player +SET sbaplayer_id = 340 +WHERE id IN (2853,709,1715,3443,4773,5828,6399,7991,9042,9997,11053,12199); + +-- Statement 592 +UPDATE player +SET sbaplayer_id = 26 +WHERE id IN (2854,710,1716,3444,4309,5977,6745,9994,11050,12200); + +-- Statement 593 +UPDATE player +SET sbaplayer_id = 940 +WHERE id IN (2855,714,1720); + +-- Statement 594 +UPDATE player +SET sbaplayer_id = 1049 +WHERE id IN (2856,715,1721); + +-- Statement 595 +UPDATE player +SET sbaplayer_id = 1201 +WHERE id IN (2857,717,1723,3447,5065); + +-- Statement 596 +UPDATE player +SET sbaplayer_id = 1230 +WHERE id IN (2858,718,1724,12210); + +-- Statement 597 +UPDATE player +SET sbaplayer_id = 1564 +WHERE id IN (2859,719,1725,3961,4579,5280,6484,8000,9051,10003,11059,12213); + +-- Statement 598 +UPDATE player +SET sbaplayer_id = 2018 +WHERE id IN (2860,3963,4254); + +-- Statement 599 +UPDATE player +SET sbaplayer_id = 2082 +WHERE id IN (2861,723,1729,3964,4606); + +-- Statement 600 +UPDATE player +SET sbaplayer_id = 2157 +WHERE id IN (2862,724,1730); + +-- Statement 601 +UPDATE player +SET sbaplayer_id = 488 +WHERE id IN (2863,726,1732,3450,5071); + +-- Statement 602 +UPDATE player +SET sbaplayer_id = 748 +WHERE id IN (2864,729,1735,3453,5073,6090,7125); + +-- Statement 603 +UPDATE player +SET sbaplayer_id = 1953 +WHERE id IN (2865,730,1736,8009,9060,10011,11067); + +-- Statement 604 +UPDATE player +SET sbaplayer_id = 1606 +WHERE id IN (2866,731,1737,3968,4429,5353,6535,8010,9061); + +-- Statement 605 +UPDATE player +SET sbaplayer_id = 452 +WHERE id IN (2867); + +-- Statement 606 +UPDATE player +SET sbaplayer_id = 88 +WHERE id IN (2868,732,1738,3454,4275,5790,6342,8011,9062,10012,11068,12222); + +-- Statement 607 +UPDATE player +SET sbaplayer_id = 1254 +WHERE id IN (2869,733,1739,3455,5075,6196,7229,8014,9065); + +-- Statement 608 +UPDATE player +SET sbaplayer_id = 882 +WHERE id IN (2870,734,1740,5897,6672,8015,9066); + +-- Statement 609 +UPDATE player +SET sbaplayer_id = 534 +WHERE id IN (2871,735,1741,3969,5076); + +-- Statement 610 +UPDATE player +SET sbaplayer_id = 1533 +WHERE id IN (2872,736,1742,3970,4430); + +-- Statement 611 +UPDATE player +SET sbaplayer_id = 1401 +WHERE id IN (2873,737,1743,3456,5077,5905,6553,8017,9068,10016,11072,12227); + +-- Statement 612 +UPDATE player +SET sbaplayer_id = 86 +WHERE id IN (2874,738,1744,3457,4730,6079,7115,8019,9070,10017,11073,12230); + +-- Statement 613 +UPDATE player +SET sbaplayer_id = 31 +WHERE id IN (2875,740,1746,3459,4428,5849,6440,8025,9076,10023,11079,12234); + +-- Statement 614 +UPDATE player +SET sbaplayer_id = 1146 +WHERE id IN (2876,741,1747,3971,4324,5201,6307,8026,9077,10024,11080,12235); + +-- Statement 615 +UPDATE player +SET sbaplayer_id = 1753 +WHERE id IN (2877,743,1749,3460,5079,6177,7211); + +-- Statement 616 +UPDATE player +SET sbaplayer_id = 2044 +WHERE id IN (2878,744,1750,3461,4668,6097,7132); + +-- Statement 617 +UPDATE player +SET sbaplayer_id = 416 +WHERE id IN (2879,745,1751,3972,4269,5565,6939,8029,9080,10028,11084,12239); + +-- Statement 618 +UPDATE player +SET sbaplayer_id = 485 +WHERE id IN (2880,747,1753,3462,4688,5886,6656,8034,9085,10373,11428,12243); + +-- Statement 619 +UPDATE player +SET sbaplayer_id = 662 +WHERE id IN (2881,748,1754,3974,4400,5587,6961); + +-- Statement 620 +UPDATE player +SET sbaplayer_id = 729 +WHERE id IN (2882,749,1755,3463,4245,5726,6250,8035,9086,10032,11088,12244); + +-- Statement 621 +UPDATE player +SET sbaplayer_id = 1806 +WHERE id IN (2883,5335,6504,8036,9087,10033,11089,12245); + +-- Statement 622 +UPDATE player +SET sbaplayer_id = 111 +WHERE id IN (2884,750,1756,3975,4737); + +-- Statement 623 +UPDATE player +SET sbaplayer_id = 1804 +WHERE id IN (2885,751,1757,3465,4462,5948,6680); + +-- Statement 624 +UPDATE player +SET sbaplayer_id = 1929 +WHERE id IN (2886,752,1758); + +-- Statement 625 +UPDATE player +SET sbaplayer_id = 579 +WHERE id IN (2887,755,1761,3467,5081); + +-- Statement 626 +UPDATE player +SET sbaplayer_id = 1238 +WHERE id IN (2888,757,1763,3977,5083,5632,7006,8045,9096,10041,11097,12254); + +-- Statement 627 +UPDATE player +SET sbaplayer_id = 985 +WHERE id IN (2889,3979,4580,5394,6721,8046,9097,10042,11098,12255); + +-- Statement 628 +UPDATE player +SET sbaplayer_id = 2024 +WHERE id IN (2890); + +-- Statement 629 +UPDATE player +SET sbaplayer_id = 499 +WHERE id IN (2891,758,1764,3470,4641,5837,6415,8048,9099,10044,11100,12258); + +-- Statement 630 +UPDATE player +SET sbaplayer_id = 1465 +WHERE id IN (2892,760,1766,5804,6358,8050,9101,10046,11102); + +-- Statement 631 +UPDATE player +SET sbaplayer_id = 950 +WHERE id IN (2893,762,1768,3982,4711,5238,6338,8052,9103,10047,11103,12260); + +-- Statement 632 +UPDATE player +SET sbaplayer_id = 466 +WHERE id IN (2894); + +-- Statement 633 +UPDATE player +SET sbaplayer_id = 1097 +WHERE id IN (2895,763,1769,3472,4352,5769,6312,8054,9105,10048,11104,12261); + +-- Statement 634 +UPDATE player +SET sbaplayer_id = 775 +WHERE id IN (2896,764,1770,3474,4684,5979,6816,8056,9107,10050,11106,12263); + +-- Statement 635 +UPDATE player +SET sbaplayer_id = 1443 +WHERE id IN (2897,768,1774,3478,4597); + +-- Statement 636 +UPDATE player +SET sbaplayer_id = 1371 +WHERE id IN (2898,769,1775,8063,9114); + +-- Statement 637 +UPDATE player +SET sbaplayer_id = 1145 +WHERE id IN (2899,770,1776,3985,5088,5329,6497,8064,9115,10057,11113,12272); + +-- Statement 638 +UPDATE player +SET sbaplayer_id = 925 +WHERE id IN (2900,771,1777,3479,4475,5869,6469,8065,9116,12274); + +-- Statement 639 +UPDATE player +SET sbaplayer_id = 898 +WHERE id IN (2901,772,1778,3986,4362,5388,6652,8066,9117,10058,11114); + +-- Statement 640 +UPDATE player +SET sbaplayer_id = 212 +WHERE id IN (2902,773,1779,3987,4522,5371,6556,8067,9118,10059,11115); + +-- Statement 641 +UPDATE player +SET sbaplayer_id = 1674 +WHERE id IN (2903,774,1780,3988,4617,5294,6437); + +-- Statement 642 +UPDATE player +SET sbaplayer_id = 2036 +WHERE id IN (2904,775,1781); + +-- Statement 643 +UPDATE player +SET sbaplayer_id = 1577 +WHERE id IN (2905,777,1783,3989,4766); + +-- Statement 644 +UPDATE player +SET sbaplayer_id = 578 +WHERE id IN (2906,779,1785,3992,5091); + +-- Statement 645 +UPDATE player +SET sbaplayer_id = 779 +WHERE id IN (2907,780,1786,3482,4385,5876,6486,8073,9124,10067,11123,12281); + +-- Statement 646 +UPDATE player +SET sbaplayer_id = 1620 +WHERE id IN (2908,781,1787,3993,5092,5183,6222,8074,9125,12282); + +-- Statement 647 +UPDATE player +SET sbaplayer_id = 782 +WHERE id IN (2909,784,1790,3995,5094,5497,6818); + +-- Statement 648 +UPDATE player +SET sbaplayer_id = 1912 +WHERE id IN (2910,3997,5096); + +-- Statement 649 +UPDATE player +SET sbaplayer_id = 1538 +WHERE id IN (2911,787,1793,3483,4681,6091,7126,8077,9128); + +-- Statement 650 +UPDATE player +SET sbaplayer_id = 319 +WHERE id IN (2912,788,1794,3484,4407,8078,9129); + +-- Statement 651 +UPDATE player +SET sbaplayer_id = 373 +WHERE id IN (2913,789,1795,3485,5097,5964,6707,8079,9130); + +-- Statement 652 +UPDATE player +SET sbaplayer_id = 1595 +WHERE id IN (2914,791,1797,3486,5098,8081,9132); + +-- Statement 653 +UPDATE player +SET sbaplayer_id = 12 +WHERE id IN (2915,792,1798,3487,4166,5713,6233,8084,9135,10073,11129,12288); + +-- Statement 654 +UPDATE player +SET sbaplayer_id = 799 +WHERE id IN (2916,793,1799,3488,4572); + +-- Statement 655 +UPDATE player +SET sbaplayer_id = 1672 +WHERE id IN (2917,794,1800); + +-- Statement 656 +UPDATE player +SET sbaplayer_id = 883 +WHERE id IN (2918,795,1801); + +-- Statement 657 +UPDATE player +SET sbaplayer_id = 1927 +WHERE id IN (2919,797,1803,4000,5100,5414,6777,8087,9138,10075,11131,12290); + +-- Statement 658 +UPDATE player +SET sbaplayer_id = 1451 +WHERE id IN (2920,798,1804,3489,5101,6016,6824,8088,9139,10380,11435); + +-- Statement 659 +UPDATE player +SET sbaplayer_id = 1213 +WHERE id IN (2921,801,1807); + +-- Statement 660 +UPDATE player +SET sbaplayer_id = 222 +WHERE id IN (2922,4002,4386,8091,9142,10078,11134); + +-- Statement 661 +UPDATE player +SET sbaplayer_id = 242 +WHERE id IN (2923,802,1808,4003,4581,8092,9143,10079,11135,12294); + +-- Statement 662 +UPDATE player +SET sbaplayer_id = 244 +WHERE id IN (2924,803,1809,3491,4757); + +-- Statement 663 +UPDATE player +SET sbaplayer_id = 276 +WHERE id IN (2925,804,1810,4004,5102); + +-- Statement 664 +UPDATE player +SET sbaplayer_id = 621 +WHERE id IN (2926); + +-- Statement 665 +UPDATE player +SET sbaplayer_id = 1086 +WHERE id IN (2927); + +-- Statement 666 +UPDATE player +SET sbaplayer_id = 1180 +WHERE id IN (2928); + +-- Statement 667 +UPDATE player +SET sbaplayer_id = 1286 +WHERE id IN (2929,810,1816,3494,4602,5775,6319,8098,9149,10084,11140,12301); + +-- Statement 668 +UPDATE player +SET sbaplayer_id = 1453 +WHERE id IN (2930,811,1817,3496,5105,6180,6905,8100,9151,10087,11143,12304); + +-- Statement 669 +UPDATE player +SET sbaplayer_id = 1584 +WHERE id IN (2931,812,1818,4007,4644,5303,6451,8102,9153,10089,11145,12306); + +-- Statement 670 +UPDATE player +SET sbaplayer_id = 1719 +WHERE id IN (2932); + +-- Statement 671 +UPDATE player +SET sbaplayer_id = 1974 +WHERE id IN (2933,4009,4696,5308,6458,8103,9154); + +-- Statement 672 +UPDATE player +SET sbaplayer_id = 2208 +WHERE id IN (2934,814,1820,4012,4345,5693,7067,8105,9156,10091,11147,12310); + +-- Statement 673 +UPDATE player +SET sbaplayer_id = 2229 +WHERE id IN (2935,815,1821,5874,6479); + +-- Statement 674 +UPDATE player +SET sbaplayer_id = 1892 +WHERE id IN (2936,817,1823,4014,5108,5479,6788,8106,9157,10093,11149,12313); + +-- Statement 675 +UPDATE player +SET sbaplayer_id = 842 +WHERE id IN (2937,818,1824,3497,5109); + +-- Statement 676 +UPDATE player +SET sbaplayer_id = 1700 +WHERE id IN (2938); + +-- Statement 677 +UPDATE player +SET sbaplayer_id = 1534 +WHERE id IN (2939,3498,4140,5743,6273,8107,9158,10095,11151,12315); + +-- Statement 678 +UPDATE player +SET sbaplayer_id = 554 +WHERE id IN (2940,820,1826); + +-- Statement 679 +UPDATE player +SET sbaplayer_id = 653 +WHERE id IN (2941); + +-- Statement 680 +UPDATE player +SET sbaplayer_id = 707 +WHERE id IN (2942,821,1827); + +-- Statement 681 +UPDATE player +SET sbaplayer_id = 1871 +WHERE id IN (2943); + +-- Statement 682 +UPDATE player +SET sbaplayer_id = 1115 +WHERE id IN (2944,826,1832,3502,5111,6144,7179,8115,9166); + +-- Statement 683 +UPDATE player +SET sbaplayer_id = 710 +WHERE id IN (2945,827,1833); + +-- Statement 684 +UPDATE player +SET sbaplayer_id = 36 +WHERE id IN (2946,4019,4620,10104,11160,12321); + +-- Statement 685 +UPDATE player +SET sbaplayer_id = 1048 +WHERE id IN (2947,830,1836,3505,5113); + +-- Statement 686 +UPDATE player +SET sbaplayer_id = 1448 +WHERE id IN (2948,831,1837); + +-- Statement 687 +UPDATE player +SET sbaplayer_id = 1772 +WHERE id IN (2949,832,1838); + +-- Statement 688 +UPDATE player +SET sbaplayer_id = 528 +WHERE id IN (2950,833,1839,4021,5114,5430,6764); + +-- Statement 689 +UPDATE player +SET sbaplayer_id = 1189 +WHERE id IN (2951,834,1840,4022,4685,5265,6463,8121,9172,10107,11163,12328); + +-- Statement 690 +UPDATE player +SET sbaplayer_id = 1419 +WHERE id IN (2952,836,1842,4023,5115,5506,6870); + +-- Statement 691 +UPDATE player +SET sbaplayer_id = 1671 +WHERE id IN (2953,838,1844); + +-- Statement 692 +UPDATE player +SET sbaplayer_id = 524 +WHERE id IN (2954,8126,9177,10111,11167,12332); + +-- Statement 693 +UPDATE player +SET sbaplayer_id = 1705 +WHERE id IN (2955,839,1845,4026,5118,5532,6898); + +-- Statement 694 +UPDATE player +SET sbaplayer_id = 1165 +WHERE id IN (2956,841,1847,4028,4657,5418,6746,8130,9181,10113,11169,12334); + +-- Statement 695 +UPDATE player +SET sbaplayer_id = 194 +WHERE id IN (2957,842,1848,4029,4141,5198,6255,8133,9184,10115,11171); + +-- Statement 696 +UPDATE player +SET sbaplayer_id = 326 +WHERE id IN (2958); + +-- Statement 697 +UPDATE player +SET sbaplayer_id = 769 +WHERE id IN (2959,843,1849,4030,4393); + +-- Statement 698 +UPDATE player +SET sbaplayer_id = 378 +WHERE id IN (2960,850,1856,3510,4750); + +-- Statement 699 +UPDATE player +SET sbaplayer_id = 1455 +WHERE id IN (2961,851,1857,3512,4763,5173,6209,8138,9189,10121,11177,12341); + +-- Statement 700 +UPDATE player +SET sbaplayer_id = 765 +WHERE id IN (2962,852,1858,4035,4582,5213,6335,8140,9191,10385,11440,12346); + +-- Statement 701 +UPDATE player +SET sbaplayer_id = 1037 +WHERE id IN (2963); + +-- Statement 702 +UPDATE player +SET sbaplayer_id = 348 +WHERE id IN (2964,854,1860,3513,4375,5910,6568); + +-- Statement 703 +UPDATE player +SET sbaplayer_id = 1208 +WHERE id IN (2965,855,1861,3514,4413,5727,6251,8146,9197,10126,11182,12354); + +-- Statement 704 +UPDATE player +SET sbaplayer_id = 1563 +WHERE id IN (2966,857,1863,3515,5123,6069,7105,8147,9198); + +-- Statement 705 +UPDATE player +SET sbaplayer_id = 1921 +WHERE id IN (2967,858,1864); + +-- Statement 706 +UPDATE player +SET sbaplayer_id = 381 +WHERE id IN (2968,860,1866,4040,5126,5390,6607,8149,9200); + +-- Statement 707 +UPDATE player +SET sbaplayer_id = 1512 +WHERE id IN (2969,861,1867); + +-- Statement 708 +UPDATE player +SET sbaplayer_id = 243 +WHERE id IN (2970,862,1868,4041,4554,5495,6856); + +-- Statement 709 +UPDATE player +SET sbaplayer_id = 543 +WHERE id IN (2971,863,1869,3517,5127,5756,6475,8150,9201); + +-- Statement 710 +UPDATE player +SET sbaplayer_id = 1243 +WHERE id IN (2972,864,1870,4042,5128,5326,6547,8152,9203,10129,11185,12357); + +-- Statement 711 +UPDATE player +SET sbaplayer_id = 1881 +WHERE id IN (2973,3518,5129); + +-- Statement 712 +UPDATE player +SET sbaplayer_id = 1273 +WHERE id IN (2974,866,1872,4058,4748,5287,6571,8177,9228,12383); + +-- Statement 713 +UPDATE player +SET sbaplayer_id = 1659 +WHERE id IN (2975,868,1874,4046,5130); + +-- Statement 714 +UPDATE player +SET sbaplayer_id = 1788 +WHERE id IN (2976,869,1875,4047,4196,5662,7036,8161,9212,10139,11195,12368); + +-- Statement 715 +UPDATE player +SET sbaplayer_id = 1689 +WHERE id IN (2977,873,1879,4052,5133,5459,6727,8165,9216,10143,11199,12372); + +-- Statement 716 +UPDATE player +SET sbaplayer_id = 2116 +WHERE id IN (2978,3520,5134,5935,6641,8168,9219,10145,11201,12374); + +-- Statement 717 +UPDATE player +SET sbaplayer_id = 2155 +WHERE id IN (2979,4054,5135); + +-- Statement 718 +UPDATE player +SET sbaplayer_id = 788 +WHERE id IN (2980,874,1880); + +-- Statement 719 +UPDATE player +SET sbaplayer_id = 873 +WHERE id IN (2981,875,1881,3521,4318,5782,6329,8169,9220,10146,11202,12375); + +-- Statement 720 +UPDATE player +SET sbaplayer_id = 1494 +WHERE id IN (2982,877,1883); + +-- Statement 721 +UPDATE player +SET sbaplayer_id = 73 +WHERE id IN (2983,878,1884,3523,4168,5728,6254,8172,9223,10149,11205,12378); + +-- Statement 722 +UPDATE player +SET sbaplayer_id = 161 +WHERE id IN (2984,879,1885); + +-- Statement 723 +UPDATE player +SET sbaplayer_id = 402 +WHERE id IN (2985); + +-- Statement 724 +UPDATE player +SET sbaplayer_id = 900 +WHERE id IN (2986,881,1887,4057,5137,5604,6978,8173,9224,10150,11206,12380); + +-- Statement 725 +UPDATE player +SET sbaplayer_id = 1253 +WHERE id IN (2987,884,1890,5398,6619,8175,9226,10151,11207,12381); + +-- Statement 726 +UPDATE player +SET sbaplayer_id = 647 +WHERE id IN (2988,886,1892,3526,4686); + +-- Statement 727 +UPDATE player +SET sbaplayer_id = 1388 +WHERE id IN (2989,888,1894,5926,6720,10154,11210); + +-- Statement 728 +UPDATE player +SET sbaplayer_id = 941 +WHERE id IN (2990,4061,4523,10157,11213); + +-- Statement 729 +UPDATE player +SET sbaplayer_id = 1082 +WHERE id IN (2991,892,1898,3529,4567,5991,6834,8181,9232); + +-- Statement 730 +UPDATE player +SET sbaplayer_id = 1552 +WHERE id IN (2992,894,1900,3530,5140,5939,6743,8183,9234,10159,11215,12390); + +-- Statement 731 +UPDATE player +SET sbaplayer_id = 1027 +WHERE id IN (2993,896,1902,3531,5141,5732,6259,8185,9236,10161,11217); + +-- Statement 732 +UPDATE player +SET sbaplayer_id = 1829 +WHERE id IN (2994); + +-- Statement 733 +UPDATE player +SET sbaplayer_id = 2122 +WHERE id IN (2995,897,1903,4064,4741,5432,6669); + +-- Statement 734 +UPDATE player +SET sbaplayer_id = 2187 +WHERE id IN (2996,898,1904,3532,5142); + +-- Statement 735 +UPDATE player +SET sbaplayer_id = 967 +WHERE id IN (2997,3535,5145,5936,6642,10164,11220,12394); + +-- Statement 736 +UPDATE player +SET sbaplayer_id = 1809 +WHERE id IN (2998,902,1908,3536,4728,6162,7197); + +-- Statement 737 +UPDATE player +SET sbaplayer_id = 1 +WHERE id IN (2999,903,1909,3537,4223,5711,6231,8189,9240,10165,11221,12395); + +-- Statement 738 +UPDATE player +SET sbaplayer_id = 150 +WHERE id IN (3000,906,1912,4068,4162,5199,6258); + +-- Statement 739 +UPDATE player +SET sbaplayer_id = 304 +WHERE id IN (3001,907,1913,4069,4456,5556,6930); + +-- Statement 740 +UPDATE player +SET sbaplayer_id = 897 +WHERE id IN (3002); + +-- Statement 741 +UPDATE player +SET sbaplayer_id = 1248 +WHERE id IN (3003,909,1915,4071,4755,5490,6806,8194,9245,10170,11226); + +-- Statement 742 +UPDATE player +SET sbaplayer_id = 1646 +WHERE id IN (3004,910,1916,4072,5147,5380,6573,8196,9247,10172,11228,12400); + +-- Statement 743 +UPDATE player +SET sbaplayer_id = 1914 +WHERE id IN (3005,911,1917,3539,4224,5763,6302,8199,9250,10173,11229,12402); + +-- Statement 744 +UPDATE player +SET sbaplayer_id = 2156 +WHERE id IN (3006,912,1918,4075,5149,5488,6864,8200,9251,10174,11230,12403); + +-- Statement 745 +UPDATE player +SET sbaplayer_id = 1190 +WHERE id IN (3007,913,1919,5988,6772,8201,9252,10175,11231); + +-- Statement 746 +UPDATE player +SET sbaplayer_id = 135 +WHERE id IN (3008,915,1921,3540,4270,6021,6865,8204,9255,10393,11448,12409); + +-- Statement 747 +UPDATE player +SET sbaplayer_id = 202 +WHERE id IN (3009,916,1922,8207,9258,10180,11236,12410); + +-- Statement 748 +UPDATE player +SET sbaplayer_id = 68 +WHERE id IN (3010,4079,4659,5384,6744,8210,9261,10183,11239,12413); + +-- Statement 749 +UPDATE player +SET sbaplayer_id = 103 +WHERE id IN (3011,920,1926); + +-- Statement 750 +UPDATE player +SET sbaplayer_id = 144 +WHERE id IN (3012,4080,5151); + +-- Statement 751 +UPDATE player +SET sbaplayer_id = 369 +WHERE id IN (3013,922,1928,4081,5152,5560,6934); + +-- Statement 752 +UPDATE player +SET sbaplayer_id = 393 +WHERE id IN (3014,923,1929,4082,4633,5338,6663); + +-- Statement 753 +UPDATE player +SET sbaplayer_id = 630 +WHERE id IN (3015,925,1931,3542,4551); + +-- Statement 754 +UPDATE player +SET sbaplayer_id = 726 +WHERE id IN (3016,926,1932,4084,4509,5208,6271,10185,11241,12417); + +-- Statement 755 +UPDATE player +SET sbaplayer_id = 1183 +WHERE id IN (3017,928,1934,4086,4474,5194,6472,8218,9269,10394,11449); + +-- Statement 756 +UPDATE player +SET sbaplayer_id = 1460 +WHERE id IN (3018,931,1937); + +-- Statement 757 +UPDATE player +SET sbaplayer_id = 1463 +WHERE id IN (3019,930,1936,3545,4460,5701,6216,8223,9274,10188,11244,12421); + +-- Statement 758 +UPDATE player +SET sbaplayer_id = 1832 +WHERE id IN (3020,933,1939); + +-- Statement 759 +UPDATE player +SET sbaplayer_id = 2141 +WHERE id IN (3021,936,1942); + +-- Statement 760 +UPDATE player +SET sbaplayer_id = 1714 +WHERE id IN (3022,937,1943); + +-- Statement 761 +UPDATE player +SET sbaplayer_id = 83 +WHERE id IN (3023,8230,9281); + +-- Statement 762 +UPDATE player +SET sbaplayer_id = 325 +WHERE id IN (3024,939,1945,3550,5155,6052,7088,8231,9282,10196,11252,12432); + +-- Statement 763 +UPDATE player +SET sbaplayer_id = 1221 +WHERE id IN (3025); + +-- Statement 764 +UPDATE player +SET sbaplayer_id = 1638 +WHERE id IN (3026,940,1946,3551,4647,6022,6873,8232,9283); + +-- Statement 765 +UPDATE player +SET sbaplayer_id = 2065 +WHERE id IN (3027,942,1948,4093,4610,5676,7050,8236,9287,10197,11253); + +-- Statement 766 +UPDATE player +SET sbaplayer_id = 468 +WHERE id IN (3028,944,1950,5569,6943); + +-- Statement 767 +UPDATE player +SET sbaplayer_id = 1104 +WHERE id IN (3029,945,1951,4094,5158,5486,6848); + +-- Statement 768 +UPDATE player +SET sbaplayer_id = 1318 +WHERE id IN (3030,946,1952,4095,5159,5184,6223,8240,9291,10200,11256); + +-- Statement 769 +UPDATE player +SET sbaplayer_id = 277 +WHERE id IN (3031,947,1953,4096,4634,5187,6234,8241,9292,12440); + +-- Statement 770 +UPDATE player +SET sbaplayer_id = 1940 +WHERE id IN (3032,949,1955,4098,4512,5669,7043); + +-- Statement 771 +UPDATE player +SET sbaplayer_id = 1524 +WHERE id IN (3033,950,1956,4099,4679,5391,6716,8243,9294,10202,11258,12441); + +-- Statement 772 +UPDATE player +SET sbaplayer_id = 372 +WHERE id IN (3034,952,1958); + +-- Statement 773 +UPDATE player +SET sbaplayer_id = 343 +WHERE id IN (3035,953,1959); + +-- Statement 774 +UPDATE player +SET sbaplayer_id = 1309 +WHERE id IN (3036,955,1961,3555,4611,5846,6434,8244,9295,10203,11259,12444); + +-- Statement 775 +UPDATE player +SET sbaplayer_id = 1395 +WHERE id IN (3037,956,1962,3556,4267,5970,6728,8246,9297,10398,11453); + +-- Statement 776 +UPDATE player +SET sbaplayer_id = 825 +WHERE id IN (3038,959,1965,4102,4537); + +-- Statement 777 +UPDATE player +SET sbaplayer_id = 1843 +WHERE id IN (3039,960,1966,4103,4660,5331,6498,8250,9301,12448); + +-- Statement 778 +UPDATE player +SET sbaplayer_id = 307 +WHERE id IN (3040,963,1969,3560,5162,6053,7089,10399,11454,12453); + +-- Statement 779 +UPDATE player +SET sbaplayer_id = 410 +WHERE id IN (3041,964,1970,3561,4505,5735,6261,8254,9305,10211,11267,12454); + +-- Statement 780 +UPDATE player +SET sbaplayer_id = 14 +WHERE id IN (3042,965,1971,3562,4225,5753,6289,8255,9306,10212,11268,12455); + +-- Statement 781 +UPDATE player +SET sbaplayer_id = 516 +WHERE id IN (3043,966,1972,6092,7127); + +-- Statement 782 +UPDATE player +SET sbaplayer_id = 627 +WHERE id IN (3044,967,1973,3563,4403,5888,6507,8256,9307,10213,11269,12456); + +-- Statement 783 +UPDATE player +SET sbaplayer_id = 1523 +WHERE id IN (3045,970,1976,5232,6558,8257,9308); + +-- Statement 784 +UPDATE player +SET sbaplayer_id = 216 +WHERE id IN (3046,971,1977,3566,4358,5742,6270,8259,9310,10215,11271,12459); + +-- Statement 785 +UPDATE player +SET sbaplayer_id = 1650 +WHERE id IN (3047,5345,6670); + +-- Statement 786 +UPDATE player +SET sbaplayer_id = 1656 +WHERE id IN (3048,972,1978); + +-- Statement 787 +UPDATE player +SET sbaplayer_id = 1344 +WHERE id IN (3049,973,1979,3568,4674,5890,6513,8261,9312); + +-- Statement 788 +UPDATE player +SET sbaplayer_id = 1383 +WHERE id IN (3050,974,1980,3569,4143,8262,9313); + +-- Statement 789 +UPDATE player +SET sbaplayer_id = 731 +WHERE id IN (3051,975,1981,3570,4356,5776,6322,8263,9314,10219,11275,12463); + +-- Statement 790 +UPDATE player +SET sbaplayer_id = 1869 +WHERE id IN (3052,977,1983); + +-- Statement 791 +UPDATE player +SET sbaplayer_id = 1590 +WHERE id IN (3053,978,1984); + +-- Statement 792 +UPDATE player +SET sbaplayer_id = 761 +WHERE id IN (3054,979,1985,3572,4527,5715,6236,8265,9316,10221,11277,12466); + +-- Statement 793 +UPDATE player +SET sbaplayer_id = 1607 +WHERE id IN (3055); + +-- Statement 794 +UPDATE player +SET sbaplayer_id = 1348 +WHERE id IN (3056,983,1989,3573,4612,5786,6334,8270,9321,10225,11281); + +-- Statement 795 +UPDATE player +SET sbaplayer_id = 360 +WHERE id IN (3057,3574,5166); + +-- Statement 796 +UPDATE player +SET sbaplayer_id = 1744 +WHERE id IN (3058,984,1990,3575,4126); + +-- Statement 797 +UPDATE player +SET sbaplayer_id = 52 +WHERE id IN (3059,986,1992); + +-- Statement 798 +UPDATE player +SET sbaplayer_id = 374 +WHERE id IN (3060,987,1993,4109,4347,10246,11302,12471); + +-- Statement 799 +UPDATE player +SET sbaplayer_id = 904 +WHERE id IN (3061,989,1995,4110,5167); + +-- Statement 800 +UPDATE player +SET sbaplayer_id = 671 +WHERE id IN (3062); + +-- Statement 801 +UPDATE player +SET sbaplayer_id = 793 +WHERE id IN (3063,992,1998,3577,5168,5799,6352,8277,9328,10229,11285,12476); + +-- Statement 802 +UPDATE player +SET sbaplayer_id = 1549 +WHERE id IN (3064,994,2000,4113,4374,5458,6723); + +-- Statement 803 +UPDATE player +SET sbaplayer_id = 545 +WHERE id IN (3065); + +-- Statement 804 +UPDATE player +SET sbaplayer_id = 562 +WHERE id IN (3066,998,2004,4117,4252,5243,6524,8282,9333,10234,11290,12482); + +-- Statement 805 +UPDATE player +SET sbaplayer_id = 260 +WHERE id IN (3067,1000,2006,4119,4507); + +-- Statement 806 +UPDATE player +SET sbaplayer_id = 428 +WHERE id IN (3068,1002,2008); + +-- Statement 807 +UPDATE player +SET sbaplayer_id = 727 +WHERE id IN (3069,1003,2009,4121,5172); + +-- Statement 808 +UPDATE player +SET sbaplayer_id = 774 +WHERE id IN (3070,1004,2010,4122,4431,5437,6676,8290,9341,10241,11297); + +-- Statement 809 +UPDATE player +SET sbaplayer_id = 2139 +WHERE id IN (3071,1006,2012,4123,4145,5178,6212,8293,9344,10245,11301,12490); + +-- Statement 810 +UPDATE player +SET sbaplayer_id = 399 +WHERE id IN (1,1007,3593,4314); + +-- Statement 811 +UPDATE player +SET sbaplayer_id = 262 +WHERE id IN (5,1011); + +-- Statement 812 +UPDATE player +SET sbaplayer_id = 383 +WHERE id IN (7,1013,3580,4689,5270,6398,7242,8297,9347,10404,11459); + +-- Statement 813 +UPDATE player +SET sbaplayer_id = 2001 +WHERE id IN (12,1018,3074,4774,5879,6638,7248,8303,11464); + +-- Statement 814 +UPDATE player +SET sbaplayer_id = 1296 +WHERE id IN (13,1019); + +-- Statement 815 +UPDATE player +SET sbaplayer_id = 380 +WHERE id IN (15,1021,3584,4706,5337,6511,7249,8304,11465); + +-- Statement 816 +UPDATE player +SET sbaplayer_id = 837 +WHERE id IN (21,1027,3080,4776); + +-- Statement 817 +UPDATE player +SET sbaplayer_id = 1567 +WHERE id IN (26,1032,3588,4738,5650,7024); + +-- Statement 818 +UPDATE player +SET sbaplayer_id = 2099 +WHERE id IN (27,1033,3589,4642,5283,6418,7255,8310,9356,10413); + +-- Statement 819 +UPDATE player +SET sbaplayer_id = 928 +WHERE id IN (31,1037,3591,4779,5311,6510,7258,8313,9360,10417,11475); + +-- Statement 820 +UPDATE player +SET sbaplayer_id = 1742 +WHERE id IN (32,1038,5260,6539,7261,8316); + +-- Statement 821 +UPDATE player +SET sbaplayer_id = 1330 +WHERE id IN (35,1041,3595,4734,5639,7013); + +-- Statement 822 +UPDATE player +SET sbaplayer_id = 512 +WHERE id IN (41,1047,3090,4484,6161,7196); + +-- Statement 823 +UPDATE player +SET sbaplayer_id = 1288 +WHERE id IN (43,1049); + +-- Statement 824 +UPDATE player +SET sbaplayer_id = 2069 +WHERE id IN (44,1050,3092,4197,5898,6530,7284,8339,9380,10437,11492); + +-- Statement 825 +UPDATE player +SET sbaplayer_id = 2217 +WHERE id IN (46,1052,3601,4785,5694,7068,7287,8342,9383,10440); + +-- Statement 826 +UPDATE player +SET sbaplayer_id = 1057 +WHERE id IN (54,1060,3606,4376,5292,6426,7301,8356,11507); + +-- Statement 827 +UPDATE player +SET sbaplayer_id = 145 +WHERE id IN (60,1066,3612,4531,5531,6897,7310,8365,9406,10462); + +-- Statement 828 +UPDATE player +SET sbaplayer_id = 1764 +WHERE id IN (64,1070,3108,4191,6023,6893,7316,8371,9409,10465,11523); + +-- Statement 829 +UPDATE player +SET sbaplayer_id = 81 +WHERE id IN (69,1075,3109,4796,6101,7136,7319,8374); + +-- Statement 830 +UPDATE player +SET sbaplayer_id = 2186 +WHERE id IN (72,1078,3619,4797); + +-- Statement 831 +UPDATE player +SET sbaplayer_id = 16 +WHERE id IN (73,1079,5527,6891,9412,10468,11526); + +-- Statement 832 +UPDATE player +SET sbaplayer_id = 47 +WHERE id IN (74,1080,3111,4799); + +-- Statement 833 +UPDATE player +SET sbaplayer_id = 253 +WHERE id IN (76,1082,3621,4800); + +-- Statement 834 +UPDATE player +SET sbaplayer_id = 483 +WHERE id IN (77,1083); + +-- Statement 835 +UPDATE player +SET sbaplayer_id = 839 +WHERE id IN (78,1084,3113,4354,5815,6536,7325,8380,9416,10472,11529); + +-- Statement 836 +UPDATE player +SET sbaplayer_id = 1290 +WHERE id IN (80,1086,3115,4713,5904,6552,7327,8382); + +-- Statement 837 +UPDATE player +SET sbaplayer_id = 1432 +WHERE id IN (81,1087,3116,4329,5862,6461,7328,8383,10259,11315); + +-- Statement 838 +UPDATE player +SET sbaplayer_id = 1649 +WHERE id IN (83,1089,3117,4803,5724,6247,7330,8385,9418,10474,11532); + +-- Statement 839 +UPDATE player +SET sbaplayer_id = 2091 +WHERE id IN (86,1092,3624,4702,5678,7052,7333,8388,9420,10476,11534); + +-- Statement 840 +UPDATE player +SET sbaplayer_id = 190 +WHERE id IN (98,1104,3124,4286,5733,6260,7343,8398,9429,10485,11550); + +-- Statement 841 +UPDATE player +SET sbaplayer_id = 1322 +WHERE id IN (103,1109,3126,4453,6004,6802,7349,8404,10266,11322); + +-- Statement 842 +UPDATE player +SET sbaplayer_id = 2150 +WHERE id IN (105,1111); + +-- Statement 843 +UPDATE player +SET sbaplayer_id = 1059 +WHERE id IN (106,1112); + +-- Statement 844 +UPDATE player +SET sbaplayer_id = 249 +WHERE id IN (108,1114,3638,4563); + +-- Statement 845 +UPDATE player +SET sbaplayer_id = 535 +WHERE id IN (111,1117,3131,4812,5943,6666,7354,8409,9440,10496,11562); + +-- Statement 846 +UPDATE player +SET sbaplayer_id = 1156 +WHERE id IN (113,1119,3132,4183,5748,6284,7356,8411,9441,10497,11563); + +-- Statement 847 +UPDATE player +SET sbaplayer_id = 2196 +WHERE id IN (115,1121,3641,4234,5189,6237,7359,8414,9446,10502); + +-- Statement 848 +UPDATE player +SET sbaplayer_id = 2198 +WHERE id IN (116,1122,3642,4813,5691,7065); + +-- Statement 849 +UPDATE player +SET sbaplayer_id = 1280 +WHERE id IN (117,1123); + +-- Statement 850 +UPDATE player +SET sbaplayer_id = 1668 +WHERE id IN (118,1124,3134,4815,5902,6550,7363,8418,9450,10506,11573); + +-- Statement 851 +UPDATE player +SET sbaplayer_id = 1218 +WHERE id IN (122,1128,3646,4482,5489,6805,7365,8420); + +-- Statement 852 +UPDATE player +SET sbaplayer_id = 749 +WHERE id IN (127,1133,3140,4818,6186,7219); + +-- Statement 853 +UPDATE player +SET sbaplayer_id = 284 +WHERE id IN (130,1136,7369,8424,9460,10516,11585); + +-- Statement 854 +UPDATE player +SET sbaplayer_id = 1908 +WHERE id IN (132,1138,9461,10517); + +-- Statement 855 +UPDATE player +SET sbaplayer_id = 1641 +WHERE id IN (134,1140,3143,4618,5722,6245,7376,8431,9468,10524,11595); + +-- Statement 856 +UPDATE player +SET sbaplayer_id = 1894 +WHERE id IN (137,1143,3145,4822); + +-- Statement 857 +UPDATE player +SET sbaplayer_id = 223 +WHERE id IN (139,1145); + +-- Statement 858 +UPDATE player +SET sbaplayer_id = 295 +WHERE id IN (141,1147,3146,4130,5697,6208,7385,8440,9477,10533,11607); + +-- Statement 859 +UPDATE player +SET sbaplayer_id = 1593 +WHERE id IN (143,1149,3654,4373,5209,6272,7386,8441,9479,10535,11610); + +-- Statement 860 +UPDATE player +SET sbaplayer_id = 605 +WHERE id IN (144,1150,3656,4677,7389,8444,9481,10537,11612); + +-- Statement 861 +UPDATE player +SET sbaplayer_id = 1250 +WHERE id IN (148,1154,3148,4824); + +-- Statement 862 +UPDATE player +SET sbaplayer_id = 585 +WHERE id IN (151,1157,3662,4825,5487,6850,7398,8453,9488,10544,11619); + +-- Statement 863 +UPDATE player +SET sbaplayer_id = 667 +WHERE id IN (157,1163,3666,4467,11624); + +-- Statement 864 +UPDATE player +SET sbaplayer_id = 1023 +WHERE id IN (158,1164,3151,4829,5814,6375,7402,8457,9494,10550,11625); + +-- Statement 865 +UPDATE player +SET sbaplayer_id = 1736 +WHERE id IN (159,1165,3668,4831,5203,6264); + +-- Statement 866 +UPDATE player +SET sbaplayer_id = 196 +WHERE id IN (160,1166,3153,4299,5985,6823,7403,8458,9496,10552,11629); + +-- Statement 867 +UPDATE player +SET sbaplayer_id = 1589 +WHERE id IN (164,1170); + +-- Statement 868 +UPDATE player +SET sbaplayer_id = 1863 +WHERE id IN (168,1174); + +-- Statement 869 +UPDATE player +SET sbaplayer_id = 456 +WHERE id IN (176,1182); + +-- Statement 870 +UPDATE player +SET sbaplayer_id = 737 +WHERE id IN (177,1183,3678,4712,5592,6966); + +-- Statement 871 +UPDATE player +SET sbaplayer_id = 146 +WHERE id IN (179,1185,3679,4188,5214,6275,7418,8473,9506,10562,11638); + +-- Statement 872 +UPDATE player +SET sbaplayer_id = 1483 +WHERE id IN (186,1192,3682,4698,5647,7021,11642); + +-- Statement 873 +UPDATE player +SET sbaplayer_id = 2104 +WHERE id IN (191,1197,3167,4619,5999,6843,7426,8481,9516,10572,11651); + +-- Statement 874 +UPDATE player +SET sbaplayer_id = 1910 +WHERE id IN (193,1199,3169,4840); + +-- Statement 875 +UPDATE player +SET sbaplayer_id = 919 +WHERE id IN (195,1201,5387,6586,7434,8489,9523,10579,11658); + +-- Statement 876 +UPDATE player +SET sbaplayer_id = 649 +WHERE id IN (198,1204,3171,4186,6143,7178,10281,11337); + +-- Statement 877 +UPDATE player +SET sbaplayer_id = 1895 +WHERE id IN (200,1206,3689,4583); + +-- Statement 878 +UPDATE player +SET sbaplayer_id = 954 +WHERE id IN (202,1208,5431,6765,7439,8494,9527,10583,11662); + +-- Statement 879 +UPDATE player +SET sbaplayer_id = 2022 +WHERE id IN (203,1209,3173,4843,6171,7205,7443,8498); + +-- Statement 880 +UPDATE player +SET sbaplayer_id = 1568 +WHERE id IN (205,1211,7446,8501,9531,10587,11666); + +-- Statement 881 +UPDATE player +SET sbaplayer_id = 252 +WHERE id IN (207,1213,3692,4732,11670); + +-- Statement 882 +UPDATE player +SET sbaplayer_id = 997 +WHERE id IN (208,1214); + +-- Statement 883 +UPDATE player +SET sbaplayer_id = 1794 +WHERE id IN (212,1218,3176,4233,5725,6248,7459,8514,9541,10597,11679); + +-- Statement 884 +UPDATE player +SET sbaplayer_id = 708 +WHERE id IN (213,1219); + +-- Statement 885 +UPDATE player +SET sbaplayer_id = 762 +WHERE id IN (218,1224); + +-- Statement 886 +UPDATE player +SET sbaplayer_id = 934 +WHERE id IN (219,1225,3703,4477,7467,8522,9549,10605,11687); + +-- Statement 887 +UPDATE player +SET sbaplayer_id = 933 +WHERE id IN (224,1230,3710,4851,5435,6675,7473,8528,11691); + +-- Statement 888 +UPDATE player +SET sbaplayer_id = 1574 +WHERE id IN (229,1235,3713,4853,5651,7025); + +-- Statement 889 +UPDATE player +SET sbaplayer_id = 2085 +WHERE id IN (232,1238,3180,4855,6157,7192,7469,8524,9556,10612,11694); + +-- Statement 890 +UPDATE player +SET sbaplayer_id = 1760 +WHERE id IN (235,1241,3183,4856,6160,7195); + +-- Statement 891 +UPDATE player +SET sbaplayer_id = 23 +WHERE id IN (237,1243); + +-- Statement 892 +UPDATE player +SET sbaplayer_id = 877 +WHERE id IN (238,1244,3716,4220,5349,6674); + +-- Statement 893 +UPDATE player +SET sbaplayer_id = 805 +WHERE id IN (243,1249,3717,4405,5596,6970); + +-- Statement 894 +UPDATE player +SET sbaplayer_id = 1279 +WHERE id IN (246,1252); + +-- Statement 895 +UPDATE player +SET sbaplayer_id = 1554 +WHERE id IN (248,1254,3719,4694,7492,8546); + +-- Statement 896 +UPDATE player +SET sbaplayer_id = 1166 +WHERE id IN (250,1256); + +-- Statement 897 +UPDATE player +SET sbaplayer_id = 618 +WHERE id IN (255,1261,3195,4865); + +-- Statement 898 +UPDATE player +SET sbaplayer_id = 1098 +WHERE id IN (257,1263,9571,10627,11720); + +-- Statement 899 +UPDATE player +SET sbaplayer_id = 1840 +WHERE id IN (258,1264,3726,4867,7503,8557); + +-- Statement 900 +UPDATE player +SET sbaplayer_id = 1544 +WHERE id IN (262,1268,5255,6597,7507,8561); + +-- Statement 901 +UPDATE player +SET sbaplayer_id = 1090 +WHERE id IN (263,1269,3730,4180,5482,6845,7509,8563,10295,11351); + +-- Statement 902 +UPDATE player +SET sbaplayer_id = 1909 +WHERE id IN (265,1271,3199,4382,6142,7177,9574,10630,11726); + +-- Statement 903 +UPDATE player +SET sbaplayer_id = 1116 +WHERE id IN (268,1274,3731,4870,5272,6404,7513,8567,10297,11353); + +-- Statement 904 +UPDATE player +SET sbaplayer_id = 1868 +WHERE id IN (270,1276,3202,4306,5909,6566,7515,8569,9578,10634,11731); + +-- Statement 905 +UPDATE player +SET sbaplayer_id = 1858 +WHERE id IN (272,1278,3736,4535,5447,6722,7520,8574,9581,10637,11734); + +-- Statement 906 +UPDATE player +SET sbaplayer_id = 697 +WHERE id IN (274,1280,3204,4876,5758,6293); + +-- Statement 907 +UPDATE player +SET sbaplayer_id = 1249 +WHERE id IN (275,1281,3738,4284,7523,8577,9585,10641); + +-- Statement 908 +UPDATE player +SET sbaplayer_id = 1855 +WHERE id IN (276,1282,3205,4877); + +-- Statement 909 +UPDATE player +SET sbaplayer_id = 355 +WHERE id IN (278,1284,3740,4765,5277,6483,7526,8580,9587,10643,11737); + +-- Statement 910 +UPDATE player +SET sbaplayer_id = 1358 +WHERE id IN (281,1287,3207,4167,5941,6750,7530,8584,9591,10647,11741); + +-- Statement 911 +UPDATE player +SET sbaplayer_id = 686 +WHERE id IN (283,1289); + +-- Statement 912 +UPDATE player +SET sbaplayer_id = 980 +WHERE id IN (293,1299,3217,4391,5915,6704,7545,8599,9603,10659,11756); + +-- Statement 913 +UPDATE player +SET sbaplayer_id = 1161 +WHERE id IN (295,1301); + +-- Statement 914 +UPDATE player +SET sbaplayer_id = 1865 +WHERE id IN (301,1307,3223,4890,6124,7159); + +-- Statement 915 +UPDATE player +SET sbaplayer_id = 1948 +WHERE id IN (305,1311,3751,4892,5473,6760,7560,8614,9615,10671,11772); + +-- Statement 916 +UPDATE player +SET sbaplayer_id = 1207 +WHERE id IN (308,1314,3752,4498,5630,7004); + +-- Statement 917 +UPDATE player +SET sbaplayer_id = 2238 +WHERE id IN (309,1315,3753,4722,7564,8618,9622,10678,11779); + +-- Statement 918 +UPDATE player +SET sbaplayer_id = 1960 +WHERE id IN (314,1320,3230,4182,5700,6215,9628,10684,11783); + +-- Statement 919 +UPDATE player +SET sbaplayer_id = 2048 +WHERE id IN (315,1321,3755,4398,5263,6382,7567,8621,9629,10685,11784); + +-- Statement 920 +UPDATE player +SET sbaplayer_id = 2239 +WHERE id IN (319,1325,3234,4894,5817,6381,7570,8624,9632,10688); + +-- Statement 921 +UPDATE player +SET sbaplayer_id = 1351 +WHERE id IN (320,1326,3756,4895,5244,6350,7572,8626,11787); + +-- Statement 922 +UPDATE player +SET sbaplayer_id = 2214 +WHERE id IN (325,1331); + +-- Statement 923 +UPDATE player +SET sbaplayer_id = 415 +WHERE id IN (326,1332,3239,4547,5875,6480,7579,8632,9639,10695,11796); + +-- Statement 924 +UPDATE player +SET sbaplayer_id = 814 +WHERE id IN (327,1333,3240,4899,5980,6755,7580,8633,9640,10696,11798); + +-- Statement 925 +UPDATE player +SET sbaplayer_id = 1169 +WHERE id IN (329,1335,3242,4193,5880,6643,7587,8640,11802); + +-- Statement 926 +UPDATE player +SET sbaplayer_id = 833 +WHERE id IN (330,1336,3763,4901); + +-- Statement 927 +UPDATE player +SET sbaplayer_id = 1636 +WHERE id IN (333,1339); + +-- Statement 928 +UPDATE player +SET sbaplayer_id = 2042 +WHERE id IN (338,1344,3245,4150,5983,6761,7597,8650,9655,10711,11813); + +-- Statement 929 +UPDATE player +SET sbaplayer_id = 672 +WHERE id IN (339,1345,3767,4903,5361,6544,7598,8651,9656,10712,11814); + +-- Statement 930 +UPDATE player +SET sbaplayer_id = 1884 +WHERE id IN (340,1346); + +-- Statement 931 +UPDATE player +SET sbaplayer_id = 160 +WHERE id IN (342,1348); + +-- Statement 932 +UPDATE player +SET sbaplayer_id = 773 +WHERE id IN (343,1349,3247,4905,6135,7170); + +-- Statement 933 +UPDATE player +SET sbaplayer_id = 1878 +WHERE id IN (348,1354,3770,4708,5356,6537,7603,8656,9662,10718,11822); + +-- Statement 934 +UPDATE player +SET sbaplayer_id = 317 +WHERE id IN (349,1355,3771,4396,5520,6899,9663,10719,11823); + +-- Statement 935 +UPDATE player +SET sbaplayer_id = 30 +WHERE id IN (352,1358,3252,4609,5972,6733,7609,8662,10308,11363); + +-- Statement 936 +UPDATE player +SET sbaplayer_id = 349 +WHERE id IN (353,1359,3253,4438,6117,7152,7610,8663,9667,10723); + +-- Statement 937 +UPDATE player +SET sbaplayer_id = 1609 +WHERE id IN (354,1360,6033,6896,7611,8664,9668,10724,11830); + +-- Statement 938 +UPDATE player +SET sbaplayer_id = 1429 +WHERE id IN (358,1364); + +-- Statement 939 +UPDATE player +SET sbaplayer_id = 97 +WHERE id IN (365,1371); + +-- Statement 940 +UPDATE player +SET sbaplayer_id = 2054 +WHERE id IN (375,1381,3260,4921,6195,7228,7631,8684,9685,10741,11851); + +-- Statement 941 +UPDATE player +SET sbaplayer_id = 508 +WHERE id IN (376,1382,3262,4923,6151,7186); + +-- Statement 942 +UPDATE player +SET sbaplayer_id = 2134 +WHERE id IN (380,1386,3812,4332,5509,6835,7678,8731); + +-- Statement 943 +UPDATE player +SET sbaplayer_id = 474 +WHERE id IN (381,1387,3286,4772,5891,6514,7679,8732,9731,10787,11908); + +-- Statement 944 +UPDATE player +SET sbaplayer_id = 432 +WHERE id IN (383,1389,3341,4343,5827,6396,7792,8845,9825,10881,12008); + +-- Statement 945 +UPDATE player +SET sbaplayer_id = 1252 +WHERE id IN (388,1394,3265,4926,6019,6879,7636,8689); + +-- Statement 946 +UPDATE player +SET sbaplayer_id = 1890 +WHERE id IN (392,1398,3268,4292,5767,6305,7641,8694,9693,10749,11868); + +-- Statement 947 +UPDATE player +SET sbaplayer_id = 2098 +WHERE id IN (393,1399,3792,4928); + +-- Statement 948 +UPDATE player +SET sbaplayer_id = 2126 +WHERE id IN (394,1400,3793,4463,5683,7057,9694,10750,11869); + +-- Statement 949 +UPDATE player +SET sbaplayer_id = 501 +WHERE id IN (397,1403,3795,4929); + +-- Statement 950 +UPDATE player +SET sbaplayer_id = 514 +WHERE id IN (401,1407,3797,4173,5485,6801,7647,8700,9703,10759,11878); + +-- Statement 951 +UPDATE player +SET sbaplayer_id = 978 +WHERE id IN (402,1408); + +-- Statement 952 +UPDATE player +SET sbaplayer_id = 1418 +WHERE id IN (406,1412,3799,4932); + +-- Statement 953 +UPDATE player +SET sbaplayer_id = 1692 +WHERE id IN (408,1414,5720,6383,9709,10765,11884); + +-- Statement 954 +UPDATE player +SET sbaplayer_id = 795 +WHERE id IN (414,1420,7662,8715); + +-- Statement 955 +UPDATE player +SET sbaplayer_id = 2111 +WHERE id IN (416,1422,3278,4367,5855,6450,7664,8717,10315,11370,11897); + +-- Statement 956 +UPDATE player +SET sbaplayer_id = 347 +WHERE id IN (419,1425,3280,4941,5823,6390,7670,8723); + +-- Statement 957 +UPDATE player +SET sbaplayer_id = 959 +WHERE id IN (426,1432,10316,11371,11906); + +-- Statement 958 +UPDATE player +SET sbaplayer_id = 257 +WHERE id IN (429,1435,9734,10790); + +-- Statement 959 +UPDATE player +SET sbaplayer_id = 910 +WHERE id IN (430,1436,3813,4943,5355,6683,7683,8736,9735,10791,11911); + +-- Statement 960 +UPDATE player +SET sbaplayer_id = 1740 +WHERE id IN (433,1439,3814,4944); + +-- Statement 961 +UPDATE player +SET sbaplayer_id = 563 +WHERE id IN (437,1443); + +-- Statement 962 +UPDATE player +SET sbaplayer_id = 1170 +WHERE id IN (445,1451,3819,4550,5625,6999,7693,8746,9741,10797,11920); + +-- Statement 963 +UPDATE player +SET sbaplayer_id = 1992 +WHERE id IN (447,1453,3820,4229,11922); + +-- Statement 964 +UPDATE player +SET sbaplayer_id = 419 +WHERE id IN (451,1457,3822,4948,10320,11375); + +-- Statement 965 +UPDATE player +SET sbaplayer_id = 1872 +WHERE id IN (453,1459,3824,4604,5668,7042); + +-- Statement 966 +UPDATE player +SET sbaplayer_id = 1715 +WHERE id IN (460,1466,5426,6695,11935); + +-- Statement 967 +UPDATE player +SET sbaplayer_id = 2 +WHERE id IN (471,1477,3834,4364,5202,6263); + +-- Statement 968 +UPDATE player +SET sbaplayer_id = 183 +WHERE id IN (473,1479,3307,4411,5963,6701,7730,8783,9771,10827,11951); + +-- Statement 969 +UPDATE player +SET sbaplayer_id = 549 +WHERE id IN (474,1480); + +-- Statement 970 +UPDATE player +SET sbaplayer_id = 470 +WHERE id IN (478,1484,3311,4158,6179,7213,7736,8789,10326,11381); + +-- Statement 971 +UPDATE player +SET sbaplayer_id = 1132 +WHERE id IN (480,1486,3842,4433,5180,6301,7739,8792); + +-- Statement 972 +UPDATE player +SET sbaplayer_id = 1168 +WHERE id IN (485,1491,3314,4965,5912,6700,7744,8797,10328,11383); + +-- Statement 973 +UPDATE player +SET sbaplayer_id = 1171 +WHERE id IN (486,1492,3843,4966,5626,7000,7745,8798,9780,10836); + +-- Statement 974 +UPDATE player +SET sbaplayer_id = 2205 +WHERE id IN (487,1493,3847,4967); + +-- Statement 975 +UPDATE player +SET sbaplayer_id = 1144 +WHERE id IN (491,1497,3849,4971,5533,6906,7750,8803,10329,11384,11971); + +-- Statement 976 +UPDATE player +SET sbaplayer_id = 382 +WHERE id IN (499,1505,3853,4530,5505,6830,7760,8813,9797,10853); + +-- Statement 977 +UPDATE player +SET sbaplayer_id = 1594 +WHERE id IN (505,1511,5515,6851,7766,8819); + +-- Statement 978 +UPDATE player +SET sbaplayer_id = 1707 +WHERE id IN (508,1514,5998,6797); + +-- Statement 979 +UPDATE player +SET sbaplayer_id = 1724 +WHERE id IN (509,1515,5399,6620,7769,8822,9805,10861,11990); + +-- Statement 980 +UPDATE player +SET sbaplayer_id = 1937 +WHERE id IN (510,1516,5246,6584,7771,8824,9808,10864,11993); + +-- Statement 981 +UPDATE player +SET sbaplayer_id = 2013 +WHERE id IN (511,1517,3330,4555,6031,6901,7772,8825,9809,10865,11995); + +-- Statement 982 +UPDATE player +SET sbaplayer_id = 2041 +WHERE id IN (513,1519,3856,4246,5241,6430,7774,8827,9811,10867); + +-- Statement 983 +UPDATE player +SET sbaplayer_id = 526 +WHERE id IN (515,1521,3333,4472,5813,6372,7776,8829,10332,11387); + +-- Statement 984 +UPDATE player +SET sbaplayer_id = 965 +WHERE id IN (518,1524,3859,4983); + +-- Statement 985 +UPDATE player +SET sbaplayer_id = 1404 +WHERE id IN (519,1525,3336,4984,5994,6837,7782,8835,9816,10872,12002); + +-- Statement 986 +UPDATE player +SET sbaplayer_id = 1469 +WHERE id IN (520,1526,3861,4985); + +-- Statement 987 +UPDATE player +SET sbaplayer_id = 1695 +WHERE id IN (523,1529,3339,4988,5978,6749,7784,8837,9818,10874,12004); + +-- Statement 988 +UPDATE player +SET sbaplayer_id = 1852 +WHERE id IN (524,1530,3862,7785,8838,9820,10876,12005); + +-- Statement 989 +UPDATE player +SET sbaplayer_id = 1967 +WHERE id IN (525,1531,3864,4989,5316,6625); + +-- Statement 990 +UPDATE player +SET sbaplayer_id = 2052 +WHERE id IN (527,1533,3340,4719,6099,7134,7787,8840); + +-- Statement 991 +UPDATE player +SET sbaplayer_id = 1083 +WHERE id IN (529,1535,6041,7077,7798,8851); + +-- Statement 992 +UPDATE player +SET sbaplayer_id = 2038 +WHERE id IN (534,1540,3870,4421,5223,6295,7803,8856,9834,10890); + +-- Statement 993 +UPDATE player +SET sbaplayer_id = 1007 +WHERE id IN (535,1541); + +-- Statement 994 +UPDATE player +SET sbaplayer_id = 1807 +WHERE id IN (540,1546); + +-- Statement 995 +UPDATE player +SET sbaplayer_id = 1813 +WHERE id IN (546,1552,3875,4493,5663,7037); + +-- Statement 996 +UPDATE player +SET sbaplayer_id = 796 +WHERE id IN (547,1553,6063,7099); + +-- Statement 997 +UPDATE player +SET sbaplayer_id = 881 +WHERE id IN (548,1554); + +-- Statement 998 +UPDATE player +SET sbaplayer_id = 268 +WHERE id IN (553,1559); + +-- Statement 999 +UPDATE player +SET sbaplayer_id = 1014 +WHERE id IN (554,1560); + +-- Statement 1000 +UPDATE player +SET sbaplayer_id = 905 +WHERE id IN (555,1561,3350,4997,6137,7172,7820,8873); + +-- Statement 1001 +UPDATE player +SET sbaplayer_id = 440 +WHERE id IN (558,1564,3353,4998); + +-- Statement 1002 +UPDATE player +SET sbaplayer_id = 42 +WHERE id IN (567,1573,3884,5003,5537,6911); + +-- Statement 1003 +UPDATE player +SET sbaplayer_id = 1407 +WHERE id IN (571,1577); + +-- Statement 1004 +UPDATE player +SET sbaplayer_id = 598 +WHERE id IN (575,1581,3363,4323,5944,6668,7839,8892,10347,11402,12055); + +-- Statement 1005 +UPDATE player +SET sbaplayer_id = 1118 +WHERE id IN (579,1585,3366,4333,5901,6548); + +-- Statement 1006 +UPDATE player +SET sbaplayer_id = 1730 +WHERE id IN (580,1586,3896,5009); + +-- Statement 1007 +UPDATE player +SET sbaplayer_id = 2023 +WHERE id IN (583,1589,3369,4264,5712,6232,7850,8903,9872,10928,12070); + +-- Statement 1008 +UPDATE player +SET sbaplayer_id = 1989 +WHERE id IN (588,1594,3901,5012); + +-- Statement 1009 +UPDATE player +SET sbaplayer_id = 857 +WHERE id IN (589,1595,3902,4219,5259,6379,7860,8913); + +-- Statement 1010 +UPDATE player +SET sbaplayer_id = 2127 +WHERE id IN (591,1597,3905,5015,5217,6282,7862,8915,9886,10942,12087); + +-- Statement 1011 +UPDATE player +SET sbaplayer_id = 539 +WHERE id IN (595,1601); + +-- Statement 1012 +UPDATE player +SET sbaplayer_id = 1826 +WHERE id IN (597,1603,3908,4468,5422,6657,9891,10947,12091); + +-- Statement 1013 +UPDATE player +SET sbaplayer_id = 93 +WHERE id IN (598,1604,3380,4304,5762,6300,7871,8924,9892,10948,12092); + +-- Statement 1014 +UPDATE player +SET sbaplayer_id = 106 +WHERE id IN (599,1605,3909,4664); + +-- Statement 1015 +UPDATE player +SET sbaplayer_id = 361 +WHERE id IN (601,1607,3911,4559,5207,6442,7874,8927,9895,10951); + +-- Statement 1016 +UPDATE player +SET sbaplayer_id = 792 +WHERE id IN (603,1609,3381,4236,5934,6636,7879,8932,9898,10954,12097); + +-- Statement 1017 +UPDATE player +SET sbaplayer_id = 1632 +WHERE id IN (605,1611,3382,5020,6085,7120,7881,8933,9903,10959,12101); + +-- Statement 1018 +UPDATE player +SET sbaplayer_id = 2039 +WHERE id IN (607,1613,3385,4747,5831,6401,7885,8937,9906,10962,12105); + +-- Statement 1019 +UPDATE player +SET sbaplayer_id = 126 +WHERE id IN (608,1614); + +-- Statement 1020 +UPDATE player +SET sbaplayer_id = 2163 +WHERE id IN (613,1619); + +-- Statement 1021 +UPDATE player +SET sbaplayer_id = 123 +WHERE id IN (617,1623,7895,8947); + +-- Statement 1022 +UPDATE player +SET sbaplayer_id = 872 +WHERE id IN (623,1629); + +-- Statement 1023 +UPDATE player +SET sbaplayer_id = 2100 +WHERE id IN (626,1632,3920,5026); + +-- Statement 1024 +UPDATE player +SET sbaplayer_id = 29 +WHERE id IN (636,1642); + +-- Statement 1025 +UPDATE player +SET sbaplayer_id = 76 +WHERE id IN (637,1643,3924,4478,5541,6915); + +-- Statement 1026 +UPDATE player +SET sbaplayer_id = 157 +WHERE id IN (639,1645,3403,5031,6028,6876,9931,10987); + +-- Statement 1027 +UPDATE player +SET sbaplayer_id = 228 +WHERE id IN (640,1646,12132); + +-- Statement 1028 +UPDATE player +SET sbaplayer_id = 1817 +WHERE id IN (649,1655,3930,4357,5664,7038); + +-- Statement 1029 +UPDATE player +SET sbaplayer_id = 1835 +WHERE id IN (650,1656); + +-- Statement 1030 +UPDATE player +SET sbaplayer_id = 1975 +WHERE id IN (652,1658,3409,5036,7927,8978,9942,10998,12140); + +-- Statement 1031 +UPDATE player +SET sbaplayer_id = 2183 +WHERE id IN (654,1660,3932,4355,5689,7063,7930,8981); + +-- Statement 1032 +UPDATE player +SET sbaplayer_id = 538 +WHERE id IN (657,1663,3412,4427,5949,6771,7932,8983,9947,11003,12145); + +-- Statement 1033 +UPDATE player +SET sbaplayer_id = 659 +WHERE id IN (658,1664,3934,4129,5196,6253,7934,8985,9949,11005,12146); + +-- Statement 1034 +UPDATE player +SET sbaplayer_id = 2081 +WHERE id IN (663,1669,3417,5041,7939,8990); + +-- Statement 1035 +UPDATE player +SET sbaplayer_id = 1020 +WHERE id IN (665,1671,3936,4136,5296,6591,7940,8991,9953,11009,12152); + +-- Statement 1036 +UPDATE player +SET sbaplayer_id = 371 +WHERE id IN (668,1674,3420,5043,6058,7094,7942,8993,9954,11010); + +-- Statement 1037 +UPDATE player +SET sbaplayer_id = 1560 +WHERE id IN (672,1678,3940,4479,5322,6682,7953,9004); + +-- Statement 1038 +UPDATE player +SET sbaplayer_id = 113 +WHERE id IN (674,1680); + +-- Statement 1039 +UPDATE player +SET sbaplayer_id = 263 +WHERE id IN (679,1685,3427,4135,5812,6532,7966,9017,9975,11031); + +-- Statement 1040 +UPDATE player +SET sbaplayer_id = 635 +WHERE id IN (683,1689,3428,5051,6199,7232,7968,9019,9977,11033,12178); + +-- Statement 1041 +UPDATE player +SET sbaplayer_id = 651 +WHERE id IN (684,1690,3429,5052); + +-- Statement 1042 +UPDATE player +SET sbaplayer_id = 1370 +WHERE id IN (688,1694); + +-- Statement 1043 +UPDATE player +SET sbaplayer_id = 1875 +WHERE id IN (690,1696,3948,4424,9963,11019,12165); + +-- Statement 1044 +UPDATE player +SET sbaplayer_id = 1961 +WHERE id IN (691,1697,3431,5055,6185,7218,9980,11036,12179); + +-- Statement 1045 +UPDATE player +SET sbaplayer_id = 2210 +WHERE id IN (694,1700,3433,4153,5861,6459,7973,9024,9982,11038,12181); + +-- Statement 1046 +UPDATE player +SET sbaplayer_id = 1017 +WHERE id IN (699,1705,3949,4327,5612,6986,7978,9029,9986,11042,12186); + +-- Statement 1047 +UPDATE player +SET sbaplayer_id = 1924 +WHERE id IN (703,1709,3439,5059,5844,6433,7983,9034,9989,11045); + +-- Statement 1048 +UPDATE player +SET sbaplayer_id = 1155 +WHERE id IN (704,1710,3440,4536,5895,6523,7987,9038,9992,11048,12196); + +-- Statement 1049 +UPDATE player +SET sbaplayer_id = 421 +WHERE id IN (708,1714,3955,5191,6277,7990,9041,10365,11420,12198); + +-- Statement 1050 +UPDATE player +SET sbaplayer_id = 71 +WHERE id IN (711,1717,3956,4164,9996,11052,12202); + +-- Statement 1051 +UPDATE player +SET sbaplayer_id = 518 +WHERE id IN (712,1718); + +-- Statement 1052 +UPDATE player +SET sbaplayer_id = 750 +WHERE id IN (713,1719,3957,5064); + +-- Statement 1053 +UPDATE player +SET sbaplayer_id = 1197 +WHERE id IN (716,1722,3958,4704); + +-- Statement 1054 +UPDATE player +SET sbaplayer_id = 1605 +WHERE id IN (720,1726,3962,5068,10005,11061); + +-- Statement 1055 +UPDATE player +SET sbaplayer_id = 1802 +WHERE id IN (721,1727,3448,5069,6039,7075,8003,9054,10007,11063,12215); + +-- Statement 1056 +UPDATE player +SET sbaplayer_id = 1867 +WHERE id IN (722,1728,3449,5070,5956,6787,8004,9055); + +-- Statement 1057 +UPDATE player +SET sbaplayer_id = 2185 +WHERE id IN (725,1731,3965,4557,5690,7064,8006,9057,10008,11064); + +-- Statement 1058 +UPDATE player +SET sbaplayer_id = 1149 +WHERE id IN (727,1733,3451,4733,5751,6287,8007,9058,10009,11065,12217); + +-- Statement 1059 +UPDATE player +SET sbaplayer_id = 909 +WHERE id IN (728,1734,3452,4441,5765,6303,8008,9059,10010,11066,12218); + +-- Statement 1060 +UPDATE player +SET sbaplayer_id = 1306 +WHERE id IN (739,1745,3458,5078,5894,6667,8021,9072); + +-- Statement 1061 +UPDATE player +SET sbaplayer_id = 1637 +WHERE id IN (742,1748,5770,6494,10025,11081,12236); + +-- Statement 1062 +UPDATE player +SET sbaplayer_id = 1754 +WHERE id IN (746,1752,3973,5080,5220,6346,8031,9082,10029,11085,12240); + +-- Statement 1063 +UPDATE player +SET sbaplayer_id = 53 +WHERE id IN (753,1759,3466,4720,5779,6325,8039,9090,10036,11092,12250); + +-- Statement 1064 +UPDATE player +SET sbaplayer_id = 1088 +WHERE id IN (754,1760,10038,11094,12253); + +-- Statement 1065 +UPDATE player +SET sbaplayer_id = 757 +WHERE id IN (756,1762,3468,5082,6062,7098,8044,9095); + +-- Statement 1066 +UPDATE player +SET sbaplayer_id = 1352 +WHERE id IN (759,1765,3981,5084,5640,7014,8049,9100,10045,11101,12259); + +-- Statement 1067 +UPDATE player +SET sbaplayer_id = 1957 +WHERE id IN (761,1767,3471,4541,5960,6699,8051,9102,10375,11430); + +-- Statement 1068 +UPDATE player +SET sbaplayer_id = 521 +WHERE id IN (765,1771,3984,4627,5573,6947); + +-- Statement 1069 +UPDATE player +SET sbaplayer_id = 1936 +WHERE id IN (766,1772,5174,6211,8058,9109,10052,11108,12267); + +-- Statement 1070 +UPDATE player +SET sbaplayer_id = 1277 +WHERE id IN (767,1773,3477,5087,5984,6762,8059,9110,10054,11110,12269); + +-- Statement 1071 +UPDATE player +SET sbaplayer_id = 1216 +WHERE id IN (776,1782,6078,7114); + +-- Statement 1072 +UPDATE player +SET sbaplayer_id = 1723 +WHERE id IN (778,1784,3480,4575,6152,7187); + +-- Statement 1073 +UPDATE player +SET sbaplayer_id = 682 +WHERE id IN (782,1788,6189,7222); + +-- Statement 1074 +UPDATE player +SET sbaplayer_id = 544 +WHERE id IN (783,1789,3994,5093); + +-- Statement 1075 +UPDATE player +SET sbaplayer_id = 1904 +WHERE id IN (785,1791,3996,5095,5392,6719,8075,9126,10069,11125); + +-- Statement 1076 +UPDATE player +SET sbaplayer_id = 1470 +WHERE id IN (786,1792); + +-- Statement 1077 +UPDATE player +SET sbaplayer_id = 565 +WHERE id IN (790,1796); + +-- Statement 1078 +UPDATE player +SET sbaplayer_id = 497 +WHERE id IN (796,1802,3999,4716,5517,6882,8086,9137); + +-- Statement 1079 +UPDATE player +SET sbaplayer_id = 2147 +WHERE id IN (799,1805,4001,4614,5686,7060,8089,9140); + +-- Statement 1080 +UPDATE player +SET sbaplayer_id = 1972 +WHERE id IN (800,1806,3490,4485,6072,7108,8090,9141,10076,11132,12291); + +-- Statement 1081 +UPDATE player +SET sbaplayer_id = 328 +WHERE id IN (805,1811); + +-- Statement 1082 +UPDATE player +SET sbaplayer_id = 417 +WHERE id IN (806,1812); + +-- Statement 1083 +UPDATE player +SET sbaplayer_id = 728 +WHERE id IN (807,1813); + +-- Statement 1084 +UPDATE player +SET sbaplayer_id = 853 +WHERE id IN (808,1814,4006,5103,5600,6974,8094,9145,10081,11137,12298); + +-- Statement 1085 +UPDATE player +SET sbaplayer_id = 1259 +WHERE id IN (809,1815,3493,5104); + +-- Statement 1086 +UPDATE player +SET sbaplayer_id = 2128 +WHERE id IN (813,1819,4011,4363); + +-- Statement 1087 +UPDATE player +SET sbaplayer_id = 824 +WHERE id IN (816,1822,4013,5107,5439,6686); + +-- Statement 1088 +UPDATE player +SET sbaplayer_id = 414 +WHERE id IN (819,1825,4015,5110,5461,6739); + +-- Statement 1089 +UPDATE player +SET sbaplayer_id = 903 +WHERE id IN (822,1828,3500,4745,5937,6738,8110,9161,10098,11154,12317); + +-- Statement 1090 +UPDATE player +SET sbaplayer_id = 2010 +WHERE id IN (823,1829); + +-- Statement 1091 +UPDATE player +SET sbaplayer_id = 2025 +WHERE id IN (824,1830); + +-- Statement 1092 +UPDATE player +SET sbaplayer_id = 35 +WHERE id IN (825,1831,4018,4454,5242,6349,8114,9165,10102,11158); + +-- Statement 1093 +UPDATE player +SET sbaplayer_id = 128 +WHERE id IN (828,1834,4020,4727,5240,6519,8117,9168,10105,11161,12322); + +-- Statement 1094 +UPDATE player +SET sbaplayer_id = 850 +WHERE id IN (829,1835,3504,5112); + +-- Statement 1095 +UPDATE player +SET sbaplayer_id = 1390 +WHERE id IN (835,1841,3506,4249,5807,6362,8122,9173,10108,11164,12329); + +-- Statement 1096 +UPDATE player +SET sbaplayer_id = 1627 +WHERE id IN (837,1843,4025,4529,12330); + +-- Statement 1097 +UPDATE player +SET sbaplayer_id = 265 +WHERE id IN (840,1846,5866,6611,8129,9180,10112,11168,12333); + +-- Statement 1098 +UPDATE player +SET sbaplayer_id = 72 +WHERE id IN (844,1850,4031,4654); + +-- Statement 1099 +UPDATE player +SET sbaplayer_id = 91 +WHERE id IN (845,1851,4032,4464,5543,6917,8135,9186,10117,11173,12337); + +-- Statement 1100 +UPDATE player +SET sbaplayer_id = 1019 +WHERE id IN (846,1852); + +-- Statement 1101 +UPDATE player +SET sbaplayer_id = 1138 +WHERE id IN (847,1853,3508,5120,6100,7135); + +-- Statement 1102 +UPDATE player +SET sbaplayer_id = 1323 +WHERE id IN (848,1854,10119,11175,12340); + +-- Statement 1103 +UPDATE player +SET sbaplayer_id = 1415 +WHERE id IN (849,1855,6098,7133,8137,9188); + +-- Statement 1104 +UPDATE player +SET sbaplayer_id = 2028 +WHERE id IN (853,1859,4037,4401,5206,6320,10386,11441,12353); + +-- Statement 1105 +UPDATE player +SET sbaplayer_id = 434 +WHERE id IN (856,1862,4038,4368); + +-- Statement 1106 +UPDATE player +SET sbaplayer_id = 2086 +WHERE id IN (859,1865,3516,5125,6127,7162,8148,9199); + +-- Statement 1107 +UPDATE player +SET sbaplayer_id = 2153 +WHERE id IN (865,1871,6201,7234); + +-- Statement 1108 +UPDATE player +SET sbaplayer_id = 1599 +WHERE id IN (867,1873,4045,4227,5654,7028,8160,9211,12367); + +-- Statement 1109 +UPDATE player +SET sbaplayer_id = 384 +WHERE id IN (870,1876,4049,4560,5561,6935,8163,9214,10142,11198); + +-- Statement 1110 +UPDATE player +SET sbaplayer_id = 397 +WHERE id IN (871,1877); + +-- Statement 1111 +UPDATE player +SET sbaplayer_id = 790 +WHERE id IN (872,1878); + +-- Statement 1112 +UPDATE player +SET sbaplayer_id = 587 +WHERE id IN (876,1882,3522,5136,5836,6412,8171,9222,10148,11204,12376); + +-- Statement 1113 +UPDATE player +SET sbaplayer_id = 601 +WHERE id IN (880,1886); + +-- Statement 1114 +UPDATE player +SET sbaplayer_id = 1133 +WHERE id IN (882,1888,3524,4250,6155,7190,8174,9225); + +-- Statement 1115 +UPDATE player +SET sbaplayer_id = 1142 +WHERE id IN (883,1889,3525,5138); + +-- Statement 1116 +UPDATE player +SET sbaplayer_id = 1301 +WHERE id IN (885,1891); + +-- Statement 1117 +UPDATE player +SET sbaplayer_id = 2241 +WHERE id IN (887,1893,4056,4502,5575,6949); + +-- Statement 1118 +UPDATE player +SET sbaplayer_id = 1424 +WHERE id IN (889,1895,3527,4294,5962,6794,8178,9229,12385); + +-- Statement 1119 +UPDATE player +SET sbaplayer_id = 558 +WHERE id IN (890,1896,3528,4476,5834,6408,8179,9230,10155,11211,12386); + +-- Statement 1120 +UPDATE player +SET sbaplayer_id = 1006 +WHERE id IN (891,1897,10158,11214,12388); + +-- Statement 1121 +UPDATE player +SET sbaplayer_id = 1333 +WHERE id IN (893,1899,4062,5139); + +-- Statement 1122 +UPDATE player +SET sbaplayer_id = 734 +WHERE id IN (895,1901,4063,4213,5268,6394,8184,9235,10160,11216); + +-- Statement 1123 +UPDATE player +SET sbaplayer_id = 2005 +WHERE id IN (899,1905,4065,5143,5452,6811,10162,11218,12392); + +-- Statement 1124 +UPDATE player +SET sbaplayer_id = 461 +WHERE id IN (900,1906,3533,4514,6012,6819,8186,9237,10163,11219,12393); + +-- Statement 1125 +UPDATE player +SET sbaplayer_id = 491 +WHERE id IN (901,1907,3534,5144,8187,9238); + +-- Statement 1126 +UPDATE player +SET sbaplayer_id = 776 +WHERE id IN (904,1910,3538,4214,5792,6344,8190,9241,10166,11222,12396); + +-- Statement 1127 +UPDATE player +SET sbaplayer_id = 1988 +WHERE id IN (905,1911,5671,7045,8191,9242,10167,11223,12397); + +-- Statement 1128 +UPDATE player +SET sbaplayer_id = 758 +WHERE id IN (908,1914,4070,5146,8192,9243,10169,11225); + +-- Statement 1129 +UPDATE player +SET sbaplayer_id = 2176 +WHERE id IN (914,1920); + +-- Statement 1130 +UPDATE player +SET sbaplayer_id = 294 +WHERE id IN (917,1923,4077,5150); + +-- Statement 1131 +UPDATE player +SET sbaplayer_id = 642 +WHERE id IN (918,1924,3541,4372,5778,6324,8208,9259,10181,11237,12411); + +-- Statement 1132 +UPDATE player +SET sbaplayer_id = 37 +WHERE id IN (919,1925,4078,4517,5298,6445,8209,9260,10182,11238,12412); + +-- Statement 1133 +UPDATE player +SET sbaplayer_id = 164 +WHERE id IN (921,1927,8211,9262); + +-- Statement 1134 +UPDATE player +SET sbaplayer_id = 540 +WHERE id IN (924,1930,4083,4473,5381,6576,8213,9264); + +-- Statement 1135 +UPDATE player +SET sbaplayer_id = 1050 +WHERE id IN (927,1933,4085,4656,5466,6752,8217,9268,12419); + +-- Statement 1136 +UPDATE player +SET sbaplayer_id = 1399 +WHERE id IN (929,1935,3544,5153,5967,6711,8221,9272); + +-- Statement 1137 +UPDATE player +SET sbaplayer_id = 1737 +WHERE id IN (932,1938); + +-- Statement 1138 +UPDATE player +SET sbaplayer_id = 2094 +WHERE id IN (934,1940,3547,4425,5950,6689,8226,9277,12426); + +-- Statement 1139 +UPDATE player +SET sbaplayer_id = 2125 +WHERE id IN (935,1941,4090,4600); + +-- Statement 1140 +UPDATE player +SET sbaplayer_id = 33 +WHERE id IN (938,1944); + +-- Statement 1141 +UPDATE player +SET sbaplayer_id = 1666 +WHERE id IN (941,1947,3552,5156,6145,7180,8233,9284,10396,11451,12434); + +-- Statement 1142 +UPDATE player +SET sbaplayer_id = 789 +WHERE id IN (943,1949,3554,4639,5717,6238,8238,9289,10199,11255,12439); + +-- Statement 1143 +UPDATE player +SET sbaplayer_id = 1134 +WHERE id IN (948,1954,4097,4599); + +-- Statement 1144 +UPDATE player +SET sbaplayer_id = 2114 +WHERE id IN (951,1957); + +-- Statement 1145 +UPDATE player +SET sbaplayer_id = 1502 +WHERE id IN (954,1960); + +-- Statement 1146 +UPDATE player +SET sbaplayer_id = 2006 +WHERE id IN (957,1963); + +-- Statement 1147 +UPDATE player +SET sbaplayer_id = 1841 +WHERE id IN (958,1964,3557,4181,5768,6309,8249,9300,10206,10207,11262,11263,12447); + +-- Statement 1148 +UPDATE player +SET sbaplayer_id = 352 +WHERE id IN (961,1967,3558,4561,6040,7076,8252,9303,10209,11265,12451); + +-- Statement 1149 +UPDATE player +SET sbaplayer_id = 101 +WHERE id IN (962,1968,3559,5161,6067,7103); + +-- Statement 1150 +UPDATE player +SET sbaplayer_id = 634 +WHERE id IN (968,1974,4104,5163); + +-- Statement 1151 +UPDATE player +SET sbaplayer_id = 1612 +WHERE id IN (969,1975,3564,4673,6125,7160); + +-- Statement 1152 +UPDATE player +SET sbaplayer_id = 507 +WHERE id IN (976,1982,3571,4418,5920,6589,8264,9315,10220,11276,12464); + +-- Statement 1153 +UPDATE player +SET sbaplayer_id = 50 +WHERE id IN (980,1986,4105,4515,5539,6913,8266,9317,10222,11278); + +-- Statement 1154 +UPDATE player +SET sbaplayer_id = 680 +WHERE id IN (981,1987,4106,4194,5470,6758,8269,9320,10224,11280,12469); + +-- Statement 1155 +UPDATE player +SET sbaplayer_id = 1147 +WHERE id IN (982,1988,4107,5165); + +-- Statement 1156 +UPDATE player +SET sbaplayer_id = 476 +WHERE id IN (985,1991,5992,6783,8272,9323,10402,11457); + +-- Statement 1157 +UPDATE player +SET sbaplayer_id = 61 +WHERE id IN (988,1994,5842,6432,8273,9324,10226,11282,12472); + +-- Statement 1158 +UPDATE player +SET sbaplayer_id = 364 +WHERE id IN (990,1996,5993,6836,8275,9326,10227,11283); + +-- Statement 1159 +UPDATE player +SET sbaplayer_id = 462 +WHERE id IN (991,1997,4111,4174,5404,6630,8276,9327,10228,11284,12474); + +-- Statement 1160 +UPDATE player +SET sbaplayer_id = 1040 +WHERE id IN (993,1999,4112,4759,5366,6608,8279,9330,10231,11287,12478); + +-- Statement 1161 +UPDATE player +SET sbaplayer_id = 673 +WHERE id IN (995,2001,4114,4157,5274,6406,8280,9331,10232,11288,12479); + +-- Statement 1162 +UPDATE player +SET sbaplayer_id = 1628 +WHERE id IN (996,2002); + +-- Statement 1163 +UPDATE player +SET sbaplayer_id = 465 +WHERE id IN (997,2003,4116,4290,5567,6941,8281,9332,10233,11289); + +-- Statement 1164 +UPDATE player +SET sbaplayer_id = 1566 +WHERE id IN (999,2005,4118,4139,5405,6631,8286,9337,10238,11294); + +-- Statement 1165 +UPDATE player +SET sbaplayer_id = 403 +WHERE id IN (1001,2007,3578,5171,6120,7155,8289,9340); + +-- Statement 1166 +UPDATE player +SET sbaplayer_id = 1127 +WHERE id IN (1005,2011,5406,6632,8291,9342,10242,11298,12488); + +-- Statement 1167 +UPDATE player +SET sbaplayer_id = 759 +WHERE id IN (3620,4798,5343,6521); + +-- Statement 1168 +UPDATE player +SET sbaplayer_id = 471 +WHERE id IN (3622,4801,5568,6942,7323,8378); + +-- Statement 1169 +UPDATE player +SET sbaplayer_id = 2195 +WHERE id IN (3801,4935,5469,6839,7656,8709,9710,10766,11885); + +-- Statement 1170 +UPDATE player +SET sbaplayer_id = 2047 +WHERE id IN (3978,4586,5675,7049); + +-- Statement 1171 +UPDATE player +SET sbaplayer_id = 567 +WHERE id IN (4027,5119); + +-- Statement 1172 +UPDATE player +SET sbaplayer_id = 1693 +WHERE id IN (4073,5148,5210,6326,8197,9248,12401); + +-- Statement 1173 +UPDATE player +SET sbaplayer_id = 1713 +WHERE id IN (4074,4241); + +-- Statement 1174 +UPDATE player +SET sbaplayer_id = 281 +WHERE id IN (4120,5170); + +-- Statement 1175 +UPDATE player +SET sbaplayer_id = 721 +WHERE id IN (3096,4261,5892,6664,7294,8349,9389,10446,11501); + +-- Statement 1176 +UPDATE player +SET sbaplayer_id = 1065 +WHERE id IN (3099,4789,6198,7231,7302,8357,9396,10453,11508); + +-- Statement 1177 +UPDATE player +SET sbaplayer_id = 2067 +WHERE id IN (3102,4539,6123,7158,7305,8360,10256,11312); + +-- Statement 1178 +UPDATE player +SET sbaplayer_id = 2220 +WHERE id IN (3103,4792,6035,7071); + +-- Statement 1179 +UPDATE player +SET sbaplayer_id = 41 +WHERE id IN (3104,4793,5929,6622); + +-- Statement 1180 +UPDATE player +SET sbaplayer_id = 175 +WHERE id IN (3105,4466); + +-- Statement 1181 +UPDATE player +SET sbaplayer_id = 1968 +WHERE id IN (3121,4806); + +-- Statement 1182 +UPDATE player +SET sbaplayer_id = 458 +WHERE id IN (3125,4365,6026,6874,7344,8399,11552); + +-- Statement 1183 +UPDATE player +SET sbaplayer_id = 200 +WHERE id IN (3127,4615); + +-- Statement 1184 +UPDATE player +SET sbaplayer_id = 2227 +WHERE id IN (3128,4667,5899,6543,7350,8405); + +-- Statement 1185 +UPDATE player +SET sbaplayer_id = 1708 +WHERE id IN (3135,4816,6096,7131,9454,10510,11577); + +-- Statement 1186 +UPDATE player +SET sbaplayer_id = 1971 +WHERE id IN (3094,4538); + +-- Statement 1187 +UPDATE player +SET sbaplayer_id = 2002 +WHERE id IN (3384,5021,5930,6725,7884,8936,12104); + +-- Statement 1188 +UPDATE player +SET sbaplayer_id = 1626 +WHERE id IN (3481,5090,6044,7080,8072,9123,10065,11121,12280); + +-- Statement 1189 +UPDATE player +SET sbaplayer_id = 217 +WHERE id IN (3085,4465,6060,7096,7271,8326,9367,10424,11482); + +-- Statement 1190 +UPDATE player +SET sbaplayer_id = 1056 +WHERE id IN (3087,4272,5856,6600,7273,8328,9371,10428,11485); + +-- Statement 1191 +UPDATE player +SET sbaplayer_id = 1038 +WHERE id IN (3152,4638,6132,7167,10276,11332); + +-- Statement 1192 +UPDATE player +SET sbaplayer_id = 2108 +WHERE id IN (3157,4661,6138,7173,9500,10556); + +-- Statement 1193 +UPDATE player +SET sbaplayer_id = 2017 +WHERE id IN (3158,4833); + +-- Statement 1194 +UPDATE player +SET sbaplayer_id = 96 +WHERE id IN (3164,4552,5739,6435,7423,8478,10280,11336); + +-- Statement 1195 +UPDATE player +SET sbaplayer_id = 406 +WHERE id IN (3165,4839); + +-- Statement 1196 +UPDATE player +SET sbaplayer_id = 1302 +WHERE id IN (3182,4397,6105,7140,7477,8532,10293,11349,11696); + +-- Statement 1197 +UPDATE player +SET sbaplayer_id = 1722 +WHERE id IN (3185,4412,5723,6246,7481,8536); + +-- Statement 1198 +UPDATE player +SET sbaplayer_id = 2058 +WHERE id IN (3186,4857,5833,6403,7484,8539,9560,10616,11702); + +-- Statement 1199 +UPDATE player +SET sbaplayer_id = 310 +WHERE id IN (3191,4859,6108,7143,7497,8551,11714); + +-- Statement 1200 +UPDATE player +SET sbaplayer_id = 290 +WHERE id IN (3203,4872); + +-- Statement 1201 +UPDATE player +SET sbaplayer_id = 327 +WHERE id IN (3206,4878,5841,6425,7525,8579,9586,10642,11736); + +-- Statement 1202 +UPDATE player +SET sbaplayer_id = 60 +WHERE id IN (3209,4880,5987,6767); + +-- Statement 1203 +UPDATE player +SET sbaplayer_id = 1458 +WHERE id IN (3211,4882,6071,7107,7536,8590,9598,10654,11749); + +-- Statement 1204 +UPDATE player +SET sbaplayer_id = 1651 +WHERE id IN (3213,4255,7538,8592); + +-- Statement 1205 +UPDATE player +SET sbaplayer_id = 2140 +WHERE id IN (3215,4884,6163,7198,7542,8596); + +-- Statement 1206 +UPDATE player +SET sbaplayer_id = 801 +WHERE id IN (3221,4888,5845,6580,7554,8608,9614,10670,11768); + +-- Statement 1207 +UPDATE player +SET sbaplayer_id = 2142 +WHERE id IN (3229,4768,6170,7204); + +-- Statement 1208 +UPDATE player +SET sbaplayer_id = 418 +WHERE id IN (3231,4893,6154,7189,7568,8622,10305,11360); + +-- Statement 1209 +UPDATE player +SET sbaplayer_id = 140 +WHERE id IN (3235,4896); + +-- Statement 1210 +UPDATE player +SET sbaplayer_id = 1497 +WHERE id IN (3261,4922,6113,7148,7632,8685,9686,10742,11852); + +-- Statement 1211 +UPDATE player +SET sbaplayer_id = 1440 +WHERE id IN (3267,4222); + +-- Statement 1212 +UPDATE player +SET sbaplayer_id = 442 +WHERE id IN (3271,4262,5755,6291,7646,8699,9702,10758,11877); + +-- Statement 1213 +UPDATE player +SET sbaplayer_id = 641 +WHERE id IN (3272,4930,5808,6363,7648,8701,9704,10760,11879); + +-- Statement 1214 +UPDATE player +SET sbaplayer_id = 1435 +WHERE id IN (3275,4933); + +-- Statement 1215 +UPDATE player +SET sbaplayer_id = 1457 +WHERE id IN (3277,4939); + +-- Statement 1216 +UPDATE player +SET sbaplayer_id = 375 +WHERE id IN (3285,4700,5850,6441,7677,8730,9730,10786,11907); + +-- Statement 1217 +UPDATE player +SET sbaplayer_id = 1749 +WHERE id IN (3295,4947,5840,6424,7694,8747,9742,10798,11921); + +-- Statement 1218 +UPDATE player +SET sbaplayer_id = 20 +WHERE id IN (3297,4949,5947,6679,7704,8757,11928); + +-- Statement 1219 +UPDATE player +SET sbaplayer_id = 932 +WHERE id IN (3299,4951); + +-- Statement 1220 +UPDATE player +SET sbaplayer_id = 142 +WHERE id IN (3301,4625,7717,8770,10322,11377,11938); + +-- Statement 1221 +UPDATE player +SET sbaplayer_id = 849 +WHERE id IN (3309,4640,6066,7102,7734,8787,9774,10830,11955); + +-- Statement 1222 +UPDATE player +SET sbaplayer_id = 84 +WHERE id IN (3310,4963,6134,7169); + +-- Statement 1223 +UPDATE player +SET sbaplayer_id = 1233 +WHERE id IN (3318,4972,5958,6697,7751,8804,9787,10843,11972); + +-- Statement 1224 +UPDATE player +SET sbaplayer_id = 2242 +WHERE id IN (3323,4975); + +-- Statement 1225 +UPDATE player +SET sbaplayer_id = 1203 +WHERE id IN (3325,4976,6200,7233); + +-- Statement 1226 +UPDATE player +SET sbaplayer_id = 1450 +WHERE id IN (3331,4981); + +-- Statement 1227 +UPDATE player +SET sbaplayer_id = 664 +WHERE id IN (3334,4184,6003,6849); + +-- Statement 1228 +UPDATE player +SET sbaplayer_id = 838 +WHERE id IN (3349,4125,5802,6528,7812,8865,9841,10897,12032); + +-- Statement 1229 +UPDATE player +SET sbaplayer_id = 696 +WHERE id IN (3364,5006,6006,6857,7842,8895); + +-- Statement 1230 +UPDATE player +SET sbaplayer_id = 895 +WHERE id IN (3365,4263,5959,6698,7845,8898,9867,10923,12061); + +-- Statement 1231 +UPDATE player +SET sbaplayer_id = 2095 +WHERE id IN (3370,4651,5911,6570,7852,8905,9874,10930,12072); + +-- Statement 1232 +UPDATE player +SET sbaplayer_id = 1978 +WHERE id IN (3371,5010,5889,6512,7855,8908,9877,10933,12076); + +-- Statement 1233 +UPDATE player +SET sbaplayer_id = 1962 +WHERE id IN (3372,4205,6076,7112,7857,8910,9881,10937,12082); + +-- Statement 1234 +UPDATE player +SET sbaplayer_id = 506 +WHERE id IN (3374,5011,5794,6518,7859,8912); + +-- Statement 1235 +UPDATE player +SET sbaplayer_id = 1660 +WHERE id IN (3383,4278,5699,6214,7882,8934,9904,10960,12102); + +-- Statement 1236 +UPDATE player +SET sbaplayer_id = 1234 +WHERE id IN (3397,5027,7906,8958,9922,10978); + +-- Statement 1237 +UPDATE player +SET sbaplayer_id = 1508 +WHERE id IN (3398,5028); + +-- Statement 1238 +UPDATE player +SET sbaplayer_id = 1781 +WHERE id IN (3415,5040,6192,7225); + +-- Statement 1239 +UPDATE player +SET sbaplayer_id = 831 +WHERE id IN (3437,5058); + +-- Statement 1240 +UPDATE player +SET sbaplayer_id = 846 +WHERE id IN (3445,4440); + +-- Statement 1241 +UPDATE player +SET sbaplayer_id = 1178 +WHERE id IN (3446,4492,5824,6391,7996,9047,10000,11056,12208); + +-- Statement 1242 +UPDATE player +SET sbaplayer_id = 1851 +WHERE id IN (3464,4499,6086,7121,8037,9088,10034,11090,12247); + +-- Statement 1243 +UPDATE player +SET sbaplayer_id = 589 +WHERE id IN (3469,4653,6087,7122); + +-- Statement 1244 +UPDATE player +SET sbaplayer_id = 2037 +WHERE id IN (3473,4553,5787,6337,8055,9106,10049,11105,12262); + +-- Statement 1245 +UPDATE player +SET sbaplayer_id = 92 +WHERE id IN (3475,4156,5771,6313,8057,9108,10051,11107,12264); + +-- Statement 1246 +UPDATE player +SET sbaplayer_id = 1619 +WHERE id IN (3476,5086); + +-- Statement 1247 +UPDATE player +SET sbaplayer_id = 975 +WHERE id IN (3492,4371,5952,6776,8095,9146,10082,11138,12299); + +-- Statement 1248 +UPDATE player +SET sbaplayer_id = 1377 +WHERE id IN (3495,4470,5974,6736,8099,9150,10085,11141,12302); + +-- Statement 1249 +UPDATE player +SET sbaplayer_id = 803 +WHERE id IN (3499,4307,6168,7203,8108,9159,10096,11152); + +-- Statement 1250 +UPDATE player +SET sbaplayer_id = 936 +WHERE id IN (3501,4131,8111,9162); + +-- Statement 1251 +UPDATE player +SET sbaplayer_id = 582 +WHERE id IN (3503,4500,5708,6228,8116,9167,10103,11159,12320); + +-- Statement 1252 +UPDATE player +SET sbaplayer_id = 34 +WHERE id IN (3507,5117,5955,6786,8127,9178); + +-- Statement 1253 +UPDATE player +SET sbaplayer_id = 80 +WHERE id IN (3509,5121); + +-- Statement 1254 +UPDATE player +SET sbaplayer_id = 28 +WHERE id IN (3511,4546,6133,7168); + +-- Statement 1255 +UPDATE player +SET sbaplayer_id = 992 +WHERE id IN (3519,5132,6007,6858); + +-- Statement 1256 +UPDATE player +SET sbaplayer_id = 851 +WHERE id IN (3543,4669,8216,9267); + +-- Statement 1257 +UPDATE player +SET sbaplayer_id = 1905 +WHERE id IN (3546,4132,5859,6456,8225,9276,10191,11247,12425); + +-- Statement 1258 +UPDATE player +SET sbaplayer_id = 1965 +WHERE id IN (3548,4313,5810,6531,8228,9279,10194,11250,12428); + +-- Statement 1259 +UPDATE player +SET sbaplayer_id = 1122 +WHERE id IN (3549,5154); + +-- Statement 1260 +UPDATE player +SET sbaplayer_id = 1177 +WHERE id IN (3553,5157,8235,9286); + +-- Statement 1261 +UPDATE player +SET sbaplayer_id = 1236 +WHERE id IN (3565,4408); + +-- Statement 1262 +UPDATE player +SET sbaplayer_id = 875 +WHERE id IN (3567,5164,6030,6888,8260,9311); + +-- Statement 1263 +UPDATE player +SET sbaplayer_id = 2021 +WHERE id IN (3576,4729,6048,7084,8274,9325); + +-- Statement 1264 +UPDATE player +SET sbaplayer_id = 1152 +WHERE id IN (3581,4576,5212,6274,7245,8300,9350,10407); + +-- Statement 1265 +UPDATE player +SET sbaplayer_id = 1839 +WHERE id IN (3583,4471,5665,7039); + +-- Statement 1266 +UPDATE player +SET sbaplayer_id = 63 +WHERE id IN (3590,4404,5412,6688,9357,10414); + +-- Statement 1267 +UPDATE player +SET sbaplayer_id = 1363 +WHERE id IN (3592,4780,7260,8315,11476); + +-- Statement 1268 +UPDATE player +SET sbaplayer_id = 1635 +WHERE id IN (3599,4783,5442,6687); + +-- Statement 1269 +UPDATE player +SET sbaplayer_id = 1791 +WHERE id IN (3603,4315); + +-- Statement 1270 +UPDATE player +SET sbaplayer_id = 2014 +WHERE id IN (3609,4791); + +-- Statement 1271 +UPDATE player +SET sbaplayer_id = 121 +WHERE id IN (3611,4794,5508,6871,7309,8364,11518); + +-- Statement 1272 +UPDATE player +SET sbaplayer_id = 1012 +WHERE id IN (3614,4721,5609,6983); + +-- Statement 1273 +UPDATE player +SET sbaplayer_id = 1338 +WHERE id IN (3615,4746,5518,6886,7313,8368); + +-- Statement 1274 +UPDATE player +SET sbaplayer_id = 245 +WHERE id IN (3625,4134); + +-- Statement 1275 +UPDATE player +SET sbaplayer_id = 1966 +WHERE id IN (3628,4416,5481,6796); + +-- Statement 1276 +UPDATE player +SET sbaplayer_id = 1084 +WHERE id IN (3634,4697); + +-- Statement 1277 +UPDATE player +SET sbaplayer_id = 1827 +WHERE id IN (3635,4445,5534,6907,7351,8406,9435,10491,11559); + +-- Statement 1278 +UPDATE player +SET sbaplayer_id = 116 +WHERE id IN (3636,4562); + +-- Statement 1279 +UPDATE player +SET sbaplayer_id = 195 +WHERE id IN (3637,4811,5549,6923,9437,10493,11560); + +-- Statement 1280 +UPDATE player +SET sbaplayer_id = 1111 +WHERE id IN (3640,4432); + +-- Statement 1281 +UPDATE player +SET sbaplayer_id = 701 +WHERE id IN (3643,4814,5590,6964,7360,8415,9447,10503,11568); + +-- Statement 1282 +UPDATE player +SET sbaplayer_id = 1362 +WHERE id IN (3647,4819); + +-- Statement 1283 +UPDATE player +SET sbaplayer_id = 1601 +WHERE id IN (3648,4636,5655,7029,7370,8425,9462,10518); + +-- Statement 1284 +UPDATE player +SET sbaplayer_id = 763 +WHERE id IN (3649,4707,5593,6967,7372,8427,9463,10519); + +-- Statement 1285 +UPDATE player +SET sbaplayer_id = 685 +WHERE id IN (3650,4322,5588,6962); + +-- Statement 1286 +UPDATE player +SET sbaplayer_id = 2171 +WHERE id IN (3651,4459,5499,6877,7380,8435,9474,10530,11603); + +-- Statement 1287 +UPDATE player +SET sbaplayer_id = 124 +WHERE id IN (3655,4650,5325,6644); + +-- Statement 1288 +UPDATE player +SET sbaplayer_id = 1977 +WHERE id IN (3658,4378,5385,6582,7391,8446,9482,10538,11613); + +-- Statement 1289 +UPDATE player +SET sbaplayer_id = 902 +WHERE id IN (3660,4823); + +-- Statement 1290 +UPDATE player +SET sbaplayer_id = 880 +WHERE id IN (3663,4826,5236,6564,7399,8454,9489,10545,11620); + +-- Statement 1291 +UPDATE player +SET sbaplayer_id = 1342 +WHERE id IN (3667,4830,5234,6397,11627); + +-- Statement 1292 +UPDATE player +SET sbaplayer_id = 2046 +WHERE id IN (3669,4127,5674,7048); + +-- Statement 1293 +UPDATE player +SET sbaplayer_id = 18 +WHERE id IN (3672,4834); + +-- Statement 1294 +UPDATE player +SET sbaplayer_id = 478 +WHERE id IN (3675,4836,5571,6945,7414,8469); + +-- Statement 1295 +UPDATE player +SET sbaplayer_id = 1819 +WHERE id IN (3676,4607,5273,6565,7416,8471,10278,11334); + +-- Statement 1296 +UPDATE player +SET sbaplayer_id = 1257 +WHERE id IN (3681,4573,5633,7007); + +-- Statement 1297 +UPDATE player +SET sbaplayer_id = 1540 +WHERE id IN (3684,4621,7430,8485,9519,10575,11655); + +-- Statement 1298 +UPDATE player +SET sbaplayer_id = 890 +WHERE id IN (3686,4417,5477,6782); + +-- Statement 1299 +UPDATE player +SET sbaplayer_id = 1573 +WHERE id IN (3687,4496,5652,7026); + +-- Statement 1300 +UPDATE player +SET sbaplayer_id = 1942 +WHERE id IN (3690,4842,5248,6355,7442,8497); + +-- Statement 1301 +UPDATE player +SET sbaplayer_id = 1621 +WHERE id IN (3691,4844,9532,10588,11667); + +-- Statement 1302 +UPDATE player +SET sbaplayer_id = 1304 +WHERE id IN (3693,4491); + +-- Statement 1303 +UPDATE player +SET sbaplayer_id = 261 +WHERE id IN (3694,4497,5319,6482,7449,8504,10286,11342); + +-- Statement 1304 +UPDATE player +SET sbaplayer_id = 971 +WHERE id IN (3700,4300,5320,6533,7463,8518,9544,10600,11681); + +-- Statement 1305 +UPDATE player +SET sbaplayer_id = 1860 +WHERE id IN (3701,4848); + +-- Statement 1306 +UPDATE player +SET sbaplayer_id = 108 +WHERE id IN (3702,4849); + +-- Statement 1307 +UPDATE player +SET sbaplayer_id = 54 +WHERE id IN (3705,4850); + +-- Statement 1308 +UPDATE player +SET sbaplayer_id = 548 +WHERE id IN (3707,4754,5453,6735,7470,8525,9550,10606,11688); + +-- Statement 1309 +UPDATE player +SET sbaplayer_id = 125 +WHERE id IN (3708,4381,5546,6920,7471,8526,9551,10607); + +-- Statement 1310 +UPDATE player +SET sbaplayer_id = 337 +WHERE id IN (3709,4330,7472,8527); + +-- Statement 1311 +UPDATE player +SET sbaplayer_id = 1449 +WHERE id IN (3715,4311,7482,8537); + +-- Statement 1312 +UPDATE player +SET sbaplayer_id = 1548 +WHERE id IN (3718,4209,5649,7023,7491,8545,9567,10623,11709); + +-- Statement 1313 +UPDATE player +SET sbaplayer_id = 1077 +WHERE id IN (3720,4339,5619,6993,7498,8552,9570,10626,11715); + +-- Statement 1314 +UPDATE player +SET sbaplayer_id = 688 +WHERE id IN (3721,4622); + +-- Statement 1315 +UPDATE player +SET sbaplayer_id = 1762 +WHERE id IN (3723,4863,5661,7035,7500,8554,11718); + +-- Statement 1316 +UPDATE player +SET sbaplayer_id = 787 +WHERE id IN (3724,4864,5507,6831); + +-- Statement 1317 +UPDATE player +SET sbaplayer_id = 2158 +WHERE id IN (3727,4172,5304,6452,7504,8558,9572,10628,11721); + +-- Statement 1318 +UPDATE player +SET sbaplayer_id = 1959 +WHERE id IN (3729,4390,5370,6554,7508,8562,11723); + +-- Statement 1319 +UPDATE player +SET sbaplayer_id = 1618 +WHERE id IN (3734,4873,5271,6402,7518,8572,10298,11354,11733); + +-- Statement 1320 +UPDATE player +SET sbaplayer_id = 1848 +WHERE id IN (3735,4874,5297,6444,7519,8573,9580,10636); + +-- Statement 1321 +UPDATE player +SET sbaplayer_id = 2033 +WHERE id IN (3737,4875,5511,6878,7522,8576,10299,11355); + +-- Statement 1322 +UPDATE player +SET sbaplayer_id = 1496 +WHERE id IN (3746,4520,11764); + +-- Statement 1323 +UPDATE player +SET sbaplayer_id = 1604 +WHERE id IN (3747,4146,5656,7030,7553,8607,10301,11357,11767); + +-- Statement 1324 +UPDATE player +SET sbaplayer_id = 2209 +WHERE id IN (3749,4510); + +-- Statement 1325 +UPDATE player +SET sbaplayer_id = 1041 +WHERE id IN (3757,4897); + +-- Statement 1326 +UPDATE player +SET sbaplayer_id = 1885 +WHERE id IN (3759,4898,9636,10692,11792); + +-- Statement 1327 +UPDATE player +SET sbaplayer_id = 439 +WHERE id IN (3760,4256,5250,6360,11797); + +-- Statement 1328 +UPDATE player +SET sbaplayer_id = 301 +WHERE id IN (3762,4752,5525,6884,7589,8642,9648,10704,11806); + +-- Statement 1329 +UPDATE player +SET sbaplayer_id = 475 +WHERE id IN (3768,4366); + +-- Statement 1330 +UPDATE player +SET sbaplayer_id = 1332 +WHERE id IN (3776,4912,7617,8670,9674,10730,11838); + +-- Statement 1331 +UPDATE player +SET sbaplayer_id = 2215 +WHERE id IN (3778,4723,5290,6491); + +-- Statement 1332 +UPDATE player +SET sbaplayer_id = 339 +WHERE id IN (3779,4914,5443,6717,7619,8672); + +-- Statement 1333 +UPDATE player +SET sbaplayer_id = 1297 +WHERE id IN (3780,4915); + +-- Statement 1334 +UPDATE player +SET sbaplayer_id = 836 +WHERE id IN (3781,4916,7623,8676,9679,10735,11845); + +-- Statement 1335 +UPDATE player +SET sbaplayer_id = 74 +WHERE id IN (3783,4147,5226,6380,7627,8680); + +-- Statement 1336 +UPDATE player +SET sbaplayer_id = 714 +WHERE id IN (3784,4919,7628,8681,9682,10738); + +-- Statement 1337 +UPDATE player +SET sbaplayer_id = 931 +WHERE id IN (3804,4216); + +-- Statement 1338 +UPDATE player +SET sbaplayer_id = 1009 +WHERE id IN (3805,4549,5389,6599,7659,8712,9713,10769); + +-- Statement 1339 +UPDATE player +SET sbaplayer_id = 784 +WHERE id IN (3810); + +-- Statement 1340 +UPDATE player +SET sbaplayer_id = 804 +WHERE id IN (3818,4235); + +-- Statement 1341 +UPDATE player +SET sbaplayer_id = 863 +WHERE id IN (3823,4566,7700,8753,9746,10802); + +-- Statement 1342 +UPDATE player +SET sbaplayer_id = 1673 +WHERE id IN (3828,4340,5658,7032,7716,8769); + +-- Statement 1343 +UPDATE player +SET sbaplayer_id = 712 +WHERE id IN (3829,4954); + +-- Statement 1344 +UPDATE player +SET sbaplayer_id = 1479 +WHERE id IN (3830,4955,5646,7020,7725,8778,9765,10821); + +-- Statement 1345 +UPDATE player +SET sbaplayer_id = 455 +WHERE id IN (3831,4447,5524,6883); + +-- Statement 1346 +UPDATE player +SET sbaplayer_id = 1045 +WHERE id IN (3833,4956,5614,6988,7727,8780,9768,10824,11948); + +-- Statement 1347 +UPDATE player +SET sbaplayer_id = 1780 +WHERE id IN (3835,4958,7728,8781,9769,10825,11949); + +-- Statement 1348 +UPDATE player +SET sbaplayer_id = 451 +WHERE id IN (3836,4769,5415,6778,7729,8782,10323,11378); + +-- Statement 1349 +UPDATE player +SET sbaplayer_id = 1702 +WHERE id IN (3837,4959,9770,10826,11950); + +-- Statement 1350 +UPDATE player +SET sbaplayer_id = 876 +WHERE id IN (3840,4513,7737,8790,9775,10831,11959); + +-- Statement 1351 +UPDATE player +SET sbaplayer_id = 1356 +WHERE id IN (3844,4756,5230,6555,7746,8799,9781,10837,11965); + +-- Statement 1352 +UPDATE player +SET sbaplayer_id = 1699 +WHERE id IN (3845,4144,5258,6378,7747,8800,9782,10838); + +-- Statement 1353 +UPDATE player +SET sbaplayer_id = 2129 +WHERE id IN (3846,4558,7748,8801,9784,10840,11967); + +-- Statement 1354 +UPDATE player +SET sbaplayer_id = 32 +WHERE id IN (3848,4519,5503,6829,11970); + +-- Statement 1355 +UPDATE player +SET sbaplayer_id = 623 +WHERE id IN (3857,4237,5584,6958,7777,8830,10333,11388,11998); + +-- Statement 1356 +UPDATE player +SET sbaplayer_id = 1123 +WHERE id IN (3860,4726); + +-- Statement 1357 +UPDATE player +SET sbaplayer_id = 1897 +WHERE id IN (3863,4486,5346,6526,7786,8839,12006); + +-- Statement 1358 +UPDATE player +SET sbaplayer_id = 612 +WHERE id IN (3866,4990,5408,6635,7793,8846); + +-- Statement 1359 +UPDATE player +SET sbaplayer_id = 269 +WHERE id IN (3867,4991,5491,6866,7795,8848); + +-- Statement 1360 +UPDATE player +SET sbaplayer_id = 1311 +WHERE id IN (3868,4540,7801,8854,9831,10887); + +-- Statement 1361 +UPDATE player +SET sbaplayer_id = 546 +WHERE id IN (3872,4662,5239,6428,7806,8859); + +-- Statement 1362 +UPDATE player +SET sbaplayer_id = 1999 +WHERE id IN (3873,4336,9838,10894); + +-- Statement 1363 +UPDATE player +SET sbaplayer_id = 27 +WHERE id IN (3876,4666,5536,6910,7813,8866,10340,11395,12033); + +-- Statement 1364 +UPDATE player +SET sbaplayer_id = 764 +WHERE id IN (3877,4996,5252,6365,7817,8870,9844,10900); + +-- Statement 1365 +UPDATE player +SET sbaplayer_id = 1300 +WHERE id IN (3880,4578); + +-- Statement 1366 +UPDATE player +SET sbaplayer_id = 722 +WHERE id IN (3882,4999,5591,6965,7823,8876,9850,10906,12042); + +-- Statement 1367 +UPDATE player +SET sbaplayer_id = 1316 +WHERE id IN (3883,5001,5636,7010,10343,11398); + +-- Statement 1368 +UPDATE player +SET sbaplayer_id = 274 +WHERE id IN (3885,4676,5378,6734,7835,8888,12052); + +-- Statement 1369 +UPDATE player +SET sbaplayer_id = 946 +WHERE id IN (3886,4316,5420,6654); + +-- Statement 1370 +UPDATE player +SET sbaplayer_id = 395 +WHERE id IN (3887,4190); + +-- Statement 1371 +UPDATE player +SET sbaplayer_id = 617 +WHERE id IN (3889,4384,5583,6957,7840,8893,9863,10919,12056); + +-- Statement 1372 +UPDATE player +SET sbaplayer_id = 668 +WHERE id IN (3891,5005,5425,6661); + +-- Statement 1373 +UPDATE player +SET sbaplayer_id = 832 +WHERE id IN (3893,5008); + +-- Statement 1374 +UPDATE player +SET sbaplayer_id = 1276 +WHERE id IN (3895,4344,5457,6718); + +-- Statement 1375 +UPDATE player +SET sbaplayer_id = 2200 +WHERE id IN (3897,4671,7851,8904,9873,10929); + +-- Statement 1376 +UPDATE player +SET sbaplayer_id = 2228 +WHERE id IN (3898,4295,5695,7069); + +-- Statement 1377 +UPDATE player +SET sbaplayer_id = 1421 +WHERE id IN (3903,4692); + +-- -- Statement 1378 +-- UPDATE player +-- SET sbaplayer_id = 3243 +-- WHERE id IN (3904,4637); + +-- Statement 1379 +UPDATE player +SET sbaplayer_id = 2243 +WHERE id IN (3913,4187,5281,6485,7877,8930,10349,11404); + +-- Statement 1380 +UPDATE player +SET sbaplayer_id = 1504 +WHERE id IN (3914,5018,5526,6887,9902,10958); + +-- Statement 1381 +UPDATE player +SET sbaplayer_id = 638 +WHERE id IN (3926,4521,5586,6960,7920,8971); + +-- Statement 1382 +UPDATE player +SET sbaplayer_id = 806 +WHERE id IN (3927,5033); + +-- Statement 1383 +UPDATE player +SET sbaplayer_id = 1047 +WHERE id IN (3938,5045,5347,6671,7947,8998,9959,11015,12159); + +-- Statement 1384 +UPDATE player +SET sbaplayer_id = 1036 +WHERE id IN (3945,5053); + +-- Statement 1385 +UPDATE player +SET sbaplayer_id = 436 +WHERE id IN (3951,5060,5493,6855,7984,9035); + +-- Statement 1386 +UPDATE player +SET sbaplayer_id = 1513 +WHERE id IN (3953,5062,9990,11046,12193); + +-- Statement 1387 +UPDATE player +SET sbaplayer_id = 1408 +WHERE id IN (3959,5066,5436,6769); + +-- Statement 1388 +UPDATE player +SET sbaplayer_id = 1410 +WHERE id IN (3960,5067,7999,9050); + +-- Statement 1389 +UPDATE player +SET sbaplayer_id = 2027 +WHERE id IN (3966,5072); + +-- Statement 1390 +UPDATE player +SET sbaplayer_id = 1687 +WHERE id IN (3967,5074); + +-- Statement 1391 +UPDATE player +SET sbaplayer_id = 592 +WHERE id IN (3976,4543,5577,6951,8040,9091,10037,11093,12252); + +-- Statement 1392 +UPDATE player +SET sbaplayer_id = 523 +WHERE id IN (3980,4257,5574,6948); + +-- Statement 1393 +UPDATE player +SET sbaplayer_id = 1716 +WHERE id IN (3983,5085); + +-- Statement 1394 +UPDATE player +SET sbaplayer_id = 693 +WHERE id IN (3990,5089); + +-- Statement 1395 +UPDATE player +SET sbaplayer_id = 1850 +WHERE id IN (3991,4251,5667,7041); + +-- Statement 1396 +UPDATE player +SET sbaplayer_id = 689 +WHERE id IN (3998,5099,8085,9136); + +-- Statement 1397 +UPDATE player +SET sbaplayer_id = 338 +WHERE id IN (4005,4762); + +-- Statement 1398 +UPDATE player +SET sbaplayer_id = 1814 +WHERE id IN (4008,4230); + +-- Statement 1399 +UPDATE player +SET sbaplayer_id = 1983 +WHERE id IN (4010,5106,5341,6515,8104,9155,10381,11436,12307); + +-- Statement 1400 +UPDATE player +SET sbaplayer_id = 929 +WHERE id IN (4016,4749,5606,6980); + +-- Statement 1401 +UPDATE player +SET sbaplayer_id = 1798 +WHERE id IN (4017,4682); + +-- Statement 1402 +UPDATE player +SET sbaplayer_id = 1576 +WHERE id IN (4024,5116,8123,9174); + +-- Statement 1403 +UPDATE player +SET sbaplayer_id = 2204 +WHERE id IN (4033,5122); + +-- Statement 1404 +UPDATE player +SET sbaplayer_id = 1751 +WHERE id IN (4034,4170,12344); + +-- Statement 1405 +UPDATE player +SET sbaplayer_id = 930 +WHERE id IN (4036,4731,5605,6979,8141,9192); + +-- Statement 1406 +UPDATE player +SET sbaplayer_id = 1958 +WHERE id IN (4039,5124); + +-- Statement 1407 +UPDATE player +SET sbaplayer_id = 2105 +WHERE id IN (4043,4402,5492,6809,8157,9208,10134,11190,12361); + +-- Statement 1408 +UPDATE player +SET sbaplayer_id = 927 +WHERE id IN (4044,4124,5253,6367,8159,9210,10138,11194,12366); + +-- Statement 1409 +UPDATE player +SET sbaplayer_id = 1836 +WHERE id IN (4048,5131,5350,6595,8162,9213,10140,11196,12369); + +-- Statement 1410 +UPDATE player +SET sbaplayer_id = 791 +WHERE id IN (4050,4487); + +-- Statement 1411 +UPDATE player +SET sbaplayer_id = 844 +WHERE id IN (4051,4616,5528,6892,8164,9215); + +-- Statement 1412 +UPDATE player +SET sbaplayer_id = 2149 +WHERE id IN (4053,4635,5351,6712); + +-- Statement 1413 +UPDATE player +SET sbaplayer_id = 79 +WHERE id IN (4055,4359,5175,6249); + +-- Statement 1414 +UPDATE player +SET sbaplayer_id = 2225 +WHERE id IN (4059,4163); + +-- Statement 1415 +UPDATE player +SET sbaplayer_id = 2244 +WHERE id IN (4060,4353); + +-- Statement 1416 +UPDATE player +SET sbaplayer_id = 180 +WHERE id IN (4066,4394); + +-- Statement 1417 +UPDATE player +SET sbaplayer_id = 1085 +WHERE id IN (4067,4276,5620,6994); + +-- Statement 1418 +UPDATE player +SET sbaplayer_id = 1282 +WHERE id IN (4076,4444,5427,6659,8203,9254,12408); + +-- Statement 1419 +UPDATE player +SET sbaplayer_id = 1244 +WHERE id IN (4087,4288,5293,6429,8219,9270); + +-- Statement 1420 +UPDATE player +SET sbaplayer_id = 1691 +WHERE id IN (4088,4725,5306,6455,8224,9275,10189,11245,12423); + +-- Statement 1421 +UPDATE player +SET sbaplayer_id = 1987 +WHERE id IN (4089,4645); + +-- Statement 1422 +UPDATE player +SET sbaplayer_id = 2233 +WHERE id IN (4091,4705,5696,7070); + +-- Statement 1423 +UPDATE player +SET sbaplayer_id = 743 +WHERE id IN (4092,4303,5429,6763,10395,11450,12433); + +-- Statement 1424 +UPDATE player +SET sbaplayer_id = 178 +WHERE id IN (4100,4649); + +-- Statement 1425 +UPDATE player +SET sbaplayer_id = 446 +WHERE id IN (4101,5160,5566,6940,8245,9296); + +-- Statement 1426 +UPDATE player +SET sbaplayer_id = 1611 +WHERE id IN (4108,4387,5395,6616,8271,9322,10401,11456,12470); + +-- Statement 1427 +UPDATE player +SET sbaplayer_id = 780 +WHERE id IN (4115,5169); + +-- Statement 1428 +UPDATE player +SET sbaplayer_id = 703 +WHERE id IN (5455,6800); + +-- Statement 1429 +UPDATE player +SET sbaplayer_id = 17 +WHERE id IN (5881,6493,8069,9120,10062,11118,12277); + +-- Statement 1430 +UPDATE player +SET sbaplayer_id = 1545 +WHERE id IN (6017,6825); + +-- Statement 1431 +UPDATE player +SET sbaplayer_id = 1205 +WHERE id IN (6018,6832,7357,8412,9442,10498,11564); + +-- Statement 1432 +UPDATE player +SET sbaplayer_id = 1120 +WHERE id IN (6203,7236); + +-- Statement 1433 +UPDATE player +SET sbaplayer_id = 568 +WHERE id IN (5177,6225); + +-- Statement 1434 +UPDATE player +SET sbaplayer_id = 2146 +WHERE id IN (5188,6366,7585,8638,9642,10698); + +-- Statement 1435 +UPDATE player +SET sbaplayer_id = 717 +WHERE id IN (5192,6279,8215,9266); + +-- Statement 1436 +UPDATE player +SET sbaplayer_id = 1766 +WHERE id IN (5195,6405,12391); + +-- Statement 1437 +UPDATE player +SET sbaplayer_id = 716 +WHERE id IN (5200,6306,12096); + +-- Statement 1438 +UPDATE player +SET sbaplayer_id = 2119 +WHERE id IN (5205,6267,7321,8376); + +-- Statement 1439 +UPDATE player +SET sbaplayer_id = 1192 +WHERE id IN (5215,6278,7275,8330,9372,10429); + +-- Statement 1440 +UPDATE player +SET sbaplayer_id = 385 +WHERE id IN (5237,6336,7549,8603,9607,10663,11760); + +-- Statement 1441 +UPDATE player +SET sbaplayer_id = 1690 +WHERE id IN (5249,6527,7783,8836); + +-- Statement 1442 +UPDATE player +SET sbaplayer_id = 626 +WHERE id IN (5251,6364,7419,8474,9507,10563,11640); + +-- Statement 1443 +UPDATE player +SET sbaplayer_id = 1456 +WHERE id IN (5266,6389,8153,9204,10130,11186,12358); + +-- Statement 1444 +UPDATE player +SET sbaplayer_id = 162 +WHERE id IN (5269,6395,7486,8541,9562,10618,11703); + +-- Statement 1445 +UPDATE player +SET sbaplayer_id = 797 +WHERE id IN (5282,6633,8239,9290); + +-- Statement 1446 +UPDATE player +SET sbaplayer_id = 1956 +WHERE id IN (5285,6420); + +-- Statement 1447 +UPDATE player +SET sbaplayer_id = 1164 +WHERE id IN (5286,6421,7870,8923); + +-- Statement 1448 +UPDATE player +SET sbaplayer_id = 1380 +WHERE id IN (5291,6492,9869,10925,12066); + +-- Statement 1449 +UPDATE player +SET sbaplayer_id = 1409 +WHERE id IN (5295,6438); + +-- Statement 1450 +UPDATE player +SET sbaplayer_id = 1071 +WHERE id IN (5299,6446,7948,8999,9960,11016,12160); + +-- Statement 1451 +UPDATE player +SET sbaplayer_id = 1195 +WHERE id IN (5300,6447); + +-- Statement 1452 +UPDATE player +SET sbaplayer_id = 287 +WHERE id IN (5301,6598,12295); + +-- Statement 1453 +UPDATE player +SET sbaplayer_id = 1732 +WHERE id IN (5307,6508,7712,8765,9756,10812,11936); + +-- Statement 1454 +UPDATE player +SET sbaplayer_id = 1507 +WHERE id IN (5312,6470,7715,8768,9757,10813,11937); + +-- Statement 1455 +UPDATE player +SET sbaplayer_id = 368 +WHERE id IN (5313,6623,7796,8849,9828,10884,12010); + +-- Statement 1456 +UPDATE player +SET sbaplayer_id = 129 +WHERE id IN (5314,6478,7707,8760); + +-- Statement 1457 +UPDATE player +SET sbaplayer_id = 1982 +WHERE id IN (5321,6627,7814,8867,10341,11396,12034); + +-- Statement 1458 +UPDATE player +SET sbaplayer_id = 2145 +WHERE id IN (5333,6502); + +-- Statement 1459 +UPDATE player +SET sbaplayer_id = 2132 +WHERE id IN (5334,6503,8227,9278,10192,11248); + +-- Statement 1460 +UPDATE player +SET sbaplayer_id = 1268 +WHERE id IN (5336,6572,8134,9185,10116,11172); + +-- Statement 1461 +UPDATE player +SET sbaplayer_id = 1981 +WHERE id IN (5340,6575,8288,9339); + +-- Statement 1462 +UPDATE player +SET sbaplayer_id = 424 +WHERE id IN (5344,6522,11876); + +-- Statement 1463 +UPDATE player +SET sbaplayer_id = 529 +WHERE id IN (5352,6534,7394,8449,9484,10540,11616); + +-- Statement 1464 +UPDATE player +SET sbaplayer_id = 1681 +WHERE id IN (5359,6542); + +-- Statement 1465 +UPDATE player +SET sbaplayer_id = 191 +WHERE id IN (5362,6545,8043,9094,10040,11096); + +-- Statement 1466 +UPDATE player +SET sbaplayer_id = 1008 +WHERE id IN (5363,6605,7658,8711,9712,10768); + +-- Statement 1467 +UPDATE player +SET sbaplayer_id = 2231 +WHERE id IN (5364,6715,7371,8426); + +-- Statement 1468 +UPDATE player +SET sbaplayer_id = 719 +WHERE id IN (5368,6549,7868,8921); + +-- Statement 1469 +UPDATE player +SET sbaplayer_id = 1899 +WHERE id IN (5372,6615,7808,8861,9837,10893,12024); + +-- Statement 1470 +UPDATE player +SET sbaplayer_id = 1812 +WHERE id IN (5374,6561); + +-- Statement 1471 +UPDATE player +SET sbaplayer_id = 176 +WHERE id IN (5379,6569,7311,8366,11519); + +-- Statement 1472 +UPDATE player +SET sbaplayer_id = 345 +WHERE id IN (5383,6579,7506,8560); + +-- Statement 1473 +UPDATE player +SET sbaplayer_id = 1447 +WHERE id IN (5386,6702,7337,8392,9424,10480,11537); + +-- Statement 1474 +UPDATE player +SET sbaplayer_id = 718 +WHERE id IN (5402,6678,7861,8914,9884,10940,12084); + +-- Statement 1475 +UPDATE player +SET sbaplayer_id = 583 +WHERE id IN (5407,6685,8028,9079); + +-- Statement 1476 +UPDATE player +SET sbaplayer_id = 519 +WHERE id IN (5411,6645); + +-- Statement 1477 +UPDATE player +SET sbaplayer_id = 704 +WHERE id IN (5413,6647,8053,9104); + +-- Statement 1478 +UPDATE player +SET sbaplayer_id = 423 +WHERE id IN (5416,6649,7696,8749); + +-- Statement 1479 +UPDATE player +SET sbaplayer_id = 1769 +WHERE id IN (5419,6747,7616,8669); + +-- Statement 1480 +UPDATE player +SET sbaplayer_id = 2072 +WHERE id IN (5421,6655,7285,8340,9381,10438,11493); + +-- Statement 1481 +UPDATE player +SET sbaplayer_id = 840 +WHERE id IN (5428,6665,7866,8919); + +-- Statement 1482 +UPDATE player +SET sbaplayer_id = 1295 +WHERE id IN (5440,6803,8220,9271,10193,11249,12427); + +-- Statement 1483 +UPDATE player +SET sbaplayer_id = 1902 +WHERE id IN (5446,6784,8198,9249,10168,11224); + +-- Statement 1484 +UPDATE player +SET sbaplayer_id = 1758 +WHERE id IN (5448,6785); + +-- Statement 1485 +UPDATE player +SET sbaplayer_id = 1434 +WHERE id IN (5450,6790); + +-- Statement 1486 +UPDATE player +SET sbaplayer_id = 1752 +WHERE id IN (5451,6696,8002,9053,10006,11062,12214); + +-- Statement 1487 +UPDATE player +SET sbaplayer_id = 504 +WHERE id IN (5454,6706); + +-- Statement 1488 +UPDATE player +SET sbaplayer_id = 1505 +WHERE id IN (5462,6740); + +-- Statement 1489 +UPDATE player +SET sbaplayer_id = 2245 +WHERE id IN (5464,6748); + +-- Statement 1490 +UPDATE player +SET sbaplayer_id = 2242 +WHERE id IN (5465,6751,7876,8929,9897,10953,12095); + +-- Statement 1491 +UPDATE player +SET sbaplayer_id = 917 +WHERE id IN (5468,6754); + +-- Statement 1492 +UPDATE player +SET sbaplayer_id = 1091 +WHERE id IN (5474,6826,7283,8338,9379,10436); + +-- Statement 1493 +UPDATE player +SET sbaplayer_id = 251 +WHERE id IN (5476,6773); + +-- Statement 1494 +UPDATE player +SET sbaplayer_id = 1511 +WHERE id IN (5483,6861); + +-- Statement 1495 +UPDATE player +SET sbaplayer_id = 1369 +WHERE id IN (5484,6863,7541,8595,9600,10656,11753); + +-- Statement 1496 +UPDATE player +SET sbaplayer_id = 1176 +WHERE id IN (5496,6817,7295,8350,9390,10447); + +-- Statement 1497 +UPDATE player +SET sbaplayer_id = 1579 +WHERE id IN (5500,6867,7438,8493); + +-- Statement 1498 +UPDATE player +SET sbaplayer_id = 1770 +WHERE id IN (5501,6828,9819,10875); + +-- Statement 1499 +UPDATE player +SET sbaplayer_id = 9 +WHERE id IN (5513,6842,7267,8322,9366,10423); + +-- Statement 1500 +UPDATE player +SET sbaplayer_id = 1768 +WHERE id IN (5516,6852,10141,11197,12370); + +-- Statement 1501 +UPDATE player +SET sbaplayer_id = 1575 +WHERE id IN (5522,6872,8287,9338,12485); + +-- Statement 1502 +UPDATE player +SET sbaplayer_id = 8 +WHERE id IN (5535,6909,7373,8428,9464,10520,11588); + +-- Statement 1503 +UPDATE player +SET sbaplayer_id = 45 +WHERE id IN (5538,6912,9883,10939,12083); + +-- Statement 1504 +UPDATE player +SET sbaplayer_id = 90 +WHERE id IN (5542,6916); + +-- Statement 1505 +UPDATE player +SET sbaplayer_id = 98 +WHERE id IN (5545,6919,7240,8295); + +-- Statement 1506 +UPDATE player +SET sbaplayer_id = 134 +WHERE id IN (5547,6921); + +-- Statement 1507 +UPDATE player +SET sbaplayer_id = 204 +WHERE id IN (5550,6924,8033,9084,10031,11087,12242); + +-- Statement 1508 +UPDATE player +SET sbaplayer_id = 227 +WHERE id IN (5551,6925); + +-- Statement 1509 +UPDATE player +SET sbaplayer_id = 264 +WHERE id IN (5553,6927); + +-- Statement 1510 +UPDATE player +SET sbaplayer_id = 302 +WHERE id IN (5555,6929,7535,8589,9597,10653,11748); + +-- Statement 1511 +UPDATE player +SET sbaplayer_id = 313 +WHERE id IN (5557,6931); + +-- Statement 1512 +UPDATE player +SET sbaplayer_id = 351 +WHERE id IN (5559,6933); + +-- Statement 1513 +UPDATE player +SET sbaplayer_id = 388 +WHERE id IN (5563,6937); + +-- Statement 1514 +UPDATE player +SET sbaplayer_id = 477 +WHERE id IN (5570,6944); + +-- Statement 1515 +UPDATE player +SET sbaplayer_id = 482 +WHERE id IN (5572,6946,7552,8606,9613,10669,11766); + +-- Statement 1516 +UPDATE player +SET sbaplayer_id = 590 +WHERE id IN (5576,6950); + +-- Statement 1517 +UPDATE player +SET sbaplayer_id = 594 +WHERE id IN (5578,6952,7336,8391,9423,10479,11536); + +-- Statement 1518 +UPDATE player +SET sbaplayer_id = 767 +WHERE id IN (5594,6968,7790,8843,9823,10879); + +-- Statement 1519 +UPDATE player +SET sbaplayer_id = 858 +WHERE id IN (5602,6976); + +-- Statement 1520 +UPDATE player +SET sbaplayer_id = 861 +WHERE id IN (5603,6977,8109,9160,10097,11153,12316); + +-- Statement 1521 +UPDATE player +SET sbaplayer_id = 972 +WHERE id IN (5607,6981,7604,8657,9664,10720,11825); + +-- Statement 1522 +UPDATE player +SET sbaplayer_id = 1018 +WHERE id IN (5611,6985); + +-- Statement 1523 +UPDATE player +SET sbaplayer_id = 1064 +WHERE id IN (5616,6990); + +-- Statement 1524 +UPDATE player +SET sbaplayer_id = 1072 +WHERE id IN (5617,6991,9692,10748); + +-- Statement 1525 +UPDATE player +SET sbaplayer_id = 1073 +WHERE id IN (5618,6992); + +-- Statement 1526 +UPDATE player +SET sbaplayer_id = 1139 +WHERE id IN (5622,6996,8112,9163,10099,11155,12318); + +-- Statement 1527 +UPDATE player +SET sbaplayer_id = 1159 +WHERE id IN (5624,6998); + +-- Statement 1528 +UPDATE player +SET sbaplayer_id = 1172 +WHERE id IN (5627,7001,7474,8529,9554,10610,11692); + +-- Statement 1529 +UPDATE player +SET sbaplayer_id = 1191 +WHERE id IN (5628,7002,7921,8972,9938,10994); + +-- Statement 1530 +UPDATE player +SET sbaplayer_id = 1193 +WHERE id IN (5629,7003,7710,8763,9754,10810,11933); + +-- Statement 1531 +UPDATE player +SET sbaplayer_id = 1292 +WHERE id IN (5634,7008,12211); + +-- Statement 1532 +UPDATE player +SET sbaplayer_id = 2246 +WHERE id IN (5635,7009); + +-- Statement 1533 +UPDATE player +SET sbaplayer_id = 1389 +WHERE id IN (5643,7017); + +-- Statement 1534 +UPDATE player +SET sbaplayer_id = 1398 +WHERE id IN (5644,7018,8182,9233,12389); + +-- Statement 1535 +UPDATE player +SET sbaplayer_id = 1721 +WHERE id IN (5659,7033,7954,9005,10359,11414); + +-- Statement 1536 +UPDATE player +SET sbaplayer_id = 1750 +WHERE id IN (5660,7034); + +-- Statement 1537 +UPDATE player +SET sbaplayer_id = 1984 +WHERE id IN (5670,7044,7911,8963,9929,10985); + +-- Statement 1538 +UPDATE player +SET sbaplayer_id = 2074 +WHERE id IN (5677,7051,8251,9302,10208,11264,12449); + +-- Statement 1539 +UPDATE player +SET sbaplayer_id = 2115 +WHERE id IN (5680,7054,7306,8361,9401,10457); + +-- Statement 1540 +UPDATE player +SET sbaplayer_id = 2121 +WHERE id IN (5681,7055,8145,9196); + +-- Statement 1541 +UPDATE player +SET sbaplayer_id = 2123 +WHERE id IN (5682,7056,10382,11437,12309); + +-- Statement 1542 +UPDATE player +SET sbaplayer_id = 2133 +WHERE id IN (5684,7058); + +-- Statement 1543 +UPDATE player +SET sbaplayer_id = 2143 +WHERE id IN (5685,7059,7979,9030,12188); + +-- Statement 1544 +UPDATE player +SET sbaplayer_id = 2207 +WHERE id IN (5692,7066); + +-- Statement 1545 +UPDATE player +SET sbaplayer_id = 646 +WHERE id IN (5703,6218,8242,9293,10201,11257); + +-- Statement 1546 +UPDATE player +SET sbaplayer_id = 1876 +WHERE id IN (5716,6371,7532,8586,9593,10649,11743); + +-- Statement 1547 +UPDATE player +SET sbaplayer_id = 2110 +WHERE id IN (5734,6427,8167,9218,10144,11200,12373); + +-- Statement 1548 +UPDATE player +SET sbaplayer_id = 983 +WHERE id IN (5752,6288,7450,8505,9535,10591,11672); + +-- Statement 1549 +UPDATE player +SET sbaplayer_id = 1315 +WHERE id IN (5757,6476,7654,8707,9708,10764,11883); + +-- Statement 1550 +UPDATE player +SET sbaplayer_id = 1269 +WHERE id IN (5760,6297,7412,8467,9503,10559,11636); + +-- Statement 1551 +UPDATE player +SET sbaplayer_id = 1042 +WHERE id IN (5764,6490,7607,8660,9666,10722,11828); + +-- Statement 1552 +UPDATE player +SET sbaplayer_id = 948 +WHERE id IN (5777,6323,7307,8362,9403,10459,11513); + +-- Statement 1553 +UPDATE player +SET sbaplayer_id = 1786 +WHERE id IN (5780,6327,7571,8625); + +-- Statement 1554 +UPDATE player +SET sbaplayer_id = 953 +WHERE id IN (5797,6348,7738,8791,9776,10832,11960); + +-- Statement 1555 +UPDATE player +SET sbaplayer_id = 1830 +WHERE id IN (5798,6351,7770,8823,9806,10862,11991); + +-- Statement 1556 +UPDATE player +SET sbaplayer_id = 690 +WHERE id IN (5800,6353,7257,8312,9359,10416,11473); + +-- Statement 1557 +UPDATE player +SET sbaplayer_id = 956 +WHERE id IN (5805,6361,7846,8899,9868,10924,12062); + +-- Statement 1558 +UPDATE player +SET sbaplayer_id = 2181 +WHERE id IN (5816,6376,8032,9083,10030,11086,12241); + +-- Statement 1559 +UPDATE player +SET sbaplayer_id = 1436 +WHERE id IN (5818,6384,7856,8909,9878,10934,12077); + +-- Statement 1560 +UPDATE player +SET sbaplayer_id = 878 +WHERE id IN (5832,6563); + +-- Statement 1561 +UPDATE player +SET sbaplayer_id = 1725 +WHERE id IN (5839,6423,7815,8868,9842,10898,12035); + +-- Statement 1562 +UPDATE player +SET sbaplayer_id = 137 +WHERE id IN (5860,6604); + +-- Statement 1563 +UPDATE player +SET sbaplayer_id = 479 +WHERE id IN (5863,6464,7375,8430,9466,10522,11590); + +-- Statement 1564 +UPDATE player +SET sbaplayer_id = 109 +WHERE id IN (5868,6468,7265,8320,9364,10421,11479); + +-- Statement 1565 +UPDATE player +SET sbaplayer_id = 2077 +WHERE id IN (5887,6506,7928,8979,9943,10999,12141); + +-- Statement 1566 +UPDATE player +SET sbaplayer_id = 1657 +WHERE id IN (5914,6703,7550,8604,9608,10664,11762); + +-- Statement 1567 +UPDATE player +SET sbaplayer_id = 1055 +WHERE id IN (5932,6730,7282,8337,9378,10435,11491); + +-- Statement 1568 +UPDATE player +SET sbaplayer_id = 1652 +WHERE id IN (5933,6731); + +-- Statement 1569 +UPDATE player +SET sbaplayer_id = 1094 +WHERE id IN (5954,6781,8193,9244,10392,11447,12398); + +-- Statement 1570 +UPDATE player +SET sbaplayer_id = 1307 +WHERE id IN (5957,6791,8267,9318); + +-- Statement 1571 +UPDATE player +SET sbaplayer_id = 1239 +WHERE id IN (5976,6741,7998,9049,10002,11058); + +-- Statement 1572 +UPDATE player +SET sbaplayer_id = 1811 +WHERE id IN (6001,6798,7588,8641,9645,10701,11803); + +-- Statement 1573 +UPDATE player +SET sbaplayer_id = 237 +WHERE id IN (6002,6846); + +-- Statement 1574 +UPDATE player +SET sbaplayer_id = 2159 +WHERE id IN (6008,6859,7890,8942); + +-- Statement 1575 +UPDATE player +SET sbaplayer_id = 752 +WHERE id IN (6010,6860,7994,9045,10367,11422,12205); + +-- Statement 1576 +UPDATE player +SET sbaplayer_id = 2004 +WHERE id IN (6011,6862); + +-- Statement 1577 +UPDATE player +SET sbaplayer_id = 2061 +WHERE id IN (6027,6875,7304,8359,9400,10456,11511); + +-- Statement 1578 +UPDATE player +SET sbaplayer_id = 899 +WHERE id IN (6036,7072,7501,8555,11719); + +-- Statement 1579 +UPDATE player +SET sbaplayer_id = 353 +WHERE id IN (6046,7082,8080,9131,10071,11127); + +-- Statement 1580 +UPDATE player +SET sbaplayer_id = 1482 +WHERE id IN (6049,7085,7464,8519,9545,10601,11682); + +-- Statement 1581 +UPDATE player +SET sbaplayer_id = 1581 +WHERE id IN (6050,7086); + +-- Statement 1582 +UPDATE player +SET sbaplayer_id = 2051 +WHERE id IN (6056,7092); + +-- Statement 1583 +UPDATE player +SET sbaplayer_id = 1600 +WHERE id IN (6059,7095,7387,8442,9480,10536,11611); + +-- Statement 1584 +UPDATE player +SET sbaplayer_id = 1655 +WHERE id IN (6065,7101); + +-- Statement 1585 +UPDATE player +SET sbaplayer_id = 1431 +WHERE id IN (6068,7104); + +-- Statement 1586 +UPDATE player +SET sbaplayer_id = 1284 +WHERE id IN (6077,7113,8285,9336,10235,11291,12483); + +-- Statement 1587 +UPDATE player +SET sbaplayer_id = 391 +WHERE id IN (6080,7116,7561,8615,11773); + +-- Statement 1588 +UPDATE player +SET sbaplayer_id = 1696 +WHERE id IN (6088,7123); + +-- Statement 1589 +UPDATE player +SET sbaplayer_id = 552 +WHERE id IN (6093,7128,7667,8720,9722,10778,11899); + +-- Statement 1590 +UPDATE player +SET sbaplayer_id = 1015 +WHERE id IN (6106,7141,7666,8719,9721,10777,11898); + +-- Statement 1591 +UPDATE player +SET sbaplayer_id = 1281 +WHERE id IN (6109,7144,8097,9148,10083,11139); + +-- Statement 1592 +UPDATE player +SET sbaplayer_id = 1498 +WHERE id IN (6110,7145); + +-- Statement 1593 +UPDATE player +SET sbaplayer_id = 429 +WHERE id IN (6112,7147); + +-- Statement 1594 +UPDATE player +SET sbaplayer_id = 683 +WHERE id IN (6114,7149,7318,8373); + +-- Statement 1595 +UPDATE player +SET sbaplayer_id = 2113 +WHERE id IN (6116,7151,7516,8570); + +-- Statement 1596 +UPDATE player +SET sbaplayer_id = 411 +WHERE id IN (6118,7153,8253,9304,10210,11266,12452); + +-- Statement 1597 +UPDATE player +SET sbaplayer_id = 1327 +WHERE id IN (6119,7154,8024,9075,10022,11078); + +-- Statement 1598 +UPDATE player +SET sbaplayer_id = 1255 +WHERE id IN (6122,7157,8030,9081); + +-- Statement 1599 +UPDATE player +SET sbaplayer_id = 2223 +WHERE id IN (6146,7181,8124,9175,10109,11165); + +-- Statement 1600 +UPDATE player +SET sbaplayer_id = 1818 +WHERE id IN (6153,7188,10243,11299,12489); + +-- Statement 1601 +UPDATE player +SET sbaplayer_id = 988 +WHERE id IN (6158,7193); + +-- Statement 1602 +UPDATE player +SET sbaplayer_id = 2090 +WHERE id IN (6159,7194,7674,8727,9727,10783); + +-- Statement 1603 +UPDATE player +SET sbaplayer_id = 1444 +WHERE id IN (6165,7200); + +-- Statement 1604 +UPDATE player +SET sbaplayer_id = 1709 +WHERE id IN (6174,7208,10261,11317,11544); + +-- Statement 1605 +UPDATE player +SET sbaplayer_id = 2190 +WHERE id IN (6175,7209); + +-- Statement 1606 +UPDATE player +SET sbaplayer_id = 1995 +WHERE id IN (6176,7210); + +-- Statement 1607 +UPDATE player +SET sbaplayer_id = 993 +WHERE id IN (6178,7212); + +-- Statement 1608 +UPDATE player +SET sbaplayer_id = 2008 +WHERE id IN (6182,7215,8166,9217); + +-- Statement 1609 +UPDATE player +SET sbaplayer_id = 2162 +WHERE id IN (6187,7220); + +-- Statement 1610 +UPDATE player +SET sbaplayer_id = 1217 +WHERE id IN (6193,7226); + +-- Statement 1611 +UPDATE player +SET sbaplayer_id = 1602 +WHERE id IN (6194,7227,7887,8939,9909,10965,12110); + +-- Statement 1612 +UPDATE player +SET sbaplayer_id = 961 +WHERE id IN (6202,7235,11490); + +-- Statement 1613 +UPDATE player +SET sbaplayer_id = 569 +WHERE id IN (6207,7239); + +-- Statement 1614 +UPDATE player +SET sbaplayer_id = 1459 +WHERE id IN (7253,8308,11469); + +-- Statement 1615 +UPDATE player +SET sbaplayer_id = 1729 +WHERE id IN (7256,8311,9358,10415,11472); + +-- Statement 1616 +UPDATE player +SET sbaplayer_id = 1225 +WHERE id IN (7259,8314,9361,10418); + +-- Statement 1617 +UPDATE player +SET sbaplayer_id = 1592 +WHERE id IN (7264,8319,9363,10420,11478); + +-- Statement 1618 +UPDATE player +SET sbaplayer_id = 2012 +WHERE id IN (7266,8321,9365,10422,11480); + +-- Statement 1619 +UPDATE player +SET sbaplayer_id = 1148 +WHERE id IN (7274,8329); + +-- Statement 1620 +UPDATE player +SET sbaplayer_id = 1979 +WHERE id IN (7276,8331,9373,10430,11486); + +-- Statement 1621 +UPDATE player +SET sbaplayer_id = 308 +WHERE id IN (7278,8333,9375,10432,11488); + +-- Statement 1622 +UPDATE player +SET sbaplayer_id = 591 +WHERE id IN (7281,8336,9377,10434,11489); + +-- Statement 1623 +UPDATE player +SET sbaplayer_id = 509 +WHERE id IN (7288,8343,9384,10441,11495); + +-- Statement 1624 +UPDATE player +SET sbaplayer_id = 1654 +WHERE id IN (7289,8344,10249,11305); + +-- Statement 1625 +UPDATE player +SET sbaplayer_id = 1492 +WHERE id IN (7292,8347,9388,10445,11499); + +-- Statement 1626 +UPDATE player +SET sbaplayer_id = 1384 +WHERE id IN (7296,8351,9391,10448,11502); + +-- Statement 1627 +UPDATE player +SET sbaplayer_id = 169 +WHERE id IN (7297,8352,10253,11309); + +-- Statement 1628 +UPDATE player +SET sbaplayer_id = 756 +WHERE id IN (7312,8367); + +-- Statement 1629 +UPDATE player +SET sbaplayer_id = 256 +WHERE id IN (7338,8393,9425,10481,11538); + +-- Statement 1630 +UPDATE player +SET sbaplayer_id = 1880 +WHERE id IN (7340,8395); + +-- Statement 1631 +UPDATE player +SET sbaplayer_id = 1179 +WHERE id IN (7342,8397,11549); + +-- Statement 1632 +UPDATE player +SET sbaplayer_id = 2184 +WHERE id IN (7345,8400,9432,10488,11554); + +-- Statement 1633 +UPDATE player +SET sbaplayer_id = 938 +WHERE id IN (7355,8410); + +-- Statement 1634 +UPDATE player +SET sbaplayer_id = 171 +WHERE id IN (7361,8416,9448,10504,11569); + +-- Statement 1635 +UPDATE player +SET sbaplayer_id = 527 +WHERE id IN (7362,8417,9449,10505,11572); + +-- Statement 1636 +UPDATE player +SET sbaplayer_id = 1803 +WHERE id IN (7368,8423,11583); + +-- Statement 1637 +UPDATE player +SET sbaplayer_id = 117 +WHERE id IN (7374,8429,9465,10521,11589); + +-- Statement 1638 +UPDATE player +SET sbaplayer_id = 564 +WHERE id IN (7378,8433,9471,10527,11598); + +-- Statement 1639 +UPDATE player +SET sbaplayer_id = 1915 +WHERE id IN (7381,8436,9475,10531,11604); + +-- Statement 1640 +UPDATE player +SET sbaplayer_id = 1986 +WHERE id IN (7382,8437,10274,11330); + +-- Statement 1641 +UPDATE player +SET sbaplayer_id = 1030 +WHERE id IN (7384,8439); + +-- Statement 1642 +UPDATE player +SET sbaplayer_id = 1907 +WHERE id IN (7388,8443); + +-- Statement 1643 +UPDATE player +SET sbaplayer_id = 599 +WHERE id IN (7392,8447,10275,11331,11614); + +-- Statement 1644 +UPDATE player +SET sbaplayer_id = 1341 +WHERE id IN (7393,8448); + +-- Statement 1645 +UPDATE player +SET sbaplayer_id = 1105 +WHERE id IN (7408,8463); + +-- Statement 1646 +UPDATE player +SET sbaplayer_id = 1824 +WHERE id IN (7415,8470,9505,10561); + +-- Statement 1647 +UPDATE player +SET sbaplayer_id = 185 +WHERE id IN (7424,8479,9513,10569,11647); + +-- Statement 1648 +UPDATE player +SET sbaplayer_id = 1364 +WHERE id IN (7428,8483,9518,10574,11653); + +-- Statement 1649 +UPDATE player +SET sbaplayer_id = 1664 +WHERE id IN (7429,8484,11654); + +-- Statement 1650 +UPDATE player +SET sbaplayer_id = 6 +WHERE id IN (7431,8486,9520,10576,11656); + +-- Statement 1651 +UPDATE player +SET sbaplayer_id = 1774 +WHERE id IN (7433,8488,9522,10578,11657); + +-- Statement 1652 +UPDATE player +SET sbaplayer_id = 1372 +WHERE id IN (7437,8492); + +-- Statement 1653 +UPDATE player +SET sbaplayer_id = 1598 +WHERE id IN (7440,8495,9528,10584,11663); + +-- Statement 1654 +UPDATE player +SET sbaplayer_id = 1755 +WHERE id IN (7441,8496,9529,10585,11664); + +-- Statement 1655 +UPDATE player +SET sbaplayer_id = 913 +WHERE id IN (7444,8499,9530,10586,11665); + +-- Statement 1656 +UPDATE player +SET sbaplayer_id = 1862 +WHERE id IN (7448,8503,10284,11340,11668); + +-- Statement 1657 +UPDATE player +SET sbaplayer_id = 1478 +WHERE id IN (7451,8506); + +-- Statement 1658 +UPDATE player +SET sbaplayer_id = 2189 +WHERE id IN (7452,8507,9537,10593,11674); + +-- Statement 1659 +UPDATE player +SET sbaplayer_id = 939 +WHERE id IN (7453,8508); + +-- Statement 1660 +UPDATE player +SET sbaplayer_id = 332 +WHERE id IN (7455,8510,9539,10595,11677); + +-- Statement 1661 +UPDATE player +SET sbaplayer_id = 5 +WHERE id IN (7460,8515,9542,10598); + +-- Statement 1662 +UPDATE player +SET sbaplayer_id = 1748 +WHERE id IN (7465,8520,9546,10602,11683); + +-- Statement 1663 +UPDATE player +SET sbaplayer_id = 981 +WHERE id IN (7479,8534,9559,10615,11699); + +-- Statement 1664 +UPDATE player +SET sbaplayer_id = 808 +WHERE id IN (7480,8535); + +-- Statement 1665 +UPDATE player +SET sbaplayer_id = 974 +WHERE id IN (7483,8538); + +-- Statement 1666 +UPDATE player +SET sbaplayer_id = 1367 +WHERE id IN (7485,8540,9561,10617); + +-- Statement 1667 +UPDATE player +SET sbaplayer_id = 2080 +WHERE id IN (7495,8549,10294,11350); + +-- Statement 1668 +UPDATE player +SET sbaplayer_id = 1219 +WHERE id IN (7496,8550,11712); + +-- Statement 1669 +UPDATE player +SET sbaplayer_id = 687 +WHERE id IN (7502,8556); + +-- Statement 1670 +UPDATE player +SET sbaplayer_id = 11 +WHERE id IN (7511,8565); + +-- Statement 1671 +UPDATE player +SET sbaplayer_id = 944 +WHERE id IN (7517,8571); + +-- Statement 1672 +UPDATE player +SET sbaplayer_id = 2120 +WHERE id IN (7521,8575,9583,10639); + +-- Statement 1673 +UPDATE player +SET sbaplayer_id = 401 +WHERE id IN (7527,8581); + +-- Statement 1674 +UPDATE player +SET sbaplayer_id = 1108 +WHERE id IN (7529,8583,9590,10646,11740); + +-- Statement 1675 +UPDATE player +SET sbaplayer_id = 1353 +WHERE id IN (7540,8594,9599,10655,11752); + +-- Statement 1676 +UPDATE player +SET sbaplayer_id = 1679 +WHERE id IN (7546,8600); + +-- Statement 1677 +UPDATE player +SET sbaplayer_id = 1916 +WHERE id IN (7557,8611); + +-- Statement 1678 +UPDATE player +SET sbaplayer_id = 2032 +WHERE id IN (7558,8612); + +-- Statement 1679 +UPDATE player +SET sbaplayer_id = 551 +WHERE id IN (7565,8619,9624,10680,11780); + +-- Statement 1680 +UPDATE player +SET sbaplayer_id = 154 +WHERE id IN (7566,8620,9626,10682); + +-- Statement 1681 +UPDATE player +SET sbaplayer_id = 89 +WHERE id IN (7576,8630,9637,10693,11793); + +-- Statement 1682 +UPDATE player +SET sbaplayer_id = 1366 +WHERE id IN (7577,8631,9638,10694,11794); + +-- Statement 1683 +UPDATE player +SET sbaplayer_id = 901 +WHERE id IN (7581,8634); + +-- Statement 1684 +UPDATE player +SET sbaplayer_id = 1340 +WHERE id IN (7582,8635,10306,11361,11799); + +-- Statement 1685 +UPDATE player +SET sbaplayer_id = 1931 +WHERE id IN (7584,8637,9641,10697,11800); + +-- Statement 1686 +UPDATE player +SET sbaplayer_id = 1054 +WHERE id IN (7590,8643,9649,10705,11807); + +-- Statement 1687 +UPDATE player +SET sbaplayer_id = 1531 +WHERE id IN (7592,8645,9652,10708,11810); + +-- Statement 1688 +UPDATE player +SET sbaplayer_id = 358 +WHERE id IN (7596,8649); + +-- Statement 1689 +UPDATE player +SET sbaplayer_id = 1476 +WHERE id IN (7599,8652); + +-- Statement 1690 +UPDATE player +SET sbaplayer_id = 99 +WHERE id IN (7601,8654,9658,10714,11816); + +-- Statement 1691 +UPDATE player +SET sbaplayer_id = 855 +WHERE id IN (7606,8659,9665,10721,11826); + +-- Statement 1692 +UPDATE player +SET sbaplayer_id = 2137 +WHERE id IN (7613,8666,9670,10726,11833); + +-- Statement 1693 +UPDATE player +SET sbaplayer_id = 246 +WHERE id IN (7618,8671,9676,10732,11840); + +-- Statement 1694 +UPDATE player +SET sbaplayer_id = 267 +WHERE id IN (7620,8673,9677,10733,11841); + +-- Statement 1695 +UPDATE player +SET sbaplayer_id = 770 +WHERE id IN (7622,8675,9678,10734,11844); + +-- Statement 1696 +UPDATE player +SET sbaplayer_id = 1944 +WHERE id IN (7637,8690,9691,10747,11860); + +-- Statement 1697 +UPDATE player +SET sbaplayer_id = 198 +WHERE id IN (7643,8696,9699,10755,11873); + +-- Statement 1698 +UPDATE player +SET sbaplayer_id = 283 +WHERE id IN (7644,8697,9700,10756,11874); + +-- Statement 1699 +UPDATE player +SET sbaplayer_id = 1265 +WHERE id IN (7652,8705,9707,10763,11882); + +-- Statement 1700 +UPDATE player +SET sbaplayer_id = 1068 +WHERE id IN (7663,8716,11894); + +-- Statement 1701 +UPDATE player +SET sbaplayer_id = 38 +WHERE id IN (7669,8722); + +-- Statement 1702 +UPDATE player +SET sbaplayer_id = 487 +WHERE id IN (7671,8724,9724,10780); + +-- Statement 1703 +UPDATE player +SET sbaplayer_id = 632 +WHERE id IN (7672,8725,9725,10781,11901); + +-- Statement 1704 +UPDATE player +SET sbaplayer_id = 100 +WHERE id IN (7675,8728,9728,10784,11904); + +-- Statement 1705 +UPDATE player +SET sbaplayer_id = 572 +WHERE id IN (7687,8740,11915); + +-- Statement 1706 +UPDATE player +SET sbaplayer_id = 1519 +WHERE id IN (7688,8741,9738,10794,11917); + +-- Statement 1707 +UPDATE player +SET sbaplayer_id = 1487 +WHERE id IN (7689,8742); + +-- Statement 1708 +UPDATE player +SET sbaplayer_id = 550 +WHERE id IN (7697,8750,10319,11374,11923); + +-- Statement 1709 +UPDATE player +SET sbaplayer_id = 1089 +WHERE id IN (7701,8754,9747,10803); + +-- Statement 1710 +UPDATE player +SET sbaplayer_id = 211 +WHERE id IN (7702,8755,9748,10804,11927); + +-- Statement 1711 +UPDATE player +SET sbaplayer_id = 1237 +WHERE id IN (7703,8756); + +-- Statement 1712 +UPDATE player +SET sbaplayer_id = 21 +WHERE id IN (7705,8758,9749,10805); + +-- Statement 1713 +UPDATE player +SET sbaplayer_id = 1079 +WHERE id IN (7714,8767); + +-- Statement 1714 +UPDATE player +SET sbaplayer_id = 1075 +WHERE id IN (7719,8772); + +-- Statement 1715 +UPDATE player +SET sbaplayer_id = 1303 +WHERE id IN (7720,8773,9760,10816,11943); + +-- Statement 1716 +UPDATE player +SET sbaplayer_id = 2136 +WHERE id IN (7723,8776,9763,10819,11945); + +-- Statement 1717 +UPDATE player +SET sbaplayer_id = 845 +WHERE id IN (7732,8785); + +-- Statement 1718 +UPDATE player +SET sbaplayer_id = 255 +WHERE id IN (7733,8786,9773,10829,11954); + +-- Statement 1719 +UPDATE player +SET sbaplayer_id = 82 +WHERE id IN (7735,8788,10325,11380,11957); + +-- Statement 1720 +UPDATE player +SET sbaplayer_id = 778 +WHERE id IN (7742,8795); + +-- Statement 1721 +UPDATE player +SET sbaplayer_id = 107 +WHERE id IN (7757,8810,9792,10848,11979); + +-- Statement 1722 +UPDATE player +SET sbaplayer_id = 139 +WHERE id IN (7758,8811,9793,10849); + +-- Statement 1723 +UPDATE player +SET sbaplayer_id = 450 +WHERE id IN (7761,8814,9798,10854); + +-- Statement 1724 +UPDATE player +SET sbaplayer_id = 884 +WHERE id IN (7762,8815,9801,10857,11984); + +-- Statement 1725 +UPDATE player +SET sbaplayer_id = 1337 +WHERE id IN (7765,8818,10331,11386,11987); + +-- Statement 1726 +UPDATE player +SET sbaplayer_id = 1002 +WHERE id IN (7780,8833,9814,10870,12000); + +-- Statement 1727 +UPDATE player +SET sbaplayer_id = 1157 +WHERE id IN (7781,8834,9815,10871,12001); + +-- Statement 1728 +UPDATE player +SET sbaplayer_id = 2174 +WHERE id IN (7788,8841,9821,10877,12007); + +-- Statement 1729 +UPDATE player +SET sbaplayer_id = 2175 +WHERE id IN (7789,8842,9822,10878); + +-- Statement 1730 +UPDATE player +SET sbaplayer_id = 1361 +WHERE id IN (7791,8844,9824,10880); + +-- Statement 1731 +UPDATE player +SET sbaplayer_id = 1795 +WHERE id IN (7794,8847,9827,10883,12009); + +-- Statement 1732 +UPDATE player +SET sbaplayer_id = 2213 +WHERE id IN (7800,8853,10335,11390,12014); + +-- Statement 1733 +UPDATE player +SET sbaplayer_id = 1682 +WHERE id IN (7802,8855,9832,10888,12016); + +-- Statement 1734 +UPDATE player +SET sbaplayer_id = 271 +WHERE id IN (7805,8858,10336,11391); + +-- Statement 1735 +UPDATE player +SET sbaplayer_id = 1100 +WHERE id IN (7807,8860,9836,10892,12021); + +-- Statement 1736 +UPDATE player +SET sbaplayer_id = 1464 +WHERE id IN (7811,8864,10337,11392,12030); + +-- Statement 1737 +UPDATE player +SET sbaplayer_id = 2101 +WHERE id IN (7816,8869,9843,10899); + +-- Statement 1738 +UPDATE player +SET sbaplayer_id = 330 +WHERE id IN (7819,8872,9847,10903,12039); + +-- Statement 1739 +UPDATE player +SET sbaplayer_id = 1854 +WHERE id IN (7827,8880,10345,11400); + +-- Statement 1740 +UPDATE player +SET sbaplayer_id = 1859 +WHERE id IN (7828,8881); + +-- Statement 1741 +UPDATE player +SET sbaplayer_id = 1266 +WHERE id IN (7829,8882); + +-- Statement 1742 +UPDATE player +SET sbaplayer_id = 390 +WHERE id IN (7830,8883,10346,11401,12048); + +-- Statement 1743 +UPDATE player +SET sbaplayer_id = 1556 +WHERE id IN (7833,8886); + +-- Statement 1744 +UPDATE player +SET sbaplayer_id = 431 +WHERE id IN (7837,8890,9861,10917,12053); + +-- Statement 1745 +UPDATE player +SET sbaplayer_id = 235 +WHERE id IN (7838,8891,9862,10918,12054); + +-- Statement 1746 +UPDATE player +SET sbaplayer_id = 1412 +WHERE id IN (7847,8900,9870,10926); + +-- Statement 1747 +UPDATE player +SET sbaplayer_id = 1917 +WHERE id IN (7849,8902,12069); + +-- Statement 1748 +UPDATE player +SET sbaplayer_id = 2057 +WHERE id IN (7865,8918,9887,10943,12088); + +-- Statement 1749 +UPDATE player +SET sbaplayer_id = 138 +WHERE id IN (7872,8925); + +-- Statement 1750 +UPDATE player +SET sbaplayer_id = 746 +WHERE id IN (7878,8931); + +-- Statement 1751 +UPDATE player +SET sbaplayer_id = 754 +WHERE id IN (7891,8943,9912,10968,12112); + +-- Statement 1752 +UPDATE player +SET sbaplayer_id = 1678 +WHERE id IN (7898,8950,12116); + +-- Statement 1753 +UPDATE player +SET sbaplayer_id = 413 +WHERE id IN (7904,8956); + +-- Statement 1754 +UPDATE player +SET sbaplayer_id = 1112 +WHERE id IN (7905,8957,9921,10977,12123); + +-- Statement 1755 +UPDATE player +SET sbaplayer_id = 241 +WHERE id IN (7914,8965,9933,10989); + +-- Statement 1756 +UPDATE player +SET sbaplayer_id = 289 +WHERE id IN (7915,8966); + +-- Statement 1757 +UPDATE player +SET sbaplayer_id = 610 +WHERE id IN (7919,8970,12136); + +-- Statement 1758 +UPDATE player +SET sbaplayer_id = 1640 +WHERE id IN (7924,8975); + +-- Statement 1759 +UPDATE player +SET sbaplayer_id = 1949 +WHERE id IN (7926,8977); + +-- Statement 1760 +UPDATE player +SET sbaplayer_id = 2109 +WHERE id IN (7929,8980,9944,11000,12143); + +-- Statement 1761 +UPDATE player +SET sbaplayer_id = 1121 +WHERE id IN (7931,8982,9946,11002,12144); + +-- Statement 1762 +UPDATE player +SET sbaplayer_id = 346 +WHERE id IN (7933,8984); + +-- Statement 1763 +UPDATE player +SET sbaplayer_id = 781 +WHERE id IN (7944,8995,9957,11013,12156); + +-- Statement 1764 +UPDATE player +SET sbaplayer_id = 827 +WHERE id IN (7945,8996,9958,11014,12157); + +-- Statement 1765 +UPDATE player +SET sbaplayer_id = 865 +WHERE id IN (7946,8997); + +-- Statement 1766 +UPDATE player +SET sbaplayer_id = 1231 +WHERE id IN (7950,9001,9962,11018,12162); + +-- Statement 1767 +UPDATE player +SET sbaplayer_id = 1495 +WHERE id IN (7951,9002); + +-- Statement 1768 +UPDATE player +SET sbaplayer_id = 1901 +WHERE id IN (7955,9006,10360,11415,12166); + +-- Statement 1769 +UPDATE player +SET sbaplayer_id = 1994 +WHERE id IN (7957,9008,9965,11021,12167); + +-- Statement 1770 +UPDATE player +SET sbaplayer_id = 1350 +WHERE id IN (7959,9010,9968,11024,12171); + +-- Statement 1771 +UPDATE player +SET sbaplayer_id = 152 +WHERE id IN (7965,9016,9974,11030,12177); + +-- Statement 1772 +UPDATE player +SET sbaplayer_id = 1299 +WHERE id IN (7980,9031,9987,11043,12190); + +-- Statement 1773 +UPDATE player +SET sbaplayer_id = 557 +WHERE id IN (7985,9036); + +-- Statement 1774 +UPDATE player +SET sbaplayer_id = 2068 +WHERE id IN (7989,9040,9993,11049,12197); + +-- Statement 1775 +UPDATE player +SET sbaplayer_id = 46 +WHERE id IN (7992,9043,9995,11051,12201); + +-- Statement 1776 +UPDATE player +SET sbaplayer_id = 637 +WHERE id IN (7993,9044,9998,11054,12203); + +-- Statement 1777 +UPDATE player +SET sbaplayer_id = 1135 +WHERE id IN (7995,9046,9999,11055,12206); + +-- Statement 1778 +UPDATE player +SET sbaplayer_id = 1224 +WHERE id IN (7997,9048,10001,11057,12209); + +-- Statement 1779 +UPDATE player +SET sbaplayer_id = 1583 +WHERE id IN (8001,9052,10004,11060); + +-- Statement 1780 +UPDATE player +SET sbaplayer_id = 2073 +WHERE id IN (8005,9056); + +-- Statement 1781 +UPDATE player +SET sbaplayer_id = 755 +WHERE id IN (8012,9063,10013,11069,12223); + +-- Statement 1782 +UPDATE player +SET sbaplayer_id = 994 +WHERE id IN (8013,9064,10014,11070,12224); + +-- Statement 1783 +UPDATE player +SET sbaplayer_id = 1466 +WHERE id IN (8016,9067); + +-- Statement 1784 +UPDATE player +SET sbaplayer_id = 449 +WHERE id IN (8018,9069,12228); + +-- Statement 1785 +UPDATE player +SET sbaplayer_id = 744 +WHERE id IN (8020,9071,10371,11426); + +-- Statement 1786 +UPDATE player +SET sbaplayer_id = 1528 +WHERE id IN (8022,9073,10020,11076); + +-- Statement 1787 +UPDATE player +SET sbaplayer_id = 303 +WHERE id IN (8023,9074,10021,11077,12232); + +-- Statement 1788 +UPDATE player +SET sbaplayer_id = 1403 +WHERE id IN (8027,9078); + +-- Statement 1789 +UPDATE player +SET sbaplayer_id = 1386 +WHERE id IN (8038,9089); + +-- Statement 1790 +UPDATE player +SET sbaplayer_id = 1930 +WHERE id IN (8041,9092,10374,11429); + +-- Statement 1791 +UPDATE player +SET sbaplayer_id = 282 +WHERE id IN (8042,9093); + +-- Statement 1792 +UPDATE player +SET sbaplayer_id = 896 +WHERE id IN (8047,9098); + +-- Statement 1793 +UPDATE player +SET sbaplayer_id = 496 +WHERE id IN (8060,9111,10056,11112,12271); + +-- Statement 1794 +UPDATE player +SET sbaplayer_id = 1756 +WHERE id IN (8061,9112); + +-- Statement 1795 +UPDATE player +SET sbaplayer_id = 1561 +WHERE id IN (8062,9113,10377,11432); + +-- Statement 1796 +UPDATE player +SET sbaplayer_id = 1488 +WHERE id IN (8068,9119,10061,11117,12276); + +-- Statement 1797 +UPDATE player +SET sbaplayer_id = 771 +WHERE id IN (8070,9121,10063,11119,12278); + +-- Statement 1798 +UPDATE player +SET sbaplayer_id = 412 +WHERE id IN (8071,9122,10064,11120,12279); + +-- Statement 1799 +UPDATE player +SET sbaplayer_id = 1938 +WHERE id IN (8076,9127,10070,11126,12284); + +-- Statement 1800 +UPDATE player +SET sbaplayer_id = 745 +WHERE id IN (8082,9133,10378,11433,12286); + +-- Statement 1801 +UPDATE player +SET sbaplayer_id = 1199 +WHERE id IN (8083,9134,10072,11128,12287); + +-- Statement 1802 +UPDATE player +SET sbaplayer_id = 603 +WHERE id IN (8093,9144,10080,11136,12296); + +-- Statement 1803 +UPDATE player +SET sbaplayer_id = 1076 +WHERE id IN (8096,9147,12300); + +-- Statement 1804 +UPDATE player +SET sbaplayer_id = 1521 +WHERE id IN (8101,9152,10088,11144,12305); + +-- Statement 1805 +UPDATE player +SET sbaplayer_id = 1346 +WHERE id IN (8113,9164,10100,11156,12319); + +-- Statement 1806 +UPDATE player +SET sbaplayer_id = 561 +WHERE id IN (8118,9169); + +-- Statement 1807 +UPDATE player +SET sbaplayer_id = 225 +WHERE id IN (8119,9170,12325); + +-- Statement 1808 +UPDATE player +SET sbaplayer_id = 906 +WHERE id IN (8120,9171,10384,11439,12327); + +-- Statement 1809 +UPDATE player +SET sbaplayer_id = 1946 +WHERE id IN (8125,9176,10110,11166,12331); + +-- Statement 1810 +UPDATE player +SET sbaplayer_id = 166 +WHERE id IN (8128,9179); + +-- Statement 1811 +UPDATE player +SET sbaplayer_id = 1226 +WHERE id IN (8131,9182,10114,11170,12335); + +-- Statement 1812 +UPDATE player +SET sbaplayer_id = 155 +WHERE id IN (8132,9183,12336); + +-- Statement 1813 +UPDATE player +SET sbaplayer_id = 1092 +WHERE id IN (8136,9187,10118,11174,12339); + +-- Statement 1814 +UPDATE player +SET sbaplayer_id = 218 +WHERE id IN (8139,9190); + +-- Statement 1815 +UPDATE player +SET sbaplayer_id = 1900 +WHERE id IN (8142,9193,10123,11179,12351); + +-- Statement 1816 +UPDATE player +SET sbaplayer_id = 1926 +WHERE id IN (8143,9194,10124,11180); + +-- Statement 1817 +UPDATE player +SET sbaplayer_id = 2000 +WHERE id IN (8144,9195,10125,11181,12352); + +-- Statement 1818 +UPDATE player +SET sbaplayer_id = 1080 +WHERE id IN (8151,9202,10128,11184,12356); + +-- Statement 1819 +UPDATE player +SET sbaplayer_id = 2169 +WHERE id IN (8154,9205,10131,11187,12359); + +-- Statement 1820 +UPDATE player +SET sbaplayer_id = 699 +WHERE id IN (8155,9206,10132,11188); + +-- Statement 1821 +UPDATE player +SET sbaplayer_id = 593 +WHERE id IN (8156,9207,10133,11189,12360); + +-- Statement 1822 +UPDATE player +SET sbaplayer_id = 122 +WHERE id IN (8158,9209,10136,11192,12363); + +-- Statement 1823 +UPDATE player +SET sbaplayer_id = 2062 +WHERE id IN (8170,9221); + +-- Statement 1824 +UPDATE player +SET sbaplayer_id = 660 +WHERE id IN (8176,9227,10152,11208,12382); + +-- Statement 1825 +UPDATE player +SET sbaplayer_id = 859 +WHERE id IN (8180,9231,10156,11212,12387); + +-- Statement 1826 +UPDATE player +SET sbaplayer_id = 1980 +WHERE id IN (8188,9239,10391,11446); + +-- Statement 1827 +UPDATE player +SET sbaplayer_id = 1294 +WHERE id IN (8195,9246,10171,11227,12399); + +-- Statement 1828 +UPDATE player +SET sbaplayer_id = 335 +WHERE id IN (8202,9253,10177,11233,12407); + +-- Statement 1829 +UPDATE player +SET sbaplayer_id = 464 +WHERE id IN (8205,9256,10178,11234); + +-- Statement 1830 +UPDATE player +SET sbaplayer_id = 1196 +WHERE id IN (8206,9257,10179,11235); + +-- Statement 1831 +UPDATE player +SET sbaplayer_id = 460 +WHERE id IN (8212,9263); + +-- Statement 1832 +UPDATE player +SET sbaplayer_id = 654 +WHERE id IN (8214,9265,10184,11240,12416); + +-- Statement 1833 +UPDATE player +SET sbaplayer_id = 1417 +WHERE id IN (8222,9273,10187,11243,12420); + +-- Statement 1834 +UPDATE player +SET sbaplayer_id = 777 +WHERE id IN (8229,9280,10195,11251,12431); + +-- Statement 1835 +UPDATE player +SET sbaplayer_id = 272 +WHERE id IN (8234,9285,10397,11452,12437); + +-- Statement 1836 +UPDATE player +SET sbaplayer_id = 1503 +WHERE id IN (8237,9288,10198,11254,12438); + +-- Statement 1837 +UPDATE player +SET sbaplayer_id = 179 +WHERE id IN (8247,9298,10204,11260,12445); + +-- Statement 1838 +UPDATE player +SET sbaplayer_id = 250 +WHERE id IN (8248,9299,10205,11261,12446); + +-- Statement 1839 +UPDATE player +SET sbaplayer_id = 1331 +WHERE id IN (8258,9309); + +-- Statement 1840 +UPDATE player +SET sbaplayer_id = 481 +WHERE id IN (8268,9319,10400,11455); + +-- Statement 1841 +UPDATE player +SET sbaplayer_id = 1211 +WHERE id IN (8278,9329,10230,11286,12477); + +-- Statement 1842 +UPDATE player +SET sbaplayer_id = 963 +WHERE id IN (8283,9334); + +-- Statement 1843 +UPDATE player +SET sbaplayer_id = 1137 +WHERE id IN (8284,9335); + +-- Statement 1844 +UPDATE player +SET sbaplayer_id = 1985 +WHERE id IN (8292,9343,10244,11300); + +-- Statement 1845 +UPDATE player +SET sbaplayer_id = 341 +WHERE id IN (8294,9345); + +-- Statement 1846 +UPDATE player +SET sbaplayer_id = 2040 +WHERE id IN (9352,10409); + +-- Statement 1847 +UPDATE player +SET sbaplayer_id = 285 +WHERE id IN (9368,10425,11483); + +-- Statement 1848 +UPDATE player +SET sbaplayer_id = 1206 +WHERE id IN (9369,10426,11484); + +-- Statement 1849 +UPDATE player +SET sbaplayer_id = 2173 +WHERE id IN (9385,10442); + +-- Statement 1850 +UPDATE player +SET sbaplayer_id = 962 +WHERE id IN (9387,10444); + +-- Statement 1851 +UPDATE player +SET sbaplayer_id = 4 +WHERE id IN (9392,10449,11503); + +-- Statement 1852 +UPDATE player +SET sbaplayer_id = 1400 +WHERE id IN (9398,10455,11510); + +-- Statement 1853 +UPDATE player +SET sbaplayer_id = 1347 +WHERE id IN (9402,10458,11512); + +-- Statement 1854 +UPDATE player +SET sbaplayer_id = 1530 +WHERE id IN (9404,10460); + +-- Statement 1855 +UPDATE player +SET sbaplayer_id = 2224 +WHERE id IN (9405,10461,11517); + +-- Statement 1856 +UPDATE player +SET sbaplayer_id = 2088 +WHERE id IN (9410,10466,11524); + +-- Statement 1857 +UPDATE player +SET sbaplayer_id = 427 +WHERE id IN (9414,10470); + +-- Statement 1858 +UPDATE player +SET sbaplayer_id = 2131 +WHERE id IN (9421,10477,11535); + +-- Statement 1859 +UPDATE player +SET sbaplayer_id = 1130 +WHERE id IN (9426,10482,11542); + +-- Statement 1860 +UPDATE player +SET sbaplayer_id = 1735 +WHERE id IN (9427,10483); + +-- Statement 1861 +UPDATE player +SET sbaplayer_id = 1405 +WHERE id IN (9430,10486,11551); + +-- Statement 1862 +UPDATE player +SET sbaplayer_id = 1326 +WHERE id IN (9431,10487,11553); + +-- Statement 1863 +UPDATE player +SET sbaplayer_id = 1551 +WHERE id IN (9444,10500,11566); + +-- Statement 1864 +UPDATE player +SET sbaplayer_id = 2164 +WHERE id IN (9445,10501); + +-- Statement 1865 +UPDATE player +SET sbaplayer_id = 2144 +WHERE id IN (9451,10507); + +-- Statement 1866 +UPDATE player +SET sbaplayer_id = 181 +WHERE id IN (9452,10508,11575); + +-- Statement 1867 +UPDATE player +SET sbaplayer_id = 841 +WHERE id IN (9453,10509); + +-- Statement 1868 +UPDATE player +SET sbaplayer_id = 531 +WHERE id IN (9456,10512,11579); + +-- Statement 1869 +UPDATE player +SET sbaplayer_id = 149 +WHERE id IN (9457,10513,11580); + +-- Statement 1870 +UPDATE player +SET sbaplayer_id = 2026 +WHERE id IN (9459,10515,11584); + +-- Statement 1871 +UPDATE player +SET sbaplayer_id = 908 +WHERE id IN (9467,10523,11591); + +-- Statement 1872 +UPDATE player +SET sbaplayer_id = 2191 +WHERE id IN (9470,10526,11597); + +-- Statement 1873 +UPDATE player +SET sbaplayer_id = 1328 +WHERE id IN (9473,10529,11602); + +-- Statement 1874 +UPDATE player +SET sbaplayer_id = 1202 +WHERE id IN (9478,10534); + +-- Statement 1875 +UPDATE player +SET sbaplayer_id = 1537 +WHERE id IN (9490,10546); + +-- Statement 1876 +UPDATE player +SET sbaplayer_id = 1343 +WHERE id IN (9493,10549,11623); + +-- Statement 1877 +UPDATE player +SET sbaplayer_id = 1775 +WHERE id IN (9495,10551,11628); + +-- Statement 1878 +UPDATE player +SET sbaplayer_id = 1597 +WHERE id IN (9497,10553,11630); + +-- Statement 1879 +UPDATE player +SET sbaplayer_id = 1391 +WHERE id IN (9509,10565); + +-- Statement 1880 +UPDATE player +SET sbaplayer_id = 573 +WHERE id IN (9514,10570,11648); + +-- Statement 1881 +UPDATE player +SET sbaplayer_id = 219 +WHERE id IN (9526,10582); + +-- Statement 1882 +UPDATE player +SET sbaplayer_id = 426 +WHERE id IN (9534,10590,11671); + +-- Statement 1883 +UPDATE player +SET sbaplayer_id = 1792 +WHERE id IN (9536,10592); + +-- Statement 1884 +UPDATE player +SET sbaplayer_id = 1001 +WHERE id IN (9540,10596,11678); + +-- Statement 1885 +UPDATE player +SET sbaplayer_id = 209 +WHERE id IN (9548,10604,11686); + +-- Statement 1887 +UPDATE player +SET sbaplayer_id = 536 +WHERE id IN (9553,10609); + +-- Statement 1888 +UPDATE player +SET sbaplayer_id = 1490 +WHERE id IN (9555,10611); + +-- Statement 1889 +UPDATE player +SET sbaplayer_id = 663 +WHERE id IN (9564,10620,11706); + +-- Statement 1890 +UPDATE player +SET sbaplayer_id = 860 +WHERE id IN (9565,10621); + +-- Statement 1891 +UPDATE player +SET sbaplayer_id = 1777 +WHERE id IN (9569,10625,11713); + +-- Statement 1892 +UPDATE player +SET sbaplayer_id = 625 +WHERE id IN (9576,10632,11729); + +-- Statement 1893 +UPDATE player +SET sbaplayer_id = 1698 +WHERE id IN (9579,10635); + +-- Statement 1894 +UPDATE player +SET sbaplayer_id = 966 +WHERE id IN (9584,10640); + +-- Statement 1895 +UPDATE player +SET sbaplayer_id = 1000 +WHERE id IN (9594,10650,11744); + +-- Statement 1896 +UPDATE player +SET sbaplayer_id = 480 +WHERE id IN (9602,10658,11755); + +-- Statement 1897 +UPDATE player +SET sbaplayer_id = 1515 +WHERE id IN (9605,10661,11757); + +-- Statement 1898 +UPDATE player +SET sbaplayer_id = 1810 +WHERE id IN (9609,10665); + +-- Statement 1899 +UPDATE player +SET sbaplayer_id = 1685 +WHERE id IN (9610,10666); + +-- Statement 1900 +UPDATE player +SET sbaplayer_id = 2049 +WHERE id IN (9611,10667,11763); + +-- Statement 1901 +UPDATE player +SET sbaplayer_id = 1726 +WHERE id IN (9616,10672,11774); + +-- Statement 1902 +UPDATE player +SET sbaplayer_id = 628 +WHERE id IN (9617,10673,11775); + +-- Statement 1903 +UPDATE player +SET sbaplayer_id = 1542 +WHERE id IN (9619,10675); + +-- Statement 1904 +UPDATE player +SET sbaplayer_id = 333 +WHERE id IN (9620,10676,11778); + +-- Statement 1905 +UPDATE player +SET sbaplayer_id = 1532 +WHERE id IN (9623,10679); + +-- Statement 1906 +UPDATE player +SET sbaplayer_id = 2007 +WHERE id IN (9625,10681,11781); + +-- Statement 1907 +UPDATE player +SET sbaplayer_id = 448 +WHERE id IN (9627,10683,11782); + +-- Statement 1908 +UPDATE player +SET sbaplayer_id = 62 +WHERE id IN (9630,10686,11785); + +-- Statement 1909 +UPDATE player +SET sbaplayer_id = 606 +WHERE id IN (9634,10690,11790); + +-- Statement 1910 +UPDATE player +SET sbaplayer_id = 918 +WHERE id IN (9644,10700); + +-- Statement 1911 +UPDATE player +SET sbaplayer_id = 1913 +WHERE id IN (9646,10702,11804); + +-- Statement 1912 +UPDATE player +SET sbaplayer_id = 2160 +WHERE id IN (9647,10703,11805); + +-- Statement 1913 +UPDATE player +SET sbaplayer_id = 1873 +WHERE id IN (9650,10706,11808); + +-- Statement 1914 +UPDATE player +SET sbaplayer_id = 834 +WHERE id IN (9659,10715); + +-- Statement 1915 +UPDATE player +SET sbaplayer_id = 1684 +WHERE id IN (9660,10716,11820); + +-- Statement 1916 +UPDATE player +SET sbaplayer_id = 1767 +WHERE id IN (9661,10717); + +-- Statement 1917 +UPDATE player +SET sbaplayer_id = 473 +WHERE id IN (9672,10728,11836); + +-- Statement 1918 +UPDATE player +SET sbaplayer_id = 1614 +WHERE id IN (9673,10729); + +-- Statement 1919 +UPDATE player +SET sbaplayer_id = 826 +WHERE id IN (9675,10731,11839); + +-- Statement 1920 +UPDATE player +SET sbaplayer_id = 811 +WHERE id IN (9683,10739,11849); + +-- Statement 1921 +UPDATE player +SET sbaplayer_id = 312 +WHERE id IN (9687,10743); + +-- Statement 1922 +UPDATE player +SET sbaplayer_id = 2219 +WHERE id IN (9695,10751,11871); + +-- Statement 1923 +UPDATE player +SET sbaplayer_id = 57 +WHERE id IN (9697,10753); + +-- Statement 1924 +UPDATE player +SET sbaplayer_id = 955 +WHERE id IN (9705,10761,11880); + +-- Statement 1925 +UPDATE player +SET sbaplayer_id = 1258 +WHERE id IN (9714,10770,11887); + +-- Statement 1926 +UPDATE player +SET sbaplayer_id = 1477 +WHERE id IN (9716,10772,11889); + +-- Statement 1927 +UPDATE player +SET sbaplayer_id = 1821 +WHERE id IN (9719,10775,11895); + +-- Statement 1928 +UPDATE player +SET sbaplayer_id = 2015 +WHERE id IN (9720,10776,11896); + +-- Statement 1929 +UPDATE player +SET sbaplayer_id = 1778 +WHERE id IN (9739,10795); + +-- Statement 1930 +UPDATE player +SET sbaplayer_id = 259 +WHERE id IN (9743,10799,11925); + +-- Statement 1931 +UPDATE player +SET sbaplayer_id = 945 +WHERE id IN (9744,10800,11926); + +-- Statement 1932 +UPDATE player +SET sbaplayer_id = 964 +WHERE id IN (9751,10807); + +-- Statement 1933 +UPDATE player +SET sbaplayer_id = 2151 +WHERE id IN (9764,10820); + +-- Statement 1934 +UPDATE player +SET sbaplayer_id = 1697 +WHERE id IN (9766,10822,11946); + +-- Statement 1935 +UPDATE player +SET sbaplayer_id = 119 +WHERE id IN (9777,10833); + +-- Statement 1936 +UPDATE player +SET sbaplayer_id = 510 +WHERE id IN (9778,10834); + +-- Statement 1937 +UPDATE player +SET sbaplayer_id = 2107 +WHERE id IN (9783,10839,11966); + +-- Statement 1938 +UPDATE player +SET sbaplayer_id = 2138 +WHERE id IN (9785,10841,11968); + +-- Statement 1939 +UPDATE player +SET sbaplayer_id = 2148 +WHERE id IN (9786,10842,11969); + +-- Statement 1940 +UPDATE player +SET sbaplayer_id = 293 +WHERE id IN (9795,10851,11981); + +-- Statement 1941 +UPDATE player +SET sbaplayer_id = 296 +WHERE id IN (9796,10852,11982); + +-- Statement 1942 +UPDATE player +SET sbaplayer_id = 609 +WHERE id IN (9799,10855,11975); + +-- Statement 1943 +UPDATE player +SET sbaplayer_id = 879 +WHERE id IN (9800,10856); + +-- Statement 1944 +UPDATE player +SET sbaplayer_id = 1874 +WHERE id IN (9807,10863,11992); + +-- Statement 1945 +UPDATE player +SET sbaplayer_id = 1489 +WHERE id IN (9817,10873,12003); + +-- Statement 1946 +UPDATE player +SET sbaplayer_id = 643 +WHERE id IN (9826,10882); + +-- Statement 1947 +UPDATE player +SET sbaplayer_id = 1025 +WHERE id IN (9851,10907,12043); + +-- Statement 1948 +UPDATE player +SET sbaplayer_id = 1800 +WHERE id IN (9856,10912); + +-- Statement 1949 +UPDATE player +SET sbaplayer_id = 1109 +WHERE id IN (9859,10915,12050); + +-- Statement 1950 +UPDATE player +SET sbaplayer_id = 1617 +WHERE id IN (9876,10932); + +-- Statement 1951 +UPDATE player +SET sbaplayer_id = 292 +WHERE id IN (9879,10935,12078); + +-- Statement 1952 +UPDATE player +SET sbaplayer_id = 1877 +WHERE id IN (9880,10936,12079); + +-- Statement 1953 +UPDATE player +SET sbaplayer_id = 1516 +WHERE id IN (9882,10938); + +-- Statement 1954 +UPDATE player +SET sbaplayer_id = 1454 +WHERE id IN (9885,10941,12085); + +-- Statement 1955 +UPDATE player +SET sbaplayer_id = 577 +WHERE id IN (9889,10945,12090); + +-- Statement 1956 +UPDATE player +SET sbaplayer_id = 314 +WHERE id IN (9893,10949,12093); + +-- Statement 1957 +UPDATE player +SET sbaplayer_id = 658 +WHERE id IN (9896,10952); + +-- Statement 1958 +UPDATE player +SET sbaplayer_id = 1240 +WHERE id IN (9899,10955,12098); + +-- Statement 1959 +UPDATE player +SET sbaplayer_id = 1293 +WHERE id IN (9900,10956,12099); + +-- Statement 1961 +UPDATE player +SET sbaplayer_id = 118 +WHERE id IN (9911,10967); + +-- Statement 1962 +UPDATE player +SET sbaplayer_id = 691 +WHERE id IN (9913,10969,12113); + +-- Statement 1963 +UPDATE player +SET sbaplayer_id = 2076 +WHERE id IN (9923,10979,12124); + +-- Statement 1964 +UPDATE player +SET sbaplayer_id = 2216 +WHERE id IN (9926,10982,12127); + +-- Statement 1965 +UPDATE player +SET sbaplayer_id = 575 +WHERE id IN (9927,10983,12129); + +-- Statement 1966 +UPDATE player +SET sbaplayer_id = 1329 +WHERE id IN (9928,10984,12130); + +-- Statement 1967 +UPDATE player +SET sbaplayer_id = 2180 +WHERE id IN (9930,10986,12131); + +-- Statement 1968 +UPDATE player +SET sbaplayer_id = 1285 +WHERE id IN (9939,10995); + +-- Statement 1969 +UPDATE player +SET sbaplayer_id = 147 +WHERE id IN (9945,11001); + +-- Statement 1970 +UPDATE player +SET sbaplayer_id = 1131 +WHERE id IN (9948,11004); + +-- Statement 1971 +UPDATE player +SET sbaplayer_id = 1998 +WHERE id IN (9966,11022,12168); + +-- Statement 1972 +UPDATE player +SET sbaplayer_id = 64 +WHERE id IN (9969,11025,12172); + +-- Statement 1973 +UPDATE player +SET sbaplayer_id = 2055 +WHERE id IN (9973,11029,12176); + +-- Statement 1974 +UPDATE player +SET sbaplayer_id = 1771 +WHERE id IN (10015,11071,12225); + +-- Statement 1975 +UPDATE player +SET sbaplayer_id = 396 +WHERE id IN (10018,11074); + +-- Statement 1976 +UPDATE player +SET sbaplayer_id = 193 +WHERE id IN (10019,11075,12231); + +-- Statement 1977 +UPDATE player +SET sbaplayer_id = 1291 +WHERE id IN (10026,11082,12237); + +-- Statement 1978 +UPDATE player +SET sbaplayer_id = 115 +WHERE id IN (10027,11083,12238); + +-- Statement 1979 +UPDATE player +SET sbaplayer_id = 105 +WHERE id IN (10035,11091,12248); + +-- Statement 1980 +UPDATE player +SET sbaplayer_id = 148 +WHERE id IN (10039,11095); + +-- Statement 1981 +UPDATE player +SET sbaplayer_id = 1586 +WHERE id IN (10043,11099,12257); + +-- Statement 1982 +UPDATE player +SET sbaplayer_id = 1033 +WHERE id IN (10053,11109); + +-- Statement 1983 +UPDATE player +SET sbaplayer_id = 1462 +WHERE id IN (10055,11111,12270); + +-- Statement 1984 +UPDATE player +SET sbaplayer_id = 1153 +WHERE id IN (10060,11116,12275); + +-- Statement 1985 +UPDATE player +SET sbaplayer_id = 2222 +WHERE id IN (10066,11122); + +-- Statement 1986 +UPDATE player +SET sbaplayer_id = 692 +WHERE id IN (10068,11124,12283); + +-- Statement 1987 +UPDATE player +SET sbaplayer_id = 1247 +WHERE id IN (10074,11130); + +-- Statement 1988 +UPDATE player +SET sbaplayer_id = 1119 +WHERE id IN (10077,11133,12292); + +-- Statement 1989 +UPDATE player +SET sbaplayer_id = 1427 +WHERE id IN (10086,11142,12303); + +-- Statement 1990 +UPDATE player +SET sbaplayer_id = 2106 +WHERE id IN (10090,11146,12308); + +-- Statement 1991 +UPDATE player +SET sbaplayer_id = 1411 +WHERE id IN (10092,11148,12312); + +-- Statement 1992 +UPDATE player +SET sbaplayer_id = 657 +WHERE id IN (10094,11150,12314); + +-- Statement 1993 +UPDATE player +SET sbaplayer_id = 1526 +WHERE id IN (10101,11157); + +-- Statement 1994 +UPDATE player +SET sbaplayer_id = 1275 +WHERE id IN (10106,11162,12324); + +-- Statement 1995 +UPDATE player +SET sbaplayer_id = 665 +WHERE id IN (10120,11176); + +-- Statement 1996 +UPDATE player +SET sbaplayer_id = 356 +WHERE id IN (10122,11178,12345); + +-- Statement 1997 +UPDATE player +SET sbaplayer_id = 1430 +WHERE id IN (10127,11183); + +-- Statement 1998 +UPDATE player +SET sbaplayer_id = 238 +WHERE id IN (10135,11191,12362); + +-- Statement 1999 +UPDATE player +SET sbaplayer_id = 189 +WHERE id IN (10137,11193,12364); + +-- Statement 2000 +UPDATE player +SET sbaplayer_id = 2117 +WHERE id IN (10147,11203); + +-- Statement 2001 +UPDATE player +SET sbaplayer_id = 422 +WHERE id IN (10153,11209); + +-- Statement 2002 +UPDATE player +SET sbaplayer_id = 158 +WHERE id IN (10176,11232); + +-- Statement 2003 +UPDATE player +SET sbaplayer_id = 922 +WHERE id IN (10186,11242,12418); + +-- Statement 2004 +UPDATE player +SET sbaplayer_id = 1864 +WHERE id IN (10190,11246,12424); + +-- Statement 2005 +UPDATE player +SET sbaplayer_id = 10 +WHERE id IN (10214,11270,12457); + +-- Statement 2006 +UPDATE player +SET sbaplayer_id = 559 +WHERE id IN (10216,11272,12460); + +-- Statement 2007 +UPDATE player +SET sbaplayer_id = 454 +WHERE id IN (10217,11273,12461); + +-- Statement 2008 +UPDATE player +SET sbaplayer_id = 511 +WHERE id IN (10218,11274,12462); + +-- Statement 2009 +UPDATE player +SET sbaplayer_id = 320 +WHERE id IN (10223,11279,12467); + +-- Statement 2010 +UPDATE player +SET sbaplayer_id = 1406 +WHERE id IN (10236,11292); + +-- Statement 2011 +UPDATE player +SET sbaplayer_id = 1414 +WHERE id IN (10237,11293,12484); + +-- Statement 2012 +UPDATE player +SET sbaplayer_id = 1629 +WHERE id IN (10239,11295); + +-- Statement 2013 +UPDATE player +SET sbaplayer_id = 709 +WHERE id IN (10240,11296,12486); + +-- Statement 2014 +UPDATE player +SET sbaplayer_id = 1856 +WHERE id IN (10248,11304); + +-- Statement 2015 +UPDATE player +SET sbaplayer_id = 2161 +WHERE id IN (10250,11306,11497); + +-- Statement 2016 +UPDATE player +SET sbaplayer_id = 2165 +WHERE id IN (10252,11308); + +-- Statement 2017 +UPDATE player +SET sbaplayer_id = 2059 +WHERE id IN (10255,11311); + +-- Statement 2018 +UPDATE player +SET sbaplayer_id = 1543 +WHERE id IN (10263,11319,11545); + +-- Statement 2019 +UPDATE player +SET sbaplayer_id = 644 +WHERE id IN (10264,11320,11555); + +-- Statement 2020 +UPDATE player +SET sbaplayer_id = 2112 +WHERE id IN (10267,11323); + +-- Statement 2021 +UPDATE player +SET sbaplayer_id = 1667 +WHERE id IN (10268,11324,11570); + +-- Statement 2022 +UPDATE player +SET sbaplayer_id = 923 +WHERE id IN (10269,11325,11576); + +-- Statement 2023 +UPDATE player +SET sbaplayer_id = 1941 +WHERE id IN (10271,11327); + +-- Statement 2024 +UPDATE player +SET sbaplayer_id = 2182 +WHERE id IN (10272,11328,11582); + +-- Statement 2025 +UPDATE player +SET sbaplayer_id = 970 +WHERE id IN (10273,11329,11600); + +-- Statement 2026 +UPDATE player +SET sbaplayer_id = 1099 +WHERE id IN (10277,11333); + +-- Statement 2027 +UPDATE player +SET sbaplayer_id = 233 +WHERE id IN (10282,11338,11661); + +-- Statement 2028 +UPDATE player +SET sbaplayer_id = 1797 +WHERE id IN (10283,11339); + +-- Statement 2029 +UPDATE player +SET sbaplayer_id = 323 +WHERE id IN (10285,11341); + +-- Statement 2030 +UPDATE player +SET sbaplayer_id = 438 +WHERE id IN (10287,11343,11675); + +-- Statement 2031 +UPDATE player +SET sbaplayer_id = 1289 +WHERE id IN (10290,11346,11685); + +-- Statement 2032 +UPDATE player +SET sbaplayer_id = 1396 +WHERE id IN (10292,11348,11689); + +-- Statement 2033 +UPDATE player +SET sbaplayer_id = 322 +WHERE id IN (10296,11352,11728); + +-- Statement 2034 +UPDATE player +SET sbaplayer_id = 522 +WHERE id IN (10300,11356); + +-- Statement 2035 +UPDATE player +SET sbaplayer_id = 75 +WHERE id IN (10307,11362,11817); + +-- Statement 2036 +UPDATE player +SET sbaplayer_id = 669 +WHERE id IN (10310,11365,11842); + +-- Statement 2037 +UPDATE player +SET sbaplayer_id = 747 +WHERE id IN (10311,11366,11843); + +-- Statement 2038 +UPDATE player +SET sbaplayer_id = 1081 +WHERE id IN (10321,11376); + +-- Statement 2039 +UPDATE player +SET sbaplayer_id = 1828 +WHERE id IN (10324,11379,11953); + +-- Statement 2040 +UPDATE player +SET sbaplayer_id = 1010 +WHERE id IN (10338,11393); + +-- Statement 2041 +UPDATE player +SET sbaplayer_id = 2179 +WHERE id IN (10339,11394,12031); + +-- Statement 2042 +UPDATE player +SET sbaplayer_id = 1712 +WHERE id IN (10342,11397); + +-- Statement 2043 +UPDATE player +SET sbaplayer_id = 864 +WHERE id IN (10344,11399); + +-- Statement 2044 +UPDATE player +SET sbaplayer_id = 830 +WHERE id IN (10348,11403,12059); + +-- Statement 2045 +UPDATE player +SET sbaplayer_id = 324 +WHERE id IN (10353,11408); + +-- Statement 2046 +UPDATE player +SET sbaplayer_id = 1312 +WHERE id IN (10354,11409); + +-- Statement 2047 +UPDATE player +SET sbaplayer_id = 2102 +WHERE id IN (10356,11411,12142); + +-- Statement 2048 +UPDATE player +SET sbaplayer_id = 288 +WHERE id IN (10358,11413,12154); + +-- Statement 2049 +UPDATE player +SET sbaplayer_id = 1232 +WHERE id IN (10363,11418,12182); + +-- Statement 2050 +UPDATE player +SET sbaplayer_id = 736 +WHERE id IN (10366,11421,12204); + +-- Statement 2051 +UPDATE player +SET sbaplayer_id = 1136 +WHERE id IN (10368,11423,12207); + +-- Statement 2052 +UPDATE player +SET sbaplayer_id = 472 +WHERE id IN (10369,11424,12220); + +-- Statement 2053 +UPDATE player +SET sbaplayer_id = 1212 +WHERE id IN (10370,11425,12221); + +-- Statement 2054 +UPDATE player +SET sbaplayer_id = 143 +WHERE id IN (10372,11427); + +-- Statement 2055 +UPDATE player +SET sbaplayer_id = 2060 +WHERE id IN (10376,11431,12266); + +-- Statement 2056 +UPDATE player +SET sbaplayer_id = 208 +WHERE id IN (10379,11434,12289); + +-- Statement 2057 +UPDATE player +SET sbaplayer_id = 1969 +WHERE id IN (10383,11438); + +-- Statement 2058 +UPDATE player +SET sbaplayer_id = 1376 +WHERE id IN (10387,11442); + +-- Statement 2060 +UPDATE player +SET sbaplayer_id = 886 +WHERE id IN (10389,11444,12379); + +-- Statement 2061 +UPDATE player +SET sbaplayer_id = 530 +WHERE id IN (10390,11445); + +-- Statement 2065 +UPDATE player +SET sbaplayer_id = 1783 +WHERE id IN (11463); + +-- Statement 2066 +UPDATE player +SET sbaplayer_id = 1256 +WHERE id IN (11468); + +-- Statement 2067 +UPDATE player +SET sbaplayer_id = 127 +WHERE id IN (11471); + +-- Statement 2068 +UPDATE player +SET sbaplayer_id = 486 +WHERE id IN (11474); + +-- Statement 2069 +UPDATE player +SET sbaplayer_id = 1933 +WHERE id IN (11481); + +-- Statement 2070 +UPDATE player +SET sbaplayer_id = 1747 +WHERE id IN (11496); + +-- Statement 2071 +UPDATE player +SET sbaplayer_id = 365 +WHERE id IN (11500); + +-- Statement 2072 +UPDATE player +SET sbaplayer_id = 1485 +WHERE id IN (11514); + +-- Statement 2073 +UPDATE player +SET sbaplayer_id = 376 +WHERE id IN (11515); + +-- Statement 2074 +UPDATE player +SET sbaplayer_id = 1228 +WHERE id IN (11516); + +-- Statement 2075 +UPDATE player +SET sbaplayer_id = 1345 +WHERE id IN (11520); + +-- Statement 2076 +UPDATE player +SET sbaplayer_id = 1220 +WHERE id IN (11531); + +-- Statement 2077 +UPDATE player +SET sbaplayer_id = 266 +WHERE id IN (11539); + +-- Statement 2078 +UPDATE player +SET sbaplayer_id = 998 +WHERE id IN (11541); + +-- Statement 2079 +UPDATE player +SET sbaplayer_id = 1643 +WHERE id IN (11543); + +-- Statement 2080 +UPDATE player +SET sbaplayer_id = 39 +WHERE id IN (11548); + +-- Statement 2081 +UPDATE player +SET sbaplayer_id = 1815 +WHERE id IN (11557); + +-- Statement 2082 +UPDATE player +SET sbaplayer_id = 206 +WHERE id IN (11558); + +-- Statement 2083 +UPDATE player +SET sbaplayer_id = 942 +WHERE id IN (11567); + +-- Statement 2084 +UPDATE player +SET sbaplayer_id = 817 +WHERE id IN (11571); + +-- Statement 2085 +UPDATE player +SET sbaplayer_id = 1128 +WHERE id IN (11574); + +-- Statement 2086 +UPDATE player +SET sbaplayer_id = 828 +WHERE id IN (11581); + +-- Statement 2087 +UPDATE player +SET sbaplayer_id = 120 +WHERE id IN (11586); + +-- Statement 2088 +UPDATE player +SET sbaplayer_id = 1110 +WHERE id IN (11587); + +-- Statement 2089 +UPDATE player +SET sbaplayer_id = 935 +WHERE id IN (11592); + +-- Statement 2090 +UPDATE player +SET sbaplayer_id = 1046 +WHERE id IN (11593); + +-- Statement 2091 +UPDATE player +SET sbaplayer_id = 1616 +WHERE id IN (11594); + +-- Statement 2092 +UPDATE player +SET sbaplayer_id = 1741 +WHERE id IN (11596); + +-- Statement 2093 +UPDATE player +SET sbaplayer_id = 987 +WHERE id IN (11601); + +-- Statement 2094 +UPDATE player +SET sbaplayer_id = 1580 +WHERE id IN (11608); + +-- Statement 2095 +UPDATE player +SET sbaplayer_id = 1853 +WHERE id IN (11609); + +-- Statement 2096 +UPDATE player +SET sbaplayer_id = 221 +WHERE id IN (11615); + +-- Statement 2097 +UPDATE player +SET sbaplayer_id = 1887 +WHERE id IN (11626); + +-- Statement 2098 +UPDATE player +SET sbaplayer_id = 1789 +WHERE id IN (11649); + +-- Statement 2099 +UPDATE player +SET sbaplayer_id = 1013 +WHERE id IN (11669); + +-- Statement 2100 +UPDATE player +SET sbaplayer_id = 1437 +WHERE id IN (11673); + +-- -- Statement 2101 +-- UPDATE player +-- SET sbaplayer_id = 10010690 +-- WHERE id IN (11690); + +-- Statement 2102 +UPDATE player +SET sbaplayer_id = 1776 +WHERE id IN (11693); + +-- Statement 2103 +UPDATE player +SET sbaplayer_id = 2218 +WHERE id IN (11697); + +-- Statement 2104 +UPDATE player +SET sbaplayer_id = 866 +WHERE id IN (11700); + +-- Statement 2105 +UPDATE player +SET sbaplayer_id = 1267 +WHERE id IN (11701); + +-- Statement 2106 +UPDATE player +SET sbaplayer_id = 611 +WHERE id IN (11705); + +-- Statement 2107 +UPDATE player +SET sbaplayer_id = 812 +WHERE id IN (11707); + +-- Statement 2108 +UPDATE player +SET sbaplayer_id = 459 +WHERE id IN (11711); + +-- Statement 2109 +UPDATE player +SET sbaplayer_id = 443 +WHERE id IN (11716); + +-- Statement 2110 +UPDATE player +SET sbaplayer_id = 1445 +WHERE id IN (11717); + +-- Statement 2111 +UPDATE player +SET sbaplayer_id = 517 +WHERE id IN (11722); + +-- Statement 2112 +UPDATE player +SET sbaplayer_id = 888 +WHERE id IN (11724); + +-- Statement 2113 +UPDATE player +SET sbaplayer_id = 807 +WHERE id IN (11727); + +-- Statement 2114 +UPDATE player +SET sbaplayer_id = 1319 +WHERE id IN (11732); + +-- Statement 2115 +UPDATE player +SET sbaplayer_id = 1990 +WHERE id IN (11735); + +-- Statement 2116 +UPDATE player +SET sbaplayer_id = 433 +WHERE id IN (11738); + +-- Statement 2117 +UPDATE player +SET sbaplayer_id = 156 +WHERE id IN (11745); + +-- Statement 2118 +UPDATE player +SET sbaplayer_id = 1738 +WHERE id IN (11747); + +-- Statement 2119 +UPDATE player +SET sbaplayer_id = 2031 +WHERE id IN (11751); + +-- Statement 2120 +UPDATE player +SET sbaplayer_id = 815 +WHERE id IN (11758); + +-- Statement 2121 +UPDATE player +SET sbaplayer_id = 1610 +WHERE id IN (11761); + +-- Statement 2122 +UPDATE player +SET sbaplayer_id = 2096 +WHERE id IN (11769); + +-- Statement 2123 +UPDATE player +SET sbaplayer_id = 1325 +WHERE id IN (11771); + +-- Statement 2124 +UPDATE player +SET sbaplayer_id = 1661 +WHERE id IN (11776); + +-- Statement 2125 +UPDATE player +SET sbaplayer_id = 566 +WHERE id IN (11788); + +-- Statement 2126 +UPDATE player +SET sbaplayer_id = 389 +WHERE id IN (11795); + +-- Statement 2127 +UPDATE player +SET sbaplayer_id = 920 +WHERE id IN (11818); + +-- Statement 2128 +UPDATE player +SET sbaplayer_id = 1270 +WHERE id IN (11819); + +-- Statement 2129 +UPDATE player +SET sbaplayer_id = 2130 +WHERE id IN (11821); + +-- Statement 2130 +UPDATE player +SET sbaplayer_id = 408 +WHERE id IN (11824); + +-- Statement 2131 +UPDATE player +SET sbaplayer_id = 2056 +WHERE id IN (11827); + +-- Statement 2132 +UPDATE player +SET sbaplayer_id = 444 +WHERE id IN (11829); + +-- Statement 2133 +UPDATE player +SET sbaplayer_id = 199 +WHERE id IN (11832); + +-- Statement 2134 +UPDATE player +SET sbaplayer_id = 1615 +WHERE id IN (11835); + +-- Statement 2135 +UPDATE player +SET sbaplayer_id = 1058 +WHERE id IN (11837); + +-- Statement 2136 +UPDATE player +SET sbaplayer_id = 1923 +WHERE id IN (11847); + +-- Statement 2137 +UPDATE player +SET sbaplayer_id = 885 +WHERE id IN (11854); + +-- Statement 2138 +UPDATE player +SET sbaplayer_id = 1003 +WHERE id IN (11855); + +-- Statement 2139 +UPDATE player +SET sbaplayer_id = 1067 +WHERE id IN (11857); + +-- Statement 2140 +UPDATE player +SET sbaplayer_id = 1113 +WHERE id IN (11858); + +-- Statement 2141 +UPDATE player +SET sbaplayer_id = 1143 +WHERE id IN (11859); + +-- Statement 2142 +UPDATE player +SET sbaplayer_id = 379 +WHERE id IN (11861); + +-- Statement 2143 +UPDATE player +SET sbaplayer_id = 1310 +WHERE id IN (11863); + +-- Statement 2144 +UPDATE player +SET sbaplayer_id = 65 +WHERE id IN (11864); + +-- Statement 2145 +UPDATE player +SET sbaplayer_id = 943 +WHERE id IN (11866); + +-- Statement 2146 +UPDATE player +SET sbaplayer_id = 1095 +WHERE id IN (11867); + +-- Statement 2147 +UPDATE player +SET sbaplayer_id = 2172 +WHERE id IN (11870); + +-- Statement 2148 +UPDATE player +SET sbaplayer_id = 2194 +WHERE id IN (11891); + +-- Statement 2149 +UPDATE player +SET sbaplayer_id = 995 +WHERE id IN (11893); + +-- Statement 2150 +UPDATE player +SET sbaplayer_id = 916 +WHERE id IN (11862); + +-- Statement 2151 +UPDATE player +SET sbaplayer_id = 525 +WHERE id IN (11903); + +-- Statement 2152 +UPDATE player +SET sbaplayer_id = 437 +WHERE id IN (11910); + +-- Statement 2153 +UPDATE player +SET sbaplayer_id = 588 +WHERE id IN (11916); + +-- Statement 2154 +UPDATE player +SET sbaplayer_id = 1428 +WHERE id IN (11924); + +-- Statement 2155 +UPDATE player +SET sbaplayer_id = 321 +WHERE id IN (11939); + +-- Statement 2156 +UPDATE player +SET sbaplayer_id = 231 +WHERE id IN (11930); + +-- Statement 2157 +UPDATE player +SET sbaplayer_id = 584 +WHERE id IN (11940); + +-- Statement 2158 +UPDATE player +SET sbaplayer_id = 1141 +WHERE id IN (11942); + +-- Statement 2159 +UPDATE player +SET sbaplayer_id = 1468 +WHERE id IN (11944); + +-- Statement 2160 +UPDATE player +SET sbaplayer_id = 386 +WHERE id IN (11956); + +-- Statement 2161 +UPDATE player +SET sbaplayer_id = 318 +WHERE id IN (11958); + +-- Statement 2162 +UPDATE player +SET sbaplayer_id = 490 +WHERE id IN (11961); + +-- Statement 2163 +UPDATE player +SET sbaplayer_id = 159 +WHERE id IN (11962); + +-- Statement 2164 +UPDATE player +SET sbaplayer_id = 1103 +WHERE id IN (11964); + +-- Statement 2165 +UPDATE player +SET sbaplayer_id = 607 +WHERE id IN (11983); + +-- Statement 2166 +UPDATE player +SET sbaplayer_id = 1973 +WHERE id IN (11994); + +-- Statement 2167 +UPDATE player +SET sbaplayer_id = 723 +WHERE id IN (12011); + +-- Statement 2168 +UPDATE player +SET sbaplayer_id = 24 +WHERE id IN (12015); + +-- Statement 2169 +UPDATE player +SET sbaplayer_id = 1107 +WHERE id IN (12017); + +-- Statement 2170 +UPDATE player +SET sbaplayer_id = 311 +WHERE id IN (12018); + +-- Statement 2171 +UPDATE player +SET sbaplayer_id = 1227 +WHERE id IN (12022); + +-- Statement 2172 +UPDATE player +SET sbaplayer_id = 1837 +WHERE id IN (12023); + +-- Statement 2173 +UPDATE player +SET sbaplayer_id = 2201 +WHERE id IN (12028); + +-- Statement 2174 +UPDATE player +SET sbaplayer_id = 1188 +WHERE id IN (12029); + +-- Statement 2175 +UPDATE player +SET sbaplayer_id = 1354 +WHERE id IN (12036); + +-- Statement 2176 +UPDATE player +SET sbaplayer_id = 2247 +WHERE id IN (12049); + +-- Statement 2177 +UPDATE player +SET sbaplayer_id = 1101 +WHERE id IN (12063); + +-- Statement 2178 +UPDATE player +SET sbaplayer_id = 1194 +WHERE id IN (12064); + +-- Statement 2179 +UPDATE player +SET sbaplayer_id = 1262 +WHERE id IN (12065); + +-- Statement 2180 +UPDATE player +SET sbaplayer_id = 1423 +WHERE id IN (12067); + +-- Statement 2181 +UPDATE player +SET sbaplayer_id = 2030 +WHERE id IN (12071); + +-- Statement 2182 +UPDATE player +SET sbaplayer_id = 1717 +WHERE id IN (12074); + +-- Statement 2183 +UPDATE player +SET sbaplayer_id = 1061 +WHERE id IN (12075); + +-- Statement 2184 +UPDATE player +SET sbaplayer_id = 982 +WHERE id IN (12080); + +-- Statement 2185 +UPDATE player +SET sbaplayer_id = 1653 +WHERE id IN (12081); + +-- Statement 2186 +UPDATE player +SET sbaplayer_id = 48 +WHERE id IN (12086); + +-- -- Statement 2187 +-- UPDATE player +-- SET sbaplayer_id = 10011100 +-- WHERE id IN (12100); + +-- Statement 2188 +UPDATE player +SET sbaplayer_id = 1129 +WHERE id IN (12108); + +-- Statement 2189 +UPDATE player +SET sbaplayer_id = 1162 +WHERE id IN (12119); + +-- Statement 2190 +UPDATE player +SET sbaplayer_id = 203 +WHERE id IN (12128); + +-- Statement 2191 +UPDATE player +SET sbaplayer_id = 1314 +WHERE id IN (12148); + +-- Statement 2192 +UPDATE player +SET sbaplayer_id = 1782 +WHERE id IN (12151); + +-- Statement 2193 +UPDATE player +SET sbaplayer_id = 1022 +WHERE id IN (12158); + +-- Statement 2194 +UPDATE player +SET sbaplayer_id = 1546 +WHERE id IN (12163); + +-- Statement 2195 +UPDATE player +SET sbaplayer_id = 1822 +WHERE id IN (12164); + +-- Statement 2196 +UPDATE player +SET sbaplayer_id = 1473 +WHERE id IN (12170); + +-- Statement 2197 +UPDATE player +SET sbaplayer_id = 1886 +WHERE id IN (12187); + +-- Statement 2198 +UPDATE player +SET sbaplayer_id = 1500 +WHERE id IN (12189); + +-- Statement 2199 +UPDATE player +SET sbaplayer_id = 1446 +WHERE id IN (12192); + +-- Statement 2200 +UPDATE player +SET sbaplayer_id = 1167 +WHERE id IN (12195); + +-- Statement 2201 +UPDATE player +SET sbaplayer_id = 1402 +WHERE id IN (12212); + +-- Statement 2202 +UPDATE player +SET sbaplayer_id = 1866 +WHERE id IN (12216); + +-- Statement 2203 +UPDATE player +SET sbaplayer_id = 1011 +WHERE id IN (12219); + +-- Statement 2204 +UPDATE player +SET sbaplayer_id = 547 +WHERE id IN (12226); + +-- Statement 2205 +UPDATE player +SET sbaplayer_id = 1032 +WHERE id IN (12229); + +-- Statement 2206 +UPDATE player +SET sbaplayer_id = 1150 +WHERE id IN (12233); + +-- Statement 2207 +UPDATE player +SET sbaplayer_id = 1833 +WHERE id IN (12246); + +-- -- Statement 2208 +-- UPDATE player +-- SET sbaplayer_id = 10011249 +-- WHERE id IN (12249); + +-- Statement 2209 +UPDATE player +SET sbaplayer_id = 445 +WHERE id IN (12251); + +-- Statement 2210 +UPDATE player +SET sbaplayer_id = 907 +WHERE id IN (12256); + +-- Statement 2211 +UPDATE player +SET sbaplayer_id = 1683 +WHERE id IN (12265); + +-- Statement 2212 +UPDATE player +SET sbaplayer_id = 700 +WHERE id IN (12268); + +-- Statement 2213 +UPDATE player +SET sbaplayer_id = 1154 +WHERE id IN (12273); + +-- Statement 2214 +UPDATE player +SET sbaplayer_id = 1385 +WHERE id IN (12285); + +-- Statement 2215 +UPDATE player +SET sbaplayer_id = 215 +WHERE id IN (12293); + +-- Statement 2216 +UPDATE player +SET sbaplayer_id = 1731 +WHERE id IN (12311); + +-- Statement 2217 +UPDATE player +SET sbaplayer_id = 214 +WHERE id IN (12323); + +-- Statement 2218 +UPDATE player +SET sbaplayer_id = 783 +WHERE id IN (12326); + +-- Statement 2219 +UPDATE player +SET sbaplayer_id = 537 +WHERE id IN (12338); + +-- Statement 2220 +UPDATE player +SET sbaplayer_id = 951 +WHERE id IN (12342); + +-- Statement 2221 +UPDATE player +SET sbaplayer_id = 2197 +WHERE id IN (12343); + +-- Statement 2222 +UPDATE player +SET sbaplayer_id = 95 +WHERE id IN (12347); + +-- Statement 2223 +UPDATE player +SET sbaplayer_id = 201 +WHERE id IN (12348); + +-- Statement 2224 +UPDATE player +SET sbaplayer_id = 924 +WHERE id IN (12349); + +-- Statement 2225 +UPDATE player +SET sbaplayer_id = 1785 +WHERE id IN (12350); + +-- Statement 2226 +UPDATE player +SET sbaplayer_id = 1070 +WHERE id IN (12355); + +-- Statement 2227 +UPDATE player +SET sbaplayer_id = 753 +WHERE id IN (12365); + +-- Statement 2228 +UPDATE player +SET sbaplayer_id = 1787 +WHERE id IN (12371); + +-- Statement 2229 +UPDATE player +SET sbaplayer_id = 2075 +WHERE id IN (12377); + +-- Statement 2230 +UPDATE player +SET sbaplayer_id = 1397 +WHERE id IN (12384); + +-- Statement 2231 +UPDATE player +SET sbaplayer_id = 297 +WHERE id IN (12404); + +-- Statement 2232 +UPDATE player +SET sbaplayer_id = 1125 +WHERE id IN (12405); + +-- Statement 2233 +UPDATE player +SET sbaplayer_id = 1951 +WHERE id IN (12406); + +-- Statement 2234 +UPDATE player +SET sbaplayer_id = 604 +WHERE id IN (12414); + +-- Statement 2235 +UPDATE player +SET sbaplayer_id = 620 +WHERE id IN (12415); + +-- Statement 2236 +UPDATE player +SET sbaplayer_id = 2248 +WHERE id IN (12422); + +-- Statement 2237 +UPDATE player +SET sbaplayer_id = 1324 +WHERE id IN (12429); + +-- Statement 2238 +UPDATE player +SET sbaplayer_id = 1790 +WHERE id IN (12435); + +-- Statement 2239 +UPDATE player +SET sbaplayer_id = 2084 +WHERE id IN (12436); + +-- Statement 2240 +UPDATE player +SET sbaplayer_id = 1541 +WHERE id IN (12442); + +-- Statement 2241 +UPDATE player +SET sbaplayer_id = 2170 +WHERE id IN (12443); + +-- Statement 2242 +UPDATE player +SET sbaplayer_id = 2097 +WHERE id IN (12450); + +-- Statement 2243 +UPDATE player +SET sbaplayer_id = 1093 +WHERE id IN (12458); + +-- Statement 2244 +UPDATE player +SET sbaplayer_id = 1686 +WHERE id IN (12465); + +-- Statement 2245 +UPDATE player +SET sbaplayer_id = 1680 +WHERE id IN (12468); + +-- Statement 2246 +UPDATE player +SET sbaplayer_id = 2206 +WHERE id IN (12473); + +-- Statement 2247 +UPDATE player +SET sbaplayer_id = 1241 +WHERE id IN (12475); + +-- Statement 2248 +UPDATE player +SET sbaplayer_id = 489 +WHERE id IN (12480); + +-- Statement 2249 +UPDATE player +SET sbaplayer_id = 500 +WHERE id IN (12481); + +-- Statement 2250 +UPDATE player +SET sbaplayer_id = 1024 +WHERE id IN (12487); + +-- Statement 2251 +UPDATE player +SET sbaplayer_id = 1242 +WHERE id IN (12491); + +-- Statement 2252 +UPDATE player +SET sbaplayer_id = 608 +WHERE id IN (12297); + +-- Statement 2253 +UPDATE player +SET sbaplayer_id = 1718 +WHERE id IN (11643); + +-- Statement 2254 +UPDATE player +SET sbaplayer_id = 172 +WHERE id IN (12430); + +COMMIT; diff --git a/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/post_new_sbaplayers.py b/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/post_new_sbaplayers.py new file mode 100644 index 0000000..343a2b8 --- /dev/null +++ b/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/post_new_sbaplayers.py @@ -0,0 +1,192 @@ +#!/usr/bin/env python3 +""" +Post new SbaPlayer records to production API +""" + +import csv +import json +import requests +import logging +import os +import argparse +from typing import Dict, List, Optional + +# Set up logging +logging.basicConfig( + level=logging.INFO, + format='%(asctime)s - %(name)s - %(levelname)s - %(message)s', + handlers=[ + logging.FileHandler('matching.log'), + logging.StreamHandler() + ] +) +logger = logging.getLogger(f'{__name__}.post_new_sbaplayers') + +# Production API configuration +API_BASE_URL = "https://api.sba.manticorum.com" +SBAPLAYERS_ENDPOINT = f"{API_BASE_URL}/sbaplayers" + +def get_api_token(token_arg=None): + """Get API token from argument, environment, or prompt user""" + if token_arg: + return token_arg + + api_token = os.getenv('API_TOKEN') + if not api_token: + print("API_TOKEN environment variable not found.") + api_token = input("Please enter your API token: ").strip() + return api_token + +def load_new_sbaplayers(): + """Load new SbaPlayer records from CSV file""" + new_players = [] + + logger.info("Loading new SbaPlayers from new_sbaplayers_to_insert.csv...") + + with open('./new_sbaplayers_to_insert.csv', 'r') as f: + reader = csv.DictReader(f) + for row in reader: + # Convert CSV row to API format + player = { + "first_name": row['first_name'], + "last_name": row['last_name'], + "key_bbref": row['key_bbref'] if row['key_bbref'] else None, + "key_fangraphs": None, # We don't have fangraphs IDs + "key_mlbam": None, # We don't have MLBAM IDs + "key_retro": None # We don't have retro IDs + } + new_players.append(player) + + logger.info(f"Loaded {len(new_players)} new SbaPlayer records") + return new_players + +def post_sbaplayers_bulk(players: List[Dict], api_token: str) -> bool: + """Post multiple SbaPlayers via bulk endpoint""" + + payload = { + "players": players + } + + headers = { + "Authorization": f"Bearer {api_token}", + "Content-Type": "application/json" + } + + logger.info(f"Posting {len(players)} new SbaPlayers to {SBAPLAYERS_ENDPOINT}...") + + try: + response = requests.post(SBAPLAYERS_ENDPOINT, json=payload, headers=headers, timeout=30) + + if response.status_code == 200: + logger.info(f"✅ SUCCESS: {response.text}") + return True + else: + logger.error(f"❌ API Error {response.status_code}: {response.text}") + return False + + except requests.exceptions.RequestException as e: + logger.error(f"❌ Request failed: {e}") + return False + +def verify_posted_players(players: List[Dict], api_token: str): + """Verify that the posted players exist in the database""" + + headers = { + "Authorization": f"Bearer {api_token}", + "Content-Type": "application/json" + } + + logger.info("Verifying posted players...") + + for player in players: + full_name = f"{player['first_name']} {player['last_name']}" + + # Search by full name + params = {"full_name": [full_name]} + + try: + response = requests.get(SBAPLAYERS_ENDPOINT, params=params, headers=headers, timeout=10) + + if response.status_code == 200: + data = response.json() + if data['count'] > 0: + sba_player = data['players'][0] + logger.info(f"✅ Verified: {full_name} -> SbaPlayer ID {sba_player['id']}") + else: + logger.warning(f"⚠️ Not found: {full_name}") + else: + logger.error(f"❌ Verification failed for {full_name}: {response.status_code}") + + except requests.exceptions.RequestException as e: + logger.error(f"❌ Verification request failed for {full_name}: {e}") + +def main(): + """Main execution function""" + parser = argparse.ArgumentParser(description='Post new SbaPlayer records to production API') + parser.add_argument('--token', help='API token for authentication') + parser.add_argument('--confirm', action='store_true', help='Skip confirmation prompt') + parser.add_argument('--dry-run', action='store_true', help='Show what would be posted without actually posting') + + args = parser.parse_args() + + logger.info("Starting SbaPlayer creation process...") + + try: + # Load new players + new_players = load_new_sbaplayers() + + if not new_players: + logger.warning("No new players to post. Exiting.") + return + + # Show preview + print(f"\n📋 PREVIEW: About to create {len(new_players)} new SbaPlayer records:") + for i, player in enumerate(new_players, 1): + bbref_info = f" (bbref: {player['key_bbref']})" if player['key_bbref'] else "" + print(f" {i:2d}. {player['first_name']} {player['last_name']}{bbref_info}") + + if args.dry_run: + print(f"\n🧪 DRY RUN: Would create {len(new_players)} new SbaPlayer records") + print("JSON payload preview:") + print(json.dumps({"players": new_players[:3]}, indent=2)) + if len(new_players) > 3: + print(f"... and {len(new_players) - 3} more players") + return + + # Get API token (only needed for actual posting) + api_token = get_api_token(args.token) + if not api_token: + logger.error("No API token provided. Exiting.") + return + + # Confirm with user (unless --confirm flag is used) + if not args.confirm: + print(f"\n🚨 WARNING: This will create {len(new_players)} new records in the PRODUCTION database!") + confirm = input("Are you sure you want to proceed? (yes/no): ").strip().lower() + + if confirm not in ['yes', 'y']: + logger.info("User cancelled. No records created.") + return + + # Bulk insert + logger.info("Posting via bulk endpoint...") + success = post_sbaplayers_bulk(new_players, api_token) + + if success: + logger.info("✅ Bulk insert completed successfully!") + + # Verify the results + print(f"\n🔍 Verifying created players...") + verify_posted_players(new_players, api_token) + else: + logger.error("❌ Bulk insert failed. Check the error messages above.") + + logger.info("✅ SbaPlayer creation process completed!") + print(f"\n🎉 Process completed! Check the logs above for results.") + + except Exception as e: + logger.error(f"Unexpected error: {e}") + raise + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/process_manual_decisions.py b/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/process_manual_decisions.py new file mode 100644 index 0000000..3568a2e --- /dev/null +++ b/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/process_manual_decisions.py @@ -0,0 +1,317 @@ +#!/usr/bin/env python3 +""" +Process manual review decisions and generate final assignment files. +""" + +import json +import csv +import logging +from pathlib import Path +from typing import Dict, List, Set +from dataclasses import dataclass + +# Set up logging +logging.basicConfig( + level=logging.INFO, + format='%(asctime)s - %(name)s - %(levelname)s - %(message)s', + handlers=[ + logging.FileHandler('matching.log'), + logging.StreamHandler() + ] +) +logger = logging.getLogger(f'{__name__}.process_manual_decisions') + +@dataclass +class ManualDecision: + """Manual decision from review CSV""" + group_key: str + player_name: str + bbref_id: str + seasons_appeared: str + sample_player_ids: str + potential_existing_sbaplayer_id: str + potential_existing_sbaplayer_name: str + potential_match_reason: str + your_decision_sbaplayer_id: str + your_decision_notes: str + +def load_cached_data(): + """Load cached player and sbaplayer data""" + logger.info("Loading cached data from /tmp/...") + + # Load SbaPlayers + with open('/tmp/sbaplayers.json', 'r') as f: + sbaplayers = json.load(f) + logger.info(f"Loaded {len(sbaplayers)} SbaPlayer records") + + # Load all players + all_players = [] + for season in range(1, 13): + try: + with open(f'/tmp/players_season_{season}.json', 'r') as f: + season_players = json.load(f) + all_players.extend(season_players) + except FileNotFoundError: + logger.warning(f"Season {season} data not found") + + logger.info(f"Loaded {len(all_players)} total player records") + return all_players, sbaplayers + +def load_previous_matches(): + """Load the automatically matched players from comprehensive analysis""" + matched_players = set() + + # Read the matching report to get previously matched player IDs + try: + with open('matching_report.txt', 'r') as f: + content = f.read() + + # Extract matched player IDs from the report + # This is a simplified approach - in practice, we'd want to re-run + # the matching logic or save the matched IDs separately + logger.info("Loading previously matched players from existing analysis...") + + except FileNotFoundError: + logger.warning("matching_report.txt not found - will need to re-run comprehensive matching") + + return matched_players + +def parse_manual_decisions(): + """Parse manual decisions from the review CSV""" + decisions = [] + + with open('new_sbaplayers_for_review.csv', 'r', encoding='utf-8') as f: + # Handle the encoded format + content = f.read() + # Decode common HTML entities + content = content.replace('+AF8-', '_') + content = content.replace('+ACI-', '"') + content = content.replace('+AC0-', '-') + + # Parse as CSV + lines = content.strip().split('\n') + reader = csv.DictReader(lines) + + for row in reader: + if not row.get('group_key'): # Skip empty rows + continue + + decision = ManualDecision( + group_key=row['group_key'], + player_name=row['player_name'], + bbref_id=row['bbref_id'], + seasons_appeared=row['seasons_appeared'], + sample_player_ids=row['sample_player_ids'], + potential_existing_sbaplayer_id=row['potential_existing_sbaplayer_id'], + potential_existing_sbaplayer_name=row['potential_existing_sbaplayer_name'], + potential_match_reason=row['potential_match_reason'], + your_decision_sbaplayer_id=row['your_decision_sbaplayer_id'], + your_decision_notes=row['your_decision_notes'] + ) + decisions.append(decision) + + logger.info(f"Parsed {len(decisions)} manual decisions") + return decisions + +def determine_final_assignments(all_players, sbaplayers, decisions): + """Determine final sbaplayer_id assignments for all players""" + + # Create maps for quick lookup + sbaplayer_map = {sp['id']: sp for sp in sbaplayers} + + # Group decisions by type + existing_matches = {} # player_name -> sbaplayer_id + new_players_needed = set() # player names that need new SbaPlayer records + three_way_matches = {} # consolidated names + + # Process manual decisions + for decision in decisions: + if decision.your_decision_sbaplayer_id: + # User chose an existing SbaPlayer + try: + sbaplayer_id = int(decision.your_decision_sbaplayer_id) + existing_matches[decision.player_name] = sbaplayer_id + logger.info(f"Manual match: {decision.player_name} -> SbaPlayer ID {sbaplayer_id}") + except ValueError: + logger.warning(f"Invalid SbaPlayer ID: {decision.your_decision_sbaplayer_id}") + else: + # User decided this needs a new SbaPlayer record + new_players_needed.add(decision.player_name) + + # Check for three-way matches in notes + if "Three-way match" in decision.your_decision_notes: + # Extract canonical name from notes + if "use name Tom Eshelman" in decision.your_decision_notes: + three_way_matches[decision.player_name] = "Tom Eshelman" + + # Check for two-way matches (corrupted data) + if "Two-way match" in decision.your_decision_notes: + if "join with bbref_id mejiafr01" in decision.your_decision_notes: + # This Francisco Mejia with "HALP" should join with the legitimate one + # Find the mejiafr01 record in decisions + for other_decision in decisions: + if other_decision.bbref_id == "mejiafr01": + three_way_matches[decision.player_name] = other_decision.player_name + break + + logger.info(f"Found {len(existing_matches)} existing matches") + logger.info(f"Found {len(new_players_needed)} players needing new records") + logger.info(f"Found {len(three_way_matches)} three-way matches") + + return existing_matches, new_players_needed, three_way_matches + +def generate_assignment_files(all_players, existing_matches, new_players_needed, three_way_matches): + """Generate the final assignment files""" + + # We need to re-implement the comprehensive matching logic here + # For now, I'll create a simplified version that processes the manual decisions + + logger.info("Generating assignment files...") + + # This is a placeholder - we need to integrate with the existing comprehensive_player_matching.py + # logic to get the full 12,232 player assignments + + assignments = [] + new_sbaplayers = [] + + # Process manual decisions into assignments + for player_name, sbaplayer_id in existing_matches.items(): + # Find all player records with this name and assign them + matching_players = [p for p in all_players if p['name'] == player_name] + for player in matching_players: + assignments.append({ + 'player_id': player['id'], + 'player_name': player['name'], + 'season': player['season'], + 'bbref_id': player.get('bbref_id', ''), + 'assigned_sbaplayer_id': sbaplayer_id, + 'match_type': 'manual_existing' + }) + + # Process new players that need SbaPlayer records + next_sbaplayer_id = max([sp['id'] for sp in sbaplayers]) + 1 + + for player_name in new_players_needed: + if player_name not in three_way_matches: # Regular new player + # Find a representative player record to get bbref_id and other data + sample_players = [p for p in all_players if p['name'] == player_name] + if sample_players: + sample = sample_players[0] + new_sbaplayers.append({ + 'new_id': next_sbaplayer_id, + 'name': player_name, + 'key_bbref': sample.get('bbref_id', ''), + 'key_fangraphs': '', + 'key_mlb': '', + 'notes': f'Created from manual review for {len(sample_players)} player records' + }) + + # Assign all players with this name to the new SbaPlayer + for player in sample_players: + assignments.append({ + 'player_id': player['id'], + 'player_name': player['name'], + 'season': player['season'], + 'bbref_id': player.get('bbref_id', ''), + 'assigned_sbaplayer_id': next_sbaplayer_id, + 'match_type': 'manual_new' + }) + + next_sbaplayer_id += 1 + + # Handle three-way matches + for original_name, canonical_name in three_way_matches.items(): + # All variations should map to the same new SbaPlayer + all_variations = [name for name in new_players_needed if three_way_matches.get(name) == canonical_name] + [canonical_name] + all_variations = list(set(all_variations)) # Remove duplicates + + # Create one new SbaPlayer for all variations + sample_players = [] + for variation in all_variations: + sample_players.extend([p for p in all_players if p['name'] == variation]) + + if sample_players: + sample = sample_players[0] + new_sbaplayers.append({ + 'new_id': next_sbaplayer_id, + 'name': canonical_name, + 'key_bbref': sample.get('bbref_id', ''), + 'key_fangraphs': '', + 'key_mlb': '', + 'notes': f'Consolidated from {len(all_variations)} name variations: {", ".join(all_variations)}' + }) + + # Assign all players with these name variations + for player in sample_players: + assignments.append({ + 'player_id': player['id'], + 'player_name': player['name'], + 'season': player['season'], + 'bbref_id': player.get('bbref_id', ''), + 'assigned_sbaplayer_id': next_sbaplayer_id, + 'match_type': 'manual_consolidated' + }) + + next_sbaplayer_id += 1 + + return assignments, new_sbaplayers + +def save_assignment_files(assignments, new_sbaplayers): + """Save the final assignment files""" + + # Save player assignments + with open('player_sbaplayer_assignments.csv', 'w', newline='') as f: + if assignments: + fieldnames = assignments[0].keys() + writer = csv.DictWriter(f, fieldnames=fieldnames) + writer.writeheader() + writer.writerows(assignments) + + logger.info(f"Saved {len(assignments)} player assignments to player_sbaplayer_assignments.csv") + + # Save new SbaPlayers to insert + with open('new_sbaplayers_to_insert.csv', 'w', newline='') as f: + if new_sbaplayers: + fieldnames = new_sbaplayers[0].keys() + writer = csv.DictWriter(f, fieldnames=fieldnames) + writer.writeheader() + writer.writerows(new_sbaplayers) + + logger.info(f"Saved {len(new_sbaplayers)} new SbaPlayer records to new_sbaplayers_to_insert.csv") + +def main(): + """Main processing function""" + logger.info("Starting manual decision processing...") + + try: + # Load cached data + all_players, sbaplayers = load_cached_data() + + # Parse manual decisions + decisions = parse_manual_decisions() + + # Determine final assignments + existing_matches, new_players_needed, three_way_matches = determine_final_assignments( + all_players, sbaplayers, decisions + ) + + # Generate assignment files + assignments, new_sbaplayers = generate_assignment_files( + all_players, existing_matches, new_players_needed, three_way_matches + ) + + # Save files + save_assignment_files(assignments, new_sbaplayers) + + logger.info("Manual decision processing completed successfully!") + print(f"\nSUMMARY:") + print(f"- {len(assignments)} player assignments generated") + print(f"- {len(new_sbaplayers)} new SbaPlayer records to create") + print(f"- Files saved: player_sbaplayer_assignments.csv, new_sbaplayers_to_insert.csv") + + except Exception as e: + logger.error(f"Error processing manual decisions: {e}") + raise + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/validation_query.sql b/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/validation_query.sql new file mode 100644 index 0000000..a2df1a5 --- /dev/null +++ b/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/validation_query.sql @@ -0,0 +1,22 @@ +-- Validation query for all sbaplayer_id values in the update script +-- Add this BEFORE the BEGIN statement in your main SQL file + +DO $$ +DECLARE + missing_ids INTEGER[]; + invalid_count INTEGER; + expected_ids INTEGER[] := ARRAY[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234]; +BEGIN + -- Check for missing sbaplayer_id values + SELECT ARRAY_AGG(expected_id), COUNT(*) + INTO missing_ids, invalid_count + FROM UNNEST(expected_ids) AS expected_id + LEFT JOIN sbaplayer sba ON sba.id = expected_id + WHERE sba.id IS NULL; + + IF invalid_count > 0 THEN + RAISE EXCEPTION 'Found % missing sbaplayer_id values: %', invalid_count, missing_ids; + END IF; + + RAISE NOTICE 'SUCCESS: All % unique sbaplayer_id values validated successfully', array_length(expected_ids, 1); +END $$; \ No newline at end of file diff --git a/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/verify_updates.sql b/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/verify_updates.sql new file mode 100644 index 0000000..145c7a7 --- /dev/null +++ b/.claude/sqlite-to-postgres/player-to-sbaplayer-matching/verify_updates.sql @@ -0,0 +1,70 @@ +-- Verification queries +-- Check sample assignments were applied correctly + +-- Check player 2014 +SELECT id, name, sbaplayer_id +FROM player +WHERE id = 2014 AND sbaplayer_id = 1336; + +-- Check player 2013 +SELECT id, name, sbaplayer_id +FROM player +WHERE id = 2013 AND sbaplayer_id = 570; + +-- Check player 2015 +SELECT id, name, sbaplayer_id +FROM player +WHERE id = 2015 AND sbaplayer_id = 1571; + +-- Check player 2016 +SELECT id, name, sbaplayer_id +FROM player +WHERE id = 2016 AND sbaplayer_id = 55; + +-- Check player 2017 +SELECT id, name, sbaplayer_id +FROM player +WHERE id = 2017 AND sbaplayer_id = 279; + +-- Check player 2018 +SELECT id, name, sbaplayer_id +FROM player +WHERE id = 2018 AND sbaplayer_id = 892; + +-- Check player 2019 +SELECT id, name, sbaplayer_id +FROM player +WHERE id = 2019 AND sbaplayer_id = 3; + +-- Check player 2020 +SELECT id, name, sbaplayer_id +FROM player +WHERE id = 2020 AND sbaplayer_id = 1433; + +-- Check player 2021 +SELECT id, name, sbaplayer_id +FROM player +WHERE id = 2021 AND sbaplayer_id = 1745; + +-- Check player 2022 +SELECT id, name, sbaplayer_id +FROM player +WHERE id = 2022 AND sbaplayer_id = 49; + + +-- Summary check: Count of players with non-null sbaplayer_id +SELECT COUNT(*) as players_with_sbaplayer_id +FROM player +WHERE sbaplayer_id IS NOT NULL; +-- Expected result: should be close to 12,232 + +-- Check distribution by assignment source type +SELECT + CASE + WHEN sbaplayer_id < 3000 THEN 'existing_sbaplayer' + ELSE 'new_sbaplayer' + END as assignment_type, + COUNT(*) as player_count +FROM player +WHERE sbaplayer_id IS NOT NULL +GROUP BY assignment_type; diff --git a/quick_data_comparison.py b/.claude/sqlite-to-postgres/quick_data_comparison.py similarity index 100% rename from quick_data_comparison.py rename to .claude/sqlite-to-postgres/quick_data_comparison.py diff --git a/reset_postgres.py b/.claude/sqlite-to-postgres/reset_postgres.py similarity index 100% rename from reset_postgres.py rename to .claude/sqlite-to-postgres/reset_postgres.py diff --git a/run_optimization.py b/.claude/sqlite-to-postgres/run_optimization.py similarity index 100% rename from run_optimization.py rename to .claude/sqlite-to-postgres/run_optimization.py diff --git a/.claude/sqlite-to-postgres/season_batting_stats_view.sql b/.claude/sqlite-to-postgres/season_batting_stats_view.sql new file mode 100644 index 0000000..f5b7387 --- /dev/null +++ b/.claude/sqlite-to-postgres/season_batting_stats_view.sql @@ -0,0 +1,104 @@ +CREATE MATERIALIZED VIEW season_batting_stats_view AS +WITH batting_stats AS ( + SELECT + p.name, + p.id AS player_id, + p.sbaplayer_id, + sg.season, + p.team_id AS player_team_id, + p.team_abbrev AS player_team_abbrev, + + -- Counting statistics (summed from StratPlays) + SUM(sp.pa) AS pa, + SUM(sp.ab) AS ab, + SUM(sp.run) AS run, + SUM(sp.hit) AS hit, + SUM(sp.double) AS double, + SUM(sp.triple) AS triple, + SUM(sp.homerun) AS hr, + SUM(sp.rbi) AS rbi, + SUM(sp.bb) AS bb, + SUM(sp.so) AS so, + SUM(sp.bphr) AS bphr, + SUM(sp.bpfo) AS bpfo, + SUM(sp.bp1b) AS bp1b, + SUM(sp.bplo) AS bplo, + SUM(sp.gidp) AS gidp, + SUM(sp.hbp) AS hbp, + SUM(sp.sac) AS sac, + SUM(sp.ibb) AS ibb, + + -- Calculated statistics using formulas + CASE + WHEN SUM(sp.ab) > 0 + THEN ROUND(SUM(sp.hit)::DECIMAL / SUM(sp.ab), 3) + ELSE 0.000 + END AS avg, + + CASE + WHEN SUM(sp.pa) > 0 + THEN ROUND((SUM(sp.hit) + SUM(sp.bb) + SUM(sp.hbp) + SUM(sp.ibb))::DECIMAL / SUM(sp.pa), 3) + ELSE 0.000 + END AS obp, + + CASE + WHEN SUM(sp.ab) > 0 + THEN ROUND((SUM(sp.hit) + SUM(sp.double) + 2 * SUM(sp.triple) + 3 * + SUM(sp.homerun))::DECIMAL / SUM(sp.ab), 3) + ELSE 0.000 + END AS slg, + + CASE + WHEN SUM(sp.pa) > 0 AND SUM(sp.ab) > 0 + THEN ROUND( + ((SUM(sp.hit) + SUM(sp.bb) + SUM(sp.hbp) + SUM(sp.ibb))::DECIMAL / SUM(sp.pa)) + + ((SUM(sp.hit) + SUM(sp.double) + 2 * SUM(sp.triple) + 3 * + SUM(sp.homerun))::DECIMAL / SUM(sp.ab)), 3) + ELSE 0.000 + END AS ops, + + -- wOBA calculation (simplified version - adjust weights as needed) + CASE + WHEN SUM(sp.pa) > 0 + THEN ROUND((0.690 * SUM(sp.bb) + 0.722 * SUM(sp.hbp) + 0.888 * (SUM(sp.hit) - + SUM(sp.double) - SUM(sp.triple) - SUM(sp.homerun)) + + 1.271 * SUM(sp.double) + 1.616 * SUM(sp.triple) + 2.101 * + SUM(sp.homerun))::DECIMAL / SUM(sp.pa), 3) + ELSE 0.000 + END AS woba, + + CASE + WHEN SUM(sp.pa) > 0 + THEN ROUND(SUM(sp.so)::DECIMAL / SUM(sp.pa) * 100, 1) + ELSE 0.0 + END AS k_pct + + FROM stratplay sp + JOIN stratgame sg ON sg.id = sp.game_id + JOIN player p ON p.id = sp.batter_id + GROUP BY p.id, sg.season +), +running_stats AS ( + SELECT + sp.runner_id AS player_id, + sg.season, + SUM(sp.sb) AS sb, + SUM(sp.cs) AS cs + FROM stratplay sp + JOIN stratgame sg ON sg.id = sp.game_id + WHERE sp.runner_id IS NOT NULL + GROUP BY sp.runner_id, sg.season +) +SELECT + bs.*, + COALESCE(rs.sb, 0) AS sb, + COALESCE(rs.cs, 0) AS cs +FROM batting_stats bs +LEFT JOIN running_stats rs ON bs.player_id = rs.player_id + AND bs.season = rs.season; + +-- Create indexes for better query performance +CREATE INDEX idx_season_batting_stats_season ON season_batting_stats_view (season); +CREATE INDEX idx_season_batting_stats_teamseason ON season_batting_stats_view (season, player_team_id); +CREATE INDEX idx_season_batting_stats_player ON season_batting_stats_view (player_id); +CREATE INDEX idx_season_batting_stats_sbaplayer ON season_batting_stats_view (sbaplayer_id); \ No newline at end of file diff --git a/test_migration_workflow.sh b/.claude/sqlite-to-postgres/test_migration_workflow.sh similarity index 100% rename from test_migration_workflow.sh rename to .claude/sqlite-to-postgres/test_migration_workflow.sh diff --git a/test_postgres.py b/.claude/sqlite-to-postgres/test_postgres.py similarity index 100% rename from test_postgres.py rename to .claude/sqlite-to-postgres/test_postgres.py diff --git a/test_requirements.txt b/.claude/sqlite-to-postgres/test_requirements.txt similarity index 100% rename from test_requirements.txt rename to .claude/sqlite-to-postgres/test_requirements.txt diff --git a/validate_migration.py b/.claude/sqlite-to-postgres/validate_migration.py similarity index 100% rename from validate_migration.py rename to .claude/sqlite-to-postgres/validate_migration.py