Created
April 10, 2018 17:20
-
-
Save valex/0e79b6e5cb0aa768d211f9105cbd34f3 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-8" id="vsc-video-module"></div> | |
| </div> | |
| <div class="row"> | |
| <div class="col-sm-8" id="vsc-video-switcher"></div> | |
| </div> | |
| <div class="row"> | |
| <div class="col-sm-8" id="vsc-form-name"><p class="h4"> </p></div> | |
| </div> | |
| <div class="row"> | |
| <div class="col-sm-8" id="vsc-form"> | |
| <form> | |
| <div class="form-row"> | |
| <div class="form-group col-md-6"> | |
| <input placeholder="Home to 1st" type="text" class="form-control" id="vsc-ht1st-input"> | |
| </div> | |
| <div class="form-group col-md-4"> | |
| <select id="vsc-effort-input" class="form-control"> | |
| <option value="ran hard">Ran Hard</option> | |
| <option value="pulled up">Pulled Up</option> | |
| <option value="hard turn">Hard Turn</option> | |
| <option value="soft turn">Soft Turn</option> | |
| <option value="bunt">Bunt</option> | |
| <option value="jogged">Jogged</option> | |
| </select> | |
| </div> | |
| <div class="form-group col-md-2"> | |
| <button type="button" | |
| onclick="VIDEO_SCOUTING_APP.onClickSubmit()" | |
| class="btn btn-block btn-success">Submit</button> | |
| </div> | |
| </div> | |
| </form> | |
| </div> | |
| </div> | |
| <div class="row"> | |
| <div class="col-sm-8"> | |
| <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
| .vsc_active_row{ | |
| background-color: #c5e8f5; | |
| } | |
| .noselect { | |
| -webkit-touch-callout: none; /* iOS Safari */ | |
| -webkit-user-select: none; /* Safari */ | |
| -khtml-user-select: none; /* Konqueror HTML */ | |
| -moz-user-select: none; /* Firefox */ | |
| -ms-user-select: none; /* Internet Explorer/Edge */ | |
| user-select: none; /* Non-prefixed version, currently | |
| supported by Chrome and Opera */ | |
| } | |
| .pointer:hover { | |
| cursor: pointer; | |
| } | |
| #vsc-video-switcher span { | |
| margin-left:20px; | |
| padding-right:5px; | |
| padding-left:5px; | |
| } |
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', | |
| update_url: 'https://httpbin.org/post', //'/vsc_update.php', | |
| data: [], | |
| loadedData: [], | |
| activeIndex: null, | |
| activeTab: null, | |
| options: { | |
| tableModule:{ | |
| rowActiveClass: "vsc_active_row", | |
| tbody: null, | |
| columns: [ | |
| { | |
| key: 'date', | |
| label: 'Date', | |
| format: 'D/M/YYYY', | |
| }, | |
| { | |
| key: 'batter', | |
| label: 'Batter', | |
| }, | |
| { | |
| key: 'hto1', | |
| label: 'H to 1st', | |
| }, | |
| { | |
| key: 'effort_label', | |
| label: " ", | |
| }, | |
| ] | |
| }, | |
| videoModule: { | |
| videoJs: null, | |
| appendToSelector: '#vsc-video-module' | |
| }, | |
| }, | |
| 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) { | |
| return { | |
| id: +d.id, | |
| date: moment(d["date"], "D/M/YYYY HH:mm:ss"), | |
| batter: (''+d["batter"]).trim(), | |
| result: (''+d["result"]).trim(), | |
| hto1: (''+d["hto1"]).trim(), | |
| effort: (''+d["effort"]).trim().toLowerCase(), | |
| effort_label: (''+d["effort"]).trim(), | |
| vlaunch: +d["vlaunch"], | |
| angle1_src: (''+d["angle1"]).trim(), | |
| angle2_src: (''+d["angle2"]).trim(), | |
| } | |
| }); | |
| that.rebuildPage(); | |
| }); | |
| }, | |
| rebuildPage: function(){ | |
| this.updateData(); | |
| this.buildTable(); | |
| this.fillName(); | |
| this.fillHto1st(); | |
| this.fillEffort(); | |
| }, | |
| onActiveTabChanged: function(active, prev){ | |
| this.resetActiveIndex(); | |
| this.destroyVideoSwitcher(); | |
| this.disposeVideoPlayer(); | |
| this.initVideoPlayer(); | |
| this.activeTab = $(active).attr('id'); | |
| if(typeof prev !== 'undefined'){ | |
| } | |
| this.rebuildPage(); | |
| }, | |
| onActiveIndexChanged: function(){ | |
| // only one active | |
| this.clearAllActiveRows(); | |
| this.fillName(); | |
| this.fillHto1st(); | |
| this.fillEffort(); | |
| if( ! this.isActiveIndexSet()) | |
| return; | |
| this.setRowActive(this.getActiveIndex()); | |
| if(this.hasVideo2()){ | |
| this.startVideo2(); | |
| }else if(this.hasVideo1()){ | |
| this.startVideo1(); | |
| } | |
| }, | |
| isActiveIndexSet: function(){ | |
| if(this.activeIndex !== null && this.activeIndex !== '') | |
| return true; | |
| return false; | |
| }, | |
| resetActiveIndex: function(){ | |
| this.setActiveIndex(null); | |
| }, | |
| getActiveIndex:function(){ | |
| return this.activeIndex; | |
| }, | |
| setActiveIndex:function(index){ | |
| var before = this.getActiveIndex(); | |
| if(before === index) | |
| return; | |
| this.activeIndex = index; | |
| this.onActiveIndexChanged(); | |
| }, | |
| 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 | |
| }, | |
| 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; | |
| } | |
| }, | |
| fillName: function(){ | |
| if(this.isActiveIndexSet()){ | |
| this.setName(this.data[this.activeIndex]['batter']); | |
| }else{ | |
| this.clearName(); | |
| } | |
| }, | |
| clearName: function(){ | |
| this.setName(" "); | |
| }, | |
| setName: function(name){ | |
| d3.select('#vsc-form-name p').html(name); | |
| }, | |
| fillHto1st: function(){ | |
| if(this.isActiveIndexSet()){ | |
| this.setHto1st(this.data[this.activeIndex]['hto1']); | |
| }else{ | |
| this.clearHto1st(); | |
| } | |
| }, | |
| clearHto1st: function(){ | |
| this.setHto1st(""); | |
| }, | |
| getHto1st: function(){ | |
| return d3.select('#vsc-ht1st-input').node().value; | |
| }, | |
| setHto1st: function(value){ | |
| $('#vsc-ht1st-input').val(value); | |
| }, | |
| fillEffort: function(){ | |
| if(this.isActiveIndexSet()){ | |
| this.setEffort(this.data[this.activeIndex]['effort']); | |
| }else{ | |
| this.clearEffort(); | |
| } | |
| }, | |
| clearEffort : function(){ | |
| this.setEffort(''); | |
| }, | |
| getEffortValue: function(){ | |
| var select = d3.select('#vsc-effort-input'); | |
| var el = select.node(); | |
| return el.options[el.selectedIndex].value; | |
| }, | |
| getEffortLabel: function(){ | |
| var select = d3.select('#vsc-effort-input'); | |
| var el = select.node(); | |
| return el.options[el.selectedIndex].text; | |
| }, | |
| setEffort: function(value){ | |
| var select = d3.selectAll('#vsc-effort-input'); | |
| var options = d3.selectAll('#vsc-effort-input option'); | |
| if(value === ''){ | |
| select.node().selectedIndex = 0; | |
| return; | |
| } | |
| options.each(function(d,i){ | |
| var optionValue = $(this).attr('value'); | |
| if(optionValue === value){ | |
| select.node().selectedIndex = i; | |
| return false; | |
| } | |
| }); | |
| }, | |
| onClickSubmit: function(){ | |
| this.vscUpdateRequest(); | |
| }, | |
| vscUpdateRequest: function(){ | |
| if( ! this.isActiveIndexSet()) | |
| return; | |
| var that = this; | |
| // collect Data | |
| var index = this.getActiveIndex(); | |
| var hto1 = this.getHto1st(); | |
| var effortLabel = this.getEffortLabel(); | |
| var http = new XMLHttpRequest(); | |
| var url = this.update_url; | |
| var params = "id="+this.data[index]['id']+"&hto1="+hto1+"&effort="+effortLabel+"&qid="+qid; | |
| http.open("POST", url, true); | |
| //Send the proper header information along with the request | |
| http.setRequestHeader("Content-type", "application/x-www-form-urlencoded"); | |
| http.onreadystatechange = function() {//Call a function when the state changes. | |
| if(http.readyState == 4 && http.status == 200) { | |
| // success | |
| // update data | |
| that.data[index]['hto1'] = hto1; | |
| that.data[index]['effort_label'] = effortLabel; | |
| that.data[index]['effort'] = (that.data[index]['effort_label']).toLowerCase(); | |
| that.buildTable(); | |
| } | |
| }; | |
| http.send(params); | |
| }, | |
| // ============================== VIDEO MODULE ============================== | |
| startVideo1: function() { | |
| if( ! this.hasVideo1()) | |
| return; | |
| this.setVideoSrc(this.data[this.activeIndex]['angle1_src']); | |
| this.options.videoModule.videoJs.play(); | |
| this.buildVideoSwitcher(); | |
| this.highlightVideoSwitcher1(); | |
| }, | |
| startVideo2: function() { | |
| if( ! this.hasVideo2()) | |
| return; | |
| this.setVideoSrc(this.data[this.activeIndex]['angle2_src']); | |
| this.options.videoModule.videoJs.play(); | |
| this.buildVideoSwitcher(); | |
| this.highlightVideoSwitcher2(); | |
| }, | |
| destroyVideoSwitcher: function(){ | |
| var videoSwitcherEl = d3.select('#vsc-video-switcher'); | |
| videoSwitcherEl.html(''); | |
| }, | |
| buildVideoSwitcher: function(){ | |
| var that = this; | |
| this.destroyVideoSwitcher(); | |
| var videoSwitcherEl = d3.select('#vsc-video-switcher'); | |
| var videoSwitcherElP = videoSwitcherEl.append('p').attr('class', 'text-right'); | |
| if(this.hasVideo1()){ | |
| videoSwitcherElP | |
| .append('span') | |
| .attr('class', 'noselect pointer vsc-video_1') | |
| .text(function(){ return 'Video Angle 1'}) | |
| .on('click', function () { | |
| that.onClickVideoSwitcher1(); | |
| }); | |
| } | |
| if(this.hasVideo2()){ | |
| videoSwitcherElP | |
| .append('span') | |
| .attr('class', 'noselect pointer vsc-video_2') | |
| .text(function(){ return 'Video Angle 2'}) | |
| .on('click', function () { | |
| that.onClickVideoSwitcher2(); | |
| }); | |
| } | |
| }, | |
| onClickVideoSwitcher1: function(){ | |
| this.startVideo1(); | |
| }, | |
| onClickVideoSwitcher2: function(){ | |
| this.startVideo2(); | |
| }, | |
| highlightVideoSwitcher1: function(){ | |
| this.extinguishAllVideoSwitcher(); | |
| var el = d3.select('#vsc-video-switcher span.vsc-video_1'); | |
| el.classed('text-white', true); | |
| el.classed('text-primary', false); | |
| el.classed('bg-dark', true); | |
| }, | |
| highlightVideoSwitcher2: function(){ | |
| this.extinguishAllVideoSwitcher(); | |
| var el = d3.select('#vsc-video-switcher span.vsc-video_2'); | |
| el.classed('text-white', true); | |
| el.classed('text-primary', false); | |
| el.classed('bg-dark', true); | |
| }, | |
| extinguishAllVideoSwitcher: function(){ | |
| var els = d3.selectAll('#vsc-video-switcher span'); | |
| els.classed('text-white', false); | |
| els.classed('text-primary', true); | |
| els.classed('bg-dark', false); | |
| }, | |
| setVideoSrc: function(videoSrc){ | |
| this.options.videoModule.videoJs.src({ | |
| src: videoSrc, | |
| type: 'video/mp4' | |
| }); | |
| }, | |
| initVideoPlayer: function(){ | |
| var that = this; | |
| var options = this.options.videoModule; | |
| var outerBlock = d3.select(options.appendToSelector).html(""); | |
| var innerBlock = outerBlock | |
| .append('div') | |
| .attr('class', 'embed-responsive embed-responsive-16by9'); | |
| var videoTag = innerBlock.append('video') | |
| .attr('class', 'vsc-video-js video-js embed-responsive-item'); | |
| var videoUnsupportedWarn = videoTag.append('p') | |
| .attr('class', 'vjs-no-js') | |
| .html('To view this video please enable JavaScript, and consider upgrading to a web browser that <a href="http://videojs.com/html5-video-support/" target="_blank">supports HTML5 video</a>'); | |
| options.videoJs = videojs(document.querySelector('.vsc-video-js'), { | |
| aspectRatio: '16:9', | |
| controls: true, | |
| autoplay: false, | |
| preload: 'auto', | |
| }); | |
| options.videoJs.on('playing', function() { | |
| }); | |
| options.videoJs.on('ended', function() { | |
| }); | |
| options.videoJs.ready(function() { | |
| that.onVideoPlayerReady(); | |
| }); | |
| }, | |
| onVideoPlayerReady: function(){ | |
| }, | |
| disposeVideoPlayer: function(){ | |
| if(this.options.videoModule.videoJs !== null){ | |
| try{ | |
| this.options.videoModule.videoJs.dispose(); | |
| }catch (e){ | |
| console.log(e); | |
| } | |
| this.options.videoModule.videoJs = null; | |
| } | |
| }, | |
| hasVideo1: function(){ | |
| if( ! this.isActiveIndexSet()) | |
| return false; | |
| var datum = this.data[this.getActiveIndex()]; | |
| if(typeof datum === 'undefined') | |
| return false; | |
| if(typeof datum["angle1_src"] !== 'undefined' && | |
| datum["angle1_src"] !== null && | |
| datum["angle1_src"].length > 0) | |
| { | |
| return true; | |
| } | |
| return false; | |
| }, | |
| hasVideo2: function(){ | |
| if( ! this.isActiveIndexSet()) | |
| return false; | |
| var datum = this.data[this.getActiveIndex()]; | |
| if(typeof datum === 'undefined') | |
| return false; | |
| if(typeof datum["angle2_src"] !== 'undefined' && | |
| datum["angle2_src"] !== null && | |
| datum["angle2_src"].length > 0) | |
| { | |
| return true; | |
| } | |
| return false; | |
| }, | |
| // ============================== TABLE MODULE ============================== | |
| onClickTableRow: function(index){ | |
| this.setActiveIndex(index); | |
| }, | |
| 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'); | |
| this.options.tableModule.tbody = table.append('tbody'); | |
| // append the header row | |
| thead.append('tr') | |
| .selectAll('th') | |
| .data(this.options.tableModule.columns) | |
| .enter() | |
| .append('th') | |
| .html(function (column) { return column.label; }); | |
| // create a row for each object in the data | |
| var rowsSelection = this.options.tableModule.tbody.selectAll('tr') | |
| .data(this.data); | |
| var rowsEnter = rowsSelection | |
| .enter() | |
| .append('tr') | |
| .on('click', function(d, i){ | |
| VIDEO_SCOUTING_APP.onClickTableRow(i); | |
| }); | |
| // 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); | |
| }); | |
| }, | |
| setRowActive: function(index){ | |
| var options = this.options.tableModule; | |
| var tr = options.tbody.selectAll('tr').filter(function(d,i){return i === index}); | |
| if(tr.size() > 0){ | |
| var alreadyIsActive = tr.classed(options.rowActiveClass); | |
| if( ! alreadyIsActive){ | |
| tr.classed(options.rowActiveClass, ! alreadyIsActive); | |
| } | |
| } | |
| }, | |
| clearAllActiveRows: function(){ | |
| var options = this.options.tableModule; | |
| options.tbody.selectAll('tr') | |
| .classed(options.rowActiveClass, false); | |
| }, | |
| }; | |
| 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": [ | |
| { | |
| "id": "6157", | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "Zach West", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "5857", | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "Zach West", | |
| "result": "Contact Out", | |
| "hto1": "333", | |
| "effort": "Jogged", | |
| "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" | |
| }, | |
| { | |
| "id": "6057", | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "Zach West", | |
| "result": "Contact Out", | |
| "hto1": "111", | |
| "effort": "Soft Turn", | |
| "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" | |
| }, | |
| { | |
| "id": "5957", | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "Zach West", | |
| "result": "Contact Out", | |
| "hto1": "222", | |
| "effort": "Ran Hard", | |
| "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" | |
| }, | |
| { | |
| "id": "6302", | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "Yorvis Torrealba", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "6249", | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "Zach West", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "6188", | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "Tanner May", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "6287", | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "Jordan Morrow", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "6235", | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "John Fiorenza", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "6166", | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "Luis Medina", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "6308", | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "Matt Moclair", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "6252", | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "David Flores", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "6215", | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "Zach West", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "6291", | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "John Fiorenza", | |
| "result": "Error", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "6239", | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "Jack Hartman", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "6172", | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "Chris Tidwell", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "6315", | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "David Flores", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "6259", | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "Tanner May", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "6220", | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "David Flores", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "6294", | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "Francisco Darling", | |
| "result": "Triple", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "6244", | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "Marcus Judd", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "6182", | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "Chris Tidwell", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "6316", | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "Luis Medina", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "6266", | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "Christian Smallwood", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "6225", | |
| "date": "13/1/2018 10:37:00", | |
| "batter": "Luis Medina", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "6571", | |
| "date": "15/1/2018 21:54:34", | |
| "batter": "Jack Campsmith", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "6516", | |
| "date": "15/1/2018 21:54:34", | |
| "batter": "Jakob Sessa", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "6541", | |
| "date": "15/1/2018 21:54:34", | |
| "batter": "Drake Rodriguez", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "6496", | |
| "date": "15/1/2018 21:54:34", | |
| "batter": "Drake Rodriguez", | |
| "result": "Error", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "6577", | |
| "date": "15/1/2018 21:54:34", | |
| "batter": "Sean Murtha", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "6519", | |
| "date": "15/1/2018 21:54:34", | |
| "batter": "Alex Brickman", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "6543", | |
| "date": "15/1/2018 21:54:34", | |
| "batter": "Dustin Harris", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "6498", | |
| "date": "15/1/2018 21:54:34", | |
| "batter": "Dustin Harris", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "6583", | |
| "date": "15/1/2018 21:54:34", | |
| "batter": "Brandon Vogl", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "6522", | |
| "date": "15/1/2018 21:54:34", | |
| "batter": "Jack Campsmith", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "6559", | |
| "date": "15/1/2018 21:54:34", | |
| "batter": "EJ Churchich", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "6512", | |
| "date": "15/1/2018 21:54:34", | |
| "batter": "Dennis Filipouski", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "6538", | |
| "date": "15/1/2018 21:54:34", | |
| "batter": "Andrew Mills", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "7052", | |
| "date": "17/1/2018 22:12:14", | |
| "batter": "John Pichman", | |
| "result": "Error", | |
| "hto1": "", | |
| "effort": "", | |
| "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": "" | |
| }, | |
| { | |
| "id": "7006", | |
| "date": "17/1/2018 22:12:14", | |
| "batter": "Aaron Greenfield", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "6961", | |
| "date": "17/1/2018 22:12:14", | |
| "batter": "Brock Bell", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "7039", | |
| "date": "17/1/2018 22:12:14", | |
| "batter": "Collin Moore", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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": "" | |
| }, | |
| { | |
| "id": "6988", | |
| "date": "17/1/2018 22:12:14", | |
| "batter": "Rougie Odor", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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": "" | |
| }, | |
| { | |
| "id": "7060", | |
| "date": "17/1/2018 22:12:14", | |
| "batter": "Adam Imwalle", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "7013", | |
| "date": "17/1/2018 22:12:14", | |
| "batter": "Brock Bell", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "6964", | |
| "date": "17/1/2018 22:12:14", | |
| "batter": "Connor Bagnieski", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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": "" | |
| }, | |
| { | |
| "id": "7045", | |
| "date": "17/1/2018 22:12:14", | |
| "batter": "Jaren Shelby", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "6991", | |
| "date": "17/1/2018 22:12:14", | |
| "batter": "John Pichman", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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": "" | |
| }, | |
| { | |
| "id": "7070", | |
| "date": "17/1/2018 22:12:14", | |
| "batter": "Josh Crouch", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "7033", | |
| "date": "17/1/2018 22:12:14", | |
| "batter": "Si Grinstead", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "6971", | |
| "date": "17/1/2018 22:12:14", | |
| "batter": "Adam Imwalle", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "7046", | |
| "date": "17/1/2018 22:12:14", | |
| "batter": "Rougie Odor", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "6996", | |
| "date": "17/1/2018 22:12:14", | |
| "batter": "Bryce Hulett", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "6949", | |
| "date": "17/1/2018 22:12:14", | |
| "batter": "Aaron Greenfield", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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": "" | |
| }, | |
| { | |
| "id": "7076", | |
| "date": "17/1/2018 22:12:14", | |
| "batter": "Rodriguez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "7037", | |
| "date": "17/1/2018 22:12:14", | |
| "batter": "Austin James", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "6975", | |
| "date": "17/1/2018 22:12:14", | |
| "batter": "CJ Alexander", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "7417", | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Austin Huber", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "7387", | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Ricky Gonzalez", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "7547", | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Dylan Costa", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "7472", | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Tommy Georgevich", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "7426", | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Dylan Costa", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "7410", | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Alex Goebel", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "7339", | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Ricky Gonzalez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "7570", | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Alex Goebel", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "7508", | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Omar Villaman", | |
| "result": "Error", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "7464", | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Jacob Teter", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "7421", | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Nicky Gibbs", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "7394", | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Omar Villaman", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "7551", | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Austin Mauer", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "7478", | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Austin Huber", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "7439", | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Bigness", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "7411", | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Leo Rodriguez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "7347", | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Leo Rodriguez", | |
| "result": "Error", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "7575", | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Leo Rodriguez", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "7522", | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Ryan Frost", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "7469", | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Logan Browning", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "7422", | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Vaun Brown", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "7397", | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Hayden Marze", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "7554", | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Omar Villaman", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "7498", | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Dylan Costa", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "7447", | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Ryan Frost", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "7413", | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Tommy Georgevich", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "7384", | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Ryan Frost", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "7582", | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Austin Huber", | |
| "result": "Error", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "7542", | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Cody Burgess", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "7471", | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Alex Goebel", | |
| "result": "Error", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "7425", | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Cody Burgess", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "7407", | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Jacob Teter", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "7563", | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Logan Browning", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "7501", | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Austin Mauer", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "7448", | |
| "date": "19/1/2018 11:50:15", | |
| "batter": "Ricky Gonzalez", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8533", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Michael Stovman", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8313", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Cade Bonnett", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8494", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Paul Benitez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8269", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Cade Bonnett", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8448", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Alexander Hrica", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8405", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Paul Benitez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8555", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Alexander Hrica", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8358", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Hunter Holland", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8520", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Alexander Hrica", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8291", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Joseph Stubbs", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8472", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Paul Benitez", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8433", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Hunter Holland", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8387", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Alexander Hrica", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8589", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Alexander Hrica", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8535", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Paul Benitez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8323", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Axel Salgado", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8500", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Joseph Stubbs", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8270", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Axel Salgado", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8450", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Hunter Holland", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8411", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Carter Chancey", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8370", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Cade Bonnett", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8567", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Joseph Stubbs", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8526", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Joseph Stubbs", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8296", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Hunter Holland", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8485", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Brett Mercier", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8439", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Michael Stovman", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8399", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Diego Ramos", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8593", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Hunter Holland", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8541", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Diego Ramos", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8346", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Danny Camilo", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8507", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Hunter Holland", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8275", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Cade Bonnett", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8456", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Alexander Hrica", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8418", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Joseph Stubbs", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8371", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Cade Bonnett", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8576", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Joseph Stubbs", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8529", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Hunter Holland", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8309", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Carter Chancey", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8489", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Danny Camilo", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8443", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Joseph Stubbs", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8403", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Michael Stovman", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8605", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Michael Stovman", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8552", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Danny Camilo", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8349", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Alexander Hrica", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8510", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Carter Chancey", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8284", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Axel Salgado", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8460", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Hunter Holland", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8421", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Cade Bonnett", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8386", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Danny Camilo", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "8584", | |
| "date": "19/1/2018 16:07:07", | |
| "batter": "Carter Chancey", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11229", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Soterio Ramirez", | |
| "result": "Triple", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13445", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Sean Roby", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13880", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Avery Tuck", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13950", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Peyton Koopman", | |
| "result": "Error", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11318", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Avery Tuck", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11787", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Peyton Koopman", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12264", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Yodelvy Merendez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13644", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jordan Macias", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11542", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Derek Hayenga", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12009", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Robbie Wilkes", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13815", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Matt Wong", | |
| "result": "Error", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11671", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Brennan Reback", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12198", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Steven Ortiz", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13602", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Yodelvy Merendez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11491", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Mckade Worthen", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11963", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Chanlar Barkdull", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11161", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Soterio Ramirez", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12741", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Cody Holtz", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11628", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Ty Lewis", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12099", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jarrett Hunt", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13546", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Ramon Miranda", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11434", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jake Hammons", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11910", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Beau Capanna", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12677", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Trevor Edior", | |
| "result": "Error", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13793", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Michael Camburn", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11607", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Cole Ensing", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12075", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Sean Roby", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11315", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Soterio Ramirez", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13505", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "AJ Amelburu", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13947", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Matt Wong", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14006", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Joab Gonzalez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11400", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Brock Tsukamoto", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11874", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Reagan Teegarden", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12602", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Gianni Tomasi", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13734", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Daniel Hernandez", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12040", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Yodelvy Merendez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11249", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Derek Hayenga", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13467", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jordan Macias", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13916", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Michael Camburn", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13978", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jake Dickerson", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11371", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Morgan McIntosh", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11805", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Brennan Reback", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12530", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Chanlar Barkdull", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13676", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Hunter Huegly", | |
| "result": "Error", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11556", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Ty Lewis", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11188", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Rody Barker", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12773", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Collin Wilson", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13862", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jordan Macias", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11741", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Brett Harris", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12231", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Collin Wilson", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13626", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Hunter Huegly", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11526", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Brock Tsukamoto", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11985", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Carlos Arelleno", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11653", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Oscar Mancillas", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12168", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Chanlar Barkdull", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13571", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Manny Perez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11472", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Cole Ensing", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11947", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Sean Roby", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11147", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Sam Schroeder", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12726", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Matt Mendibles", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13807", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "AJ Amelburu", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11618", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jake Hammons", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12085", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Ryan Curtis", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13531", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Justin Lutes", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14033", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Nick Hernandez", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11416", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Dane Perry", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11900", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Brett Harris", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12635", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Steven Ortiz", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13767", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Andrew Caliendo", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11594", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Izzy Carrillo", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12053", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Connor Udy", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11277", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Rody Barker", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13488", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Nick Hernandez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13924", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Soterio Ramirez", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13995", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Avery Tuck", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11389", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Cole Norris", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11850", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Emny Ordonez", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12567", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Cody Holtz", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13706", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Nick Hernandez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12011", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Sean Roby", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11237", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jake Dickerson", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13450", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Spencer Packard", | |
| "result": "Error", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13906", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Rody Barker", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13953", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Wyatt Featherston", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11339", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jacob Jacome", | |
| "result": "Triple", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11788", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Devin Ray", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12275", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Zach Huffins", | |
| "result": "Error", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13654", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Matt Wong", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11548", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jake Hammons", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13823", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Wyatt Featherston", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11688", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jordan Macias", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12201", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Trevor Bender", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13620", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Snaider Torrealba", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11497", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Cole Norris", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11970", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jarrett Hunt", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11162", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Avery Tuck", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12749", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Roberto Cabrera", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11632", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Casey Kostrzewa", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12101", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Steven Ortiz", | |
| "result": "Error", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13559", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jay Desoto", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11435", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Cole Norris", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11936", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Hunter Huegly", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12681", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Roberto Cabrera", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13801", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Ryan Rijo", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11608", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Brock Tsukamoto", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12078", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Spencer Packard", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13520", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Manny Perez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14016", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Ryan Rijo", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11403", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Josh Hill", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11888", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Michael Camburn", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12617", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Trevor Edior", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13741", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Soterio Ramirez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11563", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Chris Opolka", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12041", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Justin Greene", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11264", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Joey Martinez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13471", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Justin Lutes", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13920", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "AJ Amelburu", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13983", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Ryan Rijo", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11374", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Josh Glenn", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11814", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "AJ Amelburu", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12561", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Luke Haney", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13683", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Roger Riley", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11222", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Daniel Hernandez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12797", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Hunter Porritt", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13864", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Justin Lutes", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11762", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Alix Garcia", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12234", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Ryan Curtis", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13632", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jay Desoto", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11531", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Izzy Carrillo", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11986", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Steven Ortiz", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11666", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Chris Haines", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12174", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Yodelvy Merendez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13586", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jordan Macias", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11478", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Dane Perry", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11953", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Spencer Packard", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11156", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Daniel Hernandez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12728", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Cole Fossat", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13808", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jordan Macias", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11619", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Matthew Wilde", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12086", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Chanlar Barkdull", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13532", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Matt Wong", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14037", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Beau Capanna", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11421", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Brock Tsukamoto", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11908", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Alix Garcia", | |
| "result": "Triple", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12642", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Connor Udy", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13780", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Rody Barker", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11599", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Morgan McIntosh", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12059", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Carlos Arelleno", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11280", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Daniel Hernandez", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13501", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jay Desoto", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13937", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Joaquin Ballesteros", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14004", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Casey Ryan", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11391", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Zach Peterson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11858", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Matt Wong", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12582", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Ryan Curtis", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13719", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Nathan Collins", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12020", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Manny Perez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11238", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Ty Stephenson", | |
| "result": "Error", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13454", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Manny Perez", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13909", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jake Dickerson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13959", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Beau Capanna", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11348", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Izzy Carrillo", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11799", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Chris Diehl", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12524", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Tommy Sacco", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13656", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Nick Hernandez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11550", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Matthew Wilde", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13853", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Rody Barker", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11696", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Justin Lutes", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12209", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Snaider Torrealba", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13621", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Carlos Arelleno", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11514", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Tyler Keith", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11975", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Steven Ortiz", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11168", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Josh Glenn", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12750", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Over Torres", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11644", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Josh Hill", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12141", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Manny Perez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13562", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Sean Roby", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11448", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Tyler Keith", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11941", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Nick Hernandez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12704", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Chanlar Barkdull", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13803", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Soterio Ramirez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11612", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Josh Glenn", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12081", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Manny Perez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13526", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Yodelvy Merendez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14019", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Hunter Huegly", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11404", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jacob Jacome", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11890", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "AJ Amelburu", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12620", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Roberto Cabrera", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13753", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jordan Macias", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11568", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Tyler Keith", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12046", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Zach Huffins", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11274", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Izzy Carrillo", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13474", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Matt Wong", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13921", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jordan Macias", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13992", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "AJ Amelburu", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11378", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Derek Hayenga", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11818", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jordan Macias", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12563", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Gianni Tomasi", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13690", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jordan Macias", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11223", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Ryan Rijo", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12829", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Cody Holtz", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13878", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Soterio Ramirez", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11765", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Emny Ordonez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12245", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jarrett Hunt", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13637", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Trevor Jackson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11534", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Morgan McIntosh", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12003", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Collin Wilson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13813", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Justin Lutes", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11668", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Matthew Wilde", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12185", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Carlos Arelleno", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13594", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Justin Greene", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11488", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Ty Lewis", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11961", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Yodelvy Merendez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11158", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Ryan Rijo", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12738", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Steven Ortiz", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11626", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Eric Jordan", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12092", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Cole Fossat", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13534", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Zach Huffins", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14039", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Roger Riley", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11430", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Derek Hayenga", | |
| "result": "Triple", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11909", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Emny Ordonez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12665", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Gianni Tomasi", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13791", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Beau Capanna", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11601", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Zach Peterson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12070", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Robbie Wilkes", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11283", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Ryan Rijo", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13504", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Trevor Jackson", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13942", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Justin Lutes", | |
| "result": "Error", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14005", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Andrew Caliendo", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11394", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Cole Ensing", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11868", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Clayton Keyes", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12599", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Alex Isola", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13728", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Rody Barker", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12034", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jarrett Hunt", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11242", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jacob Cubillos", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13465", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Yodelvy Merendez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13915", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Beau Capanna", | |
| "result": "Error", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13966", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Andrew Caliendo", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11368", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Izzy Carrillo", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11801", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Reagan Teegarden", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12525", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Alex Isola", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13673", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Yodelvy Merendez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11551", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Eric Jordan", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13861", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "AJ Amelburu", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11700", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Emny Ordonez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12226", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Manny Perez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13625", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Sean Roby", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11516", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Zach Peterson", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11983", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Zach Huffins", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11184", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jacob Cubillos", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12759", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Hunter Porritt", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11652", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "J.T. Coleman", | |
| "result": "Error", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12156", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Collin Wilson", | |
| "result": "Error", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13566", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Spencer Packard", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11456", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jake Desiderio", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11943", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Robbie Wilkes", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12710", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Carlos Viera", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13805", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Avery Tuck", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11615", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Derek Hayenga", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12083", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Collin Wilson", | |
| "result": "Error", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13528", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jordan Macias", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14023", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Matt Wong", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11412", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Morgan McIntosh", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11898", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jordan Macias", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12631", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jarrett Hunt", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13756", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Justin Lutes", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11573", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Cole Norris", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12049", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Trevor Bender", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11275", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Joab Gonzalez", | |
| "result": "Error", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13483", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Snaider Torrealba", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13922", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Ryan Rijo", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13993", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "AJ Amelburu", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11381", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Jake Hammons", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "11846", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Alix Garcia", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "12564", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Matt Mendibles", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "13695", | |
| "date": "26/1/2018 21:12:06", | |
| "batter": "Justin Lutes", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10772", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Sergio Macias", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10584", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Herbert Iser", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10735", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Nick Neville", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10547", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Nick Neville", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10715", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Sergio Macias", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10498", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Jordan Myrow", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10895", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Trent Franson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10681", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Nick Neville", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10461", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Tyriece Silas", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10835", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Sergio Macias", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10641", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Nick Neville", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10790", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "George Callil", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10749", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Alerick Solearie", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10570", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "George Callil", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10728", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "George Callil", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10508", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Jake Matheny", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10705", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Aidan Shepardson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10479", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Nick Thornquist", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10873", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Nick Neville", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10667", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Dylan Neuse", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10811", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Griffin Paxton", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10589", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Jordan Myrow", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10775", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Peter Zimmermann", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10741", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Trent Franson", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10548", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Tyriece Silas", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10718", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Peter Zimmermann", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10501", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Chase Sortor", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10898", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "DJ Stephens", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10688", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "DJ Stephens", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10464", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Alerick Solearie", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10851", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Jase Embry", | |
| "result": "Error", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10648", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Tyriece Silas", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10791", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Baylor Rowlett", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10757", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Chase Sortor", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10573", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Dylan Neuse", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10730", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Dylan Neuse", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10520", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Jordan Myrow", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10709", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "DJ Stephens", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10485", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Keaton Milford", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10881", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Dylan Neuse", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10668", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Griffin Paxton", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10825", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Chase Sortor", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10606", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Chase Sortor", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10783", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Jase Embry", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10744", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "DJ Stephens", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10564", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Mitchell Caskey", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10720", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Mario Moralez", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10503", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Thomas Santos", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10902", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Tyriece Silas", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10694", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Grant Miller", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10467", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Sergio Macias", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10854", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Aidan Shepardson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10660", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Mario Moralez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10797", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Trent Franson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10767", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Jackson Nichols", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10578", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Griffin Paxton", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10734", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Griffin Paxton", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10532", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Thomas Santos", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10711", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Alerick Solearie", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10493", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Herbert Iser", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10888", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Griffin Paxton", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10678", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Chase Sortor", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10829", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Tyriece Silas", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10636", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Andres Sosa", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10784", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Aidan Shepardson", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10746", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Tyriece Silas", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10568", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Aidan Shepardson", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10725", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Baylor Rowlett", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10507", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Mitchell Caskey", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10910", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Chase Sortor", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10703", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Jase Embry", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10472", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Dylan Neuse", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10865", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Mario Moralez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10662", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "Baylor Rowlett", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "10802", | |
| "date": "9/2/2018 21:23:41", | |
| "batter": "DJ Stephens", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18632", | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Ryan Fineman", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18494", | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Matt Gorski", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18614", | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Logan Kaletha", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18587", | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Mitch Bigras", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18541", | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Justin Walker", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18650", | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Jack Cunningham", | |
| "result": "Error", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18510", | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Logan Sowers", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18628", | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Gian Martellini", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18478", | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Elijah Dunham", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18602", | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Brian Dempsey", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18556", | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Jake Alu", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18529", | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Ryan Fineman", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18634", | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Matt Gorski", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18498", | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Cole Barr", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18618", | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Matt Lloyd", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18468", | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Logan Kaletha", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18591", | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Ryan Fineman", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18543", | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Jeremy Houston", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18653", | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Logan Kaletha", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18516", | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Jacob Yish", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18630", | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Logan Sowers", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18483", | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Ryan Fineman", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18610", | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Jake Palomaki", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18576", | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Gian Martellini", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18530", | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Matt Gorski", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18641", | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Jeremy Houston", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18499", | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Jeremy Houston", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18623", | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Dante Baldelli", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18472", | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Luke Miller", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18595", | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Matt Gorski", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18547", | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Matt Lloyd", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18667", | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Jake Palomaki", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18521", | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Jack Cunningham", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18631", | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Elijah Dunham", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18490", | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Jake Alu", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18613", | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Jeremy Houston", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18583", | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Jack Cunningham", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18534", | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Brian Dempsey", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18647", | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Jacob Yish", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18505", | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Luke Miller", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18626", | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Jake Alu", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18477", | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Logan Sowers", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18596", | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Justin Walker", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18550", | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Jake Palomaki", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18526", | |
| "date": "24/2/2018 17:35:25", | |
| "batter": "Logan Sowers", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15697", | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "Joe Johnson Jr.", | |
| "result": "Error", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15614", | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "Kyle Dentmon", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15562", | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "Ian Kalman", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15499", | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "Trey Jackson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15654", | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "Nick Avidellas", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15579", | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "Joe Johnson Jr.", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15547", | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "Alex Nigh", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15708", | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "Tyler McCuiston", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15622", | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "Sean Williams", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15568", | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "Carter Stewart", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15507", | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "Carter Stewart", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15688", | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "Chase Victor", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15592", | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "Alex Nigh", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15548", | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "Mason Denaburg", | |
| "result": "Triple", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15712", | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "Colby Velasquez", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15629", | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "Ian Kalman", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15575", | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "RJ Diaz", | |
| "result": "Error", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15518", | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "RJ Diaz", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15696", | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "Ian Farrow", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15597", | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "Sam Teter", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15555", | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "Sean Williams", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15497", | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "Ian Kalman", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15648", | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "Joe Johnson Jr.", | |
| "result": "Error", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15576", | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "Ian Farrow", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15531", | |
| "date": "7/3/2018 19:39:44", | |
| "batter": "Sam Teter", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15022", | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Mario Moralez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15213", | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Matthew Goodheart", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15005", | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Ray Hansen", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15166", | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Sergio Macias", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15123", | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Sergio Macias", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15070", | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Joseph Preusser", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15037", | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Jordan Fox", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15012", | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Alerick Solearie", | |
| "result": "Error", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15196", | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Matt Waznis", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15134", | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Tyriece Silas", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15098", | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Matthew Goodheart", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15048", | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Matthew Goodheart", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15027", | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Diego Rincon", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15217", | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Andres Sosa", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15006", | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Jackson Dvorak", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15171", | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Mario Moralez", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15126", | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Jake Matheny", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15084", | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Mario Moralez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15040", | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Herbert Iser", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15014", | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Sergio Macias", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15203", | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Tyriece Silas", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15135", | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Matt Wiseman", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15108", | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Matt Waznis", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15057", | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Sergio Macias", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15223", | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Dashon Moore", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15032", | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Matt Waznis", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15010", | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Matthew Goodheart", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15179", | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Joseph Preusser", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15130", | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Mario Moralez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15085", | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Herbert Iser", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15043", | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Tyriece Silas", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15020", | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Jake Matheny", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15205", | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "DJ Stephens", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15003", | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Joseph Preusser", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15159", | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Andres Sosa", | |
| "result": "Error", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15118", | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Alerick Solearie", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15066", | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Andrew Olszewski", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15035", | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Dashon Moore", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15011", | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Andres Sosa", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15189", | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Jackson Dvorak", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15131", | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Herbert Iser", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15089", | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Tyriece Silas", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15046", | |
| "date": "13/3/2018 17:01:48", | |
| "batter": "Matt Wiseman", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14823", | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Evan Dougherty", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14781", | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Brian Brooker", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14954", | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Riley Herold", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14742", | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Riley Herold", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14924", | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Sean Houck", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14877", | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Sam LaFontaine", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14805", | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Brendan Brundage", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14988", | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Grant Ashline", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14765", | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Danny Tufariello", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14931", | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Joe Cosgrove", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14908", | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Danny Tufariello", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14827", | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Sean Houck", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14783", | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Grant Ashline", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14956", | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Kyle Simon", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14745", | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Kyle Simon", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14925", | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Jake Summey", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14884", | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Brendan Brundage", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14810", | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Riley Herold", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14997", | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Joe Cosgrove", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14773", | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Sean Houck", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14938", | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Brendan Brundage", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14913", | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Brian Brooker", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14831", | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Luke Reidy", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14790", | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Ryan Johnson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14964", | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Danny Tufariello", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14746", | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Bobby Brennan", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14926", | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Ryan Johnson", | |
| "result": "Error", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14900", | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Riley Herold", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14820", | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Danny Tufariello", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14776", | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Nick Breen", | |
| "result": "Error", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14946", | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Nick Santucci", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14923", | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Evan Dougherty", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14836", | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Nick Santucci", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14803", | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Isaiah Russell", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14970", | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Nick Breen", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14748", | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Brendan Brundage", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14930", | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Sam LaFontaine", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "14906", | |
| "date": "16/3/2018 15:56:25", | |
| "batter": "Ryan Johnson", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "20225", | |
| "date": "17/3/2018 13:01:16", | |
| "batter": "Trent Franson", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DH/102_KaseyKalich_TrentFranson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DHAngle2/102_KaseyKalich_TrentFranson.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "id": "20206", | |
| "date": "17/3/2018 13:01:16", | |
| "batter": "Cameron Gibbons", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DH/83_DevonRoedahl_CameronGibbons.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DHAngle2/83_DevonRoedahl_CameronGibbons.mp4", | |
| "vlaunch": "9.197" | |
| }, | |
| { | |
| "id": "20167", | |
| "date": "17/3/2018 13:01:16", | |
| "batter": "Trent Franson", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DH/44_RyanDay_TrentFranson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DHAngle2/44_RyanDay_TrentFranson.mp4", | |
| "vlaunch": "-11.716" | |
| }, | |
| { | |
| "id": "20216", | |
| "date": "17/3/2018 13:01:16", | |
| "batter": "Jake Matheny", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DH/93_RyanDay_JakeMatheny.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DHAngle2/93_RyanDay_JakeMatheny.mp4", | |
| "vlaunch": "3.686" | |
| }, | |
| { | |
| "id": "20192", | |
| "date": "17/3/2018 13:01:16", | |
| "batter": "Koby Collins", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DH/69_DevonRoedahl_KobyCollins.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DHAngle2/69_DevonRoedahl_KobyCollins.mp4", | |
| "vlaunch": "20.597" | |
| }, | |
| { | |
| "id": "20141", | |
| "date": "17/3/2018 13:01:16", | |
| "batter": "Jake Matheny", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DH/18_RyanDay_JakeMatheny.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DHAngle2/18_RyanDay_JakeMatheny.mp4", | |
| "vlaunch": "3.888" | |
| }, | |
| { | |
| "id": "20230", | |
| "date": "17/3/2018 13:01:16", | |
| "batter": "Tyriece Silas", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DH/107_KaseyKalich_TyrieceSilas.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DHAngle2/107_KaseyKalich_TyrieceSilas.mp4", | |
| "vlaunch": "-4.960" | |
| }, | |
| { | |
| "id": "20209", | |
| "date": "17/3/2018 13:01:16", | |
| "batter": "Brandon Ashy", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DH/86_DevonRoedahl_BrandonAshy.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DHAngle2/86_DevonRoedahl_BrandonAshy.mp4", | |
| "vlaunch": "17.171" | |
| }, | |
| { | |
| "id": "20175", | |
| "date": "17/3/2018 13:01:16", | |
| "batter": "DJ Stephens", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DH/52_RyanDay_DJStephens.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DHAngle2/52_RyanDay_DJStephens.mp4", | |
| "vlaunch": "28.414" | |
| }, | |
| { | |
| "id": "20128", | |
| "date": "17/3/2018 13:01:16", | |
| "batter": "Jake Miller", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DH/5_DevonRoedahl_JakeMiller.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DHAngle2/5_DevonRoedahl_JakeMiller.mp4", | |
| "vlaunch": "6.989" | |
| }, | |
| { | |
| "id": "20220", | |
| "date": "17/3/2018 13:01:16", | |
| "batter": "Baylor Rowlett", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DH/97_RyanDay_BaylorRowlett.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DHAngle2/97_RyanDay_BaylorRowlett.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "id": "20197", | |
| "date": "17/3/2018 13:01:16", | |
| "batter": "Hunter Trinidad", | |
| "result": "Error", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DH/74_DevonRoedahl_HunterTrinidad.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DHAngle2/74_DevonRoedahl_HunterTrinidad.mp4", | |
| "vlaunch": "-6.288" | |
| }, | |
| { | |
| "id": "20143", | |
| "date": "17/3/2018 13:01:16", | |
| "batter": "Baylor Rowlett", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DH/20_RyanDay_BaylorRowlett.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DHAngle2/20_RyanDay_BaylorRowlett.mp4", | |
| "vlaunch": "5.982" | |
| }, | |
| { | |
| "id": "20233", | |
| "date": "17/3/2018 13:01:16", | |
| "batter": "Matthew Goodheart", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DH/110_KaseyKalich_MatthewGoodheart.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DHAngle2/110_KaseyKalich_MatthewGoodheart.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "id": "20212", | |
| "date": "17/3/2018 13:01:16", | |
| "batter": "Reggie McCalister", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DH/89_DevonRoedahl_ReggieMcCalister.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DHAngle2/89_DevonRoedahl_ReggieMcCalister.mp4", | |
| "vlaunch": "-2.680" | |
| }, | |
| { | |
| "id": "20182", | |
| "date": "17/3/2018 13:01:16", | |
| "batter": "Matthew Goodheart", | |
| "result": "Triple", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DH/59_RyanDay_MatthewGoodheart.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DHAngle2/59_RyanDay_MatthewGoodheart.mp4", | |
| "vlaunch": "-2.742" | |
| }, | |
| { | |
| "id": "20136", | |
| "date": "17/3/2018 13:01:16", | |
| "batter": "Brandon Ashy", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DH/13_DevonRoedahl_BrandonAshy.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DHAngle2/13_DevonRoedahl_BrandonAshy.mp4", | |
| "vlaunch": "16.396" | |
| }, | |
| { | |
| "id": "20224", | |
| "date": "17/3/2018 13:01:16", | |
| "batter": "Sergio Macias", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DH/101_RyanDay_SergioMacias.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DHAngle2/101_RyanDay_SergioMacias.mp4", | |
| "vlaunch": "15.027" | |
| }, | |
| { | |
| "id": "20201", | |
| "date": "17/3/2018 13:01:16", | |
| "batter": "Jake Miller", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DH/78_DevonRoedahl_JakeMiller.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DHAngle2/78_DevonRoedahl_JakeMiller.mp4", | |
| "vlaunch": "-0.118" | |
| }, | |
| { | |
| "id": "20162", | |
| "date": "17/3/2018 13:01:16", | |
| "batter": "Alec Sanchez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DH/39_DevonRoedahl_AlecSanchez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DHAngle2/39_DevonRoedahl_AlecSanchez.mp4", | |
| "vlaunch": "42.199" | |
| }, | |
| { | |
| "id": "20239", | |
| "date": "17/3/2018 13:01:16", | |
| "batter": "Andres Sosa", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DH/116_KaseyKalich_AndresSosa.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DHAngle2/116_KaseyKalich_AndresSosa.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "id": "20213", | |
| "date": "17/3/2018 13:01:16", | |
| "batter": "Peter Zimmermann", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DH/90_RyanDay_PeterZimmermann.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DHAngle2/90_RyanDay_PeterZimmermann.mp4", | |
| "vlaunch": "-4.137" | |
| }, | |
| { | |
| "id": "20188", | |
| "date": "17/3/2018 13:01:16", | |
| "batter": "Alerick Solearie", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DH/65_RyanDay_AlerickSolearie.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DHAngle2/65_RyanDay_AlerickSolearie.mp4", | |
| "vlaunch": "18.043" | |
| }, | |
| { | |
| "id": "20140", | |
| "date": "17/3/2018 13:01:16", | |
| "batter": "Reggie McCalister", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DH/17_DevonRoedahl_ReggieMcCalister.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoGame2DHAngle2/17_DevonRoedahl_ReggieMcCalister.mp4", | |
| "vlaunch": "20.832" | |
| }, | |
| { | |
| "id": "19088", | |
| "date": "17/3/2018 19:27:27", | |
| "batter": "Matthew Goodheart", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1/150_KyleGray_JordanMyrow.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1Angle2/150_KyleGray_JordanMyrow.mp4", | |
| "vlaunch": "33.916" | |
| }, | |
| { | |
| "id": "19022", | |
| "date": "17/3/2018 19:27:27", | |
| "batter": "Cameron Gibbons", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1/84_ReidMorgan_CameronGibbons.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1Angle2/84_ReidMorgan_CameronGibbons.mp4", | |
| "vlaunch": "-0.504" | |
| }, | |
| { | |
| "id": "18989", | |
| "date": "17/3/2018 19:27:27", | |
| "batter": "Jordan Myrow", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1/51_KyleGray_JordanMyrow.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1Angle2/51_KyleGray_JordanMyrow.mp4", | |
| "vlaunch": "1.648" | |
| }, | |
| { | |
| "id": "18964", | |
| "date": "17/3/2018 19:27:27", | |
| "batter": "Peter Zimmermann", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1/26_KyleGray_PeterZimmermann.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1Angle2/26_KyleGray_PeterZimmermann.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "id": "19205", | |
| "date": "17/3/2018 19:27:27", | |
| "batter": "Gray Rodgers", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1/267_ChezzareGonzalez_GrayRodgers.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1Angle2/267_ChezzareGonzalez_GrayRodgers.mp4", | |
| "vlaunch": "12.810" | |
| }, | |
| { | |
| "id": "19110", | |
| "date": "17/3/2018 19:27:27", | |
| "batter": "Jake Matheny", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1/172_BryceMiller_JakeMatheny.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1Angle2/172_BryceMiller_JakeMatheny.mp4", | |
| "vlaunch": "28.326" | |
| }, | |
| { | |
| "id": "19059", | |
| "date": "17/3/2018 19:27:27", | |
| "batter": "Trent Franson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1/121_KyleGray_TrentFranson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1Angle2/121_KyleGray_TrentFranson.mp4", | |
| "vlaunch": "13.783" | |
| }, | |
| { | |
| "id": "19005", | |
| "date": "17/3/2018 19:27:27", | |
| "batter": "Matthew Goodheart", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1/67_KyleGray_MatthewGoodheart.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1Angle2/67_KyleGray_MatthewGoodheart.mp4", | |
| "vlaunch": "15.728" | |
| }, | |
| { | |
| "id": "18981", | |
| "date": "17/3/2018 19:27:27", | |
| "batter": "Koby Collins", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1/43_ReidMorgan_KobyCollins.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1Angle2/43_ReidMorgan_KobyCollins.mp4", | |
| "vlaunch": "12.057" | |
| }, | |
| { | |
| "id": "18946", | |
| "date": "17/3/2018 19:27:27", | |
| "batter": "Alec Sanchez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1/8_ReidMorgan_AlecSanchez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1Angle2/8_ReidMorgan_AlecSanchez.mp4", | |
| "vlaunch": "26.766" | |
| }, | |
| { | |
| "id": "19138", | |
| "date": "17/3/2018 19:27:27", | |
| "batter": "Tyriece Silas", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1/200_BriceArmistead_TyrieceSilas.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1Angle2/200_BriceArmistead_TyrieceSilas.mp4", | |
| "vlaunch": "-6.860" | |
| }, | |
| { | |
| "id": "19090", | |
| "date": "17/3/2018 19:27:27", | |
| "batter": "Andres Sosa", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1/152_KyleGray_AndresSosa.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1Angle2/152_KyleGray_AndresSosa.mp4", | |
| "vlaunch": "8.923" | |
| }, | |
| { | |
| "id": "19028", | |
| "date": "17/3/2018 19:27:27", | |
| "batter": "Marshall Skinner", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1/90_ReidMorgan_MarshallSkinner.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1Angle2/90_ReidMorgan_MarshallSkinner.mp4", | |
| "vlaunch": "-1.933" | |
| }, | |
| { | |
| "id": "18999", | |
| "date": "17/3/2018 19:27:27", | |
| "batter": "Jake Miller", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1/61_ReidMorgan_JakeMiller.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1Angle2/61_ReidMorgan_JakeMiller.mp4", | |
| "vlaunch": "13.457" | |
| }, | |
| { | |
| "id": "18970", | |
| "date": "17/3/2018 19:27:27", | |
| "batter": "Sergio Macias", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1/32_KyleGray_SergioMacias.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1Angle2/32_KyleGray_SergioMacias.mp4", | |
| "vlaunch": "23.197" | |
| }, | |
| { | |
| "id": "19209", | |
| "date": "17/3/2018 19:27:27", | |
| "batter": "Koby Collins", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1/271_ChezzareGonzalez_KobyCollins.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1Angle2/271_ChezzareGonzalez_KobyCollins.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "id": "19117", | |
| "date": "17/3/2018 19:27:27", | |
| "batter": "Trent Franson", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1/179_BryceMiller_TrentFranson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1Angle2/179_BryceMiller_TrentFranson.mp4", | |
| "vlaunch": "-2.472" | |
| }, | |
| { | |
| "id": "19065", | |
| "date": "17/3/2018 19:27:27", | |
| "batter": "Sammy Blair", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1/127_ZachDeLeon_SammyBlair.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1Angle2/127_ZachDeLeon_SammyBlair.mp4", | |
| "vlaunch": "14.393" | |
| }, | |
| { | |
| "id": "19006", | |
| "date": "17/3/2018 19:27:27", | |
| "batter": "Andres Sosa", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1/68_KyleGray_AndresSosa.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1Angle2/68_KyleGray_AndresSosa.mp4", | |
| "vlaunch": "23.113" | |
| }, | |
| { | |
| "id": "18984", | |
| "date": "17/3/2018 19:27:27", | |
| "batter": "Jake Matheny", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1/46_KyleGray_JakeMatheny.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1Angle2/46_KyleGray_JakeMatheny.mp4", | |
| "vlaunch": "21.024" | |
| }, | |
| { | |
| "id": "18949", | |
| "date": "17/3/2018 19:27:27", | |
| "batter": "Matthew Goodheart", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1/11_KyleGray_MatthewGoodheart.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1Angle2/11_KyleGray_MatthewGoodheart.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "id": "19144", | |
| "date": "17/3/2018 19:27:27", | |
| "batter": "Gray Rodgers", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1/206_BlairFrederick_GrayRodgers.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1Angle2/206_BlairFrederick_GrayRodgers.mp4", | |
| "vlaunch": "19.749" | |
| }, | |
| { | |
| "id": "19095", | |
| "date": "17/3/2018 19:27:27", | |
| "batter": "Alerick Solearie", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1/157_KyleGray_AlerickSolearie.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1Angle2/157_KyleGray_AlerickSolearie.mp4", | |
| "vlaunch": "10.568" | |
| }, | |
| { | |
| "id": "19035", | |
| "date": "17/3/2018 19:27:27", | |
| "batter": "Koby Collins", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1/97_ReidMorgan_KobyCollins.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1Angle2/97_ReidMorgan_KobyCollins.mp4", | |
| "vlaunch": "11.869" | |
| }, | |
| { | |
| "id": "19002", | |
| "date": "17/3/2018 19:27:27", | |
| "batter": "Sammy Blair", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1/64_ReidMorgan_SammyBlair.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1Angle2/64_ReidMorgan_SammyBlair.mp4", | |
| "vlaunch": "21.185" | |
| }, | |
| { | |
| "id": "18975", | |
| "date": "17/3/2018 19:27:27", | |
| "batter": "Marshall Skinner", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1/37_ReidMorgan_MarshallSkinner.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1Angle2/37_ReidMorgan_MarshallSkinner.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "id": "19125", | |
| "date": "17/3/2018 19:27:27", | |
| "batter": "Matthew Goodheart", | |
| "result": "Triple", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1/187_BriceArmistead_MatthewGoodheart.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1Angle2/187_BriceArmistead_MatthewGoodheart.mp4", | |
| "vlaunch": "21.023" | |
| }, | |
| { | |
| "id": "19067", | |
| "date": "17/3/2018 19:27:27", | |
| "batter": "Sammy Blair", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1/129_ZachDeLeon_SammyBlair.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1Angle2/129_ZachDeLeon_SammyBlair.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "id": "19010", | |
| "date": "17/3/2018 19:27:27", | |
| "batter": "Alerick Solearie", | |
| "result": "Triple", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1/72_KyleGray_AlerickSolearie.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1Angle2/72_KyleGray_AlerickSolearie.mp4", | |
| "vlaunch": "12.372" | |
| }, | |
| { | |
| "id": "18988", | |
| "date": "17/3/2018 19:27:27", | |
| "batter": "Trent Franson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1/50_KyleGray_TrentFranson.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1Angle2/50_KyleGray_TrentFranson.mp4", | |
| "vlaunch": "9.806" | |
| }, | |
| { | |
| "id": "18960", | |
| "date": "17/3/2018 19:27:27", | |
| "batter": "Alerick Solearie", | |
| "result": "Error", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1/22_KyleGray_AlerickSolearie.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1Angle2/22_KyleGray_AlerickSolearie.mp4", | |
| "vlaunch": "-5.581" | |
| }, | |
| { | |
| "id": "19190", | |
| "date": "17/3/2018 19:27:27", | |
| "batter": "Cameron Gibbons", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1/252_ChezzareGonzalez_CameronGibbons.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1Angle2/252_ChezzareGonzalez_CameronGibbons.mp4", | |
| "vlaunch": "-11.227" | |
| }, | |
| { | |
| "id": "19105", | |
| "date": "17/3/2018 19:27:27", | |
| "batter": "Sergio Macias", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1/167_KyleGray_SergioMacias.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1Angle2/167_KyleGray_SergioMacias.mp4", | |
| "vlaunch": "4.595" | |
| }, | |
| { | |
| "id": "19040", | |
| "date": "17/3/2018 19:27:27", | |
| "batter": "Zach Cherry", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1/102_ReidMorgan_ZachCherry.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1Angle2/102_ReidMorgan_ZachCherry.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "id": "19003", | |
| "date": "17/3/2018 19:27:27", | |
| "batter": "Brandon Ashy", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1/65_ReidMorgan_BrandonAshy.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1Angle2/65_ReidMorgan_BrandonAshy.mp4", | |
| "vlaunch": "21.643" | |
| }, | |
| { | |
| "id": "18977", | |
| "date": "17/3/2018 19:27:27", | |
| "batter": "Gray Rodgers", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1/39_ReidMorgan_GrayRodgers.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1Angle2/39_ReidMorgan_GrayRodgers.mp4", | |
| "vlaunch": "18.386" | |
| }, | |
| { | |
| "id": "18941", | |
| "date": "17/3/2018 19:27:27", | |
| "batter": "Brandon Ashy", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1/3_ReidMorgan_BrandonAshy.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1Angle2/3_ReidMorgan_BrandonAshy.mp4", | |
| "vlaunch": "31.313" | |
| }, | |
| { | |
| "id": "19135", | |
| "date": "17/3/2018 19:27:27", | |
| "batter": "Alerick Solearie", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1/197_BriceArmistead_AlerickSolearie.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-17/BlinnvsSanJacintoDHGame1Angle2/197_BriceArmistead_AlerickSolearie.mp4", | |
| "vlaunch": "18.659" | |
| }, | |
| { | |
| "id": "19573", | |
| "date": "20/3/2018 20:22:54", | |
| "batter": "Cody Lee", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacinto/103_LukeMatheny_CodyLee.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacintoAngle2/103_LukeMatheny_CodyLee.mp4", | |
| "vlaunch": "24.121" | |
| }, | |
| { | |
| "id": "19652", | |
| "date": "20/3/2018 20:22:54", | |
| "batter": "Bo Gonzales", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacinto/182_BlairFrederick_BoGonzales.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacintoAngle2/182_BlairFrederick_BoGonzales.mp4", | |
| "vlaunch": "13.844" | |
| }, | |
| { | |
| "id": "19533", | |
| "date": "20/3/2018 20:22:54", | |
| "batter": "Matt Wiseman", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacinto/63_ColtonGetschmann_MattWiseman.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacintoAngle2/63_ColtonGetschmann_MattWiseman.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "id": "19506", | |
| "date": "20/3/2018 20:22:54", | |
| "batter": "Alerick Solearie", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacinto/36_ColtonGetschmann_AlerickSolearie.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacintoAngle2/36_ColtonGetschmann_AlerickSolearie.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "id": "19646", | |
| "date": "20/3/2018 20:22:54", | |
| "batter": "Mario Moralez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacinto/176_HaydenBorden_MarioMoralez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacintoAngle2/176_HaydenBorden_MarioMoralez.mp4", | |
| "vlaunch": "13.872" | |
| }, | |
| { | |
| "id": "19587", | |
| "date": "20/3/2018 20:22:54", | |
| "batter": "Mario Moralez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacinto/117_ColtonGetschmann_MarioMoralez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacintoAngle2/117_ColtonGetschmann_MarioMoralez.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "id": "19695", | |
| "date": "20/3/2018 20:22:54", | |
| "batter": "Peter Zimmermann", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacintoAngle2/225_AnthonyMunoz_PeterZimmermann.mp4", | |
| "vlaunch": "36.900" | |
| }, | |
| { | |
| "id": "19549", | |
| "date": "20/3/2018 20:22:54", | |
| "batter": "Luis Castellanos", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacinto/79_LukeMatheny_LuisCastellanos.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacintoAngle2/79_LukeMatheny_LuisCastellanos.mp4", | |
| "vlaunch": "-9.463" | |
| }, | |
| { | |
| "id": "19519", | |
| "date": "20/3/2018 20:22:54", | |
| "batter": "Kyler Bumstead", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacinto/49_LukeMatheny_KylerBumstead.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacintoAngle2/49_LukeMatheny_KylerBumstead.mp4", | |
| "vlaunch": "21.462" | |
| }, | |
| { | |
| "id": "19490", | |
| "date": "20/3/2018 20:22:54", | |
| "batter": "Bo Gonzales", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacinto/20_LukeMatheny_BoGonzales.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacintoAngle2/20_LukeMatheny_BoGonzales.mp4", | |
| "vlaunch": "-0.773" | |
| }, | |
| { | |
| "id": "19611", | |
| "date": "20/3/2018 20:22:54", | |
| "batter": "Joel Rodriguez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacinto/141_LukeMatheny_JoelRodriguez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacintoAngle2/141_LukeMatheny_JoelRodriguez.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "id": "19709", | |
| "date": "20/3/2018 20:22:54", | |
| "batter": "Luis Castellanos", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacintoAngle2/239_BurtonSchnake_LuisCastellanos.mp4", | |
| "vlaunch": "16.106" | |
| }, | |
| { | |
| "id": "19576", | |
| "date": "20/3/2018 20:22:54", | |
| "batter": "Kyler Bumstead", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacinto/106_LukeMatheny_KylerBumstead.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacintoAngle2/106_LukeMatheny_KylerBumstead.mp4", | |
| "vlaunch": "24.250" | |
| }, | |
| { | |
| "id": "19664", | |
| "date": "20/3/2018 20:22:54", | |
| "batter": "Kyler Bumstead", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacinto/194_BlairFrederick_KylerBumstead.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacintoAngle2/194_BlairFrederick_KylerBumstead.mp4", | |
| "vlaunch": "37.865" | |
| }, | |
| { | |
| "id": "19534", | |
| "date": "20/3/2018 20:22:54", | |
| "batter": "Nick Neville", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacinto/64_ColtonGetschmann_NickNeville.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacintoAngle2/64_ColtonGetschmann_NickNeville.mp4", | |
| "vlaunch": "5.991" | |
| }, | |
| { | |
| "id": "19507", | |
| "date": "20/3/2018 20:22:54", | |
| "batter": "Jake Matheny", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacinto/37_ColtonGetschmann_JakeMatheny.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacintoAngle2/37_ColtonGetschmann_JakeMatheny.mp4", | |
| "vlaunch": "-0.460" | |
| }, | |
| { | |
| "id": "19593", | |
| "date": "20/3/2018 20:22:54", | |
| "batter": "Andres Sosa", | |
| "result": "Error", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacinto/123_ColtonGetschmann_AndresSosa.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacintoAngle2/123_ColtonGetschmann_AndresSosa.mp4", | |
| "vlaunch": "-1.082" | |
| }, | |
| { | |
| "id": "19697", | |
| "date": "20/3/2018 20:22:54", | |
| "batter": "Mitchell Sexton", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacintoAngle2/227_BurtonSchnake_MitchellSexton.mp4", | |
| "vlaunch": "27.335" | |
| }, | |
| { | |
| "id": "19550", | |
| "date": "20/3/2018 20:22:54", | |
| "batter": "Matthew Goodheart", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacinto/80_ColtonGetschmann_MatthewGoodheart.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacintoAngle2/80_ColtonGetschmann_MatthewGoodheart.mp4", | |
| "vlaunch": "21.140" | |
| }, | |
| { | |
| "id": "19525", | |
| "date": "20/3/2018 20:22:54", | |
| "batter": "Joel Rodriguez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacinto/55_LukeMatheny_JoelRodriguez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacintoAngle2/55_LukeMatheny_JoelRodriguez.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "id": "19494", | |
| "date": "20/3/2018 20:22:54", | |
| "batter": "Jared Irvine", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacinto/24_LukeMatheny_JaredIrvine.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacintoAngle2/24_LukeMatheny_JaredIrvine.mp4", | |
| "vlaunch": "31.767" | |
| }, | |
| { | |
| "id": "19627", | |
| "date": "20/3/2018 20:22:54", | |
| "batter": "Tyriece Silas", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacinto/157_HaydenBorden_TyrieceSilas.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacintoAngle2/157_HaydenBorden_TyrieceSilas.mp4", | |
| "vlaunch": "1.563" | |
| }, | |
| { | |
| "id": "19712", | |
| "date": "20/3/2018 20:22:54", | |
| "batter": "Herbert Iser", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacintoAngle2/242_AnthonyMunoz_HerbertIser.mp4", | |
| "vlaunch": "14.818" | |
| }, | |
| { | |
| "id": "19583", | |
| "date": "20/3/2018 20:22:54", | |
| "batter": "Jake Matheny", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacinto/113_ColtonGetschmann_JakeMatheny.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacintoAngle2/113_ColtonGetschmann_JakeMatheny.mp4", | |
| "vlaunch": "8.249" | |
| }, | |
| { | |
| "id": "19667", | |
| "date": "20/3/2018 20:22:54", | |
| "batter": "Mitchell Sexton", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacinto/197_BlairFrederick_MitchellSexton.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacintoAngle2/197_BlairFrederick_MitchellSexton.mp4", | |
| "vlaunch": "42.315" | |
| }, | |
| { | |
| "id": "19539", | |
| "date": "20/3/2018 20:22:54", | |
| "batter": "Josh Burnett", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacinto/69_LukeMatheny_JoshBurnett.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacintoAngle2/69_LukeMatheny_JoshBurnett.mp4", | |
| "vlaunch": "14.171" | |
| }, | |
| { | |
| "id": "19515", | |
| "date": "20/3/2018 20:22:54", | |
| "batter": "Mario Moralez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacinto/45_ColtonGetschmann_MarioMoralez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacintoAngle2/45_ColtonGetschmann_MarioMoralez.mp4", | |
| "vlaunch": "13.364" | |
| }, | |
| { | |
| "id": "19474", | |
| "date": "20/3/2018 20:22:54", | |
| "batter": "Josh Burnett", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacinto/4_LukeMatheny_JoshBurnett.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacintoAngle2/4_LukeMatheny_JoshBurnett.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "id": "19594", | |
| "date": "20/3/2018 20:22:54", | |
| "batter": "Matt Wiseman", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacinto/124_ColtonGetschmann_MattWiseman.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacintoAngle2/124_ColtonGetschmann_MattWiseman.mp4", | |
| "vlaunch": "0.309" | |
| }, | |
| { | |
| "id": "19700", | |
| "date": "20/3/2018 20:22:54", | |
| "batter": "Josh Burnett", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacintoAngle2/230_BurtonSchnake_JoshBurnett.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "id": "19565", | |
| "date": "20/3/2018 20:22:54", | |
| "batter": "Bo Gonzales", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacinto/95_LukeMatheny_BoGonzales.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacintoAngle2/95_LukeMatheny_BoGonzales.mp4", | |
| "vlaunch": "48.937" | |
| }, | |
| { | |
| "id": "19531", | |
| "date": "20/3/2018 20:22:54", | |
| "batter": "Andres Sosa", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacinto/61_ColtonGetschmann_AndresSosa.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacintoAngle2/61_ColtonGetschmann_AndresSosa.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "id": "19505", | |
| "date": "20/3/2018 20:22:54", | |
| "batter": "Tyriece Silas", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacinto/35_ColtonGetschmann_TyrieceSilas.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacintoAngle2/35_ColtonGetschmann_TyrieceSilas.mp4", | |
| "vlaunch": "22.657" | |
| }, | |
| { | |
| "id": "19644", | |
| "date": "20/3/2018 20:22:54", | |
| "batter": "Herbert Iser", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacinto/174_HaydenBorden_HerbertIser.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacintoAngle2/174_HaydenBorden_HerbertIser.mp4", | |
| "vlaunch": "14.729" | |
| }, | |
| { | |
| "id": "19585", | |
| "date": "20/3/2018 20:22:54", | |
| "batter": "Herbert Iser", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacinto/115_ColtonGetschmann_HerbertIser.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacintoAngle2/115_ColtonGetschmann_HerbertIser.mp4", | |
| "vlaunch": "30.920" | |
| }, | |
| { | |
| "id": "19678", | |
| "date": "20/3/2018 20:22:54", | |
| "batter": "Nick Neville", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacinto/208_WillLennon_NickNeville.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacintoAngle2/208_WillLennon_NickNeville.mp4", | |
| "vlaunch": "-1.802" | |
| }, | |
| { | |
| "id": "19544", | |
| "date": "20/3/2018 20:22:54", | |
| "batter": "Jordan Gochenour", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacinto/74_LukeMatheny_JordanGochenour.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacintoAngle2/74_LukeMatheny_JordanGochenour.mp4", | |
| "vlaunch": "-0.321" | |
| }, | |
| { | |
| "id": "19518", | |
| "date": "20/3/2018 20:22:54", | |
| "batter": "Cody Lee", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacinto/48_LukeMatheny_CodyLee.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacintoAngle2/48_LukeMatheny_CodyLee.mp4", | |
| "vlaunch": "19.199" | |
| }, | |
| { | |
| "id": "19483", | |
| "date": "20/3/2018 20:22:54", | |
| "batter": "Luis Castellanos", | |
| "result": "Error", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacinto/13_LukeMatheny_LuisCastellanos.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacintoAngle2/13_LukeMatheny_LuisCastellanos.mp4", | |
| "vlaunch": "19.487" | |
| }, | |
| { | |
| "id": "19607", | |
| "date": "20/3/2018 20:22:54", | |
| "batter": "Matthew Goodheart", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacinto/137_ColtonGetschmann_MatthewGoodheart.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacintoAngle2/137_ColtonGetschmann_MatthewGoodheart.mp4", | |
| "vlaunch": "50.796" | |
| }, | |
| { | |
| "id": "19704", | |
| "date": "20/3/2018 20:22:54", | |
| "batter": "Jordan Gochenour", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-03-20/CoastalBendvsSanJacintoAngle2/234_BurtonSchnake_JordanGochenour.mp4", | |
| "vlaunch": "24.076" | |
| }, | |
| { | |
| "id": "15976", | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Justin Lamazares", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15790", | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Connor Crile", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15935", | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Stephen Smith", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15900", | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Danny Sirven", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15840", | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Connor Crile", | |
| "result": "Error", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16004", | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Richie Rivera", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15801", | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Justin Lamazares", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15962", | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Andrew Rapoza", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15751", | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Ryan Baldwin", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15908", | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Brandon Gali", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15860", | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Drew Ehrhard", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15820", | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Ryan Baldwin", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15984", | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Jonathan Quintana", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15794", | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Richie Rivera", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15945", | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Danny Maynard", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15903", | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Darren Miller", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15841", | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Richie Rivera", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16005", | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Brandon Gali", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15811", | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Anthony Boix", | |
| "result": "Error", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15966", | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Darren Miller", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15754", | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Garrett Thompson", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15915", | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Jonathan Quintana", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15886", | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Arrison Perez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15837", | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Danny Sirven", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15997", | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Reuben Pino", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15796", | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Brandon Gali", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15953", | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Alexis Monge-Rodriguez", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15905", | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Connor Crile", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15844", | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Brandon Gali", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16018", | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Alexis Monge-Rodriguez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15812", | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Daniel Broeseker", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15973", | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Jack Loefflad", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15778", | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Nick DeTringo", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15920", | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Ryan Baldwin", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15891", | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Andrew Rapoza", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15838", | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Darren Miller", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15999", | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Richie Sobalvarro", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15800", | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Andrew Rapoza", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15744", | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Stephen Smith", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15956", | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Arrison Perez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15907", | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Richie Rivera", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15853", | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Stephen Smith", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16021", | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Arrison Perez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "15818", | |
| "date": "23/3/2018 21:09:56", | |
| "batter": "Nick DeTringo", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16135", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Stephen Smith", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16219", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Harrison Bragg", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16118", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Darren Miller", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16084", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Richie Rivera", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16191", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Richie Rivera", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16054", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Drew Ehrhard", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16172", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Brandon Gali", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16145", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Drew Ehrhard", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16251", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Jack Loefflad", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16127", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Connor Crile", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16101", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Andrew Rapoza", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16209", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Brandon Gali", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16077", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Alexis Monge-Rodriguez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16184", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Darren Miller", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16031", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Andrew Rapoza", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16158", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Andrew Rapoza", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16139", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Alexis Monge-Rodriguez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16220", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Drew Burkhart", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16120", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Ryan Baldwin", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16086", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Brandon Gali", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16198", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Ryan Baldwin", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16056", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Harrison Bragg", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16175", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Stephen Smith", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16147", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Danny Sirven", | |
| "result": "Error", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16263", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Garrett Thompson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16131", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Nick DeTringo", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16106", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Jonathan Quintana", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16210", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Danny Maynard", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16079", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Joel Alvarez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16187", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Connor Crile", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16041", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Jonathan Quintana", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16167", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Jonathan Quintana", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16141", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Joel Alvarez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16228", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Arrison Perez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16122", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Garrett Thompson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16091", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Stephen Smith", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16200", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Garrett Thompson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16064", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Danny Sirven", | |
| "result": "Error", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16177", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Drew Ehrhard", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16149", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Darren Miller", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16265", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Reuben Pino", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16133", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Richie Rivera", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16109", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Harrison Bragg", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16214", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Garrett Back", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16082", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Arrison Perez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16188", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Nick DeTringo", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16051", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Stephen Smith", | |
| "result": "Error", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16170", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Richie Rivera", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16143", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Arrison Perez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16237", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Justin Lamazares", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16126", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Reuben Pino", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16096", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Drew Ehrhard", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16202", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Reuben Pino", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16076", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Nick DeTringo", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16179", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Danny Sirven", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16156", | |
| "date": "24/3/2018 22:27:39", | |
| "batter": "Nick DeTringo", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16474", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Joel Alvarez", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16271", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Andrew Rapoza", | |
| "result": "Error", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16329", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Brandon Gali", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16437", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Reuben Pino", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16407", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Drew Ehrhard", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16328", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Chris Gaffney", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16375", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Richie Rivera", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16506", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Ryan Baldwin", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16283", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Garrett Thompson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16343", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Drew Ehrhard", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16459", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Connor Crile", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16423", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Richie Rivera", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16400", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Ryan Baldwin", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16530", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Alexis Monge-Rodriguez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16320", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Arrison Perez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16359", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Garrett Thompson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16496", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Brandon Gali", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16278", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Justin Lamazares", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16337", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Justin Lamazares", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16440", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Richie Sobalvarro", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16411", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Harrison Bragg", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16380", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Chris Gaffney", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16510", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Garrett Thompson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16292", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Stephen Smith", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16346", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Harrison Bragg", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16465", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Nick DeTringo", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16432", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Brandon Gali", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16404", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Brandon Gali", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16322", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Nick DeTringo", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16366", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Richie Sobalvarro", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16499", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Stephen Smith", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16280", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Jonathan Quintana", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16340", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Jonathan Quintana", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16443", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Alexis Monge-Rodriguez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16414", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Darren Miller", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16393", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Andrew Rapoza", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16513", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Drew Ehrhard", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16304", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Darren Miller", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16354", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Darren Miller", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16470", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Richie Rivera", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16433", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Stephen Smith", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16405", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Stephen Smith", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16324", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Richie Rivera", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16372", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Nick DeTringo", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16504", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Jonathan Quintana", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16281", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Ryan Baldwin", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16341", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Darren Miller", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16446", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Drew Ehrhard", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16419", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Nick DeTringo", | |
| "result": "Error", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16396", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Jonathan Quintana", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16529", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Richie Sobalvarro", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16306", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Connor Crile", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16357", | |
| "date": "25/3/2018 22:31:25", | |
| "batter": "Ryan Baldwin", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18466", | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "J Rader", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18409", | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "R Rivera", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18376", | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "K Abbott", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18338", | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "C Pendleton", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18437", | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "D Moran", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18398", | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "R Rivera", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18349", | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "J Rader", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18325", | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "K Abbott", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18413", | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "T Higgins", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18381", | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "Lyon Richardson", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18342", | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "Lyon Richardson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18445", | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "K Abbott", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18399", | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "T Higgins", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18360", | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "R Rivera", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18332", | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "Z Miller", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18424", | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "W Potter", | |
| "result": "Triple", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18388", | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "C Pendleton", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18345", | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "R Piekarski", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18450", | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "W Potter", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18400", | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "J Rader", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18361", | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "K Abbott", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18336", | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "J Thompson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18432", | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "R Piekarski", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18397", | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "B Calzadilla", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "18347", | |
| "date": "5/4/2018 08:38:02", | |
| "batter": "J Galinis", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "20092", | |
| "date": "6/4/2018 19:00:00", | |
| "batter": "J Salerno", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchool/166_DavidLuethje_JSalerno.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchoolAngle2/166_DavidLuethje_JSalerno.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "id": "20015", | |
| "date": "6/4/2018 19:00:00", | |
| "batter": "K Marreel", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchool/89_DavidLuethje_KMarreel.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchoolAngle2/89_DavidLuethje_KMarreel.mp4", | |
| "vlaunch": "27.311" | |
| }, | |
| { | |
| "id": "19980", | |
| "date": "6/4/2018 19:00:00", | |
| "batter": "S Martinez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchool/53_DavidLuethje_SMartinez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchoolAngle2/53_DavidLuethje_SMartinez.mp4", | |
| "vlaunch": "59.908" | |
| }, | |
| { | |
| "id": "19931", | |
| "date": "6/4/2018 19:00:00", | |
| "batter": "S Martinez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchool/4_DavidLuethje_SMartinez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchoolAngle2/4_DavidLuethje_SMartinez.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "id": "20123", | |
| "date": "6/4/2018 19:00:00", | |
| "batter": "Bl McBride", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchool/197_NicholasCelidonia_BlMcBride.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchoolAngle2/197_NicholasCelidonia_BlMcBride.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "id": "20077", | |
| "date": "6/4/2018 19:00:00", | |
| "batter": "Gabriel Mendez", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchool/151_SMartinez_GabrielMendez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchoolAngle2/151_SMartinez_GabrielMendez.mp4", | |
| "vlaunch": "4.432" | |
| }, | |
| { | |
| "id": "20001", | |
| "date": "6/4/2018 19:00:00", | |
| "batter": "Brendan Vasquez", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchool/75_SMartinez_BrendanVasquez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchoolAngle2/75_SMartinez_BrendanVasquez.mp4", | |
| "vlaunch": "46.269" | |
| }, | |
| { | |
| "id": "19953", | |
| "date": "6/4/2018 19:00:00", | |
| "batter": "K Marreel", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchool/26_DavidLuethje_KMarreel.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchoolAngle2/26_DavidLuethje_KMarreel.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "id": "20098", | |
| "date": "6/4/2018 19:00:00", | |
| "batter": "K Marreel", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchool/172_DavidLuethje_KMarreel.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchoolAngle2/172_DavidLuethje_KMarreel.mp4", | |
| "vlaunch": "39.012" | |
| }, | |
| { | |
| "id": "20017", | |
| "date": "6/4/2018 19:00:00", | |
| "batter": "R Ortiz", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchool/91_DavidLuethje_ROrtiz.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchoolAngle2/91_DavidLuethje_ROrtiz.mp4", | |
| "vlaunch": "8.341" | |
| }, | |
| { | |
| "id": "19989", | |
| "date": "6/4/2018 19:00:00", | |
| "batter": "Gage Brackett", | |
| "result": "Error", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchool/63_SMartinez_GageBrackett.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchoolAngle2/63_SMartinez_GageBrackett.mp4", | |
| "vlaunch": "25.827" | |
| }, | |
| { | |
| "id": "19940", | |
| "date": "6/4/2018 19:00:00", | |
| "batter": "Nick Dean", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchool/13_SMartinez_NickDean.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchoolAngle2/13_SMartinez_NickDean.mp4", | |
| "vlaunch": "16.093" | |
| }, | |
| { | |
| "id": "20086", | |
| "date": "6/4/2018 19:00:00", | |
| "batter": "J Paradoa", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchool/160_DavidLuethje_JParadoa.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchoolAngle2/160_DavidLuethje_JParadoa.mp4", | |
| "vlaunch": "-4.289" | |
| }, | |
| { | |
| "id": "20002", | |
| "date": "6/4/2018 19:00:00", | |
| "batter": "Gabriel Mendez", | |
| "result": "Error", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchool/76_SMartinez_GabrielMendez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchoolAngle2/76_SMartinez_GabrielMendez.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "id": "19957", | |
| "date": "6/4/2018 19:00:00", | |
| "batter": "R Ortiz", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchool/30_DavidLuethje_ROrtiz.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchoolAngle2/30_DavidLuethje_ROrtiz.mp4", | |
| "vlaunch": "30.789" | |
| }, | |
| { | |
| "id": "20103", | |
| "date": "6/4/2018 19:00:00", | |
| "batter": "Ben Yurigan", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchool/177_ALopez_BenYurigan.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchoolAngle2/177_ALopez_BenYurigan.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "id": "20063", | |
| "date": "6/4/2018 19:00:00", | |
| "batter": "Nick Dean", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchool/137_SMartinez_NickDean.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchoolAngle2/137_SMartinez_NickDean.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "id": "19991", | |
| "date": "6/4/2018 19:00:00", | |
| "batter": "Blake Caudill", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchool/65_SMartinez_BlakeCaudill.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchoolAngle2/65_SMartinez_BlakeCaudill.mp4", | |
| "vlaunch": "23.213" | |
| }, | |
| { | |
| "id": "19950", | |
| "date": "6/4/2018 19:00:00", | |
| "batter": "A Martens", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchool/23_DavidLuethje_AMartens.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchoolAngle2/23_DavidLuethje_AMartens.mp4", | |
| "vlaunch": "40.200" | |
| }, | |
| { | |
| "id": "20088", | |
| "date": "6/4/2018 19:00:00", | |
| "batter": "A Martens", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchool/162_DavidLuethje_AMartens.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchoolAngle2/162_DavidLuethje_AMartens.mp4", | |
| "vlaunch": "56.018" | |
| }, | |
| { | |
| "id": "20005", | |
| "date": "6/4/2018 19:00:00", | |
| "batter": "Peter Holden", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchool/79_SMartinez_PeterHolden.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchoolAngle2/79_SMartinez_PeterHolden.mp4", | |
| "vlaunch": "41.331" | |
| }, | |
| { | |
| "id": "19967", | |
| "date": "6/4/2018 19:00:00", | |
| "batter": "Gabriel Mendez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchool/40_SMartinez_GabrielMendez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchoolAngle2/40_SMartinez_GabrielMendez.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "id": "19928", | |
| "date": "6/4/2018 19:00:00", | |
| "batter": "T Williams", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchool/1_DavidLuethje_TWilliams.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchoolAngle2/1_DavidLuethje_TWilliams.mp4", | |
| "vlaunch": "14.337" | |
| }, | |
| { | |
| "id": "20120", | |
| "date": "6/4/2018 19:00:00", | |
| "batter": "E Sheppard", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchool/194_NicholasCelidonia_ESheppard.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchoolAngle2/194_NicholasCelidonia_ESheppard.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "id": "20072", | |
| "date": "6/4/2018 19:00:00", | |
| "batter": "Brendan Vasquez", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchool/146_SMartinez_BrendanVasquez.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchoolAngle2/146_SMartinez_BrendanVasquez.mp4", | |
| "vlaunch": "-13.518" | |
| }, | |
| { | |
| "id": "19999", | |
| "date": "6/4/2018 19:00:00", | |
| "batter": "David Luethje", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchool/73_SMartinez_DavidLuethje.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchoolAngle2/73_SMartinez_DavidLuethje.mp4", | |
| "vlaunch": "-8.563" | |
| }, | |
| { | |
| "id": "19951", | |
| "date": "6/4/2018 19:00:00", | |
| "batter": "J Salerno", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "angle1": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchool/24_DavidLuethje_JSalerno.mp4", | |
| "angle2": "https://s3.amazonaws.com/prospectwire/2018-04-06/VeroBeachHighSchoolvsTreasureCoastHighSchoolAngle2/24_DavidLuethje_JSalerno.mp4", | |
| "vlaunch": "0.000" | |
| }, | |
| { | |
| "id": "16808", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Cameron Meehan", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16673", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Brendan Brundage", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16622", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "A.J. Puigcerver", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16773", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Cameron Meehan", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16583", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Cameron Meehan", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16753", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Nick Breen", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16546", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Riley Herold", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16727", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Ted Meissner", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16680", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Riley Herold", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16787", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Grant Ashline", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16658", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Ryan Johnson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16603", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Ted Meissner", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16765", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Ryan Johnson", | |
| "result": "Double", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16564", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Danny Tufariello", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16739", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Isaiah Russell", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16706", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Ryan Johnson", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16674", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Luke Reidy", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16775", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Nick Santucci", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16624", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Luke Reidy", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16587", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Jake Summey", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16755", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "A.J. Puigcerver", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16551", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Kyle Simon", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16729", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Riley Herold", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16682", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Kyle Simon", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16796", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Brendan Brundage", | |
| "result": "Error", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16661", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Connor Rowland", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16613", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Danny Tufariello", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16767", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Bryce Peterson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16568", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Evan Dougherty", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16740", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Brendan Brundage", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16539", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Ryan Johnson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16714", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Brian Brooker", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16675", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Nick Breen", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16779", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Riley Herold", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16647", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Sam LaFontaine", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16591", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Ryan Johnson", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16757", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Eddie Vicinanza", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16554", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Brendan Brundage", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16732", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Kyle Simon", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16689", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Evan Dougherty", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16799", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Luke Reidy", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16664", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Ted Meissner", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16618", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Evan Dougherty", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16770", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Brian Brooker", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16581", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Cameron Meehan", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16747", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Luke Reidy", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16542", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Connor Rowland", | |
| "result": "Single", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16722", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Billy Lamm", | |
| "result": "Error", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16678", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Bryce Peterson", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16785", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Danny Tufariello", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16651", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Eddie Vicinanza", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16598", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Riley Herold", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16759", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Jake Summey", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16559", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Luke Reidy", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16734", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "Mac Hessney", | |
| "result": "Contact Out", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| }, | |
| { | |
| "id": "16692", | |
| "date": "17/4/2018 18:43:51", | |
| "batter": "A.J. Puigcerver", | |
| "result": "Error", | |
| "hto1": "", | |
| "effort": "", | |
| "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" | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment