Created
April 6, 2018 20:21
-
-
Save valex/7ffea4e192b0b3a74145b49aaae47b2a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <meta charset='utf-8'> | |
| <html> | |
| <head> | |
| <link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet"> | |
| <link href="https://cdnjs.cloudflare.com/ajax/libs/video.js/6.6.0/alt/video-js-cdn.min.css" rel="stylesheet"> | |
| <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"> | |
| <link rel='stylesheet' href='style.css'> | |
| </head> | |
| <body> | |
| <div class="container-fluid"> | |
| <div class="row"> | |
| <div class="col-sm-4"> | |
| <ul class="nav nav-tabs" id="vsc_video_tabs" role="tablist"> | |
| <li class="nav-item"> | |
| <a class="nav-link" id="best_videos_tab" data-toggle="tab" href="#best_videos_tab_content" role="tab" aria-controls="best_videos_tab_content" aria-selected="false">Best Videos</a> | |
| </li> | |
| <li class="nav-item"> | |
| <a class="nav-link" id="other_tab" data-toggle="tab" href="#other_tab_content" role="tab" aria-controls="other_tab_content" aria-selected="false">Other</a> | |
| </li> | |
| </ul> | |
| <div class="tab-content"> | |
| <div class="tab-pane fade" id="best_videos_tab_content" role="tabpanel" aria-labelledby="best_videos_tab"> | |
| </div> | |
| <div class="tab-pane fade" id="other_tab_content" role="tabpanel" aria-labelledby="other_tab"> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.slim.min.js"></script> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0/js/bootstrap.min.js"></script> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/d3/4.11.0/d3.min.js"></script> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/video.js/6.6.3/video.min.js"></script> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.20.1/moment.min.js"></script> | |
| <script type='text/javascript' src='videoscouting.js'></script> | |
| </body> | |
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /**/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var qid = location.search; | |
| var VIDEO_SCOUTING_APP = { | |
| url: 'videoscouting.json', | |
| data: [], | |
| loadedData: [], | |
| activeTab: null, | |
| options: { | |
| tableModule:{ | |
| columns: [ | |
| { | |
| key: 'date', | |
| label: 'Date', | |
| format: 'D/M/YYYY', | |
| }, | |
| { | |
| key: 'batter', | |
| label: 'Batter', | |
| }, | |
| { | |
| key: 'hto1', | |
| label: 'H to 1st', | |
| }, | |
| ] | |
| }, | |
| }, | |
| start: function(){ | |
| this.initTabs(); | |
| this.loadData(); | |
| }, | |
| loadData: function(){ | |
| var that = this; | |
| d3.json(this.url, function (error, rawData) { | |
| if (error) throw error; | |
| that.loadedData = rawData['RECORDS'].map(function (d) { | |
| var videos=[]; | |
| if(typeof d["angle1"] !== 'undefined' && | |
| d["angle1"] !== null && | |
| (d["angle1"].trim()).length > 0) | |
| { | |
| videos.push({ | |
| src: d["angle1"].trim() | |
| }); | |
| } | |
| if(typeof d["angle2"] !== 'undefined' && | |
| d["angle2"] !== null && | |
| (d["angle2"].trim()).length > 0) | |
| { | |
| videos.push({ | |
| src: d["angle2"].trim() | |
| }); | |
| } | |
| return { | |
| date: moment(d["date"], "D/M/YYYY HH:mm:ss"), | |
| batter: (''+d["batter"]).trim(), | |
| result: (''+d["result"]).trim(), | |
| hto1: (''+d["hto1"]).trim(), | |
| vlaunch: +d["vlaunch"], | |
| videos: videos | |
| } | |
| }); | |
| that.updateData(); | |
| }); | |
| }, | |
| initTabs: function(){ | |
| var that = this; | |
| $('#vsc_video_tabs a').on('click', function (e) { | |
| e.preventDefault(); | |
| $(this).tab('show'); | |
| }); | |
| $('#vsc_video_tabs a[data-toggle="tab"]').on('show.bs.tab', function (e) { | |
| // e.target // newly activated tab | |
| // e.relatedTarget // previous active tab | |
| that.onActiveTabChanged(e.target, e.relatedTarget); | |
| }); | |
| $('#vsc_video_tabs li:first-child a').tab('show'); // Select first tab | |
| }, | |
| onActiveTabChanged: function(active, prev){ | |
| this.activeTab = $(active).attr('id'); | |
| if(typeof prev !== 'undefined'){ | |
| } | |
| if(this.loadedData.length > 0){ | |
| this.updateData(); | |
| } | |
| }, | |
| updateData: function(){ | |
| var that = this; | |
| switch(this.activeTab){ | |
| case 'best_videos_tab': | |
| that.data = this.loadedData.filter(function(d) { return d.vlaunch < 5; }); | |
| break; | |
| case 'other_tab': | |
| that.data = this.loadedData.filter(function(d) { return d.vlaunch >= 5; }); | |
| break; | |
| default: | |
| that.data = that.loadedData; | |
| break; | |
| } | |
| that.buildTable(); | |
| }, | |
| buildTable: function(){ | |
| var that = this; | |
| if( ! this.activeTab) | |
| return; | |
| var blockSelection = d3.select('#'+this.activeTab+'_content'); | |
| blockSelection.html(''); | |
| var table = blockSelection.append('table') | |
| .attr('class', 'table table-sm'); | |
| var thead = table.append('thead'); | |
| var tbody = table.append('tbody'); | |
| // append the header row | |
| thead.append('tr') | |
| .selectAll('th') | |
| .data(this.options.tableModule.columns) | |
| .enter() | |
| .append('th') | |
| .text(function (column) { return column.label; }); | |
| // create a row for each object in the data | |
| var rowsSelection = tbody.selectAll('tr') | |
| .data(this.data); | |
| var rowsEnter = rowsSelection | |
| .enter() | |
| .append('tr'); | |
| // create a cell in each row for each column | |
| var cellsSelection = rowsEnter.selectAll('td') | |
| .data(function (row, i) { | |
| return that.options.tableModule.columns.map(function (column) { | |
| var value, type; | |
| switch(column.key){ | |
| case 'date': | |
| type = 'string'; | |
| value = row[column.key].format(column.format); | |
| break; | |
| default: | |
| type = 'string'; | |
| value = row[column.key]; | |
| break; | |
| } | |
| return { | |
| type: type, | |
| value: value | |
| }; | |
| }); | |
| }); | |
| var cellsEnter = cellsSelection | |
| .enter() | |
| .append('td') | |
| .each(function(d){ | |
| var el = d3.select(this); | |
| el.html(d.value); | |
| }); | |
| }, | |
| }; | |
| VIDEO_SCOUTING_APP.start(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "RECORDS": [ | |
| { | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "Zach West", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-13/CollegeofCentralFloridaIntrasquad/2_MarkPotter_ZachWest.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-13/CollegeofCentralFloridaIntrasquadAngle2/2_MarkPotter_ZachWest.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "John Fiorenza", | |
| "result": "Error", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-13/CollegeofCentralFloridaIntrasquad/136_NickGeller_JohnFiorenza.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-13/CollegeofCentralFloridaIntrasquadAngle2/136_NickGeller_JohnFiorenza.mp4", | |
| "vlaunch": "5.902" | |
| }, | |
| { | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "Luis Medina", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-13/CollegeofCentralFloridaIntrasquad/11_MarkPotter_LuisMedina.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-13/CollegeofCentralFloridaIntrasquadAngle2/10_MarkPotter_LuisMedina.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "Francisco Darling", | |
| "result": "Triple", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-13/CollegeofCentralFloridaIntrasquad/139_NickGeller_FranciscoDarling.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-13/CollegeofCentralFloridaIntrasquadAngle2/139_NickGeller_FranciscoDarling.mp4", | |
| "vlaunch": "12.598" | |
| }, | |
| { | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "Chris Tidwell", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-13/CollegeofCentralFloridaIntrasquad/17_MarkPotter_ChrisTidwell.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-13/CollegeofCentralFloridaIntrasquadAngle2/17_MarkPotter_ChrisTidwell.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "Yorvis Torrealba", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-13/CollegeofCentralFloridaIntrasquad/147_NickGeller_YorvisTorrealba.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-13/CollegeofCentralFloridaIntrasquadAngle2/147_NickGeller_YorvisTorrealba.mp4", | |
| "vlaunch": "0.668" | |
| }, | |
| { | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "Chris Tidwell", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-13/CollegeofCentralFloridaIntrasquad/27_MarkPotter_ChrisTidwell.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-13/CollegeofCentralFloridaIntrasquadAngle2/27_MarkPotter_ChrisTidwell.mp4", | |
| "vlaunch": "19.263" | |
| }, | |
| { | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "Matt Moclair", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-13/CollegeofCentralFloridaIntrasquad/153_JordanMorrow_MattMoclair.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-13/CollegeofCentralFloridaIntrasquadAngle2/153_JordanMorrow_MattMoclair.mp4", | |
| "vlaunch": "26.274" | |
| }, | |
| { | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "Tanner May", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-13/CollegeofCentralFloridaIntrasquad/33_BenKoff_TannerMay.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-13/CollegeofCentralFloridaIntrasquadAngle2/33_BenKoff_TannerMay.mp4", | |
| "vlaunch": "23.193" | |
| }, | |
| { | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "David Flores", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-13/CollegeofCentralFloridaIntrasquad/160_JordanMorrow_DavidFlores.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-13/CollegeofCentralFloridaIntrasquadAngle2/160_JordanMorrow_DavidFlores.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "Zach West", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-13/CollegeofCentralFloridaIntrasquad/60_FranklinHernandez_ZachWest.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-13/CollegeofCentralFloridaIntrasquadAngle2/60_FranklinHernandez_ZachWest.mp4", | |
| "vlaunch": "27.510" | |
| }, | |
| { | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "Luis Medina", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-13/CollegeofCentralFloridaIntrasquad/161_JordanMorrow_LuisMedina.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-13/CollegeofCentralFloridaIntrasquadAngle2/161_JordanMorrow_LuisMedina.mp4", | |
| "vlaunch": "39.628" | |
| }, | |
| { | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "David Flores", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-13/CollegeofCentralFloridaIntrasquad/65_FranklinHernandez_DavidFlores.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-13/CollegeofCentralFloridaIntrasquadAngle2/65_FranklinHernandez_DavidFlores.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "Luis Medina", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-13/CollegeofCentralFloridaIntrasquad/70_FranklinHernandez_LuisMedina.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-13/CollegeofCentralFloridaIntrasquadAngle2/70_FranklinHernandez_LuisMedina.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "John Fiorenza", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-13/CollegeofCentralFloridaIntrasquad/80_HunterBowling_JordanMorrow.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-13/CollegeofCentralFloridaIntrasquadAngle2/80_HunterBowling_JordanMorrow.mp4", | |
| "vlaunch": "1.662" | |
| }, | |
| { | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "Jack Hartman", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-13/CollegeofCentralFloridaIntrasquad/84_AustinNickle_JackHartman.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-13/CollegeofCentralFloridaIntrasquadAngle2/84_AustinNickle_JackHartman.mp4", | |
| "vlaunch": "2.164" | |
| }, | |
| { | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "Marcus Judd", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-13/CollegeofCentralFloridaIntrasquad/89_AustinNickle_MarcusJudd.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-13/CollegeofCentralFloridaIntrasquadAngle2/89_AustinNickle_MarcusJudd.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "Zach West", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-13/CollegeofCentralFloridaIntrasquad/94_AustinNickle_BlakeMarabell.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-13/CollegeofCentralFloridaIntrasquadAngle2/94_AustinNickle_ZachWest.mp4", | |
| "vlaunch": "3.077" | |
| }, | |
| { | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "David Flores", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-13/CollegeofCentralFloridaIntrasquad/97_AustinNickle_DavidFlores.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-13/CollegeofCentralFloridaIntrasquadAngle2/97_AustinNickle_DavidFlores.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "Tanner May", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-13/CollegeofCentralFloridaIntrasquad/104_JoshHarper_TannerMay.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-13/CollegeofCentralFloridaIntrasquadAngle2/104_JoshHarper_TannerMay.mp4", | |
| "vlaunch": "-7.586" | |
| }, | |
| { | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "Christian Smallwood", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-13/CollegeofCentralFloridaIntrasquad/111_JoshHarper_ChristianSmallwood.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-13/CollegeofCentralFloridaIntrasquadAngle2/111_JoshHarper_ChristianSmallwood.mp4", | |
| "vlaunch": "-2.291" | |
| }, | |
| { | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "Jordan Morrow", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-13/CollegeofCentralFloridaIntrasquad/132_NickGeller_JordanMorrow.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-13/CollegeofCentralFloridaIntrasquadAngle2/132_NickGeller_JordanMorrow.mp4", | |
| "vlaunch": "30.673" | |
| }, | |
| { | |
| "date": "15/1/2018 21:54:34", | |
| "batter": "Jack Campsmith", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-15/StPeteCollegeIntrasquad/82_GrantBoland_JackCampsmith.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-15/StPeteCollegeIntrasquadAngle2/82_GrantBoland_JackCampsmith.mp4", | |
| "vlaunch": "24.369" | |
| }, | |
| { | |
| "date": "15/1/2018 21:54:34", | |
| "batter": "Sean Murtha", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-15/StPeteCollegeIntrasquad/88_GrantBoland_SeanMurtha.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-15/StPeteCollegeIntrasquadAngle2/88_GrantBoland_SeanMurtha.mp4", | |
| "vlaunch": "37.570" | |
| }, | |
| { | |
| "date": "15/1/2018 21:54:34", | |
| "batter": "Brandon Vogl", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-15/StPeteCollegeIntrasquad/94_GrantBoland_BrandonVogl.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-15/StPeteCollegeIntrasquadAngle2/94_GrantBoland_BrandonVogl.mp4", | |
| "vlaunch": "-14.255" | |
| }, | |
| { | |
| "date": "15/1/2018 21:54:34", | |
| "batter": "Drake Rodriguez", | |
| "result": "Error", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-15/StPeteCollegeIntrasquad/7_KieranCasey_DrakeRodriguez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-15/StPeteCollegeIntrasquadAngle2/7_KieranCasey_DrakeRodriguez.mp4", | |
| "vlaunch": "6.636" | |
| }, | |
| { | |
| "date": "15/1/2018 21:54:34", | |
| "batter": "Dustin Harris", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-15/StPeteCollegeIntrasquad/9_KieranCasey_DustinHarris.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-15/StPeteCollegeIntrasquadAngle2/9_KieranCasey_DustinHarris.mp4", | |
| "vlaunch": "43.150" | |
| }, | |
| { | |
| "date": "15/1/2018 21:54:34", | |
| "batter": "Dennis Filipouski", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-15/StPeteCollegeIntrasquad/23_JaredCenal_DennisFilipouski.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-15/StPeteCollegeIntrasquadAngle2/23_JaredCenal_DennisFilipouski.mp4", | |
| "vlaunch": "35.354" | |
| }, | |
| { | |
| "date": "15/1/2018 21:54:34", | |
| "batter": "Jakob Sessa", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-15/StPeteCollegeIntrasquad/27_JaredCenal_JakobSessa.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-15/StPeteCollegeIntrasquadAngle2/27_JaredCenal_JakobSessa.mp4", | |
| "vlaunch": "31.224" | |
| }, | |
| { | |
| "date": "15/1/2018 21:54:34", | |
| "batter": "Alex Brickman", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-15/StPeteCollegeIntrasquad/30_JaredCenal_AlexBrickman.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-15/StPeteCollegeIntrasquadAngle2/30_JaredCenal_AlexBrickman.mp4", | |
| "vlaunch": "45.770" | |
| }, | |
| { | |
| "date": "15/1/2018 21:54:34", | |
| "batter": "Jack Campsmith", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-15/StPeteCollegeIntrasquad/33_NateStringfield_JackCampsmith.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-15/StPeteCollegeIntrasquadAngle2/33_NateStringfield_JackCampsmith.mp4", | |
| "vlaunch": "38.725" | |
| }, | |
| { | |
| "date": "15/1/2018 21:54:34", | |
| "batter": "Andrew Mills", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-15/StPeteCollegeIntrasquad/49_NateStringfield_AndrewMills.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-15/StPeteCollegeIntrasquadAngle2/49_NateStringfield_AndrewMills.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "15/1/2018 21:54:34", | |
| "batter": "Drake Rodriguez", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-15/StPeteCollegeIntrasquad/52_NateStringfield_DrakeRodriguez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-15/StPeteCollegeIntrasquadAngle2/52_NateStringfield_DrakeRodriguez.mp4", | |
| "vlaunch": "-7.873" | |
| }, | |
| { | |
| "date": "15/1/2018 21:54:34", | |
| "batter": "Dustin Harris", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-15/StPeteCollegeIntrasquad/54_NateStringfield_DustinHarris.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-15/StPeteCollegeIntrasquadAngle2/54_NateStringfield_DustinHarris.mp4", | |
| "vlaunch": "-12.991" | |
| }, | |
| { | |
| "date": "15/1/2018 21:54:34", | |
| "batter": "EJ Churchich", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-15/StPeteCollegeIntrasquad/70_ClaytonSlater_EJChurchich.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-15/StPeteCollegeIntrasquadAngle2/70_ClaytonSlater_EJChurchich.mp4", | |
| "vlaunch": "29.367" | |
| }, | |
| { | |
| "date": "17/1/2018 22:12:14", | |
| "batter": "Jaren Shelby", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-17/StateCollegeofFloridaIntrasquad/99_HunterMcGarry_JarenShelby.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-17/StateCollegeofFloridaIntrasquadAngle2/99_HunterMcGarry_JarenShelby.mp4", | |
| "vlaunch": "6.550" | |
| }, | |
| { | |
| "date": "17/1/2018 22:12:14", | |
| "batter": "Rougie Odor", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-17/StateCollegeofFloridaIntrasquad/100_HunterMcGarry_RougieOdor.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-17/StateCollegeofFloridaIntrasquadAngle2/100_HunterMcGarry_RougieOdor.mp4", | |
| "vlaunch": "-9.761" | |
| }, | |
| { | |
| "date": "17/1/2018 22:12:14", | |
| "batter": "John Pichman", | |
| "result": "Error", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-17/StateCollegeofFloridaIntrasquad/106_HunterMcGarry_JohnPichman.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-17/StateCollegeofFloridaIntrasquadAngle2/106_HunterMcGarry_JohnPichman.mp4", | |
| "vlaunch": "" | |
| }, | |
| { | |
| "date": "17/1/2018 22:12:14", | |
| "batter": "Aaron Greenfield", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-17/StateCollegeofFloridaIntrasquad/3_ZachAttianese_AaronGreenfield.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-17/StateCollegeofFloridaIntrasquadAngle2/3_ZachAttianese_AaronGreenfield.mp4", | |
| "vlaunch": "" | |
| }, | |
| { | |
| "date": "17/1/2018 22:12:14", | |
| "batter": "Adam Imwalle", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-17/StateCollegeofFloridaIntrasquad/114_EricKimsey_AdamImwalle.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-17/StateCollegeofFloridaIntrasquadAngle2/114_EricKimsey_AdamImwalle.mp4", | |
| "vlaunch": "-18.145" | |
| }, | |
| { | |
| "date": "17/1/2018 22:12:14", | |
| "batter": "Brock Bell", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-17/StateCollegeofFloridaIntrasquad/15_ZachAttianese_BrockBell.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-17/StateCollegeofFloridaIntrasquadAngle2/15_ZachAttianese_BrockBell.mp4", | |
| "vlaunch": "21.154" | |
| }, | |
| { | |
| "date": "17/1/2018 22:12:14", | |
| "batter": "Josh Crouch", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-17/StateCollegeofFloridaIntrasquad/124_EricKimsey_JoshCrouch.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-17/StateCollegeofFloridaIntrasquadAngle2/124_EricKimsey_JoshCrouch.mp4", | |
| "vlaunch": "-2.269" | |
| }, | |
| { | |
| "date": "17/1/2018 22:12:14", | |
| "batter": "Connor Bagnieski", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-17/StateCollegeofFloridaIntrasquad/18_ZachAttianese_ConnorBagnieski.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-17/StateCollegeofFloridaIntrasquadAngle2/18_ZachAttianese_ConnorBagnieski.mp4", | |
| "vlaunch": "" | |
| }, | |
| { | |
| "date": "17/1/2018 22:12:14", | |
| "batter": "Rodriguez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-17/StateCollegeofFloridaIntrasquad/130_EricKimsey_Rodriguez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-17/StateCollegeofFloridaIntrasquadAngle2/130_EricKimsey_Rodriguez.mp4", | |
| "vlaunch": "28.185" | |
| }, | |
| { | |
| "date": "17/1/2018 22:12:14", | |
| "batter": "Adam Imwalle", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-17/StateCollegeofFloridaIntrasquad/25_ZachAttianese_AdamImwalle.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-17/StateCollegeofFloridaIntrasquadAngle2/25_ZachAttianese_AdamImwalle.mp4", | |
| "vlaunch": "36.212" | |
| }, | |
| { | |
| "date": "17/1/2018 22:12:14", | |
| "batter": "CJ Alexander", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-17/StateCollegeofFloridaIntrasquad/29_ZachAttianese_CJAlexander.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-17/StateCollegeofFloridaIntrasquadAngle2/29_ZachAttianese_CJAlexander.mp4", | |
| "vlaunch": "20.936" | |
| }, | |
| { | |
| "date": "17/1/2018 22:12:14", | |
| "batter": "Rougie Odor", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-17/StateCollegeofFloridaIntrasquad/42_HunterPerdue_RougieOdor.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-17/StateCollegeofFloridaIntrasquadAngle2/42_HunterPerdue_RougieOdor.mp4", | |
| "vlaunch": "" | |
| }, | |
| { | |
| "date": "17/1/2018 22:12:14", | |
| "batter": "John Pichman", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-17/StateCollegeofFloridaIntrasquad/45_HunterPerdue_JohnPichman.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-17/StateCollegeofFloridaIntrasquadAngle2/45_HunterPerdue_JohnPichman.mp4", | |
| "vlaunch": "" | |
| }, | |
| { | |
| "date": "17/1/2018 22:12:14", | |
| "batter": "Bryce Hulett", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-17/StateCollegeofFloridaIntrasquad/50_HunterPerdue_BryceHulett.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-17/StateCollegeofFloridaIntrasquadAngle2/50_HunterPerdue_BryceHulett.mp4", | |
| "vlaunch": "29.771" | |
| }, | |
| { | |
| "date": "17/1/2018 22:12:14", | |
| "batter": "Aaron Greenfield", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-17/StateCollegeofFloridaIntrasquad/60_ChrisHolcomb_AaronGreenfield.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-17/StateCollegeofFloridaIntrasquadAngle2/60_ChrisHolcomb_AaronGreenfield.mp4", | |
| "vlaunch": "-8.234" | |
| }, | |
| { | |
| "date": "17/1/2018 22:12:14", | |
| "batter": "Brock Bell", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-17/StateCollegeofFloridaIntrasquad/67_ChrisHolcomb_BrockBell.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-17/StateCollegeofFloridaIntrasquadAngle2/67_ChrisHolcomb_BrockBell.mp4", | |
| "vlaunch": "4.026" | |
| }, | |
| { | |
| "date": "17/1/2018 22:12:14", | |
| "batter": "Si Grinstead", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-17/StateCollegeofFloridaIntrasquad/87_HunterMcGarry_SiGrinstead.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-17/StateCollegeofFloridaIntrasquadAngle2/87_HunterMcGarry_SiGrinstead.mp4", | |
| "vlaunch": "8.078" | |
| }, | |
| { | |
| "date": "17/1/2018 22:12:14", | |
| "batter": "Austin James", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-17/StateCollegeofFloridaIntrasquad/91_HunterMcGarry_AustinJames.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-17/StateCollegeofFloridaIntrasquadAngle2/91_HunterMcGarry_AustinJames.mp4", | |
| "vlaunch": "2.993" | |
| }, | |
| { | |
| "date": "17/1/2018 22:12:14", | |
| "batter": "Collin Moore", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-17/StateCollegeofFloridaIntrasquad/93_HunterMcGarry_CollinMoore.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-17/StateCollegeofFloridaIntrasquadAngle2/93_HunterMcGarry_CollinMoore.mp4", | |
| "vlaunch": "" | |
| }, | |
| { | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Austin Huber", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquad/85_ThomasSpinelli_AustinHuber.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquadAngle2/85_ThomasSpinelli_AustinHuber.mp4", | |
| "vlaunch": "14.142" | |
| }, | |
| { | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Ryan Frost", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquad/190_JTHintzen_RyanFrost.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquadAngle2/190_JTHintzen_RyanFrost.mp4", | |
| "vlaunch": "7.578" | |
| }, | |
| { | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Nicky Gibbs", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquad/89_AlexKennell_NickyGibbs.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquadAngle2/89_AlexKennell_NickyGibbs.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Cody Burgess", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquad/210_MichaelPalaez_CodyBurgess.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquadAngle2/210_MichaelPalaez_CodyBurgess.mp4", | |
| "vlaunch": "0.809" | |
| }, | |
| { | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Vaun Brown", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquad/90_LoganBrowning_VaunBrown.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquadAngle2/90_LoganBrowning_VaunBrown.mp4", | |
| "vlaunch": "31.432" | |
| }, | |
| { | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Dylan Costa", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquad/215_MichaelPalaez_DylanCosta.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquadAngle2/215_MichaelPalaez_DylanCosta.mp4", | |
| "vlaunch": "5.494" | |
| }, | |
| { | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Cody Burgess", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquad/93_LoganBrowning_CodyBurgess.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquadAngle2/93_LoganBrowning_CodyBurgess.mp4", | |
| "vlaunch": "12.749" | |
| }, | |
| { | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Austin Mauer", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquad/219_MichaelPalaez_AustinMauer.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquadAngle2/219_MichaelPalaez_AustinMauer.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Dylan Costa", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquad/94_LoganBrowning_DylanCosta.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquadAngle2/94_LoganBrowning_DylanCosta.mp4", | |
| "vlaunch": "-15.608" | |
| }, | |
| { | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Omar Villaman", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquad/222_MichaelPalaez_OmarVillaman.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquadAngle2/222_MichaelPalaez_OmarVillaman.mp4", | |
| "vlaunch": "19.349" | |
| }, | |
| { | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Bigness", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquad/107_AlexKennell_Bigness.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquadAngle2/107_AlexKennell_Bigness.mp4", | |
| "vlaunch": "28.411" | |
| }, | |
| { | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Logan Browning", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquad/231_JTHintzen_LoganBrowning.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquadAngle2/231_JTHintzen_LoganBrowning.mp4", | |
| "vlaunch": "8.379" | |
| }, | |
| { | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Ryan Frost", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquad/115_AlexKennell_RyanFrost.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquadAngle2/115_AlexKennell_RyanFrost.mp4", | |
| "vlaunch": "18.328" | |
| }, | |
| { | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Alex Goebel", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquad/238_JTHintzen_AlexGoebel.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquadAngle2/238_JTHintzen_AlexGoebel.mp4", | |
| "vlaunch": "13.660" | |
| }, | |
| { | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Ricky Gonzalez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquad/7_ThomasSpinelli_RickyGonzalez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquadAngle2/7_ThomasSpinelli_RickyGonzalez.mp4", | |
| "vlaunch": "-33.652" | |
| }, | |
| { | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Ricky Gonzalez", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquad/116_AlexKennell_RickyGonzalez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquadAngle2/116_AlexKennell_RickyGonzalez.mp4", | |
| "vlaunch": "11.652" | |
| }, | |
| { | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Leo Rodriguez", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquad/243_JTHintzen_LeoRodriguez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquadAngle2/243_JTHintzen_LeoRodriguez.mp4", | |
| "vlaunch": "26.443" | |
| }, | |
| { | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Leo Rodriguez", | |
| "result": "Error", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquad/15_ThomasSpinelli_LeoRodriguez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquadAngle2/15_ThomasSpinelli_LeoRodriguez.mp4", | |
| "vlaunch": "6.127" | |
| }, | |
| { | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Ryan Frost", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquad/52_ThomasSpinelli_RyanFrost.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquadAngle2/52_ThomasSpinelli_RyanFrost.mp4", | |
| "vlaunch": "1.221" | |
| }, | |
| { | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Jacob Teter", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquad/132_LeoRodriguez_JacobTeter.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquadAngle2/132_LeoRodriguez_JacobTeter.mp4", | |
| "vlaunch": "-10.265" | |
| }, | |
| { | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Austin Huber", | |
| "result": "Error", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquad/250_JTHintzen_AustinHuber.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquadAngle2/250_JTHintzen_AustinHuber.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Ricky Gonzalez", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquad/55_ThomasSpinelli_RickyGonzalez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquadAngle2/55_ThomasSpinelli_RickyGonzalez.mp4", | |
| "vlaunch": "20.783" | |
| }, | |
| { | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Logan Browning", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquad/137_AlexKennell_LoganBrowning.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquadAngle2/137_AlexKennell_LoganBrowning.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Omar Villaman", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquad/62_LoganBrowning_OmarVillaman.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquadAngle2/62_LoganBrowning_OmarVillaman.mp4", | |
| "vlaunch": "8.218" | |
| }, | |
| { | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Alex Goebel", | |
| "result": "Error", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquad/139_AlexKennell_AlexGoebel.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquadAngle2/139_AlexKennell_AlexGoebel.mp4", | |
| "vlaunch": "-2.893" | |
| }, | |
| { | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Hayden Marze", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquad/65_LoganBrowning_HaydenMarze.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquadAngle2/65_LoganBrowning_HaydenMarze.mp4", | |
| "vlaunch": "39.938" | |
| }, | |
| { | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Tommy Georgevich", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquad/140_AlexKennell_TommyGeorgevich.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquadAngle2/140_AlexKennell_TommyGeorgevich.mp4", | |
| "vlaunch": "13.419" | |
| }, | |
| { | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Jacob Teter", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquad/75_LoganBrowning_JacobTeter.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquadAngle2/75_LoganBrowning_JacobTeter.mp4", | |
| "vlaunch": "-0.113" | |
| }, | |
| { | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Austin Huber", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquad/146_AlexKennell_AustinHuber.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquadAngle2/146_AlexKennell_AustinHuber.mp4", | |
| "vlaunch": "48.771" | |
| }, | |
| { | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Alex Goebel", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquad/78_ThomasSpinelli_AlexGoebel.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquadAngle2/78_ThomasSpinelli_AlexGoebel.mp4", | |
| "vlaunch": "22.540" | |
| }, | |
| { | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Dylan Costa", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquad/166_LeoRodriguez_DylanCosta.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquadAngle2/166_LeoRodriguez_DylanCosta.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Leo Rodriguez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquad/79_ThomasSpinelli_LeoRodriguez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquadAngle2/79_ThomasSpinelli_LeoRodriguez.mp4", | |
| "vlaunch": "-26.891" | |
| }, | |
| { | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Austin Mauer", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquad/169_LeoRodriguez_AustinMauer.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquadAngle2/169_LeoRodriguez_AustinMauer.mp4", | |
| "vlaunch": "14.651" | |
| }, | |
| { | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Tommy Georgevich", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquad/81_ThomasSpinelli_TommyGeorgevich.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquadAngle2/81_ThomasSpinelli_TommyGeorgevich.mp4", | |
| "vlaunch": "-9.645" | |
| }, | |
| { | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Omar Villaman", | |
| "result": "Error", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquad/176_LeoRodriguez_OmarVillaman.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/FloridaSouthernCollegeIntrasquadAngle2/176_LeoRodriguez_OmarVillaman.mp4", | |
| "vlaunch": "26.454" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Michael Stovman", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3/351_NikolasBitner_MichaelStovman.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3Angle2/351_NikolasBitner_MichaelStovman.mp4", | |
| "vlaunch": "-11.170" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Cade Bonnett", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/IndianRiverCollegeIntrasquadsDay2/131_MichaelStovman_CadeBonnett.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/IndianRiverCollegeIntrasquadsDay2Angle2/131_MichaelStovman_CadeBonnett.mp4", | |
| "vlaunch": "23.774" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Michael Stovman", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3/257_JustinAlintoff_MichaelStovman.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3Angle2/257_JustinAlintoff_MichaelStovman.mp4", | |
| "vlaunch": "-2.431" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Paul Benitez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3/353_NikolasBitner_PaulBenitez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3Angle2/353_NikolasBitner_PaulBenitez.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Axel Salgado", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/IndianRiverCollegeIntrasquadsDay2/141_MichaelStovman_AxelSalgado.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/IndianRiverCollegeIntrasquadsDay2Angle2/141_MichaelStovman_AxelSalgado.mp4", | |
| "vlaunch": "38.450" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Joseph Stubbs", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3/261_JustinAlintoff_JosephStubbs.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3Angle2/261_JustinAlintoff_JosephStubbs.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Diego Ramos", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3/359_NikolasBitner_DiegoRamos.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3Angle2/359_NikolasBitner_DiegoRamos.mp4", | |
| "vlaunch": "28.149" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Danny Camilo", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/IndianRiverCollegeIntrasquadsDay2/164_MichaelStovman_DannyCamilo.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/IndianRiverCollegeIntrasquadsDay2Angle2/164_MichaelStovman_DannyCamilo.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Alexander Hrica", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3/266_JustinAlintoff_AlexanderHrica.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3Angle2/266_JustinAlintoff_AlexanderHrica.mp4", | |
| "vlaunch": "7.837" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Danny Camilo", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3/370_TylerLavery_DannyCamilo.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3Angle2/370_TylerLavery_DannyCamilo.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Alexander Hrica", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/IndianRiverCollegeIntrasquadsDay2/167_ChristianO’Kelly_AlexanderHrica.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/IndianRiverCollegeIntrasquadsDay2Angle2/167_ChristianO’Kelly_AlexanderHrica.mp4", | |
| "vlaunch": "30.881" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Hunter Holland", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3/268_JustinAlintoff_HunterHolland.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3Angle2/268_JustinAlintoff_HunterHolland.mp4", | |
| "vlaunch": "45.075" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Alexander Hrica", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3/373_TylerLavery_AlexanderHrica.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3Angle2/373_TylerLavery_AlexanderHrica.mp4", | |
| "vlaunch": "35.987" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Hunter Holland", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/IndianRiverCollegeIntrasquadsDay2/176_ChristianO’Kelly_HunterHolland.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/IndianRiverCollegeIntrasquadsDay2Angle2/176_ChristianO’Kelly_HunterHolland.mp4", | |
| "vlaunch": "27.380" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Alexander Hrica", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3/274_DrewDwyer_AlexanderHrica.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3Angle2/274_DrewDwyer_AlexanderHrica.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Joseph Stubbs", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3/385_JaredMorgan_JosephStubbs.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3Angle2/385_JaredMorgan_JosephStubbs.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Cade Bonnett", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/IndianRiverCollegeIntrasquadsDay2/188_MichaelStovman_CadeBonnett.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/IndianRiverCollegeIntrasquadsDay2Angle2/188_MichaelStovman_CadeBonnett.mp4", | |
| "vlaunch": "-46.225" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Hunter Holland", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3/278_DrewDwyer_HunterHolland.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3Angle2/278_DrewDwyer_HunterHolland.mp4", | |
| "vlaunch": "41.880" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Joseph Stubbs", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3/394_JaredMorgan_JosephStubbs.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3Angle2/394_JaredMorgan_JosephStubbs.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Cade Bonnett", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/IndianRiverCollegeIntrasquadsDay2/189_ZacharyAudet_CadeBonnett.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/IndianRiverCollegeIntrasquadsDay2Angle2/189_ZacharyAudet_CadeBonnett.mp4", | |
| "vlaunch": "43.229" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Paul Benitez", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3/290_DrewDwyer_PaulBenitez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3Angle2/290_DrewDwyer_PaulBenitez.mp4", | |
| "vlaunch": "13.793" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Brett Mercier", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3/303_JustinAlintoff_BrettMercier.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3Angle2/303_JustinAlintoff_BrettMercier.mp4", | |
| "vlaunch": "20.092" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Carter Chancey", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3/402_JaredMorgan_CarterChancey.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3Angle2/402_JaredMorgan_CarterChancey.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Danny Camilo", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/IndianRiverCollegeIntrasquadsDay2/204_TravisPerry_DannyCamilo.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/IndianRiverCollegeIntrasquadsDay2Angle2/204_TravisPerry_DannyCamilo.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Danny Camilo", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3/307_JustinAlintoff_DannyCamilo.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3Angle2/307_JustinAlintoff_DannyCamilo.mp4", | |
| "vlaunch": "23.345" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Alexander Hrica", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3/407_JaredMorgan_AlexanderHrica.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3Angle2/407_JaredMorgan_AlexanderHrica.mp4", | |
| "vlaunch": "7.990" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Alexander Hrica", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/IndianRiverCollegeIntrasquadsDay2/205_TravisPerry_AlexanderHrica.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/IndianRiverCollegeIntrasquadsDay2Angle2/205_TravisPerry_AlexanderHrica.mp4", | |
| "vlaunch": "-2.594" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Paul Benitez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3/312_JustinAlintoff_PaulBenitez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3Angle2/312_JustinAlintoff_PaulBenitez.mp4", | |
| "vlaunch": "30.937" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Hunter Holland", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3/411_JaredMorgan_HunterHolland.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3Angle2/411_JaredMorgan_HunterHolland.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Cade Bonnett", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/IndianRiverCollegeIntrasquadsDay2/82_MichaelStovman_CadeBonnett.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/IndianRiverCollegeIntrasquadsDay2Angle2/82_MichaelStovman_CadeBonnett.mp4", | |
| "vlaunch": "20.598" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Diego Ramos", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/IndianRiverCollegeIntrasquadsDay2/217_ZacharyAudet_DiegoRamos.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/IndianRiverCollegeIntrasquadsDay2Angle2/217_ZacharyAudet_DiegoRamos.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Joseph Stubbs", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3/318_NikolasBitner_JosephStubbs.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3Angle2/318_NikolasBitner_JosephStubbs.mp4", | |
| "vlaunch": "-3.157" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Michael Stovman", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3/423_JaredMorgan_MichaelStovman.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3Angle2/423_JaredMorgan_MichaelStovman.mp4", | |
| "vlaunch": "18.952" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Axel Salgado", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/IndianRiverCollegeIntrasquadsDay2/83_MichaelStovman_AxelSalgado.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/IndianRiverCollegeIntrasquadsDay2Angle2/83_MichaelStovman_AxelSalgado.mp4", | |
| "vlaunch": "6.606" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Michael Stovman", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/IndianRiverCollegeIntrasquadsDay2/221_ZacharyAudet_MichaelStovman.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/IndianRiverCollegeIntrasquadsDay2Angle2/221_ZacharyAudet_MichaelStovman.mp4", | |
| "vlaunch": "9.734" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Hunter Holland", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3/325_TylerLavery_HunterHolland.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3Angle2/325_TylerLavery_HunterHolland.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Cade Bonnett", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/IndianRiverCollegeIntrasquadsDay2/91_TylerSuellentrop_CadeBonnett.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/IndianRiverCollegeIntrasquadsDay2Angle2/91_TylerSuellentrop_CadeBonnett.mp4", | |
| "vlaunch": "-26.983" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Paul Benitez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/IndianRiverCollegeIntrasquadsDay2/223_ZacharyAudet_PaulBenitez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/IndianRiverCollegeIntrasquadsDay2Angle2/223_ZacharyAudet_PaulBenitez.mp4", | |
| "vlaunch": "31.837" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Carter Chancey", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3/328_TylerLavery_CarterChancey.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3Angle2/328_TylerLavery_CarterChancey.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Axel Salgado", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/IndianRiverCollegeIntrasquadsDay2/100_TylerSuellentrop_AxelSalgado.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/IndianRiverCollegeIntrasquadsDay2Angle2/100_TylerSuellentrop_AxelSalgado.mp4", | |
| "vlaunch": "25.335" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Carter Chancey", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/IndianRiverCollegeIntrasquadsDay2/229_ZacharyAudet_CarterChancey.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/IndianRiverCollegeIntrasquadsDay2Angle2/229_ZacharyAudet_CarterChancey.mp4", | |
| "vlaunch": "25.730" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Alexander Hrica", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3/338_TylerLavery_AlexanderHrica.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3Angle2/338_TylerLavery_AlexanderHrica.mp4", | |
| "vlaunch": "28.612" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Joseph Stubbs", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/IndianRiverCollegeIntrasquadsDay2/107_MichaelStovman_JosephStubbs.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/IndianRiverCollegeIntrasquadsDay2Angle2/107_MichaelStovman_JosephStubbs.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Joseph Stubbs", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3/236_DrewDwyer_JosephStubbs.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3Angle2/236_DrewDwyer_JosephStubbs.mp4", | |
| "vlaunch": "6.053" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Joseph Stubbs", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3/344_TylerLavery_JosephStubbs.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3Angle2/344_TylerLavery_JosephStubbs.mp4", | |
| "vlaunch": "27.886" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Hunter Holland", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/IndianRiverCollegeIntrasquadsDay2/112_TylerSuellentrop_HunterHolland.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/IndianRiverCollegeIntrasquadsDay2Angle2/112_TylerSuellentrop_HunterHolland.mp4", | |
| "vlaunch": "30.683" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Cade Bonnett", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3/239_DrewDwyer_CadeBonnett.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3Angle2/239_DrewDwyer_CadeBonnett.mp4", | |
| "vlaunch": "25.837" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Hunter Holland", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3/347_NikolasBitner_HunterHolland.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3Angle2/347_NikolasBitner_HunterHolland.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Carter Chancey", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-19/IndianRiverCollegeIntrasquadsDay2/125_TylerSuellentrop_CarterChancey.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-19/IndianRiverCollegeIntrasquadsDay2Angle2/125_TylerSuellentrop_CarterChancey.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Hunter Holland", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3/251_JustinAlintoff_HunterHolland.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-20/IndianRiverCollegeIntrasquadsDay3Angle2/251_JustinAlintoff_HunterHolland.mp4", | |
| "vlaunch": "32.689" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Brett Harris", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollege/972_MattyMitchell_BrettHarris.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollegeAngle2/972_MattyMitchell_BrettHarris.mp4", | |
| "vlaunch": "56.097" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Collin Wilson", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollege/618_FabianMuniz_CollinWilson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollegeAngle2/618_FabianMuniz_CollinWilson.mp4", | |
| "vlaunch": "12.938" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Hunter Huegly", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavsArizonaWesternCollege/530_AntoineVillard_HunterHuegly.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavsArizonaWesternCollegeAngle2/530_AntoineVillard_HunterHuegly.mp4", | |
| "vlaunch": "88.726" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Roger Riley", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/337_CadeAcrey_RogerRiley.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/337_CadeAcrey_RogerRiley.mp4", | |
| "vlaunch": "26.647" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jacob Jacome", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/44_AlecMyers_JacobJacome.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/44_AlecMyers_JacobJacome.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "AJ Amelburu", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollege/1135_JordanSuarez_AJAmelburu.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollegeAngle2/1135_JordanSuarez_AJAmelburu.mp4", | |
| "vlaunch": "18.387" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Roberto Cabrera", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollege/107_ChaseStratton_RobertoCabrera.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollegeAngle2/107_ChaseStratton_RobertoCabrera.mp4", | |
| "vlaunch": "0.964" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jordan Macias", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/28_CarlosOrtiz_JordanMacias.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/28_CarlosOrtiz_JordanMacias.mp4", | |
| "vlaunch": "-20.414" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Brock Tsukamoto", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/167_ChazDeLuca_BrockTsukamoto.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/167_ChazDeLuca_BrockTsukamoto.mp4", | |
| "vlaunch": "10.465" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Carlos Arelleno", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollege/357_JarodLessar_CarlosArelleno.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollegeAngle2/357_JarodLessar_CarlosArelleno.mp4", | |
| "vlaunch": "4.061" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Collin Wilson", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollege/260_RJMartinez_CollinWilson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollegeAngle2/260_RJMartinez_CollinWilson.mp4", | |
| "vlaunch": "6.074" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jordan Macias", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/142_CarlosOrtiz_JordanMacias.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/142_CarlosOrtiz_JordanMacias.mp4", | |
| "vlaunch": "15.587" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Soterio Ramirez", | |
| "result": "Triple", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCC/762_BrandonBracy_SoterioRamirez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCCAngle2/762_BrandonBracy_SoterioRamirez.mp4", | |
| "vlaunch": "10.039" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Josh Glenn", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/254_LoganHooley_JoshGlenn.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/254_LoganHooley_JoshGlenn.mp4", | |
| "vlaunch": "-13.606" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Manny Perez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollege/458_JarodLessar_MannyPerez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollegeAngle2/458_JarodLessar_MannyPerez.mp4", | |
| "vlaunch": "-8.103" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Yodelvy Merendez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollege/420_MattGilbertson_YodelvyMerendez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollegeAngle2/420_MattGilbertson_YodelvyMerendez.mp4", | |
| "vlaunch": "63.281" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Wyatt Featherston", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/245_CadeAcrey_WyattFeatherston.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/245_CadeAcrey_WyattFeatherston.mp4", | |
| "vlaunch": "-7.137" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Morgan McIntosh", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/11_AlecMyers_MorganMcIntosh.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/11_AlecMyers_MorganMcIntosh.mp4", | |
| "vlaunch": "16.872" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Alix Garcia", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollege/993_MattyMitchell_AlixGarcia.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollegeAngle2/993_MattyMitchell_AlixGarcia.mp4", | |
| "vlaunch": "-39.879" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Ryan Curtis", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollege/621_FabianMuniz_RyanCurtis.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollegeAngle2/621_FabianMuniz_RyanCurtis.mp4", | |
| "vlaunch": "23.952" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jay Desoto", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavsArizonaWesternCollege/536_AntoineVillard_JayDesoto.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavsArizonaWesternCollegeAngle2/536_AntoineVillard_JayDesoto.mp4", | |
| "vlaunch": "81.815" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Morgan McIntosh", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/52_AlecMyers_MorganMcIntosh.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/52_AlecMyers_MorganMcIntosh.mp4", | |
| "vlaunch": "34.778" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jordan Macias", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollege/1143_JordanSuarez_JordanMacias.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollegeAngle2/1143_JordanSuarez_JordanMacias.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jarrett Hunt", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollege/118_DominicHamel_JarrettHunt.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollegeAngle2/118_DominicHamel_JarrettHunt.mp4", | |
| "vlaunch": "-29.097" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Justin Lutes", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/31_CarlosOrtiz_JustinLutes.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/31_CarlosOrtiz_JustinLutes.mp4", | |
| "vlaunch": "-2.327" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Izzy Carrillo", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/172_BrianCantu_IzzyCarrillo.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/172_BrianCantu_IzzyCarrillo.mp4", | |
| "vlaunch": "0.776" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Steven Ortiz", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollege/358_RamonMiranda_StevenOrtiz.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollegeAngle2/358_RamonMiranda_StevenOrtiz.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Hunter Porritt", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollege/284_KevinStevens_HunterPorritt.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollegeAngle2/284_KevinStevens_HunterPorritt.mp4", | |
| "vlaunch": "17.865" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Justin Lutes", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/144_CarlosOrtiz_JustinLutes.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/144_CarlosOrtiz_JustinLutes.mp4", | |
| "vlaunch": "-0.716" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jake Dickerson", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCC/770_BrandonBracy_JakeDickerson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCCAngle2/770_BrandonBracy_JakeDickerson.mp4", | |
| "vlaunch": "8.598" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Derek Hayenga", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/257_LoganHooley_DerekHayenga.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/257_LoganHooley_DerekHayenga.mp4", | |
| "vlaunch": "18.848" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Collin Wilson", | |
| "result": "Error", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollege/460_RamonMiranda_CollinWilson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollegeAngle2/460_RamonMiranda_CollinWilson.mp4", | |
| "vlaunch": "29.730" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jordan Macias", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollege/422_IrvingMartin_JordanMacias.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollegeAngle2/422_IrvingMartin_JordanMacias.mp4", | |
| "vlaunch": "92.863" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Beau Capanna", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/251_CadeAcrey_BeauCapanna.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/251_CadeAcrey_BeauCapanna.mp4", | |
| "vlaunch": "31.745" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Josh Glenn", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/14_AlecMyers_JoshGlenn.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/14_AlecMyers_JoshGlenn.mp4", | |
| "vlaunch": "24.761" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Emny Ordonez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollege/996_MattyMitchell_EmnyOrdonez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollegeAngle2/996_MattyMitchell_EmnyOrdonez.mp4", | |
| "vlaunch": "51.652" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jarrett Hunt", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollege/632_RobertGonzalez_JarrettHunt.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollegeAngle2/632_RobertGonzalez_JarrettHunt.mp4", | |
| "vlaunch": "1.477" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Trevor Jackson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavsArizonaWesternCollege/541_AntoineVillard_TrevorJackson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavsArizonaWesternCollegeAngle2/541_AntoineVillard_TrevorJackson.mp4", | |
| "vlaunch": "91.334" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Dane Perry", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/56_JoshSieglitz_DanePerry.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/56_JoshSieglitz_DanePerry.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Brett Harris", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollege/1145_JDBrooks_BrettHarris.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollegeAngle2/1145_JDBrooks_BrettHarris.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Steven Ortiz", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollege/122_DominicHamel_StevenOrtiz.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollegeAngle2/122_DominicHamel_StevenOrtiz.mp4", | |
| "vlaunch": "34.322" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Andrew Caliendo", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/46_IsaiahBlaylock_AndrewCaliendo.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/46_IsaiahBlaylock_AndrewCaliendo.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Morgan McIntosh", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/175_BrianCantu_MorganMcIntosh.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/175_BrianCantu_MorganMcIntosh.mp4", | |
| "vlaunch": "18.460" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Collin Wilson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollege/376_RamonMiranda_CollinWilson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollegeAngle2/376_RamonMiranda_CollinWilson.mp4", | |
| "vlaunch": "21.321" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Cody Holtz", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollege/316_LionelColon_CodyHoltz.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollegeAngle2/316_LionelColon_CodyHoltz.mp4", | |
| "vlaunch": "35.084" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Soterio Ramirez", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/158_BuddyPindel_SoterioRamirez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/158_BuddyPindel_SoterioRamirez.mp4", | |
| "vlaunch": "-9.348" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Ty Stephenson", | |
| "result": "Error", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCC/771_BrandonBracy_TyStephenson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCCAngle2/771_BrandonBracy_TyStephenson.mp4", | |
| "vlaunch": "11.119" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jake Hammons", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/260_LoganHooley_JakeHammons.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/260_LoganHooley_JakeHammons.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Ryan Curtis", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollege/463_RamonMiranda_RyanCurtis.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollegeAngle2/463_RamonMiranda_RyanCurtis.mp4", | |
| "vlaunch": "16.340" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Justin Lutes", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollege/425_IrvingMartin_JustinLutes.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollegeAngle2/425_IrvingMartin_JustinLutes.mp4", | |
| "vlaunch": "67.887" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Andrew Caliendo", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/258_JordonWyke_AndrewCaliendo.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/258_JordonWyke_AndrewCaliendo.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Derek Hayenga", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/18_AlecMyers_DerekHayenga.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/18_AlecMyers_DerekHayenga.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Peyton Koopman", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollege/1026_NickTrogerlick-Iverson_PeytonKoopman.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollegeAngle2/1026_NickTrogerlick-Iverson_PeytonKoopman.mp4", | |
| "vlaunch": "19.608" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Yodelvy Merendez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollege/651_ColeFossat_YodelvyMerendez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollegeAngle2/651_ColeFossat_YodelvyMerendez.mp4", | |
| "vlaunch": "38.369" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jordan Macias", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavsArizonaWesternCollege/548_AntoineVillard_JordanMacias.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavsArizonaWesternCollegeAngle2/548_AntoineVillard_JordanMacias.mp4", | |
| "vlaunch": "85.637" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Brock Tsukamoto", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/61_JoshSieglitz_BrockTsukamoto.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/61_JoshSieglitz_BrockTsukamoto.mp4", | |
| "vlaunch": "29.655" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Alix Garcia", | |
| "result": "Triple", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollege/1153_JDBrooks_AlixGarcia.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollegeAngle2/1153_JDBrooks_AlixGarcia.mp4", | |
| "vlaunch": "34.698" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Connor Udy", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollege/129_RJMartinez_ConnorUdy.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollegeAngle2/129_RJMartinez_ConnorUdy.mp4", | |
| "vlaunch": "-7.949" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Rody Barker", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/59_IsaiahBlaylock_RodyBarker.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/59_IsaiahBlaylock_RodyBarker.mp4", | |
| "vlaunch": "8.615" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Derek Hayenga", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/183_BrianCantu_DerekHayenga.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/183_BrianCantu_DerekHayenga.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Robbie Wilkes", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollege/383_JarodLessar_RobbieWilkes.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollegeAngle2/383_JarodLessar_RobbieWilkes.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Sean Roby", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollege/337_NickRupp_SeanRoby.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollegeAngle2/337_NickRupp_SeanRoby.mp4", | |
| "vlaunch": "65.912" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Avery Tuck", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/160_BuddyPindel_AveryTuck.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/160_BuddyPindel_AveryTuck.mp4", | |
| "vlaunch": "4.161" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jacob Cubillos", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCC/775_BrandonBracy_JacobCubillos.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCCAngle2/775_BrandonBracy_JacobCubillos.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Matthew Wilde", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/261_GarrettRedaja_MatthewWilde.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/261_GarrettRedaja_MatthewWilde.mp4", | |
| "vlaunch": "23.609" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Chanlar Barkdull", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollege/464_RamonMiranda_ChanlarBarkdull.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollegeAngle2/464_RamonMiranda_ChanlarBarkdull.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Matt Wong", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollege/426_IrvingMartin_MattWong.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollegeAngle2/426_IrvingMartin_MattWong.mp4", | |
| "vlaunch": "59.241" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jake Dickerson", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/270_AlexTisminezki_JakeDickerson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/270_AlexTisminezki_JakeDickerson.mp4", | |
| "vlaunch": "-5.826" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jake Hammons", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/21_AlecMyers_JakeHammons.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/21_AlecMyers_JakeHammons.mp4", | |
| "vlaunch": "-7.338" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Devin Ray", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollege/1027_MattyMitchell_DevinRay.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollegeAngle2/1027_MattyMitchell_DevinRay.mp4", | |
| "vlaunch": "8.204" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Zach Huffins", | |
| "result": "Error", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollege/662_ColeFossat_ZachHuffins.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollegeAngle2/662_ColeFossat_ZachHuffins.mp4", | |
| "vlaunch": "3.524" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Matt Wong", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavsArizonaWesternCollege/558_RobertGonzalez_MattWong.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavsArizonaWesternCollegeAngle2/558_RobertGonzalez_MattWong.mp4", | |
| "vlaunch": "84.343" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Derek Hayenga", | |
| "result": "Triple", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/70_AlecMyers_DerekHayenga.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/70_AlecMyers_DerekHayenga.mp4", | |
| "vlaunch": "25.055" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Emny Ordonez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollege/1154_JDBrooks_EmnyOrdonez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollegeAngle2/1154_JDBrooks_EmnyOrdonez.mp4", | |
| "vlaunch": "5.081" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Gianni Tomasi", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollege/152_ZachFitch_GianniTomasi.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollegeAngle2/152_ZachFitch_GianniTomasi.mp4", | |
| "vlaunch": "33.611" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Beau Capanna", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/70_CarlosOrtiz_BeauCapanna.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/70_CarlosOrtiz_BeauCapanna.mp4", | |
| "vlaunch": "4.084" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jake Hammons", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/189_BrianCantu_JakeHammons.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/189_BrianCantu_JakeHammons.mp4", | |
| "vlaunch": "19.376" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Sean Roby", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollege/385_JarodLessar_SeanRoby.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollegeAngle2/385_JarodLessar_SeanRoby.mp4", | |
| "vlaunch": "-3.279" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Spencer Packard", | |
| "result": "Error", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollege/342_NickRupp_SpencerPackard.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollegeAngle2/342_NickRupp_SpencerPackard.mp4", | |
| "vlaunch": "48.275" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Rody Barker", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/193_BuddyPindel_RodyBarker.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/193_BuddyPindel_RodyBarker.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Derek Hayenga", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCC/782_ChrisJefferson_DerekHayenga.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCCAngle2/782_ChrisJefferson_DerekHayenga.mp4", | |
| "vlaunch": "13.457" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Eric Jordan", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/268_GarrettRedaja_EricJordan.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/268_GarrettRedaja_EricJordan.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Cole Fossat", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollege/470_RamonMiranda_ColeFossat.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollegeAngle2/470_RamonMiranda_ColeFossat.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Zach Huffins", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollege/435_MattGilbertson_ZachHuffins.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollegeAngle2/435_MattGilbertson_ZachHuffins.mp4", | |
| "vlaunch": "61.085" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Ryan Rijo", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/275_AlexTisminezki_RyanRijo.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/275_AlexTisminezki_RyanRijo.mp4", | |
| "vlaunch": "-6.154" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Cole Norris", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/29_AlecMyers_ColeNorris.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/29_AlecMyers_ColeNorris.mp4", | |
| "vlaunch": "21.513" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Zach Peterson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/31_JoshSieglitz_ZachPeterson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/31_JoshSieglitz_ZachPeterson.mp4", | |
| "vlaunch": "-9.435" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Chris Diehl", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollege/1038_MattyMitchell_ChrisDiehl.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollegeAngle2/1038_MattyMitchell_ChrisDiehl.mp4", | |
| "vlaunch": "11.756" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Tommy Sacco", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollege/10_ChaseStratton_TommySacco.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollegeAngle2/10_ChaseStratton_TommySacco.mp4", | |
| "vlaunch": "47.801" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Nick Hernandez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavsArizonaWesternCollege/565_ZachHansen_NickHernandez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavsArizonaWesternCollegeAngle2/565_ZachHansen_NickHernandez.mp4", | |
| "vlaunch": "76.624" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jake Hammons", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/74_AlecMyers_JakeHammons.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/74_AlecMyers_JakeHammons.mp4", | |
| "vlaunch": "15.575" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Beau Capanna", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollege/1155_JordanSuarez_BeauCapanna.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollegeAngle2/1155_JordanSuarez_BeauCapanna.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Trevor Edior", | |
| "result": "Error", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollege/164_CarlosMedina_TrevorEdior.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollegeAngle2/164_CarlosMedina_TrevorEdior.mp4", | |
| "vlaunch": "35.918" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Michael Camburn", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/72_CarlosOrtiz_MichaelCamburn.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/72_CarlosOrtiz_MichaelCamburn.mp4", | |
| "vlaunch": "13.499" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Matthew Wilde", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/191_ChazDeLuca_MatthewWilde.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/191_ChazDeLuca_MatthewWilde.mp4", | |
| "vlaunch": "11.594" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Manny Perez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollege/394_JarodLessar_MannyPerez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollegeAngle2/394_JarodLessar_MannyPerez.mp4", | |
| "vlaunch": "0.822" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Manny Perez", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollege/346_NickRupp_MannyPerez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollegeAngle2/346_NickRupp_MannyPerez.mp4", | |
| "vlaunch": "97.593" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jake Dickerson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/196_BuddyPindel_JakeDickerson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/196_BuddyPindel_JakeDickerson.mp4", | |
| "vlaunch": "30.813" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Joey Martinez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCC/797_TristanStivors_JoeyMartinez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCCAngle2/797_TristanStivors_JoeyMartinez.mp4", | |
| "vlaunch": "-29.986" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Ty Lewis", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/270_GarrettRedaja_TyLewis.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/270_GarrettRedaja_TyLewis.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jarrett Hunt", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollege/477_RamonMiranda_JarrettHunt.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollegeAngle2/477_RamonMiranda_JarrettHunt.mp4", | |
| "vlaunch": "-3.994" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Ramon Miranda", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollege/447_MattGilbertson_RamonMiranda.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollegeAngle2/447_MattGilbertson_RamonMiranda.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "AJ Amelburu", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/288_CadeAcrey_AJAmelburu.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/288_CadeAcrey_AJAmelburu.mp4", | |
| "vlaunch": "44.125" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Cole Ensing", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/34_JoshSieglitz_ColeEnsing.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/34_JoshSieglitz_ColeEnsing.mp4", | |
| "vlaunch": "-9.212" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Reagan Teegarden", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollege/1040_MattyMitchell_ReaganTeegarden.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollegeAngle2/1040_MattyMitchell_ReaganTeegarden.mp4", | |
| "vlaunch": "4.220" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Alex Isola", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollege/11_ChaseStratton_AlexIsola.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollegeAngle2/11_ChaseStratton_AlexIsola.mp4", | |
| "vlaunch": "23.305" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Yodelvy Merendez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavsArizonaWesternCollege/582_AlexTisminezki_YodelvyMerendez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavsArizonaWesternCollegeAngle2/582_AlexTisminezki_YodelvyMerendez.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Cole Norris", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/75_AlecMyers_ColeNorris.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/75_AlecMyers_ColeNorris.mp4", | |
| "vlaunch": "9.597" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Hunter Huegly", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollege/1187_MattDalke_HunterHuegly.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollegeAngle2/1187_MattDalke_HunterHuegly.mp4", | |
| "vlaunch": "15.007" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Roberto Cabrera", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollege/168_CarlosMedina_RobertoCabrera.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollegeAngle2/168_CarlosMedina_RobertoCabrera.mp4", | |
| "vlaunch": "7.180" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Ryan Rijo", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/80_IsaiahBlaylock_RyanRijo.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/80_IsaiahBlaylock_RyanRijo.mp4", | |
| "vlaunch": "20.234" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Sam Schroeder", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCC/680_ChrisJefferson_SamSchroeder.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCCAngle2/680_ChrisJefferson_SamSchroeder.mp4", | |
| "vlaunch": "-35.654" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Eric Jordan", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/192_ChazDeLuca_EricJordan.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/192_ChazDeLuca_EricJordan.mp4", | |
| "vlaunch": "16.023" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jarrett Hunt", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollege/409_RamonMiranda_JarrettHunt.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollegeAngle2/409_RamonMiranda_JarrettHunt.mp4", | |
| "vlaunch": "42.122" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Yodelvy Merendez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollege/357_NickRupp_YodelvyMerendez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollegeAngle2/357_NickRupp_YodelvyMerendez.mp4", | |
| "vlaunch": "58.464" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Beau Capanna", | |
| "result": "Error", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/202_CadeAcrey_BeauCapanna.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/202_CadeAcrey_BeauCapanna.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Izzy Carrillo", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCC/807_TristanStivors_IzzyCarrillo.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCCAngle2/807_TristanStivors_IzzyCarrillo.mp4", | |
| "vlaunch": "0.097" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Casey Kostrzewa", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/274_GarrettRedaja_CaseyKostrzewa.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/274_GarrettRedaja_CaseyKostrzewa.mp4", | |
| "vlaunch": "9.210" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Steven Ortiz", | |
| "result": "Error", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollege/480_RamonMiranda_StevenOrtiz.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollegeAngle2/480_RamonMiranda_StevenOrtiz.mp4", | |
| "vlaunch": "20.271" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jay Desoto", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollege/460_IrvingMartin_JayDesoto.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollegeAngle2/460_IrvingMartin_JayDesoto.mp4", | |
| "vlaunch": "57.662" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "AJ Amelburu", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/289_CadeAcrey_AJAmelburu.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/289_CadeAcrey_AJAmelburu.mp4", | |
| "vlaunch": "-11.518" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Brock Tsukamoto", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/40_JoshSieglitz_BrockTsukamoto.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/40_JoshSieglitz_BrockTsukamoto.mp4", | |
| "vlaunch": "9.076" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Brennan Reback", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollege/1044_MattyMitchell_BrennanReback.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollegeAngle2/1044_MattyMitchell_BrennanReback.mp4", | |
| "vlaunch": "38.102" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Chanlar Barkdull", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollege/16_DominicHamel_ChanlarBarkdull.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollegeAngle2/16_DominicHamel_ChanlarBarkdull.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Hunter Huegly", | |
| "result": "Error", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavsArizonaWesternCollege/585_ZachHansen_HunterHuegly.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavsArizonaWesternCollegeAngle2/585_ZachHansen_HunterHuegly.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Tyler Keith", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/88_JoshSieglitz_TylerKeith.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/88_JoshSieglitz_TylerKeith.mp4", | |
| "vlaunch": "28.430" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Nick Hernandez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollege/1192_MattDalke_NickHernandez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollegeAngle2/1192_MattDalke_NickHernandez.mp4", | |
| "vlaunch": "7.309" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Chanlar Barkdull", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollege/191_RJMartinez_ChanlarBarkdull.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollegeAngle2/191_RJMartinez_ChanlarBarkdull.mp4", | |
| "vlaunch": "3.164" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Soterio Ramirez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/82_IsaiahBlaylock_SoterioRamirez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/82_IsaiahBlaylock_SoterioRamirez.mp4", | |
| "vlaunch": "14.643" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Daniel Hernandez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCC/689_BrandonBracy_DanielHernandez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCCAngle2/689_BrandonBracy_DanielHernandez.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Ty Lewis", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/197_ChazDeLuca_TyLewis.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/197_ChazDeLuca_TyLewis.mp4", | |
| "vlaunch": "19.127" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Yodelvy Merendez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollege/415_JarodLessar_YodelvyMerendez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollegeAngle2/415_JarodLessar_YodelvyMerendez.mp4", | |
| "vlaunch": "19.174" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jordan Macias", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollege/359_IrvingMartin_JordanMacias.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollegeAngle2/359_IrvingMartin_JordanMacias.mp4", | |
| "vlaunch": "88.503" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Michael Camburn", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/203_CadeAcrey_MichaelCamburn.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/203_CadeAcrey_MichaelCamburn.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Joab Gonzalez", | |
| "result": "Error", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCC/808_BrandonBracy_JoabGonzalez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCCAngle2/808_BrandonBracy_JoabGonzalez.mp4", | |
| "vlaunch": "11.157" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Josh Hill", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/286_LoganHooley_JoshHill.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/286_LoganHooley_JoshHill.mp4", | |
| "vlaunch": "-9.663" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Manny Perez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollege/525_JakeSmith_MannyPerez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollegeAngle2/525_JakeSmith_MannyPerez.mp4", | |
| "vlaunch": "26.854" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Sean Roby", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollege/463_MattGilbertson_SeanRoby.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollegeAngle2/463_MattGilbertson_SeanRoby.mp4", | |
| "vlaunch": "69.651" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Avery Tuck", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/291_TannerLewis_AveryTuck.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/291_TannerLewis_AveryTuck.mp4", | |
| "vlaunch": "20.326" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Josh Hill", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/43_AlecMyers_JoshHill.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/43_AlecMyers_JoshHill.mp4", | |
| "vlaunch": "17.849" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "AJ Amelburu", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollege/1053_JordanSuarez_AJAmelburu.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollegeAngle2/1053_JordanSuarez_AJAmelburu.mp4", | |
| "vlaunch": "-5.091" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Luke Haney", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollege/47_DominicHamel_LukeHaney.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollegeAngle2/47_DominicHamel_LukeHaney.mp4", | |
| "vlaunch": "-45.678" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Roger Riley", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavsArizonaWesternCollege/592_ZachHansen_RogerRiley.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavsArizonaWesternCollegeAngle2/592_ZachHansen_RogerRiley.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jake Desiderio", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/96_AlecMyers_JakeDesiderio.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/96_AlecMyers_JakeDesiderio.mp4", | |
| "vlaunch": "11.810" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Robbie Wilkes", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollege/313_JarodLessar_RobbieWilkes.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollegeAngle2/313_JarodLessar_RobbieWilkes.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Carlos Viera", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollege/197_CarlosMedina_CarlosViera.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollegeAngle2/197_CarlosMedina_CarlosViera.mp4", | |
| "vlaunch": "53.098" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Avery Tuck", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/84_IsaiahBlaylock_AveryTuck.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/84_IsaiahBlaylock_AveryTuck.mp4", | |
| "vlaunch": "17.186" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Ryan Rijo", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCC/691_BrandonBracy_RyanRijo.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCCAngle2/691_BrandonBracy_RyanRijo.mp4", | |
| "vlaunch": "27.486" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Chris Opolka", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/204_ChazDeLuca_ChrisOpolka.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/204_ChazDeLuca_ChrisOpolka.mp4", | |
| "vlaunch": "35.628" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Justin Greene", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollege/417_JarodLessar_JustinGreene.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollegeAngle2/417_JarodLessar_JustinGreene.mp4", | |
| "vlaunch": "41.344" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Justin Lutes", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollege/363_IrvingMartin_JustinLutes.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollegeAngle2/363_IrvingMartin_JustinLutes.mp4", | |
| "vlaunch": "58.496" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "AJ Amelburu", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/207_CadeAcrey_AJAmelburu.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/207_CadeAcrey_AJAmelburu.mp4", | |
| "vlaunch": "-4.770" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Rody Barker", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCC/810_BrandonBracy_RodyBarker.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCCAngle2/810_BrandonBracy_RodyBarker.mp4", | |
| "vlaunch": "3.369" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "J.T. Coleman", | |
| "result": "Error", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/294_JordanSchiefer_J.T.Coleman.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/294_JordanSchiefer_J.T.Coleman.mp4", | |
| "vlaunch": "28.727" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Collin Wilson", | |
| "result": "Error", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollege/543_FabianMuniz_CollinWilson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollegeAngle2/543_FabianMuniz_CollinWilson.mp4", | |
| "vlaunch": "0.860" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Spencer Packard", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollege/467_MattGilbertson_SpencerPackard.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollegeAngle2/467_MattGilbertson_SpencerPackard.mp4", | |
| "vlaunch": "95.365" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Casey Ryan", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/300_TannerLewis_CaseyRyan.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/300_TannerLewis_CaseyRyan.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jordan Macias", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollege/1057_JordanSuarez_JordanMacias.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollegeAngle2/1057_JordanSuarez_JordanMacias.mp4", | |
| "vlaunch": "20.885" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Gianni Tomasi", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollege/49_ChaseStratton_GianniTomasi.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollegeAngle2/49_ChaseStratton_GianniTomasi.mp4", | |
| "vlaunch": "27.972" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jordan Macias", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavsArizonaWesternCollege/599_BraxtonAnderson_JordanMacias.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavsArizonaWesternCollegeAngle2/599_BraxtonAnderson_JordanMacias.mp4", | |
| "vlaunch": "84.893" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Cole Ensing", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/112_JoshSieglitz_ColeEnsing.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/112_JoshSieglitz_ColeEnsing.mp4", | |
| "vlaunch": "-4.671" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Sean Roby", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollege/317_JarodLessar_SeanRoby.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollegeAngle2/317_JarodLessar_SeanRoby.mp4", | |
| "vlaunch": "7.729" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Matt Mendibles", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollege/213_CarlosMedina_MattMendibles.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollegeAngle2/213_CarlosMedina_MattMendibles.mp4", | |
| "vlaunch": "17.011" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "AJ Amelburu", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/86_CarlosOrtiz_AJAmelburu.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/86_CarlosOrtiz_AJAmelburu.mp4", | |
| "vlaunch": "18.576" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Soterio Ramirez", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCC/694_BrandonBracy_SoterioRamirez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCCAngle2/694_BrandonBracy_SoterioRamirez.mp4", | |
| "vlaunch": "7.569" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Tyler Keith", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/209_ChazDeLuca_TylerKeith.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/209_ChazDeLuca_TylerKeith.mp4", | |
| "vlaunch": "-1.059" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Zach Huffins", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollege/422_JarodLessar_ZachHuffins.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollegeAngle2/422_JarodLessar_ZachHuffins.mp4", | |
| "vlaunch": "26.840" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Matt Wong", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollege/366_IrvingMartin_MattWong.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollegeAngle2/366_IrvingMartin_MattWong.mp4", | |
| "vlaunch": "66.792" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jordan Macias", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/208_CadeAcrey_JordanMacias.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/208_CadeAcrey_JordanMacias.mp4", | |
| "vlaunch": "-10.849" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Daniel Hernandez", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCC/813_BrandonBracy_DanielHernandez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCCAngle2/813_BrandonBracy_DanielHernandez.mp4", | |
| "vlaunch": "13.176" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Oscar Mancillas", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/295_JordanSchiefer_OscarMancillas.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/295_JordanSchiefer_OscarMancillas.mp4", | |
| "vlaunch": "32.495" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Chanlar Barkdull", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollege/555_FabianMuniz_ChanlarBarkdull.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollegeAngle2/555_FabianMuniz_ChanlarBarkdull.mp4", | |
| "vlaunch": "48.668" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Manny Perez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollege/472_MattGilbertson_MannyPerez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollegeAngle2/472_MattGilbertson_MannyPerez.mp4", | |
| "vlaunch": "64.767" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Andrew Caliendo", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/301_TannerLewis_AndrewCaliendo.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/301_TannerLewis_AndrewCaliendo.mp4", | |
| "vlaunch": "11.678" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Alix Garcia", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollege/1085_JDBrooks_AlixGarcia.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollegeAngle2/1085_JDBrooks_AlixGarcia.mp4", | |
| "vlaunch": "5.501" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Matt Mendibles", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollege/50_ChaseStratton_MattMendibles.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollegeAngle2/50_ChaseStratton_MattMendibles.mp4", | |
| "vlaunch": "6.141" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Justin Lutes", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavsArizonaWesternCollege/604_BraxtonAnderson_JustinLutes.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavsArizonaWesternCollegeAngle2/604_BraxtonAnderson_JustinLutes.mp4", | |
| "vlaunch": "97.333" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Dane Perry", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/119_JoshSieglitz_DanePerry.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/119_JoshSieglitz_DanePerry.mp4", | |
| "vlaunch": "30.764" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Spencer Packard", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollege/323_JarodLessar_SpencerPackard.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollegeAngle2/323_JarodLessar_SpencerPackard.mp4", | |
| "vlaunch": "26.503" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Cole Fossat", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollege/215_RJMartinez_ColeFossat.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollegeAngle2/215_RJMartinez_ColeFossat.mp4", | |
| "vlaunch": "13.235" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jordan Macias", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/87_CarlosOrtiz_JordanMacias.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/87_CarlosOrtiz_JordanMacias.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Avery Tuck", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCC/695_BrandonBracy_AveryTuck.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCCAngle2/695_BrandonBracy_AveryTuck.mp4", | |
| "vlaunch": "46.646" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Cole Norris", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/214_BrianCantu_ColeNorris.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/214_BrianCantu_ColeNorris.mp4", | |
| "vlaunch": "39.245" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Trevor Bender", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollege/425_RamonMiranda_TrevorBender.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollegeAngle2/425_RamonMiranda_TrevorBender.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Snaider Torrealba", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollege/377_NickRupp_SnaiderTorrealba.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollegeAngle2/377_NickRupp_SnaiderTorrealba.mp4", | |
| "vlaunch": "72.354" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Ryan Rijo", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/209_BuddyPindel_RyanRijo.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/209_BuddyPindel_RyanRijo.mp4", | |
| "vlaunch": "4.293" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Ryan Rijo", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCC/816_BrandonBracy_RyanRijo.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCCAngle2/816_BrandonBracy_RyanRijo.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Chris Haines", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/309_JordanSchiefer_ChrisHaines.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/309_JordanSchiefer_ChrisHaines.mp4", | |
| "vlaunch": "9.268" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Yodelvy Merendez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollege/561_JakeSmith_YodelvyMerendez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollegeAngle2/561_JakeSmith_YodelvyMerendez.mp4", | |
| "vlaunch": "-7.008" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jordan Macias", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollege/487_IrvingMartin_JordanMacias.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollegeAngle2/487_IrvingMartin_JordanMacias.mp4", | |
| "vlaunch": "89.164" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Joab Gonzalez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/302_TannerLewis_JoabGonzalez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/302_TannerLewis_JoabGonzalez.mp4", | |
| "vlaunch": "-3.070" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Emny Ordonez", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollege/1089_JDBrooks_EmnyOrdonez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollegeAngle2/1089_JDBrooks_EmnyOrdonez.mp4", | |
| "vlaunch": "-6.843" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Cody Holtz", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollege/53_ChaseStratton_CodyHoltz.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollegeAngle2/53_ChaseStratton_CodyHoltz.mp4", | |
| "vlaunch": "12.051" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Nick Hernandez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavsArizonaWesternCollege/615_BraxtonAnderson_NickHernandez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavsArizonaWesternCollegeAngle2/615_BraxtonAnderson_NickHernandez.mp4", | |
| "vlaunch": "65.708" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Ty Lewis", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/129_JoshSieglitz_TyLewis.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/129_JoshSieglitz_TyLewis.mp4", | |
| "vlaunch": "13.660" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Yodelvy Merendez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollege/331_JarodLessar_YodelvyMerendez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollegeAngle2/331_JarodLessar_YodelvyMerendez.mp4", | |
| "vlaunch": "-19.632" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Steven Ortiz", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollege/225_RJMartinez_StevenOrtiz.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollegeAngle2/225_RJMartinez_StevenOrtiz.mp4", | |
| "vlaunch": "-4.737" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Justin Lutes", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/92_CarlosOrtiz_JustinLutes.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/92_CarlosOrtiz_JustinLutes.mp4", | |
| "vlaunch": "26.568" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Josh Glenn", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCC/701_ChrisJefferson_JoshGlenn.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCCAngle2/701_ChrisJefferson_JoshGlenn.mp4", | |
| "vlaunch": "-2.125" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Izzy Carrillo", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/236_LoganHooley_IzzyCarrillo.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/236_LoganHooley_IzzyCarrillo.mp4", | |
| "vlaunch": "23.289" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Connor Udy", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollege/429_RamonMiranda_ConnorUdy.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollegeAngle2/429_RamonMiranda_ConnorUdy.mp4", | |
| "vlaunch": "28.196" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Nick Hernandez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollege/382_IrvingMartin_NickHernandez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollegeAngle2/382_IrvingMartin_NickHernandez.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Soterio Ramirez", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/211_BuddyPindel_SoterioRamirez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/211_BuddyPindel_SoterioRamirez.mp4", | |
| "vlaunch": "14.299" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Soterio Ramirez", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCC/848_BrandonBracy_SoterioRamirez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCCAngle2/848_BrandonBracy_SoterioRamirez.mp4", | |
| "vlaunch": "34.156" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Matthew Wilde", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/311_JordanSchiefer_MatthewWilde.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/311_JordanSchiefer_MatthewWilde.mp4", | |
| "vlaunch": "-1.511" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Carlos Arelleno", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollege/572_JakeSmith_CarlosArelleno.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollegeAngle2/572_JakeSmith_CarlosArelleno.mp4", | |
| "vlaunch": "-4.324" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Justin Greene", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollege/495_MattGilbertson_JustinGreene.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollegeAngle2/495_MattGilbertson_JustinGreene.mp4", | |
| "vlaunch": "57.380" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Ryan Rijo", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/312_TannerLewis_RyanRijo.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/312_TannerLewis_RyanRijo.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Hunter Huegly", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/315_CadeAcrey_HunterHuegly.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/315_CadeAcrey_HunterHuegly.mp4", | |
| "vlaunch": "20.357" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Matt Wong", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollege/1097_JordanSuarez_MattWong.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollegeAngle2/1097_JordanSuarez_MattWong.mp4", | |
| "vlaunch": "13.871" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Ryan Curtis", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollege/69_DominicHamel_RyanCurtis.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollegeAngle2/69_DominicHamel_RyanCurtis.mp4", | |
| "vlaunch": "-4.979" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Nathan Collins", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavsArizonaWesternCollege/628_AlexTisminezki_NathanCollins.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavsArizonaWesternCollegeAngle2/628_AlexTisminezki_NathanCollins.mp4", | |
| "vlaunch": "68.522" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Mckade Worthen", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/132_JoshSieglitz_MckadeWorthen.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/132_JoshSieglitz_MckadeWorthen.mp4", | |
| "vlaunch": "-2.767" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Chanlar Barkdull", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollege/333_RamonMiranda_ChanlarBarkdull.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollegeAngle2/333_RamonMiranda_ChanlarBarkdull.mp4", | |
| "vlaunch": "20.740" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Cody Holtz", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollege/228_CarlosMedina_CodyHoltz.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollegeAngle2/228_CarlosMedina_CodyHoltz.mp4", | |
| "vlaunch": "41.142" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Matt Wong", | |
| "result": "Error", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/94_CarlosOrtiz_MattWong.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/94_CarlosOrtiz_MattWong.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jacob Cubillos", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCC/717_BrandonBracy_JacobCubillos.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCCAngle2/717_BrandonBracy_JacobCubillos.mp4", | |
| "vlaunch": "15.652" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Morgan McIntosh", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/241_LoganHooley_MorganMcIntosh.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/241_LoganHooley_MorganMcIntosh.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Carlos Arelleno", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollege/435_JarodLessar_CarlosArelleno.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollegeAngle2/435_JarodLessar_CarlosArelleno.mp4", | |
| "vlaunch": "41.137" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jay Desoto", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollege/395_IrvingMartin_JayDesoto.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollegeAngle2/395_IrvingMartin_JayDesoto.mp4", | |
| "vlaunch": "88.867" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Joaquin Ballesteros", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/224_BuddyPindel_JoaquinBallesteros.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/224_BuddyPindel_JoaquinBallesteros.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Avery Tuck", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCC/851_BrandonBracy_AveryTuck.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCCAngle2/851_BrandonBracy_AveryTuck.mp4", | |
| "vlaunch": "14.243" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Brennan Reback", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollege/896_MattyMitchell_BrennanReback.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollegeAngle2/896_MattyMitchell_BrennanReback.mp4", | |
| "vlaunch": "12.373" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Steven Ortiz", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollege/585_FabianMuniz_StevenOrtiz.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollegeAngle2/585_FabianMuniz_StevenOrtiz.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Yodelvy Merendez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollege/503_MattGilbertson_YodelvyMerendez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollegeAngle2/503_MattGilbertson_YodelvyMerendez.mp4", | |
| "vlaunch": "64.069" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Snaider Torrealba", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavsArizonaWesternCollege/524_MattGilbertson_SnaiderTorrealba.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavsArizonaWesternCollegeAngle2/524_MattGilbertson_SnaiderTorrealba.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Matt Wong", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/319_CadeAcrey_MattWong.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/319_CadeAcrey_MattWong.mp4", | |
| "vlaunch": "1.969" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Clayton Keyes", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollege/1113_JDBrooks_ClaytonKeyes.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollegeAngle2/1113_JDBrooks_ClaytonKeyes.mp4", | |
| "vlaunch": "-51.234" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Alex Isola", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollege/86_ChaseStratton_AlexIsola.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollegeAngle2/86_ChaseStratton_AlexIsola.mp4", | |
| "vlaunch": "3.828" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Rody Barker", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/3_IsaiahBlaylock_RodyBarker.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/3_IsaiahBlaylock_RodyBarker.mp4", | |
| "vlaunch": "28.373" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Cole Norris", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/138_BrianCantu_ColeNorris.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/138_BrianCantu_ColeNorris.mp4", | |
| "vlaunch": "20.759" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jarrett Hunt", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollege/341_RamonMiranda_JarrettHunt.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollegeAngle2/341_RamonMiranda_JarrettHunt.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Roberto Cabrera", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollege/236_CarlosMedina_RobertoCabrera.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollegeAngle2/236_CarlosMedina_RobertoCabrera.mp4", | |
| "vlaunch": "6.012" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Wyatt Featherston", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/103_CarlosOrtiz_WyattFeatherston.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/103_CarlosOrtiz_WyattFeatherston.mp4", | |
| "vlaunch": "9.867" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Rody Barker", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCC/721_BrandonBracy_RodyBarker.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCCAngle2/721_BrandonBracy_RodyBarker.mp4", | |
| "vlaunch": "19.211" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Zach Peterson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/243_GarrettRedaja_ZachPeterson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/243_GarrettRedaja_ZachPeterson.mp4", | |
| "vlaunch": "27.989" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Robbie Wilkes", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollege/447_JarodLessar_RobbieWilkes.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollegeAngle2/447_JarodLessar_RobbieWilkes.mp4", | |
| "vlaunch": "26.266" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Trevor Jackson", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollege/398_IrvingMartin_TrevorJackson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollegeAngle2/398_IrvingMartin_TrevorJackson.mp4", | |
| "vlaunch": "45.798" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Justin Lutes", | |
| "result": "Error", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/229_CadeAcrey_JustinLutes.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/229_CadeAcrey_JustinLutes.mp4", | |
| "vlaunch": "54.482" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jacob Jacome", | |
| "result": "Triple", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCC/872_TristanStivors_JacobJacome.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCCAngle2/872_TristanStivors_JacobJacome.mp4", | |
| "vlaunch": "20.507" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jordan Macias", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollege/913_NickTrogerlick-Iverson_JordanMacias.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollegeAngle2/913_NickTrogerlick-Iverson_JordanMacias.mp4", | |
| "vlaunch": "-13.977" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Trevor Bender", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollege/588_FabianMuniz_TrevorBender.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollegeAngle2/588_FabianMuniz_TrevorBender.mp4", | |
| "vlaunch": "20.469" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Snaider Torrealba", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollege/596_JakeSmith_SnaiderTorrealba.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollegeAngle2/596_JakeSmith_SnaiderTorrealba.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Carlos Arelleno", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavsArizonaWesternCollege/525_MattGilbertson_CarlosArelleno.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavsArizonaWesternCollegeAngle2/525_MattGilbertson_CarlosArelleno.mp4", | |
| "vlaunch": "39.396" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Nick Hernandez", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/331_CadeAcrey_NickHernandez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/331_CadeAcrey_NickHernandez.mp4", | |
| "vlaunch": "14.998" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Reagan Teegarden", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollege/1119_JDBrooks_ReaganTeegarden.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollegeAngle2/1119_JDBrooks_ReaganTeegarden.mp4", | |
| "vlaunch": "28.974" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Gianni Tomasi", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollege/89_ChaseStratton_GianniTomasi.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollegeAngle2/89_ChaseStratton_GianniTomasi.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Daniel Hernandez", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/9_IsaiahBlaylock_DanielHernandez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/9_IsaiahBlaylock_DanielHernandez.mp4", | |
| "vlaunch": "16.750" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Tyler Keith", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/155_JoshSieglitz_TylerKeith.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/155_JoshSieglitz_TylerKeith.mp4", | |
| "vlaunch": "35.620" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Steven Ortiz", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollege/347_RamonMiranda_StevenOrtiz.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollegeAngle2/347_RamonMiranda_StevenOrtiz.mp4", | |
| "vlaunch": "14.813" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Over Torres", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollege/237_CarlosMedina_OverTorres.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollegeAngle2/237_CarlosMedina_OverTorres.mp4", | |
| "vlaunch": "21.386" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Rody Barker", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/133_HerbieGood_RodyBarker.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/133_HerbieGood_RodyBarker.mp4", | |
| "vlaunch": "42.589" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Daniel Hernandez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCC/755_BrandonBracy_DanielHernandez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCCAngle2/755_BrandonBracy_DanielHernandez.mp4", | |
| "vlaunch": "35.574" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Cole Ensing", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/249_GarrettRedaja_ColeEnsing.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/249_GarrettRedaja_ColeEnsing.mp4", | |
| "vlaunch": "20.360" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Sean Roby", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollege/452_JarodLessar_SeanRoby.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollegeAngle2/452_JarodLessar_SeanRoby.mp4", | |
| "vlaunch": "3.965" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "AJ Amelburu", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollege/399_IrvingMartin_AJAmelburu.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollegeAngle2/399_IrvingMartin_AJAmelburu.mp4", | |
| "vlaunch": "73.937" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Matt Wong", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/234_CadeAcrey_MattWong.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/234_CadeAcrey_MattWong.mp4", | |
| "vlaunch": "-5.232" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Izzy Carrillo", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCC/881_TristanStivors_IzzyCarrillo.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCCAngle2/881_TristanStivors_IzzyCarrillo.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Justin Lutes", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollege/921_NickTrogerlick-Iverson_JustinLutes.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollegeAngle2/921_NickTrogerlick-Iverson_JustinLutes.mp4", | |
| "vlaunch": "-56.876" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Emny Ordonez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollege/925_MattyMitchell_EmnyOrdonez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollegeAngle2/925_MattyMitchell_EmnyOrdonez.mp4", | |
| "vlaunch": "-0.315" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Manny Perez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollege/613_KhristianSorensen_MannyPerez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollegeAngle2/613_KhristianSorensen_MannyPerez.mp4", | |
| "vlaunch": "-0.373" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Sean Roby", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavsArizonaWesternCollege/529_MattGilbertson_SeanRoby.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavsArizonaWesternCollegeAngle2/529_MattGilbertson_SeanRoby.mp4", | |
| "vlaunch": "96.756" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Beau Capanna", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/335_CadeAcrey_BeauCapanna.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/335_CadeAcrey_BeauCapanna.mp4", | |
| "vlaunch": "13.352" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Michael Camburn", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollege/1133_JordanSuarez_MichaelCamburn.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsCentralArizonaCollegeAngle2/1133_JordanSuarez_MichaelCamburn.mp4", | |
| "vlaunch": "20.371" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Trevor Edior", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollege/104_ChaseStratton_TrevorEdior.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollegeAngle2/104_ChaseStratton_TrevorEdior.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Soterio Ramirez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/16_IsaiahBlaylock_SoterioRamirez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/16_IsaiahBlaylock_SoterioRamirez.mp4", | |
| "vlaunch": "4.066" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Zach Peterson", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/157_JoshSieglitz_ZachPeterson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/157_JoshSieglitz_ZachPeterson.mp4", | |
| "vlaunch": "15.114" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Zach Huffins", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollege/355_JarodLessar_ZachHuffins.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollegeAngle2/355_JarodLessar_ZachHuffins.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Hunter Porritt", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollege/246_RJMartinez_HunterPorritt.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStatevsYavapaiCollegeAngle2/246_RJMartinez_HunterPorritt.mp4", | |
| "vlaunch": "10.286" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "AJ Amelburu", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/141_CarlosOrtiz_AJAmelburu.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/141_CarlosOrtiz_AJAmelburu.mp4", | |
| "vlaunch": "23.624" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Ryan Rijo", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCC/756_BrandonBracy_RyanRijo.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/NewMexicoJCvsGatewayCCAngle2/756_BrandonBracy_RyanRijo.mp4", | |
| "vlaunch": "3.336" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Brock Tsukamoto", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/250_GarrettRedaja_BrockTsukamoto.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/250_GarrettRedaja_BrockTsukamoto.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Spencer Packard", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollege/455_JarodLessar_SpencerPackard.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/UtahStateUniversityvsArizonaWesternCollegeAngle2/455_JarodLessar_SpencerPackard.mp4", | |
| "vlaunch": "7.236" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Manny Perez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollege/414_NickRupp_MannyPerez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-27/CollegeofSouthernNevadavsArizonaWesternCollegeAngle2/414_NickRupp_MannyPerez.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Peyton Koopman", | |
| "result": "Error", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJC/242_CadeAcrey_PeytonKoopman.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-28/CollegeofSouthernNevadavNewMexicoJCAngle2/242_CadeAcrey_PeytonKoopman.mp4", | |
| "vlaunch": "41.399" | |
| }, | |
| { | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Izzy Carrillo", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCC/8_AlecMyers_IzzyCarrillo.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-01-26/ColoradoNorthwesternCCvsGatewayCCAngle2/8_AlecMyers_IzzyCarrillo.mp4", | |
| "vlaunch": "5.906" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Sergio Macias", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/377_ChristianLarson_SergioMacias.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/377_ChristianLarson_SergioMacias.mp4", | |
| "vlaunch": "54.789" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Keaton Milford", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennan/90_JacobCantleberry_KeatonMilford.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennanAngle2/90_JacobCantleberry_KeatonMilford.mp4", | |
| "vlaunch": "8.296" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Dylan Neuse", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/486_ReidMorgan_DylanNeuse.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/486_ReidMorgan_DylanNeuse.mp4", | |
| "vlaunch": "-2.446" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Herbert Iser", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennan/189_GrantMiller_HerbertIser.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennanAngle2/189_GrantMiller_HerbertIser.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "DJ Stephens", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/314_ChristianLarson_DJStephens.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/314_ChristianLarson_DJStephens.mp4", | |
| "vlaunch": "21.173" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Peter Zimmermann", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/380_ChristianLarson_PeterZimmermann.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/380_ChristianLarson_PeterZimmermann.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Herbert Iser", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennan/98_LoganFreeman_HerbertIser.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennanAngle2/98_LoganFreeman_HerbertIser.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Griffin Paxton", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/493_ReidMorgan_GriffinPaxton.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/493_ReidMorgan_GriffinPaxton.mp4", | |
| "vlaunch": "24.462" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Jordan Myrow", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennan/194_GrantMiller_JordanMyrow.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennanAngle2/194_GrantMiller_JordanMyrow.mp4", | |
| "vlaunch": "-6.982" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Alerick Solearie", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/316_ChristianLarson_AlerickSolearie.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/316_ChristianLarson_AlerickSolearie.mp4", | |
| "vlaunch": "43.361" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Jase Embry", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/388_DevonRoedahl_JaseEmbry.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/388_DevonRoedahl_JaseEmbry.mp4", | |
| "vlaunch": "-18.876" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Jordan Myrow", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennan/103_LoganFreeman_JordanMyrow.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennanAngle2/103_LoganFreeman_JordanMyrow.mp4", | |
| "vlaunch": "-3.055" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Trent Franson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/500_JoshBreaux_TrentFranson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/500_JoshBreaux_TrentFranson.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Chase Sortor", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennan/211_AaronGeorge_ChaseSortor.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennanAngle2/211_AaronGeorge_ChaseSortor.mp4", | |
| "vlaunch": "4.082" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Sergio Macias", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/320_ChristianLarson_SergioMacias.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/320_ChristianLarson_SergioMacias.mp4", | |
| "vlaunch": "61.401" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Aidan Shepardson", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/389_DevonRoedahl_AidanShepardson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/389_DevonRoedahl_AidanShepardson.mp4", | |
| "vlaunch": "8.124" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Chase Sortor", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennan/106_JacobCantleberry_ChaseSortor.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennanAngle2/106_JacobCantleberry_ChaseSortor.mp4", | |
| "vlaunch": "53.112" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "DJ Stephens", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/503_JoshBreaux_DJStephens.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/503_JoshBreaux_DJStephens.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Andres Sosa", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennan/241_GrantMiller_AndresSosa.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennanAngle2/241_GrantMiller_AndresSosa.mp4", | |
| "vlaunch": "0.008" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Peter Zimmermann", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/323_ChristianLarson_PeterZimmermann.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/323_ChristianLarson_PeterZimmermann.mp4", | |
| "vlaunch": "14.549" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "George Callil", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/395_DevonRoedahl_GeorgeCallil.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/395_DevonRoedahl_GeorgeCallil.mp4", | |
| "vlaunch": "32.324" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Thomas Santos", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennan/108_JacobCantleberry_ThomasSantos.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennanAngle2/108_JacobCantleberry_ThomasSantos.mp4", | |
| "vlaunch": "24.735" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Tyriece Silas", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/507_JoshBreaux_TyrieceSilas.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/507_JoshBreaux_TyrieceSilas.mp4", | |
| "vlaunch": "41.722" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Nick Neville", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennan/246_GrantMiller_NickNeville.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennanAngle2/246_GrantMiller_NickNeville.mp4", | |
| "vlaunch": "21.613" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Mario Moralez", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/325_ChristianLarson_MarioMoralez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/325_ChristianLarson_MarioMoralez.mp4", | |
| "vlaunch": "4.567" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Baylor Rowlett", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/396_PaytonStrambler_BaylorRowlett.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/396_PaytonStrambler_BaylorRowlett.mp4", | |
| "vlaunch": "8.212" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Mitchell Caskey", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennan/112_JacobCantleberry_MitchellCaskey.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennanAngle2/112_JacobCantleberry_MitchellCaskey.mp4", | |
| "vlaunch": "-10.755" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Chase Sortor", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/515_TreyDillard_ChaseSortor.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/515_TreyDillard_ChaseSortor.mp4", | |
| "vlaunch": "14.887" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Tyriece Silas", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennan/253_GrantMiller_TyrieceSilas.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennanAngle2/253_GrantMiller_TyrieceSilas.mp4", | |
| "vlaunch": "24.036" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Baylor Rowlett", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/330_ChristianLarson_BaylorRowlett.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/330_ChristianLarson_BaylorRowlett.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "George Callil", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/333_DevonRoedahl_GeorgeCallil.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/333_DevonRoedahl_GeorgeCallil.mp4", | |
| "vlaunch": "5.241" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Trent Franson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/402_PaytonStrambler_TrentFranson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/402_PaytonStrambler_TrentFranson.mp4", | |
| "vlaunch": "47.936" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Jake Matheny", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennan/113_LoganFreeman_JakeMatheny.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennanAngle2/113_LoganFreeman_JakeMatheny.mp4", | |
| "vlaunch": "28.014" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Mario Moralez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/265_ChristianLarson_MarioMoralez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/265_ChristianLarson_MarioMoralez.mp4", | |
| "vlaunch": "0.030" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Dylan Neuse", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/335_DevonRoedahl_DylanNeuse.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/335_DevonRoedahl_DylanNeuse.mp4", | |
| "vlaunch": "-0.764" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "DJ Stephens", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/407_PaytonStrambler_DJStephens.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/407_PaytonStrambler_DJStephens.mp4", | |
| "vlaunch": "-20.560" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Jordan Myrow", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennan/125_LoganFreeman_JordanMyrow.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennanAngle2/125_LoganFreeman_JordanMyrow.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Baylor Rowlett", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/267_ChristianLarson_BaylorRowlett.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/267_ChristianLarson_BaylorRowlett.mp4", | |
| "vlaunch": "28.894" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Griffin Paxton", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/339_DevonRoedahl_GriffinPaxton.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/339_DevonRoedahl_GriffinPaxton.mp4", | |
| "vlaunch": "-1.531" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Griffin Paxton", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/416_DevonRoedahl_GriffinPaxton.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/416_DevonRoedahl_GriffinPaxton.mp4", | |
| "vlaunch": "29.439" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Thomas Santos", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennan/137_JacobCantleberry_ThomasSantos.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennanAngle2/137_JacobCantleberry_ThomasSantos.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Dylan Neuse", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/272_DevonRoedahl_DylanNeuse.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/272_DevonRoedahl_DylanNeuse.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Nick Neville", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/340_ChristianLarson_NickNeville.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/340_ChristianLarson_NickNeville.mp4", | |
| "vlaunch": "14.905" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Chase Sortor", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/430_DevonRoedahl_ChaseSortor.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/430_DevonRoedahl_ChaseSortor.mp4", | |
| "vlaunch": "-9.886" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Nick Neville", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennan/152_LoganFreeman_NickNeville.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennanAngle2/152_LoganFreeman_NickNeville.mp4", | |
| "vlaunch": "0.102" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Griffin Paxton", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/273_DevonRoedahl_GriffinPaxton.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/273_DevonRoedahl_GriffinPaxton.mp4", | |
| "vlaunch": "-9.080" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Trent Franson", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/346_ChristianLarson_TrentFranson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/346_ChristianLarson_TrentFranson.mp4", | |
| "vlaunch": "12.034" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Tyriece Silas", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/434_PaytonStrambler_TyrieceSilas.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/434_PaytonStrambler_TyrieceSilas.mp4", | |
| "vlaunch": "11.570" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Tyriece Silas", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennan/153_LoganFreeman_TyrieceSilas.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennanAngle2/153_LoganFreeman_TyrieceSilas.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Chase Sortor", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/283_DevonRoedahl_ChaseSortor.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/283_DevonRoedahl_ChaseSortor.mp4", | |
| "vlaunch": "44.885" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "DJ Stephens", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/349_ChristianLarson_DJStephens.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/349_ChristianLarson_DJStephens.mp4", | |
| "vlaunch": "2.629" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Tyriece Silas", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennan/66_LoganFreeman_TyrieceSilas.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennanAngle2/66_LoganFreeman_TyrieceSilas.mp4", | |
| "vlaunch": "-39.247" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Sergio Macias", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/440_PaytonStrambler_SergioMacias.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/440_PaytonStrambler_SergioMacias.mp4", | |
| "vlaunch": "63.213" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Mitchell Caskey", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennan/169_JacobCantleberry_MitchellCaskey.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennanAngle2/169_JacobCantleberry_MitchellCaskey.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Nick Neville", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/286_ChristianLarson_NickNeville.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/286_ChristianLarson_NickNeville.mp4", | |
| "vlaunch": "28.261" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Tyriece Silas", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/351_ChristianLarson_TyrieceSilas.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/351_ChristianLarson_TyrieceSilas.mp4", | |
| "vlaunch": "35.652" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Alerick Solearie", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennan/69_LoganFreeman_AlerickSolearie.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennanAngle2/69_LoganFreeman_AlerickSolearie.mp4", | |
| "vlaunch": "50.515" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Jase Embry", | |
| "result": "Error", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/456_LucasVeinbergs_JaseEmbry.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/456_LucasVeinbergs_JaseEmbry.mp4", | |
| "vlaunch": "-18.564" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Aidan Shepardson", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennan/173_JacobCantleberry_AidanShepardson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennanAngle2/173_JacobCantleberry_AidanShepardson.mp4", | |
| "vlaunch": "11.065" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "DJ Stephens", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/293_ChristianLarson_DJStephens.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/293_ChristianLarson_DJStephens.mp4", | |
| "vlaunch": "-26.540" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Alerick Solearie", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/354_ChristianLarson_AlerickSolearie.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/354_ChristianLarson_AlerickSolearie.mp4", | |
| "vlaunch": "-39.865" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Sergio Macias", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennan/72_LoganFreeman_SergioMacias.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennanAngle2/72_LoganFreeman_SergioMacias.mp4", | |
| "vlaunch": "29.628" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Aidan Shepardson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/459_LucasVeinbergs_AidanShepardson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/459_LucasVeinbergs_AidanShepardson.mp4", | |
| "vlaunch": "23.232" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "George Callil", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennan/175_JacobCantleberry_GeorgeCallil.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennanAngle2/175_JacobCantleberry_GeorgeCallil.mp4", | |
| "vlaunch": "3.579" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Grant Miller", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/299_DevonRoedahl_GrantMiller.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/299_DevonRoedahl_GrantMiller.mp4", | |
| "vlaunch": "13.218" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Chase Sortor", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/362_DevonRoedahl_ChaseSortor.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/362_DevonRoedahl_ChaseSortor.mp4", | |
| "vlaunch": "36.327" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Dylan Neuse", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennan/77_JacobCantleberry_DylanNeuse.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennanAngle2/77_JacobCantleberry_DylanNeuse.mp4", | |
| "vlaunch": "3.129" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Mario Moralez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/470_PaytonStrambler_MarioMoralez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/470_PaytonStrambler_MarioMoralez.mp4", | |
| "vlaunch": "21.648" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Dylan Neuse", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennan/178_AaronGeorge_DylanNeuse.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennanAngle2/178_AaronGeorge_DylanNeuse.mp4", | |
| "vlaunch": "55.297" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Jase Embry", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/308_DevonRoedahl_JaseEmbry.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/308_DevonRoedahl_JaseEmbry.mp4", | |
| "vlaunch": "-13.453" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Jackson Nichols", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/372_DevonRoedahl_JacksonNichols.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/372_DevonRoedahl_JacksonNichols.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Nick Thornquist", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennan/84_JacobCantleberry_NickThornquist.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennanAngle2/84_JacobCantleberry_NickThornquist.mp4", | |
| "vlaunch": "-10.488" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Nick Neville", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/478_PaytonStrambler_NickNeville.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/478_PaytonStrambler_NickNeville.mp4", | |
| "vlaunch": "26.593" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Griffin Paxton", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennan/183_AaronGeorge_GriffinPaxton.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame1vsMcLennanAngle2/183_AaronGeorge_GriffinPaxton.mp4", | |
| "vlaunch": "14.603" | |
| }, | |
| { | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Aidan Shepardson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennan/310_DevonRoedahl_AidanShepardson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-09/SanJacTOCGame2vsMcLennanAngle2/310_DevonRoedahl_AidanShepardson.mp4", | |
| "vlaunch": "15.473" | |
| }, | |
| { | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Logan Sowers", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndiana/69_DanMetzdorf_LoganSowers.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndianaAngle2/69_DanMetzdorf_LoganSowers.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Jake Palomaki", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndiana/153_PaulyMilto_JakePalomaki.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndianaAngle2/153_PaulyMilto_JakePalomaki.mp4", | |
| "vlaunch": "9.513" | |
| }, | |
| { | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Ryan Fineman", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndiana/72_DanMetzdorf_RyanFineman.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndianaAngle2/72_DanMetzdorf_RyanFineman.mp4", | |
| "vlaunch": "16.117" | |
| }, | |
| { | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Jeremy Houston", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndiana/157_DanMetzdorf_JeremyHouston.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndianaAngle2/157_DanMetzdorf_JeremyHouston.mp4", | |
| "vlaunch": "13.488" | |
| }, | |
| { | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Matt Gorski", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndiana/73_DanMetzdorf_MattGorski.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndianaAngle2/73_DanMetzdorf_MattGorski.mp4", | |
| "vlaunch": "0.808" | |
| }, | |
| { | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Logan Kaletha", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndiana/158_DanMetzdorf_LoganKaletha.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndianaAngle2/158_DanMetzdorf_LoganKaletha.mp4", | |
| "vlaunch": "2.879" | |
| }, | |
| { | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Matt Lloyd", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndiana/162_DanMetzdorf_MattLloyd.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndianaAngle2/162_DanMetzdorf_MattLloyd.mp4", | |
| "vlaunch": "16.238" | |
| }, | |
| { | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Logan Kaletha", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndiana/11_DanMetzdorf_LoganKaletha.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndianaAngle2/11_DanMetzdorf_LoganKaletha.mp4", | |
| "vlaunch": "-9.992" | |
| }, | |
| { | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Brian Dempsey", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndiana/77_PaulyMilto_BrianDempsey.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndianaAngle2/77_PaulyMilto_BrianDempsey.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Dante Baldelli", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndiana/167_PaulyMilto_DanteBaldelli.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndianaAngle2/167_PaulyMilto_DanteBaldelli.mp4", | |
| "vlaunch": "22.180" | |
| }, | |
| { | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Luke Miller", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndiana/15_DanMetzdorf_LukeMiller.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndianaAngle2/15_DanMetzdorf_LukeMiller.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Justin Walker", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndiana/84_DanMetzdorf_JustinWalker.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndianaAngle2/84_DanMetzdorf_JustinWalker.mp4", | |
| "vlaunch": "33.810" | |
| }, | |
| { | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Jake Alu", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndiana/170_PaulyMilto_JakeAlu.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndianaAngle2/170_PaulyMilto_JakeAlu.mp4", | |
| "vlaunch": "30.725" | |
| }, | |
| { | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Logan Sowers", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndiana/20_DanMetzdorf_LoganSowers.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndianaAngle2/20_DanMetzdorf_LoganSowers.mp4", | |
| "vlaunch": "18.476" | |
| }, | |
| { | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Jeremy Houston", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndiana/86_DanMetzdorf_JeremyHouston.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndianaAngle2/86_DanMetzdorf_JeremyHouston.mp4", | |
| "vlaunch": "32.003" | |
| }, | |
| { | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Gian Martellini", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndiana/172_PaulyMilto_GianMartellini.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndianaAngle2/172_PaulyMilto_GianMartellini.mp4", | |
| "vlaunch": "-24.308" | |
| }, | |
| { | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Elijah Dunham", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndiana/21_DanMetzdorf_ElijahDunham.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndianaAngle2/21_DanMetzdorf_ElijahDunham.mp4", | |
| "vlaunch": "19.613" | |
| }, | |
| { | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Matt Lloyd", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndiana/90_DanMetzdorf_MattLloyd.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndianaAngle2/90_DanMetzdorf_MattLloyd.mp4", | |
| "vlaunch": "30.746" | |
| }, | |
| { | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Logan Sowers", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndiana/174_ThomasLane_LoganSowers.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndianaAngle2/174_ThomasLane_LoganSowers.mp4", | |
| "vlaunch": "19.298" | |
| }, | |
| { | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Ryan Fineman", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndiana/26_DanMetzdorf_RyanFineman.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndianaAngle2/26_DanMetzdorf_RyanFineman.mp4", | |
| "vlaunch": "34.696" | |
| }, | |
| { | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Jake Palomaki", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndiana/93_PaulyMilto_JakePalomaki.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndianaAngle2/93_PaulyMilto_JakePalomaki.mp4", | |
| "vlaunch": "23.515" | |
| }, | |
| { | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Elijah Dunham", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndiana/175_ThomasLane_ElijahDunham.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndianaAngle2/175_ThomasLane_ElijahDunham.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Jake Alu", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndiana/33_PaulyMilto_JakeAlu.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndianaAngle2/33_PaulyMilto_JakeAlu.mp4", | |
| "vlaunch": "3.298" | |
| }, | |
| { | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Jake Alu", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndiana/99_PaulyMilto_JakeAlu.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndianaAngle2/99_PaulyMilto_JakeAlu.mp4", | |
| "vlaunch": "14.266" | |
| }, | |
| { | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Ryan Fineman", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndiana/176_ThomasLane_RyanFineman.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndianaAngle2/176_ThomasLane_RyanFineman.mp4", | |
| "vlaunch": "40.569" | |
| }, | |
| { | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Matt Gorski", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndiana/37_DanMetzdorf_MattGorski.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndianaAngle2/37_DanMetzdorf_MattGorski.mp4", | |
| "vlaunch": "19.280" | |
| }, | |
| { | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Gian Martellini", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndiana/119_PaulyMilto_GianMartellini.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndianaAngle2/119_PaulyMilto_GianMartellini.mp4", | |
| "vlaunch": "12.041" | |
| }, | |
| { | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Matt Gorski", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndiana/178_ThomasLane_MattGorski.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndianaAngle2/178_ThomasLane_MattGorski.mp4", | |
| "vlaunch": "-3.697" | |
| }, | |
| { | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Cole Barr", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndiana/41_DanMetzdorf_ColeBarr.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndianaAngle2/41_DanMetzdorf_ColeBarr.mp4", | |
| "vlaunch": "30.211" | |
| }, | |
| { | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Jack Cunningham", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndiana/126_PaulyMilto_JackCunningham.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndianaAngle2/126_PaulyMilto_JackCunningham.mp4", | |
| "vlaunch": "34.922" | |
| }, | |
| { | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Jeremy Houston", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndiana/185_ThomasLane_JeremyHouston.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndianaAngle2/185_ThomasLane_JeremyHouston.mp4", | |
| "vlaunch": "20.267" | |
| }, | |
| { | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Jeremy Houston", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndiana/42_DanMetzdorf_JeremyHouston.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndianaAngle2/42_DanMetzdorf_JeremyHouston.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Mitch Bigras", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndiana/130_PaulyMilto_MitchBigras.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndianaAngle2/130_PaulyMilto_MitchBigras.mp4", | |
| "vlaunch": "18.731" | |
| }, | |
| { | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Jacob Yish", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndiana/191_PaulyMilto_JacobYish.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndianaAngle2/191_PaulyMilto_JacobYish.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Luke Miller", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndiana/48_DanMetzdorf_LukeMiller.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndianaAngle2/48_DanMetzdorf_LukeMiller.mp4", | |
| "vlaunch": "0.493" | |
| }, | |
| { | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Ryan Fineman", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndiana/134_DanMetzdorf_RyanFineman.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndianaAngle2/134_DanMetzdorf_RyanFineman.mp4", | |
| "vlaunch": "32.383" | |
| }, | |
| { | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Jack Cunningham", | |
| "result": "Error", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndiana/194_PaulyMilto_JackCunningham.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndianaAngle2/194_PaulyMilto_JackCunningham.mp4", | |
| "vlaunch": "-4.418" | |
| }, | |
| { | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Logan Sowers", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndiana/53_DanMetzdorf_LoganSowers.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndianaAngle2/53_DanMetzdorf_LoganSowers.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Matt Gorski", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndiana/138_DanMetzdorf_MattGorski.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndianaAngle2/138_DanMetzdorf_MattGorski.mp4", | |
| "vlaunch": "14.786" | |
| }, | |
| { | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Logan Kaletha", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndiana/197_SeanHughes_LoganKaletha.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndianaAngle2/197_SeanHughes_LoganKaletha.mp4", | |
| "vlaunch": "33.852" | |
| }, | |
| { | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Jacob Yish", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndiana/59_PaulyMilto_JacobYish.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndianaAngle2/59_PaulyMilto_JacobYish.mp4", | |
| "vlaunch": "16.014" | |
| }, | |
| { | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Justin Walker", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndiana/139_DanMetzdorf_JustinWalker.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndianaAngle2/139_DanMetzdorf_JustinWalker.mp4", | |
| "vlaunch": "52.571" | |
| }, | |
| { | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Jake Palomaki", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndiana/211_PaulyMilto_JakePalomaki.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndianaAngle2/211_PaulyMilto_JakePalomaki.mp4", | |
| "vlaunch": "23.677" | |
| }, | |
| { | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Jack Cunningham", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndiana/64_PaulyMilto_JackCunningham.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndianaAngle2/64_PaulyMilto_JackCunningham.mp4", | |
| "vlaunch": "0.296" | |
| }, | |
| { | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Brian Dempsey", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndiana/145_PaulyMilto_BrianDempsey.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-02-24/BostonCollegevsIndianaAngle2/145_PaulyMilto_BrianDempsey.mp4", | |
| "vlaunch": "21.494" | |
| }, | |
| { | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "Sean Williams", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallie/77_MasonDenaburg_SeanWilliams.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallieAngle2/77_MasonDenaburg_SeanWilliams.mp4", | |
| "vlaunch": "0.433" | |
| }, | |
| { | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "Tyler McCuiston", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallie/230_ChaseVictor_TylerMcCuiston.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallieAngle2/230_ChaseVictor_TylerMcCuiston.mp4", | |
| "vlaunch": "14.456" | |
| }, | |
| { | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "Ian Kalman", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallie/84_MasonDenaburg_IanKalman.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallieAngle2/84_MasonDenaburg_IanKalman.mp4", | |
| "vlaunch": "10.060" | |
| }, | |
| { | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "Colby Velasquez", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallie/234_ChaseVictor_ColbyVelasquez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallieAngle2/234_ChaseVictor_ColbyVelasquez.mp4", | |
| "vlaunch": "-34.857" | |
| }, | |
| { | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "Carter Stewart", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallie/90_MasonDenaburg_CarterStewart.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallieAngle2/90_MasonDenaburg_CarterStewart.mp4", | |
| "vlaunch": "18.712" | |
| }, | |
| { | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "RJ Diaz", | |
| "result": "Error", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallie/97_CarterStewart_RJDiaz.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallieAngle2/97_CarterStewart_RJDiaz.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "Ian Farrow", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallie/98_CarterStewart_IanFarrow.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallieAngle2/98_CarterStewart_IanFarrow.mp4", | |
| "vlaunch": "22.241" | |
| }, | |
| { | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "Joe Johnson Jr.", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallie/101_CarterStewart_JoeJohnsonJr..mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallieAngle2/101_CarterStewart_JoeJohnsonJr..mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "Alex Nigh", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallie/114_CarterStewart_AlexNigh.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallieAngle2/114_CarterStewart_AlexNigh.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "Sam Teter", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallie/119_MasonDenaburg_SamTeter.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallieAngle2/119_MasonDenaburg_SamTeter.mp4", | |
| "vlaunch": "-39.745" | |
| }, | |
| { | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "Kyle Dentmon", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallie/136_CarterStewart_KyleDentmon.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallieAngle2/136_CarterStewart_KyleDentmon.mp4", | |
| "vlaunch": "23.107" | |
| }, | |
| { | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "Ian Kalman", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallie/19_MasonDenaburg_IanKalman.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallieAngle2/19_MasonDenaburg_IanKalman.mp4", | |
| "vlaunch": "30.853" | |
| }, | |
| { | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "Sean Williams", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallie/144_MasonDenaburg_SeanWilliams.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallieAngle2/144_MasonDenaburg_SeanWilliams.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "Trey Jackson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallie/21_MasonDenaburg_TreyJackson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallieAngle2/21_MasonDenaburg_TreyJackson.mp4", | |
| "vlaunch": "48.438" | |
| }, | |
| { | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "Ian Kalman", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallie/151_MasonDenaburg_IanKalman.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallieAngle2/151_MasonDenaburg_IanKalman.mp4", | |
| "vlaunch": "2.140" | |
| }, | |
| { | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "Carter Stewart", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallie/29_MasonDenaburg_CarterStewart.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallieAngle2/29_MasonDenaburg_CarterStewart.mp4", | |
| "vlaunch": "-1.286" | |
| }, | |
| { | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "Joe Johnson Jr.", | |
| "result": "Error", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallie/170_NickPogue_JoeJohnsonJr..mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallieAngle2/170_NickPogue_JoeJohnsonJr..mp4", | |
| "vlaunch": "41.241" | |
| }, | |
| { | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "RJ Diaz", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallie/40_CarterStewart_RJDiaz.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallieAngle2/40_CarterStewart_RJDiaz.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "Nick Avidellas", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallie/176_NickPogue_NickAvidellas.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallieAngle2/176_NickPogue_NickAvidellas.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "Sam Teter", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallie/53_MasonDenaburg_SamTeter.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallieAngle2/53_MasonDenaburg_SamTeter.mp4", | |
| "vlaunch": "23.741" | |
| }, | |
| { | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "Chase Victor", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallie/210_NickPogue_ChaseVictor.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallieAngle2/210_NickPogue_ChaseVictor.mp4", | |
| "vlaunch": "-40.338" | |
| }, | |
| { | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "Alex Nigh", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallie/69_CarterStewart_AlexNigh.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallieAngle2/69_CarterStewart_AlexNigh.mp4", | |
| "vlaunch": "44.230" | |
| }, | |
| { | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "Ian Farrow", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallie/218_NickPogue_IanFarrow.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallieAngle2/218_NickPogue_IanFarrow.mp4", | |
| "vlaunch": "23.613" | |
| }, | |
| { | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "Mason Denaburg", | |
| "result": "Triple", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallie/70_CarterStewart_MasonDenaburg.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallieAngle2/70_CarterStewart_MasonDenaburg.mp4", | |
| "vlaunch": "11.734" | |
| }, | |
| { | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "Joe Johnson Jr.", | |
| "result": "Error", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallie/219_NickPogue_JoeJohnsonJr..mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-07/MerrittIslandvsEauGallieAngle2/219_NickPogue_JoeJohnsonJr..mp4", | |
| "vlaunch": "7.332" | |
| }, | |
| { | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Mario Moralez", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCC/174_KyleMandujano_MarioMoralez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCCAngle2/174_KyleMandujano_MarioMoralez.mp4", | |
| "vlaunch": "14.706" | |
| }, | |
| { | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Jackson Dvorak", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCC/9_LukeMatheny_JacksonDvorak.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCCAngle2/9_LukeMatheny_JacksonDvorak.mp4", | |
| "vlaunch": "29.128" | |
| }, | |
| { | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Andrew Olszewski", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCC/69_LukeMatheny_AndrewOlszewski.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCCAngle2/69_LukeMatheny_AndrewOlszewski.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Joseph Preusser", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCC/182_AustinKelly_JosephPreusser.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCCAngle2/182_AustinKelly_JosephPreusser.mp4", | |
| "vlaunch": "24.166" | |
| }, | |
| { | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Matthew Goodheart", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCC/13_JosephPreusser_MatthewGoodheart.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCCAngle2/13_JosephPreusser_MatthewGoodheart.mp4", | |
| "vlaunch": "-8.457" | |
| }, | |
| { | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Joseph Preusser", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCC/73_LukeMatheny_JosephPreusser.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCCAngle2/73_LukeMatheny_JosephPreusser.mp4", | |
| "vlaunch": "12.667" | |
| }, | |
| { | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Jackson Dvorak", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCC/192_AustinKelly_JacksonDvorak.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCCAngle2/192_AustinKelly_JacksonDvorak.mp4", | |
| "vlaunch": "-3.710" | |
| }, | |
| { | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Andres Sosa", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCC/14_JosephPreusser_AndresSosa.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCCAngle2/14_JosephPreusser_AndresSosa.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Mario Moralez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCC/87_JosephPreusser_MarioMoralez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCCAngle2/87_JosephPreusser_MarioMoralez.mp4", | |
| "vlaunch": "23.691" | |
| }, | |
| { | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Matt Waznis", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCC/199_AustinKelly_MattWaznis.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCCAngle2/199_AustinKelly_MattWaznis.mp4", | |
| "vlaunch": "11.247" | |
| }, | |
| { | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Alerick Solearie", | |
| "result": "Error", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCC/15_JosephPreusser_AlerickSolearie.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCCAngle2/15_JosephPreusser_AlerickSolearie.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Herbert Iser", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCC/88_JosephPreusser_HerbertIser.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCCAngle2/88_JosephPreusser_HerbertIser.mp4", | |
| "vlaunch": "8.326" | |
| }, | |
| { | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Tyriece Silas", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCC/92_JosephPreusser_TyrieceSilas.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCCAngle2/92_JosephPreusser_TyrieceSilas.mp4", | |
| "vlaunch": "19.369" | |
| }, | |
| { | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Tyriece Silas", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCC/206_VelozRyan_TyrieceSilas.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCCAngle2/206_VelozRyan_TyrieceSilas.mp4", | |
| "vlaunch": "21.223" | |
| }, | |
| { | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Sergio Macias", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCC/17_JosephPreusser_SergioMacias.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCCAngle2/17_JosephPreusser_SergioMacias.mp4", | |
| "vlaunch": "20.877" | |
| }, | |
| { | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Matthew Goodheart", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCC/101_JosephPreusser_MatthewGoodheart.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCCAngle2/101_JosephPreusser_MatthewGoodheart.mp4", | |
| "vlaunch": "33.988" | |
| }, | |
| { | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "DJ Stephens", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCC/208_VelozRyan_DJStephens.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCCAngle2/208_VelozRyan_DJStephens.mp4", | |
| "vlaunch": "0.260" | |
| }, | |
| { | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Jake Matheny", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCC/23_JosephPreusser_JakeMatheny.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCCAngle2/23_JosephPreusser_JakeMatheny.mp4", | |
| "vlaunch": "-5.765" | |
| }, | |
| { | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Matt Waznis", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCC/111_LukeMatheny_MattWaznis.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCCAngle2/111_LukeMatheny_MattWaznis.mp4", | |
| "vlaunch": "28.499" | |
| }, | |
| { | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Matthew Goodheart", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCC/216_VelozRyan_MatthewGoodheart.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCCAngle2/216_VelozRyan_MatthewGoodheart.mp4", | |
| "vlaunch": "6.940" | |
| }, | |
| { | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Mario Moralez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCC/25_JosephPreusser_MarioMoralez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCCAngle2/25_JosephPreusser_MarioMoralez.mp4", | |
| "vlaunch": "35.712" | |
| }, | |
| { | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Alerick Solearie", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCC/121_JosephPreusser_AlerickSolearie.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCCAngle2/121_JosephPreusser_AlerickSolearie.mp4", | |
| "vlaunch": "-7.512" | |
| }, | |
| { | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Andres Sosa", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCC/220_VelozRyan_AndresSosa.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCCAngle2/220_VelozRyan_AndresSosa.mp4", | |
| "vlaunch": "-0.738" | |
| }, | |
| { | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Diego Rincon", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCC/30_LukeMatheny_DiegoRincon.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCCAngle2/30_LukeMatheny_DiegoRincon.mp4", | |
| "vlaunch": "39.621" | |
| }, | |
| { | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Sergio Macias", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCC/126_JosephPreusser_SergioMacias.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCCAngle2/126_JosephPreusser_SergioMacias.mp4", | |
| "vlaunch": "-1.962" | |
| }, | |
| { | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Dashon Moore", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCC/226_LuisQuinones_DashonMoore.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCCAngle2/226_LuisQuinones_DashonMoore.mp4", | |
| "vlaunch": "50.977" | |
| }, | |
| { | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Matt Waznis", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCC/35_LukeMatheny_MattWaznis.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCCAngle2/35_LukeMatheny_MattWaznis.mp4", | |
| "vlaunch": "-1.788" | |
| }, | |
| { | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Jake Matheny", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCC/129_JosephPreusser_JakeMatheny.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCCAngle2/129_JosephPreusser_JakeMatheny.mp4", | |
| "vlaunch": "17.150" | |
| }, | |
| { | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Dashon Moore", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCC/38_LukeMatheny_DashonMoore.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCCAngle2/38_LukeMatheny_DashonMoore.mp4", | |
| "vlaunch": "6.457" | |
| }, | |
| { | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Mario Moralez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCC/133_JosephPreusser_MarioMoralez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCCAngle2/133_JosephPreusser_MarioMoralez.mp4", | |
| "vlaunch": "47.768" | |
| }, | |
| { | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Jordan Fox", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCC/40_LukeMatheny_JordanFox.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCCAngle2/40_LukeMatheny_JordanFox.mp4", | |
| "vlaunch": "20.627" | |
| }, | |
| { | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Herbert Iser", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCC/134_JosephPreusser_HerbertIser.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCCAngle2/134_JosephPreusser_HerbertIser.mp4", | |
| "vlaunch": "5.217" | |
| }, | |
| { | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Herbert Iser", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCC/43_JosephPreusser_HerbertIser.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCCAngle2/43_JosephPreusser_HerbertIser.mp4", | |
| "vlaunch": "6.963" | |
| }, | |
| { | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Tyriece Silas", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCC/137_JosephPreusser_TyrieceSilas.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCCAngle2/137_JosephPreusser_TyrieceSilas.mp4", | |
| "vlaunch": "56.011" | |
| }, | |
| { | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Tyriece Silas", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCC/46_JosephPreusser_TyrieceSilas.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCCAngle2/46_JosephPreusser_TyrieceSilas.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Matt Wiseman", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCC/138_JosephPreusser_MattWiseman.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCCAngle2/138_JosephPreusser_MattWiseman.mp4", | |
| "vlaunch": "22.490" | |
| }, | |
| { | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Matt Wiseman", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCC/49_JosephPreusser_MattWiseman.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCCAngle2/49_JosephPreusser_MattWiseman.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Andres Sosa", | |
| "result": "Error", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCC/162_KyleMandujano_AndresSosa.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCCAngle2/162_KyleMandujano_AndresSosa.mp4", | |
| "vlaunch": "18.494" | |
| }, | |
| { | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Joseph Preusser", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCC/6_LukeMatheny_JosephPreusser.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCCAngle2/6_LukeMatheny_JosephPreusser.mp4", | |
| "vlaunch": "11.046" | |
| }, | |
| { | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Matthew Goodheart", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCC/51_JosephPreusser_MatthewGoodheart.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCCAngle2/51_JosephPreusser_MatthewGoodheart.mp4", | |
| "vlaunch": "3.376" | |
| }, | |
| { | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Sergio Macias", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCC/169_KyleMandujano_SergioMacias.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCCAngle2/169_KyleMandujano_SergioMacias.mp4", | |
| "vlaunch": "24.934" | |
| }, | |
| { | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Ray Hansen", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCC/8_LukeMatheny_RayHansen.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCCAngle2/8_LukeMatheny_RayHansen.mp4", | |
| "vlaunch": "19.033" | |
| }, | |
| { | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Sergio Macias", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCC/60_JosephPreusser_SergioMacias.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-13/SanJacintoCCvsSouthSuburbanCCAngle2/60_JosephPreusser_SergioMacias.mp4", | |
| "vlaunch": "3.393" | |
| }, | |
| { | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Grant Ashline", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollins/42_MikhailCazenave_GrantAshline.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollinsAngle2/42_MikhailCazenave_GrantAshline.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Evan Dougherty", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollins/182_CalebJakes_EvanDougherty.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollinsAngle2/182_CalebJakes_EvanDougherty.mp4", | |
| "vlaunch": "13.269" | |
| }, | |
| { | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Riley Herold", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollins/1_CameronEnck_RileyHerold.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollinsAngle2/1_CameronEnck_RileyHerold.mp4", | |
| "vlaunch": "57.615" | |
| }, | |
| { | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Ryan Johnson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollins/49_CameronEnck_RyanJohnson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollinsAngle2/49_CameronEnck_RyanJohnson.mp4", | |
| "vlaunch": "16.912" | |
| }, | |
| { | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Sean Houck", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollins/183_CalebJakes_SeanHouck.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollinsAngle2/183_CalebJakes_SeanHouck.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Kyle Simon", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollins/4_CameronEnck_KyleSimon.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollinsAngle2/4_CameronEnck_KyleSimon.mp4", | |
| "vlaunch": "47.013" | |
| }, | |
| { | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Isaiah Russell", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollins/62_MikhailCazenave_IsaiahRussell.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollinsAngle2/62_MikhailCazenave_IsaiahRussell.mp4", | |
| "vlaunch": "15.336" | |
| }, | |
| { | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Jake Summey", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollins/184_CalebJakes_JakeSummey.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollinsAngle2/184_CalebJakes_JakeSummey.mp4", | |
| "vlaunch": "19.941" | |
| }, | |
| { | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Bobby Brennan", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollins/5_CameronEnck_BobbyBrennan.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollinsAngle2/5_CameronEnck_BobbyBrennan.mp4", | |
| "vlaunch": "55.199" | |
| }, | |
| { | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Brendan Brundage", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollins/64_MikhailCazenave_BrendanBrundage.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollinsAngle2/64_MikhailCazenave_BrendanBrundage.mp4", | |
| "vlaunch": "-2.443" | |
| }, | |
| { | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Ryan Johnson", | |
| "result": "Error", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollins/185_CalebJakes_RyanJohnson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollinsAngle2/185_CalebJakes_RyanJohnson.mp4", | |
| "vlaunch": "11.475" | |
| }, | |
| { | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Brendan Brundage", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollins/7_MikhailCazenave_BrendanBrundage.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollinsAngle2/7_MikhailCazenave_BrendanBrundage.mp4", | |
| "vlaunch": "30.712" | |
| }, | |
| { | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Riley Herold", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollins/69_CameronEnck_RileyHerold.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollinsAngle2/69_CameronEnck_RileyHerold.mp4", | |
| "vlaunch": "58.484" | |
| }, | |
| { | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Sam LaFontaine", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollins/189_MitchellCarroll_SamLaFontaine.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollinsAngle2/189_MitchellCarroll_SamLaFontaine.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Danny Tufariello", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollins/24_CameronEnck_DannyTufariello.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollinsAngle2/24_CameronEnck_DannyTufariello.mp4", | |
| "vlaunch": "20.903" | |
| }, | |
| { | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Danny Tufariello", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollins/79_CameronEnck_DannyTufariello.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollinsAngle2/79_CameronEnck_DannyTufariello.mp4", | |
| "vlaunch": "2.689" | |
| }, | |
| { | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Joe Cosgrove", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollins/190_MitchellCarroll_JoeCosgrove.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollinsAngle2/190_MitchellCarroll_JoeCosgrove.mp4", | |
| "vlaunch": "12.662" | |
| }, | |
| { | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Sean Houck", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollins/32_CameronEnck_SeanHouck.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollinsAngle2/32_CameronEnck_SeanHouck.mp4", | |
| "vlaunch": "26.373" | |
| }, | |
| { | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Evan Dougherty", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollins/82_CameronEnck_EvanDougherty.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollinsAngle2/82_CameronEnck_EvanDougherty.mp4", | |
| "vlaunch": "24.951" | |
| }, | |
| { | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Brendan Brundage", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollins/197_MitchellCarroll_BrendanBrundage.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollinsAngle2/197_MitchellCarroll_BrendanBrundage.mp4", | |
| "vlaunch": "-41.988" | |
| }, | |
| { | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Nick Breen", | |
| "result": "Error", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollins/35_MikhailCazenave_NickBreen.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollinsAngle2/35_MikhailCazenave_NickBreen.mp4", | |
| "vlaunch": "-7.142" | |
| }, | |
| { | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Sean Houck", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollins/86_CameronEnck_SeanHouck.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollinsAngle2/86_CameronEnck_SeanHouck.mp4", | |
| "vlaunch": "-37.876" | |
| }, | |
| { | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Nick Santucci", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollins/205_MitchellCarroll_NickSantucci.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollinsAngle2/205_MitchellCarroll_NickSantucci.mp4", | |
| "vlaunch": "20.859" | |
| }, | |
| { | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Brian Brooker", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollins/40_MikhailCazenave_BrianBrooker.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollinsAngle2/40_MikhailCazenave_BrianBrooker.mp4", | |
| "vlaunch": "2.532" | |
| }, | |
| { | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Luke Reidy", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollins/90_MikhailCazenave_LukeReidy.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollinsAngle2/90_MikhailCazenave_LukeReidy.mp4", | |
| "vlaunch": "31.846" | |
| }, | |
| { | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Riley Herold", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollins/213_CalebJakes_RileyHerold.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollinsAngle2/213_CalebJakes_RileyHerold.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Nick Santucci", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollins/95_MikhailCazenave_NickSantucci.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollinsAngle2/95_MikhailCazenave_NickSantucci.mp4", | |
| "vlaunch": "57.143" | |
| }, | |
| { | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Kyle Simon", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollins/215_CalebJakes_KyleSimon.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollinsAngle2/215_CalebJakes_KyleSimon.mp4", | |
| "vlaunch": "19.249" | |
| }, | |
| { | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Sam LaFontaine", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollins/136_MikhailCazenave_SamLaFontaine.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollinsAngle2/136_MikhailCazenave_SamLaFontaine.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Danny Tufariello", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollins/223_CalebJakes_DannyTufariello.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollinsAngle2/223_CalebJakes_DannyTufariello.mp4", | |
| "vlaunch": "10.051" | |
| }, | |
| { | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Brendan Brundage", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollins/143_MikhailCazenave_BrendanBrundage.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollinsAngle2/143_MikhailCazenave_BrendanBrundage.mp4", | |
| "vlaunch": "-24.125" | |
| }, | |
| { | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Nick Breen", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollins/229_JoeyHennessey_NickBreen.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollinsAngle2/229_JoeyHennessey_NickBreen.mp4", | |
| "vlaunch": "48.298" | |
| }, | |
| { | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Riley Herold", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollins/159_CalebJakes_RileyHerold.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollinsAngle2/159_CalebJakes_RileyHerold.mp4", | |
| "vlaunch": "-37.870" | |
| }, | |
| { | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Grant Ashline", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollins/247_JoeyHennessey_GrantAshline.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollinsAngle2/247_JoeyHennessey_GrantAshline.mp4", | |
| "vlaunch": "45.524" | |
| }, | |
| { | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Ryan Johnson", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollins/165_CalebJakes_RyanJohnson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollinsAngle2/165_CalebJakes_RyanJohnson.mp4", | |
| "vlaunch": "12.733" | |
| }, | |
| { | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Joe Cosgrove", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollins/256_BlakeBeyel_JoeCosgrove.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollinsAngle2/256_BlakeBeyel_JoeCosgrove.mp4", | |
| "vlaunch": "12.370" | |
| }, | |
| { | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Danny Tufariello", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollins/167_CalebJakes_DannyTufariello.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollinsAngle2/167_CalebJakes_DannyTufariello.mp4", | |
| "vlaunch": "-5.834" | |
| }, | |
| { | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Brian Brooker", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollins/172_MitchellCarroll_BrianBrooker.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-16/PBAvsRollinsAngle2/172_MitchellCarroll_BrianBrooker.mp4", | |
| "vlaunch": "48.055" | |
| }, | |
| { | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Danny Maynard", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversity/221_ArmandoGonzalez_DannyMaynard.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversityAngle2/221_ArmandoGonzalez_DannyMaynard.mp4", | |
| "vlaunch": "13.236" | |
| }, | |
| { | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Darren Miller", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversity/114_PabloArevalo_DarrenMiller.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversityAngle2/114_PabloArevalo_DarrenMiller.mp4", | |
| "vlaunch": "9.879" | |
| }, | |
| { | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Alexis Monge-Rodriguez", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversity/229_JordanLeasure_AlexisMonge-Rodriguez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversityAngle2/229_JordanLeasure_AlexisMonge-Rodriguez.mp4", | |
| "vlaunch": "19.117" | |
| }, | |
| { | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Connor Crile", | |
| "result": "Error", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversity/116_PabloArevalo_ConnorCrile.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversityAngle2/116_PabloArevalo_ConnorCrile.mp4", | |
| "vlaunch": "-5.544" | |
| }, | |
| { | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Arrison Perez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversity/232_JordanLeasure_ArrisonPerez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversityAngle2/232_JordanLeasure_ArrisonPerez.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Stephen Smith", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversity/20_PabloArevalo_StephenSmith.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversityAngle2/20_PabloArevalo_StephenSmith.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Richie Rivera", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversity/117_PabloArevalo_RichieRivera.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversityAngle2/117_PabloArevalo_RichieRivera.mp4", | |
| "vlaunch": "24.440" | |
| }, | |
| { | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Brandon Gali", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversity/120_PabloArevalo_BrandonGali.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversityAngle2/120_PabloArevalo_BrandonGali.mp4", | |
| "vlaunch": "33.851" | |
| }, | |
| { | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Andrew Rapoza", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversity/238_JordanLeasure_AndrewRapoza.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversityAngle2/238_JordanLeasure_AndrewRapoza.mp4", | |
| "vlaunch": "3.134" | |
| }, | |
| { | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Ryan Baldwin", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversity/27_DavidLebron_RyanBaldwin.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversityAngle2/27_DavidLebron_RyanBaldwin.mp4", | |
| "vlaunch": "7.343" | |
| }, | |
| { | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Stephen Smith", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversity/129_PabloArevalo_StephenSmith.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversityAngle2/129_PabloArevalo_StephenSmith.mp4", | |
| "vlaunch": "22.708" | |
| }, | |
| { | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Darren Miller", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversity/242_ArmandoGonzalez_DarrenMiller.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversityAngle2/242_ArmandoGonzalez_DarrenMiller.mp4", | |
| "vlaunch": "17.924" | |
| }, | |
| { | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Garrett Thompson", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversity/30_DavidLebron_GarrettThompson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversityAngle2/30_DavidLebron_GarrettThompson.mp4", | |
| "vlaunch": "13.551" | |
| }, | |
| { | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Drew Ehrhard", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversity/136_PabloArevalo_DrewEhrhard.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversityAngle2/136_PabloArevalo_DrewEhrhard.mp4", | |
| "vlaunch": "0.732" | |
| }, | |
| { | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Jack Loefflad", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversity/249_ArmandoGonzalez_JackLoefflad.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversityAngle2/249_ArmandoGonzalez_JackLoefflad.mp4", | |
| "vlaunch": "23.931" | |
| }, | |
| { | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Nick DeTringo", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversity/54_PabloArevalo_NickDeTringo.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversityAngle2/54_PabloArevalo_NickDeTringo.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Arrison Perez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversity/162_DavidLebron_ArrisonPerez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversityAngle2/162_DavidLebron_ArrisonPerez.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Justin Lamazares", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversity/252_JordanLeasure_JustinLamazares.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversityAngle2/252_JordanLeasure_JustinLamazares.mp4", | |
| "vlaunch": "10.248" | |
| }, | |
| { | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Connor Crile", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversity/66_PabloArevalo_ConnorCrile.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversityAngle2/66_PabloArevalo_ConnorCrile.mp4", | |
| "vlaunch": "21.682" | |
| }, | |
| { | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Andrew Rapoza", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversity/167_DavidLebron_AndrewRapoza.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversityAngle2/167_DavidLebron_AndrewRapoza.mp4", | |
| "vlaunch": "13.458" | |
| }, | |
| { | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Jonathan Quintana", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversity/260_JordanLeasure_JonathanQuintana.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversityAngle2/260_JordanLeasure_JonathanQuintana.mp4", | |
| "vlaunch": "7.354" | |
| }, | |
| { | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Richie Rivera", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversity/70_PabloArevalo_RichieRivera.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversityAngle2/70_PabloArevalo_RichieRivera.mp4", | |
| "vlaunch": "14.370" | |
| }, | |
| { | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Danny Sirven", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversity/176_ArmandoGonzalez_DannySirven.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversityAngle2/176_ArmandoGonzalez_DannySirven.mp4", | |
| "vlaunch": "8.221" | |
| }, | |
| { | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Reuben Pino", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversity/273_JordanLeasure_ReubenPino.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversityAngle2/273_JordanLeasure_ReubenPino.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Brandon Gali", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversity/72_PabloArevalo_BrandonGali.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversityAngle2/72_PabloArevalo_BrandonGali.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Darren Miller", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversity/179_ArmandoGonzalez_DarrenMiller.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversityAngle2/179_ArmandoGonzalez_DarrenMiller.mp4", | |
| "vlaunch": "33.852" | |
| }, | |
| { | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Richie Sobalvarro", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversity/275_JordanLeasure_RichieSobalvarro.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversityAngle2/275_JordanLeasure_RichieSobalvarro.mp4", | |
| "vlaunch": "46.581" | |
| }, | |
| { | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Andrew Rapoza", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversity/76_DavidLebron_AndrewRapoza.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversityAngle2/76_DavidLebron_AndrewRapoza.mp4", | |
| "vlaunch": "29.249" | |
| }, | |
| { | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Connor Crile", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversity/181_ArmandoGonzalez_ConnorCrile.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversityAngle2/181_ArmandoGonzalez_ConnorCrile.mp4", | |
| "vlaunch": "17.723" | |
| }, | |
| { | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Richie Rivera", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversity/280_ArmandoGonzalez_RichieRivera.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversityAngle2/280_ArmandoGonzalez_RichieRivera.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Justin Lamazares", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversity/77_DavidLebron_JustinLamazares.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversityAngle2/77_DavidLebron_JustinLamazares.mp4", | |
| "vlaunch": "11.399" | |
| }, | |
| { | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Richie Rivera", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversity/183_ArmandoGonzalez_RichieRivera.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversityAngle2/183_ArmandoGonzalez_RichieRivera.mp4", | |
| "vlaunch": "6.283" | |
| }, | |
| { | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Brandon Gali", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversity/281_ArmandoGonzalez_BrandonGali.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversityAngle2/281_ArmandoGonzalez_BrandonGali.mp4", | |
| "vlaunch": "19.841" | |
| }, | |
| { | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Anthony Boix", | |
| "result": "Error", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversity/87_DavidLebron_AnthonyBoix.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversityAngle2/87_DavidLebron_AnthonyBoix.mp4", | |
| "vlaunch": "27.942" | |
| }, | |
| { | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Brandon Gali", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversity/184_ArmandoGonzalez_BrandonGali.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversityAngle2/184_ArmandoGonzalez_BrandonGali.mp4", | |
| "vlaunch": "-6.566" | |
| }, | |
| { | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Alexis Monge-Rodriguez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversity/294_ChristianCalleja_AlexisMonge-Rodriguez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversityAngle2/294_ChristianCalleja_AlexisMonge-Rodriguez.mp4", | |
| "vlaunch": "4.979" | |
| }, | |
| { | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Daniel Broeseker", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversity/88_DavidLebron_DanielBroeseker.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversityAngle2/88_DavidLebron_DanielBroeseker.mp4", | |
| "vlaunch": "17.664" | |
| }, | |
| { | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Jonathan Quintana", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversity/191_JordanLeasure_JonathanQuintana.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversityAngle2/191_JordanLeasure_JonathanQuintana.mp4", | |
| "vlaunch": "12.588" | |
| }, | |
| { | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Arrison Perez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversity/297_ChristianCalleja_ArrisonPerez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversityAngle2/297_ChristianCalleja_ArrisonPerez.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Nick DeTringo", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversity/94_PabloArevalo_NickDeTringo.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversityAngle2/94_PabloArevalo_NickDeTringo.mp4", | |
| "vlaunch": "17.729" | |
| }, | |
| { | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Ryan Baldwin", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversity/196_JordanLeasure_RyanBaldwin.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversityAngle2/196_JordanLeasure_RyanBaldwin.mp4", | |
| "vlaunch": "2.585" | |
| }, | |
| { | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Ryan Baldwin", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversity/96_DavidLebron_RyanBaldwin.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversityAngle2/96_DavidLebron_RyanBaldwin.mp4", | |
| "vlaunch": "21.683" | |
| }, | |
| { | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Stephen Smith", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversity/211_ArmandoGonzalez_StephenSmith.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversityAngle2/211_ArmandoGonzalez_StephenSmith.mp4", | |
| "vlaunch": "49.285" | |
| }, | |
| { | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Danny Sirven", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversity/113_PabloArevalo_DannySirven.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-23/UniversityofTampavsBarryUniversityAngle2/113_PabloArevalo_DannySirven.mp4", | |
| "vlaunch": "13.013" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Drew Burkhart", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/190_Ping-ChunHo_DrewBurkhart.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/190_Ping-ChunHo_DrewBurkhart.mp4", | |
| "vlaunch": "16.343" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Stephen Smith", | |
| "result": "Error", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/21_MikeMiles_StephenSmith.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/21_MikeMiles_StephenSmith.mp4", | |
| "vlaunch": "15.759" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Ryan Baldwin", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/90_KevenPimentel_RyanBaldwin.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/90_KevenPimentel_RyanBaldwin.mp4", | |
| "vlaunch": "31.682" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Richie Rivera", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/140_AnthonyGutierrez_RichieRivera.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/140_AnthonyGutierrez_RichieRivera.mp4", | |
| "vlaunch": "-8.287" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Arrison Perez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/198_ColeAker_ArrisonPerez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/198_ColeAker_ArrisonPerez.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Drew Ehrhard", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/24_MikeMiles_DrewEhrhard.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/24_MikeMiles_DrewEhrhard.mp4", | |
| "vlaunch": "14.905" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Garrett Thompson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/92_KevenPimentel_GarrettThompson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/92_KevenPimentel_GarrettThompson.mp4", | |
| "vlaunch": "19.144" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Brandon Gali", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/142_AnthonyGutierrez_BrandonGali.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/142_AnthonyGutierrez_BrandonGali.mp4", | |
| "vlaunch": "21.840" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Stephen Smith", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/145_AnthonyGutierrez_StephenSmith.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/145_AnthonyGutierrez_StephenSmith.mp4", | |
| "vlaunch": "8.442" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Justin Lamazares", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/207_ColeAker_JustinLamazares.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/207_ColeAker_JustinLamazares.mp4", | |
| "vlaunch": "16.026" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Harrison Bragg", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/26_MikeMiles_HarrisonBragg.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/26_MikeMiles_HarrisonBragg.mp4", | |
| "vlaunch": "15.201" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Reuben Pino", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/96_KevenPimentel_ReubenPino.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/96_KevenPimentel_ReubenPino.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Drew Ehrhard", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/147_AnthonyGutierrez_DrewEhrhard.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/147_AnthonyGutierrez_DrewEhrhard.mp4", | |
| "vlaunch": "-0.375" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Jack Loefflad", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/221_Ping-ChunHo_JackLoefflad.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/221_Ping-ChunHo_JackLoefflad.mp4", | |
| "vlaunch": "12.544" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Danny Sirven", | |
| "result": "Error", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/34_MikeMiles_DannySirven.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/34_MikeMiles_DannySirven.mp4", | |
| "vlaunch": "7.444" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Connor Crile", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/97_IsrealCordero_ConnorCrile.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/97_IsrealCordero_ConnorCrile.mp4", | |
| "vlaunch": "15.392" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Danny Sirven", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/149_AnthonyGutierrez_DannySirven.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/149_AnthonyGutierrez_DannySirven.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Garrett Thompson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/233_ColeAker_GarrettThompson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/233_ColeAker_GarrettThompson.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Nick DeTringo", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/46_IsrealCordero_NickDeTringo.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/46_IsrealCordero_NickDeTringo.mp4", | |
| "vlaunch": "0.840" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Nick DeTringo", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/101_IsrealCordero_NickDeTringo.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/101_IsrealCordero_NickDeTringo.mp4", | |
| "vlaunch": "7.873" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Darren Miller", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/154_AnthonyGutierrez_DarrenMiller.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/154_AnthonyGutierrez_DarrenMiller.mp4", | |
| "vlaunch": "11.025" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Reuben Pino", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/235_ColeAker_ReubenPino.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/235_ColeAker_ReubenPino.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Alexis Monge-Rodriguez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/47_KevenPimentel_AlexisMonge-Rodriguez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/47_KevenPimentel_AlexisMonge-Rodriguez.mp4", | |
| "vlaunch": "12.692" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Richie Rivera", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/103_IsrealCordero_RichieRivera.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/103_IsrealCordero_RichieRivera.mp4", | |
| "vlaunch": "16.181" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Connor Crile", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/157_AnthonyGutierrez_ConnorCrile.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/157_AnthonyGutierrez_ConnorCrile.mp4", | |
| "vlaunch": "18.373" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Joel Alvarez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/49_KevenPimentel_JoelAlvarez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/49_KevenPimentel_JoelAlvarez.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Stephen Smith", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/105_IsrealCordero_StephenSmith.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/105_IsrealCordero_StephenSmith.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Nick DeTringo", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/158_Ping-ChunHo_NickDeTringo.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/158_Ping-ChunHo_NickDeTringo.mp4", | |
| "vlaunch": "25.948" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Arrison Perez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/52_KevenPimentel_ArrisonPerez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/52_KevenPimentel_ArrisonPerez.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Alexis Monge-Rodriguez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/109_KevenPimentel_AlexisMonge-Rodriguez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/109_KevenPimentel_AlexisMonge-Rodriguez.mp4", | |
| "vlaunch": "-3.530" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Richie Rivera", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/161_Ping-ChunHo_RichieRivera.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/161_Ping-ChunHo_RichieRivera.mp4", | |
| "vlaunch": "34.657" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Richie Rivera", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/54_IsrealCordero_RichieRivera.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/54_IsrealCordero_RichieRivera.mp4", | |
| "vlaunch": "17.270" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Joel Alvarez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/111_KevenPimentel_JoelAlvarez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/111_KevenPimentel_JoelAlvarez.mp4", | |
| "vlaunch": "12.229" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Ryan Baldwin", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/168_KevenPimentel_RyanBaldwin.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/168_KevenPimentel_RyanBaldwin.mp4", | |
| "vlaunch": "14.285" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Brandon Gali", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/56_IsrealCordero_BrandonGali.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/56_IsrealCordero_BrandonGali.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Arrison Perez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/113_KevenPimentel_ArrisonPerez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/113_KevenPimentel_ArrisonPerez.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Garrett Thompson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/170_KevenPimentel_GarrettThompson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/170_KevenPimentel_GarrettThompson.mp4", | |
| "vlaunch": "26.259" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Stephen Smith", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/61_IsrealCordero_StephenSmith.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/61_IsrealCordero_StephenSmith.mp4", | |
| "vlaunch": "-16.588" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Drew Ehrhard", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/115_IsrealCordero_DrewEhrhard.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/115_IsrealCordero_DrewEhrhard.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Reuben Pino", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/172_KevenPimentel_ReubenPino.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/172_KevenPimentel_ReubenPino.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Drew Ehrhard", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/66_IsrealCordero_DrewEhrhard.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/66_IsrealCordero_DrewEhrhard.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Danny Sirven", | |
| "result": "Error", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/117_IsrealCordero_DannySirven.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/117_IsrealCordero_DannySirven.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Brandon Gali", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/179_Ping-ChunHo_BrandonGali.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/179_Ping-ChunHo_BrandonGali.mp4", | |
| "vlaunch": "45.118" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Andrew Rapoza", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/71_KevenPimentel_AndrewRapoza.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/71_KevenPimentel_AndrewRapoza.mp4", | |
| "vlaunch": "22.044" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Darren Miller", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/119_IsrealCordero_DarrenMiller.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/119_IsrealCordero_DarrenMiller.mp4", | |
| "vlaunch": "21.367" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Danny Maynard", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/180_Ping-ChunHo_DannyMaynard.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/180_Ping-ChunHo_DannyMaynard.mp4", | |
| "vlaunch": "8.766" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Jonathan Quintana", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/76_KevenPimentel_JonathanQuintana.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/76_KevenPimentel_JonathanQuintana.mp4", | |
| "vlaunch": "14.574" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Nick DeTringo", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/126_IsrealCordero_NickDeTringo.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/126_IsrealCordero_NickDeTringo.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Garrett Back", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/184_Ping-ChunHo_GarrettBack.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/184_Ping-ChunHo_GarrettBack.mp4", | |
| "vlaunch": "28.010" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Andrew Rapoza", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/1_KevenPimentel_AndrewRapoza.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/1_KevenPimentel_AndrewRapoza.mp4", | |
| "vlaunch": "1.023" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Harrison Bragg", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/79_IsrealCordero_HarrisonBragg.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/79_IsrealCordero_HarrisonBragg.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Andrew Rapoza", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/128_KevenPimentel_AndrewRapoza.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/128_KevenPimentel_AndrewRapoza.mp4", | |
| "vlaunch": "26.960" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Harrison Bragg", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/189_Ping-ChunHo_HarrisonBragg.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/189_Ping-ChunHo_HarrisonBragg.mp4", | |
| "vlaunch": "25.960" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Jonathan Quintana", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/11_KevenPimentel_JonathanQuintana.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/11_KevenPimentel_JonathanQuintana.mp4", | |
| "vlaunch": "10.852" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Darren Miller", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/88_IsrealCordero_DarrenMiller.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/88_IsrealCordero_DarrenMiller.mp4", | |
| "vlaunch": "14.483" | |
| }, | |
| { | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Jonathan Quintana", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/137_KevenPimentel_JonathanQuintana.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/137_KevenPimentel_JonathanQuintana.mp4", | |
| "vlaunch": "12.206" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Richie Sobalvarro", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/264_MarkMoclair_RichieSobalvarro.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/264_MarkMoclair_RichieSobalvarro.mp4", | |
| "vlaunch": "14.503" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Richie Rivera", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/59_JonathanHernandez_RichieRivera.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/59_JonathanHernandez_RichieRivera.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Jonathan Quintana", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/131_ClayHelvey_JonathanQuintana.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/131_ClayHelvey_JonathanQuintana.mp4", | |
| "vlaunch": "-10.447" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Nick DeTringo", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/200_RogerGarcia_NickDeTringo.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/200_RogerGarcia_NickDeTringo.mp4", | |
| "vlaunch": "21.028" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Richie Rivera", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/205_AngelAlmonte_RichieRivera.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/205_AngelAlmonte_RichieRivera.mp4", | |
| "vlaunch": "23.958" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Alexis Monge-Rodriguez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/265_MarkMoclair_AlexisMonge-Rodriguez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/265_MarkMoclair_AlexisMonge-Rodriguez.mp4", | |
| "vlaunch": "-5.968" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Chris Gaffney", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/63_JonathanHernandez_ChrisGaffney.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/63_JonathanHernandez_ChrisGaffney.mp4", | |
| "vlaunch": "33.573" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Ryan Baldwin", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/135_ClayHelvey_RyanBaldwin.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/135_ClayHelvey_RyanBaldwin.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Joel Alvarez", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/209_MarkMoclair_JoelAlvarez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/209_MarkMoclair_JoelAlvarez.mp4", | |
| "vlaunch": "7.297" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Brandon Gali", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/64_JonathanHernandez_BrandonGali.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/64_JonathanHernandez_BrandonGali.mp4", | |
| "vlaunch": "14.108" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Brandon Gali", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/139_JonathanHernandez_BrandonGali.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/139_JonathanHernandez_BrandonGali.mp4", | |
| "vlaunch": "25.517" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Brandon Gali", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/231_HugoCasilla_BrandonGali.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/231_HugoCasilla_BrandonGali.mp4", | |
| "vlaunch": "20.448" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Justin Lamazares", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/72_ClayHelvey_JustinLamazares.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/72_ClayHelvey_JustinLamazares.mp4", | |
| "vlaunch": "-5.488" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Stephen Smith", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/140_JonathanHernandez_StephenSmith.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/140_JonathanHernandez_StephenSmith.mp4", | |
| "vlaunch": "10.847" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Stephen Smith", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/234_HugoCasilla_StephenSmith.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/234_HugoCasilla_StephenSmith.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Jonathan Quintana", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/75_ClayHelvey_JonathanQuintana.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/75_ClayHelvey_JonathanQuintana.mp4", | |
| "vlaunch": "33.174" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Drew Ehrhard", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/142_JonathanHernandez_DrewEhrhard.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/142_JonathanHernandez_DrewEhrhard.mp4", | |
| "vlaunch": "11.800" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Jonathan Quintana", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/239_MarkMoclair_JonathanQuintana.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/239_MarkMoclair_JonathanQuintana.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Darren Miller", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/76_JonathanHernandez_DarrenMiller.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/76_JonathanHernandez_DarrenMiller.mp4", | |
| "vlaunch": "-1.491" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Harrison Bragg", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/146_JonathanHernandez_HarrisonBragg.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/146_JonathanHernandez_HarrisonBragg.mp4", | |
| "vlaunch": "2.604" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Ryan Baldwin", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/241_MarkMoclair_RyanBaldwin.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/241_MarkMoclair_RyanBaldwin.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Andrew Rapoza", | |
| "result": "Error", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/6_ClayHelvey_AndrewRapoza.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/6_ClayHelvey_AndrewRapoza.mp4", | |
| "vlaunch": "16.159" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Drew Ehrhard", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/78_JonathanHernandez_DrewEhrhard.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/78_JonathanHernandez_DrewEhrhard.mp4", | |
| "vlaunch": "18.297" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Darren Miller", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/149_JonathanHernandez_DarrenMiller.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/149_JonathanHernandez_DarrenMiller.mp4", | |
| "vlaunch": "13.202" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Garrett Thompson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/245_MarkMoclair_GarrettThompson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/245_MarkMoclair_GarrettThompson.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Justin Lamazares", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/13_ClayHelvey_JustinLamazares.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/13_ClayHelvey_JustinLamazares.mp4", | |
| "vlaunch": "20.986" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Harrison Bragg", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/81_JonathanHernandez_HarrisonBragg.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/81_JonathanHernandez_HarrisonBragg.mp4", | |
| "vlaunch": "-6.604" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Nick DeTringo", | |
| "result": "Error", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/154_ErislandyRives_NickDeTringo.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/154_ErislandyRives_NickDeTringo.mp4", | |
| "vlaunch": "16.311" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Drew Ehrhard", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/248_DanielBroeseker_DrewEhrhard.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/248_DanielBroeseker_DrewEhrhard.mp4", | |
| "vlaunch": "43.472" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Jonathan Quintana", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/15_ClayHelvey_JonathanQuintana.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/15_ClayHelvey_JonathanQuintana.mp4", | |
| "vlaunch": "18.468" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Darren Miller", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/89_JonathanHernandez_DarrenMiller.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/89_JonathanHernandez_DarrenMiller.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Richie Rivera", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/158_ErislandyRives_RichieRivera.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/158_ErislandyRives_RichieRivera.mp4", | |
| "vlaunch": "30.109" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Ryan Baldwin", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/16_ClayHelvey_RyanBaldwin.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/16_ClayHelvey_RyanBaldwin.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Ryan Baldwin", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/92_ClayHelvey_RyanBaldwin.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/92_ClayHelvey_RyanBaldwin.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Brandon Gali", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/167_ErislandyRives_BrandonGali.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/167_ErislandyRives_BrandonGali.mp4", | |
| "vlaunch": "4.153" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Garrett Thompson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/18_ClayHelvey_GarrettThompson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/18_ClayHelvey_GarrettThompson.mp4", | |
| "vlaunch": "20.940" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Garrett Thompson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/94_ClayHelvey_GarrettThompson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/94_ClayHelvey_GarrettThompson.mp4", | |
| "vlaunch": "1.992" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Stephen Smith", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/168_ErislandyRives_StephenSmith.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/168_ErislandyRives_StephenSmith.mp4", | |
| "vlaunch": "38.629" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Stephen Smith", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/27_NickBralczyk_StephenSmith.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/27_NickBralczyk_StephenSmith.mp4", | |
| "vlaunch": "28.295" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Richie Sobalvarro", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/101_ClayHelvey_RichieSobalvarro.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/101_ClayHelvey_RichieSobalvarro.mp4", | |
| "vlaunch": "15.442" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Reuben Pino", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/172_MarkMoclair_ReubenPino.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/172_MarkMoclair_ReubenPino.mp4", | |
| "vlaunch": "-2.526" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Darren Miller", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/39_NickBralczyk_DarrenMiller.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/39_NickBralczyk_DarrenMiller.mp4", | |
| "vlaunch": "43.307" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Nick DeTringo", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/107_JonathanHernandez_NickDeTringo.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/107_JonathanHernandez_NickDeTringo.mp4", | |
| "vlaunch": "7.888" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Richie Sobalvarro", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/175_MarkMoclair_RichieSobalvarro.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/175_MarkMoclair_RichieSobalvarro.mp4", | |
| "vlaunch": "19.652" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Connor Crile", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/41_NickBralczyk_ConnorCrile.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/41_NickBralczyk_ConnorCrile.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Richie Rivera", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/110_JonathanHernandez_RichieRivera.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/110_JonathanHernandez_RichieRivera.mp4", | |
| "vlaunch": "-3.979" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Alexis Monge-Rodriguez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/178_MarkMoclair_AlexisMonge-Rodriguez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/178_MarkMoclair_AlexisMonge-Rodriguez.mp4", | |
| "vlaunch": "16.679" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Arrison Perez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/55_ClayHelvey_ArrisonPerez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/55_ClayHelvey_ArrisonPerez.mp4", | |
| "vlaunch": "8.989" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Chris Gaffney", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/115_JonathanHernandez_ChrisGaffney.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/115_JonathanHernandez_ChrisGaffney.mp4", | |
| "vlaunch": "21.967" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Drew Ehrhard", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/181_ErislandyRives_DrewEhrhard.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/181_ErislandyRives_DrewEhrhard.mp4", | |
| "vlaunch": "9.228" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Nick DeTringo", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/57_JonathanHernandez_NickDeTringo.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/57_JonathanHernandez_NickDeTringo.mp4", | |
| "vlaunch": "5.923" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Andrew Rapoza", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/128_ClayHelvey_AndrewRapoza.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/128_ClayHelvey_AndrewRapoza.mp4", | |
| "vlaunch": "41.070" | |
| }, | |
| { | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Connor Crile", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversity/194_RogerGarcia_ConnorCrile.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-24/UniversityofTampavsBarryUniversityAngle2/194_RogerGarcia_ConnorCrile.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "J Galinis", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHS/34_DMoran_JGalinis.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHSAngle2/34_DMoran_JGalinis.mp4", | |
| "vlaunch": "12.366" | |
| }, | |
| { | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "K Abbott", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHS/132_JRader_KAbbott.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHSAngle2/132_JRader_KAbbott.mp4", | |
| "vlaunch": "50.711" | |
| }, | |
| { | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "J Rader", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHS/36_DMoran_JRader.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHSAngle2/36_DMoran_JRader.mp4", | |
| "vlaunch": "-13.989" | |
| }, | |
| { | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "W Potter", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHS/137_BCalzadilla_WPotter.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHSAngle2/137_BCalzadilla_WPotter.mp4", | |
| "vlaunch": "14.328" | |
| }, | |
| { | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "R Rivera", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHS/47_LyonRichardson_RRivera.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHSAngle2/47_LyonRichardson_RRivera.mp4", | |
| "vlaunch": "-33.115" | |
| }, | |
| { | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "J Rader", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHS/153_BCalzadilla_JRader.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHSAngle2/153_BCalzadilla_JRader.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "K Abbott", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHS/48_LyonRichardson_KAbbott.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHSAngle2/48_LyonRichardson_KAbbott.mp4", | |
| "vlaunch": "14.681" | |
| }, | |
| { | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "K Abbott", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHS/63_LyonRichardson_KAbbott.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHSAngle2/63_LyonRichardson_KAbbott.mp4", | |
| "vlaunch": "29.830" | |
| }, | |
| { | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "Lyon Richardson", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHS/68_DMoran_LyonRichardson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHSAngle2/68_DMoran_LyonRichardson.mp4", | |
| "vlaunch": "24.136" | |
| }, | |
| { | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "C Pendleton", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHS/75_DMoran_CPendleton.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHSAngle2/75_DMoran_CPendleton.mp4", | |
| "vlaunch": "15.327" | |
| }, | |
| { | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "B Calzadilla", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHS/84_DMoran_BCalzadilla.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHSAngle2/84_DMoran_BCalzadilla.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "R Rivera", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHS/85_WPotter_RRivera.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHSAngle2/85_WPotter_RRivera.mp4", | |
| "vlaunch": "35.604" | |
| }, | |
| { | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "T Higgins", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHS/86_WPotter_THiggins.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHSAngle2/86_WPotter_THiggins.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "K Abbott", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHS/12_LyonRichardson_KAbbott.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHSAngle2/12_LyonRichardson_KAbbott.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "J Rader", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHS/87_WPotter_JRader.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHSAngle2/87_WPotter_JRader.mp4", | |
| "vlaunch": "1.298" | |
| }, | |
| { | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "Z Miller", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHS/19_LyonRichardson_ZMiller.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHSAngle2/19_LyonRichardson_ZMiller.mp4", | |
| "vlaunch": "16.206" | |
| }, | |
| { | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "R Rivera", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHS/96_WPotter_RRivera.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHSAngle2/96_WPotter_RRivera.mp4", | |
| "vlaunch": "27.627" | |
| }, | |
| { | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "J Thompson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHS/23_LyonRichardson_JThompson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHSAngle2/23_LyonRichardson_JThompson.mp4", | |
| "vlaunch": "29.530" | |
| }, | |
| { | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "T Higgins", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHS/100_WPotter_THiggins.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHSAngle2/100_WPotter_THiggins.mp4", | |
| "vlaunch": "54.356" | |
| }, | |
| { | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "C Pendleton", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHS/25_DMoran_CPendleton.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHSAngle2/25_DMoran_CPendleton.mp4", | |
| "vlaunch": "34.193" | |
| }, | |
| { | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "W Potter", | |
| "result": "Triple", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHS/111_JRader_WPotter.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHSAngle2/111_JRader_WPotter.mp4", | |
| "vlaunch": "27.436" | |
| }, | |
| { | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "Lyon Richardson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHS/29_DMoran_LyonRichardson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHSAngle2/29_DMoran_LyonRichardson.mp4", | |
| "vlaunch": "33.942" | |
| }, | |
| { | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "R Piekarski", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHS/119_JRader_RPiekarski.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHSAngle2/119_JRader_RPiekarski.mp4", | |
| "vlaunch": "26.262" | |
| }, | |
| { | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "R Piekarski", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHS/32_DMoran_RPiekarski.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHSAngle2/32_DMoran_RPiekarski.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "D Moran", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHS/124_JRader_DMoran.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-04/JensenBeachHSvsJensenBeachHSAngle2/124_JRader_DMoran.mp4", | |
| "vlaunch": "39.566" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Danny Tufariello", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/83_GarrettLeonard_DannyTufariello.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/83_GarrettLeonard_DannyTufariello.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "A.J. Puigcerver", | |
| "result": "Error", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/162_GarrettLeonard_A.J.Puigcerver.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/162_GarrettLeonard_A.J.Puigcerver.mp4", | |
| "vlaunch": "-14.308" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Bryce Peterson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/237_JoeyHennessey_BrycePeterson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/237_JoeyHennessey_BrycePeterson.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Evan Dougherty", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/88_GarrettLeonard_EvanDougherty.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/88_GarrettLeonard_EvanDougherty.mp4", | |
| "vlaunch": "41.298" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Ryan Johnson", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/176_GarrettLeonard_RyanJohnson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/176_GarrettLeonard_RyanJohnson.mp4", | |
| "vlaunch": "6.813" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Brian Brooker", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/240_JoeyHennessey_BrianBrooker.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/240_JoeyHennessey_BrianBrooker.mp4", | |
| "vlaunch": "45.376" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Ryan Johnson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/9_GarrettLeonard_RyanJohnson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/9_GarrettLeonard_RyanJohnson.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "A.J. Puigcerver", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/92_GarrettLeonard_A.J.Puigcerver.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/92_GarrettLeonard_A.J.Puigcerver.mp4", | |
| "vlaunch": "26.719" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Brian Brooker", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/184_TylerHawks_BrianBrooker.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/184_TylerHawks_BrianBrooker.mp4", | |
| "vlaunch": "34.176" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Cameron Meehan", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/243_JoeyHennessey_CameronMeehan.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/243_JoeyHennessey_CameronMeehan.mp4", | |
| "vlaunch": "7.710" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Connor Rowland", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/12_GarrettLeonard_ConnorRowland.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/12_GarrettLeonard_ConnorRowland.mp4", | |
| "vlaunch": "21.559" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Luke Reidy", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/94_JohnnieSchneider_LukeReidy.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/94_JohnnieSchneider_LukeReidy.mp4", | |
| "vlaunch": "17.843" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Billy Lamm", | |
| "result": "Error", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/192_JustinHernandez_BillyLamm.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/192_JustinHernandez_BillyLamm.mp4", | |
| "vlaunch": "20.418" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Nick Santucci", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/245_JoeyHennessey_NickSantucci.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/245_JoeyHennessey_NickSantucci.mp4", | |
| "vlaunch": "11.884" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Riley Herold", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/249_AJChacon_RileyHerold.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/249_AJChacon_RileyHerold.mp4", | |
| "vlaunch": "18.344" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Riley Herold", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/16_GarrettLeonard_RileyHerold.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/16_GarrettLeonard_RileyHerold.mp4", | |
| "vlaunch": "55.225" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Sam LaFontaine", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/117_JohnnieSchneider_SamLaFontaine.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/117_JohnnieSchneider_SamLaFontaine.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Ted Meissner", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/197_JustinHernandez_TedMeissner.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/197_JustinHernandez_TedMeissner.mp4", | |
| "vlaunch": "0.449" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Danny Tufariello", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/255_AJChacon_DannyTufariello.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/255_AJChacon_DannyTufariello.mp4", | |
| "vlaunch": "9.121" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Kyle Simon", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/21_GarrettLeonard_KyleSimon.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/21_GarrettLeonard_KyleSimon.mp4", | |
| "vlaunch": "40.309" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Eddie Vicinanza", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/121_GarrettLeonard_EddieVicinanza.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/121_GarrettLeonard_EddieVicinanza.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Riley Herold", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/199_AJChacon_RileyHerold.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/199_AJChacon_RileyHerold.mp4", | |
| "vlaunch": "18.283" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Grant Ashline", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/257_JoeyHennessey_GrantAshline.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/257_JoeyHennessey_GrantAshline.mp4", | |
| "vlaunch": "-5.514" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Brendan Brundage", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/24_JohnnieSchneider_BrendanBrundage.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/24_JohnnieSchneider_BrendanBrundage.mp4", | |
| "vlaunch": "22.172" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Ryan Johnson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/128_GarrettLeonard_RyanJohnson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/128_GarrettLeonard_RyanJohnson.mp4", | |
| "vlaunch": "29.451" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Kyle Simon", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/202_AJChacon_KyleSimon.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/202_AJChacon_KyleSimon.mp4", | |
| "vlaunch": "4.947" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Brendan Brundage", | |
| "result": "Error", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/266_JoeyHennessey_BrendanBrundage.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/266_JoeyHennessey_BrendanBrundage.mp4", | |
| "vlaunch": "-0.477" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Luke Reidy", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/29_JohnnieSchneider_LukeReidy.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/29_JohnnieSchneider_LukeReidy.mp4", | |
| "vlaunch": "22.903" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Connor Rowland", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/131_GarrettLeonard_ConnorRowland.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/131_GarrettLeonard_ConnorRowland.mp4", | |
| "vlaunch": "26.960" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Mac Hessney", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/204_AJChacon_MacHessney.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/204_AJChacon_MacHessney.mp4", | |
| "vlaunch": "-7.980" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Luke Reidy", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/269_JoeyHennessey_LukeReidy.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/269_JoeyHennessey_LukeReidy.mp4", | |
| "vlaunch": "13.874" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Danny Tufariello", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/34_GarrettLeonard_DannyTufariello.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/34_GarrettLeonard_DannyTufariello.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Ted Meissner", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/134_JohnnieSchneider_TedMeissner.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/134_JohnnieSchneider_TedMeissner.mp4", | |
| "vlaunch": "47.155" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Isaiah Russell", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/209_BlakeBeyel_IsaiahRussell.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/209_BlakeBeyel_IsaiahRussell.mp4", | |
| "vlaunch": "12.295" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Cameron Meehan", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/278_JoeyHennessey_CameronMeehan.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/278_JoeyHennessey_CameronMeehan.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Evan Dougherty", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/38_GarrettLeonard_EvanDougherty.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/38_GarrettLeonard_EvanDougherty.mp4", | |
| "vlaunch": "4.326" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Brendan Brundage", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/143_JohnnieSchneider_BrendanBrundage.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/143_JohnnieSchneider_BrendanBrundage.mp4", | |
| "vlaunch": "6.278" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Brendan Brundage", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/210_BlakeBeyel_BrendanBrundage.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/210_BlakeBeyel_BrendanBrundage.mp4", | |
| "vlaunch": "8.266" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Cameron Meehan", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/51_JohnnieSchneider_CameronMeehan.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/51_JohnnieSchneider_CameronMeehan.mp4", | |
| "vlaunch": "-13.343" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Luke Reidy", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/144_TylerHawks_LukeReidy.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/144_TylerHawks_LukeReidy.mp4", | |
| "vlaunch": "22.944" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Luke Reidy", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/217_BlakeBeyel_LukeReidy.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/217_BlakeBeyel_LukeReidy.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Cameron Meehan", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/53_JohnnieSchneider_CameronMeehan.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/53_JohnnieSchneider_CameronMeehan.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Nick Breen", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/145_TylerHawks_NickBreen.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/145_TylerHawks_NickBreen.mp4", | |
| "vlaunch": "-2.088" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Nick Breen", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/223_BlakeBeyel_NickBreen.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/223_BlakeBeyel_NickBreen.mp4", | |
| "vlaunch": "-1.030" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Jake Summey", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/57_GarrettLeonard_JakeSummey.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/57_GarrettLeonard_JakeSummey.mp4", | |
| "vlaunch": "60.229" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Bryce Peterson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/148_TylerHawks_BrycePeterson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/148_TylerHawks_BrycePeterson.mp4", | |
| "vlaunch": "34.824" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "A.J. Puigcerver", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/225_AJChacon_A.J.Puigcerver.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/225_AJChacon_A.J.Puigcerver.mp4", | |
| "vlaunch": "3.446" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Ryan Johnson", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/61_GarrettLeonard_RyanJohnson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/61_GarrettLeonard_RyanJohnson.mp4", | |
| "vlaunch": "1.838" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Riley Herold", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/150_GarrettLeonard_RileyHerold.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/150_GarrettLeonard_RileyHerold.mp4", | |
| "vlaunch": "-0.876" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Eddie Vicinanza", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/227_AJChacon_EddieVicinanza.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/227_AJChacon_EddieVicinanza.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Riley Herold", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/68_GarrettLeonard_RileyHerold.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/68_GarrettLeonard_RileyHerold.mp4", | |
| "vlaunch": "28.189" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Kyle Simon", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/152_GarrettLeonard_KyleSimon.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/152_GarrettLeonard_KyleSimon.mp4", | |
| "vlaunch": "-10.510" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Jake Summey", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/229_AJChacon_JakeSummey.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/229_AJChacon_JakeSummey.mp4", | |
| "vlaunch": "14.520" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Ted Meissner", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/73_JohnnieSchneider_TedMeissner.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/73_JohnnieSchneider_TedMeissner.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Evan Dougherty", | |
| "result": "Single", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/159_GarrettLeonard_EvanDougherty.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/159_GarrettLeonard_EvanDougherty.mp4", | |
| "vlaunch": "-4.775" | |
| }, | |
| { | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Ryan Johnson", | |
| "result": "Double", | |
| "hto1": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DH/235_AJChacon_RyanJohnson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/PBAvsRollinsGame2DHAngle2/235_AJChacon_RyanJohnson.mp4", | |
| "vlaunch": "21.502" | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment